
th {
	background-color: #cccccc;
}
a {
    font-weight: bold;
    color:#255083;
	cursor: pointer;
}
.main-container{
    background-color:#c1d2ea; 
    text-align: center;
	margin:0px;
    display:flex;
	justify-content: center;
}
.menu-left {
    background-color:#f1f1f2; 
    width:100%;
    height: 100svh;
    overflow-y:auto;
    max-width:480px;
    min-width:290px;
    font-size:12px;
}

.search-result,.search-note {
	padding:8px;
    font-size: 12px;
    text-align: left;
    line-height : 20px;
}


.search-note {
    margin-left: 12px;
	text-indent: -1em;
  	padding-left: 1em;
}

.categoryTitle1, .categoryTitle2, .categoryTitle3 {
    font-weight:bold;
    text-align: center;
    padding: 5px;

}
.categoryTitle2, .categoryTitle3 {
    font-size:14px;
    color:#002333;
}

.categoryTitle1 {
    font-size:16px;
    color:#12257a;
}
.categoryTitle2 {    
    background-color:#95d3fa; 
}

.search-box {
	height:15px;
	margin: 0px auto 0px auto;  
}

.specTable{
    margin:auto;
}

.specTable td, .specTable th {
    padding:3px;
}


.layoutTable {
	margin:5px;
	width:95%;
}


.layoutTable th, .layoutTable td {
    font-size:12px;
	padding:5px;
    border: solid 1px;
    text-align: center;
}
.modelNameCell {
	background-color: #aaddff;
}

.logoImg{
    width:130px;
	margin-top:10px;
}
/*ボタン*/
.search-button{
    border: solid 0px;
    border-radius: 18px;
    height: 18px;
    width:70px;
    color:#fff;
    font-size: 14px;
    font-weight: bold;
    padding-top: 6px;
    text-align: center;
    background-color:#6176b2;
    margin: 5px auto 2px auto;  
	cursor: pointer;
}
.vertical_blank {
	margin:0px auto 10px auto;
}

/*オーバーレイ*/
.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(99, 99, 99, 0.3);
	display: none; /* input にチェックが入るまでは非表示に */
    z-index: 10;
}

.window {
	width: 85vw;
	background-color: #ffffff;
	border-radius: 6px;
	justify-content: top;
	align-items: left;
    padding:6px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    display: flex;
    flex-direction:column;
    z-index: 999;
    line-height: 130%;
    text-align: left;
    width:90%;
    height: 90svh;
    overflow-y:auto;
    max-width:420px;
	height: 400px;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}