/* デザインコンセプト：オーガニック・モダン（ライフスタイル誌風） */

:root {
    /* カラー */
    --c-custard: #F7E8A0;
    --c-caramel: #A85E10; /* 濃くして視認性UP */
    --c-choco: #5C3210; /* 濃くして視認性UP */
    --c-cream: #FBF3E2;
    --c-warm: #FFF5DC;
    --c-mint: #3D8A60; /* 濃くして視認性UP */
    --c-dusk: #2C2438;
    --c-sage: #3A6147;
    --c-white: #FFFFFF;

    /* テキスト */
    --t-base: #3A2510; /* 本文：濃いチョコ */
    --t-muted: #5A3E28; /* サブテキスト */
    --t-light: #F5ECD8; /* 暗背景上テキスト */
    --t-hint: #7A5C40; /* ヒント・補足（濃くして視認性UP） */

    /* フォント（外部読み込みなし） */
    --font-base: "游ゴシック体", "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
    --font-heading: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "游明朝体", "Yu Mincho", "游明朝", YuMincho, serif;

    /* スペーシング */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 5rem;

    /* 形 */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-pill: 999px;

    /* シャドウ */
    --sh-sm: 0 2px 8px    rgba(58,37,16,.12);
    --sh-md: 0 4px 20px rgba(58,37,16,.18);

    /* ヘッダー高さ */
    --hh: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--hh);
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.85;
    color: var(--t-base);
    background: var(--c-cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }


/* 2. ベースレイアウト */
.container {
    width: min(740px, 100% - 2rem);
    margin-inline: auto;
}

/* 中央揃えユーティリティ */
.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-md);
}


/* 3. ヘッダー / ナビ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--hh);
    background: rgba(251,243,226,.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px dashed rgba(168,94,16,.3);
    z-index: 1000;
}

.header-inner {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-choco);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-icon { font-size: 1.3rem; }

.nav-list {
    display: flex;
    align-items: center;
    gap: .2rem;
    flex-wrap: nowrap;
}

.nav-link {
    display: block;
    padding: .35rem .6rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--t-muted);
    border-radius: var(--r-pill);
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--c-custard);
    color: var(--c-choco);
}

.nav-cta {
    background: var(--c-caramel);
    color: var(--c-white) !important;
    padding: .4rem 1rem;
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--c-choco) !important;
}

/* ハンバーガー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--c-choco);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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


/* 4. ボタン（共通） */
.btn {
    display: inline-block;
    padding: .75rem 2rem;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: var(--r-pill);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: background .2s, color .2s, transform .15s, box-shadow .2s;
}

.btn--primary {
    background: var(--c-caramel);
    color: var(--c-white);
    box-shadow: var(--sh-sm);
}

.btn--primary:hover {
    background: var(--c-choco);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.btn--outline {
    background: transparent;
    color: var(--c-caramel);
    border-color: var(--c-caramel);
}

.btn--outline:hover {
    background: var(--c-caramel);
    color: var(--c-white);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 16px;
}


/* 5. セクション共通 */
.section {
    padding: var(--sp-xl) 0;
}

/* about → safe の間だけ余白を広めに（「心のゆとり」演出） */
.section.bg-cream + .section.bg-warm {
    padding-top: calc(var(--sp-xl) * 1.6);
}

/* 背景バリエーション */
.bg-cream { background: var(--c-cream); }
.bg-white { background: var(--c-white); }
.bg-warm { background: var(--c-warm); }
.bg-dusk { background: var(--c-dusk); }
.bg-sage { background: var(--c-sage); }
.bg-cta { background: var(--c-custard); position: relative; overflow: hidden; }

/* セクションヘッダー */
.sec-head {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: var(--sp-md);
}

.sec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-caramel);
    text-align: center;
}

.sec-title {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 4vw, 1.95rem);
    font-weight: 600;
    line-height: 1.6;
    color: var(--c-choco);
    text-align: center;
}

