@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Marcellus&family=Nanum+Myeongjo&family=Noto+Sans+KR:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*font-family: 'Marcellus', serif;
font-family: 'Noto Serif JP', serif;*/

/* common
   ========================================================================== */
body{
  -webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	font-family: "Noto Sans KR", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #505A5F;
  font-size: 19px;
    word-break: keep-all;
}

::selection {background: #505A5F; color: #fff;}
::-moz-selection {background: #505A5F; color: #fff;}

img{
  max-width: 100%;
  height: auto;
}
*:focus {
  outline: none;
}

/* main
   ========================================================================== */
#aromaspa .main{ background-image: url("../../common/img/service_main.jpg"); margin-top:140px;}
#blend .main{ background-image: url("../img/blend/main.jpg"); }
#hair .main{ background-image: url("../img/hair/main.jpg"); }

@media screen and (max-width: 1600px) {
  #aromaspa .main{
    background-size: cover;
    height: 700px !important;
    background-position: center center;
  }
}

@media screen and (min-width: 601px) {
  .main{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /*margin-top: 60px;*/
    padding-top: 43%;
  }
}
@media screen and (max-width: 600px) {
  .main{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: 40px;
    padding-top: 60%;
  }
  #aromaspa .main{
    background-size: cover;
    background-position: center center;
    height: 400px !important;
  }
}


@media screen and (min-width: 1081px) {
  .intro{
    margin-top: 140px;
  }
}
@media screen and (max-width: 1080px) {
  .intro{
    width: 80%;
    margin: 60px auto 0;
  }
  .intro br{
    display: none;
  }
}



/* animation
   ========================================================================== */
.fadetxt{opacity:0;}
.fadetxt span{opacity:0;}
.cover,
.cover_gray{
  position: relative;
}
.cover::after,
.cover_gray::after{
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 100%;
  height: 103%;
  top:-1%;
  left:0;
  transition-property: width;
  transition-duration: 1.4s;
  transition-delay: .4s;
}
.cover_gray::after{
  background:#F7F8F9;
}
.cover.show::after,
.cover_gray.show::after{
  width: 0;
}
.fade_list li,
.fade{
  opacity: 0;
  transition-duration: .5s;
  transition-property: opacity;
}
.fade_list li.show,
.fade.show{
  opacity: 1;
}
.fade-up {
  opacity: 0;
  transform : translate(0, 50px);
  transition-duration: 1.5s;
  transition-property: transform, opacity;
}
.fade-up2 {
  opacity: 0;
  transform : translate(0, 50px);
  transition-duration: 1.2s;
  transition-delay: .5s;
  transition-property: transform, opacity;
}
.fade-up.show,
.fade-up2.show{
  opacity: 1;
  transform: translate(0, 0);
}

/* header
   ========================================================================== */
