@charset "UTF-8";

/*共通部分*/

html{
    font-size: 100%;/*ユーザーの設定した文字サイズを反映*/
}

body{
    font-family:"Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
    font-style: normal;
    background-color: #35200A;
    color: #fff;
}



.rogo-zentai{
    display: flex;
    padding: 2rem;
    margin-left: 0;
    margin-right: 0;
}
.rogo-gazou{
    max-width: 60px;
    max-height: 50px;
}
.rogo-moji{
    font-family:"Zen Tokyo Zoo";
    font-weight: normal;
    font-size: 3rem;
    padding-left: 1.5rem;
}

.hbgmenu-san1,.hbgmenu-san3{
    width: 2.5rem;
    height: 2px;
    background-color: #35200A;
    transition: transform 0.1s ease;
}
.hbgmenu-san-ni{
    width: 2.5rem;
    height: 2px;
    margin: 5px 0;
    background-color: #35200A;
    /* transition: opacity 0.3s ease; */
}
.hbgmenu{
    position: fixed;/*画面の特定の位置に固定される*/
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    z-index: 1000;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center; /* 上下中央揃え */
    align-items: center;     /* 左右中央揃え */

    cursor: pointer;
}
/* メニュー（最初は非表示） */
.navmenu{
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease; /*0.3秒かけてmenuだしてやる*/
    z-index: 999;
}
.totonoe-{
    list-style: none;
    padding-left: 0; /* 必要に応じて余白も消す */
    font-family:"Zen Tokyo Zoo";
    font-size:2rem;
    display: flex;
    flex-direction: column; /* これで縦並び */
    justify-content: space-around;
    /* align-items: center; */
    height: 100%;
    width: 100%;
    padding: 10rem 5rem;
}
.totonoe- button{
    text-decoration: none;
    color: #35200A;
    font-weight: normal;
}
.totonoe- button:hover{
    color: #D42D2D;
}
.menu-toggle{
    display: none;/* チェックボックス非表示 */
}

  
  /* チェックされたらメニュー表示 */
.menu-toggle:checked ~ .navmenu {
    transform: translateX(0);
}
.menu-toggle:checked ~ .yazirusi {
    display: none;
}/*navmenu開いたらyazirusiも消える*//*はずなのに動かない*/


/* 真ん中の線を消す */
.menu-toggle:checked + .hbgmenu .hbgmenu-san-ni{
    opacity: 0;
}
  /* 上の線を30度回転させて左上に移動 */
.menu-toggle:checked + .hbgmenu .hbgmenu-san1{
    transform: translateY(7px) rotate(30deg);
}
  /* 下の線を-30度回転させて右下に移動 */
.menu-toggle:checked + .hbgmenu .hbgmenu-san3{
    transform: translateY(-7px) rotate(-30deg);
}

.yazirusi1{
    width: 1.5rem;
    height: 2px;
    margin-top: 2.5rem;
    margin-right: -2px;
    background-color: #35200A;
    transform: rotate(-30deg);
}
.yazirusi2{
    width: 1.5rem;
    height: 2px;
    margin-top: 2.5rem;
    margin-left: -2px;
    background-color: #35200A;
    transform: rotate(30deg);
}
.yazirusi{
    position: fixed;/*画面の特定の位置に固定される*/
    z-index: 998;
    top: 1rem;
    right: 7rem;
    width: 5rem;
    height: 5rem;
    background: #fff;

    display: flex;
    justify-content: center; /* 上下中央揃え */   
}





h1{
    padding: 15rem 1rem;
    font-family:"Zen Tokyo Zoo";
    font-weight: normal;
    font-size:2rem;
    text-align: center;
}

/*top*/
.top{
    display: flex;
    margin-bottom: 10rem;
    width: 100%;  /* 親要素が幅100%を基準に */
    box-sizing: border-box;  /* paddingがあっても100%内に収まるように */
}
.top{
    width: 100%;
}
.top-hidari{
    width: 50%;
}
.top-migi{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.hasen1{
    border-top: 2px dashed #fff;  /* 破線 */
    width: 30%;
    margin-bottom: 1rem;
}

.maingazou1{
    width: 100%;
    padding-right: 5rem;
    /*display: block;
    width: 100%; /* 画像が親要素の幅に合わせて縮小 */
    /*height: auto;/* アスペクト比を維持 */
}
.maingazou2{
    width: 100%;
    display: block;/*<img>はインライン要素で、デフォルトでベースラインに揃おうとするからblockにしよ*/
    margin-top: -10rem;
}

.hasen2{
    border-top: 2px dashed #fff;  /* 破線 */
    width: 70%;
    margin-top: 1rem;
    margin-left: auto;
}

.setsumei{
    display: block;
    padding-top: 2rem;
}


#menu{
    background-color: #FFEBD7;
    color: #35200A;
}

