@charset "UTF-8";

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
    /* Colors - Warm, elegant, pastry-like vibe */
    --color-base: #fcfbfa;       /* Very light warm gray/white */
    --color-base-light: #f5f0eb; /* Slightly darker warm beige for alternating sections */
    --color-main: #4a3b32;       /* Chocolate brown for main text */
    --color-accent: #d35b5a;     /* Strawberry red for buttons / accents */
    --color-accent-hover: #b84948;
    --color-gold: #b3915f;       /* Elegant gold/bronze */
    --color-header-bg: #5a4b41;  /* Dark brown for header (accents the white logo) */
    
    /* Typography */
    --font-gothic: 'Noto Sans JP', sans-serif;
    --font-mincho: 'Kiwi Maru', serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-gothic);
    color: var(--color-main);
    background-color: var(--color-base);
    line-height: 1.7;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-mincho);
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--color-main);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--color-gold);
}

.bg-light {
    background-color: var(--color-base-light);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: visible;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    height: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease; /* 0.3秒で滑らかに変化 */
}

/* ロゴにマウスを乗せたときのホバー効果 */
.logo a:hover .logo-img {
    transform: translateY(-6px) scale(1.15); /* より大きく上に浮き上がり、サイズも拡大 */
    opacity: 0.7; /* 透明度の変化も少し分かりやすく */
}

.global-nav ul {
    display: flex;
    gap: 30px;
}

.global-nav a {
    color: var(--color-main);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
}

.global-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.global-nav a:hover::after {
    width: 100%;
}

.global-nav a:hover {
    color: var(--color-gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 9999;
    background-color: rgba(253, 251, 250, 0.9); /* クリーミーな白 */
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(74, 59, 50, 0.15);
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 22px;
    height: 2.5px; /* 少し太くして視認性を向上 */
    background-color: var(--color-main);
    left: 11px;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 右下の固定ボタン (縦並び・メニューボタンのコンパクト化) */
.fixed-buttons {
    position: fixed;
    right: 15px; /* 右端に寄せて重なりを防止 */
    bottom: 25px;
    z-index: 2000;
    display: flex;
    flex-direction: column; /* 常に縦並び（注文フォームが下） */
    gap: 12px;
    align-items: flex-end; /* 右端に寄せる */
}

.fixed-btn {
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center; /* テキストを中央揃え */
    font-family: 'Kiwi Maru', serif;
    background-color: rgba(253, 250, 246, 0.5); /* 50%透明のクリーム白 */
    color: #d35b5a;
    border: 1px solid rgba(211, 91, 90, 0.2);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

/* メニューボタン固有: アイコンなし・最小幅 */
.menu-btn {
    padding: 8px 12px; /* 最小限の余白設定 */
    min-width: 100px; /* バランスを整える最低限の幅 */
}

/* 注文フォーム固有: アイコンあり・標準サイズ */
.order-btn {
    padding: 10px 18px;
    color: #4a3b32;
    border-color: rgba(74, 59, 50, 0.15);
}

.fixed-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(253, 250, 246, 0.8);
    box-shadow: 0 6px 18px rgba(74, 59, 50, 0.12);
}
/* ==========================================================================
   Hero (Top)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 65px; /* header offset */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85); /* Slightly darken image for text readability */
}

.hero-text {
    background-color: rgba(253, 251, 250, 0.7); /* 半透明のアイボリーグラス */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 80px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.hero-text h2 {
    font-family: var(--font-mincho);
    font-size: clamp(1.5rem, 4vw, 3rem); /* はみ出し防止（画面幅に合わせて自動縮小） */
    white-space: nowrap; /* 1行で表示（改行させない） */
    color: var(--color-main);
    margin-bottom: 20px;
}

.hero-text p {
    font-family: var(--font-mincho); /* サブコピーもKiwi Maruに揃える */
    font-size: 1.1rem;
    color: var(--color-main);
    line-height: 2;
}

/* PC版ギャラリー風スプリットレイアウト (769px以上) */
@media (min-width: 769px) {
    .hero {
        display: flex;
        flex-direction: row-reverse; /* 右にテキスト、左に画像を反転配置 */
        align-items: stretch;
        justify-content: flex-start;
        background-color: #1a1a1a;
        height: 100vh;
        min-height: 800px;
        padding-top: 65px;
        overflow: hidden;
    }

    .hero-image {
        position: relative;
        width: 60%;
        height: 100%;
        order: 2; /* row-reverse の場合、2番目が左端に来る */
        padding: 80px 40px; 
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: contain; 
        filter: none; 
    }

    .hero-text {
        width: 40%;
        order: 1; /* row-reverse の場合、1番目が右端に来る */
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 100px 0 60px; /* 左右の内部余白を反転 */
        text-align: right; /* 右配置に合わせて右揃えに調整 */
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid #d4b475; /* 縦線を右端に移動 */
        border-left: none;
        margin: 15vh 80px 15vh 0; /* マージンを右側に移動 */
        height: auto;
        align-self: center;
    }

    .hero-text h2 {
        font-size: 3.2rem;
        color: #ffffff;
        letter-spacing: 0.15em;
        white-space: normal;
        margin-bottom: 35px;
        line-height: 1.4;
    }

    .hero-text p {
        color: #eeeeee;
        font-size: 1.2rem;
        line-height: 2.2;
    }
}

/* ==========================================================================
   News (お知らせ)
   ========================================================================== */
.news-title {
    font-family: var(--font-mincho);
    font-size: 1.6rem;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--color-main);
}

/* ==========================================================================
   News & Accordion (お知らせの一覧＆詳細アコーディオン統合)
   ========================================================================== */
.news-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.news-accordion-item {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #f5f0eb;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

/* アコーディオンのチェックボックス */
.news-acc-check {
    display: none;
}

/* クリック領域であるカード全体（ラベル） */
.news-card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    cursor: pointer; /* マウスオーバーでリンクであることを示す */
    transition: background 0.3s ease;
}

.news-card-horizontal:hover {
    background: #fafafa;
}