@media screen and (min-width: 1081px) {
  .header{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    height: 120px;
    background: rgba(255,255,255,.8);
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    top:0;
    left: 0;
  }
  .header .logo__set a{
    display: flex;
    align-items: center;
  }
  .header .logo__set .logo{
    width: 170px;
    margin-right: 20px;
  }
  .header .logo__set .sub_logo{
    width: 163px;
  }
  .header .gnav{
    display: block!important;
  }
  .header .gnav__list{
    display: flex;
    align-items: center;
  }
  .header .gnav__list li{
    font-family: 'Marcellus','Noto Sans KR', serif;
    font-size: 18px;
    letter-spacing: .05em;
  }
  .header .gnav__list li+li{
    margin-left: 30px;
  }
  .header .gnav__list .sns_link{
    display: flex;
  }
  .header .gnav__list .sns_link div:last-child{
    margin-left: 10px;
  }
  .header .menu_btn{
    display: none;
  }
}
@media screen and (min-width:601px) and (max-width:1080px) {
  .header{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
    height: 80px;
    background: rgba(255,255,255,.8);
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    top:0;
    left: 0;
    transition-duration: .6s;
    transition-property: background;
  }
  .header.show__menu{
    background: rgba(255,255,255,1);
  }
  .header .logo__set a{
    display: flex;
    align-items: center;
  }
  .header .logo__set .logo{
    width: 80px;
    margin-right: 30px;
  }
  .header .logo__set .sub_logo{
    width: 200px;
  }
  .header .gnav{
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    background: rgba(255,255,255,1);
    height: 100vh;
    width: 100%;
  }
  .header .logo__set a{
    display: flex;
    align-items: center;
  }
  .header .logo__set .logo{
    margin-right: 10px;
  }
  .header .gnav__wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    width: 100%;
  }
  .header .gnav__list{
    text-align: center;
  }
  .header .gnav__list li{
    font-family: 'Marcellus', serif;
    font-size: 20px;
    letter-spacing: .05em;
  }
  .header .gnav__list li+li{
    margin-top: 30px;
  }
  .header .gnav__list .sns_link{
    display: flex;
    justify-content: center;
  }
  .header .gnav__list .sns_link div:last-child{
    margin-left: 10px;
  }

  /*menu-btn*/
  .header .menu_btn{
    display: block;
    position:absolute;
    cursor:pointer;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .header .menu_btn_icon{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 1px;
    margin: 0 0 0 -15px;
    background: #505A5F;
    transition-duration: .2s;
    transition-property: transform;
  }
  .header .menu_btn_icon:before,
  .header .menu_btn_icon:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    background: #505A5F;
    transition-duration: .2s;
    transition-property: transform;
  }
  .header .menu_btn_icon:before{
    margin-top: -10px;
  }
  .header .menu_btn_icon:after{
    margin-top: 10px;
  }
  .header .menu_btn .close{
    background: transparent;
  }
  .header .menu_btn .close:before,
  .header .menu_btn .close:after{
    margin-top: 0;
    width: 30px;
    background: #505A5F;
  }
  .header .menu_btn .close:before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .header .menu_btn .close:after{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
}
@media screen and (min-width: 601px) {
  .header .gnav__list li a{
    transition-duration: .4s;
    transition-property: opacity;
  }
  .header .gnav__list li a:hover{
    opacity: .5;
  }
  .header .gnav__list li a.current{
    opacity: .5;
  }
}
@media screen and (max-width: 600px) {
  .header{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    height: 60px;
    background: rgba(255,255,255,.8);
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    top:0;
    left: 0;
    transition-duration: .6s;
    transition-property: background;
  }
  .header.show__menu{
    background: rgba(255,255,255,1);
  }
  .header .logo__set a{
    display: flex;
    align-items: center;
  }
  .header .logo__set .logo{
    width: 70px;
  }
  .header .logo__set .sub_logo{
    width: 130px;
  }
  .header .gnav{
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    background: rgba(255,255,255,1);
    height: 100vh;
    width: 100%;
  }
  .header .logo__set a{
    display: flex;
    align-items: center;
  }
  .header .logo__set .logo{
    margin-right: 10px;
  }
  .header .gnav__wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 60px);
    width: 100%;
  }
  .header .gnav__list{
    text-align: center;
  }
  .header .gnav__list li{
    font-family: 'Marcellus', serif;
    font-size: 18px;
    letter-spacing: .05em;
  }
  .header .gnav__list li+li{
    margin-top: 30px;
  }
  .header .gnav__list .sns_link{
    display: flex;
    justify-content: center;
  }
  .header .gnav__list .sns_link div:last-child{
    margin-left: 10px;
  }

  /*menu-btn*/
  .header .menu_btn{
    display: block;
    position:absolute;
    cursor:pointer;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
  .header .menu_btn_icon{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 1px;
    margin: 0 0 0 -15px;
    background: #505A5F;
    transition-duration: .2s;
    transition-property: transform;
  }
  .header .menu_btn_icon:before,
  .header .menu_btn_icon:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    background: #505A5F;
    transition-duration: .2s;
    transition-property: transform;
  }
  .header .menu_btn_icon:before{
    margin-top: -10px;
  }
  .header .menu_btn_icon:after{
    margin-top: 10px;
  }
  .header .menu_btn .close{
    background: transparent;
  }
  .header .menu_btn .close:before,
  .header .menu_btn .close:after{
    margin-top: 0;
    width: 30px;
    background: #505A5F;
  }
  .header .menu_btn .close:before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .header .menu_btn .close:after{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
}

