@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Yuji+Syuku&display=swap');

/* =========================================
   変数の定義（トンマナに基づくカラーパレット）
========================================= */
:root {
    /* メインカラー：食欲をそそる赤とオレンジ */
    --color-primary: #E60012;
    /* 鮮やかな赤 */
    --color-primary-hover: #CC0010;
    --color-accent: #FF6D00;
    /* 炭火を思わせるオレンジ */

    /* サブカラー：落ち着きと引締め */
    --color-dark: #2A1C15;
    /* 焦げ目や焼き網を思わせる濃い茶色・黒 */
    --color-text: #333333;
    /* 基本のテキスト（真っ黒は避けて読みやすく） */

    /* ベースカラー：清潔感と余白 */
    --color-bg-light: #FFFBF2;
    /* 煙の印象を和らげる淡いクリーム色 */
    --color-white: #FFFFFF;

    /* フォント設定 */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Noto Sans JP', sans-serif;
    /* 活気のある太字ゴシックを基本にする */
    --font-logo: 'Yuji Syuku', serif;
    /* ロゴ周りなどの筆文字風 */
}

/* =========================================
   リセット＆ベーススタイル
========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 共通コンテナ */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-container {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

/* =========================================
   タイポグラフィ（見出し・テキスト等）
========================================= */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    font-weight: 700;
}

/* =========================================
   共通ボタンデザイン
========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 0, 18, 0.4);
}

.btn-primary .icon {
    font-size: 1.2em;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-wrap-center {
    text-align: center;
    margin-top: 2rem;
}

/* =========================================
   ヘッダー (Header)
========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.logo span {
    color: var(--color-primary);
    font-size: 1.8rem;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-primary);
}

.d-none-sp {
    display: inline-flex;
    /* PCでは表示 */
}

/* スマホ用ハンバーガー（PCでは非表示） */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-dark);
    transition: all 0.3s ease-in-out;
}

/* =========================================
   ヒーローエリア (Hero)
========================================= */
.hero {
    height: 100vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(42, 28, 21, 0.6), rgba(42, 28, 21, 0.6)), url('assets/yaku_1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    /* ヘッダー分 */
    position: relative;
    /* 内部の透かしロゴの配置基準 */
}

/* ヒーロー画像内の透かしロゴ */
.hero-watermark-logo {
    position: absolute;
    top: 45%;
    /* ボタンや文字と被らないよう少し上へ */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    /* PCでは画面幅の35%程度（さらに小さく） */
    max-width: 450px;
    /* 最大サイズを小さく */
    opacity: 0.25;
    /* 透かし（半透明）具合を少し濃く */
    filter: brightness(0) invert(1);
    /* 黒文字のロゴを背景に映えるよう白抜き（反転）にする */
    z-index: 0;
    /* テキストの下に配置 */
    pointer-events: none;
    /* クリックを妨げないようにする */
}

