@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  共通見出し

---------------------------------*/
.common_heading{
    margin-bottom: 4rem;
}
.common_heading span{
    font-size: 46px;
    line-height: 1;
    display: block;
    padding-bottom: 15px;
    color: #313131;
}
.common_heading h2{
    font-size: 14px;
    line-height: 1;
    color: #313131;
}


/*---------------------------------

  共通ボタン

---------------------------------*/
.common_button{
    display: block;
    font-size: 15px;
    line-height: 1;
    padding: 20px 25px;
    border: solid 1px #E4DEE8;
    border-radius: 8px;
    width: 240px;
    position: relative;
    transition: 0.35s ease;
}
.common_button:hover{
    background-color: rgba(228,222,232,0.8);
}
.common_button>span:first-child{
    display: inline-block;
    padding-right: 50px;
}
.common_button .arrow{
    width: 18px;
    height: 8px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
}
.common_button .arrow span{
    overflow: hidden;
    width: 18px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.35s ease;
}
.common_button:hover .arrow span{
    width: 28px;
}
.common_button .arrow img{
    position: absolute;
    width: 32px;
    height: auto;
    top: 0;
    right: 0;
}


/*---------------------------------

  メインビジュアル

---------------------------------*/
.wrapper.mv{
    padding-top: 60px;
    margin-bottom: 14rem;
}
.wrapper.mv .top_logo{
    display: block;
    width: 180px;
    margin: 0 auto;
    margin-bottom: 45px;
    transition: 0.35s;
}
.wrapper.mv .top_logo:hover{
    opacity: 0.7;
}
.wrapper.mv .main_visual{
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: min(78%,1600px);
    height: 100vh;
    overflow: hidden;
}
.wrapper.mv .main_visual .image_box{
    width: 100%;
    height: 100%;
    display: block;
}
.wrapper.mv .main_visual .image_box img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}
.wrapper.mv .main_visual .copy{
    position: absolute;
    left: 8%;
    bottom: 34%;
    color: #fff;
    text-shadow: 0px 0px 25px rgba(0,0,0,0.7);
}
.wrapper.mv .main_visual .copy span:first-child{
    font-size: clamp(22px,2.3rem,38px);
    display: block;
    padding-bottom: 2rem;
    line-height: 1;
}
.wrapper.mv .main_visual .copy span:last-child{
    font-size: clamp(18px,2rem,32px);
    display: block;
    line-height: 1;
    letter-spacing: 0.1rem;
}


/*---------------------------------

  お知らせ

---------------------------------*/
.wrapper.news{
    position: relative;
    padding-top: clamp(100px,10.4rem,119px);
    margin-bottom: 14rem;
}
.wrapper.news::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(80px,15rem,170px);
    background: url(../img/top/bg_text.svg)left top/auto 100% repeat-x;
    animation: loop-text 80s infinite linear;
    z-index: -1;
}
@keyframes loop-text {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -4000px 0;
  }
}
.wrapper.news .common_heading{
    margin-bottom: 5rem;
}
.wrapper.news .container{
    position: relative;
    padding-left: 22%;
    padding: 10rem 0 10rem 21%;
    background-color: #F6F4F7;
    display: flex;
    justify-content: center;
}
.wrapper.news .container::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 21%;
    height: 99%;
    background: url("../img/top/news_bg.jpg")center/cover no-repeat;
}
.wrapper.news .container .inner{
    width: min(80%,1200px);
}
.wrapper.news .container .inner .cms{
    border-top: solid 1px #E4DEE8;
    margin-bottom: 3rem;
}
.wrapper.news .common_button{
    margin: 0 0 0 auto;
}
@media print, screen and (max-width: 1500px){
    .wrapper.news{
        padding-top: 70px;
    }
    .wrapper.news::before{
        height: 100px;
    }
}
.sugu-interactive-list li{
    border-bottom: solid 1px #E4DEE8;
    position: relative;
}
.sugu-interactive-list li::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    background: #E4DEE8;
    height: 12px;
    width: 12px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.sugu-interactive-list li a{
    display: flex;
    align-items: center;
    padding: 3.6rem 3rem;
    transition: 0.35s;
}
.sugu-interactive-list li a:hover{
    opacity: 0.6;
}
.sugu-listdate{
    line-height: 1;
    font-size: 13px;
    display: inline-block;
    width: 15%;
}
.sugu-listlink{
    width: 85%;
    line-height: 1.7;
}


