/* 基本設定：明朝体 */
body {
    margin: 0;
    padding: 0;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #333;
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* ヘッダー・ロゴ */
.site-header { padding: 30px 0 20px; text-align: center; }
.logo img { max-width: 280px; height: auto; }

/* --- メニュー（PC版：横並び） --- */
.global-nav { border-top: 1px solid #eee; border-bottom: 1px solid #eee; background: #fff; }
.global-nav ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; }
.global-nav li a { display: block; padding: 15px 25px; text-decoration: none; color: #444; font-size: 0.95rem; transition: 0.3s; }
.global-nav li a:hover { background: #f9f9f9; color: #000; }

/* ハンバーガーボタン（PCでは隠す） */
.nav-toggle { display: none; }


/* CSSフェードスライダー */
.main-visual {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto 60px;
    overflow: hidden;
    position: relative;
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slider-fade 20s infinite;
}
.slider-img:nth-child(1) { animation-delay: 0s; }
.slider-img:nth-child(2) { animation-delay: 4s; }
.slider-img:nth-child(3) { animation-delay: 8s; }
.slider-img:nth-child(4) { animation-delay: 12s; }
.slider-img:nth-child(5) { animation-delay: 16s; }

@keyframes slider-fade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* 紹介文・予約・フッター */
.shop-intro { padding: 40px 0; }
.owner-name { margin-top: 40px; font-weight: bold; text-align: right; max-width: 800px; margin-left: auto; margin-right: auto; }
.reservation { background-color: #fdfaf5; padding: 60px 0; margin: 40px 0; }
.tel-number a { font-size: 2.5rem; color: #cc0000; text-decoration: none; font-weight: bold; }
.site-footer { background-color: #333; color: #fff; padding: 50px 0 20px; font-size: 0.85rem; }

/* --- スマホ調整（ハンバーガーメニュー化） --- */
@media screen and (max-width: 768px) {
    /* ボタンの配置 */
    .nav-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: #333; /* 和風な黒 */
        z-index: 100;
        cursor: pointer;
        border-radius: 4px;
    }
    .nav-toggle span {
        display: block;
        position: absolute;
        left: 12px;
        width: 26px;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }
    .nav-toggle span:nth-child(1) { top: 15px; }
    .nav-toggle span:nth-child(2) { top: 23px; }
    .nav-toggle span:nth-child(3) { top: 31px; }
    .nav-toggle p {
        position: absolute;
        bottom: 3px;
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 8px;
        margin: 0;
    }

    /* ボタンがクリックされた時の形（×印） */
    .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(-45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(45deg); }

    /* メニュー本体（スマホでは隠しておく） */
    .global-nav {
        position: fixed;
        top: 0;
        right: -100%; /* 右側に隠す */
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 99;
        transition: 0.4s;
        border: none;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .global-nav.open { right: 0; } /* 開いた時にスライドイン */
    .global-nav ul { flex-direction: column; }
    .global-nav li { border-bottom: 1px solid #eee; width: 100%; }
    .global-nav li a { padding: 20px; font-size: 1.1rem; text-align: left; }
}

/* 全要素の幅計算を正しくする（パディングを含める） */
*, *::before, *::after {
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    /* 1. ページ全体のはみ出しを防止 */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* 2. コンテナの幅を画面内に収める */
    .container {
        width: 100% !important;     /* 画面幅いっぱいに広げる */
        padding: 0 20px !important; /* 左右に20pxの固定余白（これ以上外に行かない） */
        margin: 0 auto !important;
        box-sizing: border-box !important; /* 余白を幅の内側に含める */
    }

    /* 3. 紹介文の修正（inline-blockを解除） */
    .shop-intro .container {
        text-align: left !important;
        display: block !important; /* はみ出しの原因となる設定を解除 */
    }

    .shop-intro p {
        margin-bottom: 1.5rem;
        word-wrap: break-word; /* 長い単語があっても強制的に改行する */
    }

    /* 4. 店主名 */
    .shop-intro .owner-name {
        text-align: right !important;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* スライダーの高さを低く調整 */
    .main-visual {
        height: 250px !important; /* 300pxから200pxに短縮。お好みで180pxなどでもOK */
        margin-bottom: 20px !important;
    }

    /* 画像の表示位置を調整（中央を基準にする） */
    .slider-img {
        object-position: center center !important;
    }
}

/* --- お品書きページ専用 --- */
.page-title {
    padding: 60px 0;
    text-align: center;
    background: #fdfaf5;
}
.page-title h1 { font-size: 2rem; margin-bottom: 10px; letter-spacing: 0.2em; }
.page-title p { color: #888; font-family: serif; font-style: italic; }

.menu-section { padding: 80px 0; }
.bg-light { background-color: #fdfaf5; }
.section-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #333;
}
.section-desc { text-align: center; margin-bottom: 50px; color: #666; font-size: 0.9rem; }

/* コース料理のグリッド */
.menu-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.menu-item { flex: 1; text-align: center; background: #fff; padding: 20px; border: 1px solid #eee; }
.menu-item img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 15px; }
.menu-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.menu-item .price { font-size: 1.5rem; color: #cc0000; font-weight: bold; }
.menu-item .price span { font-size: 0.8rem; margin-left: 5px; color: #333; }
.menu-item .details { font-size: 0.85rem; color: #666; margin-top: 10px; text-align: left; }

/* 寿司リスト（カード形式） */
.sushi-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.sushi-card { text-align: center; }
.sushi-card img { width: 100%; height: 150px; object-fit: cover; border: 1px solid #eee; }
.sushi-card p { margin-top: 10px; font-weight: bold; }
.sushi-card span { color: #cc0000; margin-left: 10px; }

/* 飲み物リスト */
.drink-grid { display: flex; gap: 40px; }
.drink-category { flex: 1; text-align: left; }
.drink-category h3 { border-bottom: 2px solid #333; padding-bottom: 5px; margin-bottom: 15px; }
.drink-category dl { display: flex; flex-wrap: wrap; }
.drink-category dt { width: 75%; border-bottom: 1px dotted #ccc; padding: 10px 0; }
.drink-category dd { width: 25%; text-align: right; border-bottom: 1px dotted #ccc; padding: 10px 0; font-weight: bold; }

/* スマホ調整 */
@media screen and (max-width: 768px) {
    .menu-grid { flex-direction: column; }
    .drink-grid { flex-direction: column; }
    .menu-section { padding: 40px 0; }
}

/* 飲み物リストの並びを横方向に整理 */
.drink-category dl {
    display: block; /* フレックスを解除して縦に並べる */
    padding: 0;
    margin: 0;
}

.drink-category div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px; /* 項目ごとの隙間 */
    border-bottom: 1px dotted #ccc; /* 下の点線 */
    padding-bottom: 5px;
}

.drink-category dt {
    width: auto;
    border: none;
    padding: 0;
    font-weight: normal;
}

.drink-category dd {
    width: auto;
    border: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
    color: #333;
}

/* 点線のリーダーを入れる場合（お好みで） */
.drink-category dt::after {
    /* 必要であれば、ここに追加の装飾が可能です */
}

/* スマホでは2カラムだと窮屈なので、1列にする */
@media screen and (max-width: 768px) {
    .drink-grid {
        display: block;
    }
    .drink-category {
        margin-bottom: 40px;
    }
}

/* --- 慶事・法事ページ専用スタイル --- */
.about-billboard {
    width: 100%;
    margin-bottom: 40px;
}
.about-billboard img {
    width: 100%;
    height: auto;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
}

.ceremony-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.ceremony-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #e0dce0;
}
.ceremony-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}
.ceremony-box h3 span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    font-weight: normal;
    letter-spacing: 0.1em;
}

/* 価格リスト（ドットリーダー線付き） */
.price-list div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}
.price-list dt { font-size: 0.95rem; }
.price-list dd { font-weight: bold; color: #cc0000; }

.caution-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* おもてなしセクション */
.service-section {
    padding: 80px 0;
}
.service-features {
    background: #f9f9f9;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
}
.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.service-features li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 15px;
    line-height: 1.6;
}
.service-features li::before {
    content: "・";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.concept-title {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 10px;
}
.concept-text {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .ceremony-grid {
        flex-direction: column;
        gap: 20px;
    }
    .service-features {
        padding: 25px;
    }
}

/* --- ご宴会ページ専用スタイル --- */

/* 飲み放題プランの強調ボックス */
.plan-highlight-box {
    background: #fff;
    border: 2px solid #cc0000;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.plan-price span {
    font-size: 3rem;
    color: #cc0000;
}
.plan-condition {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}
.plan-details {
    text-align: left;
    background: #fdfaf5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.plan-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.benefit {
    color: #cc0000;
    font-weight: bold;
    border: 1px dashed #cc0000;
    padding: 10px;
    margin-top: 15px;
}
.notice {
    font-size: 0.85rem;
    color: #888;
}

/* 送迎バスセクション */
.shuttle-info {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}
.shuttle-text { flex: 1; }
.shuttle-img { flex: 1; }
.shuttle-img img { width: 100%; border-radius: 4px; }
.sp-only-img { display: none; width: 100%; margin-top: 20px; }

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .plan-highlight-box {
        padding: 20px;
    }
    .plan-price span { font-size: 2.2rem; }
    .shuttle-info { flex-direction: column; }
    .sp-only-img { display: block; }
}

/* --- お部屋案内ページ専用 --- */
.details-sm {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

/* 広間のカード内テキストの左揃え調整 */
.menu-item .details {
    text-align: left;
    margin-top: 15px;
}

/* 会議室セクションのテキスト調整 */
.shuttle-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    display: inline-block;
}


/* --- アクセスページ専用 --- */
.map-container {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    line-height: 0;
}

.history-content {
    display: flex;
    gap: 60px;
    text-align: left;
}
.history-item { flex: 1; }
.history-item h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}
.history-item p {
    font-size: 0.95rem;
    line-height: 2;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .history-content {
        flex-direction: column;
        gap: 40px;
    }
    .map-container iframe {
        height: 300px;
    }
}



}