@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;
}

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

.conceptPage,
.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;
}

.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 */

/* =========================
.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 */

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

.conceptPage{
    padding: 198px 0 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.concept__top{
    width: 100%;
    margin-bottom: 154px;
    overflow: hidden;
    position: relative;
}

.conceptPage .concept__image{
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: bottom;
}

.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% 94px;
}

.concept_txt p{
    line-height: 3.5; /* 357.143% */
    letter-spacing: 3.8px;
    font-size: 1.4rem;
}

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

.content__img{
    height: 360px; 
    position: relative;
    width: min(75vw, 280px);
    aspect-ratio: 7 / 9; 
}

.concept1,
.concept3{
    width: 280px;
    height: 360px;  
    object-fit: cover;   
}

.concept__content:nth-of-type(4) .content__img{
    height: 215px; 
    position: relative;
    margin: 0 11%;
    width: min(75vw, 291px);
    aspect-ratio: 291 / 215;
}
   
.concept2{
    width: 291px;
    height: 215px;
    object-fit: cover;   
}

.concept1,
.concept2,
.concept3{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.concept1.active,
.concept2.active,
.concept3.active {
    opacity: 1;
    z-index: 2;
}

.content__txt {
    padding: 30px 60.5px 60px;
    font-size: 1.4rem;
    line-height: 50px;
    letter-spacing: 3.92px;
}

.content__pick{
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5; /* 250% */
    letter-spacing: 7.2px;
}

.concept__decoImg{
    background-image: url(../decolation.png);
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    margin-top: 5%;
    margin-left: -6%;
}

.concept__content:nth-of-type(3) .concept__decoImg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 29%;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    margin-top: 4%;
    margin-left: -5%;
}

/* .header PC */
@media screen and (min-width:769px){
    .conceptPage{
        padding: 254px 0 154px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .conceptPage .concept__image{
        width: 100%;
        height: 519px;
        margin-bottom: 94px;
    }

    .conceptPage .title{
        margin: 154px 0 124px;
    }

    .concept_txt{
        margin-bottom: 188px;
        padding: 0;
    }
    
    .concept_txt p{
        font-size: 1.8rem;
        line-height: 3.88; /* 388.889% */
        letter-spacing: 5.04px;
        text-align: center;
    }

    .concept__content {
        display: flex;
        flex-direction: row;
        position: relative;
        align-items: center;
        padding: 0;
        gap: 6vw;
        width: 77vw;
    }

    .content__img{
        width: 452px;
        height: 580px; 
        position: relative;
    }
    
    .concept1,
    .concept3{
        width: 452px;
        height: 580px;  
        object-fit: cover;   
    }
    
    .concept__content:nth-of-type(4) .content__img{
        width: 526px;
        height: 390px; 
        position: relative;
        margin: 0;
    }
       
    .concept2{
        width: 526px;
        height: 390px;
        object-fit: cover;   
    }
    
    .content__txt{
        padding: 0;
        width: 34vw;
        font-size: 1.6rem;
        line-height: 4.37; /* 437.5% */
        letter-spacing: 4.48px;
    }

    .concept__content:nth-of-type(3) .content__txt{
        width: 28vw;
    }

    .concept__content:nth-of-type(4) .content__txt{
        width: 39vw;
    }

    .content__pick{
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 2.91; /* 291.667% */
        letter-spacing: 8.64px;
    }

    .concept__content:nth-of-type(4){
        flex-direction: row-reverse;
        gap: 6vw;
        margin-top: 94px;
    }

    .concept__content:nth-of-type(5){
        margin-top: 94px;
    }

    .concept__decoImg{
        width: 100%;
        height: 100%;
        margin-top: 5%;
        margin-left: -9%;
        
        top: 0%;
        left: 0%;
        transform: translate(0,0);
    }
    
    .concept__content:nth-of-type(3) .concept__decoImg{
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: 50% 29%;
        background-repeat: no-repeat;
        opacity: 0.2;
        z-index: 0;
        margin-top: 4%;
        margin-left: -8%;
    }

}/* PC 769px */

@media screen and (min-width: 769px) and (max-width: 1223px) {
    .concept__content {
      flex-wrap: wrap;
      justify-content: center;
    }

    .content__txt {
        width: 100%;
        padding: 30px 60.5px 60px;
    }

    .concept__content:nth-of-type(3) .content__txt {
        width: 100%;
        padding: 30px 60.5px 60px;
    }

    .concept__content:nth-of-type(4) .content__txt {
        width: 100%;
        padding: 30px 60.5px 60px;
    }
  }


   
    
/* =========================
.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 */