.news-card-img-right {
    width: 40%;
    max-width: 250px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.news-card-img-right img {
    width: 100%;
    height: auto;
    display: block;
}

.news-card-info {
    width: 53%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.news-card-date {
    color: var(--color-gold);
    font-size: 0.85rem; /* より上品に小さく */
    margin-bottom: 5px;
    font-family: var(--font-gothic);
}

.news-card-title {
    font-family: var(--font-mincho);
    font-size: 1.15rem; /* 上品に小さく */
    color: var(--color-main);
    line-height: 1.6;
    margin-bottom: 8px; /* プレビュー文章との間に余白 */
}

/* プレビューテキスト（内容の冒頭ちょい見せ） */
.news-card-preview {
    font-size: 0.85rem; /* 読みやすく上品に小さく */
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
    letter-spacing: -0.05em; /* 文字を詰める */
}

.news-card-arrow {
    align-self: flex-start;
    color: var(--color-accent);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    font-weight: normal; /* 太字なしで上品に */
}

.toggle-icon {
    font-size: 1.1rem;
    margin-left: 5px;
    font-weight: normal;
}

/* 視覚的な合図（開く前は下矢印 ∨） */
.toggle-icon::before {
    content: "∨"; 
}

/* アコーディオンの中身（展開部分） */
.news-acc-content {
    max-height: 0; /* 最初は見えない */
    overflow: hidden;
    /* スッと滑らかに0.3~0.4秒で広がるアニメーション */
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); 
}

.news-acc-inner {
    padding: 0 40px 40px; /* カード横幅に合わせる */
    border-top: 1px dashed #efe8e1; /* 折り目線 */
    margin-top: -10px; /* 線の調整 */
    padding-top: 30px;
}

/* 展開時の状態変化（クリック後） */
.news-acc-check:checked ~ .news-acc-content {
    max-height: 3000px; /* 全ての内容が入る十分な高さ */
    /* Transitionのイージングを変えてスムーズに */
    transition: max-height 0.8s ease-in-out;
}

/* アイコンの変化（開いた時には 上矢印 ∧ に変化） */
.news-acc-check:checked ~ .news-card-horizontal .toggle-icon::before {
    content: "∧";
}

/* モバイル版のみ：アコーディオンが開いている時に概要部分（表紙）を完全に非表示にする */
@media (max-width: 768px) {
    .news-acc-check:checked ~ .news-card-horizontal {
        display: none;
    }

    /* 概要が消えた後の詳細内容の余白・境界線の調整 */
    .news-acc-check:checked ~ .news-acc-content .news-acc-inner {
        border-top: none;
        margin-top: 0;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .news-card-horizontal {
        padding: 20px 15px;
    }
    .news-card-img-right {
        width: 42%;
        max-width: none;
    }
    .news-card-info {
        width: 52%;
    }
    .news-card-title {
        font-size: 0.95rem; /* スマホではさらに上品に小さく */
        line-height: 1.5;
    }
    .news-card-preview {
        font-size: 0.75rem; /* スマホならさらに小さく */
        margin-bottom: 12px;
    }
    .news-acc-inner {
        padding: 0 15px 25px; /* スマホ用余白 */
        padding-top: 20px;
    }
}

/* ==========================================================================
   Recommend Cards (店主おすすめ3選 横長・完全コンパクトレイアウト)
   ========================================================================== */
.recommend-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px; /* 全体のアイテム間隔も詰める */
    max-width: 900px;
    margin: 0 auto;
}

.recommend-card-horizontal {
    display: flex;
    flex-direction: row; /* 左画像、右テキスト */
    align-items: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f5f0eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    padding: 15px; /* 全体の余白を最小限に詰める */
    gap: 20px; /* 画像とテキストの余白 */
}

.recommend-card-img-left {
    width: 45%; /* 画像の専有面積を大きくしケーキを主役に */
    max-width: 250px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1; /* 正方形にトリミング */
    border-radius: 4px;
    overflow: hidden;
}

.recommend-card-img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recommend-card-info {
    flex: 1; /* 55%の幅を使う */
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center; /* 垂直方向の中央配置（画像とのバランスを保つ） */
    overflow: hidden;
    min-width: 0; /* 縮小されてもフレックスコンテナから溢れないようにする */
    container-type: inline-size; /* 枠の幅に合わせて自動縮小を行うための準備 */
}

.recommend-no {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-family: var(--font-gothic);
}

.recommend-card-title {
    font-family: var(--font-mincho);
    /* 1. コンテナの枠幅（cqw）に合わせて自動的に文字サイズを動的縮小し、絶対に入るサイズに計算 */
    font-size: min(1.05rem, 8cqw); 
    color: var(--color-main);
    line-height: 1.3;
    margin-bottom: 8px; /* 余白を詰める */
    
    white-space: nowrap; /* 絶対に1行で表示 */
    overflow: hidden;    /* 万一のはみ出し時は隠す */
    
    /* 2. 文字の間隔をギリギリまで詰めて密度を高める */
    letter-spacing: -0.06em;
    
    /* 3. 長体をかける（横幅だけを数％細くしてスタイリッシュに1行に収める） */
    transform: scaleX(0.93);
    transform-origin: left center; /* 左基準で縮小する */
    /* 横幅が7%細くなった分、利用できる長さを広げてピッタリ収める */
    width: 107%; 
}

.recommend-card-desc {
    font-size: 0.75rem; /* さらに小さく、繊細な印象に */
    color: #555;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.06em; /* 文字間隔をさらに詰めて密度を高める */
}

@media (max-width: 768px) {
    .recommend-card-horizontal {
        padding: 10px; /* スマホ用余白を最小限に */
        gap: 15px; /* スマホでの間隔 */
    }
    .recommend-card-img-left {
        width: 45%; /* スマホでも画像を大きく */
        max-width: none;
    }
    .recommend-no {
        font-size: 0.8rem;
    }
    .recommend-card-title {
        /* スマホ向け：文字が絶対に1行に収まるように枠に対する設定を強化 */
        font-size: min(0.95rem, 7.5cqw);
        margin-bottom: 6px;
        letter-spacing: -0.09em; /* スマホで文字が重なる限界まで間隔を詰める */
        transform: scaleX(0.88); /* 長体を強めて（12%細くして）、完全に1行にロックする */
        width: 113%; /* 細くなった分の幅補正 */
    }
    .recommend-card-desc {
        font-size: 0.7rem; /* スマホでも繊細な文字サイズに */
        line-height: 1.4;
    }
}

/* ==========================================================================
   Class Content (親子お菓子作り教室 詳細レイアウト)
   ========================================================================== */
.class-wrapper {
    background: #fff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f5f0eb;
}

.class-header {
    text-align: center;
    margin-bottom: 40px;
}

.class-header h3 {
    font-family: var(--font-mincho);
    font-size: 1.3rem;
    color: var(--color-main);
    line-height: 1.6;
    margin-bottom: 25px;
}

.class-header img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 25px;
}