/*---------------------------------

  導入テキスト

---------------------------------*/
.wrapper.intro{
    margin-bottom: 14rem;
}
.wrapper.intro .inner{
    display: flex;
    justify-content: space-between;
    width: min(75%,1600px);
    margin: 0 auto;
}
.wrapper.intro .inner h2{
    width: 60%;
    font-size: 28px;
}
.wrapper.intro .inner .text{
    width: 40%;
}
.wrapper.intro .inner .text p:first-child{
    padding-bottom: 3rem;
}


/*---------------------------------

  動画

---------------------------------*/
.wrapper.video{
    margin-bottom: 14rem;
}
.wrapper.video .inner{
    width: 90%;
}
.wrapper.video .inner video{
    width: 100%;
    height: auto;
}


/*---------------------------------

  こだわりの施術

---------------------------------*/
.wrapper.treatment{
    margin-bottom: 30rem;
}
.wrapper.treatment .inner{
    width: min(75%,1600px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.wrapper.treatment .container{
    width: 46%;
    padding-right: 12%;
    padding-top: 14rem;
}
.wrapper.treatment .common_heading{
    margin-bottom: 5rem;
}
.wrapper.treatment .container .text{
    padding-bottom: 4rem;
}
.wrapper.treatment .image{
    width: 54%;
    position: relative;
}
.wrapper.treatment .image::before{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background: url("../img/top/treatment_bg.jpg")center/cover no-repeat;
    z-index: -1;
}
.treatment_image_01{
    position: absolute;
    top: 40%;
    left: 0;
    width: 52%;
    overflow: hidden;
}
.treatment_image_02{
    position: absolute;
    top: 130%;
    left: 10%;
    width: 60%;
    overflow: hidden;
}
@media print, screen and (max-width: 1400px){
    .treatment_image_01{
        top: 30%;
        width: 64%;
    }
    .treatment_image_02{
        top: 110%;
        width: 72%;
    }
}


/*---------------------------------

  ラクリスの効果

---------------------------------*/
.wrapper.effect{
    margin-bottom: 14rem;
}
.effect_list{
    width: 90%;
    margin: 0 0 0 auto;
    overflow: hidden;
    position: relative;
}
.effect_list .swiper-slide{
    display: flex;
    flex-direction: row-reverse;
    height: clamp(680px,80rem,960px);
}
.effect_list .swiper-slide .container{
    width: 54%;
    background-color: #F6F4F7;
    padding: 10rem 12rem 14rem;
}
.effect_list .swiper-slide .container h2{
    font-size: 20px;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    border-bottom: solid 1px #E4DEE8;
}
.effect_list .swiper-slide .container .detail .number{
    letter-spacing: 0.2rem;
    display: block;
    padding-bottom: 1.5rem;
}
.effect_list .swiper-slide .container .detail h3{
    font-size: 20px;
    padding-bottom: 4rem;
}
.effect_list .swiper-slide .container .detail .text p{
    padding-bottom: 2rem;
}
.effect_list .swiper-slide .container .detail .text p:last-child{
    padding-bottom: 0;
}
.effect_list .swiper-slide .image{
    width: 46%;
    height: 100%;
}
.effect_list .swiper-slide .image img{
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.swiper_navigation{
    position: relative;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: 12rem!important;
    top: auto!important;
    bottom: 10rem;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    left: 18rem!important;
    top: auto!important;
    bottom: 10rem;
}
.swiper-button-next:after, .swiper-button-prev:after{
    content: ''!important;
    display: inline-block;
    vertical-align: middle;
    color: #444;
    line-height: 1;
    width: 28px;
    height: 28px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(25%) rotate(-135deg);
}
.swiper-button-next:after{
    transform: translateX(25%) rotate(45deg);
}
@media print, screen and (max-width: 1600px){
    .effect_list .swiper-slide .container{
        padding: 7rem 8rem 14rem;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next{
        left: 8rem!important;
        bottom: 7rem;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev{
        left: 15rem!important;
        bottom: 7rem;
    }
    .swiper-button-next:after, .swiper-button-prev:after{
        width: 22px;
        height: 22px;
    }
}


/*---------------------------------

  メニュー・効果

---------------------------------*/
.wrapper.menu{
    margin-bottom: 14rem;
}
.wrapper.menu .inner{
    width: min(75%,1600px);
    margin: 0 auto;
    margin-bottom: 7rem;
}
.wrapper.menu .common_heading{
    text-align: right;
}
.wrapper.menu .text{
    text-align: right;
    padding-bottom: 3rem;
}
.wrapper.menu .common_button{
    margin: 0 0 0 auto;
}
.image_carousel{
    overflow: hidden;
}
.image_carousel .swiper-wrapper {
  transition-timing-function: linear;
}


/*---------------------------------

  アクセス

---------------------------------*/
.wrapper.access{
    margin-bottom: 6rem;
}
.wrapper.access .inner{
    display: flex;
    flex-direction: row-reverse;
}
.wrapper.access .inner .map-wrap{
    position: relative;
    width: 61%;
    padding-top: min(45%,990px);
}
.wrapper.access .inner .map-wrap .map{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wrapper.access .inner .container{
    width: 39%;
    display: flex;
    justify-content: center;
}
.wrapper.access .inner .container>div{
    width: 70%;
}
.wrapper.access .common_heading{
    margin-bottom: 5rem;
}
.wrapper.access table{
    width: 100%;
    line-height: 1.8;
}
.wrapper.access table tr th{
    display: block;
    width: 100%;
    text-align: left;
    font-size: 13px;
    padding-bottom: 5px;
}
.wrapper.access table tr td{
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: min(2.8rem,40px);
    margin-bottom: min(2.8rem,40px);
    border-bottom: solid 1px #313131;
}


@media print, screen and (max-width: 1200px){
    .wrapper.news .container{
        padding: 10rem 0 10rem 12%;
    }
    .wrapper.news .container::before{
        width: 12%;
    }
    .sugu-interactive-list li a{
        padding: 30px;
    }
    .wrapper.intro .inner{
        width: min(85%,1600px);
    }
    .wrapper.intro .inner h2{
        font-size: 22px;
    }
}


@media print, screen and (max-width: 1024px){
    .wrapper.mv .main_visual{
        height: 70vh;
    }
    .effect_list .swiper-slide{
        display: block;
        height: auto;
    }
    .effect_list .swiper-slide .container{
        width: 100%;
        height: 600px;
    }
    .effect_list .swiper-slide .image{
        width: 100%;
        height: 600px;
    }
    .wrapper.access .inner .map{
        height: 50vh;
    }

}


@media print, screen and (max-width: 768px){
    .wrapper.news .common_heading {
        margin-bottom: 8rem;
    }
    .common_heading span{
        font-size: 38px;
        padding-bottom: 12px;
    }
    .wrapper.mv{
        padding-top: 0;
        height: calc(100vh - 2rem);
        overflow: hidden;
        margin-bottom: 10rem;
    }
    .wrapper.mv .top_logo{
        width: 130px;
        margin-bottom: 6rem;
        padding-top: 6.6rem;
    }
    .wrapper.mv .main_visual{
        height: calc(100vh - 12.6rem - 22px);
        height: calc(100lvh - 12.6rem - 22px);
        width: 100%;
        padding: 0 2rem;
    }
    .wrapper.mv .main_visual .image_box img{
        height: 100%;
    }
    .wrapper.mv .main_visual .copy{
        bottom: 15%;
        text-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    }
    .wrapper.mv .main_visual .copy span:first-child{
        font-size: 20px;
        padding-bottom: 16px;
    }
    .wrapper.mv .main_visual .copy span:last-child{
        font-size: 15px;
    }
    .wrapper.news{
        padding-top: 14rem;
        margin-bottom: 16rem;
    }
    .wrapper.news::before{
        height: 20rem;
        animation: loop-text 100s infinite linear;
    }
    .wrapper.news .container{
        padding: 14rem 0 14rem 9rem;
    }
    .wrapper.news .container::before{
        width: 9rem;
    }
    .wrapper.news .container .inner{
        width: 100%;
        padding: 0 6rem;
    }
    .wrapper.news .container .inner .cms{
        margin-bottom: 6rem;
    }
    .sugu-interactive-list li a{
        display: block;
        padding: 6rem 0;
    }
    .sugu-listdate{
        display: block;
        width: 100%;
        padding-bottom: 10px;
        font-size: 14px;
    }
    .sugu-listlink{
        display: block;
        width: 100%;
    }
    .wrapper.intro{
        margin-bottom: 16rem;
    }
    .wrapper.intro .inner{
        width: 100%;
        padding: 0 6rem;
        display: block;
    }
    .wrapper.intro .inner h2{
        width: 100%;
        font-size: 20px;
        padding-bottom: 6rem;
    }
    .wrapper.intro .inner .text{
        width: 100%;
    }
    .wrapper.intro .inner .text p:first-child{
        padding-bottom: 4rem;
    }
    .wrapper.video{
        margin-bottom: 16rem;
    }
    .wrapper.video .inner{
        width: calc(100% - 2rem);
    }
    .wrapper.treatment{
        margin-bottom: 18rem;
    }
    .wrapper.treatment .inner{
        width: 100%;
        padding: 0 6rem;
        display: block;
    }
    .wrapper.treatment .container{
        width: 100%;
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 14rem;
    }
    .wrapper.treatment .common_heading{
        margin-bottom: 8rem;
    }
    .wrapper.treatment .container .text{
        padding-bottom: 7rem;
    }
    .wrapper.treatment .image{
        margin: 0 auto;
        width: 100%;
        height: 88rem;
        padding-top: 35rem;
        padding-right: 5rem;
    }
    .wrapper.treatment .image::before{
        width: 55%;
    }
    .treatment_image_01{
        top: 8%;
        width: 65%;
        height: 35rem;
    }
    .treatment_image_02{
        width: 75%;
        height: 43rem;
        top: 55%;
    }
    .wrapper.effect{
        margin-bottom: 16rem;
    }
    .effect_list{
        width: calc(100% - 2rem);
        background-color: #F6F4F7;
    }
    .effect_list .swiper-slide .container{
        padding: 7rem 6rem 12rem;
        height: min(122rem,700px);
    }
    .effect_list .swiper-slide .container h2{
        font-size: 16px;
        margin-bottom: 7rem;
    }
    .effect_list .swiper-slide .container .detail h3{
        font-size: 18px;
    }
    .effect_list .swiper-slide .image{
        height: auto;
        padding-left: 6rem;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next{
        left: auto!important;
        right: 16rem!important;
        bottom: 7rem!important;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev{
        left: auto!important;
        right: 8rem!important;  
        bottom: 7rem!important;
    }
    .wrapper.menu{
        margin-bottom: 16rem;
    }
    .wrapper.menu .inner{
        width: 100%;
        padding: 0 6rem;
        margin-bottom: 12rem;
    }
    .wrapper.menu .common_heading{
        margin-bottom: 8rem;
    }
    .wrapper.menu .text{
        padding-bottom: 7rem;
    }
    .wrapper.access{
        margin-bottom: 10rem;
    }
    .wrapper.access .inner{
        display: block;
    }
    .wrapper.access .inner .container,
    .wrapper.access .inner .container>div{
        display: block;
        width: 100%;
        margin-bottom: 10rem;
    }
    .wrapper.access .inner .container{
        padding: 0 6rem;
    }
    .wrapper.access .common_heading{
        margin-bottom: 8rem;
    }
    .wrapper.access table tr th{
        padding-bottom: 7px;
    }
    .wrapper.access table tr td{
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .wrapper.access table tr:last-child td{
        margin-bottom: 0;
    }
    .wrapper.access .inner .map-wrap{
        width: calc(100% - 6rem);
        padding-top: 50rem;
    }
}
@media print, screen and (max-width: 450px){
    .treatment_image_02{
        width: 85%;
    }
    .wrapper.access .inner .map-wrap{
        padding-top: min(70vh,515px);
    }    
}
@media print, screen and (max-width: 400px){
    .effect_list .swiper-slide .container{
        height: min(130rem,700px);
    }
    .effect_list .swiper-slide .container h2{
        font-size: 14px;
    }
    .effect_list .swiper-slide .container .text{
        font-size: 14px;
    }
}