@charset "UTF-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
common
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
:root{
    --primary-white: #F5F4F1;
    --primary-gray: #1B1818;
    --primary-red: #AD2D27;
}

html{
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP",
    Arial;
    color: var(--primary-gray);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    background-image: url("../images/bg.webp");
    background-repeat: repeat;
    background-size: cover;
}

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

/* ふわっと出る前の初期状態 */
.fadein-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示された後 */
.fadein-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* common pc 769px */
@media screen and (min-width: 769px) {
    .spBr {
        display: none;
    }
}
/* pc 769px */


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
header
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* .navの初期表示 */
.nav{
    background-color: #AD2D27;
    color: #F5F4F1;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.nav__header {
    position: absolute;
    top: 13px;
    right: 4%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav__btn{
    max-width: 40px;
    height: auto;
}

.nav__btnTxt{
    width: 40px;
    height: auto;
    text-align: center;
}

.nav__list {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    max-width: 275px;
    align-items: flex-start;
    margin: 200px auto 0;
}

.nav__item {
    position: relative;
    writing-mode: vertical-rl;
    padding: 0 1.7rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--primary-white);
}

.nav__item:last-of-type{
    border-left: 1px solid var(--primary-white);
}

.nav__storeInfo{
    max-width: 350px;
    margin: 130px auto 0;
    padding: 0 9%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store__infoItem{
    font-size: 1.1rem;
    line-height: 20px;
}

.nav__telBtn{
    text-decoration: underline;
}

.nav__storeAddressMap {
    text-decoration: underline;
}

.nav.active{
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* nav が開いているときはハンバーガー非表示 */
.nav.active ~ .nav__hamburger {
    display: none;
}

.nav__hamburger {
    position: fixed;
    top: 13px;
    right: 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
}

.header__btn {
    display: block;
    width: 40px;
    height: auto;
}

.header__btnTxt {
    color: var(--primary-white);
    width: 40px;
    text-align: center;
}

/* header pc */
@media screen and (min-width: 769px) {
    .nav {
        position: fixed;
        top: 40px;
        right: 0;
        padding-right: 40px;
        height: auto;
        transform: none;
        background-color: transparent;
        color: inherit;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        z-index: 1000;
        background: transparent;
    }

    .nav__item a {
        white-space: nowrap;
        color: #fff;
        transition: color 0.3s ease;
    }

    .nav__list {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        margin: 0;
    }

    .nav__item {
        writing-mode: vertical-rl;
        padding: 0 1.5rem;
        font-size: 1.5rem;
        color: var(--primary-white);
        border-right: 1px solid var(--primary-white);
    }

    .nav__item:last-of-type {
        border-left: 1px solid var(--primary-white);
    }

    /* スクロール後 */
    .nav.scrolled .nav__item {
        border-right: 1px solid #AD2D27;
    }

    .nav.scrolled .nav__item:last-of-type {
        border-left: 1px solid #AD2D27;
    }

    .nav.scrolled .nav__item a {
        color: #AD2D27;
    }

    .nav__hamburger { display: none; }
    .nav__header { display: none; }
    .nav__storeInfo { display: none; }
}/* pc 769px */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
article__header
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.article__header {
    background-image: url(../images/menuheader__image-sp.webp);
    background-repeat: no-repeat;
    height: 300px;
    background-size: cover;
    position: relative;
}

.mainCopy{
    color: var(--primary-white);
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: start;
}

.mainCopy__tittleEn{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1em;
}

.mainCopy__tittleJp{
    font-size: 2.8rem;
    letter-spacing: 0.3em;
}

/* article__header pc */
@media screen and (min-width: 769px) {
    .article__header {
        background-image: url(../images/menuheader__image-pc.webp);
        background-repeat: no-repeat;
        height: 516px;
        background-size: cover;
        position: relative;
    }

    .mainCopy__tittleEn{
        font-size: 2rem;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.1em;
    }

.mainCopy__tittleJp{
        font-size: 4rem;
        letter-spacing: 0.3em;
    }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
monja
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.section__section--monja{
    padding: 60px 6% 0;
}

.menu__tittle{
    margin: 0 auto;
    border-left: 1px solid var(--primary-gray);
    display: block;
    /* width: fit-content; */
}

.menu__tittleJp{
    font-size: 2.3rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    margin-left: 10px;
    margin-top: 2px;
}

.menu__tittleEn{
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 10px;
}

.menu__mainTxtWrapper{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu__mainImg{
    display: block;
    margin: 0 auto;
    width: 45vw;
    max-width: 584px;
    min-width: 250px;
}

.menu__mainCopy{
    font-size: clamp(13px, 7vw, 32px); /* ←  28px */
    font-weight: 500;
    letter-spacing: 1.68px;
}

.menu__mainTxt{
    font-size: clamp(10px, 3vw, 20px);  /* ← 13px */
    font-weight: 500;
    line-height: 1.9;
}

.menu__mainPrice{
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
}

.menu__mainPriceNumber{
    font-size: 1.8rem;
    font-weight: 500;
}

.menu__mainPriceTax{
    font-size: 1.8rem;
    font-weight: 500;
}

.menu__subList{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.menu__subItem{
    margin: 0 auto;
    text-align: center;
}

.menu__subItemImg{
    max-width: 300px;
}

.menu__txtgroup{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu__subItemTittle{
    font-size: 1.6rem;
    line-height: 15px;
}

.menu__subItemTxt{
    font-size: 1.3rem;
}

.menu__subItemPrice{
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
}

.menu__subItemPriceNumber{
    font-size: 1.3rem;
}

.menu__otherList{
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: center;
    max-width: 315px;
    margin: 60px auto 0;
}

.menu__otherItem{
    position: relative;
    writing-mode: vertical-rl;
    padding: 0 1.3rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--primary-gray);
}

.menu__otherItem:last-of-type{
    border-left: 1px solid var(--primary-gray);
}

/* monja pc */

@media screen and (min-width: 769px){
    .section__section--monja{
        padding: 130px 7% 0;
    }

    .menu__tittleJp{
        font-size: 2.8rem;
    }

    .menu__tittleEn{
        font-size: 1.6rem;
    }

    .menu__main{
        margin-top: 100px;
    }

    .menu__subList{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 100px;
        text-align: center;
    }

    .menu__subItemImg{
        width: 100%;
    }

    .menu__subItemTittle{
        margin-top: 30px;
        font-size: 2.6rem;
    }

    .menu__subItemTxt{
        margin-top: 20px;
        font-size: 1.8rem;
    }

    .menu__subItemPrice{
        margin-top: 10px;
    }

    .menu__subItemPriceNumber{
        font-size: 2rem;
    }

    .menu__subItemPriceTax{
        font-size: 1.6rem;
    }

    .menu__otherList{
        max-width: 940px;
        margin: 160px auto 0;
    }

    .menu__otherItem{
        padding: 0 3.5rem;
        font-size: 2rem;
    }


}/* pc 769px */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
okonomiyaki
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.section__section--okonomiyaki{
    padding: 90px 6% 0;
}

/* okonomiyaki pc */
@media screen and (min-width: 769px){
    .section__section--okonomiyaki{
        padding: 200px 7% 0;
    }

    .menu__subList--okonomiyaki{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 100px;
        text-align: center;
    }
}/* pc 769px */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
teppanyaki
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.section__section--teppanyaki{
    padding: 90px 6% 0;
}

/* teppanyaki pc */
@media screen and (min-width: 769px){
    .section__section--teppanyaki{
        padding: 200px 7% 0;
    }
}/* pc 769px */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
otsumami
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.section__section--otsumami{
    padding: 90px 6% 0;
}

/* otsumami pc */
@media screen and (min-width: 769px){
    .section__section--otsumami{
        padding: 200px 7% 0;
    }
}/* pc 769px */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
onomimono
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.section__section--onomimono{
    padding: 90px 6% 0;
}

/* onomimono pc */
@media screen and (min-width: 769px){
    .section__section--onomimono{
        padding: 200px 7% 0;
    }
}/* pc 769px */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.footer{
    margin-top: 60px;
}

.footer__imgPc{
    display: none;
}

/* footer pc */

@media screen and (min-width: 769px) {
    .footer__imgPc{
        display: block;
    }

    .footer__imgSp{
        display: none;
    }

    .footer{
        margin-top: 180px;
    }
}