#square1{
    width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid #35200A; /* 太さ・実線・色 */
    margin-right: 0.5rem;
}
#square2{
    width: 10px;
    height: 10px;
    background: #D42D2D;
    margin-right: 0.5rem;
}
#square3{
    width: 10px;
    height: 10px;
    background: #35200A;
    margin-right: 0.5rem;
}
#square{
    width: 10px;
    height: 10px;
    background: #fff;
    margin-right: 0.5rem;
}
.okonomi{
    padding-top: 1rem;
}

.option1{
    display: flex;
    justify-content: center;
    margin-bottom: 10rem;
}
.option2{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10rem;
}
.fulu{
    display: flex;
    flex-direction: column;

    gap: 5px;
    margin-top: 2.5rem;

}

.menu-main{
    max-width: 80%;
    margin: 0 auto;
}


.ichi-bentou1{
    display: flex;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.ichi-bentou2{
    display: flex;
    justify-content: flex-end;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.siro-haikei{
    display: flex;
    width: 18rem;
    height: 12rem;
    background: #fff;
    /*clip-path: polygon(0 0, 80% 0, 100%  100%, 0 100%); /* 台形に切り抜く！ */
}






.hasen3, .hasen4 {
    width: 0;
    border-style: dashed;
    border-color: #35200A;
    border-width: 1.5px 0 0 0; /* 上の破線だけ表示（例） */
    height: 0; /* 高さは基本0でOK */
    animation: none;
}
.hasen3.animate {
    animation: dashGrowLeftToRight 1s forwards;
    transform-origin: left;
    border-bottom: 1.5px dashed #35200A;
    margin-top: -9rem;
    margin-bottom: 9rem;
    height: 0;
}
.hasen4.animate {
    animation: dashGrowRightToLeft 1s forwards;
    transform-origin: right;
    border-top: 2px dashed #35200A;
    margin-top: -10rem;
    margin-bottom: 10rem;
    margin-left: auto;
    height: 0;
}


@keyframes dashGrowLeftToRight {
    from { width: 0; }
    to { width: 15rem; }
}
@keyframes dashGrowRightToLeft {
    from { width: 0; }
    to { width: 15rem; }
}







.bentou-setsumei{
    white-space: nowrap;/*文字折り返したくない*/
    text-align: left;
}
.bentou-setsumei div{
    margin-top: 2rem;
} 
.option-sentaku{
    display: flex;
    margin-left: 0.5rem;
}
.bentou-gazou{
    transform-origin: top left; /* 拡大の起点を左上にする*/
    display: block;             /* 行内要素の余白防止 */
    margin-top: -1rem;
    margin-left: -12rem;
    position: relative;
    z-index: 995;
}

.siro-haikei-mi{
    display: flex;
    width: 30rem;
    height: 12rem;
    background: #fff;
    /*clip-path: polygon(0 0, 100% 0, 100%  100%, 20% 100%); /* 台形に切り抜く！ */
    margin-left: -20rem;
}
.bentou-setsumei-mi{
    white-space: nowrap;/*文字折り返したくない*/
    margin-left: auto;/*親要素がflexの時効く*/
}
.bentou-setsumei-mi div{
    margin-top: 2rem;
    margin-right: 1rem;
    display: flex;
    justify-content: flex-end;
} 
.option-sentaku-mi{
    display: flex;
    justify-content: flex-end;/*親要素がflexじゃないので単体で右に行ってもらった*/
}
.bentou-gazou-mi{
    transform-origin: top left; /* 拡大の起点を左上にする*/
    display: block;             /* 行内要素の余白防止 */
    margin-top: -1rem;
    position: relative;
    z-index: 995;
}


.menu-list{
    display: flex;
    justify-content: center;

    text-decoration: none;
    padding-bottom: 10rem;
}
.menu-list button{
    background-color: #fff;
    padding: 1rem 5rem;
    border-radius: 3rem;
}


#schedule{
    padding-bottom: 10rem;
}
.sche-setumei{
    display: flex;
    justify-content: space-around;
    /*justify-content: center;   /* 横中央 */
    align-items: center;       /* 縦中央*/
}
.hasen5{
    border-top: 2px dashed #fff;  /* 破線 */
    width: 20%;
    margin-top: -15rem;
    margin-bottom: 15rem;

}
.yasumi td{
    padding-bottom: 1rem;/*基本tableタグにはmarginが効かない*/
}
.square-a1{
    width: 30px;
    height: 30px;
    background: #D42D2D;
    margin-right: 1rem;
}
.square-a2{
    width: 30px;
    height: 30px;
    background: #FFEBD7;
    margin-right: 1rem;
}

/*カレンダー*/
.calendar-zentai{
    text-align: center;
}
.calendar-zentai div{
    text-align: center;
    margin-bottom: 3rem;
}
.calendar{
    border-top: 2px solid #fff;/*実線*/
    margin: 0 auto 5rem; 
}
.calendar td{
    padding: 0.5rem 0.8rem;/*だから、基本tableタグにはmarginが効かないんだよー!!!!!!*/
}
.calendar-zentai table{
    border-spacing: 3rem 1rem; /*thとthの間に余白を追加 */
}  
.week th{
    font-size: 10px;
    padding: 1rem 0;
}

.syuku,
.calendar th:first-child,
.day *:first-child{/*最初の子要素(:first-child) すべて(=*)*/
    color: #D42D2D;
}
.teikyu-{
    background-color: #D42D2D !important;
    color: #fff !important;/*!importantは.dayに負けないようにするfirst-childが強いんよ*/
}
.tansyuku{
    background-color: #FFEBD7;
    color: #35200A;
}

.calendar td:empty {/* 中身が空のtdは背景色なし*/
    background-color: transparent !important;
    color: inherit !important;
}




#store-information{
    background-color: #FFEBD7;
    color: #35200A;
    padding-bottom: 20rem;
}
.tenpojoho{
    display: flex;
    align-items: center;/*縦方向の中央ぞろえ*/
    height: 400px; /*高さがないと効果が出ないので注意*/
    justify-content: center;
}
.map{
    width: 50%;
    height: 15rem;
    padding-left: 5rem;
}
.hasen6{
    border-top: 2px dashed #35200A;  /* 破線 */
    width: 30%;
    margin-top: -4rem;
}
.tenpojoho-moji{
    padding: 5rem 5rem 5rem 5rem;
}