.sec-desc {
    font-size: 15px;
    color: var(--t-muted);
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

/* 暗背景（dusk）上の文字 */
.bg-dusk .sec-label { color: rgba(247,232,160,.8); }
.bg-dusk .sec-title { color: var(--c-custard); }
.bg-dusk .sec-desc { color: rgba(245,236,216,.85); }

/* sage背景 */
.bg-sage .sec-label { color: rgba(247,232,160,.85); }
.bg-sage .sec-title { color: var(--c-white); }


/* 6. HERO */
.hero {
    padding-top: calc(var(--hh) + var(--sp-lg));
    padding-bottom: var(--sp-xl);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(247,232,160,.35) 0%, transparent 55%), radial-gradient(ellipse 60% 80% at 20% 70%, rgba(168,94,16,.10) 0%, transparent 50%);
    background-color: rgba(251,243,226,.72);
    pointer-events: none;
    z-index: 0;
}

.img-fit, .img-fit-contain {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.img-fit-contain {
    object-fit: contain;
}
.hero .img-fit, .hero .img-fit-contain {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

/* 装飾円（HEROとCTAで共通利用） */
.deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.deco--1 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(247,232,160,.5) 0%, transparent 70%);
    top: -80px; right: -80px;
}

.deco--2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(61,138,96,.2) 0%, transparent 70%);
    bottom: 0; left: -60px;
}

.deco--3 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(224,90,90,.12) 0%, transparent 70%);
    top: 30%; left: 40%;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--c-caramel);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 6vw, 3.1rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--c-choco);
    letter-spacing: .02em;
}

/* キャッチコピーのさらなる強調 */
.hero-title-em {
    display: inline-block;
    background: linear-gradient(180deg, transparent 65%, rgba(247,232,160,.8) 65%);
    padding-right: .1em;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--t-muted);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5em;
}

.tag {
    display: inline-block;
    padding: .3rem .85rem;
    font-size: 12px;
    font-weight: 700;
    background: var(--c-custard);
    color: var(--c-choco);
    border-radius: var(--r-pill);
    border: 1px dashed var(--c-caramel);
}

.hero-mascot { flex-shrink: 0; width: 220px; }

.mascot-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%,100% { transform: translateY(0); }
    50%        { transform: translateY(-12px); }
}


/* 7. チェックリスト（共通） */
.check-list {
    display: flex;
    flex-direction: column;
}

.check-list li {
    padding: .85rem 0 .85rem 2.0rem;
    position: relative;
    border-bottom: 1px dashed rgba(168,94,16,.22);
    font-size: 15px;
    font-weight: 500;
    color: var(--t-muted);
}

.check-list li::before {
    content: "☕";
    position: absolute;
    left: 0;
    top: 1.25rem;
    /*top: .85rem;*/
    line-height: 1;
}

/* 暗背景用 */
.bg-dusk .check-list li {
    color: rgba(245,236,216,.9);
    border-bottom-color: rgba(255,255,255,.12);
}

/* ライト背景用（花アイコン） */
.check-list--light li::before {
    content: "✿";
    color: var(--c-mint);
}

/* EMPATHYセクション締め文 */
.empathy-close {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-custard);
    padding-top: var(--sp-sm);
    text-align: center;
}

/* テキストブロック */
.text-block {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--t-muted);
    text-align: center;
}

.text-accent {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-caramel);
}


/* 8. カードグリッド（安心の理由など 共通） */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
}

.card {
    background: var(--c-white);
    border-radius: var(--r-md);
    padding: var(--sp-md) var(--sp-sm);
    box-shadow: var(--sh-sm);
    border: 1px dashed rgba(168,94,16,.25);
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--c-caramel);
    line-height: 1;
    margin-bottom: .5rem;
    opacity: .4;
    text-align: center;
}

.card-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-choco);
    margin-bottom: .5rem;
    line-height: 1.5;
    text-align: center;
}

.card-text {
    font-size: 13px;
    color: var(--t-hint);
    font-weight: 500;
    line-height: 1.75;
}

/* 強調カード（「聞いているだけでもOK」） */
.card--highlight {
    border: 2px solid var(--c-caramel);
    background: #FFF9EC;
    position: relative;
}

