@charset "utf-8";
/* =========================
common
========================= */
:root{
    --primary-white:#FAF8F5;
    --primary-black:#2D2D2D;
    --primary-lightyellow:#EBE3AB;
    --primary-yellow:#E0D162;
    --primary-gray:#D8D8D8;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Zen Kaku Gothic Antique',
        'Montserrat',
        sans-serif;
        color: var(--primary-black);
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 3.57; /* 357.143% */
    letter-spacing: 3.92px;
}

body.noScroll {
    overflow: hidden;
  }

img {
    max-width: 100%;
    height: auto;
}

.arrow,
.view__arrow{
    width: 12px;
    margin-top: 3px;
}

.concept,
.staff,
.menu,
.access,
.footer{
    background-color: var(--primary-white);
    z-index: 100;
}

.title{
    color: var(--primary-yellow);
    font-family: Montserrat;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.56; /* 156.25% */
    letter-spacing: 8.96px;
    margin-bottom: 52px;
}

.spBr{
    display: block;
}

.hpBr{
    display: none;
}

.br__none{
    display: block;
}

.fadeIn {
    opacity: 0;
    transition: all 1s ease-in-out;
    transform: translateY(20px);
}

.fadeIn.animated {
    opacity: 1;
    transform: translate(0);
}

/* .header PC */
@media screen and (min-width:769px){
    body {
        font-size: 1.8rem;
        line-height: 3.88; /* 388.889% */
        letter-spacing: 5.04px;
    }

    .title{
        font-size: 6.2rem;
        line-height: 0.96; /* 96.774% */
        letter-spacing: 17.36px;
        margin-bottom: 94px;
    }

    .spBr{
        display: none;
    }
    
    .hpBr{
        display: block;
    }
}/* PC 769px */

/* =========================
topVisual
========================= */

.topVisual{
    height: 100vh;
    width: 100vw;
    z-index: 100000;
    position: fixed;
    background-color: var(--primary-white);
    transition: transform 0.7s ease;
    transform: translateY(0);
}

.topVisual.up{
    transform: translateY(-100%);
}

.topVisual__img2,
.topVisual__img3,
.topVisual__img5{
    width: 73%;
}

.topVisual__img1,
.topVisual__img4{
    width: 58%;
}

.topVisual__img1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.2) rotate(-4.8deg);
    transition: all 0.5s ease;
    z-index: 0;
    opacity: 0;
}

.topVisual__img1.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(-4.8deg);
    z-index: 1;
  }

.topVisual__img2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.2) rotate(4.4deg);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.topVisual__img2.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(4.4deg);
    z-index: 2;
  }

.topVisual__img3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.2) rotate(-11.5deg);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 2;
}

.topVisual__img3.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(-11.5deg);
    z-index: 3;
  }

.topVisual__img4{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.2) rotate(4.5deg);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 3;
}

.topVisual__img4.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(4.5deg);
    z-index: 4;
  }

.topVisual__img5{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.2) rotate(-3.6deg);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 4;
}

.topVisual__img5.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(-3.6deg);
    z-index: 5;
  }

/* .topVisual PC */
@media screen and (min-width:769px){
    .topVisual__img2,
    .topVisual__img3,
    .topVisual__img5{
        width: 31%;
    }

    .topVisual__img1,
    .topVisual__img4{
        width: 24%;
    }

}/* PC 769px */

/* =========================
.header
========================= */
.header{
    display: flex;
    align-self: stretch;
    position: fixed;
    width: 100%;
    height: 74px;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px 20px 0;
    z-index: 999;
}

/* nav */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-white);
    z-index: 1000;
    transform: translateX(130%);
    transition: transform 0.5s;
}

.nav.is-open{
    transform: translateX(0%);
}

.nav__list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: 57vw;
    margin: 98px 21% 0;
}

