﻿@charset "utf-8";
/* CSS Document */

/*--------------------------------------
    introArea
--------------------------------------*/

.top .introArea{
    width:100%;
    height:1225px;
    background: #FDE6DF;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap:40px;
}
.top .introArea .img{
    width:45%;
}
.top .introArea .inner{
    position: relative;
    z-index: 80;
    text-align: center;
}
.top .introArea .inner .logo{
    width:16.2222vw;
    margin: 0 auto;
}
.top .introArea .inner h2{
    font-size:4.4444vw;
    font-family: adobe-garamond-pro, serif;
    color:#C38A87;
    text-align: center;
    line-height: 1.1;
    margin-top: 50px;
    margin-bottom: 40px;
}
.top .introArea .inner h3{
    font-size:2.1111vw;
    font-family: shippori-mincho, sans-serif;
    color:#C38A87;
    text-align: center;
    position: relative;
    line-height: 1;
}
.top .introArea .inner h3 img{
    width:8.6%;
    position: absolute;
    top:calc(100% + 80px);
    left:0;
    right:0;
    margin: auto;
}
.top .introArea .beforeimg{
    width:30.1111vw;
    height:37.7222vw;
    position: absolute;
    top:0;
    left:0;
}
.top .introArea .beforeimg img{
    position: absolute;
    top:0;
    left:0;
}
.top .introArea .beforeimg img:nth-of-type(1){
    z-index: 40;
}
.top .introArea .beforeimg img:nth-of-type(2){
    z-index: 60;
}
.top .introArea .afterimg{
    width:40.1111vw;
    height:39.3888vw;
    position: absolute;
    bottom:0;
    right:0;
}
.top .introArea .afterimg img{
    position: absolute;
    bottom:0;
    right:0;
}
.top .introArea .afterimg img:nth-of-type(1){
    z-index: 40;
}
.top .introArea .afterimg img:nth-of-type(2){
    z-index: 60;
}
@media (max-width: 768px) {
    .top .introArea{
        height:auto;
        background: #FDE6DF;
        padding: 60px 4% 100px 4%;
        display: block;
    }
    .top .introArea .img{
        width:100%;
        text-align: center;
    }
    .top .introArea .inner .logo{
        width:80%;
        text-align: center;
    }
    .top .introArea .inner h2{
        font-size:32px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .top .introArea .inner h3{
        font-size:18px;
        margin-bottom: 100px;
    }
    .top .introArea .inner h3 img{
        width:27px;
        top:calc(100% + 20px);
    }
}

/*--------------------------------------
    featureArea
--------------------------------------*/

.top .featureArea{
    padding: 120px 0 150px 0;
    background: #DDABA7;
}
.top .featureArea h2.style001{
    color:#FFFFFF;
    margin-bottom: 56px;
}
.top .featureArea .pointArea{
    width:1200px;
    margin: 0 auto 0 auto;
    display: grid;
    gap:70px 40px;
    grid-template-columns: 1fr 1fr;
    counter-reset: number 0;
}
.top .featureArea .pointArea .pointBox{
    counter-increment: number 1;
}
.top .featureArea .pointArea .pointBox:last-of-type{
    grid-column: 1 / 3;
    display: block;
}
.top .featureArea .pointArea .pointBox h3{
    font-family: adobe-garamond-pro, serif;
    font-size:36px;
    font-weight: 400;
    color:#FFFFFF;
    padding: 32px 0 32px 190px;
    position: relative;
    background: url("../images/top/icon_feature_001.png") no-repeat left top;
}
.top .featureArea .pointArea .pointBox:last-of-type h3{
    float: right;
    width:470px;
    padding: 140px 0 27px 0;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.top .featureArea .pointArea .pointBox h3:before{
    content: "POINT";
    position: absolute;
    top:25px;
    left:45px;
    color:#FFFFFF;
    font-size:20px;
    font-weight: bold;
    line-height: 1;
}
.top .featureArea .pointArea .pointBox h3:after{
    content: counter(number,decimal-leading-zero) " ";
    position: absolute;
    top:45px;
    left:70px;
    color:#FFFFFF;
    font-size:60px;
    font-weight: bold;
    line-height: 1;
}
.top .featureArea .pointArea .pointBox .img{
    width:100%;
    position: relative;
}
.top .featureArea .pointArea .pointBox:last-of-type .img{
    width:690px;
    float: left;
    position: relative;
}
.top .featureArea .pointArea .pointBox .img::before{
    width:100%;
    display: inline-block;
    content: "";
    padding-top: 65%;
}
.top .featureArea .pointArea .pointBox:last-of-type .img::before{
    padding-top: 55%;
}
.top .featureArea .pointArea .pointBox .img img{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left:0;
}
.top .featureArea .pointArea .pointBox:last-of-type .img{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.top .featureArea .pointArea .pointBox .text{
    margin-top: 25px;
    color:#FFFFFF;
    line-height: 1.8;
}
.top .featureArea .pointArea .pointBox:last-of-type .text{
    float: right;
    width:470px;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
@media (max-width: 768px) {
    .top .featureArea{
        padding: 40px 4%;
    }
    .top .featureArea h2.style001{
        margin-bottom: 25px;
    }
    .top .featureArea .pointArea{
        width:100%;
        display: block;
    }
    .top .featureArea .pointArea .pointBox{
        margin-top: 30px;
    }
    .top .featureArea .pointArea .pointBox h3{
        font-size:18px;
        padding: 20px 0 20px 90px;
        background-size:80px;
    }
    .top .featureArea .pointArea .pointBox:last-of-type h3{
        float: none;
        width:100%;
        padding: 20px 0 20px 90px;
    }
    .top .featureArea .pointArea .pointBox h3:before{
        top:10px;
        left:20px;
        font-size:14px;
    }
    .top .featureArea .pointArea .pointBox h3:after{
        top:20px;
        left:40px;
        font-size:32px;
    }
    .top .featureArea .pointArea .pointBox:last-of-type .img{
        width:100%;
        float: none;
    }
    .top .featureArea .pointArea .pointBox .text{
        margin-top: 15px;
    }
    .top .featureArea .pointArea .pointBox:last-of-type .text{
        float: none;
        width:100%;
    }
}

/*--------------------------------------
    linkArea
--------------------------------------*/

.top .linkArea{
    padding: 80px 0 80px 0;
    background: #FAEFE1;
    border-top:4px solid #B29752;
    border-bottom:4px solid #B29752;
    position: relative;
}
.top .linkArea::before{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    content:"";
    background: url("../images/top/bg_reserve.png") repeat center center;
}
.top .linkArea .boxArea{
    width:1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:80px;
    margin: 0 auto 0 auto;
}
.top .linkArea .boxArea .box{
    font-size:26px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:120px;
    position: relative;
    background: #9F5E68;
    color:#FFFFFF;
    padding-left: 95px;
    padding-right: 50px;
    text-align: center;
}
.top .linkArea .boxArea .box:nth-of-type(2){
    background: #99C2B9;
}
.top .linkArea .boxArea .box::before{
    content: "";
    width:60px;
    height:70px;
    background: url("../images/common/icon_contact.png") no-repeat center center/contain;
    position: absolute;
    top:0;
    left:25px;
    right:auto;
    bottom:0;
    margin: auto auto auto auto;
}
.top .linkArea .boxArea .box::after{
    content: "";
    display: block;
    width:24px;
    height:24px;
    position: absolute;
    top:0;
    left:auto;
    right:30px;
    bottom:0;
    margin: auto auto auto auto;
    border-top:12px solid transparent;
    border-left:12px solid #FFFFFF;
    border-bottom:12px solid transparent;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .top .linkArea{
        padding: 40px 4% 40px 4%;
        border-top:2px solid #B29752;
        border-bottom:2px solid #B29752;
    }
    .top .linkArea .boxArea{
        width:100%;
        grid-template-columns: 1fr;
        gap:20px;
    }
    .top .linkArea .boxArea .box{
        font-size:16px;
        height:80px;
        padding-left: 80px;
        padding-right: 30px;
    }
    .top .linkArea .boxArea .box::before{
        left:10px;
    }
    .top .linkArea .boxArea .box::after {
        width: 12px;
        height: 12px;
        right: 10px;
        border-top: 6px solid transparent;
        border-left: 6px solid #FFFFFF;
        border-bottom: 6px solid transparent;
    }
}

/*--------------------------------------
    memberArea
--------------------------------------*/

.top .memberArea{
    padding: 100px 0 124px 0;
    background: #F0F0F0;
}
.top .memberArea h2.style001{
    color:#9F5E68;
    margin-bottom: 60px;
}
.top .memberArea .pointArea{
    width:1200px;
    margin: 145px auto 0;
    display: grid;
    gap:120px 40px;
    grid-template-columns: 1fr 1fr;
}
.top .memberArea .pointArea .pointBox{
    padding: 32px 30px 32px 30px;
    background: #FFFFFF;
    position: relative;
}
.top .memberArea .pointArea .pointBox h3{
    font-size:26px;
    font-weight: bold;
    margin-top: 15px;
    margin-left: 272px;
    margin-bottom: 75px;
}
.top .memberArea .pointArea .pointBox h3 span{
    font-size:20px;
    display: block;
}
.top .memberArea .pointArea .pointBox img{
    width:230px;
    height:230px;
    object-fit: contain;
    position: absolute;
    top:-60px;
    left:32px;
}
.top .memberArea .pointArea .pointBox .status{
    display: grid;
    gap:0 15px;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
}
.top .memberArea .pointArea .pointBox .status .statusBox{
    display: flex;
    gap:15px;
}
.top .memberArea .pointArea .pointBox .status .statusBox:nth-of-type(2){
    display: block;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    transform: translate(0,-45px);
}
.top .memberArea .pointArea .pointBox .status .statusBox h4{
    font-weight: bold;
    line-height: 30px;
}
.top .memberArea .pointArea .pointBox .status .statusBox li{
    line-height: 30px;
}
.top .memberArea .pointArea .pointBox .text{
    font-size:17px;
    padding: 20px 20px 55px 20px;
    border-radius: 10px;
    background: #F6F6F6;
    position: relative;
    line-height: 1.8;
}
.top .memberArea .pointArea .pointBox .text::before{
    content: "";
    width:30px;
    height:30px;
    display: block;
    background: #F6F6F6;
    position: absolute;
    left:40px;
    bottom:100%;
    clip-path: polygon(0% 100%, 80% 100%, 100% 0%);
}
.top .memberArea .pointArea .pointBox .text::after{
    content: "MESSAGE";
    font-size:26px;
    font-weight: 900;
    position: absolute;
    right:40px;
    bottom:14px;
    color:#E2E2E2;
}
@media (max-width: 768px) {
    .top .memberArea{
        padding: 40px 4% 40px 4%;
    }
    .top .memberArea h2.style001{
        margin-bottom: 25px;
    }
    .top .memberArea .pointArea{
        width:100%;
        margin: 40px auto 0;
        display: block;
    }
    .top .memberArea .pointArea .pointBox{
        padding: 10px;
        text-align: center;
    }
    .top .memberArea .pointArea .pointBox h3{
        font-size:20px;
        margin-top: 30px;
        margin-left: auto;
        margin-right:auto;
        margin-bottom: 30px;
    }
    .top .memberArea .pointArea .pointBox h3 span{
        font-size:14px;
    }
    .top .memberArea .pointArea .pointBox img{
        position: static;
    }
    .top .memberArea .pointArea .pointBox .status{
        display: block;
        text-align: left;
    }
    .top .memberArea .pointArea .pointBox .status .statusBox{
        margin-top: 15px;
    }
    .top .memberArea .pointArea .pointBox .status .statusBox:nth-of-type(2){
        transform: none;
    }
    .top .memberArea .pointArea .pointBox .text{
        font-size:14px;
        padding: 15px 15px 40px 15px;
        margin-top: 15px;
        text-align: left;
    }
    .top .memberArea .pointArea .pointBox .text::before{
        display: none;
    }
    .top .memberArea .pointArea .pointBox .text::after{
        font-size:14px;
        right:10px;
        bottom:10px;
    }
}

/*--------------------------------------
    noticeArea
--------------------------------------*/

.top .noticeArea{
    padding: 100px 0 90px 0;
    background: url("../images/common/bg_notes.jpg") no-repeat center center/cover;
}
.top .noticeArea h2.style001{
    color:#9F5E68;
    margin-bottom: 60px;
}
.top .noticeArea article{
    width:1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:20px 30px;
}
.top .noticeArea article a{
    display: block;
}
.top .noticeArea article a .thumb{
    width:100%;
    padding-top: 65%;
    position: relative;
    margin-bottom: 20px;
}
.top .noticeArea article a .thumb img{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left:0;
}
.top .noticeArea article a h3{
    font-size:18px;
}
.top .noticeArea article a time{
    display: block;
    text-align: right;
    margin-top: 25px;
}
@media (max-width: 768px) {
    .top .noticeArea{
        padding: 40px 4% 40px 4%;
    }
    .top .noticeArea h2.style001{
        margin-bottom: 25px;
    }
    .top .noticeArea article{
        width:100%;
        grid-template-columns: 1fr 1fr;
        gap:15px 10px;
    }
    .top .noticeArea article a time{
        margin-top: 20px;
    }
}
@media (max-width: 500px) {
    .top .noticeArea article{
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------
    introArea
--------------------------------------*/

.permanent .introArea{
    position: relative;
    background: #FDE6DF;
}
.permanent .introArea .visualArea{
    width:100%;
    height:auto;
    padding-top: 38%;
    position: relative;
    z-index: 20;
    text-align: center;
}
.permanent .introArea .visualArea .visual{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
}
.permanent .introArea .visualArea .visual img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.permanent .introArea .visualArea .inner{
    position: absolute;
    top:7.6666vw;
    right:9vw;
}
.permanent .introArea .visualArea .logo{
    width:16.2222vw;
    text-align: center;
    margin: 0 auto;
}
.permanent .introArea .visualArea h2{
    font-size:4.4444vw;
    font-family: adobe-garamond-pro, serif;
    color:#C38A87;
    text-align: center;
    line-height: 1.1;
    margin-top: 50px;
    margin-bottom: 40px;
}
.permanent .introArea .visualArea h3{
    font-size:2.1111vw;
    font-family: shippori-mincho, sans-serif;
    color:#C38A87;
    text-align: center;
    position: relative;
    line-height: 1;
}
.permanent .introArea .aboutBox{
    width:100%;
    display: flex;
    justify-content: center;
    gap:2.5556vw;
    padding: 5vw 0 5vw 0;
}
.permanent .introArea .aboutBox .textArea{
    width:37.2222vw;
    padding: 9.1111vw 1.1667vw 0 3.7778vw;
    box-sizing: border-box;
}
.permanent .introArea .aboutBox h2.style001{
    font-size:2.0556vw;
    color:#C38A87;
    margin-bottom: 2.2222vw;
}
.permanent .introArea .aboutBox p.text{
    font-size:1.1111vw;
    font-weight: 700;
    line-height: 1.5;
    color:#C38A87;
    margin-bottom: 3.3333vw;
}
.permanent .introArea .aboutBox p.pic{
    width:43.4444vw;
}
.permanent .introArea .aboutBox p.pic img{
    width:100%;
}
.permanent .introArea .aboutBox .btn001{
    width:20.5556vw;
    height:3.7778vw;
}
.permanent .introArea .aboutBox .btn001 a{
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #9F5E68;
    border-radius: 2vw 2vw 2vw 2vw;
}
.permanent .introArea .aboutBox .btn001 a::after{
    content: "";
    display: block;
    width:1vw;
    height:1vw;
    position: absolute;
    top:0;
    left:auto;
    right:1vw;
    bottom:0;
    margin: auto auto auto auto;
    border-top:0.5vw solid transparent;
    border-left:0.5vw solid #FFFFFF;
    border-bottom:0.5vw solid transparent;
    box-sizing: border-box;
}
.permanent .introArea .aboutBox .btn001 a span{
    font-size:1.2778vw;
    font-weight: 700;
    color:#FFFFFF;
}
.permanent .introArea .beforeimg{
    width:30.1111vw;
    height:37.7222vw;
    position: absolute;
    top:0;
    left:0;
}
.permanent .introArea .beforeimg img{
    position: absolute;
    top:0;
    left:0;
}
.permanent .introArea .beforeimg img:nth-of-type(1){
    z-index: 40;
}
.permanent .introArea .beforeimg img:nth-of-type(2){
    z-index: 60;
}
.permanent .introArea .afterimg{
    width:40.1111vw;
    height:39.3888vw;
    position: absolute;
    bottom:0;
    right:0;
}
.permanent .introArea .afterimg img{
    position: absolute;
    bottom:0;
    right:0;
}
.permanent .introArea .afterimg img:nth-of-type(1){
    z-index: 40;
}
.permanent .introArea .afterimg img:nth-of-type(2){
    z-index: 60;
}
@media (max-width: 768px) {
    .permanent .introArea .visualArea{
        padding: 60px 4% 20px;
    }
    .permanent .introArea .visualArea .visual{
        display: none;
    }
    .permanent .introArea .visualArea .inner{
        position: static;
        text-align: center;
    }
    .permanent .introArea .visualArea .logo{
        width:80%;
    }
    .permanent .introArea .visualArea h2{
        font-size:32px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .permanent .introArea .visualArea h3{
        font-size:20px;
    }
    .permanent .introArea .aboutBox{
        width:92%;
        margin: 30px auto 0;
        display: block;
    }
    .permanent .introArea .aboutBox .textArea{
        width:100%;
        padding: 0 0 0 0;
        box-sizing: border-box;
    }
    .permanent .introArea .aboutBox h2.style001{
        font-size:21px;
        margin-bottom: 30px;
    }
    .permanent .introArea .aboutBox p.text{
        font-size:14px;
        margin-bottom: 30px;
    }
    .permanent .introArea .aboutBox p.pic{
        width:90%;
        margin-top: 30px;
    }
    .permanent .introArea .aboutBox .btn001{
        width:256px;
        height:48px;
        margin: 0 auto 0 auto;
    }
    .permanent .introArea .aboutBox .btn001 a{
        border-radius: 24px 24px 24px 24px;
    }
    .permanent .introArea .aboutBox .btn001 a::after{
        width:14px;
        height:14px;
        right:14px;
        border-top:7px solid transparent;
        border-left:7px solid #FFFFFF;
        border-bottom:7px solid transparent;
    }
    .permanent .introArea .aboutBox .btn001 a span{
        font-size:19px;
    }
}

/*--------------------------------------
    planArea
--------------------------------------*/

.permanent .planArea{
    position: relative;
    background: #DDABA7;
    padding: 6vw 0 6vw 0;
    display: grid;
    gap:6vw;
}
.permanent .planArea .box{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap:2.7777vw 5vw;
}
.permanent .planArea .box:nth-of-type(1),
.permanent .planArea .box:nth-of-type(4){
    flex-direction: row-reverse;
}
.permanent .planArea .box .textArea{
    width:33.1666vw;
    color:#FFFFFF;
}
.permanent .planArea .box .textArea h2.style001{
    margin-bottom: 1.5vw;
    position: relative;
}
.permanent .planArea .box .textArea h2.style001::before {
	content: attr(data-en);
	position: absolute;
	transform: rotate(-5deg);
    top: -45px;
    left: -40px;
	color: rgba(159,94,104,0.60);
	font-size: 50px;
	font-weight: 400;
	font-family: luxus-brut, cursive;
	font-style: italic;
}
.permanent .planArea .box .textArea .desc{
    font-size:1.2778vw;
    margin-bottom: 1.3889vw;
    font-weight: 700;
}
.permanent .planArea .box .textArea h3{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #A06E6C;
    margin-bottom: 1.2778vw;
    padding-left: 1vw;
    font-weight: 700;
}
.permanent .planArea .box .textArea ul{
    margin-bottom: 2.2222vw;
}
.permanent .planArea .box .textArea ul li{
    font-size:1.1111vw;
    font-weight: 700;
}
.permanent .planArea .box .textArea ul li::before{
    content: "・";
}
.permanent .planArea .box .textArea .text{
    font-size:1.1111vw;
    font-weight: 700;
}
.permanent .planArea .box .pic{
    width:50vw;
    height:43.2222vw;
    position: relative;
}
.permanent .planArea .box .pic img{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    top:0;
    bottom:0;
}
.permanent .planArea .box:nth-of-type(1) .pic img,
.permanent .planArea .box:nth-of-type(4) .pic img{
    left:0;
    right:0;
    border-radius:0 13.1111vw 13.1111vw 0;
}
.permanent .planArea .box:nth-of-type(3) .pic img{
    left:0;
    right:0;
    border-radius:13.1111vw 0 0 13.1111vw;
}
.permanent .planArea .box .example{
    width:76.8888vw;
    margin: 0 auto;
    color:#FFFFFF;
}
.permanent .planArea .box .example h3{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #A06E6C;
    margin-bottom: 2vw;
    padding-left: 1vw;
    font-weight: 700;
}
.permanent .planArea .box .example ul{
    display: flex;
    justify-content: space-between;
}
.permanent .planArea .box .example ul li{
    width:18.3333vw;
}
.permanent .planArea .box .example ul li span{
    display: block;
    width:100%;
    padding-top: 54.5454%;
    position: relative;
}
.permanent .planArea .box .example ul li span img{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left:0;
    z-index: 20;
}
.permanent .planArea .box .example ul li span::before{
    content: "";
    width:114px;
    height:26px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
    position: absolute;
    top:0;
    left:0;
    z-index: 40;
    background: linear-gradient(to right, #303030 0%, #373737 30%,rgba(255,255,255,0) 100%)
}
.permanent .planArea .box .example ul li span.before::before{
    content: "Before";
}
.permanent .planArea .box .example ul li span.after::before{
    content: "After";
}
.permanent .planArea .mensBox{
    padding: 4.7777vw 0 9.4444vw 0;
    background: #99C2B9;
    position: relative;
}
.permanent .planArea .mensBox::before{
    content: "MEN'S";
    font-family: adobe-garamond-pro, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    font-size:23.3333vw;
    color:#FFFFFF;
    opacity: 0.15;
    position: absolute;
    top:3vw;
    left:-5vw;
    transform: rotate(-15deg);
}
.permanent .planArea .mensBox .textArea{
    width:27.7777vw;
    color:#FFFFFF;
    margin-left: 16.6666vw;
}
.permanent .planArea .mensBox .textArea h2.style001{
    margin-bottom: 2vw;
}
.permanent .planArea .mensBox .textArea h3{
    font-size:1.3333vw;
    line-height: 2.2222vw;
    background: rgba(73,155,137,0.5);
    margin-bottom: 0.8888vw;
    border-radius: 1.05555vw;
    text-align: center;
    font-weight: 700;
}
.permanent .planArea .mensBox .textArea ul{
    display: flex;
    gap:0.6666vw;
    margin-bottom: 2.8888vw;
}
.permanent .planArea .mensBox .textArea ul li{
    font-size:1.1111vw;
    font-weight: 700;
}
.permanent .planArea .mensBox .textArea ul li::before{
    content: "・";
}
.permanent .planArea .mensBox .example{
    width:66.6666vw;
    margin: 0 auto;
    color:#FFFFFF;
    position: relative;
}
.permanent .planArea .mensBox .example h3{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #A06E6C;
    margin-bottom: 2vw;
    padding-left: 1vw;
    font-weight: 700;
}
.permanent .planArea .mensBox .example h4{
    font-size:3.3333vw;
    line-height: 1.05;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top:-1.4444vw;
    right:0;
    transform: translate(0,-100%) rotate(10deg);
}
.permanent .planArea .mensBox .example h4 span{
    font-weight: bold;
    display: inline-block;
    background: linear-gradient(to bottom,transparent 98%,#FFFFFF 0%)
}
.permanent .planArea .mensBox .example h4 font{
    font-size:5vw;
    font-weight: bold;
}
.permanent .planArea .mensBox .example h5{
    width:24.6111vw;
    height:24.6111vw;
    font-size:2.4444vw;
    line-height: 1.2727;
    border-radius: 50%;
    background: #FFFFFF;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#99C2B9;
    text-align: center;
    position: absolute;
    bottom:-3.7222vw;
    right:-5vw;
}
.permanent .planArea .mensBox .example ul{
    width:48.8888vw;
}
.permanent .planArea .mensBox .example ul li{
    width:100%;
    display: flex;
    gap:4.4444vw;
}
.permanent .planArea .mensBox .example ul li:first-of-type{
    margin-bottom: 20px;
}
.permanent .planArea .mensBox .example ul li span{
    display: block;
    width:100%;
    padding-top: 26%;
    position: relative;
}
.permanent .planArea .mensBox .example ul li span:first-of-type::after{
    content: "";
    width:0px;
    height:0px;
    border-top:1.0555vw solid transparent;
    border-left:1.8333vw solid #FFFFFF;
    border-bottom:1.0555vw solid transparent;
    position: absolute;
    top:0;
    left:calc(100% + 2.2222vw);
    bottom:0;
    margin: auto;
    transform: translate(-50%,0);
    z-index: 40;
}
.permanent .planArea .mensBox .example ul li span img{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left:0;
    z-index: 20;
}
.permanent .planArea .mensBox .example ul li span.before::before{
    content: "Before";
    width:114px;
    height:26px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
    position: absolute;
    top:0;
    left:0;
    z-index: 40;
    background: linear-gradient(to right, #303030 0%, #373737 30%,rgba(255,255,255,0) 100%)
}
.permanent .planArea .mensBox .example ul li span.after::before{
    content: "After";
    width:114px;
    height:26px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
    position: absolute;
    top:0;
    left:0;
    z-index: 40;
    background: linear-gradient(to right, #303030 0%, #373737 30%,rgba(255,255,255,0) 100%)
}
@media (max-width: 768px) {
    .permanent .planArea{
        padding: 40px 0;
        gap:30px;
    }
    .permanent .planArea .box{
        width:92%;
        margin: 0 auto;
        display: block;
    }
    .permanent .planArea .box .textArea{
        width:100%;
        margin: 0 auto 30px auto;
    }
    .permanent .planArea .box .textArea h2.style001{
        margin-bottom: 20px;
    }
    .permanent .planArea .box .textArea .desc{
        font-size:19px;
        margin-bottom: 20px;
    }
    .permanent .planArea .box .textArea h3{
        font-size:17px;
        line-height: 30px;
        margin-bottom: 20px;
        padding-left: 15px;
    }
    .permanent .planArea .box .textArea ul{
        margin-bottom: 30px;
    }
    .permanent .planArea .box .textArea ul li{
        font-size:16px;
    }
    .permanent .planArea .box .textArea .text{
        font-size:16px;
    }
    .permanent .planArea .box .pic{
        width:80vw;
        height:52vw;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 13.1111vw 13.1111vw 13.1111vw 13.1111vw;
    }
    .permanent .planArea .box .example{
        width:100%;
        margin: 40px auto 0 auto;
    }
    .permanent .planArea .box .example h3{
        font-size:18px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding-left: 5px;
    }
    .permanent .planArea .box .example ul{
        flex-wrap: wrap;
        gap:20px 0;
    }
    .permanent .planArea .box .example ul li{
        width:48%;
    }
    .permanent .planArea .mensBox{
        padding: 40px 4%;
    }
    .permanent .planArea .mensBox::before{
        font-size:10vw;
        top:6vw;
        left:0;
    }
    .permanent .planArea .mensBox .textArea{
        width:100%;
        margin-left: 0;
    }
    .permanent .planArea .mensBox .textArea h2.style001{
        margin-bottom: 25px;
    }
    .permanent .planArea .mensBox .textArea h3{
        font-size:18px;
        line-height: 1.5;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    .permanent .planArea .mensBox .textArea ul{
        margin-bottom: 30px;
    }
    .permanent .planArea .mensBox .textArea ul li{
        font-size:14px;
    }
    .permanent .planArea .mensBox .example{
        width:100%;
    }
    .permanent .planArea .mensBox .example h3{
        font-size:24px;
        line-height: 1.5;
        margin-bottom: 25px;
        padding-left: 0;
    }
    .permanent .planArea .mensBox .example h4{
        font-size:24px;
        position: static;
        transform: translate(0,0) rotate(0);
        margin: 30px auto;
    }
    .permanent .planArea .mensBox .example h4 font{
        font-size:32px;
    }
    .permanent .planArea .mensBox .example h5{
        width:50vw;
        height:50vw;
        font-size:5vw;
        position: static;
        margin: 40px auto 0 auto;
    }
    .permanent .planArea .mensBox .example ul{
        width:100%;
    }
    .permanent .planArea .mensBox .example ul li{
        gap:20px;
    }
    .permanent .planArea .mensBox .example ul li span:first-of-type::after{
        border-top:6px solid transparent;
        border-left:10px solid #FFFFFF;
        border-bottom:6px solid transparent;
        left:calc(100% + 10px);
    }
}

/*--------------------------------------
    guideArea
--------------------------------------*/

.permanent .guideArea{
    padding: 5vw 0 4vw 0;
    background: #F0F0F0;
}
.permanent .guideArea h2.style001{
    color:#9F5E68;
    margin-bottom: 2.2222vw;
}
.permanent .guideArea .innerArea{
    width:75.5556vw;
    padding: 3.1111vw 11.7778vw 3.2222vw 11.7778vw;
    box-sizing: border-box;
    margin: 0 auto 0 auto;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
.permanent .guideArea .innerArea table{
    width:100%;
    margin-bottom: 1.3889vw;
}
.permanent .guideArea .innerArea table thead tr th{
    font-size:1.2222vw;
    font-weight: 700;
    background: #B7918F;
    color:#FFFFFF;
    border:1px solid #707070;
    padding: 0.5556vw 0 0.5556vw 0;
}
.permanent .guideArea .innerArea table thead tr th:nth-of-type(1){
    width:25.5556vw;
}
.permanent .guideArea .innerArea table thead tr th:nth-of-type(2){
    width:6.6667vw;
}
.permanent .guideArea .innerArea table thead tr th:nth-of-type(3){
    width:20.2222vw;
}
.permanent .guideArea .innerArea table tbody tr th{
    font-size:1.2222vw;
    font-weight: 700;
    background: #FFEBEA;
    border:1px solid #707070;
    text-align: left;
    padding: 0.5556vw 0 0.5556vw 2.2222vw;
}
.permanent .guideArea .innerArea table tbody tr td{
    font-size:1.2222vw;
    font-weight: 700;
    background: #FFFFFF;
    border:1px solid #707070;
    padding: 0.5556vw 0 0.5556vw 0;
    text-align: center;
}
.permanent .guideArea .innerArea h3{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #A06E6C;
    color:#FFFFFF;
    margin-top: 1.6667vw;
    margin-bottom: 1.2778vw;
    padding-left: 1vw;
    font-weight: 700;
}
.permanent .guideArea .innerArea ul.comment li{
    font-size:1.0556vw;
    font-weight: 700;
}
.permanent .guideArea .innerArea ul.comment li::before{
    content: "※";
}
.permanent .guideArea .innerArea ul.price{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:0.5556vw 1.1111vw;
    margin-bottom: 1.6666vw;
}
.permanent .guideArea .innerArea ul.price li{
    font-weight: 700;
}
.permanent .guideArea .innerArea ul.price li::before{
    content: "●";
    color:#A06E6C;
}
.permanent .guideArea .pricecomment{
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 15px;
    text-align: right;
    font-weight: bold;
}
@media (max-width: 768px) {
    .permanent .guideArea{
        padding: 30px 20px 30px 20px;
    }
    .permanent .guideArea h2.style001{
        margin-bottom: 20px;
    }
    .permanent .guideArea .innerArea{
        width:100%;
        padding: 20px 15px 20px 15px;
    }
    .permanent .guideArea .innerArea table{
        margin-bottom: 20px;
    }
    .permanent .guideArea .innerArea table thead tr th{
        font-size:14px;
        padding: 5px 5px 5px 5px;
    }
    .permanent .guideArea .innerArea table thead tr th:nth-of-type(1){
        width:55%;
    }
    .permanent .guideArea .innerArea table thead tr th:nth-of-type(2){
        width:5%;
    }
    .permanent .guideArea .innerArea table thead tr th:nth-of-type(3){
        width:40%;
    }
    .permanent .guideArea .innerArea table tbody tr th{
        font-size:13px;
        padding: 5px 5px 5px 5px;
    }
    .permanent .guideArea .innerArea table tbody tr td{
        font-size:13px;
        padding: 5px 5px 5px 5px;
    }
    .permanent .guideArea .innerArea h3{
        font-size:14px;
        line-height: 30px;
        margin-top: 25px;
        margin-bottom: 15px;
        padding-left: 5px;
    }
    .permanent .guideArea .innerArea ul.comment li{
        font-size:12px;
    }
    .permanent .guideArea .innerArea ul.price{
        display: grid;
        grid-template-columns: 1fr;
        gap:5px;
        margin-bottom: 20px;
    }
}

/*--------------------------------------
    faqArea
--------------------------------------*/

.permanent .faqArea{
    padding: 5vw 0 5vw 0;
    background: #99C2B9;
}
.permanent .faqArea h2.style001{
    color:#FFFFFF;
}
.permanent .faqArea dl{
    width:75.5556vw;
    margin: 2.1667vw auto 0 auto;
    counter-reset: question 0;
}
.permanent .faqArea dt{
    font-size:1.1667vw;
    padding: 0.8333vw 3.2222vw 0.8333vw 1.1111vw;
    position: relative;
    background: #FFFFFF;
    font-weight: bold;
    counter-increment: question 1;
}
.permanent .faqArea dt:nth-of-type(2n){
    background: #D9EFEA;
}
.permanent .faqArea dt::before{
    content: "Q." counter(question);
    display: inline-block;
    margin-right: 0.2778vw;
}
.permanent .faqArea dt::after{
    content: "";
    display: block;
    width:1.5556vw;
    height:1.5556vw;
    position: absolute;
    top:0;
    left:auto;
    right:0.8333vw;
    bottom:0;
    margin: auto auto auto auto;
    border-top:0.7778vw solid transparent;
    border-left:0.7778vw solid #000000;
    border-bottom:0.7778vw solid transparent;
    box-sizing: border-box;
}
.permanent .faqArea dt.open::after{
    transform: translate(0,7px) rotate(90deg);
}
.permanent .faqArea dd{
    font-size:1.1667vw;
    line-height: 1.8;
    padding: 0.8333vw 3.2222vw 0.8333vw 1.1111vw;
    background: #EAE8E8;
    font-weight: bold;
    display: none;
}
@media (max-width: 768px) {
    .permanent .faqArea{
        padding: 30px 20px 30px 20px;
    }
    .permanent .faqArea dl{
        width:100%;
        margin: 20px auto 0 auto;
    }
    .permanent .faqArea dt{
        font-size:14px;
        padding: 5px 25px 5px 10px;
    }
    .permanent .faqArea dt::before{
        margin-right: 2px;
    }
    .permanent .faqArea dt::after{
        width:14px;
        height:14px;
        right:7px;
        border-top:7px solid transparent;
        border-left:7px solid #000000;
        border-bottom:7px solid transparent;
    }
    .permanent .faqArea dt.open::after{
        transform: translate(0,3.5px) rotate(90deg);
    }
    .permanent .faqArea dd{
        font-size:14px;
        padding: 5px 25px 5px 10px;
    }
}

/*--------------------------------------
    notesArea
--------------------------------------*/

.permanent .notesArea{
    padding: 5vw 0 6vw 0;
    background: url("../images/common/bg_notes.jpg") no-repeat center center/cover;
}
.permanent .notesArea h2.style001{
    color:#876821;
    margin-bottom: 40px;
}
.permanent .notesArea .boxArea{
    width:53.9444vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:2.5556vw 1.8333vw;
    margin: 0 auto;
}
.permanent .notesArea .boxArea a.box{
    width:12.1111vw;
    height:12.1111vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
    position: relative;
}
.permanent .notesArea .boxArea a.box::before{
    width:11.1111vw;
    height:11.1111vw;
    content: "";
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin: auto auto auto auto;
    z-index: 100;
    border:1px solid #968E87;
}
.permanent .notesArea .boxArea a.box p{
    font-size:1.0556vw;
    font-weight: 700;
    text-align: center;
    color:#5A544F;
}
.permanent .notesArea .boxArea a.box p span{
    font-size:1.1111vw;
    font-weight: 700;
    text-align: center;
    color:#EC869C;
    display: block;
}
@media (max-width: 768px) {
    .permanent .notesArea{
        padding: 30px 20px 30px 20px;
    }
    .permanent .notesArea h2.style001{
        margin-bottom: 20px;
    }
    .permanent .notesArea .boxArea{
        width:256px;
        gap:10px;
        grid-template-columns: 1fr 1fr;
    }
    .permanent .notesArea .boxArea a.box{
        width:123px;
        height:123px;
    }
    .permanent .notesArea .boxArea a.box::before{
        width:112px;
        height:112px;
    }
    .permanent .notesArea .boxArea a.box p{
        font-size:12px;
    }
    .permanent .notesArea .boxArea a.box p span{
        font-size:12px;
    }
}

/*--------------------------------------
    introArea
--------------------------------------*/

.treatment .introArea{
    position: relative;
    background: #F8F8F8;
}
.treatment .introArea .visualArea{
    width:100%;
    height:auto;
    padding-top: 38%;
    position: relative;
    z-index: 20;
    text-align: center;
}
.treatment .introArea .visualArea .visual{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
}
.treatment .introArea .visualArea .visual img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.treatment .introArea .visualArea .inner{
    position: absolute;
    top:7.6666vw;
    right:9vw;
}
.treatment .introArea .visualArea .logo{
    width:16.2222vw;
    text-align: center;
    margin: 0 auto;
}
.treatment .introArea .visualArea h2{
    font-size:4.4444vw;
    font-family: adobe-garamond-pro, serif;
    color:#C38A87;
    text-align: center;
    line-height: 1.1;
    margin-top: 50px;
    margin-bottom: 40px;
}
.treatment .introArea .visualArea h3{
    font-size:2.1111vw;
    font-family: shippori-mincho, sans-serif;
    color:#C38A87;
    text-align: center;
    position: relative;
    line-height: 1;
}
.treatment .introArea .aboutBox{
    width:100%;
    padding: 5vw 0 5vw 0;
}
.treatment .introArea .aboutBox h2.style001{
    color:#3EA891;
    text-shadow: 0 0 1px #9F5E68;
    margin-bottom: 2.5vw;
}
.treatment .introArea .aboutBox .textArea{
    width:75.5556vw;
    display: flex;
    gap:2.2222vw;
    margin: 0 auto 0 auto;
}
.treatment .introArea .aboutBox p.text{
    width:32.2777vw;
    font-size:1.1111vw;
    line-height: 1.8;
    color:#3EA891;
}
.treatment .introArea .aboutBox p.pic{
    width:34.1666vw;
}
.treatment .introArea .aboutBox p.pic img{
    width:100%;
}
.treatment .introArea .planBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap:2.7777vw 5vw;
}
.treatment .introArea .planBox .textArea{
    width:33.1666vw;
    color:#3EA891;
}
.treatment .introArea .planBox .textArea h3{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #99C2B9;
    margin-bottom: 1.2778vw;
    padding-left: 1vw;
    font-weight: 700;
    color:#FFFFFF;
}
.treatment .introArea .planBox .textArea ul{
    margin-bottom: 2.2222vw;
}
.treatment .introArea .planBox .textArea ul li{
    font-size:1.1111vw;
    line-height: 1.8;
}
.treatment .introArea .planBox .textArea ul li::before{
    content: "・";
}
.treatment .introArea .planBox .textArea .text{
    font-size:1.1111vw;
    line-height: 1.8;
}
.treatment .introArea .planBox .pic{
    width:50vw;
    height:43.2222vw;
    position: relative;
}
.treatment .introArea .planBox .pic img{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    border-radius:13.1111vw 0 0 13.1111vw;
}
.treatment .introArea .introBox{
    width:55.8888vw;
    margin: 4.1666vw auto 6.6666vw auto;
}
.treatment .introArea .introBox .textArea:not(:last-of-type){
    margin-bottom: 2.7777vw;
}
.treatment .introArea .introBox .textArea h3{
    font-size:1.5555vw;
    line-height: 2.4444vw;
    background: #99C2B9;
    margin-bottom: 1.1111vw;
    padding-left: 1vw;
    font-weight: 700;
    color:#FFFFFF;
}
.treatment .introArea .introBox .textArea .text{
    font-size:1.1111vw;
    line-height: 1.8;
    color:#3EA891;
}
.treatment .introArea .effectArea{
    width:75.5556vw;
    margin: 4.1666vw auto 6.6666vw auto;
}
.treatment .introArea .effectArea h2.style001{
    color:#3EA891;
    text-shadow: 0 0 1px #9F5E68;
    margin-bottom: 2.5vw;
}
.treatment .introArea .effectArea .inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:3.8888vw 2.4444vw;
}
.treatment .introArea .effectArea .effectBox{
    position: relative;
    padding-bottom: 17.5555vw;
}
.treatment .introArea .effectArea .effectBox h3{
    font-size:1.5555vw;
    line-height: 2.4444vw;
    background: #99C2B9;
    margin-bottom: 1.1111vw;
    padding-left: 1vw;
    font-weight: 700;
    color:#FFFFFF;
}
.treatment .introArea .effectArea .effectBox .text{
    font-size:1.1111vw;
    line-height: 1.8;
    color:#3EA891;
}
.treatment .introArea .effectArea .effectBox ul{
    width:100%;
    display: flex;
    justify-content: center;
    gap:1.1111vw;
    position: absolute;
    left:0;
    bottom:0;
}
.treatment .introArea .effectArea .effectBox ul li{
    width:11.6666vw;
    text-align: center;
    color:#3EA891;
}
.treatment .introArea .effectArea .effectBox ul li span{
    display: block;
    width:100%;
    padding-top: 100%;
    position: relative;
    margin-bottom: 1vw;
}
.treatment .introArea .effectArea .effectBox ul li span img{
    width:100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left:0;
}
.treatment .introArea .peelingBox{
    width:55.5555vw;
    margin: 4.1666vw auto 6.6666vw auto;
}
.treatment .introArea .peelingBox h2.style001{
    color:#3EA891;
    text-shadow: 0 0 1px #9F5E68;
    margin-bottom: 2.5vw;
}
.treatment .introArea .peelingBox .textArea{
    margin-top: 2.2222vw;
}
.treatment .introArea .peelingBox .textArea h3{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #99C2B9;
    margin-bottom: 1.9444vw;
    padding-left: 1vw;
    color:#FFFFFF;
}
.treatment .introArea .peelingBox .textArea .text{
    font-size:1.1111vw;
    line-height: 1.8;
    color:#3EA891;
}
.treatment .introArea .peelingBox .textArea .column2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2222vw;
}
.treatment .introArea .peelingBox .textArea h4{
    font-size:1.1111vw;
    margin-bottom: 1.2777vw;
    padding-bottom: 0.3888vw;
    color:#99C2B9;
    border-bottom: 1px solid #99C2B9;
}
.treatment .introArea .peelingBox .textArea:last-of-type .innerBox{
    margin-bottom: 2vw;
}
.treatment .introArea .peelingBox .peelingContent{
    display: flex;
    gap:1.6666vw;
}
.treatment .introArea .peelingBox .peelingContent .pic{
    width:22.2222vw;
}
.treatment .introArea .peelingBox .peelingContent .textArea{
    width:31.6666vw;
    margin-top: 0;
}
.treatment .introArea .beforeimg{
    width:30.1111vw;
    height:37.7222vw;
    position: absolute;
    top:0;
    left:0;
}
.treatment .introArea .beforeimg img{
    width:100%;
    height:100%;
    object-fit: contain;
    position: absolute;
    top:0;
    left:0;
}
.treatment .introArea .beforeimg img:nth-of-type(1){
    z-index: 40;
}
.treatment .introArea .beforeimg img:nth-of-type(2){
    z-index: 60;
}
.treatment .introArea .afterimg{
    width:40.1111vw;
    height:39.3888vw;
    position: absolute;
    bottom:0;
    right:0;
}
.treatment .introArea .afterimg img{
    width:100%;
    height:100%;
    object-fit: contain;
    position: absolute;
    bottom:0;
    right:0;
}
.treatment .introArea .afterimg img:nth-of-type(1){
    z-index: 40;
}
.treatment .introArea .afterimg img:nth-of-type(2){
    z-index: 60;
}
.treatment .introArea .otherBox{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap:2.7777vw 5vw;
    position: relative;
    z-index: 99;
}
.treatment .introArea .otherBox .textArea{
    width:33.1666vw;
    color:#3EA891;
}
.treatment .introArea .otherBox .textArea h3{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #99C2B9;
    margin-bottom: 1.2778vw;
    padding-left: 1vw;
    font-weight: 700;
    color:#FFFFFF;
}
.treatment .introArea .otherBox .textArea .text{
    font-size:1.1111vw;
    line-height: 1.8;
}
.treatment .introArea .otherBox .pic{
    width:50vw;
    height:43.2222vw;
    position: relative;
}
.treatment .introArea .otherBox .pic img{
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    border-radius: 0 13.1111vw 13.1111vw 0;
}
@media (max-width: 768px) {    
    .treatment .introArea .visualArea{
        padding: 60px 4% 20px;
    }
    .treatment .introArea .visualArea .visual{
        display: none;
    }
    .treatment .introArea .visualArea .inner{
        position: static;
        text-align: center;
    }
    .treatment .introArea .visualArea .logo{
        width:80%;
    }
    .treatment .introArea .visualArea h2{
        font-size:32px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .treatment .introArea .visualArea h3{
        font-size:20px;
    }
    .treatment .introArea .aboutBox{
        padding: 40px 0;
    }
    .treatment .introArea .aboutBox h2.style001{
        margin-bottom: 25px;
    }
    .treatment .introArea .aboutBox .textArea{
        width:92%;
        display: block;
        margin: 0 auto 40px auto;
    }
    .treatment .introArea .aboutBox p.text{
        width:100%;
        font-size:14px;
        margin-top: 20px;
    }
    .treatment .introArea .aboutBox p.pic{
        width:100%;
    }
    .treatment .introArea .planBox{
        width:92%;
        margin: 0 auto;
        display: block;
    }
    .treatment .introArea .planBox .textArea{
        width:100%;
        margin: 0 auto 30px auto;
    }
    .treatment .introArea .planBox .textArea h3{
        font-size:17px;
        line-height: 30px;
        margin-bottom: 20px;
        padding-left: 15px;
    }
    .treatment .introArea .planBox .textArea ul{
        margin-bottom: 30px;
    }
    .treatment .introArea .planBox .textArea ul li{
        font-size:16px;
    }
    .treatment .introArea .planBox .textArea .text{
        font-size:16px;
    }
    .treatment .introArea .planBox .pic{
        width:80vw;
        height:52vw;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 13.1111vw 13.1111vw 13.1111vw 13.1111vw;
    }
    .treatment .introArea .introBox{
        width:92%;
        margin: 40px auto;
    }
    .treatment .introArea .introBox .textArea:not(:last-of-type){
        margin-bottom: 30px;
    }
    .treatment .introArea .introBox .textArea h3{
        font-size:14px;
        line-height: 24px;
        margin-bottom: 20px;
        padding-left:5px;
    }
    .treatment .introArea .introBox .textArea .text{
        font-size:14px;
    }
    .treatment .introArea .effectArea{
        width:92%;
        margin: 40px auto;
    }
    .treatment .introArea .effectArea h2.style001{
        margin-bottom: 25px;
    }
    .treatment .introArea .effectArea .inner{
        grid-template-columns: 1fr;
        gap:30px;
    }
    .treatment .introArea .effectArea .effectBox{
        padding-bottom: 0;
    }
    .treatment .introArea .effectArea .effectBox h3{
        font-size:14px;
        line-height: 24px;
        margin-bottom: 20px;
        padding-left: 5px;
    }
    .treatment .introArea .effectArea .effectBox .text{
        font-size:14px;
    }
    .treatment .introArea .effectArea .effectBox ul{
        gap:4%;
        position: static;
        margin-top: 20px;
    }
    .treatment .introArea .effectArea .effectBox ul li{
        width:32%;
        font-size:12px;
    }
    .treatment .introArea .effectArea .effectBox ul li span{
        margin-bottom: 20px;
    }
    .treatment .introArea .peelingBox{
        width:92%;
        margin: 40px auto 40px auto;
    }
    .treatment .introArea .peelingBox h2.style001{
        margin-bottom: 25px;
    }
    .treatment .introArea .peelingBox .textArea{
        margin-top: 30px;
    }
    .treatment .introArea .peelingBox .textArea h3{
        font-size:14px;
        line-height: 24px;
        margin-bottom: 20px;
        padding-left: 5px;
    }
    .treatment .introArea .peelingBox .textArea .text{
        font-size:14px;
    }
    .treatment .introArea .peelingBox .textArea .column2{
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .treatment .introArea .peelingBox .textArea h4{
        font-size:14px;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    .treatment .introArea .peelingBox .textArea:last-of-type .innerBox{
        margin-bottom: 20px;
    }
    .treatment .introArea .peelingBox .peelingContent{
        width:100%;
        display: block;
    }
    .treatment .introArea .peelingBox .peelingContent .pic{
        width:100%;
        height:auto;
    }
    .treatment .introArea .peelingBox .peelingContent .textArea{
        width:100%;
        margin: 0 auto 0 auto;
    }
    .treatment .introArea .otherBox{
        width:92%;
        margin: 0 auto 60px auto;
        display: block;
    }
    .treatment .introArea .otherBox .textArea{
        width:100%;
        margin: 0 auto 30px auto;
    }
    .treatment .introArea .otherBox .textArea h3{
        font-size:14px;
        line-height: 24px;
        margin-bottom: 20px;
        padding-left: 5px;
    }
    .treatment .introArea .otherBox .textArea .text{
        font-size:14px;
    }
    .treatment .introArea .otherBox .pic{
        width:80vw;
        height:52vw;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 13.1111vw 13.1111vw 13.1111vw 13.1111vw;
    }
}

/*--------------------------------------
    flowArea
--------------------------------------*/

.treatment .flowArea{
    padding: 6.2222vw 0 4.2777vw 0;
    background: #B5D4CC;
    color:#FFFFFF;
}
.treatment .flowArea ul{
    width:54.4444vw;
    display: flex;
    margin: 2.7777vw auto 0 auto;
}
.treatment .flowArea ul li{
    width:54.4444vw;
    margin: 0 2.7vw;
}
.treatment .flowArea ul li .img{
    width:100%;
    padding-top: 61.2244%;
    position: relative;
    margin-bottom: 2.2222vw;
}
.treatment .flowArea ul li .img img{
    width:100%;
    height:100%;
    object-fit: contain;
    position: absolute;
    top:0;
    left:0;
}
.treatment .flowArea ul li .number{
    width:16.8888vw;
    height:5.6666vw;
    font-size:1.6666vw;
    font-family: adobe-garamond-pro, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:1.5555vw;
    background: #99C2B9;
    position: absolute;
    top:1vw;
    left:-1.5vw;
    padding-right: 2.7777vw;
    box-sizing: border-box;
    clip-path: polygon(0% 0%,0% 100%,calc(100% - 2.7777vw) 100%,100% 50%,calc(100% - 2.7777vw) 0%);
}
.treatment .flowArea ul li .number span{
    display: inline-block;
    line-height: 1;
    font-size:4.4444vw;
    font-family: adobe-garamond-pro, serif;
}
.treatment .flowArea ul li h3{
    font-size:2vw;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1vw;
}
.treatment .flowArea ul li .text{
    font-size:1.2222vw;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
}
.treatment .flowArea ul .slick-list{
    overflow: visible;
}
.treatment .flowArea ul .slick-arrow{
    width:48px;
    height:48px;
    position:absolute;
    top:15vw;
    bottom:0;
    font-size:40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.treatment .flowArea ul .slick-arrow.prev-arrow{
    left:auto;
    right:calc(100% + 2.7vw);
    transform: translate(50%,0);
}
.treatment .flowArea ul .slick-arrow.next-arrow{
    left:calc(100% + 2.7vw);
    right:auto;
    transform: translate(-50%,0);
}
@media (max-width: 768px) {
    .treatment .flowArea{
        padding: 40px 0;
    }
    .treatment .flowArea ul{
        width:80vw;
        margin: 25px auto 0 auto;
    }
    .treatment .flowArea ul li{
        width:80vw;
        margin: 0 10vw;
    }
    .treatment .flowArea ul li .img{
        margin-bottom: 20px;
    }
    .treatment .flowArea ul li .number{
        width:120px;
        height:40px;
        font-size:14px;
        gap:10px;
        top:10px;
        left:-5px;
        padding-right: 14px;
        clip-path: polygon(0% 0%,0% 100%,calc(100% - 14px) 100%,100% 50%,calc(100% - 14px) 0%);
    }
    .treatment .flowArea ul li .number span{
        font-size:32px;
    }
    .treatment .flowArea ul li h3{
        font-size:24px;
        margin-bottom:20px;
    }
    .treatment .flowArea ul li .text{
        font-size:14px;
    }
    .treatment .flowArea ul .slick-arrow{
        width:24px;
        height:24px;
        top:calc(50% - 12px);
        font-size:18px;
    }
    .treatment .flowArea ul .slick-arrow.prev-arrow{
        right:calc(100% + 14px);
    }
    .treatment .flowArea ul .slick-arrow.next-arrow{
        left:calc(100% + 14px);
    }
}

/*--------------------------------------
    stepArea
--------------------------------------*/

.treatment .stepArea{
    padding: 7.3333vw 0 7.3333vw 0;
    background: #B5D4CC;
    color:#FFFFFF;
}
.treatment .stepArea h2.style001{
    margin-bottom: 4.7777vw;
}
.treatment .stepArea .stepIntro{
    width:66.6666vw;
    margin: 0 auto 4.4444vw auto;
}
.treatment .stepArea .stepIntro .inner{
    width:100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 2.7777vw auto;
}
.treatment .stepArea .stepIntro .step{
    width:16.6666vw;
    height:15.5555vw;
    box-sizing: border-box;
    border:0.1666px solid #FFFFFF;
    position: relative;
    padding: 2.7777vw 0.5vw 1.4444vw 0.5vw;
    border-radius: 1.6666vw;
}
.treatment .stepArea .stepIntro .step:nth-of-type(2){
    width:31.1111vw;
}
.treatment .stepArea .stepIntro .step:nth-of-type(2)::before{
    content: "";
    width:3px;
    height:11.3333vw;
    background: #FFFFFF;
    position: absolute;
    top:2.7777vw;
    left:0;
    right:0;
    margin: auto;
}
.treatment .stepArea .stepIntro .step h3{
    font-size:2vw;
    width:11.1111vw;
    height:3.0555vw;
    background: #FFFFFF;
    color:#99C2B9;
    box-sizing: border-box;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top:0;
    left:0;
    right:0;
    transform: translate(0,-50%);
    border-radius: 1.5278vw;
    margin: 0 auto;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.treatment .stepArea .stepIntro .step h4{
    font-size:2.2222vw;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
.treatment .stepArea .stepIntro .step h4 span{
    font-size:1.3333vw;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    display: block;
}
.treatment .stepArea .stepIntro .step .img{
    width:90%;
    height:7vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.treatment .stepArea .stepIntro .step .img span.comment{
    position: absolute;
    top:0;
    right:0;
}
.treatment .stepArea .stepIntro .step .column2{
    display: flex;
    justify-content: center;
    gap:3.1666vw;
}
.treatment .stepArea .stepIntro .text{
    font-size:1.1111vw;
    line-height: 1.8;
    margin-top: 1.6666vw;
}
.treatment .stepArea .stepBox{
    width:66.6666vw;
    margin: 0 auto 4.4444vw auto;
    position: relative;
}
.treatment .stepArea .stepBox.box001::after{
    width:38.6666vw;
    height:14.2777vw;
    content: "";
    background:url("../images/treatment/bg_step_001.png") no-repeat center center / contain;
    position: absolute;
    right:-2.2222vw;
    bottom:0;
}
.treatment .stepArea .stepBox.box002::before{
    width:38.6666vw;
    height:10.6666vw;
    content: "";
    background:url("../images/treatment/bg_step_002.png") no-repeat center center / contain;
    position: absolute;
    top:10vw;
    left:-2.2222vw;
}
.treatment .stepArea .stepBox.box002::after{
    width:38.6666vw;
    height:19.1111vw;
    content: "";
    background:url("../images/treatment/bg_step_003.png") no-repeat center center / contain;
    position: absolute;
    top:50%;
    right:-2.2222vw;
}
.treatment .stepArea .stepBox.box003::after{
    width:38.6666vw;
    height:19.6111vw;
    content: "";
    background:url("../images/treatment/bg_step_004.png") no-repeat center center / contain;
    position: absolute;
    top:5.2777vw;
    left:-2.2222vw;
}
.treatment .stepArea .stepBox h3{
    font-size:2.2222vw;
    line-height: 2;
    margin-bottom: 1.7777vw;
    color:#FFFFFF;
    padding-left: 12vw;
    position: relative;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    z-index: 20;
}
.treatment .stepArea .stepBox h3 span{
    font-size:1.3333vw;
    padding-bottom: 10px;
    line-height: 1;
    color:#FFFFFF;
    margin-right: 10px;
    display: inline-block;
}
.treatment .stepArea .stepBox h3 .balloon{
    width:10vw;
    height:10vw;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top:-2vw;
    left:0;
    color:#B5D4CC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.treatment .stepArea .stepBox h3 .balloon::before{
    content: "STEP";
    font-size:1.6666vw;
}
.treatment .stepArea .stepBox h3 .balloon::after{
    content: "";
    width:1.1111vw;
    height:1.1111vw;
    background: #FFFFFF;
    position: absolute;
    right:1.1111vw;
    bottom:0.6666vw;
    color:#B5D4CC;
    clip-path: polygon(0% 80%,100% 100%,60% 0%);
}
.treatment .stepArea .stepBox h3 .balloon .number{
    font-size:5vw;
    line-height: 1.1;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.treatment .stepArea .stepBox .up{
    padding-bottom: 10px;
    border-bottom: 1px solid #FFFFFF;
}
.treatment .stepArea .stepBox h4{
    font-size:1.2222vw;
    line-height: 2.1111vw;
    background: #99C2B9;
    margin-top: 2.5vw;
    margin-bottom: 1.2778vw;
    padding-left: 1vw;
    font-weight: 700;
    color:#FFFFFF;
    position: relative;
    z-index: 20;
}
.treatment .stepArea .stepBox .text{
    font-size:1.1111vw;
    line-height: 1.8;
    margin-top: 1.6666vw;
    position: relative;
    z-index: 20;
}
.treatment .stepArea .figureBox{
    width:66.6666vw;
    margin: 0 auto 0 auto;
}
.treatment .stepArea .figureBox h3{
    font-size:1.5555vw;
    line-height: 2.4444vw;
    background: #99C2B9;
    margin-bottom: 1.1111vw;
    padding-left: 1vw;
    font-weight: 700;
    color:#FFFFFF;
    position: relative;
    z-index: 20;
}
.treatment .stepArea .figureBox .img{
    text-align: center;
}
@media (max-width: 768px) {
    .treatment .stepArea{
        padding: 40px 4%;
    }
    .treatment .stepArea h2.style001{
        margin-bottom: 25px;
    }
    .treatment .stepArea .stepIntro{
        width:100%;
        margin: 0 auto 30px auto;
    }
    .treatment .stepArea .stepIntro .inner{
        display: block;
        margin: 0 auto 30px auto;
    }
    .treatment .stepArea .stepIntro .step{
        width:100%;
        height:auto;
        border:1px solid #FFFFFF;
        padding: 20px 10px 15px 10px;
        border-radius: 15px;
        margin-top: 30px
    }
    .treatment .stepArea .stepIntro .step:nth-of-type(2){
        width:100%;
    }
    .treatment .stepArea .stepIntro .step:nth-of-type(2)::before{
        width:80%;
        height:2px;
        top:42%;
    }
    .treatment .stepArea .stepIntro .step h3{
        font-size:18px;
        width:80%;
        height:24px;
        border-radius: 12px;
    }
    .treatment .stepArea .stepIntro .step h4{
        font-size:24px;
    }
    .treatment .stepArea .stepIntro .step h4 span{
        font-size:14px;
    }
    .treatment .stepArea .stepIntro .step .img{
        width:90%;
        height:auto;
        padding: 20px 0;
    }
    .treatment .stepArea .stepIntro .step .column2{
        flex-direction: column;
        gap:30px;
    }
    .treatment .stepArea .stepIntro .text{
        font-size:14px;
        margin-top: 20px;
    }
    .treatment .stepArea .stepBox{
        width:100%;
        margin: 0 auto 50px auto;
    }
    .treatment .stepArea .stepBox h3{
        font-size:20px;
        margin-bottom: 20px;
        padding-top: 80px;
        padding-left: 0;
    }
    .treatment .stepArea .stepBox h3 span{
        font-size:14px;
    }
    .treatment .stepArea .stepBox h3 .balloon{
        width:60px;
        height:60px;
        top:-10px;
    }
    .treatment .stepArea .stepBox h3 .balloon::before{
        font-size:12px;
    }
    .treatment .stepArea .stepBox h3 .balloon::after{
        width:12px;
        height:12px;
        right:12px;
        bottom:5.5555px;
    }
    .treatment .stepArea .stepBox h3 .balloon .number{
        font-size:24px;
    }
    .treatment .stepArea .stepBox h4{
        font-size:14px;
        line-height: 1.5;
        margin-top: 30px;
        margin-bottom: 20px;
        padding-left: 5px;
    }
    .treatment .stepArea .stepBox .text{
        font-size:14px;
        margin-top: 15px;
    }
    .treatment .stepArea .figureBox{
        width:100%;
    }
    .treatment .stepArea .figureBox h3{
        font-size:14px;
        line-height: 1.5;
        margin-bottom:20px;
    }
}

/*--------------------------------------
    guideArea
--------------------------------------*/

.treatment .guideArea{
    padding: 7vw 0 5vw 0;
    background: #F8F8F8;
}
.treatment .guideArea h2.style001{
    color:#3EA891;
    text-shadow: 0 0 1px #9F5E68;
    margin-bottom: 2.5vw;
}
.treatment .guideArea p.text{
    margin-bottom: 2.5vw;
    text-align: center;
}
.treatment .guideArea .guideBox{
    width:75.5556vw;
    padding: 4vw 11.7778vw 5.1666vw 11.7778vw;
    box-sizing: border-box;
    margin: 0 auto 0 auto;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
.treatment .guideArea .guideBox h3{
    font-size:20px;
    font-size:1.1111vw;
    color:#FFFFFF;
    background: #99C2B9;
    margin-bottom: 1.1111vw;
    padding: 0.3333vw 0.7222vw;
    font-weight: bold;
}
.treatment .guideArea .guideBox table{
    width:100%;
}
.treatment .guideArea .guideBox table thead th{
    height:2.6666vw;
    font-size:1.1111vw;
    font-weight: bold;
    color:#FFFFFF;
    background: #99C2B9;
    border:1px solid #707070;
}
.treatment .guideArea .guideBox table tbody th{
    width:18.1111vw;
    font-size:0.8888vw;
    background: #EBEBEB;
    border:1px solid #707070;
    text-align: left;
    padding: 0 0.6666vw;
}
.treatment .guideArea .guideBox table tbody td{
    width:11.4444vw;
    padding: 1.1111vw 0.6666vw;
    font-size:0.8888vw;
    vertical-align: middle;
    background: #FFFFFF;
    border:1px solid #707070;
}
.treatment .guideArea .guideBox .guideContent{
    margin-top: 2.7777vw;
}
.treatment .guideArea .guideBox .guideContent .text{
    margin-bottom: 2vw;
}
/*.treatment .guideArea .guideBox .guideContent table tbody td{
    width:33.3333%;
    text-align: center;
}*/
.treatment .guideArea .guideBox table tbody td span{
    text-decoration: line-through;
}
.treatment .guideArea .guideBox table tbody td div{
    margin-bottom: 5px;
}
.treatment .guideArea .pricecomment{
    font-size: 12px;
    text-align: right;
    font-weight: bold;
}
@media (max-width: 768px) {
    .treatment .guideArea{
        padding: 40px 4%;
    }
    .treatment .guideArea h2.style001{
        margin-bottom: 25px;
    }
    .treatment .guideArea .guideBox{
        width:100%;
        padding: 20px;
    }
    .treatment .guideArea .guideBox h3{
        font-size:14px;
        margin-bottom:15px;
        padding: 5px 10px;
    }
    .treatment .guideArea .guideBox table{
        width:100%;
    }
    .treatment .guideArea .guideBox table thead th{
        height:auto;
        font-size:14px;
        padding: 5px;
    }
    .treatment .guideArea .guideBox table tbody th{
        width:28%;
        font-size:12px;
        padding: 5px;
    }
    .treatment .guideArea .guideBox table tbody td{
        width:24px;
        padding: 5px;
        font-size:12px;
    }
    .treatment .guideArea .guideBox .guideContent{
        margin-top: 30px;
    }
    .treatment .guideArea .guideBox .guideContent .text{
        margin-bottom: 15px;
    }
}

/*--------------------------------------
    dragArea
--------------------------------------*/

.treatment .dragArea{
    padding: 5vw 0 5vw 0;
    background: #F8F8F8;
}
.treatment .dragArea h2.style001{
    color:#3EA891;
    text-shadow: 0 0 1px #9F5E68;
}
.treatment .dragArea .dragBox{
    width:75.5556vw;
    padding: 3.6666vw 11.7778vw 4.6111vw 11.7778vw;
    box-sizing: border-box;
    margin: 2.9444vw auto 4.3333vw auto;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
.treatment .dragArea .dragBox:not(:last-of-type){
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.7777vw 2.5vw;
}
.treatment .dragArea .dragBox:last-of-type{
    margin: 2.9444vw auto 0 auto;
}
.treatment .dragArea .dragBox h3{
    font-size:20px;
    font-size:1.1111vw;
    color:#FFFFFF;
    background: #99C2B9;
    margin-bottom: 1.1111vw;
    padding: 0.3333vw 0.7222vw;
    font-weight: bold;
}
.treatment .dragArea .dragBox .dragContent .efficacy,
.treatment .dragArea .dragBox .dragContent .recommend{
    width:13.8888vw;
    float: left;
}
.treatment .dragArea .dragBox .dragContent .efficacy li::before,
.treatment .dragArea .dragBox .dragContent .recommend li::before{
    content: "・";
}
.treatment .dragArea .dragBox .dragContent .recommend{
    padding: 0.7222vw;
    box-sizing: border-box;
    background: #EBF2F0;
    margin-top: 1.1111vw;
}
.treatment .dragArea .dragBox .dragContent .recommend h4{
    font-size:16px; 
	font-size:min(calc(12px + ((1vw - 11px)*0.5)),16px); 
    font-weight: bold;
    margin-bottom: 0.5555vw;
}
.treatment .dragArea .dragBox .dragContent .recommend li{
    font-size:16px; 
	font-size:min(calc(12px + ((1vw - 11px)*0.5)),16px); 
}
.treatment .dragArea .dragBox .dragContent .img{
    width:10vw;
    height:13.8888vw;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}
.treatment .dragArea .dragBox .dragContent:last-of-type{
    grid-column: 1 / 3;
}
.treatment .dragArea .dragBox:last-of-type h3{
    margin-top: 2.7777vw;
    margin-bottom: 1.6666vw;
}
.treatment .dragArea .dragBox:last-of-type h3:first-of-type{
    margin-top: 0;
}
.treatment .dragArea .dragBox:last-of-type .comment{
    margin-top: 1.1111vw;
}
.treatment .dragArea .dragBox table thead th{
    height:7.6666vw;
    font-size:0.8888vw;
    color:#FFFFFF;
    background: #99C2B9;
    border:1px solid #707070;
}
.treatment .dragArea .dragBox table thead th span{
    font-size:1.2222vw;
    font-weight: bold;
    display: block;
    text-align: center;
    padding-top: 0.6111vw;
}
.treatment .dragArea .dragBox table tbody th{
    width:29.5555vw;
    background: #EBEBEB;
    border:1px solid #707070;
    text-align: left;
    padding: 0 0.6666vw;
}
.treatment .dragArea .dragBox table tbody td{
    width:11.4444vw;
    padding: 1.1111vw 0;
    text-align: center;
    background: #FFFFFF;
    border:1px solid #707070;
}
.treatment .dragArea .dragBox .dragContent table tbody th{
    width:11vw;
}
.treatment .dragArea .dragBox .dragContent table tbody td{
    width:8.2222vw;
}
@media (max-width: 768px) {
    .treatment .dragArea{
        padding: 40px 4%;
    }
    .treatment .dragArea .dragBox{
        width:100%;
        padding: 20px;
        margin: 30px auto 30px auto;
    }
    .treatment .dragArea .dragBox:not(:last-of-type){
        display: block;
    }
    .treatment .dragArea .dragBox:last-of-type{
        margin: 20px auto 0 auto;
    }
    .treatment .dragArea .dragBox h3{
        font-size:14px;
        margin-bottom: 20px;
        padding: 5px 10px;
    }
    .treatment .dragArea .dragBox .dragContent{
        margin-bottom: 30px;
    }
    .treatment .dragArea .dragBox .dragContent .efficacy,
    .treatment .dragArea .dragBox .dragContent .recommend{
        width:100%;
        float: none;
    }
    .treatment .dragArea .dragBox .dragContent .recommend{
        padding: 10px;
        margin-top: 20px;
    }
    .treatment .dragArea .dragBox .dragContent .recommend h4{
        font-size:14px; 
        margin-bottom: 10px;
    }
    .treatment .dragArea .dragBox .dragContent .recommend li{
        font-size:14px; 
    }
    .treatment .dragArea .dragBox .dragContent .img{
        width:80%;
        margin: 0 auto;
        height: auto;
        float: none;
    }
    .treatment .dragArea .dragBox:last-of-type h3{
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .treatment .dragArea .dragBox:last-of-type .comment{
        margin-top:10px;
    }
    .treatment .dragArea .dragBox table thead th{
        height:auto;
        font-size:10px;
    }
    .treatment .dragArea .dragBox table thead th span{
        font-size:12px;
        padding-top: 5px;
    }
    .treatment .dragArea .dragBox table tbody th{
        width:35%;
        padding: 5px;
    }
    .treatment .dragArea .dragBox table tbody td{
        width:13%;
        padding: 5px;
    }
    .treatment .dragArea .dragBox .dragContent table tbody th{
        width:30%;
        font-size:12px;
    }
    .treatment .dragArea .dragBox .dragContent table tbody td{
        width:14%;
    }
}

/*--------------------------------------
    cosmeArea
--------------------------------------*/

.treatment .cosmeArea{
    padding: 5vw 0 5vw 0;
    color:#FFFFFF;
    background: #B5D4CC;
}
.treatment .cosmeArea .desc{
    width:66.6666vw;
    margin: 3.0555vw auto 3vw auto;
}
.treatment .cosmeArea .desc h3 span{
    font-size:30px;
    font-size:1.6666vw;
    display: inline-block;
    padding-bottom: 10px;
    background: linear-gradient(to bottom,transparent 96%,#FFFFFF 0);
    margin-bottom: 2.2222vw;
}
.treatment .cosmeArea .desc .text{
    line-height: 1.8;
}
.treatment .cosmeArea .cosmeBox{
    width:66.6666vw;
    margin: 0 auto 4.4444vw auto;
}
.treatment .cosmeArea .cosmeBox:last-of-type{
    margin: 0 auto 0 auto;
}
.treatment .cosmeArea .cosmeBox h3{
    font-size:20px;
    font-size:1.1111vw;
    background: #99C2B9;
    margin-bottom: 2.7222vw;
    padding: 0.3333vw 0.7222vw;
    font-weight: bold;
}
.treatment .cosmeArea .cosmeBox .img{
    text-align: center;
    margin-bottom: 2vw;
}
.treatment .cosmeArea .cosmeBox dl{
    display: grid;
    grid-template-columns: 3fr 1fr 3fr 1fr;
    border-top:1px solid #707070;
    border-left:1px solid #707070;
}
.treatment .cosmeArea .cosmeBox dl dt{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color:#000000;
    background: #EBEBEB;
    box-sizing: border-box;
    border-right:1px solid #707070;
    border-bottom:1px solid #707070;
    padding: 1.1666vw 0.6666vw;
}
.treatment .cosmeArea .cosmeBox dl dd{
    display: flex;
    justify-content: center;
    align-items: center;
    color:#000000;
    background: #FFFFFF;
    box-sizing: border-box;
    border-right:1px solid #707070;
    border-bottom:1px solid #707070;
    padding: 1.1666vw 0.6666vw;
}
@media (max-width: 768px) {
    .treatment .cosmeArea{
        padding: 40px 4%;
    }
    .treatment .cosmeArea .desc{
        width:100%;
        margin: 30px auto;
    }
    .treatment .cosmeArea .desc h3 span{
        font-size:18px;
        margin-bottom: 20px;
    }
    .treatment .cosmeArea .cosmeBox{
        width:100%;
        margin: 0 auto 30px auto;
    }
    .treatment .cosmeArea .cosmeBox h3{
        font-size:14px;
        margin-bottom: 20px;
        padding: 5px 10px;
    }
    .treatment .cosmeArea .cosmeBox .img{
        margin-bottom: 20px;
    }
    .treatment .cosmeArea .cosmeBox dl{
        grid-template-columns: 3fr 1fr;
    }
    .treatment .cosmeArea .cosmeBox dl dt{
        padding: 15px 10px;
    }
    .treatment .cosmeArea .cosmeBox dl dd{
        padding: 15px 10px;
    }
}

/*--------------------------------------
    faqArea
--------------------------------------*/

.treatment .faqArea{
    padding: 5vw 0 5vw 0;
    background: #9F5E68;
}
.treatment .faqArea h2.style001{
    color:#FFFFFF;
}
.treatment .faqArea h3{
    font-size:1.3333vw;
    padding: 0.8333vw 3.2222vw 0.8333vw 1.1111vw;
    position: relative;
    font-weight: bold;
    color:#FFFFFF;
    background: #99C2B9;
}
.treatment .faqArea .faqBox{
    width:75.5556vw;
    margin: 2.1667vw auto 0 auto;
}
.treatment .faqArea dl{
    counter-reset: question 0;
}
.treatment .faqArea dt{
    font-size:1.1667vw;
    padding: 0.8333vw 3.2222vw 0.8333vw 1.1111vw;
    position: relative;
    background: #FFFFFF;
    font-weight: bold;
    counter-increment: question 1;
}
.treatment .faqArea dt:nth-of-type(2n){
    background: #FDE6DF;
}
.treatment .faqArea dt::before{
    content: "Q." counter(question);
    display: inline-block;
    margin-right: 0.2778vw;
}
.treatment .faqArea dt::after{
    content: "";
    display: block;
    width:1.5556vw;
    height:1.5556vw;
    position: absolute;
    top:0;
    left:auto;
    right:0.8333vw;
    bottom:0;
    margin: auto auto auto auto;
    border-top:0.7778vw solid transparent;
    border-left:0.7778vw solid #000000;
    border-bottom:0.7778vw solid transparent;
    box-sizing: border-box;
}
.treatment .faqArea dt.open::after{
    transform: translate(0,7px) rotate(90deg);
}
.treatment .faqArea dd{
    font-size:1.1667vw;
    line-height: 1.8;
    padding: 0.8333vw 3.2222vw 0.8333vw 1.1111vw;
    background: #EAE8E8;
    font-weight: bold;
    display: none;
}
@media (max-width: 768px) {
    .treatment .faqArea{
        padding: 30px 20px 30px 20px;
    }
    .treatment .faqArea h3{
        font-size:14px;
        padding: 5px 10px;
    }
    .treatment .faqArea .faqBox{
        width:100%;
        margin: 30px auto 0 auto;
    }
    .treatment .faqArea dt{
        font-size:14px;
        padding: 5px 25px 5px 10px;
    }
    .treatment .faqArea dt::before{
        margin-right: 2px;
    }
    .treatment .faqArea dt::after{
        width:14px;
        height:14px;
        right:7px;
        border-top:7px solid transparent;
        border-left:7px solid #000000;
        border-bottom:7px solid transparent;
    }
    .treatment .faqArea dt.open::after{
        transform: translate(0,3.5px) rotate(90deg);
    }
    .treatment .faqArea dd{
        font-size:14px;
        padding: 5px 25px 5px 10px;
    }
}
