/* ===========================
   C案 - IMAGE IMPACT DESIGN
   画像インパクト重視レイアウト
   =========================== */

:root {
    --clr-bg: #faf7f2;
    --clr-text: #2c2013;
    --clr-text-light: #6b5d4e;
    --clr-accent: #8b6914;
    --clr-gold: #c6a700;
    --clr-dark: #1a1208;
    --ff-serif: "Noto Serif JP", serif;
    --ff-sans: "Noto Sans JP", sans-serif;
    --sp-s: clamp(1rem, 3vw, 1.5rem);
    --sp-m: clamp(1.5rem, 5vw, 3rem);
    --sp-l: clamp(3rem, 8vw, 6rem);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-sans);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* ========================
   フローティングバー
   ======================== */
.floating-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(26, 18, 8, 0.95);
    backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 100;
}
.floating-bar.visible { transform: translateY(0); }
.floating-bar-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.8rem 1.5rem; gap: 1rem;
}
.floating-name { color: #fff; font-size: 0.85rem; font-weight: 500; }
.floating-price { color: var(--clr-gold); font-size: 0.85rem; font-weight: 700; }
.btn-float {
    background: var(--clr-gold); color: #fff; border: none;
    padding: 0.6rem 1.5rem; border-radius: 6px; font-weight: 700;
    cursor: pointer; font-size: 0.85rem; transition: all 0.3s;
}
.btn-float:hover { background: #dab800; transform: translateY(-1px); }

/* ========================
   ヘッダー
   ======================== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50; padding: 1rem 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}
.header-inner { max-width: 1400px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
    width: 36px; height: 36px; border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%; display: grid; place-items: center;
    font-family: var(--ff-serif); font-size: 0.9rem; color: #fff; font-weight: 600;
}
.logo-text { display: flex; flex-direction: column; }
.logo-en { font-size: 0.65rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.8); }
.logo-jp { font-size: 0.7rem; color: #fff; }
.logo-mark-sm { width: 30px; height: 30px; font-size: 0.75rem; }

/* ========================
   HERO: フルスクリーン
   ======================== */
.hero {
    position: relative; width: 100%; height: 100vh; height: 100svh;
    min-height: 600px; overflow: hidden;
    display: flex; align-items: flex-end;
}
.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 40%;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(10,4,0,0.50) 0%, rgba(10,4,0,0.25) 55%, rgba(10,4,0,0.05) 100%),
        linear-gradient(to top, rgba(10,4,0,0.50) 0%, transparent 50%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 var(--sp-m) clamp(3rem, 10vh, 6rem);
    max-width: 600px;
}
.hero-eyebrow {
    font-size: 0.75rem; letter-spacing: 0.15em;
    color: var(--clr-gold); margin-bottom: 1rem;
    text-transform: uppercase;
}
.hero-catch {
    font-family: var(--ff-serif); font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1.5rem;
}
.hero-catch em {
    font-style: normal; color: var(--clr-gold);
    text-shadow: 0 0 40px rgba(198, 167, 0, 0.4);
}
.hero-sub {
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.8;
}
.btn-hero {
    display: inline-block; background: var(--clr-gold); color: #fff;
    padding: 1rem 2.5rem; border-radius: 8px; text-decoration: none;
    font-weight: 700; font-size: 1rem; transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(198,167,0,0.3);
}
.btn-hero:hover { background: #dab800; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(198,167,0,0.4); }
.hero-scroll-hint {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.2em;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ========================
   Social Proof バナー
   ======================== */
.proof-bar {
    background: var(--clr-dark); padding: 1rem 0;
    border-bottom: 1px solid rgba(198,167,0,0.2);
}
.proof-bar-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; flex-wrap: wrap; padding: 0 1rem;
}
.proof-item { display: flex; align-items: baseline; gap: 0.5rem; }
.proof-star { color: var(--clr-gold); font-size: 0.9rem; }
.proof-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.proof-num { color: #fff; font-weight: 700; font-size: 0.9rem; }
.proof-sep { color: rgba(255,255,255,0.2); }

/* ========================
   シーン: フルブリード画像
   ======================== */
.scene-full {
    position: relative; width: 100%; height: 80vh;
    min-height: 500px; overflow: hidden;
    display: flex; align-items: center;
}
.scene-full-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.scene-full-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,4,0,0.65) 0%, rgba(10,4,0,0.20) 70%);
}
.scene-full-right .scene-full-overlay {
    background: linear-gradient(to left, rgba(10,4,0,0.65) 0%, rgba(10,4,0,0.20) 70%);
}
.scene-full-content {
    position: relative; z-index: 2;
    padding: var(--sp-l) var(--sp-m);
    max-width: 550px;
}
.scene-full-right .scene-full-content {
    margin-left: auto;
}
.scene-tag {
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--clr-gold); text-transform: uppercase; margin-bottom: 1rem;
}
.scene-title-large {
    font-family: var(--ff-serif); font-size: clamp(2rem, 5vw, 3rem);
    color: #fff; font-weight: 700; line-height: 1.3; margin-bottom: 1.5rem;
}
.scene-text-large {
    color: rgba(255,255,255,0.85); font-size: clamp(0.85rem, 1.5vw, 1rem);
    line-height: 2; margin-bottom: 2rem;
}
.btn-scene-lg {
    display: inline-block; color: #fff;
    border: 1px solid rgba(255,255,255,0.5); padding: 0.8rem 2rem;
    text-decoration: none; font-size: 0.9rem; border-radius: 6px;
    transition: all 0.3s;
}
.btn-scene-lg:hover {
    background: rgba(255,255,255,0.15); border-color: #fff;
}