.class-intro {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

.class-details {
    font-size: 0.85rem; /* 全体は上品に小さく */
    color: #444;
    line-height: 1.8;
}

.class-block {
    margin-bottom: 35px;
}

.class-block h4 {
    font-weight: bold;
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 15px;
    border-bottom: 1px dashed #efe8e1;
    padding-bottom: 8px;
}

.class-list {
    list-style: none;
    padding-left: 10px;
    margin: 0;
}

.class-list li {
    margin-bottom: 10px;
}

.class-list strong {
    color: var(--color-main);
    font-weight: bold; /* メニュー名等の大事な部分を太字に */
}

.class-price {
    font-size: 1.1rem; /* 料金は少し大きめ太字で目立たせる */
    color: var(--color-main);
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
}

.class-note {
    font-size: 0.8rem;
    color: #666;
    display: block;
    line-height: 1.4;
}

.class-attention {
    color: #c0392b; /* 注意書きにアクセント */
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.class-desc-text {
    padding-left: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .class-wrapper {
        padding: 30px 20px;
    }
    .class-header h3 {
        font-size: 1.1rem;
    }
    .class-details {
        font-size: 0.8rem; /* スマホならさらに上品に小さく */
    }
    .class-block h4 {
        font-size: 0.95rem;
    }
    .class-price {
        font-size: 1.05rem;
    }
}

.class-info-list {
    margin: 15px 0;
    padding-left: 20px;
}

.class-info-list span {
    font-weight: bold;
    color: var(--color-gold);
}

.oyako-img {
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* 親子教室 カレンダースライダー */
.class-calendar-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #efe8e1;
}

.calendar-slider-title {
    font-weight: bold;
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.calendar-slider-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.calendar-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.calendar-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.calendar-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-slide img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* カレンダー注釈（凡例） */
.calendar-legend {
    margin-top: 20px;
    padding: 15px;
    background-color: #fdfaf6;
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--color-main);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    border: 1px solid rgba(197, 163, 99, 0.1);
}

.calendar-legend span {
    display: block;
    line-height: 1.5;
}

/* 矢印ボタン */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: #fff;
}

.slider-arrow.prev { left: -20px; }
.slider-arrow.next { right: -20px; }

/* ドットインジケーター */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--color-gold);
}

/* ==========================================================================
   Concept (大切にしていること)
   ========================================================================== */
#concept {
    font-family: var(--font-mincho); /* セクション全体に明朝体を適用 */
}

.concept-block {
    margin-bottom: 80px;
}

.concept-block:last-child {
    margin-bottom: 0;
}

.concept-row {
    display: flex;
    gap: 50px;
    align-items: center;
}

.concept-img-side {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.concept-img-side img {
    width: 100%;
    height: auto;
    display: block;
}

.concept-text-side {
    flex: 1;
    text-align: left;
}

.concept-text-side h3 {
    font-size: 1.5rem;
    color: var(--color-main);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 10px;
    display: inline-block;
    white-space: nowrap; /* 必ず1行で表示 */
}

.concept-text-side p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a3b32;
    margin-bottom: 20px;
}

/* ==========================================================================
   Concept Accordion Customize (見出しを上に横断させる)
   ========================================================================== */
.concept-card-override {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 25px !important;
}

.concept-card-title {
    width: 100%;
    text-align: left;
    white-space: nowrap !important; /* 絶対に1行にする */
    overflow: hidden;
    /* 画面幅に比例してフォントサイズを縮小し、一番長い見出しも1行に収まるよう調整 */
    font-size: min(1.2rem, 5.5vw) !important; 
    margin-bottom: 0 !important;
    transform: none !important; /* 幅圧縮のリセット */
    letter-spacing: -0.05em !important; /* 文字間を詰める */
}

.concept-card-body {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .concept-card-override {
        padding: 15px !important;
        gap: 12px !important;
    }
    .concept-card-title {
        /* スマホ向けにさらに1行に収まりやすい文字サイズ＆詰め幅に設定 */
        font-size: min(1.05rem, 6.2vw) !important;
        letter-spacing: -0.09em !important; 
    }
    .concept-card-body {
        gap: 15px;
    }
}

/* アコーディオンアイテム自体のスクロール余白（ヘッダーに隠れないようにする） */
.news-accordion-item {
    scroll-margin-top: 130px; /* 固定ヘッダーの高さ＋余白を持たせる */
}

/* アコーディオンを閉じるボタン */
.concept-close-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    text-align: center;
    margin-top: 30px;
    padding: 15px 0 5px 0;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: bold;
    font-family: var(--font-mincho);
    cursor: pointer;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    transition: opacity 0.3s;
    outline: none;
}

.concept-close-btn:hover {
    opacity: 0.7;
}

/* 厳選食材ボックス */
.ingredient-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px dashed var(--color-gold);
    margin-top: 30px;
    transition: all 0.3s ease;
}

.ingredient-toggle-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 5px 0;
    margin: 0;
    color: var(--color-gold);
    font-size: 1rem;
    font-family: var(--font-mincho);
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.ingredient-toggle-btn:hover {
    opacity: 0.8;
}

.ingredient-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.3s ease;
}

#ingredient-accordion.is-open .ingredient-list {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.ingredient-box h4 {
    font-size: 0.95rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.ingredient-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* プロフィール（アコーディオン） */
.profile-accordion {
    margin-top: 20px;
}