.rogo-zentai-sita{
    display: flex;
    padding-top: 5rem;
    justify-content: center;
}
.copyright{
    padding-bottom: 5rem;
    text-align: center;
    font-weight: normal;
}


/* @media screen and (max-width: 1250px) {

    .option1{
        margin-left: auto;
        margin-right: 20%;
        margin-bottom: 5rem;
    }

} */
@media screen and (max-width: 800px) {

    html{
        font-size: 80%;
    }

    .top{
        display: block;
    }
    .top-hidari{
        width: 500px; 
    }
    .top-migi{
        width: 500px;            
        margin-left: auto;
        margin-right: 0;
    }
    .maingazou1{
        padding-right: 5rem;
    }
    .maingazou2{
        margin-top: 1rem;
    }


    /*menu*/
    .bentou-gazou{
        transform-origin: top left; /* 拡大の起点を左上にする*/
        display: block;             /* 行内要素の余白防止 */
        width: 21rem; 
        height: 15rem;
        margin-top: -1rem;
        margin-left: -12rem;
        position: relative;
        z-index: 995;
    }
    
    .bentou-gazou-mi{
        transform-origin: top left; /* 拡大の起点を左上にする*/
        display: block;             /* 行内要素の余白防止 */
        width: 21rem; 
        height: 15rem;
        margin-top: -1rem;
        position: relative;
        z-index: 995;
    }
    .hasen3{
        border-bottom: 2px dashed #35200A;  /* 破線 */
        width: 15rem;
        margin-top: -1rem;/*画期的かもしれない*/
        margin-bottom:  1rem;/*下要素に影響でないように引いた分足す！！*/
        /* margin-left: -2rem; */
        /* margin-right: 25rem; */
    }
    .hasen4{
        border-top: 2px dashed #35200A;  /* 破線 */
        width: 15rem;
        margin-top: -1rem;/*画期的かもしれない*/
        margin-bottom:1em;/*下要素に影響でないように引いた分足す！！*/
        margin-left: auto;
        /* margin-right: -2rem; */
    }
    .hasen3.animate {
        animation: dashGrowLeftToRight 1s forwards;
        transform-origin: left;
        border-bottom: 1.5px dashed #35200A;
        margin-top: -6rem;
        margin-bottom: 6rem;
        height: 0;
    }
    .hasen4.animate {
        animation: dashGrowRightToLeft 1s forwards;
        transform-origin: right;
        border-top: 2px dashed #35200A;
        margin-top: -6rem;
        margin-bottom: 6rem;
        margin-left: auto;
        height: 0;
    }


    .siro-haikei{
        display: flex;
        width: 22rem;
        height: 12rem;
        background: #fff;
        /*clip-path: polygon(0 0, 80% 0, 100%  100%, 0 100%); /* 台形に切り抜く！ */
    }
    .siro-haikei-mi{
        display: flex;
        width: 30rem;
        height: 12rem;
        background: #fff;
        /*clip-path: polygon(0 0, 100% 0, 100%  100%, 20% 100%); /* 台形に切り抜く！ */
        margin-left: -20rem;
    }

    /*karennda-*/
    .square-a1{
        width: 20px;
        height: 20px;
        background: #D42D2D;
        margin-right: 0.5rem;
    }
    .square-a2{
        width: 20px;
        height: 20px;
        background: #FFEBD7;
        margin-right: 0.5rem;
    }


    .calendar-zentai div{
        text-align: center;
        margin-bottom: 3rem;
    }
    .calendar{
        border-top: 2px solid #fff;/*実線*/
        margin: 0 auto 5rem; 
    }
    .calendar td{
        padding: 0.2rem 0.5rem;/*だから、基本tableタグにはmarginが効かないんだよー!!!!!!*/
    }
    .calendar-zentai table{
        border-spacing: 1rem 0.5rem; /*thとthの間に余白を追加 */
    }  
    .week th{
        font-size: 10px;
        padding: 1rem 0;
    }


    /*chizu*/
    .tenpojoho{
        flex-direction: column;
        align-items: center;/*縦方向の中央ぞろえ*/
        height: 500px; /*高さがないと効果が出ないので注意*/  
    }
    .map{
        width: 70%;
        height: 20rem;
        padding-left: 0;
    }
    .tenpojoho-moji{
        padding: 5rem 0 0 0;
    }
    .hasen6{
        border-top: 2px dashed #35200A;  /* 破線 */
        width: 30%;
        margin-top: -15rem;
    }
    

    @media screen and (max-width: 600px) {

    .navmenu{
        width: 100%;
        /* background: #fff; *//*これだと透過出来ない*/
        background: rgba(255, 255, 255, 0.8); /* 白＋50%透過 */
    }


    /*menu*/
    .siro-haikei{
        display: flex;
        width: 18rem;
        height: 8rem;
        clip-path: polygon(0 0, 80% 0, 100%  100%, 0 100%);
        background: #fff;
    }
    .siro-haikei-mi{
        display: flex;
        width: 28rem;
        height: 8rem;
        clip-path: polygon(40% 0, 100% 0, 100%  100%, 60% 100%);
        background: #fff;
        margin-left: -20rem;
    }
    .hasen3{
        border-bottom: 2px dashed #35200A;  /* 破線 */
        width: 15rem;
        margin-top: -5.5rem;/*画期的かもしれない*/
        margin-bottom:  5.5rem;/*下要素に影響でないように引いた分足す！！*/
    }
    .hasen4{
        border-top: 2px dashed #35200A;  /* 破線 */
        width: 14rem;
        margin-top: -5.5rem;/*画期的かもしれない*/
        margin-bottom:5.5em;/*下要素に影響でないように引いた分足す！！*/
        margin-left: auto;
    }
    .hasen3.animate {
    animation: dashGrowLeftToRight 1s forwards;
    transform-origin: left;
    border-bottom: 1.5px dashed #35200A;
    margin-top: -5.5rem;
    margin-bottom: 5.5rem;
    height: 0;
    }
    .hasen4.animate {
    animation: dashGrowRightToLeft 1s forwards;
    transform-origin: right;
    border-top: 2px dashed #35200A;
    margin-top: -5.5rem;
    margin-bottom: 5.5rem;
    margin-left: auto;
    height: 0;
    }

    .bentou-setsumei div{
        margin-top: 1rem;
    } 
    .bentou-setsumei-mi div{
        margin-top: 1rem;
    } 
    .bentou-gazou{
        transform-origin: top left; /* 拡大の起点を左上にする*/
        display: block;             /* 行内要素の余白防止 */
        width: 14rem; 
        height: 10rem;
        margin-top: -1rem;
        margin-left: -12rem;
        position: relative;
        z-index: 995;
    }
    .bentou-gazou-mi{
        transform-origin: top left; /* 拡大の起点を左上にする*/
        display: block;             /* 行内要素の余白防止 */
        width: 14rem; 
        height: 10rem;
        margin-top: -1rem;
        position: relative;
        z-index: 995;
    }


    .top-hidari{
        width: 300px; 
    }
    .top-migi{
        width: 300px;            
        margin-left: auto;
        margin-right: 0;
    }
    }

}