.hero-content {
    color: var(--color-white);
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 1;
    /* 透かしロゴの上に配置 */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.cta-button {
    font-size: 1.3rem;
    padding: 20px 50px;
}

/* =========================================
   お知らせ (News)
========================================= */
.news-banner {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 15px 0;
}

.news-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.news-label {
    background-color: var(--color-accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

.news-text {
    font-weight: 700;
    font-size: 0.95rem;
}

/* =========================================
   こだわり (Concept)
========================================= */
.concept-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.concept-text {
    flex: 1;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.concept-btn-wrap {
    text-align: left;
    margin-top: 1.5rem;
}

.concept-image {
    flex: 1;
}

.concept-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/* =========================================
   メニュー (Menu) & ドリンク (Drink)
========================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-img-wrapper {
    overflow: hidden;
    position: relative;
}

.menu-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s;
    cursor: pointer;
}

/* ビール画像がアップになりすぎるのを防ぎ、グラス全体が見えるようにする設定 */
.drink-img {
    object-fit: contain;
    background-color: #FAFAFA;
    /* 余白ができる部分を自然に馴染ませる */
    padding: 10px;
}

.menu-card:hover .menu-img {
    transform: scale(1.05);
}

.menu-info {
    padding: 20px;
    text-align: center;
}

.menu-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.menu-price {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.menu-desc {
    font-size: 0.95rem;
    text-align: left;
    color: #555;
}

/* =========================================
   おしながき専用スタイル (Menu Page)
========================================= */
/* 新しいメニュー画像（縦並び）用コンテナ */
.menu-image-container {
    max-width: 800px;
    margin: 0 auto;
    /* 中央に配置 */
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* 写真の間の余白 */
    padding: 0 10px;
}

.menu-image-item {
    width: 100%;
    border-radius: 12px;
    /* 少し角丸にして柔らかく */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* 弱めの影をつけて立体感を演出 */
    background-color: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image-item:hover {
    transform: translateY(-5px);
    /* カーソルを乗せた時に少し浮き上がる */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.menu-image-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    /* クリック（拡大）できることを示すカーソル */
}

/* 既存のスタイル */
.menu-hero {
    border-bottom: 2px dashed #ddd;
    /* ヘッダーとの区切りに少し和風な点線 */
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--color-dark);
    border-left: 5px solid var(--color-primary);
    padding-left: 15px;
    margin-bottom: 25px;
    font-family: 'Yuji Syuku', serif;
    /* 和風フォントを適用 */
}

/* テキストリスト（リーダー付き）のスタイル */
.menu-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-text-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-text-list li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.item-name {
    font-weight: 700;
    color: var(--color-dark);
    flex-shrink: 0;
}

/* メニュー名と価格を繋ぐ点線（リーダー） */
.item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -4px;
    /* 点線の縦位置を微調整 */
}

.item-price {
    font-weight: 900;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* =========================================
   ギャラリー・お客様の声 (Gallery & Voice)
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.voice-box {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #EEEEEE;
}

.voice-box h3 {
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.voice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.voice-card {
    background-color: var(--color-bg-light);
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.voice-card::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.voice-text {
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.voice-author {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
}

/* =========================================
   アクセス (Access)
========================================= */
.access-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.access-info {
    flex: 1;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #EEE;
    text-align: left;
}

.info-table th {
    width: 100px;
    color: var(--color-dark);
}

.tel-link {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
}

.tel-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.access-map {
    flex: 1;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
}

/* =========================================
   スマホ下部固定ボタン (Mobile Sticky BTN)
========================================= */
.mobile-sticky-btn {
    display: none;
    /* PCでは非表示 */
}

/* =========================================
   フッター (Footer)
========================================= */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 50px 0 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 1.5rem;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* =========================================
   ビールバナー (Beer Banner)
========================================= */
.beer-banner {
    display: flex;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.beer-banner-img {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    /* はみ出た画像を隠す */
}

.beer-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.beer-banner-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beer-banner-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.beer-banner-menu {
    margin-bottom: 20px;
}

.beer-banner-menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
    font-size: 1.2rem;
}

.beer-name {
    font-weight: 700;
}

.beer-price {
    font-weight: 900;
    color: var(--color-primary);
    font-size: 1.3rem;
}

.beer-banner-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* =========================================
   レスポンシブ (スマホ表示)
========================================= */
@media (max-width: 768px) {
    .section-container {
        padding: 50px 0;
    }

    /* スマホで見出しの最後の一文字だけ改行される現象を防ぐ */
    .section-title {
        font-size: 1.8rem;
    }

    /* ヘッダー・メニュー */
    .d-none-sp {
        display: none !important;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    /* ヒーロー */
    .hero {
        height: 65vh;
        min-height: 420px;
        background-position: center 30%;
    }

    .hero-watermark-logo {
        width: 55%;
        /* スマホもボタンと被らないようにさらに小さく */
        top: 40%;
        /* 位置もさらに上へ */
        opacity: 0.15;
        /* スマホは少し薄めにして文字を読みやすくする */
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    /* 日本語の文節で改行させてガチャガチャ崩れるのを防ぐ */
    .hero-title span,
    .hero-sub span,
    .news-text span {
        display: inline-block;
    }

    .news-inner {
        padding: 0 16px;
    }

    .cta-button {
        display: none;
        /* 下部固定ボタンがあるため非表示 */
    }

    /* スマホ下部固定ボタン（Fの法則） */
    .mobile-sticky-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .mobile-sticky-btn .btn-primary {
        display: flex;
        width: 100%;
        padding: 15px;
        font-size: 1.2rem;
    }

    body {
        padding-bottom: 70px;
        /* 固定ボタンの分の余白 */
    }

    /* その他2カラムの縦並び化 */
    .beer-banner,
    .concept-content,
    .gallery-grid,
    .voice-cards,
    .access-container,
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        grid-template-columns: 1fr;
    }

    /* concept.html でインラインの flex-direction / text-align を打ち消して中央に揃える */
    .concept-content {
        flex-direction: column !important;
    }

    .concept-text .section-title {
        text-align: center !important;
    }

    .concept-text {
        text-align: center;
    }

    .concept-btn-wrap {
        text-align: center;
    }

    .footer-inner {
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-table th {
        width: 80px;
    }
}

/* =========================================
   モーダル（画像ポップアップ）スタイル
========================================= */
.modal {
    display: none;
    /* 初期状態は非表示 */
    position: fixed;
    z-index: 2000;
    /* ヘッダーやスマホボタンより上に配置 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* 半透明の黒背景 */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    /* flexを使用して中央揃えにするため */
    justify-content: center;
    align-items: center;
    opacity: 1;
    /* フェードイン処理 */
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    object-fit: contain;
    /* サイズを調整 */
}

.modal.show .modal-content {
    transform: scale(1);
    /* 拡大しながら表示させる */
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
    /* 画像よりも手前に */
}

.modal-close:hover {
    color: var(--color-primary);
}

/* =========================================
   電話番号ポップアップモーダル（PC用）
========================================= */
.tel-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    /* フェードイン前 */
    transition: background-color 0.3s ease;
    align-items: center;
    justify-content: center;
}

.tel-modal.show {
    background-color: rgba(0, 0, 0, 0.6);
}

.tel-modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.tel-modal.show .tel-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.tel-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.tel-modal-close:hover {
    color: var(--color-primary);
}

.tel-modal-title {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.tel-modal-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
}

.tel-modal-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tel-modal-number .icon {
    font-size: 1.8rem;
    margin-right: 5px;
}

.tel-modal-time {
    font-size: 0.85rem;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
    color: var(--color-dark);
    display: inline-block;
}