.nav__menu,
.nav__menu--top,
.nav__menu--access{
    color: var(--primary-black);
    font-family: Montserrat;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.66; /* 166.667% */
    letter-spacing: 5.04px;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.nav__menu::after,
.nav__menu--top::after,
.nav__menu--access::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-black);
    transition: width 0.3s ease-in-out;
}

.nav__menu:hover,
.nav__menu--top:hover,
.nav__menu--access:hover{
    transform: translateY(1px);
}


.nav__menu:hover::after,
.nav__menu--top:hover::after,
.nav__menu--access:hover::after{
    width: 100%;
}


.information{
    margin: 50px 16% 0;
    border-top: 1px solid var(--primary-black);
}

.menu__open,
.menu__closed{
    color: var(--primary-black);
    font-family: Montserrat;
    font-size: 1.3rem;
    line-height: 1.53; /* 153.846% */
    letter-spacing: 3.9px;
    height: 39px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav .menu__open,
.nav .menu__closed{
margin-left: 4vw;
}
.menu__open{
    margin-top: 14px;
}

.nav__link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
}

.reserveBtn{
    border-radius: 100px;
    border: 1px solid var(--primary-black);
    background: #FFF;
    display: flex;
    padding: 12px 36px 16px 36px;
    justify-content: center;
    align-items: center;
    gap: 8px;

    color: var(--primary-black);
    text-align: center;
    font-family: Montserrat;
    font-size: 1.6rem;
    line-height: 1.87; /* 187.5% */
    letter-spacing: 4.48px;
    transition: all 0.4s ease-in-out;
    transform: translateY(0);
}

.reserveBtn:hover{
    background-color: #EBE3AB;
    transition: all 0.3s ease-in-out;
    transform: translateY(1px);
}

.link_jump{
    width: 12px;
    height: 12px;
    margin-top: 2px;
}

.deco__backImg{
    width: 100%;
    height: 182px;
    margin-top: 52px;
    object-fit: cover;
    object-position: 0 90%;
}

.deco__logo{
    opacity: 10%;
    transform: rotate(-90deg);
    position: absolute;
    top: 80px;
    left: -131px;
    width: 290px;
}

.instagramUrl{
    display: block;
    height: 32px;
    width: 32px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(0);
}

.instagramUrl:hover{
    opacity: 0.5;
    transform: translateY(1px);
}

.nav .instagram{
    display: block;
    height: 100%;
    margin: 0;
}

/* .nav end */

