@charset "utf-8";

@font-face {
    font-family: "tamanegi";
    src: url("../font/tamanegi.ttf");
}

/* style.css */

body {

    /*書体を追加したい→OK*/
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
    /*  outline: 1px solid red; /*横スクロールチェック用*/

    background-image: url(../images/bgall.jpeg);
    /* background-size: cover;*/
    background-position: center;
    /* background-repeat: no-repeat;*/
    /*  background-attachment: fixed;*/
    overflow-x: hidden;

}

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

/*タイトルの下の4色のアンダーライン*/
h1 {
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
    padding: 1rem 0;
    margin-bottom: 0.2rem;
    background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
    background-repeat: no-repeat;
    background-size: 120% 0.3rem;
    /*120% 0.3rem少しはみ出る*/
    background-position: bottom;
    color: #353535;
    font-weight: bold;
    font-size: 26px;

}

h2 {
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;

    margin-bottom: 0.2rem;
    background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
    background-repeat: no-repeat;
    background-size: 120% 0.3rem;
    /*120% 0.3rem少しはみ出る*/
    background-position: bottom;
    color: #353535;
    font-weight: bold;
    font-size: 26px;

}

.label {
    color: red;
}


h4 {
    display: inline-block;
    margin: 0px 0px 10px 0px;
    padding: 0px 0 0px 0px;

    margin-bottom: 0.2rem;
    background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
    background-repeat: no-repeat;
    background-size: 100% 0.3rem;
    background-position: bottom;
    color: #353535;
    font-weight: bold;
    font-size: 26px;
}


h5 {
    display: inline-block;
    padding: 5px 0;
    margin: 0 0;

    background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
    background-repeat: no-repeat;
    background-size: 120% 0.3rem;
    background-position: bottom;
    color: #353535;
    font-weight: bold;
    font-size: 24px;
}

.h2-wrapper {
    text-align: center;
    /* h2の中央寄せに必要 */
}


