@charset "UTF-8";
/*CSS Document*/
html{
     font-size: 62.5%; /*16px * 0.65 =10px */
     width: 100%;
}
body{
    color: #333333;
    font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", "Meiryo", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.6rem;
    text-align: center;
}
/*************************************** ヘッダー(PC) ****************************************/
.header{
    width: 100%;
    position: relative;
}
.header-nav-sp{
    display: none;
}
.header-nav-pc{
    position: fixed;
    z-index: 100000;
    display: flex;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    padding: 10px 4vw;
    margin: 0 auto;
    transform: translateY(-100%);
    left: 0px;
    transition: 0.5s ease-in-out;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter:blur(40px) saturate(5);
    backdrop-filter: blur(40px) saturate(5);
    box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.06);
}
.header-nav-pc.header-open{
    transform: none;
}
.header-content-wrapper__logo{
    width: 60px;
    height: 80px;
    transform: none;
    transition: 300ms;
}
.header-logo{
    object-fit: contain;
}
.header-content-menu{
    display: flex;
    justify-content: right;
    gap: 44px;
    list-style-type: none;
    align-items: center;
}
.header-content-menu__icon{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}
.header-content-menu__nav{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 12px;
    height: 24px;
    text-decoration: none;
    color: #333333;
    transform: none;
    transition: 300ms;
}
.header-content-menu__nav span{
    display: inline;
    font-family: "poppins";
    font-size: 1.6rem;
    font-weight: 300;
}
.header-content-menu__reservation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: 54px;
    max-width: 254px;
    background-color: transparent;
    border: 1.5px solid #333333;
    border-radius: 100px;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.04);
    padding: 13px 32px 13px 32px;
    text-decoration: none;
    color: #333333;
    font-weight: 400;
    transition: 300ms;
}
.header-content-menu__reservation-icon{
    height: 24px;
    width: 24px;
}
.header-content-wrapper__logo:hover{
    transform: scale(1.1); 
    cursor: pointer;
}
.header-content-menu__nav:hover{
    transform: scale(1.1); 
    cursor: pointer;
}
.header-content-menu__reservation:hover{
    cursor: pointer;
    -webkit-transform: translate(0, -2px);
    transform: translate(0px, -2px);
    -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.footer-content-wrapper-1__logo:hover{
    transform: scale(1.1); 
    cursor: pointer;
}
.footer-content-wrapper-2 li a:hover{
    transform: scale(1.1); 
    cursor: pointer;
}
.footer-content-wrapper-1__sns-link li:hover{
    transform: scale(1.2); 
    cursor: pointer;
}
/*************************************** セクション開始の見出し、キービジュアル(PC) ****************************************/
.section-heading-top{
    position: relative;
    width: 100%;
    margin-bottom: 300px;
    transition: opacity 800ms 0.2s ease-in-out;
    transform: translateY(100px);
    opacity: 0;
}
.section-heading-top.on{
    transform: translateY(0);
    opacity: 1.0;
    overflow-x: clip;
}
.section-heading-top-contents{
    position: relative;
    z-index: 10;
    width: 100%;
    padding:0 80px;
    max-width: 1680px;
    margin: 0 auto;
    display: flex;
    gap: 5%;
    justify-content: space-around;
}
.section-heading-top-contents__square-pc{
    display: block;
}
.section-heading-top-contents__square-sp{
    display: none;
}
.section-heading-tittle{
    position: absolute;
    top: 45%;
    left: 6%;
    background-color: rgb(255,255,255,0.85);
    width: min(100%, 528px);
    display: flex;
    gap: 6%;
    align-items: center;
    z-index: 16;
    padding: 2%;
    border-radius: 20px;
    -webkit-backdrop-filter:blur(40px);
    backdrop-filter: blur(40px);
    box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.06);
}
.section-heading-tittle.long{
    width: min(100%, 620px);
}
.section-heading-tittle img{
    width: 64px;
    height: 64px;
    object-fit: contain;
    object-position: center;
}
.section-heading-tittle h3{
    font-family: "poppins";
    font-size: 5.6rem;
    font-weight: 200;
    letter-spacing: 0.28rem;
}
.section-heading-tittle span{
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.5;
    text-align: left;
}
.section-heading-top__keyvisual{
    width: 80%;
    border-radius: 40px;
    box-shadow: 32px 32px 64px rgba(55, 12, 12, 0.1);
    object-fit: cover;
    object-position: center;
}
.section-heading-top__bg{
    position: absolute;
    z-index: 1;
    right: 0px;
    bottom: -24%;
    width: 35%;
    object-fit: contain;
}

