/* デジタルブック用CSS */
.book {
    display: grid;
    margin: 0 auto;
    grid-template-columns: 50px auto 50px;
    padding: 0 2%;
}
.button_previous{
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}
.button_next{
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}
.magazine{
    z-index: 10;
}
.arrow {
    display: flex;
}
.arrow:hover {
    background-color: rgba(132, 132, 132, 0.5);
    color: white;
}
.arrow_img {
    width: 50px;
    height: 50px;
}
/* .page_ページ枚数 */
.page_1 {
    width: 100%;
    aspect-ratio: 7/5;
}
.page_2 {
    width: 100%;
    aspect-ratio: 11/4;
}
.page_3 {
    width: 100%;
    aspect-ratio: 33/8;
}
.page_4 {
    width: 100%;
    aspect-ratio: 11/2;
}
.page_5 {
    width: 100%;
    aspect-ratio: 48/7;
}
.menues{
    
    margin: 2%;
}
.menu {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.menu_list{
    /* width: 80%; */
    width: 95%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 20px 0 20px;
    position: relative;
}
.top_shelf{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* grid-template-columns: auto auto auto; */
    column-gap: 10%;
    column-gap: min(10vw, 50px);
    margin: 1% 0;
    justify-content: center;
    row-gap: 10px;
    width: 100%;
}
.top_shelf_auto {
  display: flex;
  column-gap: 5%;
  margin-bottom: 2%;
  justify-content: center;
}
/* 期間限定 2025.01.11~02.28 dinner */
.bottom_shelf_season{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 16% 47% 38%;
    column-gap: 10%;
    justify-content: center;
}
.bottom_shelf{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 26% 75%;
    column-gap: 10%;
    justify-content: center;
}
.bottom_shelf_auto {
    align-items: flex-end;
    display: flex;
    column-gap: 5%;
    justify-content: center;
}
.menu_list .menu_shelf{
    width: auto;
    font-size: 20px;
}
.menu a{
    color: #8b4513;
    text-decoration: underline;
    white-space: nowrap;
}
.d-none{
    display: none;
}

.link-overlay{
    position: absolute;
    top: 8.5%; /* 調整してください */
    right: 5%; /* 調整してください */
    width: 200px; /* 調整してください */
    height: 50px; /* 調整してください */
    background-color: rgba(0, 0, 0, 0); /* 透明 */
    cursor: pointer;
    z-index: 100;
}

/* 文字フォントの設定 */
* {
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
@media only screen and (max-width: 767px){
    .book{
        grid-template-columns: 25px auto 25px;
        margin: auto;
    }
    .arrow_img{
        width: 25px;
        height: 25px;
    }
    /* .menu05 .page_1{
        aspect-ratio: 7/5;
    } */
     /* ページめくりの角のスタイルを隠す */

    /* .menu05 { */
        /* pointer-events: none; 画像上のクリックやドラッグを無効にする */
        /* z-index: -1; 画像をページの後ろに配置する */
    /* } */
    .page_1{
        aspect-ratio: 7/10;
    }
    .page_2{
        aspect-ratio: 11/8;
    }
    .page_3{
        aspect-ratio: 33/16;
    }
    .page_4{
        aspect-ratio: 11/4;
    }
    .page_5{
        aspect-ratio: 24/7;
    }
    .menu_list .menu_shelf{
        font-size: 18px;
    }

}
@media only screen and (max-width: 690px){
    .menu_list .menu_shelf{
        font-size: 16px;
    }
}
@media only screen and (min-width: 611px){
    #canvas .menues .menu .for_sp{
        display: none;
    }
}
@media only screen and (max-width: 610px){
    #canvas .menues .menu .for_pc{
        display: none;
    }
    .menu_list{
        width:80%;
        min-width: 261px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        line-height: 32px;
    }
}