/* footer
   ========================================================================== */
@media screen and (min-width: 1081px) {
  .footer{
    margin-top: 240px;
  }
  .reservation a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 340px;
    overflow: hidden;
  }
  .reservation a::after{
    content: "";
    display: block;
    background-image: url("../../common/img/reservation_photo.jpg");
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    transition-duration: .6s;
    transition-property: transform;
  }
  .reservation h2{
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #fff;
  }
  .reservation h2::after{
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url("../../common/img/reservation_arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
  }
  .footer__contents{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 160px);
    margin: 0 auto;
    padding: 100px 0;
    border-bottom: solid 1px #F0F3F5;
  }
  .footer__contents .logo__set a{
    display: flex;
    align-items: center;
  }
  .footer__contents .logo__set .logo{
    width: 100px;
    margin-right: 20px;
  }
  .footer__contents .logo__set .sub_logo{
    width: 145px;
  }
  .footer__contents__info .sub_address{
    display: flex;
    align-items: center;
    margin-top: 60px;
    font-size: 14.5px;
    letter-spacing: .05em;
  }
  .footer__contents__info .sub_address::before,
  .footer__contents__info .sub_address::after{
    content: "";
    width: 12px;
    height: 1px;
    background: #CACDCE;
    margin-right: 5px;
  }
  .footer__contents__info .sub_address::before{
    margin-right: 5px;
  }
  .footer__contents__info .sub_address::after{
    margin-left: 5px;
  }
  .footer__contents__info .address{
    margin-top: 20px;
  }
  .footer__contents__info .tel{
    margin-top: 25px;
    font-size: 20px;
  }
  .footer__contents .gnav__list{
    display: flex;
    align-items: center;
  }
  .footer__contents .gnav__list li{
    font-family:  'Marcellus', 'Noto Sans KR', serif;
    font-size: 14px;
    letter-spacing: .05em;
  }
  .footer__contents .gnav__list li+li{
    margin-left: 30px;
  }
  .footer__contents .gnav__list .sns_link{
    display: flex;
    justify-content: center;
  }
  .footer__contents .gnav__list .sns_link div:last-child{
    margin-left: 10px;
  }
  .copyright{
    text-align: center;
    padding: 60px 0;
    font-size: 11px;
  }
}
@media screen and (min-width:601px) and (max-width:1080px) {
  .footer{
    margin-top: 140px;
  }
  .reservation a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 240px;
    overflow: hidden;
  }
  .reservation a::after{
    content: "";
    display: block;
    background-image: url("../../common/img/reservation_photo.jpg");
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    transition-duration: .6s;
    transition-property: transform;
  }
  .reservation h2.en{
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 28px;
  }
  .reservation h2::after{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-image: url("../../common/img/reservation_arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
  }
  .footer__contents{
    width: 90%;
    margin: 0 auto;
    border-bottom: solid 1px #F0F3F5;
    padding: 60px 0;
    text-align: center;
  }
  .footer__contents .logo__set a{
    text-align: center;
  }
  .footer__contents .logo__set .logo{
    width: 100px;
    margin: 0 auto;
  }
  .footer__contents .logo__set .sub_logo{
    width: 235px;
    margin: 20px auto 0;
  }
  .footer__contents__info .sub_address{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    letter-spacing: .05em;
  }
  .footer__contents__info .sub_address::before,
  .footer__contents__info .sub_address::after{
    content: "";
    width: 12px;
    height: 1px;
    background: #CACDCE;
    margin-right: 5px;
  }
  .footer__contents__info .sub_address::before{
    margin-right: 5px;
  }
  .footer__contents__info .sub_address::after{
    margin-left: 5px;
  }
  .footer__contents__info .address{
    line-height: 2;
    margin-top: 10px;
  }
  .footer__contents__info .tel{
    margin-top: 20px;
    font-size: 15px;
  }
  .footer__nav .gnav__list{
    margin-top: 60px;
    justify-content: center;
  }
  .footer__contents .gnav__list{
    display: flex;
    align-items: center;
  }
  .footer__contents .gnav__list li{
    font-family: 'Marcellus', serif;
    font-size: 14px;
    letter-spacing: .05em;
  }
  .footer__contents .gnav__list li+li{
    margin-left: 35px;
  }
  .footer__contents .gnav__list .sns_link{
    display: flex;
    justify-content: center;
  }
  .footer__contents .gnav__list .sns_link div:last-child{
    margin-left: 10px;
  }
  .copyright{
    text-align: center;
    padding: 60px 0;
    font-size: 11px;
  }
}
@media screen and (min-width: 601px) {
  .reservation a:hover::after{
    -moz-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
  .footer__contents .gnav__list li a{
    transition-duration: .4s;
    transition-property: opacity;
  }
  .footer__contents .gnav__list li a:hover{
    opacity: .5;
  }
}

@media screen and (max-width: 600px) {
  .footer{
    margin-top: 120px;
  }
  .reservation a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 160px;
    background-image: url("../img/reservation_photo.jpg");
    background-size: cover;
    background-position: center center;
  }
  .reservation h2.en{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 24px;
  }
  .reservation h2::after{
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("../img/reservation_arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 20px;
  }
  .footer__contents{
    width: 90%;
    margin: 0 auto;
    border-bottom: solid 1px #F0F3F5;
    padding: 60px 0 40px;
    text-align: center;
  }
  .footer__contents .logo__set{
    text-align: center;
  }
  .footer__contents .logo__set .logo{
    width: 80px;
    margin: 0 auto;
  }
  .footer__contents .logo__set a{
    display: block;
  }
  .footer__contents .logo__set .sub_logo{
    width: 165px;
    margin: 15px auto 0;
  }
  .footer__contents__info .sub_address{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    letter-spacing: .05em;
  }
  .footer__contents__info .sub_address::before,
  .footer__contents__info .sub_address::after{
    content: "";
    width: 12px;
    height: 1px;
    background: #CACDCE;
    margin-right: 5px;
  }
  .footer__contents__info .sub_address::before{
    margin-right: 5px;
  }
  .footer__contents__info .sub_address::after{
    margin-left: 5px;
  }
  .footer__contents__info .address{
    line-height: 2;
    margin-top: 10px;
  }
  .footer__contents__info .tel{
    margin-top: 20px;
    font-size: 15px;
  }
  .footer__nav .gnav__list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 60px;
  }
  .footer__nav .gnav__list li{
    font-family: 'Marcellus', serif;
    font-size: 14px;
    letter-spacing: .05em;
  }
  .footer__nav .gnav__list li{
    width: 33%;
  }
  .footer__nav .gnav__list li:nth-child(n + 4){
    margin-top: 20px;
  }
  .footer__contents .gnav__list .sns_link{
    display: flex;
    justify-content: center;
  }
  .footer__contents .gnav__list .sns_link div:last-child{
    margin-left: 8px;
  }
  .copyright{
    text-align: center;
    padding: 40px 0;
    font-size: 11px;
  }
}


