/*共通部品*/
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ttl{
    text-align: center;
    color:#02A79E;
}
.sub_ttl{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}
.main_ttl{
    font-size: 4rem;
    font-weight: bold;
    display: block;
    line-height: 1.7;
}
.bg_yerrow{
    background-color: #FFF8D3;
}
.bg_green{
    background-color: #02A79E;
}
.js_fade_up {
    opacity: 0;
    transform: translate(0, 30px);
}

.js_fade_up.action {
    opacity: 1;
    transform: translate(0, 0);
    transition: ease-out 1s;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
/*分割画像*/
.delimit_img_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.delimit_img_item{
    width: 20%;
    text-align: center;
    padding: 0 2rem;
}

/*ヘッダー*/
#header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    background: #fff;
    padding: 0 40px 0rem 40px;
    border-bottom: 1px solid #A8A8A8;
}
#header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vw;
    min-height: 9rem;
    max-height: 13rem;
}
#header .logo_wrap{
    min-width: 15rem;
    max-width: 39.6rem;
    width: 25%;
}
#header .nav_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .nav_wrap .nav_item:nth-child(2){
    margin-left: 1.5vw;
}
#header .nav_wrap .schedule_btn {
    display: block;
    height: 6rem;
    padding: 0 2.5rem;
    border: solid .2rem #02A79E;
    border-radius: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    &:hover{
        background-color: #02A79E;
        color: #fff;
        opacity: 1;
    }
}
#header .nav_wrap .schedule_btn .text{
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 3.5rem;
    position: relative;
    &::before{
        content: '';
        width: 1.72rem;
        height: 1.72rem;
        background-image: url(../img/externalLink-icon.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        transition: .3s;
    }
}
#header .nav_wrap .schedule_btn:hover .text::before{
    background-image: url(../img/externalLink_white-icon.svg);
}
#header .nav_wrap .line_btn {
    display: block;
    height: 6rem;
    padding: 0 2.5rem;
    background-color: #4CC764;
    border: .2rem solid #4CC764;
    color: #fff;
    border-radius: 3.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* &:hover{
        background-color: #fff;
        color: #4CC764;
        opacity: 1;
    } */
}
#header .nav_wrap .line_btn .text{
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.38;
    padding-left: 5.7rem;
    position: relative;
    &::before{
        content: '';
        width: 3.4rem;
        height: 3.4rem;
        background-image: url(../img/line-icon.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        transition: .3s;
    }
}
/* #header .nav_wrap .line_btn:hover .text::before{
    background-image: url(../img/externalLink_white-icon.svg);
} */

/*フッター*/
#footer{
    background-color: #02A79E;
    padding: 8rem 0 6rem;
}
#footer .logo{
    color: #fff;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2.7rem;
    display: block;
}
#footer .logo span{
    display: block;
    text-align: center;
    &:first-child{
        font-size: 2rem;
        margin-bottom: 1.6rem;
    }
}

/*TOP - MV*/
.top_mv{
    padding-top: min(8vw, 13rem);
}
.top_mv .container{
    padding: 3.5% 0 4.5%;
    position: relative;
}
.top_mv .container .head_text{
    text-align: center;
    font-size: max(2vw, 2.2rem);
    color: #fff;
    font-weight: bold;
}
.top_mv .main-imgs{
    padding: 3.5% 0 3%;
    margin: 0 auto;
    width: 100%;
}
.top_mv .main-img{
    margin: 0 3rem;
}
.top_mv .sub_img{
    position: absolute;
    bottom: 0;
    right: 7%;
    width: 20%;
}
/*TOP - Information*/
.top_information{
    background-color: #FFF8D3;
}
.top_information .container{
    padding: 9.3rem 3.6rem 11rem;
    margin: 0 auto;
    max-width: 1072px;
}
.top_information .arrow_link_wrap{
    text-align: right;
    margin-top: .9rem;
}
.top_information .arrow_link{
    font-size: 1.5rem;
    font-weight: bold;
    padding-right: 2.5rem;
    position: relative;
    transition: 0s;
    &::after{
        content: "";
        background-image: url("../img/arrow-icon.svg");
        background-repeat: no-repeat;
        width: 1.3rem;
        height: 1.3rem;
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        transition: all .3s;
    }
    &:hover{
        border-bottom: .2rem solid #02A79E;
        opacity: 1;
        &::after{
            right: -3%;
        }
    }
}
.information_wrap{
    background-color: #fff;
    border-radius: 2rem;
    width: 100%;
    padding: .5rem 4.3rem .5rem 4.6rem;
    margin-top: 3.5rem;
}
.information_wrap .information_item{
    border-bottom: solid .1rem #656565;
    padding: 3rem 0 2.5rem;
}
.information_wrap .information_item:last-child{
    border: none;
}
.information_wrap .information_item a{
    display: flex;
    justify-content: start;
    align-items: center;
    color: #000000;
    position: relative;
    transition: all .3s;
    &::after{
        content: '';
        background-image: url("../img/circlearrow-icon.svg");
        width: 3rem;
        height: 3rem;
        position: absolute;
        top:50%;
        right: 0;
        transform: translateY(-50%);
        transition: .3s;
    }
    &:hover{
        opacity: 1;
        color: #02A79E;
        &::after{
            right: -1%;
        }
    }
}
.information_wrap .information_item .date{
    font-size: 1.5rem;
    width: 8.2rem;
}
.information_wrap .information_item .information_head{
    font-size: 1.6rem;
    padding : 0 5rem 0 3.5rem;
    width: calc(100% - 11.2rem);
}
/*TOP - トピックス*/
.top_topic{
   padding: 7rem 0 4.4rem;
   background-color: #FFF8D3;
}
.top_topic .container{
    padding: 0 3.6rem 0;
    max-width: 1072px;
    margin: 0 auto;
}
.top_topic .container .main_ttl{
    font-size: 3.5rem;
}
.top_topic .container .text{
    margin: 4.4rem 4.4rem 0;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}