.profile-accordion summary {
    cursor: pointer;
    font-weight: bold;
    color: var(--color-gold);
    padding: 10px 0;
    transition: color 0.3s;
}

.profile-accordion summary:hover {
    color: var(--color-accent);
}

.profile-content {
    background: #fafafa;
    padding: 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 10px;
}

/* 特別コラムボックス (セピア調) */
.special-column {
    background: #fcf9f5;
    padding: 60px 40px;
    border-radius: 8px;
    border: 1px solid #d4c4b5; /* セピア調の枠線 */
    margin-top: 80px;
    position: relative;
    text-align: center;
    box-shadow: inset 0 0 40px rgba(212, 196, 181, 0.1);
}

.special-column::before {
    content: "Special Story";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #a68b7c; /* 落ち着いたセピアブラウン */
    color: #fff;
    padding: 3px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-family: var(--font-gothic);
}

.story-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #5d4a3e;
    font-family: var(--font-mincho);
    letter-spacing: 0.1em;
}

.story-body {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

.story-body p {
    font-size: 1rem;
    line-height: 2.2; /* 行間を広めに設計 */
    color: #5d4a3e;
    margin-bottom: 2rem;
    text-indent: 1em; /* 段落の頭を一字下げ */
}

/* 冒頭2行に制限 */
.story-intro p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* 標準プロパティ追記 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0; /* 閉じている時はボタンとの間隔を詰める */
}

/* 展開時は制限を解除 */
.story-body.is-open .story-intro p {
    display: block;
    -webkit-line-clamp: none;
    line-clamp: none; /* 標準プロパティ追記 */
    margin-bottom: 2rem;
}

/* アコーディオン部分の詳細設定 */
.story-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s ease, opacity 0.5s ease;
}

.story-more.is-open {
    max-height: 3000px; /* 内容に合わせて十分な高さを設定（アニメーション用） */
    opacity: 1;
}

.story-toggle-btn {
    display: block;
    margin: 30px auto 0;
    background: none;
    border: 1px solid #a68b7c;
    color: #a68b7c;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-mincho);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.story-toggle-btn:hover {
    background: #a68b7c;
    color: #fff;
}

.story-img {
    margin-top: 50px;
    text-align: center;
}

.story-img img {
    max-width: 400px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .concept-row {
        flex-direction: column;
        gap: 30px;
    }
    .concept-img-side {
        flex: 0 0 auto;
        width: 100%;
    }
    .concept-text-side h3 {
        font-size: 1.2rem; /* モバイルでは見出しを少し小さくして1行を維持 */
        white-space: nowrap;
    }
    .special-column {
        padding: 40px 20px;
    }
    .story-title {
        font-size: 1.5rem;
    }
    .story-body p {
        text-indent: 0;
        line-height: 2;
    }
    .story-toggle-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* お客様の声 (Voice Cards) */
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 口コミ同士の間隔 */
}

.voice-card {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px dashed #efe8e1;
}

.voice-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.voice-info {
    flex: 1;
    text-align: left;
}

.voice-date {
    display: block;
    color: var(--color-gold);
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-family: var(--font-gothic);
}

.voice-title {
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    color: var(--color-main);
    font-weight: bold;
    margin-bottom: 15px;
}

.voice-body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.voice-img {
    flex: 0 0 120px; /* 固定幅 */
    max-width: 150px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.voice-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 薄いドロップシャドウを追加 */
}

@media (max-width: 768px) {
    .voice-card {
        flex-direction: column; /* スマホでは縦並び */
        gap: 15px;
    }
    .voice-img {
        flex: 0 0 auto;
        width: 100px;
    }
}


/* ==========================================================================
   Menu (ドリルダウン形式: ビジュアル刷新版)
   ========================================================================== */
#menu {
    background-color: #fffaf1; /* 指定の背景色: クリーム */
    color: #4a3b32; /* 指定の文字色: 濃茶 */
    font-family: 'M PLUS Rounded 1c', sans-serif; /* 本文のデフォルト */
}

/* セクションタイトルはKiwi Maru */
#menu .section-title {
    font-family: 'Kiwi Maru', serif;
}

/* 第1階層: カテゴリー選択パネル (2列) */
.menu-tiled-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-category-card {
    background: #ffffff; /* パネルは白背景 */
    border: 1px solid #e0e0e0; /* 薄いグレーの境界線 */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.menu-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(74, 59, 50, 0.1);
    border-color: #d35b5a; /* ホバー時にアクセント色 */
}

.menu-tiled-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.menu-tiled-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-tiled-text {
    padding: 20px 10px;
    text-align: center;
    font-size: 16px;
    color: #4a3b32;
    font-weight: 500;
    font-family: 'Kiwi Maru', serif; /* カテゴリー名は上品な明朝体 */
    letter-spacing: 0.05em;
}

/* メニューページタイトル固有の調整（中央揃え・ライン削除） */
.menu-page-title {
    font-size: 2rem;
    font-family: 'Kiwi Maru', serif;
    color: #4a3b32;
    text-align: center; /* 中央揃え */
    border-left: none; /* 赤い線を削除 */
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* 商品詳細の見出しはスッキリと1行で表示 */
.detail-title {
    font-size: 1.4rem; /* 1行に収めるため少しサイズダウン */
    font-family: 'M PLUS Rounded 1c', sans-serif; /* 丸ゴシック体で統一感を出す */
    color: #4a3b32;
    border-left: none; /* 赤い垂直線を削除 */
    padding-left: 0;
    padding-bottom: 4px;
    text-align: left;
    margin-bottom: 30px;
    white-space: nowrap; /* 改行を禁止 */
    letter-spacing: -0.04em; /* 文字間隔を詰めて横幅を節約 */
    overflow: hidden;
    text-overflow: ellipsis; /* 万一溢れた場合は三点リーダ */
}

/* メニューセクションの余白最小化とカード最大化 */
#menu .container {
    max-width: 1200px; /* 最大幅は維持しつつ */
    padding-left: 10px; /* 左右余白を極小に */
    padding-right: 10px;
}

/* 第1階層: カテゴリー選択パネル (2列) */
.menu-tiled-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* 隙間も少し詰めて画像を大きく */
}