.hamburgerBtn{
    padding: 10px;
    z-index: 2000;
    height: 40px;
}
.hamburger__btn{
    max-width: 100%;
    width: 54px;
    height: 1px;
    background-color: var(--primary-black);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger__btn::after{
    content: "";
    position: absolute;
    width: 54px;
    height: 1px;
    background-color: var(--primary-black);
    top: 14px;
    transition: all 0.3s ease;
}

.hamburgerBtn.is-open .hamburger__btn{
    transform: rotate(45deg);
}

.hamburgerBtn.is-open .hamburger__btn::after{
    transform: translate(0px,-12px) rotate(-90deg);
}

/* .header PC */
@media screen and (min-width:920px){
    .header{
        display: flex;
        align-self: stretch;
        position: fixed;
        width: 100%;
        height: 100px;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 30px 4% 10px;
        gap: 6%;
        z-index: 999;
    }

    /* .nav */
    .nav{
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 100px;
        justify-content: flex-end;
        padding: 30px 4% 10px;
        background-color: transparent;
        width: 100vw;
        transform: translate(0);
    }

    .closeBtn,
    .hamburgerBtn,
    .hamburger__deco,
    .information p,
    .nav .instagram,
    .nav .instagramUrl{
        display: none;
    }

    .information{
        border-top: none !important;
        width: 188px;
        margin: 0;
    }

    .nav__list{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 6vw;
        width: 58vw;
        margin: 0;
        justify-content: flex-end;
        margin-right: 6vw;
    }

    .nav__menu,
    .nav__menu--top,
    .nav__menu--access{
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.66; /* 166.667% */
        letter-spacing: 5.04px;
    }

    .nav__link{
        margin-top: 0;
    }

    .reserveBtn{
        font-size: 1.8rem;
        line-height: 1.6; /* 166.667% */
        letter-spacing: 5.04px;
        padding: 13px 36px 15px 36px;
        gap: 8px;
    }

}/* PC 760px */

/* =========================
.main
========================= */
.mainvisual__sp{
    position: relative;
}

.mainvisual__hp{
    display: none;
}

.main__logo{
    position: absolute;
    top: 287px;
    left: 107px;
    width: 266px;
}

/* .man PC */
@media screen and (min-width:769px){
    .mainvisual__sp{
        display: none;
    }
    
    .mainvisual__hp{
        display: block;
        position: relative;
    }

    .main__logo{
        position: absolute;
        top: 0;
        left: 0;
        width: 564px;
    }
}/* PC 769px */

/* =========================
.concept
========================= */

   .concept{
    display: flex;
    padding: 124px 0px 60px 0px;
    flex-direction: column;
    align-items: center;
    position: relative;
   } 

   .concept__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .concept__imgBox{
        position: relative;
        width: 75vw;
        margin: 40px 0 42px;
        overflow: hidden;
    }

   .concept__image{
    width: 75vw;
   }

   .concept__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-white); 
    z-index: 1;
}

   .concept_txt{
       padding: 0 12% 40px;
   }

   .concept_txt p{
    line-height: 3.5; /* 357.143% */
    letter-spacing: 3.8px;
    padding-bottom: 50px;
   }

   .concept_txt p:nth-of-type(3){
    padding-bottom: 0;
   }

   .view{
    color: var(--primary-black);
    font-family: Montserrat;
    font-size: 1.6rem;
    line-height: 1.8; /* 187.5% */
    letter-spacing: 4.48px;

    display: flex;
    margin: 62px 20px 10px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    position: relative;
   }

   .view::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-black);
    transition: width 0.3s ease-in-out;
   }

   .view:hover::after{
    width: 100%;
   }

@media screen and (max-width:351px){
    .concept .br,
    .concept .spBr{
        display: none;
    }
}



/* .concept PC */
@media screen and (min-width:769px){
    .concept{
        display: flex;
        padding: 248px 5% 80px;
        flex-direction: column;
        align-items: center;
        position: relative;
       } 

    .concept__content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 94px;
        padding: 40px 8vw 0;
        gap: 5.8%;
        flex-wrap: nowrap;
        width: 100%;
    }

    .concept__imgBox{
        width: 37vw;
        overflow: hidden;
    }
    
    .concept__image{
        width: 37vw;
    }

    .concept_txt{
        padding: 0;
    }

    .view{
        font-size: 2.2rem;
        line-height: 1.36; /* 136.364% */
        letter-spacing: 6.16px;
        padding: 0;
       }

    .view__arrow{
        width: 18px;
    }

    @media screen and (max-width:919px){
        .concept__content {
            flex-wrap: wrap;
        }
    }

}/* PC 769px */