/* ========================
   ストーリー
   ======================== */
.story { background: var(--clr-bg); }

.story-intro {
    text-align: center; padding: var(--sp-l) var(--sp-m) var(--sp-m);
}
.story-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--clr-accent); text-transform: uppercase; margin-bottom: 1rem;
}
.story-title {
    font-family: var(--ff-serif); font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700; line-height: 1.4;
}

.story-text-block {
    max-width: 700px; margin: 0 auto;
    padding: 0 var(--sp-m) var(--sp-l);
    text-align: center;
}
.story-text-block p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--clr-text-light); line-height: 2;
    margin-bottom: 1.5rem;
}

/* 素材：超大型画像ブロック */
.ingredients-visual {
    display: grid; grid-template-columns: 1fr 1fr;
    width: 100%;
}
.ingredient-block { position: relative; }
.ingredient-img-full {
    position: relative; width: 100%;
    height: 70vh; min-height: 400px; overflow: hidden;
}
.ingredient-hero-img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center center;
}
.img-shibu { object-position: center 30% !important; }
.img-fuka  { object-position: center 55% !important; }
.ingredient-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%);
}
.ingredient-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem; z-index: 2;
}
.ingredient-label {
    display: inline-block; background: #7a2e3a;
    color: #fff; width: 40px; height: 40px; border-radius: 50%;
    font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700;
    line-height: 40px; text-align: center; margin-bottom: 0.8rem;
}
.ingredient-label-fuka { background: #2d5016; }
.ingredient-name-lg {
    font-family: var(--ff-serif); font-size: 1.6rem;
    color: #fff; font-weight: 700; margin-bottom: 0.5rem;
}
.ingredient-note-lg {
    font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.7;
}

/* 店舗：フルブリード */
.store-full {
    position: relative; width: 100%; height: 60vh;
    min-height: 400px; overflow: hidden;
}
.store-full-img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: left center;
}
.store-full-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%);
}
.store-full-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 3rem; z-index: 2; text-align: center;
}
.store-year {
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--clr-gold); text-transform: uppercase;
}
.store-name {
    font-family: var(--ff-serif); font-size: clamp(1.3rem, 3vw, 2rem);
    color: #fff; font-weight: 700; margin: 0.5rem 0;
}
.store-text { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* こだわりポイント */
.points-section {
    padding: var(--sp-l) var(--sp-m);
    background: var(--clr-dark);
}
.points-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.point-item {
    padding: 2rem; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; transition: all 0.5s;
}
.point-item:hover { border-color: rgba(198,167,0,0.3); }
.point-num {
    font-family: var(--ff-serif); font-size: 2rem;
    color: var(--clr-gold); font-weight: 700; margin-bottom: 0.5rem;
}
.point-title {
    font-family: var(--ff-serif); font-size: 1.1rem;
    color: #fff; font-weight: 600; margin-bottom: 0.5rem;
}
.point-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* ========================
   口コミ
   ======================== */
.reviews-section {
    overflow: hidden; padding: var(--sp-m) 0;
    background: var(--clr-bg);
}
.reviews-track {
    display: flex; gap: 1.5rem; white-space: nowrap;
    will-change: transform;
}
.review-bubble {
    flex: 0 0 auto; background: #fff;
    border: 1px solid #e8dcc8; border-radius: 12px;
    padding: 1.5rem 2rem; max-width: 400px; white-space: normal;
}
.review-bubble p {
    font-size: 0.9rem; color: var(--clr-text); line-height: 1.7;
    margin-bottom: 0.5rem;
}
.review-bubble span { font-size: 0.75rem; color: var(--clr-text-light); }

/* ========================
   注文セクション
   ======================== */
.order {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}
.order-visual {
    position: relative; overflow: hidden;
}
.order-hero-img {
    width: 100%; height: 100%; object-fit: cover;
    min-height: 500px;
}
.order-badge {
    position: absolute; top: 2rem; right: 2rem;
    background: rgba(198,167,0,0.9);
    color: #fff; padding: 0.8rem 1.2rem;
    border-radius: 8px; font-size: 0.75rem;
    font-weight: 700; text-align: center; line-height: 1.4;
}
.order-info {
    padding: var(--sp-l) var(--sp-m);
    display: flex; flex-direction: column; justify-content: center;
    background: var(--clr-bg);
}
.order-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--clr-accent); text-transform: uppercase; margin-bottom: 0.5rem;
}
.order-title {
    font-family: var(--ff-serif); font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; line-height: 1.4; margin-bottom: 1.5rem;
}
.order-title span { color: var(--clr-accent); }
.order-price-block {
    display: flex; align-items: baseline; gap: 0.5rem;
    margin-bottom: 2rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0d5c5;
}
.order-price-main {
    font-family: var(--ff-serif); font-size: 2.5rem;
    color: var(--clr-accent); font-weight: 700;
}
.order-price-sub { font-size: 0.85rem; color: var(--clr-text-light); }
.order-table {
    width: 100%; border-collapse: collapse; margin-bottom: 2rem;
}
.order-table th, .order-table td {
    padding: 0.8rem 0; border-bottom: 1px solid #e8dcc8;
    text-align: left; font-size: 0.85rem;
}
.order-table th {
    width: 90px; color: var(--clr-text-light);
    font-weight: 500; vertical-align: top;
}
.btn-order {
    width: 100%; background: var(--clr-gold); color: #fff;
    border: none; padding: 1.2rem; border-radius: 8px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s; box-shadow: 0 4px 24px rgba(198,167,0,0.3);
}
.btn-order:hover { background: #dab800; transform: translateY(-2px); }
.btn-order-sub { background: #fff; color: var(--clr-gold); border: 2px solid var(--clr-gold); box-shadow: none; }
.btn-order-sub:hover { background: #fdf8e8; transform: translateY(-2px); }
.order-btn-group { display: flex; gap: 1rem; margin-bottom: 0.5rem; }
.order-btn-item { flex: 1; }
.order-btn-label { font-size: 0.8rem; color: var(--clr-text-light); margin-bottom: 0.5rem; font-weight: 500; }
.order-btn-label span { font-weight: 700; color: var(--clr-accent); }
.order-note { font-size: 0.75rem; color: var(--clr-text-light); margin-top: 1rem; }

/* ========================
   FAQ
   ======================== */
.faq { padding: var(--sp-l) var(--sp-m); background: #fff; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-title {
    font-family: var(--ff-serif); font-size: 1.5rem;
    text-align: center; margin-bottom: 2rem;
}
.faq-item {
    border-bottom: 1px solid #e8dcc8; padding: 1.2rem 0;
}
.faq-q {
    cursor: pointer; font-weight: 500; font-size: 0.95rem;
    list-style: none; position: relative; padding-right: 2rem;
}
.faq-q::after {
    content: "+"; position: absolute; right: 0; top: 0;
    font-size: 1.3rem; color: var(--clr-accent); transition: transform 0.3s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
    font-size: 0.85rem; color: var(--clr-text-light);
    line-height: 1.8; padding-top: 1rem;
}

/* ========================
   最終CTA
   ======================== */
.final-cta {
    position: relative; width: 100%; min-height: 60vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}
.final-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.final-overlay {
    position: absolute; inset: 0;
    background: rgba(10,4,0,0.65);
}
.final-content {
    position: relative; z-index: 2;
    padding: var(--sp-l) var(--sp-m);
}
.final-cta-copy {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.final-cta-title {
    font-family: var(--ff-serif); font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff; font-weight: 700; line-height: 1.4; margin-bottom: 1.5rem;
}
.final-price {
    font-size: 1rem; color: var(--clr-gold);
    font-weight: 700; margin-bottom: 2rem;
}
.btn-final {
    display: inline-block; background: var(--clr-gold); color: #fff;
    border: none; padding: 1.2rem 3rem; border-radius: 8px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s; box-shadow: 0 4px 24px rgba(198,167,0,0.3);
}
.btn-final:hover { background: #dab800; transform: translateY(-2px); }
.btn-final-sub { background: transparent; border: 2px solid var(--clr-gold); box-shadow: none; }
.btn-final-sub:hover { background: rgba(198,167,0,0.15); transform: translateY(-2px); }
.final-btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-btn-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.final-btn-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.final-btn-label span { color: var(--clr-gold); font-weight: 700; }
.final-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 1rem; }

/* ========================
   フッター
   ======================== */
.footer {
    background: var(--clr-dark); padding: 2rem;
    text-align: center;
}
.footer-inner {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer .logo-mark { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.footer .logo-en { color: rgba(255,255,255,0.5); }
.footer .logo-jp { color: rgba(255,255,255,0.7); }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.25); }

/* ========================
   実ロゴ画像
   ======================== */
/* 暗背景用: 黒→白、白背景→透明 */
.logo-img {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: 50px;
    filter: invert(1);
    mix-blend-mode: screen;
}
/* 明背景用: 白背景→透明、黒ロゴそのまま */
.logo-img-light {
    filter: none;
    mix-blend-mode: multiply;
}
.logo-img-sm { height: 36px; }
.logo-img-lg { height: 80px; display: block; margin: 0 auto 0.4rem; }

/* ========================
   アニメーション
   ======================== */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
    opacity: 1; transform: translateY(0);
}

/* ========================
   ペースト2種リード・ボトムテキスト
   ======================== */
.ingredients-lead {
    background: var(--clr-dark);
    padding: clamp(2.5rem, 6vw, 4rem) var(--sp-m);
    text-align: center;
}
.ingredients-lead-text {
    font-family: var(--ff-serif);
    font-size: clamp(1.25rem, 3.5vw, 1.8rem);
    color: #fff;
    line-height: 1.9;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.ingredients-lead-text strong {
    color: var(--clr-gold);
    font-weight: 700;
    font-size: 1.1em;
}

.ingredients-bottom {
    background: var(--clr-bg);
    padding: var(--sp-l) var(--sp-m);
    text-align: center;
}
.ingredients-bottom-text {
    font-family: var(--ff-serif);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--clr-text-light);
    line-height: 2;
}

/* ========================
   風鈴堂 紹介ブロック
   ======================== */
.furin-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.furin-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.furin-bg-sp { display: none; }
@media (max-width: 768px) {
    .furin-bg-pc { display: none; }
    .furin-bg-sp {
        display: block;
        object-position: 20% center;
    }
}
.furin-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(10,4,0,0.85) 0%, rgba(10,4,0,0.6) 50%, rgba(10,4,0,0.15) 100%),
        linear-gradient(to top, rgba(10,4,0,0.3) 0%, transparent 40%);
}
.furin-content {
    position: relative; z-index: 2;
    max-width: 560px;
    padding: clamp(3rem, 8vh, 6rem) var(--sp-m);
    margin-left: clamp(2rem, 8vw, 8rem);
}
.furin-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--clr-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.furin-title {
    font-family: var(--ff-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.furin-name {
    font-size: 0.85rem;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.furin-name strong { font-size: 1rem; }
.furin-body {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: rgba(255,255,255,0.75);
    line-height: 2;
    margin-bottom: 1.2rem;
}
.furin-body strong { color: rgba(255,255,255,0.95); }
.furin-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.furin-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(198,167,0,0.25);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    flex: 1;
    min-width: 200px;
}
.furin-badge-icon { font-size: 1.4rem; flex-shrink: 0; }
.furin-badge span:last-child {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.furin-badge strong { color: #fff; font-size: 0.85rem; }

@media (max-width: 768px) {
    .furin-section { min-height: auto; }
    .furin-overlay {
        background:
            linear-gradient(to bottom, rgba(10,4,0,0.6) 0%, rgba(10,4,0,0.35) 40%, rgba(10,4,0,0.6) 100%);
    }
    .furin-content {
        margin-left: 0;
        padding: 3rem 1.5rem;
    }
    .furin-badges { flex-direction: column; }
    .furin-badge { min-width: unset; }
}

/* ========================
   ジェラートインパクト（新規）
   ======================== */
.gelato-impact {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.gelato-impact-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.gelato-impact {
    background: #1a1208;
}
.gelato-impact-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(10,4,0,0.80) 0%, rgba(10,4,0,0.05) 55%),
        linear-gradient(to right, rgba(10,4,0,0.35) 0%, rgba(10,4,0,0.0) 55%);
}
.gelato-impact-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--sp-m) clamp(3rem, 8vh, 5rem);
    max-width: 640px;
}
.gelato-impact-tag {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--clr-gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.gelato-impact-title {
    font-family: var(--ff-serif);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.gelato-impact-sub {
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin-bottom: 2rem;
}
.btn-gelato-impact {
    display: inline-block;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.55);
    padding: 0.85rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.08);
}
.btn-gelato-impact:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
}

/* ========================
   レスポンシブ（モバイル）
   ======================== */
@media (max-width: 768px) {
    .hero { min-height: 100vh; height: auto; }
    .hero-bg-img { object-position: center 30%; }
    .hero-content { padding: 80px 1.5rem 1.5rem; }
    .hero-scroll-hint { display: none; }
    .review-bubble { max-width: 70vw; }

    .gelato-impact { height: 75vh; }
    .gelato-impact-content { padding: 0 1.5rem 3rem; }

    .scene-full { height: 70vh; }
    .scene-full-content { padding: 2rem 1.5rem; }
    .scene-full-right .scene-full-content { margin-left: 0; }
    .scene-full-overlay,
    .scene-full-right .scene-full-overlay {
        background: linear-gradient(to top, rgba(10,4,0,0.75) 0%, rgba(10,4,0,0.15) 60%);
    }
    .scene-full-content {
        position: absolute; bottom: 0; left: 0; right: 0;
    }

    .store-full { height: 30vh; min-height: 220px; overflow: visible; }
    .store-full-img { object-position: 10% center !important; }
    .store-full-caption {
        bottom: -6rem !important;
    }
    .points-section { padding-top: 5rem !important; }

    .ingredients-visual { grid-template-columns: 1fr; }
    .ingredient-img-full { height: 50vh; }

    .points-grid { grid-template-columns: 1fr; }

    .order { grid-template-columns: 1fr; }
    .order-hero-img { min-height: 300px; }

    .floating-bar-inner { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    .floating-name { display: none; }
}