.menu-category-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.menu-tiled-text {
    padding: 15px 4px; /* わずかに余白を戻し、末尾の「ー」に余裕を持たせる */
    text-align: center;
    font-size: 13px; /* 1行に収めるための再調整 */
    color: #4a3b32;
    font-weight: 500;
    font-family: 'Kiwi Maru', serif;
    letter-spacing: -0.06em; /* 文字間隔をさらに詰め、横幅を節約 */
    white-space: nowrap; /* 1行に強制 */
}


/* 第2階層: 詳細ビュー */
.menu-detail-view {
    padding-top: 10px;
}

/* 左右分割レイアウト (左画像・右テキスト) */
.detail-item {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    padding: 10px;
}

.detail-left {
    flex: 0 0 35%;
    background: #fff;
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
}

.detail-left img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* 2枚連番画像のグリッド (プリン等) */
.detail-image-grid-2 {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.image-block {
    flex: 1;
    text-align: center;
}

.image-label {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--color-main);
    font-family: 'Kiwi Maru', serif;
}

.detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 0.9rem;
}

/* ドットリーダー付きリスト */

.detail-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table tr {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.detail-table td:first-child {
    flex-grow: 1;
    display: flex;
    align-items: baseline;
    font-weight: 400;
}

.detail-table td:first-child::after {
    content: "";
    flex-grow: 1;
    margin-left: 10px;
    margin-right: 10px;
    border-bottom: 2px dotted #d3cdc1; /* ドットリーダー */
}

.detail-table td:last-child {
    font-weight: 700;
    color: #4a3b32;
    min-width: 80px;
    text-align: right;
}

/* 注釈エリア: ピンク/* ==========================================================================
   ご注文 (Order)
   ========================================================================== */
#order {
    background-color: var(--color-base-light);
}

.order-notice {
    background-color: #fff;
    border: 2px dashed var(--color-gold);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.order-notice p {
    font-family: var(--font-mincho);
    font-size: 1.15rem;
    color: var(--color-main);
    line-height: 1.8;
}

.order-notice strong {
    color: var(--color-accent);
    font-size: 1.3rem;
}

.contact-methods-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px auto 0;
    max-width: 1000px;
}

.contact-method-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #fdfaf7;
    transition: transform 0.3s ease;
}

.contact-method-item:hover {
    transform: translateY(-5px);
}

.contact-btn {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(74, 59, 50, 0.15);
    font-family: var(--font-mincho);
    background-color: var(--color-main);
    color: #fff !important;
}

.btn-icon {
    font-size: 1.2rem;
}

.contact-btn:hover {
    background-color: var(--color-gold);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(197, 163, 99, 0.25);
}

.contact-info-sub {
    margin-top: 10px;
    text-align: center;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
}

.contact-info-sub p {
    margin: 0;
}

.reception-time {
    font-weight: 600;
    color: var(--color-main);
    margin-bottom: 4px !important;
}

.method-sub {
    margin-top: 10px;
    font-size: 0.78rem;
    color: #888;
    text-align: center;
}

@media (max-width: 991px) {
    .contact-methods-container {
        gap: 20px;
    }
    .contact-method-item {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .contact-methods-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .contact-method-item {
        width: 100%;
        max-width: 320px;
        padding: 25px 20px;
    }
    .contact-btn {
        font-size: 1rem;
    }
}

.order-delivery {
    text-align: center;
}

.delivery-box {
    display: block;
    background-color: #fff;
    border: 2px dashed var(--color-gold);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.delivery-box h4, .delivery-box p {
    font-family: var(--font-mincho);
    font-size: 1.15rem;
    color: var(--color-main);
    line-height: 1.8;
}

.delivery-box h4 {
    font-weight: normal;
    display: block;
    margin-bottom: 10px;
}

.sp-only { display: none; }


.access-map iframe {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.shop-name {
    font-family: var(--font-mincho);
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--color-main);
    line-height: 1.5;
    text-align: center; /* 中央に配置 */
}

.shop-name ruby {
    ruby-position: over;
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: center; /* メインとルビの軸を合わせる */
}

.shop-name rt {
    display: block;
    font-size: 0.8rem; /* メインの約半分 */
    line-height: 1;
    margin-bottom: 5px;
    text-align: center; /* ルビ自体の配置も中央に */
    font-family: var(--font-gothic);
}

.info-table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-collapse: collapse;
}

.info-table th, .info-table td {
    padding: 15px 0;
    border-bottom: 1px solid #efe8e1;
    text-align: left;
    vertical-align: top; /* TELの改行に合わせる */
}

.info-table th {
    width: 30%;
    color: var(--color-gold);
    font-weight: normal;
    white-space: nowrap;
    padding-top: 15px; /* テキストの位置調整 */
}

.name-small {
    font-size: 0.82rem;
    color: #888;
    display: inline-block;
    margin-top: 4px;
    font-family: var(--font-gothic);
}

.info-btn {
    display: inline-block;
    background-color: var(--color-main);
    color: #fff;
    padding: 6px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    border: 1px solid var(--color-main);
    font-family: var(--font-mincho);
}

.info-btn:hover {
    background-color: transparent;
    color: var(--color-main);
}

/* ==========================================================================
   ご注文 (Order) - 最終デザイン（1行集約/縦積みスリム版）
   ========================================================================== */
#order.section {
    padding: 100px 0; /* アクセスと共通のセクションパディング */
}

.order-notice {
    text-align: center;
    margin-bottom: 40px;
}

.order-notice p {
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    color: var(--color-main);
    white-space: nowrap; /* 1行を維持 */
}

.order-notice strong {
    color: var(--color-accent);
}

.order-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.order-item-slim {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(74, 59, 50, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-main);
}

.order-item-slim:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: var(--color-gold);
}

.slim-icon {
    width: 40px;
    font-size: 1.3rem;
    text-align: left;
    margin-right: 15px;
}

.slim-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.slim-label {
    font-family: var(--font-mincho);
    font-weight: 600;
    font-size: 1.1rem;
}

.slim-tel {
    font-family: var(--font-gothic);
    font-weight: bold;
    color: var(--color-accent);
    font-size: 1.2rem;
}