.card-highlight-badge {
    display: flex;
    align-items: center;
    background: var(--c-caramel);
    color: var(--c-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: .2rem .75rem;
    border-radius: var(--r-pill);
    margin-bottom: .5rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}


/* 9. 主催者コメント */
.organizer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-md);
}

/* 主催者・スタッフ写真エリア */
.host-photos {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.host-photo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.host-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(251,243,226,.5);
    background: rgba(251,243,226,.15);
}

.host-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 写真がない場合のプレースホルダー */
.host-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    font-size: 11px;
    color: rgba(251,243,226,.65);
    line-height: 1.4;
    text-align: center;
}

.organizer-quote {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
    font-style: normal;
    line-height: 2.1;
    color: var(--t-light);
}

.organizer-name {
    font-size: 13px;
    font-weight: 700;
    color: rgba(245,236,216,.7);
    letter-spacing: .08em;
}


/* 10. ギャラリー */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-sm);
}

.gallery-item {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder {
    width: 100%; height: 100%;
    background: var(--c-custard);
    border: 2px dashed var(--c-caramel);
    border-radius: var(--r-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--c-caramel);
    font-size: 13px;
    font-weight: 700;
}


/* 11. 参加情報テーブル */
.table-wrap {
    overflow-x: auto;
    margin-bottom: 1.0em;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.info-table tr { border-bottom: 1px dashed rgba(168,94,16,.22); }
.info-table tr:first-child { border-top: 1px dashed rgba(168,94,16,.22); }

.info-table th {
    width: 35%;
    padding: 1rem var(--sp-sm);
    text-align: center;
    font-weight: 700;
    color: var(--c-caramel);
    background: rgba(247,232,160,.35);
    vertical-align: middle;
}

.info-table td {
    padding: 1rem var(--sp-sm);
    color: var(--t-muted);
    font-weight: 500;
    vertical-align: top;
}

/* CTAブロック（テーブル下・CTAセクション等で共通） */
.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    padding-top: var(--sp-sm);
}

.cta-icon {
    font-size: 3rem;
    animation: floating 3s ease-in-out infinite;
    z-index: 2;
}

.cta-note {
    font-size: 13px;
    font-weight: 500;
    color: var(--t-hint);
}


/* 12. FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px dashed rgba(168,94,16,.22);
}

.faq-item:first-of-type {
    border-top: 1px dashed rgba(168,94,16,.22);
}

.faq-q {
    padding: 1.1rem 1rem 1.1rem 2.6rem;
    position: relative;
    font-weight: 700;
    font-size: 15px;
    color: var(--c-choco);
}

.faq-q::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 1.8rem; height: 1.8rem;
    background: var(--c-caramel);
    color: var(--c-white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-a {
    padding: 0 1rem 1.1rem 2.6rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--t-muted);
    line-height: 1.85;
}

.faq-link {
    color: var(--c-caramel);
    text-decoration: underline;
    font-weight: 700;
}

.faq-link:hover { color: var(--c-choco); }


/* 13. イベントカード */

/* PC・タブレット: 横2列 / SP: 縦1列 */
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
    align-items: start;
}

.event-card {
    background: var(--c-dusk);
    border-radius: var(--r-lg);
    padding: var(--sp-md);
    display: flex;
    flex-direction: column;
    gap: .8rem;
    height: 100%;                     /* グリッド内で高さを揃える */
    margin-bottom: 0;             /* グリッド使用時はmargin不要 */
}

/* 「一番おすすめ」カード — 枠線でハイライト */
.event-card--recommend {
    border: 2px solid rgba(247,232,160,.5);
    position: relative;
}

/* バッジ行（有料/無料バッジ ＋ おすすめバッジを横並びに） */
.event-card-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.event-badge {
    display: inline-block;
    background: var(--c-caramel);
    color: var(--c-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: .25rem .9rem;
    border-radius: var(--r-pill);
}

.event-badge--free { background: var(--c-mint); }

/* 「一番おすすめ」バッジ */
.event-recommend-badge {
    display: inline-block;
    background: var(--c-custard);
    color: var(--c-choco);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .25rem .9rem;
    border-radius: var(--r-pill);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-custard);
    text-align: center;
}