/* =========================
.parallax
========================= */
.parallax{
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.parallax__background{
    background-image: url("../background_image.jpg");
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 180%;
    z-index: 1;
    /* transform: translateZ(0); */
    will-change: transform;
}

/* =========================
.staff
========================= */
.staff{
    display: flex;
    padding: 124px 0px 60px 0px;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.staff__txt{
    padding: 0 12%;

}

.staff__txt p{
    text-align: center;
    font-size: 1.4rem;
    line-height: 3.57; /* 357.143% */
    letter-spacing: 3.8px;
    padding-bottom: 50px;
}

.staff__txt p:nth-of-type(2){
    padding-bottom: 0;
   }

.slider{
    gap: 0 18px;
    /* display: flex; */
    /* overflow-x: auto; */
    margin: 42px 0 0;
    max-width: 100%;
}

.staff__img{
    width: 187px;
    height: 382px;
    object-fit: cover;
    
}

.staff__list{
    display: flex;
    width: 227px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 auto;

    border: 1px solid #D8D8D8;
    background: rgba(255, 255, 255, 0.30);
    transition: transform 0.5s ease;
    transform: scale(0.9); /* 最初は少し小さめにしておく */
}

/* 中央のスライドだけ大きくする */
.slick-center {
    transform: scale(1.0) !important;
  }

/* slick が変な margin 入れないように調整 */
.slick-slide {
    margin: 0 9px; /* gap: 12px 相当を左右で分割 */
    display: flex !important;
    justify-content: center;
  }

.list__txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.txt__box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.name{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5; /* 150% */
    letter-spacing: 5.6px;
}

.job{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 1.2rem;
    line-height: 1.6; /* 166.667% */
    letter-spacing: 2.16px;
}

.staffLink__instagram{
    display: flex;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(0);
    
}

.staff__instagram{
    width: 26px;
    height: 26px;
    margin-top: 9px;
}

.staffLink__instagram:hover{
    opacity: 0.5;
    transform: translateY(1px);
}

  .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    list-style: none;
    padding: 0;
  }
  
  .slick-dots li {
    margin: 0 5px;
  }
  
  .slick-dots button {
    border: none;
    background: var(--primary-white);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    text-indent: -9999px;
    border: 1px solid var(--primary-black);
    transition: background 0.3s;
  }
  
  .slick-dots .slick-active button {
    background: var(--primary-black);
  }

@media screen and (max-width:374px){
    .staff .br,
    .staff .spBr{
        display: none;
    }
}

/* .staff PC */
@media screen and (min-width:769px){

    .staff{
        display: flex;
        padding: 154px 14% 80px;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .staff__txt p{
        font-size: 1.6rem;
        line-height: 4.37; /* 437.5% */
        letter-spacing: 4.48px;
    }

    .slider{
        margin: 94px 0 0;
        gap: 40px;
    }

    .staff__img{
        width: 306px;
        height: 608px;
        object-fit: cover;
    }
    
    .staff__list{
        width: 406px;
        padding: 40px;
        gap: 0;
    }
    
    .list__txt{
        display: flex;
        flex-direction: row-reverse;
        gap: 39px;
        margin-top: 40px;
    }
    
    .txt__box{
        gap: 10px;
    }

    .name{
        font-family: "Zen Kaku Gothic Antique";
        font-size: 2.2rem;
        line-height: 1.34; /* 136.364% */
        letter-spacing: 6.16px;
    }
    
    .job{
        font-family: "Zen Kaku Gothic Antique";
        font-size: 1.4rem;
        line-height: 2.14; /* 214.286% */
        letter-spacing: 3.92px;
    }
    
    .staff__instagram{
        width: 32px;
        height: 32px;
    }

    .dots{
        margin: 20px 0 94px;
    }

    .dot {
        width: 15px;
        height: 15px;
    }

}/* PC 769px */

/* =========================
.menu
========================= */
.menu{
    display: flex;
    padding: 124px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.menu__txt{
    padding: 0 12%;
}

.menu__txt p{
    text-align: center;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 1.4rem;
    line-height: 3.57; /* 357.143% */
    letter-spacing: 3.8px;
    padding-bottom: 50px;
}

.menu__txt p:nth-of-type(3){
    padding-bottom: 52px;
   }

.hair__box{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menuBg__hair{
    width: 100%;
    height: 375px;
    background-image: url(../menu_hair.png);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.menuBg__beauty{
    width: 100%;
    height: 375px;
    background-image: url(../menu_beauty.png);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.menu__hairTitle{
    text-align: center;
    font-family: Montserrat;
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1.34; /* 134.615% */
    letter-spacing: 9.36px;

    background: url(../menu_hair.png);
    background-color: lightgray;
    background-position: -93.35px -83.688px;
    background-size: 238.227% 281.548%;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu__hairList{
    padding: 70px 30px 60px;
    background-color: rgba(235, 227, 171, 0.30);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hairList__bg{
    position: absolute;
    top: -10px;
    left: 70px;
    width: 100%;
    height: 50%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.hairList__content{
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__hair{
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    width: 302px;
    padding: 40px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-top: 25px;
}

.hair__list{
    gap: 40px;
    display: flex;
    flex-direction: row;
    margin: 5px 0;
}

.menu__name{
    text-align: center;
    font-size: 1.4rem;
    line-height: 2.14; /* 214.286% */
    letter-spacing: 3.92px;
}

.menu__price{
    text-align: center;
    font-family: Montserrat;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.42; /* 142.857% */
    letter-spacing: 3.78px;
}

.view__menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin: 35px 0 10px 42vw;

    font-family: Montserrat;
    font-size: 1.6rem;
    line-height: 1.87; /* 187.5% */
    letter-spacing: 4.48px;
    position: relative;
}

.view__menu::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-black);
    transition: width 0.3s ease-in-out;
   }

   .view__menu:hover::after{
    width: 100%;
   }

.beauty__box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.menu__beautyList{
    padding: 70px 30px 60px;
    background-color: rgba(235, 227, 171, 0.30);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beautyList__bg{
    position: absolute;
    top: 210px;
    left: -40px;
    width: 100%;
    height: 60%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
    transform: scaleY(-1);
}

.beautyList__content{
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__beautyTitle{
    text-align: center;
    font-family: Montserrat;
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1.34; /* 134.615% */
    letter-spacing: 9.36px;
    
    background: url(../menu_beauty.png);
    background-color: lightgray;
    background-position: -93.35px -83.688px;
    background-size: 148.227% 321.548%;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
}

.menu__beauty{
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    width: 318px;
    padding: 40px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-top: 25px;
}

.beauty__list{
    gap: 53px;
    display: flex;
    flex-direction: row;
    margin: 5px 0;
}

.beauty__list:nth-of-type(2){
    gap: 17px;
}

@media screen and (max-width:320px){

    .menu__hair,
    .menu__beauty{
        width: 80vw;
    }

    .hair__list,
    .beauty__list{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .menu__name {
        flex-basis: 100%;
    }

}

@media screen and (max-width:374px){
    .menu .br,
    .menu .spBr{
        display: none;
    }
}

/* .menu PC */
@media screen and (min-width:920px){
    .menu{
        padding: 154px 0px 0px 0px;
    }

    .menu__txt p{
        font-size: 1.6rem;
        line-height: 4.37; /* 437.5% */
        letter-spacing: 4.48px;
    }

    .menu__txt p:nth-of-type(3) {
        padding-bottom: 94px;
    }

    .hair__box{
        flex-direction: row;
        width: 100vw;
    }
    
    .beauty__box{
        flex-direction: row-reverse;
        width: 100vw;
    }

    .menuBg__hair{
        width: 50%;
        height: auto;
    }

    .menuBg__beauty{
        width: 50%;
        height: auto;
    }

    .menuImg {
        width: 100%;
        height: 582px;
        object-fit: cover;
    }

    .menu__hairList,
    .menu__beautyList{
        width: 50%;
    }
    .menu__hairTitle,
    .menu__beautyTitle{
        text-align: center;
        font-family: Montserrat;
        font-size: 8.2rem;
        line-height: 1.46; /* 146.341% */
        letter-spacing: 14.76px;
        background-position: -176.35px -213.688px;
        background-size: 198.227% 421.548%;
    }

    .menu__hairTitle{
        background-position: -219.35px -243.688px;
        background-size: 328.227% 521.548%;
    }

    .menu__beaityTitle{
        background-size: 148.227% 371.548%;
        background-position: -113.35px -193.688px;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .menu__hair,
    .menu__beauty {
        padding: 50px 40px;
        gap: 14px;
        margin-top: 25px;
        width: 38vw;
    }

    .hair__list{
        gap: 0 6vw;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .beauty__list{
        gap: 0 7vw;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .beauty__list:nth-of-type(2) {
        gap: 0 2.35vw;
    }

    .menu__name{
        font-size: 1.8rem;
        line-height: 2.08; /* 208.333% */
        letter-spacing: 6.72px;
    }

    .menu__price{
        font-family: Montserrat;
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.56; /* 156.25% */
        letter-spacing: 5.76px;
    }

    .view__menu{
        font-family: Montserrat;
        font-size: 1.8rem;
        line-height: 1.6; /* 166.667% */
        letter-spacing: 5.04px;
        /* width: 100%; */
        margin-top: 28px;
        margin: 28px 0 0 25vw;
    }

    .hairList__bg{
        top: -25%;
        height: 100%;
    }
    .beautyList__bg {
        position: absolute;
        top: 40%;
        left: -40px;
        transform: scaleY(-1);
        height: 100%;
    }

    @media screen and (max-width:1123px){
        .menu__name {
            flex-basis: 100%;
        }
    }

}/* PC 769px */
/* =========================
.access
========================= */
.access{
    display: flex;
    padding: 124px 0px 60px 0px;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.access__list{
    display: flex;
    width: 73vw;
    padding: 40px 10px;
    flex-direction: column;
    align-items: center;
}

.access__item{
    display: flex;
    width: 73vw;
    height: 169px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-top: 1px solid #D8D8D8;
}

.access__title{
    font-family: Montserrat;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.66; /* 166.667% */
    letter-spacing: 5.04px;
}

.access__txt{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 1.4rem;
    line-height: 2.14; /* 214.286% */
    letter-spacing: 3.92px;
    width: 86%;
    text-align: center;
}


.math{
    text-align: center;
    font-family: Montserrat;
}

.map {
    width: 75vw;
    height: 316px;
}



/* .menu PC */
@media screen and (min-width:769px){
    .access{
        padding: 154px 0px;
    }

    .access__list{
        width: 58vw;
    }

    .access__item{
        display: flex;
        flex-direction: row;
        width: 58vw;
        gap: 5.8vw;
        padding: 36px 30px 36px 30px;
        height: auto;
    }

    .access__title{
        width: 125px;
        font-family: Montserrat;
        font-size: 2rem;
        line-height: 1.5; /* 150% */
        letter-spacing: 5.6px;
        flex-shrink: 0;
    }

    .access__txt{
        text-align: start;
        width: 512px;
        font-size: 1.6rem;
        line-height: 1.87; /* 187.5% */
        letter-spacing: 4.48px;
    }

    .math{
        font-family: Montserrat;
        font-size: 1.6rem;
        line-height: 1.87;
        letter-spacing: 4.48px;
    }

    .map{
        width: 67vw;
        height: 628px;
    }

    @media screen and (max-width:969px){
        .access__list{
            display: flex;
            width: 73vw;
            padding: 40px 10px;
            flex-direction: column;
            align-items: center;
        }

        .access__item{
            display: flex;
            width: 73vw;
            height: 169px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            align-self: stretch;
            border-top: 1px solid #D8D8D8;
        }

        .access__title{
            text-align: center;
        }

        .access__txt{
            width: 86%;
            text-align: center;
        }
    }
}/* PC 769px */

/* =========================
.footer
========================= */
.footer{
    display: flex;
    width: 100%;
    padding: 124px 0px 24px 0px;
    flex-direction: column;
    align-items: center;
    gap: 54px;
    position: relative;
}

.footer__logoTop{
    z-index: 100;
}

.footer__logo{
    width: 180px;
}

.footer__bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.footer__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;

    position: relative;
    z-index: 100;
}

.footer__nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 0;
    list-style: none;
    padding: 0;
    /* margin: 0 26%; */
    /* width: fit-content; */
    width: 50vw;
}

.footer__menu,
.footer__menu--top,
.footer__menu--access{
    font-family: Montserrat;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.53; /* 153.846% */
    letter-spacing: 3.9px;

    display: flex;
    width: 90px;
    height: 39px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.footer__menu::after,
.footer__menu--top::after,
.footer__menu--access::after{
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 1px;
background-color: var(--primary-black);
transition: width 0.3s ease-in-out;
}

.footer__menu:hover,
.footer__menu--top:hover,
.footer__menu--access:hover{
transform: translateY(1px);
}

.footer__menu--top:hover::after{
width: 37%;
}

.footer__menu--access:hover::after{
width: 75%;
}

.footer__menu:nth-of-type(2):hover::after{
width: 90%;
}

.footer__menu:nth-of-type(3):hover::after{
width: 55%;
}

.footer__menu:nth-of-type(4):hover::after{
width: 60%;
}


.footer__information{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.footer__txt{
    display: flex;
    flex-direction: column;
    margin-bottom: 42px;
}

.footer .instagramUrl{
    margin-bottom: 42px;
}

.instagram{
    width: 32px;
    display: block;
    height: 100%;
}

.copy{
    font-family: Montserrat;
    font-size: 1.1rem;
    line-height: 8.18; /* 818.182% */
    letter-spacing: 3.3px;
}

    @media screen and (max-width: 320px) {
    .footer__nav {
      flex-wrap: nowrap;
      flex-direction: column;
      align-items: center;
    }
  }/* 320px */

  @media screen and (min-width: 539px) and (max-width: 768px) {
    .footer__nav {
        display: flex;
        justify-content: flex-start;
        list-style: none;
        padding: 0;
        margin: 0 26%;
        width: fit-content;
        flex-direction: row;
        flex-wrap: nowrap;
        gap:40px;
    }

    .footer__menu,
    .footer__menu--top,
    .footer__menu--access{
        width: auto;
    }

    }

  /* .footer PC */
@media screen and (min-width:769px){
    .footer{
        padding: 154px 0px 154px 0px;
    }
    .footer .instagram{
        display: block;
        margin: 0;
    }

    .footer .instagramUrl{
        margin-bottom: 0;
    }

    .footer__logo{
        width: 350px;
    }

    .footer__content {
        gap: 104px;
    }

    .footer__nav {
        display: flex;
        justify-content: flex-start;
        list-style: none;
        padding: 0;
        margin: 0 26%;
        width: fit-content;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 72px;
    }

    .footer__menu,
    .footer__menu--top,
    .footer__menu--access{
        width: auto;
        font-size: 1.6rem;
        line-height: 1.23; /* 125% */
        letter-spacing: 4.8px;
    }

    .footer__menu--top:hover::after{
        width: 95%;
        }
        
        .footer__menu--access:hover::after{
        width: 95%;
        }
        
        .footer__menu:nth-of-type(2):hover::after{
        width: 95%;
        }
        
        .footer__menu:nth-of-type(3):hover::after{
        width: 95%;
        }
        
        .footer__menu:nth-of-type(4):hover::after{
        width: 95%;
        }

    .footer__information{
        display: flex;
        flex-direction: row-reverse;
        gap: 82px;
    }

    .footer__txt{
        margin: 0;
    }

    .menu__open{
        margin: 0;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.25; /* 125% */
        letter-spacing: 4.8px;
    }

    .menu__closed{
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.25; /* 125% */
        letter-spacing: 4.8px;
        margin-top: 14px;
    }

    .copy{
        font-family: Montserrat;
        font-size: 1.4rem;
        line-height: 1.4; /* 142.857% */
        letter-spacing: 4.2px;
    }


}/* PC 769px */

