body{
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}

img{
    max-width: 100%;
}

.header{
    position: fixed;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(225,225,225,0.25);
}

.header-nav-list{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.header-nav-item{
    color: #fff;
    transition: opacity 0.3s;
}

.header-nav-item a:hover{
    opacity: 0.7;
}
.header-menu{
    position: relative;
}

.menu-drawer{
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    background-color: #d2cbcbef;
    padding: 10px;
    position: absolute;
    margin-top: 23px;
    display: none;
}

.menu-drawer-list{
    color: #fff;
    font-size: 16px;
}

.inner{
    padding: 0 40px;
}

.section-heading{
    text-align: center;
    margin-bottom: 40px;
}

.section-heading-l{
    color: #fff;
}

.section-heading-main{
    display: block;
    font-size: 40px;
}

.section-heading-sub{
    display: block;
    font-size: 12px;
}

.about{
    padding: 40px 0;
    background-color: #f1eee4;
}

.about-img{
}

.about-text-contents{
    margin-top: 12px;
}

.about-text{
    font-size: 14px;
    line-height: 2;
}

.about-text + .about-text{
    margin-top: 12px;
}

.menu{
    background-color: #f1eee4;
    padding: 40px 0;
}

.menu-contents{
    text-align: center;
}

.menu-item + .menu-item{
    margin-top: 62px;
}

.menu-text-contents{
    padding: 16px 12px;
}

.menu-name-main{
    display: block;
    font-size: 18px;
}

.menu-name-sub{
    display: block;
    font-size: 12px;
    margin-top: 8px;
    color: #a98c5f;
}

.menu-text{
    font-size: 14px;
    margin-top: 12px;
    color: #a98c5f;
}

.menu-img-max{
    padding: 80px;
    background-color: rgba(41, 40, 40, 0.25);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    text-align: center;
    margin: auto;
    z-index: 100;
    position: fixed;
}

.shop{
    padding: 80px 0;
    background-image: url("../img/sp/bg-shop.png");
    background-size: cover;
    background-position: center center;
}

.shop-inner{
    padding: 0 18px;
}

.shop-text-contents{
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.form{
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    text-align: center;
    margin-top: 30px;
}

.form-input{
    display: block;
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: rgba(225,225,225,0.75);
    padding: 14px 10px;
}

.btn{
    padding: 12px 10px;
    font-size: 16px;
    margin-top: 10px;
    border: none;
    background-color: #a98c5f;
    border-radius: 4px;
    color: #fff;
    width: 120px;
    transition: opacity 0.3s;
}
.btn:hover{
    cursor: pointer;
    opacity: 0.7;
}
.footer{
    padding: 40px 0 0;
    background-color: #3c301e;
    text-align: center;
}

.footer-list{
    display: flex;
    gap: 20px;
}

.footer-link{
    transition: opacity 0.3s;
}

.footer-link:hover{
    opacity: 0.7;
}

.sns-text{
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
}

.sns-img{
    width: 60px;
}

.footer-copy-right{
    padding: 12px;
    margin-top: 40px;
    border-top: 1px solid rgba(225,225,225,0.25);
}

.copy-right{
    color: #fff;
    font-size: 12px;
}

.top-button{
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
}

.top-scroll{
    font-size: 24px;
    padding: 20px;
    background-color: #fff;
    border: none;
    clip-path: circle(40%);
    transition: opacity 0.3s;
}

.top-scroll:hover{
    cursor: pointer;
    opacity: 0.7;
}

@media screen and (min-width:768px) {
    .header{
        padding: 16px;
    }

    .inner{
        max-width: 1080px;
        margin: 0 auto;
    }

    .header-inner{
        max-width: 1080px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: space-between;
    }
    .header-nav-list{
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 10px;
    }

    .section-heading-main{
        font-size: 64px;
    }

    .about{
        padding: 100px 0;
    }

    .about-contents{
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .about-img{
        width: 300px;
    }

    .about-text{
        font-size: 15px;
    }

    .about-text-contents{
        margin-top: 0;
    }
    .about-text + .about-text{
        margin-top: 30px;
    }

    .menu{
        padding: 0 0 100px;
    }

    .menu-list{
        display: flex;
        gap: 20px;
    }

    .menu-item + .menu-item{
        margin-top: 0;
    }

    .shop{
        background-image: url('../img/bg-shop.png');
        background-size: cover;
        background-position: center center;
        padding: 60px 0;
    }
    .shop-inner{
        max-width: 600px;
        margin: 0 auto;
    }

    .shop-text-contents{
        line-height: 2;
    }

    .form{
        display: flex;
        gap: 20px;
        font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    }

    .form-input{
        padding: 14px;
    }

    .btn{
        margin-top: 0;
    }

    .footer-logo{
        margin-bottom: 10px;
    }

    .footer-list{
        justify-content: center;
        gap: 40px;
    }

    .copy-right{
        font-size: 14px;
    }
}

@media screen and (min-width:2881px) {
    img{
        width: 100%;
    }
    
}