.slim-action {
    font-family: var(--font-gothic);
    font-size: 0.85rem;
    color: #888;
}

.line-bg .slim-label { color: #06C755; }
.web-bg .slim-label { color: var(--color-gold); }

.order-delivery-small {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 20px;
}

.sp-only { display: none; }


/* ==========================================================================
   お客様の声 (Voice) - アコーディオン展開
   ========================================================================== */
.voice-item {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f5f0eb;
    margin-bottom: 20px;
    text-align: center; /* ボタンの中央配置用 */
}

.voice-expand-wrapper {
    position: relative;
}

.voice-expand-check {
    display: none;
}

.voice-text-content {
    font-size: 0.85rem; /* 他のお知らせ同様に上品に小さく */
    color: #555;
    line-height: 1.8;
    text-align: left;
    letter-spacing: -0.05em; /* 文字間を詰め、スッキリさせる */
    
    max-height: 4.8em; /* 最初の約2行半分だけ表示 */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

/* 閉じている時のグラデーション */
.voice-text-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3em; 
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 80%);
    transition: opacity 0.3s;
    pointer-events: none;
}

/* 展開時のスタイル */
.voice-expand-check:checked ~ .voice-text-content {
    max-height: 2000px; /* 全文が収まる十分な高さ */
    transition: max-height 0.8s ease-in-out;
}

.voice-expand-check:checked ~ .voice-text-content::after {
    opacity: 0; /* グラデーションを消して全文を見えるように */
}

/* 全文を読むボタン */
.voice-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-gold);
    cursor: pointer;
    background: transparent;
    padding: 6px 20px;
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.voice-expand-btn:hover {
    background: var(--color-gold);
    color: #fff;
}

.voice-expand-btn::after {
    content: "全文を読む ＋";
}

.voice-expand-check:checked ~ .voice-expand-btn::after {
    content: "閉じる －";
}