header {
    display: flex;
    justify-content: center;
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

/*山浦さんのロゴを一旦ポジションフィックス */
.logo {
    position: fixed;
    top: 30px;
    left: 50px;
    max-width: 300px;
    height: auto;
    margin: 0;
    z-index: 1000;
    font-family: "tamanegi";
    writing-mode: vertical-lr;
    font-size: 40px;
    letter-spacing: .3em;
}

/*flexして整えた*/
.main-nav ul {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*一番最初の店内写真の下のスペース*/

/*スライドショー*/
.hero {
    position: relative;
    width: 100%;
    height: 700px;
    /*重要でした*/
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.slide-image.is-visible {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: row;
    z-index: 2;
    gap: 2rem;
    height: auto;

}

/*自然の恵みに匠を込めて*/
.vertical-text {
    display: flex;
    writing-mode: vertical-lr;
    color: white;
    font-size: 3.5rem;
    margin-left: 30px;
    line-height: 1.7;


}

/*アナゴ皿の写真を*/
.concept-image {
    width: 90%;
    height: auto;
    margin-top: 20px;
}

/*アナゴ皿とコンセプトをflex*/
.concept-content {
    display: flex;

}

/*想いとピンクと文章の箱*/
.concept-text {
    margin: 20px 10px 0 0;
    padding: 20px 10px 0 0;
    ;
    max-width: 100%;
    text-align: center;
    width: 100%;
}

h1 {
    font-size: 5rem;
    margin-right: 50px;
    padding-bottom: 2px;
}

.wrapper {
    text-align: center;
}

/* 想い　*/
.h1-wrapper {
    font-size: 3.5rem;
    margin: 0;
    padding: 0;
}

/* concept*/
.subtitle {
    font-size: 1.3rem;
    margin: 0 0;
    margin-right: 50px;

    /* letter-spacing: 0.05em;*/
    /*conceptの上の線*/
}

/*特別な日に*/
p.message {
    font-size: 2rem;
    margin-right: 50px;
}

/*江戸前寿司の*/
.concept-description {
    text-align: center;
    /* 全体を中央寄せ */
}

.concept-description p {
    margin-top: 20px 20px 0 20px;

    padding: 5px 17px;
    text-align: left;
    line-height: 2.0;
    display: inline-block;
    /* 中央寄せの中で幅を持つ */
}




/*梅の花とお名前*/
.owner-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
    padding: 10px;
    gap: 5px;
}

/*梅の花*/
.owner-signature img {
    width: 50px;
    height: auto;
}

/*お名前*/
.owner-signature p {
    font-size: 20px;
}

/*包丁の画像*/
.menu-image {
    width: 100%;
    height: auto;
}

.menu-intro {
    position: relative;
}

.menu-feature {
    position: relative;
    display: flex;
}

/*とろと小肌の箱*/
.menu-items {
    position: absolute;
    display: block;
    margin-top: 50px;
}

/*和柄の画像*/
.glass {
    width: 65%;
    height: auto;
    display: block;
}

/*とろと小肌の写真*/
.menu-items img {
    width: 100%;
    margin: 20px 0 30px 0;

}

/*素材は築地直送*/
.vertical-note {
    writing-mode: vertical-lr;
    position: absolute;
    color: white;
    font-size: 3.7rem;
    top: 20%;
    left: 75%;
    gap: 1px;
    line-height: 1.7;
    /*実験　　築地直送をふんわり*/
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/*実験　　築地直送をふんわり*/
.vertical-note.show {
    opacity: 1;
    transform: translateY(0);
}

/*銀座や築地で就業した*/
.vertical-note_1 {
    writing-mode: vertical-lr;
    position: absolute;
    color: white;
    font-size: 3.7rem;
    top: 20%;
    left: 75%;
    gap: 1px;
    line-height: 1.7;
    /*実験　　築地直送をふんわり*/
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/*実験　　築地直送をふんわり*/
.vertical-note_1.show {
    opacity: 1;
    transform: translateY(0);
}

.menu-title {
    position: relative;
}



.menu-title p {
    text-align: center;
    margin: 30px 30px;
    font-size: 12px;
}

.menu-list {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    margin-top: 60px;
}

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

/*akajiのコントロール*/
.menu-list .akaji {
    text-align: center;


}

/*befor after↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
h3.akaji {
    position: relative;
    display: block;
    font-size: 18px;
    color: #8b1b18;
    font-weight: bold;
    width: 100%;
    margin: 0 auto;
    left: -25%;

}

h3.akaji::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-left: 10px;
    /* 文字と線の間 */
    width: 50%;
    /* 線の長さ */
    height: 1px;
    background-color: #8b1b18;
    transform: translateY(-50%);
}

/*befor after↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/

.sake-description {
    display: flex;
    justify-content: left;

}

.vertical-text_1 {
    writing-mode: vertical-lr;
    color: black;
    font-size: 2.7rem;
    line-height: 1.7;
    margin-top: 30px;
    padding-top: 30px;
    width: 25%;
    height: 800px;
    /*厳選した日本酒を・・・*/
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;

}

/*厳選した日本酒を・・・*/
.vertical-text_1.visible {
    opacity: 1;
    transform: translateY(0);
}



.sake-list {
    margin-top: 60px;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;

}

.sake-item {
    text-align: center;
}


.sake-description {
    display: flex;
}

/*その他の飲み物*/
.other-drinks {
    text-align: center;
}

.other-drinks ul {
    list-style: none;
}

/*お知らせ*/
.news-list {
    text-align: center;
}



.shinshu p {

    text-align: left;
    line-height: 2.0;
    margin: 20px 40px;
    padding: 0 20px;
    text-align: center;
}



.date {
    margin-top: 100px;
    text-align: left;
    margin-left: 250px;
}


/* ボタン全体を中央に配置 */
.drink-button-wrapper {
    text-align: center;
    margin: 20px 0 30px 0;
    padding: 20px 0 20px 0;
}

/* リンクをボタン風に装飾 */
.drink-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: #dcaea0;
    /* 和風の淡いピンクベージュ */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: '游明朝', 'Yu Mincho', serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

/* ホバー時に少し暗く＆浮き上がる */
.drink-button:hover {
    background-color: #c9988a;
    transform: translateY(-2px);
}

/*風景
.news-slide {
    width: 100%;
    height: auto;
}*/
/*風景を３枚仕立てのスライドへ実験*/
.news-slideshow {
    position: relative;
    width: 100%;
    height: 700px;
    /* 大事これで調整 */
    overflow: hidden;
}

.news-slide {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    /*contain*/
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.news-slide.active-slide {
    opacity: 1;
    z-index: 1;
}


/*新しい店内案内*/
.newstor {
    width: 100%;
    height: auto;
}

.tennai_descrption {
    position: relative;
}

/*客席と板場の*/
.vertical-text_2 {
    writing-mode: vertical-lr;
    position: absolute;
    color: white;
    font-size: 2.8rem;
    top: 15%;
    left: 60%;
    gap: 1px;
    line-height: 1.7;
    /*実験*/
    opacity: 0;
    transform: translateY(20px);
    /* 下からスライドイン */
    transition: opacity 1.2s ease-out, transform 1.5s ease-out;
}

.vertical-text_2.show {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置へ */
}

/*実験*/
.comucomu {
    text-align: center;
    line-height: 1.7;
    margin: 30px auto;
}


.features {
    text-align: center;
    margin: 40px 40px 40px 350px;
    list-style: none;
    font-size: 14px;
    color: blue;
}

.shop-name {
    text-align: center;
    margin: 40px 40px;
}


.center-list {
    list-style: none;
    text-align: center;
    margin: 10px 20px;
    padding: 10px 20px;
}

/*予約*/
.web {
    text-align: center;
    margin: 20px 0px;
    padding: 20px 0px;
}

.wa-button {

    display: inline-block;
    padding: 12px 24px;
    background-color: #8b0000;
    /* 深紅（えんじ） */
    color: #fff;
    font-size: 1.1em;
    font-family: 'Noto Serif JP', serif;
    /* 和風フォントに近い */
    border: 2px solid #fff5e6;
    /* 和紙風の白枠 */
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s;
}

.wa-button:hover {
    background-color: #a40000;
    /* ホバーで少し明るいえんじ */
    transform: scale(1.05);
    /* ホバーで拡大 */
}

.center-wrapper {
    text-align: center;
}

.phon {
    text-align: center;
    margin: 20px 0px;
    padding: 20px 0px;
}

.transport li {
    margin-top: 30px;
    text-align: center;
    line-height: 1.7;
    list-style: none;

}

.note {
    text-align: center;
    font-size: 14px;
}

.map {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* iframeを地図の中にきちんと収める */
.map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    background: #df98c1;
}

/*topに戻るボタン*/
.to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;

    /* 見た目のスタイル */
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    padding: 12px 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    opacity: 0.7;
    visibility: opacity 0.3s ease;
}

#to-top-button.visible {
    opacity: 1;
    visibility: visible;
}

.areas {
    /* display: flex;*/
    gap: 30px;
    text-align: center;
}

.area li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted #ccc;
    padding: 8px 0;
    font-size: 1rem;
    gap: 20px;
    /* ←← ここで「銘柄と金額の間」の余白を設定 */
}