.event-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(245,236,216,.88);
    line-height: 1.85;
    flex: 1;                             /* ボタンをカード底部に揃えるためflex-grow */
}

.event-fee { font-size: 13px; color: rgba(245,236,216,.65); }
.event-fee strong { color: var(--c-mint); }

/* イベントカード内アウトラインボタン */
.event-card .btn--outline {
    align-self: flex-start;
    border-color: rgba(247,232,160,.65);
    color: var(--c-custard);
    font-size: 13px;
    padding: .5rem 1.3rem;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;  /* 修正: セミコロン抜けを修正 */
}

.event-card .btn--outline:hover {
    background: var(--c-custard);
    color: var(--c-choco);
    border-color: var(--c-custard);
}


/* 14. フローティングUI */

/* PC右側縦バナー */
.float-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    z-index: 900;
}

.float-side-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: var(--c-caramel);
    color: var(--c-white);
    padding: 1.3rem .65rem 1.5rem;
    border-radius: var(--r-md) 0 0 var(--r-md);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .1em;
    box-shadow: var(--sh-md);
    transition: background .2s, padding .2s;
}

.float-side-link:hover {
    background: var(--c-choco);
    padding-left: 1rem;
}

.float-side-icon {
    writing-mode: horizontal-tb;
    font-size: 1rem;
    transform: translateX(1px);
}

/* PC右下「上に戻る」 */
.btn-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 900;
    width: 46px; height: 46px;
    background: var(--c-choco);
    color: var(--c-custard);
    border: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--sh-md);
    transition: background .2s, transform .15s, opacity .3s;
    opacity: 0;
    pointer-events: none;
}

.btn-top.is-visible { opacity: 1; pointer-events: auto; }
.btn-top:hover { background: var(--c-caramel); transform: translateY(-2px); }

/* SP下部バナー */
.float-bottom {
    display: none;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 900;
    background: var(--c-caramel);
    padding: .65rem 1rem;
    gap: .5rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 12px rgba(58,37,16,.2);
}

.float-bottom-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--c-white);
    color: var(--c-caramel);
    font-size: 14px;
    font-weight: 700;
    padding: .7rem 1rem;
    border-radius: var(--r-pill);
    transition: background .2s;
}

.float-bottom-link:hover { background: var(--c-custard); }

.float-bottom-top {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(255,255,255,.22);
    color: var(--c-white);
    border: 2px solid rgba(255,255,255,.45);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.float-bottom-top:hover { background: rgba(255,255,255,.38); }

/* SPフッター下余白 */
body.sp-float-active { padding-bottom: 70px; }


/* 15. SEO/LLMOテキスト */
.seo-note {
    background: var(--c-cream);
    border-top: 1px dashed rgba(168,94,16,.15);
    padding: var(--sp-md) 0;
}

.seo-note p {
    font-size: 12px;
    color: var(--t-hint);
    line-height: 1.9;
    text-align: center;
}


/* 16. フッター */
.site-footer {
    background: var(--c-choco);
    padding: var(--sp-lg) 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .85rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-custard);
}

.footer-credit {
    font-size: 13px;
    font-weight: 500;
    color: rgba(245,236,216,.7);
}

/* フッター内リンク共通 */
.footer-credit a,
.footer-nav a {
    color: rgba(245,236,216,.88);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color .2s;
}

.footer-credit a:hover,
.footer-nav a:hover {
    text-decoration-color: rgba(245,236,216,.65);
}

/* SNSリンク */
.footer-sns {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.sns-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: rgba(245,236,216,.78);
    font-size: 13px;
    font-weight: 600;
    transition: color .2s;
}

.sns-link:hover { color: var(--c-custard); }

/* フッターナビ */
.footer-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
}

.footer-sep { color: rgba(245,236,216,.3); }

.footer-copy {
    font-size: 11px;
    color: rgba(245,236,216,.32);
    letter-spacing: .08em;
}


/* 17. レスポンシブ */