/*main-list*/
.menu-main0{
    max-width: 80%;
    margin: 0rem auto;
    padding: 10rem 0;
}
.ichi-bentou11{
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.option00{
    display: flex;
    justify-content: center;
    gap: 15vw;
}
.option01{
    display: flex;
    justify-content: center;
}
.option02{
    display: flex;
    align-items: center;
    justify-content: center;
}
.fulu{
    display: flex;
    flex-direction: column;

    gap: 5px;
    margin-top: 2.5rem;
}

.bentou-gazou0{
    transform-origin: top left; /* 拡大の起点を左上にする*/
    display: block;             /* 行内要素の余白防止 */
    margin-top: -1rem;
    margin-left: -12rem;
    position: relative;
    z-index: 995;
}
.bentou-gazou-mi0{
    transform-origin: top left; /* 拡大の起点を左上にする*/
    display: block;             /* 行内要素の余白防止 */
    margin-top: -1rem;
    position: relative;
    z-index: 995;
}

.siro-haikei0{
    display: flex;
    width: 18rem;
    height: 12rem;
    background: #fff;
    /*clip-path: polygon(0 0, 80% 0, 100%  100%, 0 100%); /* 台形に切り抜く！ */
}
.siro-haikei-mi0{
    display: flex;
    width: 30rem;
    height: 12rem;
    background: #fff;
    /*clip-path: polygon(0 0, 100% 0, 100%  100%, 20% 100%); /* 台形に切り抜く！ */
    margin-left: -20rem;
}


@media screen and (max-width: 1280px) {

    .bentou-gazou0{
        transform-origin: top left; /* 拡大の起点を左上にする*/
        display: block;             /* 行内要素の余白防止 */
        width: 15rem; 
        height: auto;
        margin-top: 1rem;
        margin-left: -12rem;
        position: relative;
        z-index: 995;
    }
    .bentou-gazou-mi0{
        transform-origin: top left; /* 拡大の起点を左上にする*/
        display: block;             /* 行内要素の余白防止 */
        width: 15rem; 
        height: auto;
        margin-top: 1rem;
        position: relative;
        z-index: 995;
    }
    .siro-haikei0{
        display: flex;
        width: 19rem;
        height: 9rem;
        background: #fff;
        /*clip-path: polygon(0 0, 80% 0, 100%  100%, 0 100%); /* 台形に切り抜く！ */
    }
    .siro-haikei-mi0{
        display: flex;
        width: 27rem;
        height: 9rem;
        background: #fff;
        /*clip-path: polygon(0 0, 100% 0, 100%  100%, 20% 100%); /* 台形に切り抜く！ */
        margin-left: -20rem;
    }

    @media screen and (max-width: 600px) {
        .option00{
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 15vw;
        }
        .bentou-gazou0{
            transform-origin: top left; /* 拡大の起点を左上にする*/
            display: block;             /* 行内要素の余白防止 */
            width: 12rem; 
            height: auto;
            margin-top: 2rem;
            margin-left: -12rem;
            position: relative;
            z-index: 995;
        }
        .bentou-gazou-mi0{
            transform-origin: top left; /* 拡大の起点を左上にする*/
            display: block;             /* 行内要素の余白防止 */
            width: 12rem; 
            height: auto;
            margin-top: 2rem;
            position: relative;
            z-index: 995;
        }
        @media screen and (max-width: 500px) {
            .bentou-gazou0{
                transform-origin: top left; /* 拡大の起点を左上にする*/
                display: block;             /* 行内要素の余白防止 */
                width: 9rem; 
                height: auto;
                margin-top: 2rem;
                margin-left: -12rem;
                position: relative;
                z-index: 995;
            }
            .bentou-gazou-mi0{
                transform-origin: top left; /* 拡大の起点を左上にする*/
                display: block;             /* 行内要素の余白防止 */
                width: 9rem; 
                height: auto;
                margin-top: 2rem;
                position: relative;
                z-index: 995;
            }
        }
    }
}