@charset "UTF-8";
:root{
    --primary-white: #FFFFFF;
    --primary-gray: #F4F4F6;
    --secondary-gray: #858585;
    --tertiary-gray:#BABABA;
    --primary-ivory:#FFFAE8;
    --secondary-ivory:#F5DCBF;
    --tertiary-ivory:#FFEBC7;
    --primary-brown:#E9CA9C;
    --secondary-brown:#E7B880;
    --tertiary-brown:#8F4400;
    --quaternary-brown:#503409;
    --primary-black: #333333;
    --secondary-black: #5B5B5C;
    --main-font: 'NotoSans', 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'HiraKakuProN-W3', 'Hiragino Kaku Gothic ProN', Helvetica, 'Helvetica Neue', sans-serif;
    --heading-font: "Montserrat";
}
html{
    font-size: 62.5%; /*16px * 0.65 =10px */
    width: 100%;
}
body{
    position: relative;
    background-color:#FFFAE8;
    font-family: "Noto Sans JP","Yu gothic","游ゴシック";
    font-size: 1.6rem;
    line-height: 1.8;
    color:var(--quaternary-brown);
    font-weight: 400;
}
body.is-open{
    overflow-y: hidden;
    overflow-x: hidden;
} 
/******************* ヘッダー PC ******************/
.pc{
    display: block;
}
.sp{
    display: none;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4%;
    width: 90%;
    max-width: 1920px;
    padding-top: 35px;
    margin:0 auto;
}
.header-logo{
    width: 180px;
    height: auto;
    transform: scale(1);
    transition: ease-in-out 0.3s;
}
.header-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.header-logo:hover{
    transform: scale(1.1);
    transition: ease-in-out 0.3s;
}
.header-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    background-color: var(--primary-brown);
    border-radius: 1000px;
    padding: 8px 6%;
}
.header-menu__item{
    width: fit-content;
    height: 100%;
}
.header-menu__item a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
    padding: 8px 16px;
    color:var(--quaternary-brown);
    font-weight: 400;
    transition: ease-in-out 0.2s;
    word-break: keep-all;
}
.header-menu__item a:hover{
    color: #B84D00;
    font-weight: 600;
    transition: ease-in-out 0.2s;
}
/******************* ヘッダー SP ******************/
@media(max-width:768px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    .header{
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 8px 4%;
    }
    .header-logo{
        width: 120px;
    }
    .nav-button{
        position: relative;
        display: block;
        height: 32px;
        width: 32px;
    }
    .nav-button span{
        position: absolute;
        z-index: 10;
        display: block;
        top: 10px;
        height: 4px;
        width: 32px;
        border-radius: 4px;
        background-color: var(--primary-white);
    }
    .nav-button span::before {
        content: "";
        position: absolute;
        display: block;
        top: -10px;
        height: 4px;
        width: 32px;
        border-radius: 4px;
        background-color: var(--primary-white);
    }
    .nav-button span::after {
        content: "";
        position: absolute;
        display: block;
        top: 10px;
        height: 4px;
        width: 32px;
        border-radius: 4px;
        background-color: var(--primary-white);
    }
    .header-nav-img{
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        width: max(12%,80px);
        height: auto;
        object-fit: contain;
        object-position: center;
    }
}
/******************* ヘッダーナビゲーションメニュー SP ******************/
.header-nav-menu{
    display: none;
}
.section-top{
    position: relative;
    overflow-x: hidden;
}
@media(max-width:768px){
    .header-nav-menu{
        position: absolute;
        z-index: 10000;
        top: 0;
        right: -100%;
        display: block;
        width: 70%;
        height: 100%;
        background-color: var(--primary-brown);
        padding: 24px 16px;
        transition: 0.5s ease-in-out;
    }
    .header-nav-menu.is-open{
        right: 0;
        overflow-y: scroll;
        transition: 0.5s ease-in-out;
    }
    .nav-button-close{
        position: relative;
        display: block;
        height: 40px;
        width: 40px;
        margin-left: auto;
    }
    .nav-button-close span{
        position: relative;
        display: inline-block;
        height: 40px;
        width: 40px;
    }
    .nav-button-close span::before,
    .nav-button-close span::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 4px;
        border-radius: 4px;
        background-color: var(--primary-white);
        transform-origin: center;
    }
    .nav-button-close span::before {
        transform: translate(-50%, -50%) rotate(30deg);
    }
    .nav-button-close span::after {
        transform: translate(-50%, -50%) rotate(-30deg);
    }
    .nav-menu{
        margin: 40px 0;
        width: 100%;
    }
    .nav-menu__item{
        width: 100%;
        border-top:solid 2px rgb(117, 91, 53, 0.2);
    }
    .nav-menu__item:last-child{
        border-bottom:solid 2px rgb(117, 91, 53, 0.2);
    }
    .nav-menu__item a{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 16px;
    }
    .nav-menu__item span{
        font-size: 1.6rem;
        font-weight: 600;
        color: #755B35;
    }
    .nav-menu__icon{
        width: 32px;
        height: 32px;
        object-fit: contain;
        object-position: center;
    }
    .header-nav-contact{
        background-color: #E7B880;
        color: #755B35;
        font-size: 1.4rem;
        font-weight: 600;
        width: fit-content;
        border-radius: 8px;
        padding: 8px 16px;
        margin: 0 auto 16px auto;
    }
    .header-nav-contact-item-wrapper{
        display: flex;
        justify-content: center;
        gap: 16%;
        margin: 0 auto;
    }
    .header-nav-contact-item{
        display: flex;
        width: 64px;
        height: 64px;
        border-radius: 1000px;
        background-color: #FFFAE8;
    }
    .header-nav-contact-item img{
        width: 40px;
        height: 40px;
        margin: auto;
    }
    .header-nav-bg{
        position: absolute;
        z-index: 1000;
        top: 0;
        right: -100%;
        opacity: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgb(255, 255, 255,0.4);
        backdrop-filter: blur(4px);
        transition: right 0.5s ease-in-out;
    }
    .header-nav-bg.is-open{
        right: 0;
        opacity: 1;
        transition: right 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out 0.1s;

    }
}
/******************* フッター PC ******************/
.footer{
    background-color: var(--secondary-brown);
    width: 100%;
    padding: 80px 4% 16px 4%;
}
.footer-content-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10%;
    width: 100%;
    max-width: 1920px;
    margin:0 auto 72px auto;
}
.footer-logo{
    flex-shrink: 0;
    width: 256px;
    height: auto;
}
.footer-logo img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.footer-menu-wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-right: 6%;
    gap: 16%;
    width: 100%;
}
.footer-menu{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-menu__item{
    width: fit-content;
}
.footer-menu__item a{
    display: block;
    width: 100%;
    font-size: 1.8rem;
    padding: 4px 8px;
    transition: ease-in-out 0.2s;
}
.footer-menu__item a:hover{
    color: #B84D00;
    font-weight: 600;
    transition: ease-in-out 0.2s;
}
.copyright{
    display: block;
    font-size: 1.4rem;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}
/******************* フッター SP ******************/
@media(max-width:768px){
    .footer{
        background-color: var(--secondary-brown);
        width: 100%;
        padding: 40px 4% 14px 4%;
    }
    .footer-content-wrapper{
        flex-direction: column;
        gap: 32px;
        width: 100%;
        margin:0 auto 40px auto;
    }
    .footer-logo{
        flex-shrink: 0;
        width: 160px;
        height: auto;
    }
    .footer-menu-wrapper {
        justify-content: flex-start;
        padding: 0;
    }
    .footer-menu__item a {
        font-size: 1.2rem;
        padding: 4px 8px;
    }
    .copyright{
        font-size: 1.2rem;
    }
}