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

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

/* =========================
.staff
========================= */
.staffPage{
    width: 100vw;
    display: flex;
    padding: 198px 0px 124px 0px;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.staff__txt{
    padding: 0 18%;
    align-items: start;

}

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

.staffAll{
    padding: 0 8%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.job__title {
    display: flex;
    align-items: center;
    gap: 16px;
    padding:0 8.1%;
    width: 100vw;
}

.page_title{
    color: var(--primary-gray);
    text-align: center;
    font-family: Montserrat;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.23; /* 125% */
    letter-spacing: 6.72px;
    position: relative;
    background-color: var(--primary-white);
}

.left_line{
    flex-grow: 1; 
    height: 2px;
    background-color: var(--primary-gray);
}

.right_line{
    flex-grow: 1; 
    height: 2px;
    background-color: var(--primary-gray);
}

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

.staff__list{
    display: flex;
    width: 100%;
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    border: 1px solid #D8D8D8;
    background: rgba(255, 255, 255, 0.30);
}

.staff__img{
    width: 207px;
    height: 422px;
    object-fit: cover;
}

.staff__list:nth-of-type(8) .staff__img {
    object-position: 70%;
}

.list__txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-top: 20px;
}

.ruby{
    color: rgba(45, 45, 45, 0.50);
    text-align: center;
    font-family: Montserrat;
    font-size: 1.2rem;
    line-height: 1.66; /* 166.667% */
    letter-spacing: 3.36px;
}

.name{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 5.32px;
    padding-bottom: 6px;
}

.job{
    text-align: center;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 1.4rem;
    line-height: 1.42; /* 142.857% */
    letter-spacing: 3.92px;
}

.comment{
    gap: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.comment h3{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 1.5rem;
    line-height: 2; /* 200% */
    letter-spacing: 4.2px;
}

.comment__txt{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 1.2rem;
    line-height: 2.5; /* 250% */
    letter-spacing: 3.36px;
    padding: 0 13px;
}

.comment__bar{
    width: 100%; 
    height: 1px;
    background-color: var(--primary-black);
    padding: 0 10px;
}

.tag{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 23.5px;
    gap: 0 10px;
    justify-content: center;
}

.tag p{
    font-size: 1.2rem;
    line-height: 2.5; /* 250% */
    letter-spacing: 3.36px;
}

.staff__instagram{
    width: 26px;
    height: 26px;
}

.instagramBtn{
    border-radius: 100px;
    border: 1px solid var(--primary-black);
    background: #FFF;
    display: flex;
    padding: 13px 36px 15px 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;
    margin-top: 30px;
    max-width: 218px;
    transition: all 0.4s ease-in-out;
    transform: translateY(0);
    white-space: normal;
    word-break: break-word;
}

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

.staff__reserveBtn{
    border-radius: 100px;
    border: 1px solid var(--primary-black);
    background: #FFF;
    display: flex;
    padding: 14px 36px 14px 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;
    margin-top: 30px;
    max-width: 218px;
    transition: all 0.4s ease-in-out;
    transform: translateY(0);
    white-space: normal;
    word-break: break-word;
}

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

.link_jump{
    width: 12px;
    height: 12px;
}

.staff__reserveBtn .link_jump{
    margin-top: 0;
}

@media screen and (max-width:333px){
    .staffPage .spBr{
        display: none;
    }
}

 /* .staffPage PC */
 @media screen and (min-width:769px){
   .staffPage{
    padding: 254px 0px 80px 0px;
   } 

   .staff__txt{
    padding: 30px 18% 0;
   }

   .staff__txt p{
        font-size: 1.8rem;
        line-height: 3.88; /* 388.889% */
        letter-spacing: 5.04px;
   }

   .job__title {
        gap: 8%;
        padding: 0 18vw;
    }

    .page_title{
        font-size: 3.6rem;
        font-weight: 500;
        line-height: 0.83; /* 83.333% */
        letter-spacing: 10.08px;
    }

   .staffAll {
        padding: 124px 18vw 0;
        gap: 74px;

    }

    .staff__list{
        flex-direction: row;
        padding: 3vw 2vw 4vw;
        gap: 3.4vw;
    }

    .staff__img {
        width: 25vw;
        height: 728px;
    }

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

    .ruby{
        font-size: 1.2rem;
        line-height: 30px; /* 250% */
        letter-spacing: 3.36px;
    }

    .name{
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 6.16px;
    }

    .job{
        font-size: 1.4rem;
        line-height: 30px; /* 214.286% */
        letter-spacing: 3.92px;
    }

    .comment {
        width: 26vw;
        gap: 18px;
        margin-top: 40px;
    }

    .comment h3{
        font-size: 1.8rem;
        line-height: 30px; /* 166.667% */
        letter-spacing: 5.04px;
        text-align: center;
    }

    .staff__list:nth-of-type(3) .comment h3{
        width: 25vw;
    }

    .staff__list:nth-of-type(4) .comment h3{
        width: 23vw;
    }

    .staff__list:nth-of-type(6) .comment h3{
        width: 24vw;
    }

    .staff__list:nth-of-type(8) .comment h3{
        width: 27vw;
    }


    .comment__txt{
        font-size: 1.4rem;
        line-height: 34px; /* 242.857% */
        letter-spacing: 3.92px;
    }

    .tag{
        gap: 0 34px;
    }

    .tag p{
        font-size: 1.4rem;
        line-height: 30px; /* 214.286% */
        letter-spacing: 3.92px;
    }

    .instagramBtn,
    .staff__reserveBtn{
        font-size: 1.8rem;
        line-height: 30px; /* 166.667% */
        letter-spacing: 5.04px;
        margin-top: 40px;
        max-width: 235px;

    }
 }

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