@charset "utf-8";

#container{width:100%;}

.infoWrap {
    width: 1000px;
    margin: 0 auto;
}
.infoWrap h2{
    font-size: 160%;
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
    border-bottom: 1px solid #808080;
}
.txt.info{
    line-height: 1.5;
    color: #555;
    margin-bottom: 30px;
}

.areaTab,.areaTab2{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.areaTab a{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 120%;
    text-align: center;
    box-sizing: border-box;
    background: #eee;
    border-right:1px solid #fff;
}
.areaTab li:nth-of-type(1) a {
    border-radius: 8px 0 0 8px;
}
.areaTab li:last-of-type a {border-radius: 0 8px 8px 0;}
.areaTab li.sel a{background:#5487b0;color:#fff;}
.areaTab li, .areaTab2 li {
    width: 14%;
     transition : all 350ms;
}
.areaTab2{margin: 10px 0;}
.areaTab2 li {
    position:relative;
    cursor: pointer;
    text-align: center;
    font-size: 110%;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    transition : all 350ms;
}
/*.tab2 li:hover{opacity:0.8;color:#6fa4d6;border-bottom:4px solid #b6d7f7}*/
.areaTab2 li.sel{
    transition : all 350ms;
    /*border-bottom: 4px solid #6fa4d6;*/
}
.areaTab2 li:before {
    content: '';
    width: 0;
    left: 50%;
    bottom: -1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid #cee6fd;
    position: absolute;
    display: block;
}
.areaTab2 li:hover{opacity:0.8;}
.areaTab2 li:hover:before {
    width: 50%;
    border-bottom: 3px solid #cee6fd;
}
.areaTab2 li:after {
    content: '';
    width: 0;
    right: 50%;
    bottom: -1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid #cee6fd;
    position: absolute;
    display: block;
}
.areaTab2 li:hover:after {
    width: 50%;
    border-bottom: 3px solid #cee6fd;
}
.areaTab2 li.sel:before {
    width: 50%;
    border-bottom: 3px solid #5487b0;
}
.areaTab2 li.sel:after {
    width: 50%;
    border-bottom: 3px solid #6fa4d6;
}

.infoWrap table {
    width: 100%;
    box-shadow: 1px 3px 7px #ccc;
    margin: 40px 0;
}
.infoWrap table th {
    font-weight: normal;
    background: #ffe5ab;
    font-size: 100%;
    text-align: center;
    padding: 20px 10px;
    vertical-align: middle;
}
.infoWrap table th:nth-of-type(1){width: 130px;}
.infoWrap table th:nth-of-type(2){width: 130px;}
.infoWrap table th:nth-of-type(3){width: 130px;}
.infoWrap table th:nth-of-type(4) {
    width: 255px;
}
.infoWrap table tr:nth-of-type(odd) {
    background: #f1f1f1;
}
.infoWrap table td {
    font-size:90%;
    vertical-align: middle;
    padding: 5px;
    line-height:1.5;
    border-right: 1px solid #ccc;
}
.infoWrap table tr td:nth-of-type(1){font-weight:bold;}
.infoWrap table td img {
    width: 30px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.infoWrap table td span {
    color: #666;
    font-size: 70%;
    margin: 5px 0;
    display: block;
    text-align: center;
}
.fx {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.fx div{width:50%;}




@media only screen and (max-width:768px){
    .infoWrap {
        width: 100%;
        margin: inherit;
        padding: 0 10px;
        margin: 20px 0;
    }
    .infoWrap h2{
        line-height: 1.5;
        height: inherit;
        margin: 0 0 10px 0;
    }
    .infoWrap table {
        border-collapse: collapse;
    }
    .scroll {
        white-space: nowrap;
        overflow: auto;
    }
    .fx div{width:100%;}
}