
/*------------- モーダルウィンドウ -------------*/


.modal{
    display: none;
    height: 100vh;
    position: fixed;
    z-index:1002;
    top: 0;
    right:0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    position: absolute;
    top: 40%;
    transform: translate(-50%,-50%);
    width: 713px;
}

.wrap_nav-tab{
    overflow:hidden;
}

/*------------- タブ中身 -------------*/



.tab-wrap {
    width:713px;
    height: 493px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.tab-label {
    width: 117px;
    height:50%;
    color: #00A381;
    background: #E6F1EF;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-size:15px;
}
.tab-content {
    display:none;
    overflow: scroll;
    overflow-x: hidden;
    padding:10px;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    color: #ffffff;
    background: #00A381;
    border-right-color: White;
}
.tab-switch:checked+.tab-label+.tab-content {
    width: 596px;
    height: 100%;
    padding: 15px;
    border: 3px solid #00A381;
    display:block;
}
/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

label.tab-label{
    position:relative;
}

.tab_area span{
    position:absolute;
    top:104px;
    left:35px;
}
.tab_type span{
    position:absolute;
    top:100px;
    left:33px;
}

div .head_check{
    width:570px;
    height:40px;
    line-height:40px;
    border-radius:3px;
    background:#E6F1EF;
    font-size:15px;
    font-weight:bold;
    padding-left:5px;
}


.nav_common{
    overflow:hidden;
    width:713px;
    background:  #ffffff;
    padding:20px;
}
.conditions_box{
    overflow:hidden;
}
.conditions{
    width:570px;
    display:flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    float:left;
}
.conditions dt{
    font-size:13px;
    padding-right:10px;
    font-weight:bold;
}
.conditions dd{
    font-size:10px;
    font-weight:normal;
}
.conditions_clear{
    float:right;
}
.conditions_clear a{
    width:80px;
    height:25px;
    font-size:10px;
    font-weight:normal;
    color:#00A381;
    display:block;
    border-radius:3px;
    border:1px solid #00A381;
    line-height:25px;
    padding-right:5px;
    position:relative;
    background:#ffffff;
    text-align:right;
}
.conditions_clear a::after{
    content: "";
    background: url("../../../images/main/icon_x.png") no-repeat;
    background-size: 8px 8px;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 8px;
    left: 7px;
}
.search_button{
    width:553px;
    margin:auto;
    margin-top:20px;
}
.search_button p{
    width:553px;
    height:50px;
    font-size:16px;
    text-align:center;
}
.search_button p a{
    display:block;
    color: #ffffff;
    line-height:50px;
    background:#00A381;
    border-radius:3px;
}
.search_button.disable_search p a{
    background:#c0c0c0;
}
.decoration01{
    font-size:22px;
    color:#E7EF9C;
    font-weight:bold;
}
.decoration02{
    font-size:12px;
    color: #ffffff;
}


/*------------- エリア中身 -------------*/

.tab-content ul{
    width:570px;
    display:flex;
    flex-wrap:wrap;
    padding-top:10px;
    padding-bottom:10px;
}
.tab-content ul li{
    width:280px;
    margin-right:5px;
    font-size:14px;
}
.checkbox,.hd_checkbox {
    display: none;
}
.tab-content .head_check label{
    padding-left:30px;
    padding-top:3px;
    width:570px;
    display:inline-block;
    cursor:pointer;
}
.tab-content ul li label{
    padding-left:30px;
    padding-top:3px;
    width:255px;
    display:inline-block;
    cursor:pointer;
}
.tab-content ul li label:hover{
    background:#F2F4DF;
    text-decoration: underline;
}

.head_check{
    margin-top:10px;
}
.hd_checkbox + .hd_checkbox-icon {
    position: relative;
    vertical-align: middle;
}

.hd_checkbox + .hd_checkbox-icon:before {
    content:" ";
    display:inline-block;
    width:17px;
    height:17px;
    border:1px solid #00A381;
    background:#ffffff;
    border-radius:3px;
    position:absolute;
    top:1px;
    left:-29px;
}
.hd_checkbox:checked + .hd_checkbox-icon:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    color: #ffffff;
    width:17px;
    height:17px;
    background:#00A381;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    line-height: 17px;
}

.checkbox + .checkbox-icon {
    position: relative;
    vertical-align: middle;
}

.checkbox + .checkbox-icon:before {
    content:" ";
    display:inline-block;
    width:17px;
    height:17px;
    border:1px solid #00A381;
    background:#ffffff;
    border-radius:3px;
    position:absolute;
    top:1px;
    left:-25px;
}
.checkbox:checked + .checkbox-icon:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    color: #ffffff;
    width:17px;
    height:17px;
    background:#00A381;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    line-height: 17px;
}