@media (max-width: 768px) {
    .voice-item {
        padding: 20px 15px;
    }
    .voice-text-content {
        font-size: 0.8rem; /* スマホならさらに小さく */
    }
    .voice-expand-btn {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
#footer {
    background-color: var(--color-header-bg);
    color: #fff;
    padding: 60px 0 100px; /* 下部固定ボタンに隠れないよう、余白を広めに確保 */
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo-text {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    text-align: center;
}

.footer-logo-text rt {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    margin-bottom: 4px;
}

.footer-address {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.footer-nav li {
    white-space: nowrap;
    flex-shrink: 0; /* 項目が圧縮されて改行されるのを防ぐ */
}

.footer-nav a {
    color: #ccc;
    display: block;
    white-space: nowrap;
    word-break: keep-all; /* 単語の途中での改行を禁止 */
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* ==========================================================================
   Fixed Action Buttons
   ========================================================================== */
.fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px env(safe-area-inset-bottom); /* iPhoneの下部バー対策 */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.06);
}

.fixed-buttons a {
    flex: 1;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.fixed-buttons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-order {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-totop {
    background-color: #fff;
    color: var(--color-main);
}

/* ==========================================================================
   Large Menu Button (注文フォーム直前などに配置する大型ボタン)
   ========================================================================== */
.btn-large-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px; /* 中央配置と下の余白 */
    padding: 18px 30px;
    background-color: #fff;
    color: var(--color-main);
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-large-menu:hover {
    background-color: var(--color-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.fixed-buttons .icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* ==========================================================================
   Responsive (Smartphones)
   ========================================================================== */
@media (max-width: 900px) {
    .recommend-cards,
    .news-subgrid,
    .concept-inner,
    .access-inner {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    /* Header & Nav */
    .header-inner {
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }

    /* カレンダースライダー レスポンシブ */
    .calendar-slider-title {
        font-size: 1rem;
    }
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .slider-arrow.prev { left: -10px; }
    .slider-arrow.next { right: -10px; }
    .hamburger span {
        background-color: #000; /* 黒い線 */
    }
    
    .global-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(90, 75, 65, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }
    
    .global-nav.nav-active {
        transform: translateY(0);
    }
    
    .global-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .global-nav ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .global-nav.nav-active ul li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Delay link appearance */
    .global-nav.nav-active ul li:nth-child(1) { transition-delay: 0.2s; }
    .global-nav.nav-active ul li:nth-child(2) { transition-delay: 0.3s; }
    .global-nav.nav-active ul li:nth-child(3) { transition-delay: 0.4s; }
    .global-nav.nav-active ul li:nth-child(4) { transition-delay: 0.5s; }
    .global-nav.nav-active ul li:nth-child(5) { transition-delay: 0.6s; }

    .global-nav a {
        color: #fff;
        font-size: 1.4rem;
        font-family: var(--font-mincho);
        letter-spacing: 0.1em;
    }
    
    .global-nav a::after {
        background-color: #fff;
    }
}

@media (max-width: 768px) {
    .global-nav a {
        color: #fff;
    }
    
    /* --- スマホ時のトップ画像と文字のレイアウト変更 --- */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding-top: 65px; /* ヘッダーの高さ分 */
    }

    .hero-image {
        position: relative; /* 背景への固定を解除 */
        width: 100%;
        height: auto;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: cover; /* 画像の比率を保ったまま横幅いっぱいに */
        filter: none; /* スマホでは文字が上に載らないので画像を明るく戻す */
    }

    .hero-text {
        width: 100%;
        padding: 40px 20px;
        background-color: #ffffff; /* 文字の背景を白に */
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    .hero-text h2 {
        font-size: clamp(1.2rem, 6.5vw, 1.8rem); /* 画面幅に合わせて文字サイズを自動調整 */
        white-space: nowrap; /* スマホでも必ず1行にする */
        color: var(--color-main); /* 文字色を茶色にして読みやすく */
    }

    .hero-text p {
        color: var(--color-main); /* 文字色を茶色にして読みやすく */
    }
    /* -------------------------------------------------- */
    
    .fixed-buttons {
        padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
        gap: 10px;
    }
    
    .fixed-buttons a {
        padding: 12px 10px;
        font-size: 0.88rem;
        letter-spacing: -0.02em;
    }

    /* Order Responsive - 縦並びスリム化 & 画像切れ完全解消 (300px以内) */
    #order.section {
        padding: 20px 0; /* セクション上下パディングを極小化 */
    }
    #order .container {
        padding: 0 12px; /* 適切な左右余白で切れを完全に防止 */
    }
    #order .section-title {
        /* 文字サイズの縮小設定を解除し、他のタイトルと統一 */
        margin-bottom: 25px; /* 下線の後の余白を適度に確保 */
    }
    .order-notice {
        margin-bottom: 10px;
        padding: 12px 10px; /* 枠の上下左右の余白を最小限に削り、高さを限界まで小さく */
        width: 100%;
        box-sizing: border-box;
    }
    .order-notice p {
        font-size: 0.82rem;
        line-height: 1.4;
        white-space: normal !important; /* なぜかはみ出す現象を力技で解除 */
        word-break: break-all !important; /* なぜかはみ出す現象を力技で解除 */
    }
    .order-notice strong {
        font-size: 0.9rem;
    }
    .order-grid {
        grid-template-columns: 1fr; /* 縦並びに転換して突き抜けを回避 */
        gap: 6px; /* カード間の隙間を詰め、高さを節約 */
        margin-bottom: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    .order-item {
        padding: 10px 15px; /* カード内部の余白を極小化 */
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        flex-direction: column; /* ICON -> TITLE -> BTN の順 */
        min-height: auto;
    }
    .order-icon-box {
        width: 32px; /* アイコンをスリム化 (max-height: 120px相当の抑制) */
        height: 32px;
        margin: 0 auto 5px;
    }
    .order-icon {
        font-size: 1.15rem;
    }
    .order-item h3 {
        font-size: 0.95rem; /* 見出しをダウン */
        margin-bottom: 4px;
        font-family: var(--font-mincho);
    }
    .order-tel a {
        font-size: 1.1rem; /* 電話番号を見やすく適度なサイズに */
    }
    .order-sub {
        display: none; /* スマホ時は説明文を全カットして垂直スペースを極大化 */
    }
    .order-btn-line, .order-btn-web {
        padding: 5px 0; /* ボタンの高さを最小化 */
        width: 100%;
        font-size: 0.78rem;
        margin-bottom: 0;
    }
    .sp-only { display: block; }
    .order-delivery {
        margin-top: 5px;
    }
    .delivery-box {
        padding: 12px 15px; /* 左揃えなので少し左右の余白を多めに */
        width: 100%;
        box-sizing: border-box;
        text-align: left; /* 左揃えに変更 */
    }
    .delivery-box h4, .delivery-box p {
        font-size: 0.82rem; /* order-notice と同じサイズに */
        line-height: 1.5;
        white-space: normal !important;
        word-break: break-all !important;
        display: block; /* 一文ごと（h4とpごと）に改行させる */
    }
    .delivery-box h4 {
        margin-bottom: 10px; /* 2行の間の隙間を統一 */
    }

    /* メニュー詳細の縦並び化 */
    .detail-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
        padding: 0;
    }
    .detail-left {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 10px;
        border-radius: 10px;
        flex: 0 0 auto;
    }
    .detail-left img {
        border-radius: 6px;
    }
    .detail-right {
        width: 100%;
        padding: 0 10px;
    }
    .detail-title {
        font-size: 1.3rem;
        text-align: left;
        margin-bottom: 20px;
        white-space: normal; /* 折り返しを許可 */
        overflow: visible;
        text-overflow: unset;
        letter-spacing: 0;
    }
    .detail-table tr {
        margin-bottom: 15px; /* 行間を少し広げて読みやすく */
    }
    .detail-table td:last-child {
        min-width: 85px;
    }
}

/* ==========================================================================
   Desktop Optimizations (PC版レイアウト調整)
   ========================================================================== */
@media (min-width: 769px) {
    /* 1. Typography */
    html {
        font-size: 112%; /* 全体のフォントサイズを約1.1〜1.2倍に引き上げ */
    }

    /* 2. Contact Section (Order) */
    .contact-methods-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important; /* ブロックの高さを揃える */
        gap: 30px;
        max-width: 1200px;
        padding-bottom: 20px;
    }

    .contact-method-item {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 40px 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    /* テキストとボタンの間隔（モバイルの10px設定を維持しつつ調整可能に） */
    .contact-info-sub, .method-sub {
        margin-top: 15px !important;
        flex-grow: 1; /* 下部の高さを調整 */
    }

    .contact-btn {
        width: 100%;
        max-width: 320px;
    }

    /* 3. Parent-Child Calendar PC最適化 (3ヶ月分一括表示) */
    .calendar-slider-container {
        max-width: 1200px !important; /* PCでは3ヶ月並列のため幅を拡張 */
        margin: 40px auto;
    }

    #calendar-slider {
        display: flex !important;
        flex-direction: row !important;
        overflow: visible !important;
        transform: none !important; /* JSによるスライド効果を無効化 */
        width: 100% !important;
        gap: 20px;
        cursor: default;
    }

    .calendar-slide {
        width: calc(33.333% - 14px) !important; /* 3枚並びに調整 */
        flex: 0 0 auto !important;
        padding-bottom: 0;
    }

    .calendar-slide img {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 8px;
    }

    /* PC版では操作不要のためUIを非表示 */
    #slider-prev, #slider-next, #slider-dots {
        display: none !important;
    }

    /* 凡例を中央に配置 */
    .calendar-legend {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-top: 30px;
        font-size: 1rem;
        background: none;
        padding: 0;
        border: none;
    }

    /* 4. Menu Category Grid (カテゴリー7枚を一画面に収める) */
    .menu-tiled-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        max-width: 1200px;
        margin: 0 auto;
    }

    .menu-category-card { max-width: none; border-radius: 8px; }
    .menu-tiled-img { aspect-ratio: 1.1 / 1; }
    .menu-tiled-text { font-size: 0.95rem; padding: 12px 4px; letter-spacing: -0.02em; }

    /* 5. ページトップへ戻るボタン (PC版限定) */
    .back-to-top {
        display: flex !important;
        position: fixed;
        right: 25px;
        bottom: 110px; /* 固定ボタンと被らない高さ */
        width: 46px;
        height: 46px;
        background-color: var(--color-header-bg);
        color: #fff;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        z-index: 1500;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        opacity: 0.75;
    }
    .back-to-top:hover {
        opacity: 1;
        background-color: var(--color-gold);
        transform: translateY(-5px);
    }

    /* 6. PC版アコーディオン全セクションの共通コンパクトリストスタイル */
    .news-accordion-container {
        display: block !important; /* 横並び防止 */
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .news-accordion-item {
        width: 100% !important;
        max-width: 800px !important; /* 全セクションでの共通幅 */
        margin: 0 auto 15px !important;
        display: block !important;
        border: none !important;
        background: transparent !important;
        overflow: visible !important;
    }
    
    /* 表紙（ラベル）のレイアウト：コンパクトな横並びリスト形式 */
    .news-card-horizontal,
    .concept-card-override {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 10px 20px !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
        border: 1px solid rgba(0,0,0,0.06) !important;
        height: auto !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        cursor: pointer;
    }
    
    .news-card-body,
    .concept-card-body {
        display: contents !important;
    }

    /* 画像：左側に配置し、縮小させない固定サイズ */
    .news-card-img-right,
    .news-card-img-left {
        order: 1 !important;
        width: 180px !important;
        min-width: 180px !important;
        height: 110px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        border-radius: 6px !important;
        display: block !important;
    }
    .news-card-img-right img,
    .news-card-img-left img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 6px !important;
    }

    /* タイトルの配置（改行・省略を絶対に阻止する完全保証） */
    .news-card-title {
        order: 2 !important;
        flex-grow: 1 !important; 
        text-align: left !important;
        font-size: 1.3rem !important; /* デザイン統一 */
        margin: 0 40px !important; /* 画像・ボタンとの間隔 */
        padding: 0 !important;
        border-bottom: none !important; 
        color: var(--color-main);
        font-family: inherit !important;
        font-weight: bold !important;
        line-height: 1.4 !important;
        white-space: nowrap !important; /* 絶対に改行させない */
        overflow: visible !important; /* 省略「...」を阻止 */
    }
    
    /* 右側エリア：ボタンのみ残し縮小を防止 */
    .news-card-info {
        order: 3 !important;
        flex-shrink: 0 !important; /* 押し潰されないように固定 */
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* プレビュー文の完全非表示（全セクション共通） */
    .news-card-preview {
        display: none !important; 
    }
    
    /* ガイドアイコン（詳細を読む） */
    .news-card-arrow {
        position: static !important;
        transform: none !important;
        font-size: 0.95rem !important;
        color: var(--color-main) !important;
        opacity: 0.8 !important;
        margin: 0 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important; /* 押し潰されないように固定 */
    }

    /* --- アコーディオン展開時（全開閉コンテンツ共通） --- */
    
    /* 展開時はラベル全体を完全に非表示にする */
    .news-acc-check:checked + label {
        display: none !important;
    }

    /* 詳細コンテンツの背景・余白調整 */
    .news-acc-inner {
        padding: 40px !important; 
        background-color: #fdfaf6 !important;
        border-top: none !important;
        border-radius: 12px !important;
        margin-top: 0 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
    }
}


/* ページトップへ戻る（スマホでは非表示） */
.back-to-top { display: none; }

/* ==========================================================================
   Global Hover Effects (マウス操作感の向上)
   ========================================================================== */
/* ホバー時：浮き上がり & シャドウ強化 */
.contact-btn,
.fixed-btn,
.menu-category-card,
.info-btn,
.btn-large-menu,
.voice-expand-btn,
.concept-close-btn,
.news-accordion-item,
.recommend-card-horizontal,
.order-item-slim,
.news-card-horizontal {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                background-color 0.3s ease !important;
}

@media (hover: hover) {
    .contact-btn:hover,
    .fixed-btn:hover,
    .menu-category-card:hover,
    .info-btn:hover,
    .btn-large-menu:hover,
    .voice-expand-btn:hover,
    .recommend-card-horizontal:hover,
    .order-item-slim:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(74, 59, 50, 0.2) !important;
    }

    /* ホバー時：色の透過（上品に） */
    .contact-btn:hover,
    .fixed-btn:hover,
    .info-btn:hover,
    .btn-large-menu:hover,
    .concept-close-btn:hover,
    .voice-expand-btn:hover {
        opacity: 0.85;
    }
}

/* ==========================================================================
   SNS Link Section
   ========================================================================== */
.sns-link-section {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.sns-text {
    font-family: var(--font-mincho);
    font-size: 0.95rem; /* Kiwi Maruの指定に合わせた控えめなサイズ */
    color: var(--color-main);
    margin-bottom: 20px;
}

.sns-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* スマホ向け自動縮小・はみ出し防止 */
    white-space: nowrap; /* 2行への折り返し禁止 */
}

/* リンク自体のレイアウト（各項目の横並び設定） */
.sns-icons .sns-item {
    display: inline-flex;
    align-items: center;
    color: #4a4a4a;
    transition: color 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    padding: 10px; /* タップ領域を少し持たせる */
}

.sns-icons i {
    font-size: 30px; /* アイコンサイズ控えめに */
}

/* Instagram用テキスト等の間隔 */
.insta-item i {
    margin-right: 8px; /* アイコンとテキストの間を8px空ける */
}

.sns-id {
    font-family: var(--font-mincho);
    font-size: 14px;
    letter-spacing: 0.05em;
}

@media (min-width: 769px) {
    .sns-icons {
        gap: 40px; /* PC版のみ間隔を品よくゆったり広げる */
    }

    .sns-icons .sns-item:hover {
        opacity: 0.6;
    }
}

/* ==========================================================================
   Order (注文) Phone Button Fix
   ========================================================================== */
/* 電話ボタン自体のテキストの折り返しを禁止 */
.phone-btn {
    white-space: nowrap;
}

/* 電話テキストのサイズを画面幅に合わせて自動縮小
 （最小12px、通常時は画面幅の4vw、最大16pxの範囲で可変） */
.phone-btn .btn-text {
    font-size: clamp(12px, 4vw, 16px);
}