.area.price {
    min-width: 80px;
    text-align: right;
}


/*その他の飲み物*/
#drink {
    background-image: url(../images/wagara.png);

    /* .wagara {
        background-image: url(assets/images/wagara.png);
        position: relative;
        width: 100%;
        height: auto;

    } */
    h4 {
        display: inline-block;
        margin: 0px 0px 10px 0px;
        padding: 0px 0 0px 0px;

        margin-bottom: 0.2rem;
        background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
        background-repeat: no-repeat;
        background-size: 95% 0.3rem;
        background-position: bottom;
        color: #353535;
        font-weight: bold;
        font-size: 26px;
    }

    /*飲み物の箱 */
    .container {
        padding: 20px 40px;
        max-width: 500px;
        margin: 10px auto 0;
        /*  position: absolute;
    right: 45%;
    top: 10%; */
    }



}

/*
a.back-button {
   
    right: 52%;
    top: 170%;
    width: 100%;
    height: auto;
}/*

/*その他の飲み物*/
/*その他のお食事*/
#food {
    background-image: url(../images/wagara.png);

    /*  .wagara {
        background-image: url(assets/images/wagara.png);
        position: relative;
        width: 100%;
        height: auto;

    } */
    h6 {
        display: inline-block;
        margin: 0px 0px 10px 0px;
        padding: 0px 0 0px 0px;

        margin-bottom: 0.2rem;
        background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
        background-repeat: no-repeat;
        background-size: 98% 0.3rem;
        background-position: bottom;
        color: #353535;
        font-weight: bold;
        font-size: 26px;
    }

    /*食べ物の箱*/
    .container_1 {
        padding: 20px 40px;
        max-width: 500px;
        margin: 0 auto;
        /*  position: absolute;
        right: 38%;
        top: 10%; */

    }



}