/*************************************** フッター(PC) ****************************************/
.footer{
    height: 277px;
    width: 100%;
    background-color: #ffffff;
}
.footer-content-wrapper{
    width: 100%;
    max-width: 1280px;
    height: 170px;
    border-top: solid 1px #f0f2f5;
    padding: 50px 4vw 0px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.footer-content-wrapper-1{
    display: flex;
    align-items: center;
}
.footer-content-wrapper-1__logo{
    width: 90px;
    height: 120px;
    transition: 300ms;
    transform: none;
}
.footer-content-wrapper-1__sns-link{
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    gap: 35px;
    padding-left: 60px;
}
.footer-content-wrapper-1__sns-link li{
    transform: none;
    transition: 300ms;
}
.footer-content-wrapper-1__logo a{
    width: 100%;
    height: 100%;
}
.footer-content-wrapper-2{
    display: flex;
    justify-content: space-around;
    gap: 50px;
    align-items: center;
    height: 40px;
    width: 440px;
}
.footer-content-wrapper-2 li{
    list-style-type: none;
    font-family: "poppins";
    font-size: 1.4rem;
    font-weight: 300;
    height: fit-content;
}
.footer-content-wrapper-2 li a{
    text-decoration: none;
    color: #333333;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: 300ms;
    transform: none;
}
.footer-content-wrapper-2 li img{
    height: 20px;
    width: 20px;
    object-fit: contain;
}
.footer-copyright{
    display: inline-block;
    padding: 50px 0 40px 0;
    font-size: 1.2rem;
    font-weight: 300;
}
/*************************************** 以下、レスポンシブ対応 ****************************************/
/*************************************** ヘッダー(SP) ****************************************/
@media (max-width:768px) {
    .header-nav-pc{
        display: none
    }
    .header-nav-sp{
        z-index: 100;
        display: flex;
        position: fixed;
        left: 0px;
        top: 0px;
        justify-content: space-between;
        align-items: center;
        height: 72px;
        width: 100%;
        padding: 0 24px;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.85);
        -webkit-backdrop-filter:blur(40px) saturate(5);
        backdrop-filter: blur(40px) saturate(5);
        box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.06);
    }
    .header-content-wrapper__logo-sp{
        width: 30px;
        height: 40px;
    }
    .open-button{
        display: block;
        position: relative;
        width: 40px;
        height: 30px;
    }
    .open-button span{
        position: absolute;
        display: block;
        background-color:#333333;
        width: 16px;
        height: 2px;
        bottom: 15px;
    }
    .open-button span:before{
        content: "";
        position: absolute;
        display: block;
        background-color:#333333;
        width: 24px;
        height: 2px;
        bottom: 9px;
    }
    .open-button span:after{
        content: "";
        position: absolute;
        display: block;
        background-color:#333333;
        width: 20px;
        height: 2px;
        bottom: -9px;
    }
    .header-logo-sp{
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    .header-reservation-button{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 50px;
        text-decoration: none;
        color: #333333;
    }
    .header-reservation-button span{
        font-size: 1.4rem;
    }
/*************************************** ヘッダーメニュー(SP) ****************************************/
    .nav{
        display: block;
    }
    .header-mobile-nav{
        position: absolute;
        z-index: 10;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 500px;
        padding: 30px;
        border-radius: 10px;
        background-color: rgba(255, 255, 255);
        box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.06);
        pointer-events: none;
        transform: translateY(-100%);
        transition: 0.3s ease-in;
    }
    .header-mobile-nav-container{
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0s 1s ease-in;
        pointer-events: none;
    }
    .close-area{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(200, 200, 200,0.85);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s 0.1s ease-in;
    }
    .header-mobile-nav-container.is-open,.close-area.is-open{
        opacity: 1;
        transition: opacity 0.5s 0s ease-in;
        pointer-events: auto;
      }
    .header-mobile-nav.is-open{
        pointer-events: auto;
        transform: none;
    }
    body.is-open{
        overflow-y: hidden;
      }
    .close-button{
        display: flex;
        align-items: center;
        gap: 8%;
        width:30%;
        margin-bottom: 40px;
    }
    .close-button span{
        font-family: "poppins";
        font-size: 1.4rem;
        font-weight: 300;
    }
    .header-content-menu-sp{
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: left;
        width: 30%;
        margin-bottom: 60px;
    }
    .header-content-menu__icon{
        width: 24px;
    }
    .nav-menu__reservation{
        margin: 0 auto 40px auto;
    }
    .nav-menu__sns-links{
        display: flex;
        width: 100%;
        max-width: 200px;
        height: 46px;
        justify-content: space-between;
        gap: 16px;
        align-items: center;
        margin: 25px auto 0 auto;
    }
    .nav-menu__sns-links__img{
        width: 40px;
        height: 40px;
    }
    .call-button{
        width: 184px;
        height: 46px;
    }
    .call-button a{
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 8px 14px;
        border-radius: 20px;
        background-color: #edeff2;
        box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.04);
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 1.4rem;
    }
    .call-button a img{
        width: 30px;
        height: 30px;
    }
/*************************************** セクション開始の見出し、キービジュアル(SP) ****************************************/
    .section-heading-top{
        margin-bottom: 124px;
    }
    .section-heading-top-contents{
        padding: 0px;
        justify-content: space-between;
    }
    .section-heading-top-contents__square-pc{
        display: none;
    }
    .section-heading-top-contents__square-sp{
        display: block;
    }
    .section-heading-top__keyvisual{
        width: 70%;
        height: 400px;
        border-radius: 20px 0 0 20px;
    }
    .section-heading-top__bg{
        width: 30%;
        bottom: -14%;
    }
    .section-heading-tittle{
        display: grid;
        grid-template-columns: 40px auto;
        justify-content: start;
        gap: 2%;
        width: fit-content;
        height: 90px;
        border-radius: 5px;
        padding: 14px 24px;
    }
    .section-heading-tittle.long{
        width: fit-content;
    }
    .section-heading-tittle img{
        width: 40px;
        height: 40px;
    }
    .section-heading-tittle h3{
        font-size: 3rem;
    }
    .section-heading-tittle span{
        grid-column: span 2;
        font-size: 1.2rem;
    }
    .pc-breakpoint{
        display: none;
    }
/*************************************** フッター(SP) ****************************************/
    .footer{
        height: 100%;
        padding: 0 24px;
    }
    .footer-content-wrapper{
        flex-direction: column-reverse;
        height: 100%;
    }
    .footer-content-wrapper-1{
        flex-direction: column-reverse;
        height: 100%;
    } 
    .footer-content-wrapper-1__sns-link{
        padding: 0px;
        margin-bottom: 60px;
    }
    .footer-content-wrapper-2{
        flex-direction: column;
        gap: 20px;
        height: 100%;
        width: 100%;
        margin-bottom: 60px;
    }
    .footer-copyright{
        padding: 60px 0;
    }

}