.top_topic .container .text p{
    line-height: 2;
}
/*TOP - 特徴*/
.top_feature{
    padding: 10rem 0 18rem;
    background-color: #FFF8D3;
}
.top_feature .container{
     max-width: 1072px;
     margin: 0 auto;
     padding: 0 3.6rem 0;
}
.feature_wrap{
    margin-top: 4.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feature_wrap .feature_item{
    width: 49%;
    background-color: #fff;
    border-radius: 2rem;
    padding: 4.5rem 3rem 5rem 4rem;
    margin-bottom: 2.2rem;
}
.feature_wrap .feature_item h3{
   text-align: center;
   font-size: 2.5rem;
   font-weight: bold;
}
.feature_wrap .feature_item .img{
    height: 22rem;
    position: relative;
    margin: 2.7rem 0 4.7rem;
 }
 .feature_wrap .feature_item .img img{
    max-height: 100%;
    width: auto;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
 }
 .feature_wrap .feature_item .text{
    font-size: 1.6rem;
 }
 .feature_wrap .feature_item .text p{
    line-height: 1.87;
 }
 .feature_wrap .feature_item:last-child{
    width: 100%;
    padding: 3.8rem 6rem 6.5rem;
}
.feature_wrap .feature_item:last-child .featuer_content{
    display: flex;
    justify-content: space-between;
 }
.feature_wrap .feature_item:last-child .featuer_content > div{
    width: calc(50% - 3rem);
 }
.feature_wrap .featuer_content .img{
    height: 26rem;
    width: 100%;
    margin: 4rem 0 2.7rem;
 }
 .feature_wrap .featuer_content h4{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.65;
 }
 .feature_wrap .featuer_content .text{
    margin-top: 1rem;
 }
 /*TOP - 店舗情報*/
.top_store_information{
    background-color: #02A79E;
    padding: 14.5rem 0 9.7rem; 
}
.top_store_information .ttl{
    color: #fff; 
}
.top_store_information .container{
    max-width: 1072px;
    margin: 0 auto;
    padding: 0 3.6rem 0;
}
.store_information_wrap{
    margin-top: 4.4rem;
    padding: 7.5rem 6rem 4.6rem;
    background-color: #fff;
    border-radius: 3rem;
    display: flex;
    justify-content: space-between;
}
.store_information_wrap>div{
    width: calc(50% - 3rem);
}
.store_information_wrap .map_wrap .map iframe{
    width: 100%;
}
.store_information_wrap .map_wrap .btn_wrap{
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
}
.store_information_wrap .map_wrap .gmap_btn{
    display: block;
    width: calc(48%);
    height: 3.3rem;
    border: solid .1rem #707070;
    border-radius: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    &:hover{
        opacity: 1;
        border: solid .1rem #02A79E;
        background-color: #02A79E;
        color: #fff;
    }
}
.store_information_wrap .map_wrap .gmap_btn .text{
    font-size: 1.2rem;
    font-weight: bold;
}
.store_information_wrap .map_wrap .copy_btn{
    display: block;
    width: calc(48%);
    height: 3.3rem;
    border: solid .1rem #707070;
    border-radius: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    &:hover{
		border: solid .1rem #02A79E;
        background-color: #02A79E;
        color: #fff;
        opacity: 1;
    }
}
.store_information_wrap .map_wrap .copy_btn .text{
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 3.7rem;
    position: relative;
    &::before{
        content: '';
        width: 2.3rem;
        height: 2.3rem;
        background-image: url(../img/copy-icon.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        transition: .3s;
    }
}
.store_information_wrap .map_wrap .copy_btn:hover .text::before{
    background-image: url(../img/copy_white-icon.svg);
}
.store_information_wrap .address_wrap .address_info{
    margin-bottom: 2rem;
}
.store_information_wrap .address_wrap .address_info .address_item{
    padding: 2.2rem 0 2rem;
    border-top: .1rem solid #707070;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    &:last-child{
        border-bottom: .1rem solid #707070;
    }
}
.store_information_wrap .address_wrap .address_info .address_item p{
    line-height: 1.55;
    &:first-child{
        width: 9rem;
    }
    &:last-child{
        width: calc(100% - 9rem);
    }
}
.store_information_wrap .address_wrap .schedule_btn {
    display: block;
    width: 100%;
    height: 6.1rem;
    border: solid .1rem #707070;
    border-radius: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    &:hover{
		border: solid .1rem #02A79E;
        background-color: #02A79E;
        color: #fff;
        opacity: 1;
    }
}
.store_information_wrap .address_wrap .schedule_btn .text{
    font-size: 1.6rem;
    font-weight: bold;
    padding-left: 3.5rem;
    position: relative;
    &::before{
        content: '';
        width: 1.92rem;
        height: 1.92rem;
        background-image: url(../img/externalLink_black-icon.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        transition: .3s;
    }
}
.store_information_wrap .address_wrap .schedule_btn:hover .text::before{
    background-image: url(../img/externalLink_white-icon.svg);
}

/*スライドショー*/
.slide-items .slide-item{
    margin: 0 2.25rem;
}

/*TOP - 予約*/
.top_reservation{
    background-color: #02A79E;
    padding: 9.2rem 0 11rem; 
}
.top_reservation .container{
    max-width: 1072px;
    padding: 0 3.6rem 0;
    margin: 0 auto;
}
.top_reservation .ttl{
    color: #fff; 
}
.top_reservation .ttl .main_ttl{
    font-size: 4rem;
}
.top_reservation .content_wrap{
    margin: 4.4rem auto 6.4rem;
}
.top_reservation .content_wrap p{
    color: #fff; 
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.87;
    text-align: center;
}
.top_reservation .line_btn{
    display: block;
    margin:  0 auto;
    width: 100%;
    max-width: 55.8rem;
    height: 10.5rem;
    border: solid .4rem #fff;
    border-radius: 5.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #4CC764;
}
.top_reservation .line_btn .text{
    font-size: 1.8rem;
    font-weight: bold;
    padding-left: 6.7rem;
    position: relative;
    &::before{
        content: '';
        width: 5.3rem;
        height: 5rem;
        background-image: url(../img/line-icon.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        transition: .3s;
    }
}
/*TOP - 施術メニュー・料金*/
.top_treatment_menu{
    background-color: #FFF8D3;
    padding: 20.7rem 0 15.5rem; 
}
.top_treatment_menu .container{
    max-width: 1072px;
    padding: 0 3.6rem 0;
    margin: 0 auto;
}
.top_treatment_menu .content_wrap{
    background-color: #fff;
    border-radius: 2rem;
    padding: 3.5rem 6.4rem 5.6rem;
    margin-top: 3.7rem;
}
.top_treatment_menu .hokennai_menu_wrap h3, .top_treatment_menu .hokengai_menu_wrap h3{
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3.5rem;
}
.top_treatment_menu .menu_dtl_wrap .menu_dtl{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.6rem 0 3.2rem;
    border-top: .1rem solid #656565;
    &:last-child{
        border-bottom: .1rem solid #656565;
    }
}
.top_treatment_menu .menu_dtl_wrap .menu_dtl .head_wrap{
    width: 60%;
    font-size: 1.6rem;
}
.top_treatment_menu .menu_dtl_wrap .menu_dtl .head_wrap h4{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.4rem;
}
.top_treatment_menu .menu_dtl_wrap .menu_dtl .price_wrap{
    width: 40%;
    text-align: right;
}
.top_treatment_menu .hokennai_menu_wrap .menu_dtl_wrap .menu_dtl .price_wrap .price{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: .7rem;
    &:last-child{
        margin-bottom: 0;
    }
}
.top_treatment_menu .hokennai_menu_wrap .menu_dtl_wrap .menu_dtl .price_wrap .price p{
    font-size: 2rem;
    font-weight: bold;
    &:last-child{
        color: #02A79E;    
        margin-left: 5.3rem;
        width: 7.7rem;
    }
}
.top_treatment_menu .hokengai_menu_wrap{
    margin-top: 8rem;
}
.top_treatment_menu .hokengai_menu_wrap .menu_dtl_wrap .menu_dtl .price_wrap .price p{
    font-size: 2rem;
    font-weight: bold;
    color: #02A79E;
}
.top_treatment_menu .remark{
    margin-top: 4.1rem;
    &:nth-child(n+2){
        margin-top: 6.6rem;
    }
}
.top_treatment_menu .remark h3{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.1rem;
}
.top_treatment_menu .remark p{
    font-size: 1.6rem;
    line-height: 1.9;
}
/*TOP - 院長からひとこと*/
.top_message{
    background-color: #02A79E;
    padding: 6rem 0 0; 
}
.top_message .container{
    max-width: 1072px;
    padding: 0 3.6rem 0;
    margin: 0 auto;  
}
.top_message .ttl{
    color: #fff; 
    margin-top: 4.2rem;
}
.top_message .content_wrap{
    background-color: #FFF8D3;
    border-radius: 2rem;
    padding: 4rem 7rem 5rem;
    display: flex;
    justify-content: space-between;
    margin-top: 3.9rem;
}
.top_message .content_wrap .img_wrap{
    width: 50%;
    display: flex;
    align-items: center;
}
.top_message .content_wrap .img_wrap img{
    margin: 0 auto;
}
.top_message .content_wrap .message_wrap{
    width: 50%;
}
.top_message .content_wrap .message_wrap h4{
    font-size: 2.5rem;
    font-weight: bold;
    color: #02A79E;
    line-height: 1.7;
}
.top_message .content_wrap .name{
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.7;
    margin: 1.4rem 0 4.5rem;
}
.top_message .content_wrap .name span{
    font-size: 1.5rem;
    margin-right: 2.2rem;
}
.top_message .content_wrap .message_wrap .text{
    font-size: 1.6rem;
    line-height: 1.9;
}

/*下層 - 共通*/
.under_mv{
    padding: 15.5rem 0 6.1rem;
    background-color: #02A79E;
}

/*下層 - お知らせ一覧*/
.under_information{
    padding: 7rem 0 12.4rem;
    background-color: #FFF8D3;
}
.under_information .container{
    max-width: 1072px;
    padding: 0 3.6rem 0;
    margin: 0 auto;  
}
.under_information .information_wrap{
    padding: .5rem 5rem 4.5rem;
}
.under_information .information_wrap .information_item{
    padding: 5rem 0 5rem;
    &:last-child{
        padding-bottom: 0;
    }
}

/*下層 - お知らせ詳細*/
.under_information_post{
    padding: 7rem 0 15rem;
    background-color: #FFF8D3;
}
.under_information_post .container{
    max-width: 1072px;
    padding: 0 3.6rem 0;
    margin: 0 auto;  
}
.under_information_post .post_wrap{
    margin-top: 3.5rem;
    background-color: #fff;
    border-radius: 2rem;
    padding: 3.9rem 5rem 6rem;
}
.under_information_post .post_wrap .date{
   font-size: 1.5rem;
   font-family: 'Gotham', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",sans-serif;
   margin-bottom: 1.8rem;
}
.under_information_post .post_wrap h3{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}
.under_information_post .post_wrap h4{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2.4rem;
    line-height: 1.9;
}
.under_information_post .post_wrap hr{
    margin: 3.5rem 0;
    border-top: .1rem solid #DEDEDE;
}
.under_information_post .post_wrap .content_item{
    margin-bottom: 3.5rem;
}
.under_information_post .post_wrap .content_item img{
    width: 100%;
    object-fit: contain;
    margin-bottom: 2.5rem;
}
.under_information_post .post_wrap .content_item .text{
    font-size: 1.6rem;
}
.under_information_post .post_wrap .content_item .text p{
    line-height: 2.18;
}

.under_information_post .post_wrap .two_column_content_wrap{
    display: flex;
    justify-content: space-between;
}
.under_information_post .post_wrap .two_column_content_wrap > div{
    width: calc(50% - 2.4rem);
}
.under_information_post .post_wrap .two_column_content_wrap .content_item{
    margin-bottom: 0;
}