/* font
   ========================================================================== */
.jp{
  font-family: 'Nanum Myeongjo', serif;
}
.en,
h1.contents__title{
  font-family: 'Marcellus','Nanum Myeongjo', serif;
}
@media screen and (min-width: 601px) {
  h2.jp,
  h3.jp{
    font-size: 27px;
    line-height: 1.6;
    color:#9c836a;
  }
  h4.jp{
    font-size: 20px;
    line-height: 2;
  }
  h5.jp{
    font-size: 20px;
    line-height: 2;
  }
  p.jp{
    font-size: 16px;
  }
  h1.contents__title{
    text-align: center;
    font-size: 34px;
  }
  h2.en{
    font-size: 46px;
    color:#9c836a;
}
  h3.en{ font-size: 24px; }
  h4.en{ font-size: 24px; }

  .contents p{
    font-feature-settings: "palt";
    line-height: 2;
    letter-spacing:-0.02em;
    word-break: keep-all;
    font-size:16px;
  }
  h2.contents__copy{
    text-align: center;
    font-size: 23px;
    line-height: 2;
  }
  h2.contents__copy sup{
    font-size: 10px;
  }
  .contents__title + .contents__copy{
    margin-top: 40px;
  }
  .note{
    margin-top: 30px;
  }
  .note li{
    font-size: 12px;
    text-indent: -.7em;
    padding-left: .7em;
    line-height: 1.4;
  }
  .note li+li{
    margin-top: 8px;
  }
  .note.center{
    text-align: center;
  }
  .pc_ver{
    display: block;
  }
  .sp_ver{
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  h2.jp,
  h3.jp{
    font-size: 20px;
    line-height: 1.8;
  }
  h4.jp{
    font-size: 18px;
    line-height: 2;
  }
  h5.jp{
    font-size: 18px;
    line-height: 2;
  }
  p.jp{
    font-size: 15px;
  }
  h1.contents__title{
    text-align: center;
    font-size: 26px;
  }
  h2.en{ font-size: 22px; }
  h3.en{ font-size: 20px; }
  h4.en{ font-size: 20px; }

  .contents p{
    font-feature-settings: "palt";
    line-height: 1.7;
    letter-spacing: .05em;
    font-size:15px;
  }
  h2.contents__copy{
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }
  h2.contents__copy sup{
    font-size: 9px;
  }
  .contents__title + .contents__copy{
    margin-top: 40px;
  }
  .note{
    margin-top: 20px;
  }
  .note li{
    font-size: 11px;
    text-indent: -.7em;
    padding-left: .7em;
    line-height: 1.8;
  }
  .note li+li{
    margin-top: 8px;
  }
  .note.center{
    text-align: left;
  }
  .pc_ver{
    display: none;
  }
  .sp_ver{
    display: block;
  }
}

/* button
   ========================================================================== */
.btn__more{
  display: inline-block;
  font-family: 'Marcellus', serif;
  font-size: 15px;
  margin-top: 60px;
}
.btn__more a{
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #505A5F;
  padding-bottom: 14px;
  transition-duration: .4s;
  transition-property: opacity;
}
.btn__more a::after{
  content: "";
  display: block;
  background-image: url("../../common/img/viewmore_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 7px;
  margin-left: 10px;
}

@media screen and (min-width: 601px) {
  .btn__more a:hover{
    opacity: .5;
  }
}


/* contents
   ========================================================================== */
.reverse{
  flex-direction: row-reverse;
}
@media screen and (min-width: 1081px) {
  .contents__block,
  .contents__inner{
    max-width: 1080px;
  }
  .contents__wrpper.wide,
  .contents__block.wide{
    max-width: 1380px;
  }
  .contents__wrpper.full,
  .contents__block.full{
    max-width: 100%;
  }
  .note__block{
    max-width: 1080px;
    margin: 100px auto 0;
  }
}
@media screen and (min-width:601px) and (max-width:1080px) {
  .contents__block,
  .contents__inner{
    max-width: 90%;
  }
  .contents__wrpper.wide,
  .contents__block.wide{
    max-width: 90%;
  }
  .contents__wrpper.full,
  .contents__block.full{
    max-width: 100%;
  }
  .note__block{
    max-width: 90%;
    margin: 100px auto 0;
  }
}
@media screen and (min-width: 601px) {
  .contents{
    margin-top: 240px;
  }
  .contents__wrpper,
  .contents__block{
    margin: 140px auto 0;
  }
  .contents__inner{
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .contents{
    margin-top: 150px;
  }
  .contents__wrpper,
  .contents__block{
    margin: 80px auto 0;
  }
  .contents__inner{
    margin: 0 auto;
  }
  .contents__block,
  .contents__inner{
    max-width: 90%;
  }
  .contents__wrpper.wide,
  .contents__block.wide{
    max-width: 90%;
  }
  .contents__wrpper.full,
  .contents__block.full{
    max-width: 100%;
  }
  .note__block{
    max-width: 90%;
    margin: 40px auto 0;
  }
}