/* タブレット（〜900px）: ハンバーガー */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .global-nav {
        display: none;
        position: fixed;
        top: 64px;                             /* var(--hh)の固定値で確実に指定 */
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100dvh - 64px); /* dvh で実際の表示領域を確保 */
        background: rgba(251,243,226,.98);
        backdrop-filter: blur(8px);
        padding: 1.5rem 1.5rem 5rem; /* 下部はSPフローティングバナー分を確保 */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        z-index: 999;
    }

    .global-nav.is-open {
        display: block;
        /* body の overflow:hidden を上書きしてスクロール可能に */
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 1rem 1.25rem;
        width: 100%;
        border-bottom: 1px dashed rgba(168,94,16,.22);
        border-radius: 0;
        color: var(--t-base);
        font-weight: 600;
        display: block;
    }

    .nav-link:hover {
        background: rgba(247,232,160,.4);
        color: var(--c-choco);
    }

    .nav-cta {
        margin-top: 1.25rem;
        border-radius: var(--r-pill);
        text-align: center;
        border-bottom: none;
        background: var(--c-caramel);
        color: var(--c-white) !important;
        padding: .9rem 1.25rem;
    }

    .nav-cta:hover {
        background: var(--c-choco) !important;
    }

    /* PC右側・右下 → 非表示 */
    .float-side, .btn-top { display: none; }

    /* SP下部バナー → 表示 */
    .float-bottom { display: flex; }
}

/* タブレット中間（〜768px） */
@media (max-width: 768px) {
    :root { --sp-xl: 4rem; --sp-lg: 2.5rem; }
    .hero-inner { flex-direction: column-reverse; text-align: center; }
    .tag-list    { justify-content: center; }
    .hero-mascot { width: 160px; }
}

/* スマホは縦1列 */
@media (max-width: 680px) {
    .card-grid  { grid-template-columns: 1fr; }
    .event-grid { grid-template-columns: 1fr; }
}

/* スマホ（〜480px） */
@media (max-width: 480px) {
    .info-table th,
    .info-table td { font-size: 14px; padding: .8rem .6rem; }
}

/* アイコンの設定 -- */

/* 1. アイコンの基本設定（あなたの独自クラス） */
.icon-svg {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1em;         /* font-sizeに連動させるため1em */
        height: 1em;
        vertical-align: -0.125em; /* 本家の多くが採用している基準値。必要に応じて0.15emに。 */
        flex-shrink: 0;
        contain: layout; /* ブラウザの計算負荷を軽減 */
        aspect-ratio: 1 / 1; /* 正方形を維持 */
        min-height: 1em; /* 高さが計算されるまで「0」にならないようにする */
        line-height: 1; /* 0でも良いですが、1にすると文字との親和性が上がります */
        overflow: hidden; /* 中身がはみ出してレイアウトを壊すのを防ぐ */
}

.icon-svg svg {
        width: 100%;
        height: 100%;
        fill: currentColor; /* 文字色と同じ色にする */
        display: block;
}

/* 2. 本家互換：サイズ指定（必要な倍数だけ残してもOK） */
.is-1x { font-size: 1em; }
.is-2x { font-size: 2em; }
.is-3x { font-size: 3em; }
.is-4x { font-size: 4em; }
.is-5x { font-size: 5em; }
.is-6x { font-size: 6em; }
.is-7x { font-size: 7em; }
.is-8x { font-size: 8em; }
.is-9x { font-size: 9em; }
.is-10x { font-size: 10em; }
/* 6x以上を実際に使わないなら削除してOKです */

/* 3. 本家互換：微調整サイズ */
.is-2xs { font-size: .625em; line-height: .1em; vertical-align: .225em; }
.is-xs { font-size: .75em; line-height: .08333em; vertical-align: .125em; }
.is-sm { font-size: .875em; line-height: .07143em; vertical-align: .05357em; }
.is-lg { font-size: 1.25em; line-height: .05em; vertical-align: -.075em; }
.is-xl { font-size: 1.5em; line-height: .04167em; vertical-align: -.125em; }
.is-2xl { font-size: 2em; line-height: .03125em; vertical-align: -.1875em; }

/* 4. 固定幅（リスト等でアイコンの幅を揃えたい時用） */
.is-fw { text-align: center; width: 1.25em; }