@charset "UTF-8";
/* CSS Document */





div.contents{
    overflow:hidden;
    width:800px;
    margin:0 auto;
    padding-top:10px;
}

.left_contents{
    width:580px;
    float:left;
}
.right_contents{
    width:200px;
    float:right;
}


h2.content_title{
    width:580px;
    height:40px;
    font-size:16px;
    line-height:40px;
    padding-left:10px;
    background:#E6F1EF;
    border-radius:3px;
    margin-bottom:20px;
}

/*--------------------------------------------------------------
　日付
--------------------------------------------------------------*/

.shift_day{
    width:560px;
    margin:0 auto;
    padding-bottom:10px;
}
.shift_day ul{
    display:table;
    justify-content: space-between;
    align-items: center;
    width:560px;
    border-collapse: collapse
}
li.off_dutty{
    background:#D6D6D6;
    color:#868686;
    position:relative;
}
li.off_dutty p{
    position:absolute;
    top: 5px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.shift_day ul li{
    display:table-cell;
    width: calc( 100% / 7 );
    height:60px;
    border:1px solid #14A381;
    font-size:14px;
    font-weight:bold;
    text-align:center;
    line-height:16px;
    position:relative;
    margin-right:2px;
}
.shift_day ul li:last-child{
    margin:0;
}
.shift_current{
    background:#E6F1EF;
}
.shift_day ul li a{
    width: calc( 100% / 7 );
    height:60px;
    display:inline-block;
}
.shift_day ul li.on_dutty p,li.shift_current p{
    position:absolute;
    top: 15px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.week{
    font-size:12px;
}
.holiday{
    color:#DB434A;
}
.sat{
    color:#3167E2;
}
.no_shift_text{
    font-size:10px;
    letter-spacing: -0.05em;
}
/*--------------------------------------------------------------
 女の子
--------------------------------------------------------------*/


.search_girl{
    width:560px;
    margin:0 auto;
    overflow:hidden;
}
.search_girl h3{
    font-size:#00A381;
    color:#00A381;
    float:left;
}
.search_girl p{
    font-size:12px;
    font-weight:bold;
    color:#0F0F0F;
    float:right;
}
.search_girl p span{
    font-size:22px;
    color:#D67171;
}


.table{
    width:560px;
    margin:0 auto;
    display:table;
    border-collapse: collapse;
    border-spacing: 0;
    overflow:hidden;
}
.table_left_box{
    width:200px;
    height:43px;
    background:#E6F1EF;
    padding:0 10px;
    border:1px solid #ffffff;
    display: table-cell;
    vertical-align: middle;
}

.table_right_box{
    width:360px;
    height:43px;
    background:#ffffff;
    border:1px solid #E6F1EF;
    padding:0 10px;
    font-size:12px;
    display: table-cell;
    vertical-align: middle;
}
.box01{
    overflow:hidden;
}
.area{
    line-height:43px;
}
.area,.type{
    float:left;
    font-size:13px;
    text-align:left;
}
.choice{
    margin-top:7px;
}

.box01 .choice{
    float:right;
    height:25px;
    line-height:25px;
    background:#ffffff;
    border:1px solid #00A381;
    border-radius:3px;
    font-size:10px;
    font-weight:normal;
    text-align:left;
    padding:0 14px 0 4px;
}
.box01 .choice a{
    color:#00A381;
    display:block;
    position:relative;
}
.box01 .choice a::after{
    content: "";
    background: url("../../images/PC/icon_plus.png") no-repeat;
    background-size: 8px 8px;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 8px;
    right: -10px;
}




ul.top_girl_list{
    padding-top:20px;
    border-top:1px solid #E6F1EF;
    border-bottom:1px solid #E6F1EF;
    display:flex;
    flex-wrap: wrap;
    padding-left:10px;
}
ul.top_girl_list li{
    position:relative;
    padding-right:6px;
}

ul.top_girl_list li{
    margin-bottom:20px;
}

ul.top_girl_list li:nth-of-type(4n){
    margin-right:-6px;
}
ul.top_girl_list li a img{
    width:135px;
    height:auto;
}
ul.top_girl_list li dl{
    width: 135px;
    position:absolute;
    bottom:0px;
    background:rgba(255,255,255,0.8);
}
ul.top_girl_list li dl dt{
    padding:2px 2px 0 2px;
    font-size:12px;
    font-weight:bold;
}
ul.top_girl_list li dl dd{
    font-size:10px;
    padding:0 2px 2px 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.list_button{
    width:580px;
    padding-top:20px;
}
.list_button p{
    width:560px;
    height:45px;
    margin:0 auto;
    background:#ffffff;
    border-radius:3px;
    line-height:45px;
    text-align:center;
    color:#00A381;
    font-size:13px;
    font-weight:bold;
}
.list_button p a{
    color:#00A381;
    display:block;
    background:#ffffff;
    border:1px solid #00A381;
    border-radius:3px;
    line-height:45px;
}
.list_button p a:hover{
    color:#ffffff;
    background:#00A381;
    border:1px solid #00A381;
    border-radius:3px;
}



/*------------- モーダルウィンドウ -------------*/


.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: 30%;
    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:13px;
}








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/PC/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;
}
.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;
}


