/*ドリンク別表*/
.back {
    text-align: center;
    display: block;

    font-weight: bold;
    color: #a40000;
    font-weight: bold;
}

/*その他のお食事*/
ul {
    list-style: none;

}

li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.back-button_1 {
    text-align: center;
    display: block;

    margin-top: 20px;
}

/* 戻るボタン */
#to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;

}

#to-top-button.show {
    display: block;

}

/*その他のお食事の左右バランス*/
.h2-wrapper_1 {
    text-align: center;

    margin-bottom: 12px;
    height: auto;
    width: 100%;
}



/*ハンバーガーメニュー作成↓↓↓↓↓↓*/
/* ハンバーガーボタンの基本スタイル */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 20px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 6px 0;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* メニュー（初期は非表示） */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 2;
    position: fixed;
    /*fixed  static*/
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding-top: 20px;
    z-index: 2;
    transition: transform 0.3s ease;


}

.nav-menu.open {
    display: flex;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;

}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

/*ハンバーガーアイコンは大画面では非表示*/
.hamburger {
    display: none;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.logo {
    flex: 1;
    z-index: 2;
}


/*↑↑ハンバーガーメニュー作成↑↑↑↑↑↑↑*/

/* ======================================================
  スマホ（幅768px以下）iphon12pro 15pro含む
================== ====================================*/
@media screen and (max-width: 768px) {


    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: none;
        box-shadow: none;

    }

    .nav-menu.active {
        display: flex;
        top: 70px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .hamburger {
        position: absolute;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2px;
        width: 200px;
        height: 500px;
        padding: 0px 0px;
        margin: 0px 0px;
        align-items: center;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .site-header {
        justify-content: space-between;
        padding: 0.8rem 1rem;
        position: relative;
        width: 100%;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;

        position: absolute;
        top: 300px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        max-width: 100px;
    }

    .hero-overlay {
        position: absolute;
        top: 8%;
        right: 10%;
        display: flex;
        flex-direction: row;
        z-index: 2;
        gap: 2rem;
        height: auto;

    }


    .thumb {
        width: 100%;
        height: auto;
        margin-left: -36px;
    }

    .thumb_1 {
        width: 100%;
        height: auto;

    }

    .hero {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 250px;
        /*重要でした*/
        overflow: hidden;
    }

    .vertical-text {

        /* position: absolute;*/
        transform: translateX(-50%);
        transform: translateY(15%);
        font-size: 1.5rem;
        color: white);

    }

    /*客席の距離*/
    .vertical-text_2 {
        font-size: 1rem;
        line-height: 1.8;
    }

    /*築地直送*/
    .vertical-note {
        font-size: 20px;
        line-height: 1.8;
    }

    /*銀座で*/
    .vertical-note_1 {
        font-size: 1rem;
        line-height: 1.8;
        padding-top: 20px;
        margin-top: 20px
    }

    .vertical-text_1 {
        font-size: 10px;
        line-height: 1.4;

    }

    .menu-list .akaji,
    .sake-list .akaji {

        text-align: left;
    }

    .owner-signature {
        flex-direction: row;
        text-align: center;
    }

    .features {
        margin-left: 0;
    }

    /*食べ物別表*/
    .back-button_1 {
        text-align: center;
        display: block;

        margin-top: 20px;
    }

    /*飲物別表*/
    .back-button {
        text-align: center;
        display: block;

        margin-top: 20px;
    }

    /*アナゴ皿の写真を*/
    .concept-image {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .concept-text {
        margin: -40px 0px 0 0;
        padding: 4px 0px 0 0;
        ;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }

    /* 想い　*/
    h1 {
        font-size: 4rem;
        margin-right: 10px;
    }


    /* 想い　*/
    .h1-wrapper {
        font-size: 3.5rem;
        margin: 0;
        padding: 0;
    }

    /* concept*/
    .subtitle {
        font-size: 1rem;
        margin-right: 10px;

        /* letter-spacing: 0.05em;*/
        /*conceptの上の線*/
    }

    /*特別な日に*/
    p.message {
        font-size: 1rem;
        margin-right: 10px;
    }

    /*赤字の線の修正：：：：：：：：：：：：：：：*/
    .menu-list {
        margin: 20px 10px 10px 10px;

        padding-bottom: 10px;

    }

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

    .menu-course p {
        font-size: 15px;
        margin-right: 10px;
    }

    /*akajiのコントロール*/
    .menu-list .akaji {
        text-align: center;
    }

    /*befor after↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
    h3.akaji {
        position: relative;
        display: block;
        font-size: 18px;
        color: #8b1b18;
        font-weight: bold;
        width: 100%;
        margin: 0 auto;
        left: -29%;

    }

    h3.akaji::after {
        content: "";
        position: absolute;
        top: 50%;
        margin-left: 10px;
        /* 文字と線の間 */
        width: 50%;
        /* 線の長さ */
        height: 1px;
        background-color: #8b1b18;
        transform: translateY(-50%);
    }

    /*befor after↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/

    .sake-description {
        display: flex;
        justify-content: left;
        width: 100%;
        height: 400px;
        margin-top: 19%;
    }

    .sake-title {
        margin: 6px 0px 20px 0;
    }

    .vertical-text_1 {
        writing-mode: vertical-lr;
        color: black;
        font-size: 1.2rem;
        line-height: 1.3;
        margin-top: 4px;
        padding-top: 19px;
        width: 25%;
        height: auto;
    }

    .umeki-image {
        width: 70px;
        height: 70px;
        display: block;
        margin-top: 50px;
        padding-top: 50px;
        padding-right: 20px;
    }

    .sake-list {
        margin-top: 50px;
        text-align: center;
        margin-bottom: 5px;
        padding-bottom: 15px;

    }

    .sake-item {
        text-align: center;
    }

    /*akajiのコントロール*/
    .sake-list .akaji {
        text-align: center;
    }

    /*赤字の線の修正：：：：：：：：：：：：：：：*/
    .date {
        margin-top: 55px;
        text-align: left;
        margin-left: 34px;
    }

    .features {

        margin: 40px 0px 20px 80px;
        list-style: none;
        color: blue;
    }

    .features p {
        font-size: 13px;
        line-height: 1;
    }

    p.boston {
        margin: -5px 20px;
    }




    /* 戻るボタン */
    #to-top-button {
        position: fixed;
        bottom: 20px;
        right: 45px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: #000;
        color: #fff;
        font-size: 20px;
        border: none;
        cursor: pointer;
        display: none;
        z-index: 1000;

    }

    #to-top-button.show {
        display: block;

    }

    h2 {
        display: inline-block;
        margin: 35px 0 0 0px;
        padding: 35px 0 0 0px;
        text-align: center;
        margin-bottom: 0.2rem;
        background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
        background-repeat: no-repeat;
        background-size: 120% 0.3rem;
        /*120% 0.3rem少しはみ出る*/
        background-position: bottom;
        color: #353535;
        font-weight: bold;
        font-size: 26px;
    }


    /* h4 {
        display: inline-block;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
        background-repeat: no-repeat;
        background-size: 23% 0.3rem;
       
    
        background-position: bottom;
        color: #353535;
        font-weight: bold;
        font-size: 26px;
        margin: 0 0 10px 10px;
        padding: 0 0;
    }*/

    h5 {
        display: inline-block;
        background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
        background-repeat: no-repeat;
        background-size: 120% 0.3rem;
        /*120% 0.3rem少しはみ出る*/
        background-position: bottom;
        color: #353535;
        font-weight: bold;
        font-size: 23px;
        padding: 10px 10px;
    }

    .tabemono {
        text-align: center;

        width: 100%;
        height: auto;
    }

    .nigiri {

        width: 100%;
    }

    .chirashi {
        margin: 0 0;
        width: 100%;
    }

    .nomimono {
        gap: 30px;
        width: 100%;
        height: auto;
    }

    .menu-title p {
        text-align: center;
        margin: 10px 0 10px 0px;
        font-size: 12px;
    }

    /*飲み物*/
    .h2-wrapper {
        text-align: center;

        width: 100%;
        height: auto;
    }

    .h2-wrapper_1 {
        text-align: center;

        margin-bottom: 12px;
        height: auto;
        width: 100%;
    }

    /*ドリンク別表*/
    .back {
        text-align: center;
        display: block;

        color: #a40000;
        font-weight: bold;
    }


    .wagara_1 {
        background-image: url(assets/images/wagara.png);
        position: relative;
        width: 100%;
        height: auto;
        background-repeat: repeat-y;
        background-position: center top;
        /* ⬅ 横中央・上から開始 */
        background-size: auto;
        min-height: 100vh;
    }

    .wagara {
        background-image: url(assets/images/wagara.png);
        position: relative;
        width: 100%;
        height: auto;
        background-repeat: repeat-y;
        background-position: center top;
        /* ⬅ 横中央・上から開始 */
        background-size: auto;
        min-height: 100vh;
    }

    /*飲み物の箱*/
    .container {
        max-width: 700px;
        margin-top: 10px;


    }

    /*食べ物の箱*/
    .container_1 {

        max-width: 700px;
        margin: 10px auto;

    }

    .aruko-ru li {

        align-items: baseline;
        border-bottom: 1px dotted #ccc;
        padding: 10px 0;
        font-size: 1rem;
        gap: 20px;

    }



    .aruko-ru .price {
        min-width: 80px;
        text-align: right;
    }

    .soft li {


        align-items: baseline;
        border-bottom: 1px dotted #ccc;
        padding: 10px 0;
        font-size: 1rem;
        gap: 20px;
        /* ← 銘柄と金額の間に余白 */
    }



    .soft .price {
        min-width: 80px;
        text-align: right;
    }

    li {
        padding: 12px 0;
        border-bottom: 1px solid #ddd;
        font-size: 16px;
    }

    /*風景を３枚仕立てのスライドへ実験*/
    .news-slideshow {

        width: 100%;
        height: 250px;
        /* 大事これで調整 */
        overflow: hidden;
    }

    .comu {
        margin: 20px 20px;
        padding: 0 20px;
        text-align: left;
    }

    .shinshu p {
        margin: 20px 14px;
        padding: 0 20px;
        text-align: left;
    }

    .concept-description p {
        padding: 0px 34px;
        margin: 20px 26px;
        text-align: left;
    }

    .transport li {
        margin: 10px 20px;
        padding: 10px 20px;
        text-align: left;

    }

    .center-list {
        list-style: none;
        text-align: center;
        margin: 10px 32px;
        padding: 10px 23px;
    }