/*-------------  ページ送り -------------*/


.wrap_page_transition{
    width:560px;
    margin:0 auto;
    padding:10px 0 30px 0;
    overflow:hidden;
}
.wrap_page_transition p{
    float:left;
    font-size:10px;
}
.wrap_page_transition p span{
    font-size:13px;
    font-weight:bold;
}


ol.page_transition{
    overflow:hidden;
    float:right;
}
.page_transition li{
    float:left;
}
.pager{
    width: 30px;
    height:25px;
    margin:0 auto;
    color:#00A381;
    background:#ffffff;
    font-size:13px;
    margin-right:5px;
}
.pager_current{
    width: 30px;
    height:25px;
    text-align: center;
    background:#00A381;
    color:#ffffff;
    border: 1px solid #00A381;
    line-height:25px;
    font-size:13px;
    margin-right:5px;
}
.pager a{
    width: 30px;
    height:23px;
    text-align: center;
    display: block;
    background:#ffffff;
    color:#636A77;
    border: 1px solid #00A381;
    line-height:25px;
    font-size:13px;
}
.pager a:hover,.pager_left a:hover,.pager_right a:hover{
    background:#00A381;
    color:#ffffff;
}
.pager_left,.pager_right{
    width: 30px;
    height:25px;
    text-align: center;
    background:#ffffff;
    border: 1px solid #00A381;
    line-height:25px;
    font-size:13px;
}
.pager_left a,.pager_right a{
    color:#00A381;
    display:block;
}
.pager_left{
    width:21px;
    margin-right:10px;
}
.pager_right{
    width:21px;
    margin-left:10px;
}

/*--------------------------------------------------------------
右カラム
--------------------------------------------------------------*/


.platinumbanner li{
    padding-bottom:20px;
}

.side_title{
    width:200px;
    height:40px;
    font-size:16px;
    font-weight:bold;
    padding-left:10px;
    line-height:40px;
    background:#E6F1EF;
    border-radius:3px;
}
.history,.side_recommendation{
    padding-bottom: 20px;
    padding-top: 10px;
}
.history li,.side_recommendation li{
    padding-top:10px;
    padding-bottom:5px;
    border-bottom:1px solid #E6F1EF;
}

/*--------------------------------------------------------------
 最近見たお店
--------------------------------------------------------------*/
.history li dl{
    width: 200px;
    margin: 0 auto;
}
.history li dl dt{
    width:180px;
    height:auto;
    margin: 0 auto;
    text-align: center;
}
.history li dl dd {
    width: 180px;
    margin: 0 auto;
}
.history_shopname{
    font-size:12px;
    font-weight:bold;
    color:#00A381;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.history_shopname a{
    color:#00A381;
}
.history_area-type{
    font-size:10px;
    color:#636A77;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*--------------------------------------------------------------
 おすすめのお店
--------------------------------------------------------------*/
.side_recommendation{
    list-style: none;
}

.side_recommendation li dl{
    overflow:hidden;
    width:180px;
    margin:0 auto;
}
.side_recommendation_img{
    width:50px;
    float:left;
}
.side_recommendation_content{
    width:125px;
    float:right;
}
.side_recommendation_content div{
    overflow:hidden;
}
.side_recommendation_area-shopname{
    font-size:10px;
    color:#636A77;
    vertical-align: top;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.side_recommendation_subtitle{
    font-size:12px;
    font-weight:bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.side_recommendation_subtitle a:hover{
    text-decoration: underline;
}