@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;700;900&family=Oswald:wght@400;500;600;700&display=swap');

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

:root {
    --yellow: #F4E3B8;  /* 生成り寄りの落ち着いた淡黄 */
    --black: #2B2622;   /* 墨に寄せた濃いダークグレー */
    --white: #FFFFFF;
    --red: #B5352B;     /* 朱赤（老舗の格） */
    --shadow: #DFD8CC;  /* 生成り寄りの薄い影 */
    --accent: #8C5A3B;  /* 落ち着いた茶系アクセント（旧ターコイズ置換） */
    --pink: #A8423B;    /* 朱赤寄りに鎮静（旧ピンク置換） */

    /* デザイントークン（足場づくり：低リスク箇所で利用） */
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-soft-sm: 0 4px 16px rgba(0, 0, 0, 0.10);
    --space: 16px;
    --space-lg: 32px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--yellow);
    overflow-x: hidden;
    font-feature-settings: 'palt' 1;
    font-kerning: normal;
    cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTAiIGZpbGw9ImJsYWNrIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4='), auto;
}

/* 主要見出しの日本語組版（約物アキを詰める） */
h1, h2, h3,
.product-name,
.taste-feature-copy h3,
.museum-feature-copy h3,
.hero-main-copy {
    font-feature-settings: 'palt' 1;
    font-kerning: normal;
}

html {
    overflow-x: hidden;
}

/* バンキシー風ヒーローセクション */
.hero {
    min-height: 120vh;
    position: relative;
    background: var(--yellow);
    overflow: visible;
    padding-bottom: 100px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.hero::before {
    inset: 0;
    z-index: 11;
    background:
        radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.42) 0 14%, rgba(255, 217, 61, 0.08) 38%, rgba(74, 18, 12, 0.28) 76%, rgba(74, 18, 12, 0.4) 100%);
    transform: scale(1.08);
}

.hero::after {
    top: -24%;
    left: -50%;
    width: 42%;
    height: 148%;
    z-index: 24;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 247, 205, 0.22) 60%, transparent 100%);
    filter: blur(2px);
    transform: translateX(-45vw) skewX(-16deg);
    mix-blend-mode: screen;
}

.hero.is-cinematic::before {
    animation: heroCinematicVignette 3.4s cubic-bezier(0.16, 0.84, 0.3, 1) forwards;
}

.hero.is-cinematic::after {
    animation: heroCinematicSweep 2.5s cubic-bezier(0.16, 0.84, 0.3, 1) 0.42s forwards;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,0.32), transparent 26%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,0.03) 10px,
            rgba(0,0,0,0.03) 20px
        );
}

@keyframes bgScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(28px, 28px); }
}

/* キャラクター関連のスタイルは削除 */

.hero-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
}

.hero-stage {
    width: min(62vw, 980px);
}

.hero-logo-shell {
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: min(100%, 900px);
    margin: 0 auto 62px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    filter: blur(18px) brightness(0.82) saturate(0.96);
    transform: translateY(34px) scale(0.72) rotateX(12deg);
    transform-origin: center;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
}

.hero-logo-shell.is-visible {
    opacity: 1;
    animation: heroLogoCinematicIn 2.05s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.hero-logo-glow {
    display: none;
}

.hero-logo-shell::before,
.hero-logo-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.hero-logo-shell::before {
    inset: -18% -10%;
    z-index: 0;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.78) 0%, rgba(255, 238, 153, 0.34) 34%, transparent 70%);
    filter: blur(16px);
    transform: scale(0.72);
}

.hero-logo-shell::after {
    top: -18%;
    bottom: -18%;
    left: -24%;
    z-index: 3;
    width: 22%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.78) 48%, transparent 100%);
    filter: blur(1.5px);
    transform: translateX(-170%) skewX(-18deg);
    mix-blend-mode: screen;
}

.hero-logo-shell.is-visible::before {
    animation: heroLogoAura 2.4s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.hero-logo-shell.is-visible::after {
    animation: heroLogoShine 1.55s cubic-bezier(0.18, 0.82, 0.24, 1) 0.58s forwards;
}

.hero-logo-picture {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.hero-logo-image {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 24px rgba(122, 35, 31, 0.2));
    will-change: filter, transform;
}

.hero-logo-shell.is-visible .hero-logo-image {
    animation: heroLogoAfterglow 3.6s ease-in-out 1.65s infinite;
}

.hero-copy-block {
    max-width: 900px;
    margin: 0 auto 48px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-copy-block.is-visible {
    opacity: 1;
}

.hero-main-copy {
    margin: 0 0 42px;
    font-size: clamp(2.05rem, 4.15vw, 3.75rem);
    line-height: 1.18;
    font-weight: 900;
    color: #7a231f;
    letter-spacing: 0.015em;
    text-shadow: none;
    perspective: 1200px;
}

.hero-main-copy > span {
    display: block;
    opacity: 0;
    white-space: normal;
    filter: blur(14px);
    clip-path: inset(0 48% 0 48%);
    transform: translateY(26px) scale(0.88) rotateX(18deg);
    transform-origin: center;
}

.hero-main-copy .hero-copy-one-line {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    white-space: nowrap;
    letter-spacing: 0.08em;
    z-index: 0;
    transform-style: preserve-3d;
}

.hero-copy-word {
    display: inline-block;
    opacity: 0;
    color: #84231f;
    filter: blur(18px);
    text-shadow:
        0 1px 0 #fff8d7,
        0 2px 0 #f2c15f,
        0 3px 0 #d8843d,
        0 4px 0 #9e3024,
        0 9px 0 rgba(110, 20, 16, 0.36),
        0 20px 30px rgba(104, 22, 18, 0.22);
    transform: translateY(-0.08em) translateZ(260px) scale(2.25) rotateX(56deg);
    transform-origin: center bottom;
    will-change: transform, opacity, filter, text-shadow;
}

.hero-nowrap {
    font-style: normal;
    white-space: nowrap;
}

.hero-copy-block.is-visible .hero-copy-one-line {
    animation: heroCopyLineReveal 1.5s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.hero-copy-block.is-visible .hero-copy-word {
    animation: heroCopyWordZoomIn 1.45s cubic-bezier(0.12, 0.78, 0.18, 1) forwards;
}

.hero-copy-block.is-visible .hero-copy-word:nth-child(1) {
    animation-delay: 0.08s;
}

.hero-copy-block.is-visible .hero-copy-word:nth-child(2) {
    animation-delay: 0.38s;
}

.hero-copy-block.is-visible .hero-copy-word:nth-child(3) {
    animation-delay: 0.68s;
}

.hero-copy-block.is-visible .hero-copy-word:nth-child(4) {
    animation-delay: 0.98s;
}

@keyframes heroCinematicVignette {
    0% {
        opacity: 0;
        transform: scale(1.08);
    }
    22% {
        opacity: 1;
        transform: scale(1.02);
    }
    68% {
        opacity: 0.54;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes heroCinematicSweep {
    0% {
        opacity: 0;
        transform: translateX(-45vw) skewX(-16deg);
    }
    18% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(340vw) skewX(-16deg);
    }
}

@keyframes heroLogoCinematicIn {
    0% {
        opacity: 0;
        filter: blur(18px) brightness(0.82) saturate(0.96);
        transform: translateY(34px) scale(0.72) rotateX(12deg);
    }
    42% {
        opacity: 1;
        filter: blur(1px) brightness(1.18) saturate(1.08);
        transform: translateY(-8px) scale(1.11) rotateX(0deg);
    }
    62% {
        opacity: 1;
        filter: blur(0) brightness(1.04) saturate(1.04);
        transform: translateY(3px) scale(0.975);
    }
    100% {
        opacity: 1;
        filter: blur(0) brightness(1) saturate(1);
        transform: translateY(0) scale(1);
    }
}

@keyframes heroLogoAura {
    0% {
        opacity: 0;
        transform: scale(0.72);
    }
    36% {
        opacity: 0.94;
        transform: scale(1.08);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

@keyframes heroLogoShine {
    0% {
        opacity: 0;
        transform: translateX(-170%) skewX(-18deg);
    }
    22% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(560%) skewX(-18deg);
    }
}

@keyframes heroLogoAfterglow {
    0%, 100% {
        filter: drop-shadow(0 18px 24px rgba(122, 35, 31, 0.2));
        transform: translateY(0) scale(1);
    }
    50% {
        filter: drop-shadow(0 24px 30px rgba(122, 35, 31, 0.28)) drop-shadow(0 0 16px rgba(255, 248, 210, 0.52));
        transform: translateY(-1px) scale(1.006);
    }
}

@keyframes heroCopyLineReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        clip-path: inset(0 0 0 0);
        transform: translateY(18px) scale(1.08);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0);
        transform: translateY(0) scale(1);
    }
}

@keyframes heroCopyWordZoomIn {
    0% {
        opacity: 0;
        filter: blur(18px);
        text-shadow:
            0 1px 0 #fff8d7,
            0 2px 0 #f2c15f,
            0 3px 0 #d8843d,
            0 4px 0 #9e3024,
            0 14px 0 rgba(110, 20, 16, 0.08),
            0 28px 44px rgba(104, 22, 18, 0.08);
        transform: translateY(-0.08em) translateZ(260px) scale(2.25) rotateX(56deg);
    }
    48% {
        opacity: 1;
        filter: blur(2px);
        text-shadow:
            0 1px 0 #fff8d7,
            0 2px 0 #f2c15f,
            0 3px 0 #d8843d,
            0 4px 0 #9e3024,
            0 10px 0 rgba(110, 20, 16, 0.28),
            0 26px 38px rgba(104, 22, 18, 0.26);
        transform: translateY(0.04em) translateZ(0) scale(0.94) rotateX(0deg);
    }
    72% {
        opacity: 1;
        filter: blur(0);
        text-shadow:
            0 1px 0 #fff8d7,
            0 2px 0 #f2c15f,
            0 3px 0 #d8843d,
            0 4px 0 #9e3024,
            0 9px 0 rgba(110, 20, 16, 0.34),
            0 22px 32px rgba(104, 22, 18, 0.24);
        transform: translateY(-0.04em) translateZ(0) scale(1.06) rotateX(0deg);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        text-shadow:
            0 1px 0 #fff8d7,
            0 2px 0 #f2c15f,
            0 3px 0 #d8843d,
            0 4px 0 #9e3024,
            0 8px 0 rgba(110, 20, 16, 0.32),
            0 20px 30px rgba(104, 22, 18, 0.22);
        transform: translateY(0) scale(1);
    }
}

.hero-subcopy-marquee {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-subcopy-line {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: min(100%, 860px);
    padding: 8px 16px;
    border: 2px solid rgba(122, 35, 31, 0.18);
    border-radius: 999px;
    background: rgba(255, 249, 232, 0.82);
    box-shadow: 0 8px 20px rgba(122, 35, 31, 0.08);
    font-size: clamp(0.98rem, 1.55vw, 1.28rem);
    line-height: 1.35;
    font-weight: 800;
    color: rgba(122, 35, 31, 0.92);
    letter-spacing: 0.04em;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10px) scale(1.06);
}

.hero-proof-primary {
    color: #ffffff;
    background: #c8201f;
    border-color: rgba(122, 35, 31, 0.34);
    box-shadow: 0 10px 22px rgba(122, 35, 31, 0.16);
}

.hero-subcopy-line.is-visible {
    opacity: 1;
    animation: heroSubcopyCinematicIn 1.15s cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

@keyframes heroSubcopyCinematicIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(16px) scale(0.9);
    }
    62% {
        opacity: 1;
        filter: blur(1px);
        transform: translateY(-2px) scale(1.055);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

/* タイトルコンテナ */
.title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
}

.main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    margin: 0;
    display: flex;
    gap: 0.1em;
    perspective: 1000px;
}

.title-char {
    display: inline-block;
    color: var(--black);
    text-shadow: 
        3px 3px 0 var(--white),
        6px 6px 0 var(--accent),
        6px 6px 15px rgba(0,0,0,0.1);
    animation: charBounce 2s ease-in-out infinite, charColor 8s ease-in-out infinite;
    transform-origin: center bottom;
    cursor: default;
    transition: all 0.3s ease;
}

.title-char:hover {
    animation-play-state: paused;
    transform: translateY(-20px) rotate(10deg) scale(1.2);
    color: var(--pink);
}

@keyframes charBounce {
    0%, 100% { 
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    25% { 
        transform: translateY(-15px) rotateX(10deg) rotateY(-5deg);
    }
    50% { 
        transform: translateY(-5px) rotateX(-5deg) rotateY(5deg);
    }
    75% { 
        transform: translateY(-10px) rotateX(5deg) rotateY(-3deg);
    }
}

@keyframes charColor {
    0%, 100% { color: var(--black); }
    25% { color: var(--pink); }
    50% { color: var(--accent); }
    75% { color: var(--red); }
}

/* タイトル下線アニメーション */
.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--pink) 0%, 
        var(--accent) 25%, 
        var(--yellow) 50%, 
        var(--accent) 75%, 
        var(--pink) 100%
    );
    background-size: 200% 100%;
    animation: underlineFlow 3s linear infinite;
    border-radius: 2px;
}

@keyframes underlineFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.subtitle {
    font-size: 1rem;
    color: #7a231f;
    margin-top: 16px;
    background: rgba(255,255,255,0.78);
    padding: 10px 20px;
    display: inline-block;
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    margin-bottom: 10px;
    border-radius: 999px;
    border: 2px solid rgba(44, 62, 80, 0.12);
    font-weight: 900;
}

.subtitle-sub {
    font-size: 1rem;
    color: var(--black);
    background: rgba(255,255,255,0.92);
    padding: 10px 18px;
    display: inline-block;
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    margin-top: 10px;
    border-radius: 999px;
    font-weight: 900;
}

.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, max-content));
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

.hero-trust-badges .media-badge {
    padding: 8px 12px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.92);
}

.hero-trust-badges .media-badge:nth-child(1) {
    transform: none;
}

.hero-trust-badges .media-badge:nth-child(2) {
    transform: none;
}

.hero-trust-badges .media-badge:nth-child(3) {
    transform: none;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-products-link {
    min-width: 280px;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 13px 18px;
    border: 2px solid var(--black);
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: var(--black);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-secondary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

/* 装飾要素 */
.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ヒーロー浮遊メディア関連は完全削除 */

/* メディアロゴ表示エリア */
.hero-media-logos {
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    top: 0;
    left: 0;
    z-index: 15;
    pointer-events: none;
    overflow: visible;
}

.media-logo {
    position: absolute;
    height: 60px;
    max-width: none;
    width: auto;
    opacity: 0;
    filter: blur(18px) brightness(0.92) saturate(1.05) drop-shadow(0 12px 18px rgba(0,0,0,0.2));
    transform: translateY(36px) scale(0.62) rotate(-8deg);
    transform-origin: center;
    pointer-events: auto;
    will-change: transform, opacity, filter;
}

.media-logo--tabelog {
    top: clamp(270px, 36vh, 350px);
    left: clamp(42px, 5vw, 84px);
    height: clamp(96px, 14.5vh, 146px);
}

.media-logo--bescon {
    top: clamp(455px, 55.5vh, 520px);
    left: clamp(48px, 5.6vw, 96px);
    height: clamp(136px, 18vh, 188px);
}

.media-logo--wakako {
    top: clamp(620px, 72vh, 670px);
    left: clamp(42px, 3vw, 76px);
    height: clamp(104px, 13vh, 136px);
}

.media-logo--admachi {
    top: clamp(260px, 31vh, 328px);
    right: clamp(22px, 2.6vw, 48px);
    height: clamp(124px, 17vh, 176px);
}

.media-logo--taxi {
    top: clamp(620px, 71vh, 675px);
    right: clamp(42px, 3.2vw, 82px);
    height: clamp(82px, 10.8vh, 118px);
}

@media (min-width: 769px) and (max-width: 1180px) {
    .hero-media-logos {
        min-height: 720px;
    }

    .media-logo--tabelog {
        top: clamp(250px, 35vh, 320px);
        left: 18px;
        height: clamp(74px, 9.5vh, 92px);
    }

    .media-logo--bescon {
        top: clamp(430px, 54vh, 500px);
        left: 18px;
        height: clamp(98px, 13vh, 118px);
    }

    .media-logo--wakako {
        top: clamp(590px, 72vh, 650px);
        left: 8px;
        height: clamp(66px, 8.5vh, 76px);
    }

    .media-logo--admachi {
        top: clamp(250px, 32vh, 305px);
        right: 12px;
        height: clamp(86px, 11.5vh, 104px);
    }

    .media-logo--taxi {
        top: clamp(590px, 71vh, 650px);
        right: 8px;
        height: clamp(46px, 6vh, 54px);
    }
}

@media (min-width: 1181px) and (max-width: 1700px) {
    .media-logo--tabelog {
        left: clamp(34px, 3vw, 52px);
        height: clamp(96px, 13vh, 120px);
    }

    .media-logo--bescon {
        left: clamp(34px, 3vw, 54px);
        height: clamp(128px, 16vh, 150px);
    }

    .media-logo--wakako {
        left: 18px;
        height: clamp(92px, 11.5vh, 104px);
    }

    .media-logo--admachi {
        right: clamp(18px, 1.8vw, 32px);
        height: clamp(118px, 15.5vh, 140px);
    }

    .media-logo--taxi {
        right: clamp(18px, 1.8vw, 32px);
        height: clamp(66px, 8.2vh, 78px);
    }
}

.media-logo.is-visible {
    animation-name: heroMediaLogoReveal, floatMediaLogo;
    animation-duration: 2.1s, var(--float-duration, 6s);
    animation-delay: 0s, 2.1s;
    animation-timing-function: cubic-bezier(0.16, 0.84, 0.24, 1), ease-in-out;
    animation-fill-mode: forwards, both;
    animation-iteration-count: 1, infinite;
}

.media-logo:nth-child(1) {
    --float-duration: 7.4s;
}

.media-logo:nth-child(2) {
    --float-duration: 8s;
}

.media-logo:nth-child(3) {
    --float-duration: 7.1s;
}

.media-logo:nth-child(4) {
    --float-duration: 8.4s;
}

.media-logo:nth-child(5) {
    --float-duration: 7.6s;
}

.media-logo:nth-child(6) {
    --float-duration: 8.2s;
}

.media-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
    opacity: 1;
    animation-play-state: paused;
}

@keyframes heroMediaLogoReveal {
    0% {
        opacity: 0;
        filter: blur(18px) brightness(0.92) saturate(1.05) drop-shadow(0 12px 18px rgba(0,0,0,0.2));
        transform: translateY(36px) scale(0.62) rotate(-8deg);
    }
    44% {
        opacity: 1;
        filter: blur(2px) brightness(1.12) saturate(1.08) drop-shadow(0 18px 26px rgba(0,0,0,0.24));
        transform: translateY(-8px) scale(1.14) rotate(3deg);
    }
    72% {
        opacity: 1;
        filter: blur(0) brightness(1.08) saturate(1.05) drop-shadow(0 16px 22px rgba(0,0,0,0.22));
        transform: translateY(2px) scale(0.97) rotate(-1deg);
    }
    100% {
        opacity: 1;
        filter: blur(0) brightness(1.08) saturate(1.05) drop-shadow(0 10px 18px rgba(0,0,0,0.18));
        transform: translateY(0) scale(1);
    }
}

@keyframes floatMediaLogo {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    25% {
        transform: translateY(-10px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    75% {
        transform: translateY(-10px) rotate(0deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero.is-cinematic::before,
    .hero.is-cinematic::after,
    .hero-logo-shell.is-visible,
    .hero-logo-shell.is-visible::before,
    .hero-logo-shell.is-visible::after,
    .hero-logo-shell.is-visible .hero-logo-image,
    .hero-copy-block.is-visible .hero-main-copy span,
    .hero-copy-block.is-visible .hero-copy-one-line::before,
    .hero-copy-block.is-visible .hero-copy-one-line::after,
    .media-logo.is-visible,
    .hero-subcopy-line.is-visible {
        animation: none !important;
    }

    .hero-logo-shell,
    .hero-copy-block,
    .hero-main-copy span,
    .media-logo,
    .hero-subcopy-line {
        opacity: 1;
        filter: none;
        clip-path: none;
        transform: none;
    }

    .hero-main-copy .hero-copy-one-line {
        letter-spacing: 0.015em;
    }
}

.decoration {
    position: absolute;
    animation: floatDecoration 4s ease-in-out infinite;
    opacity: 0.8;
}

.decoration:nth-child(odd) {
    animation-duration: 5s;
    animation-delay: 0.5s;
}

.decoration:nth-child(even) {
    animation-duration: 6s;
    animation-direction: reverse;
}

@keyframes floatDecoration {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(10deg); }
    50% { transform: translateY(5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

/* スクロールインジケーター */
.scroll-indicator {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 130;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-30px) scale(1.1); }
    50% { transform: translateY(-20px) scale(1); }
    80% { transform: translateY(-5px) scale(0.95); }
}

/* アメコミ風セクション */
.comic-section {
    padding: 100px 0;
    position: relative;
}

.comic-panel {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border: 4px solid var(--black);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    padding: 80px;
    position: relative;
    transform: none;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.comic-panel:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

/* 商品セクションのコミックパネルは「傾き」と「ホバー演出」を完全に廃止
   - 親パネルが回転していると中の商品カードもまるごと斜めに見えるため transform: none
   - hover / active / focus-within でも同値を強制し、box-shadow / border-color の
     state-change による 0.3s フリッカーすら出ないように transition: none
   - !important が必要な理由: js/animations.js の setupScrollAnimations() が
     全 .comic-panel に inline で transform/transition を当てるため、CSS の
     specificity だけでは inline style に勝てない。FAQ など他セクションの
     comic-panel には影響しない（#products-section スコープ） */
#products-section .comic-panel,
#products-section .comic-panel:hover,
#products-section .comic-panel:active,
#products-section .comic-panel:focus-within {
    transform: none !important;
    transition: none !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12) !important;
}

#products-section .product-card,
#products-section .product-card:hover,
#products-section .product-card:active,
#products-section .product-card:focus-within {
    transform: none;
}

#products-section .add-to-cart,
#products-section .checkout-direct {
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

#products-section .add-to-cart:hover,
#products-section .add-to-cart:active,
#products-section .add-to-cart:focus-visible,
#products-section .checkout-direct:hover,
#products-section .checkout-direct:active,
#products-section .checkout-direct:focus-visible {
    transform: none;
}

#products-section .add-to-cart:hover::after,
#products-section .add-to-cart:active::after {
    right: -30px;
}

#products-section .qty-btn:active {
    transform: none;
}

.panel-number {
    position: absolute;
    top: -30px;
    left: 30px;
    background: var(--red);
    color: var(--white);
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    padding: 10px 30px;
    border: 4px solid var(--black);
    transform: none;
}

/* 商品グリッド */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.products-shipping-note {
    max-width: 760px;
    margin: 0 auto 28px;
    padding: 12px 18px;
    border: 3px solid var(--black);
    border-radius: 12px;
    background: #fbf3df;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    transform: none;
}

.products-included-note {
    max-width: 780px;
    margin: -10px auto 34px;
    padding: 12px 18px;
    border: 3px solid var(--black);
    border-radius: 12px;
    background: #eef3e9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.7;
    text-align: center;
}

.products-guest-note {
    max-width: 680px;
    margin: 14px auto 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    color: #5b3a08;
}

.product-card {
    background: var(--white);
    border: 3px solid var(--black);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    touch-action: manipulation;
}

.product-card:active {
    transform: none;
}

/* ホバー演出は完全に廃止：マウス操作でも視覚変化が「カートに追加」ボタンの押下を妨げるため */

.product-image {
    width: 100%;
    height: 250px;
    background: var(--yellow);
    position: relative;
    overflow: hidden;
}

/* ストライプ画像を削除 - 動画表示のため
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.1) 20px,
        rgba(0,0,0,0.1) 40px
    );
}
*/

.product-info {
    padding: 30px;
}

.product-stamp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 4px 8px;
    border: 2px solid var(--black);
    border-radius: 999px;
    background: var(--yellow);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    transform: none;
}

.product-stamp-accent {
    background: var(--pink);
    color: var(--white);
}

.product-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.9rem;
    color: var(--black);
    margin-bottom: 8px;
}

.product-pack {
    font-size: 0.96rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.56;
    opacity: 0.92;
    margin-bottom: 10px;
}

.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.product-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border: 2px solid var(--black);
    border-radius: 999px;
    background: #fff6cf;
    font-size: 0.76rem;
    font-weight: 700;
}

.product-stock-badge {
    margin: 10px 0 12px;
    padding: 10px 12px;
    border: 3px solid var(--black);
    border-radius: 12px;
    background: #fbeecf;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.55;
}

.product-stock-badge.is-low-stock {
    background: #ffe2df;
    color: #8f2022;
}

.product-stock-badge.is-loading {
    background: #eef6ff;
    color: #245178;
}

.product-stock-badge.is-sold-out {
    background: #f1f1f1;
    color: #666;
}

.product-option-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 900;
}

.product-order-count {
    margin: 12px 0 16px;
    padding: 14px;
    border: 3px solid var(--black);
    border-radius: 14px;
    background: #fffaf0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

/* レビューカードのタイトル（商品名のフォント指定を引きずらない） */
.review-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.product-price {
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--red);
    text-shadow: none;
}

.product-price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 8px;
}

.product-tax-note {
    font-size: 0.82rem;
    font-weight: 900;
    opacity: 0.8;
    padding-bottom: 4px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
}

.product-card-featured {
    background: linear-gradient(180deg, #fffdf2 0%, #fff7d4 100%);
}

.product-card-phone {
    background: linear-gradient(180deg, #fffaf2 0%, #fdf0dc 100%);
}

.product-image-phone {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(226, 90, 122, 0.24), transparent 42%),
        linear-gradient(135deg, #f9e9ce 0%, #f3dcb4 100%);
}

.phone-order-visual {
    width: 100%;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    color: var(--black);
}

.phone-order-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    border: 2px solid var(--black);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.phone-order-visual strong {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.3rem;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.phone-order-visual p {
    margin: 0;
    max-width: 28ch;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 700;
}

.phone-order-box {
    margin-top: 12px;
    padding: 14px 14px 12px;
    border: 3px solid var(--black);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.phone-order-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    color: var(--black);
}

.phone-order-link-label {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #8f2022;
}

.phone-order-link-number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.phone-order-note {
    margin: 8px 0 0;
    font-size: 0.86rem;
    line-height: 1.6;
    font-weight: 700;
    color: #5b3a08;
}

.add-to-cart {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--black);
    padding: 11px 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

/* 数量コントロール（カジュアルデザイン） */
.qty-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qty-input {
    width: 120px;
    height: 52px;
    text-align: center;
    font-size: 1.5rem;
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--shadow);
    font-weight: 700;
}

.qty-btn {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    line-height: 1;
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--shadow);
    cursor: pointer;
}

.qty-btn:active {
    transform: translateY(1px);
}

/* 数字フィールドの上下スピンを非表示（数量だけ対象） */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* 商品オプション（餃子のエビ/ニラ）を大きく可愛く */
.product-options .option-buttons {
    display: flex;
    gap: 12px;
}

.product-options .option-btn {
    padding: 14px 16px !important;
    font-size: 1.2rem !important;
    border: 3px solid var(--black) !important;
    border-radius: 10px;
    box-shadow: 4px 4px 0 var(--shadow);
}

.product-options .option-btn.active {
    transform: none;
}

.mix-advanced {
    margin: 12px 0 16px;
}

.mix-advanced summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border: 3px solid var(--black);
    border-radius: 14px;
    background: #fff6cf;
    box-shadow: 4px 4px 0 var(--shadow);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.45;
    list-style: none;
}

.mix-advanced summary::-webkit-details-marker {
    display: none;
}

.mix-advanced summary::after {
    content: "配分を変更する ▼";
    margin-top: 4px;
    font-size: 0.92rem;
    color: #5b3a08;
}

.mix-advanced[open] summary::after {
    content: "配分を閉じる ▲";
}

.mix-advanced-title {
    color: var(--red);
    font-size: 1rem;
}

.mix-advanced summary strong {
    font-size: 1.12rem;
}

.mix-advanced summary small {
    font-size: 0.88rem;
    color: #5b3a08;
}

.mix-advanced .product-options {
    margin-top: 14px;
}

.mix-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.mix-counter-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.mix-counter-panel.is-unavailable {
    opacity: 0.55;
    pointer-events: none;
}

.mix-counter {
    padding: 14px 14px 12px;
    border: 4px solid var(--black);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.mix-counter.is-shrimp {
    background: #fff3eb;
    border-color: #d36a30;
}

.mix-counter.is-nira {
    background: #eef7ea;
    border-color: #356649;
}

.mix-counter.is-disabled {
    opacity: 0.5;
}

.mix-counter-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.mix-counter-note {
    font-size: 0.88rem;
    line-height: 1.4;
    color: #5e554e;
    font-weight: 700;
}

.product-options .mix-counter-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "value value"
        "minus plus";
    gap: 10px;
    align-items: center;
}

.product-options .mix-counter-btn {
    width: 100%;
    height: 72px;
    min-width: 0;
    min-height: 72px;
    border: 4px solid var(--black);
    border-radius: 18px;
    background: var(--white);
    color: var(--black);
    font-size: 2.7rem;
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--shadow);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    padding: 0 !important;
    margin: 0 !important;
    appearance: none;
    -webkit-appearance: none;
}

.product-options .mix-counter-btn[data-delta="-1"] {
    grid-area: minus;
}

.product-options .mix-counter-btn[data-delta="1"] {
    grid-area: plus;
}

.product-options .mix-counter-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.product-options .mix-counter-value {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: value;
    min-height: 68px;
    padding: 0 16px;
    min-width: 0;
    border: 3px solid rgba(21, 21, 21, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--black);
}

.mix-type-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 3px solid var(--black);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    font-weight: 900;
    box-shadow: 3px 3px 0 var(--shadow);
}

.mix-type-chip.is-disabled {
    opacity: 0.45;
}

.mix-summary {
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--black);
}

.mix-help {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #61564f;
}

/* チェックアウト側の数量ボタンも大きく */
.quantity-btn {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    line-height: 1;
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--shadow);
    cursor: pointer;
    margin: 0 6px;
}
.quantity-btn:active { transform: translateY(1px); }

.add-to-cart:hover {
    background: var(--pink);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.add-to-cart::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
}

.add-to-cart:hover::after {
    right: 20px;
}

/* 購入手続きボタン */
.checkout-direct {
    background: var(--yellow);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 15px 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    position: relative;
    font-weight: bold;
}

.checkout-direct:hover {
    background: var(--yellow);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.checkout-direct::after {
    content: '💳';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* バンキシー風引用セクション */
.quote-section {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-text {
    font-size: 3rem;
    font-weight: 900;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    opacity: 0.1;
    font-family: 'Bebas Neue', cursive;
    width: 100%;
    max-width: 100%;
    text-align: center;
    pointer-events: none;
}

.access-section {
    padding-top: 0;
}

.access-panel {
    transform: rotate(0deg);
}

.access-panel:hover {
    transform: rotate(0deg) scale(1.01);
}

.access-lead {
    max-width: 760px;
    margin: 0 auto 34px;
    font-size: 1.12rem;
    line-height: 1.9;
    text-align: center;
}

.access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.access-map-wrap,
.access-card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.access-map {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    border: 0;
}

.access-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access-list {
    display: grid;
    gap: 18px;
}

.access-item {
    display: grid;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.12);
}

.access-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.access-label {
    color: #6b5b4d;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.access-value {
    color: var(--black);
    font-size: 1.28rem;
    line-height: 1.6;
}

.access-value a {
    color: inherit;
    text-decoration: none;
}

.access-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.access-link-button {
    width: auto;
    min-width: 190px;
    margin-top: 0;
    justify-content: center;
}

.access-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 20px;
    border: 3px solid var(--black);
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--shadow);
}

.access-phone-link:hover {
    background: var(--yellow);
    transform: translateY(-1px);
}

.access-note {
    margin-top: auto;
    color: #6d6159;
    font-size: 0.98rem;
    line-height: 1.8;
}

/* 年表セクション */
.timeline {
    background: var(--white);
    padding: 100px 20px;
    position: relative;
}

.timeline-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--black);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 80px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content-box {
    width: 42%;
    background: var(--yellow);
    border: 4px solid var(--black);
    padding: 30px;
    position: relative;
    transform: none;
    transition: all 0.3s ease;
}

.timeline-content-box:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.timeline-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red);
    color: var(--white);
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    padding: 10px 20px;
    border: 3px solid var(--black);
    z-index: 10;
}

/* メディアセクション */
.media-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.media-badge {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 20px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    transform: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    outline: none; /* フォーカス時の縁を無効化 */
}

.media-badge:hover {
    transform: translateY(-3px);
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.media-badge:focus {
    outline: none; /* フォーカス時の縁を無効化 */
}

.media-badge:active {
    outline: none; /* アクティブ時の縁を無効化 */
}

/* TASTE */
.taste-feature-shell,
.taste-gallery-grid {
    display: block;
}

.taste-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 28px;
    align-items: stretch;
    padding: 22px;
    background: linear-gradient(145deg, #fbf3df 0%, #ffffff 48%, #f6ecd2 100%);
    border: 4px solid var(--black);
    border-radius: 26px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.taste-feature-media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid var(--black);
    min-height: 420px;
    background: #f3d981;
}

.taste-feature-media picture,
.taste-card__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.taste-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.taste-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: left;
    padding: 10px 8px;
}

.taste-feature-kicker {
    margin: 0;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    color: var(--red);
}

.taste-feature-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: var(--black);
    text-shadow: none;
}

.taste-feature-copy p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.taste-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.taste-card {
    margin: 0;
    background: var(--white);
    border: 4px solid var(--black);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.taste-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.taste-card--wide {
    grid-column: span 2;
}

.taste-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f3d981;
}

.taste-card--wide .taste-card__media {
    aspect-ratio: 16 / 9;
}

.taste-card--tall .taste-card__media {
    aspect-ratio: 4 / 5;
}

.taste-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.taste-card__caption {
    padding: 18px 18px 20px;
    text-align: left;
}

.taste-card__caption h3 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    line-height: 1.15;
}

.taste-card__caption p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    margin-bottom: 16px;
    padding: 16px 20px;
    transform: none;
}
.faq-item[open] { transform: none; }
.faq-item summary {
    list-style: none;
    font-weight: 900;
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
    padding-left: 34px;
}
.faq-item summary::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(2px) rotate(0deg);
    transition: transform 0.2s ease;
}
.faq-item[open] summary::before { transform: translateY(2px) rotate(90deg); }
.faq-body {
    margin-top: 10px;
    font-size: 1.1rem;
}

/* 即購入情報バー（削除済み - ヒーロータイトル内に統合） */

/* タイムライン 写真枠 */
.timeline-photo {
    width: 42%;
    height: 220px;
    background: var(--white);
    border: 4px solid var(--black);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    transform: none;
    transition: transform 0.4s ease, opacity 0.4s ease, translate 0.4s ease;
}
.timeline-item:nth-child(odd) .timeline-photo { margin-right: 20px; }
.timeline-item:nth-child(even) .timeline-photo { margin-left: 20px; }
/* Stripe effect removed per user request */
.timeline-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.timeline-item:nth-child(odd) .timeline-photo { transform: translateX(-24px); margin-right: 40px; }
.timeline-item:nth-child(even) .timeline-photo { transform: translateX(24px); margin-left: 40px; }

iframe {
    max-width: 100%;
}

/* スクロール表示アニメーション（共通） */
.reveal-on-scroll { opacity: 0; transform: translateY(18px); }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* 手作りプロセス */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--black);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin: 0 auto 20px;
    transform: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.process-step:nth-child(1) .process-number { background: var(--pink); }
.process-step:nth-child(2) .process-number { background: var(--accent); }
.process-step:nth-child(3) .process-number { background: var(--red); }
.process-step:nth-child(4) .process-number { background: #9B59B6; }

.process-step:hover .process-number {
    transform: scale(1.1);
}

/* Pulse animation for active process number */
.process-number.pulse-animation {
    animation: pulseScale 1s ease-in-out infinite;
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}


/* カート */
.cart {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--white);
    border-left: 8px solid var(--black);
    transition: right 0.3s ease;
    z-index: 500;
    overflow-y: auto;
}

.cart.open {
    right: 0;
}

.cart-header {
    background: var(--black);
    color: var(--white);
    padding: 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close {
    cursor: pointer;
    font-size: 2rem;
}

.cart-items {
    padding: 30px;
}

.cart-item {
    border-bottom: 2px solid var(--black);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-btn {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: var(--white);
    border: 3px solid var(--black);
    padding: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    width: calc(100% - 60px);
    margin: 30px;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.checkout-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* 統合された購入手続きボタン */
.checkout-direct-unified {
    padding: 25px 180px;
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--shadow);
    transition: all 0.2s ease;
    display: inline-block;
    min-width: 500px;
}

.checkout-direct-unified:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--shadow);
    background: #3FBAB1;
}

.checkout-direct-unified:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 2px 2px 0 var(--shadow);
}

.checkout-direct-unified:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
}

.products-checkout-cta {
    text-align: center;
    margin-top: 40px;
}

.cooking-intro {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 700;
}

.cooking-poster-frame {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 18px;
    background: linear-gradient(180deg, #fffef7 0%, #f7eed6 100%);
    border: 4px solid var(--black);
    border-radius: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: none;
}

.cooking-poster-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    background: #fff;
}

.cooking-poster-highlights {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.cooking-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 2px solid var(--black);
    border-radius: 999px;
    background: var(--white);
    box-shadow: 4px 4px 0 rgba(21, 21, 21, 0.12);
    font-size: 0.95rem;
    font-weight: 900;
}

.cooking-download {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.cooking-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border: 3px solid var(--black);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 6px 6px 0 var(--shadow);
    text-decoration: none;
    color: var(--black);
    font-weight: 900;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    min-width: 240px;
}

.cooking-download-btn:hover,
.cooking-download-btn:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 9px 9px 0 var(--shadow);
    background: #fffbe9;
    outline: none;
}

.cooking-download-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--shadow);
}

.cooking-download-btn--pdf {
    background: linear-gradient(180deg, #fff7d0 0%, #ffe88a 100%);
}

.cooking-download-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.cooking-download-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}

.cooking-download-title {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.cooking-download-sub {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(21, 21, 21, 0.7);
}

@media (max-width: 1080px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .checkout-direct-unified {
        min-width: 0;
        width: min(100%, 680px);
        padding: 24px 40px;
    }
}

@media (max-width: 720px) {
    .cooking-download {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cooking-download-btn {
        min-width: 0;
        width: 100%;
        padding: 12px 18px;
        box-shadow: 5px 5px 0 var(--shadow);
    }

    .products-shipping-note {
        margin-bottom: 22px;
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .products-included-note {
        margin-bottom: 26px;
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .product-info {
        padding: 24px 20px;
    }

    .product-name {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 2.6rem;
    }

    .product-price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .product-options .option-buttons,
    .qty-wrap {
        flex-wrap: wrap;
    }

    .qty-wrap {
        justify-content: flex-start;
    }

    .qty-input {
        width: 96px;
        height: 48px;
        font-size: 1.25rem;
    }

    .qty-btn {
        width: 48px;
        height: 48px;
    }

    .checkout-direct-unified {
        width: 100%;
        padding: 18px 20px;
        font-size: 1.4rem;
    }

    .products-checkout-cta p {
        line-height: 1.6;
    }

    .mix-advanced summary {
        padding: 14px;
    }
}

/* フローティングカートボタン */
.floating-cart {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 132px;
    height: 120px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 140;
}

.floating-cart:hover {
    transform: scale(1.08);
}

.floating-cart.is-empty {
    display: none;
}

.cart-count {
    position: absolute;
    top: 45px;
    right: 55px;
    background: var(--white);
    color: var(--black);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 4px solid #FF69B4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@media (max-width: 720px) {
    .floating-cart {
        top: auto;
        right: 10px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        width: 72px;
        height: 66px;
        opacity: 0.94;
    }

    .floating-cart img {
        width: 76px !important;
        height: 68px !important;
    }

    .cart-count {
        top: 17px;
        right: 20px;
        width: 24px;
        height: 24px;
        border-width: 3px;
        font-size: 0.82rem;
    }
}

/* 100名店画像 */
.meiten-image-container {
    position: absolute;
    top: 32px;
    left: 34px;
    width: 214px;
    height: 214px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(24px) scale(1.14);
}

.meiten-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.06) saturate(1.03) drop-shadow(0 10px 18px rgba(0,0,0,0.26));
    /* animation: impactScale 4s ease-in-out infinite; */
}

.meiten-image-container.is-visible {
    animation: heroMediaLogoReveal 2.3s cubic-bezier(0.18, 0.9, 0.2, 1) forwards;
}

@keyframes impactScale {
    0% { 
        transform: scale(0.8);
    }
    35% {
        transform: scale(1.3);
    }
    42.5% {
        transform: scale(1.3);
    }
    90% { 
        transform: scale(0.8);
    }
    100% { 
        transform: scale(0.8);
    }
}

/* 特殊エフェクト */
.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.explosion {
    position: absolute;
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--pink);
    font-weight: 900;
    transform: rotate(-15deg);
    animation: explode 0.6s ease-out;
    pointer-events: none;
    z-index: 550;
    text-shadow: 2px 2px 0 var(--accent);
}

/* かわいいCTAパネル（カートに被らない位置右下） */
.cta-panel {
    position: fixed;
    left: 12px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    z-index: 160;
    display: none;
    background: transparent; /* 緑だけにするため土台は透明 */
    border: none;
    transform: none;
    animation: ctaPanelDrift 3.2s ease-in-out infinite;
}
.cta-panel .add-to-cart {
    background: linear-gradient(135deg, #ff7064 0%, #ff8f60 56%, #ffd55d 125%);
    border: 4px solid var(--black);
    min-height: 68px;
    width: auto;
    margin-top: 0;
    padding: 12px 48px 12px 18px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
    color: var(--white);
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    line-height: 1;
    overflow: visible;
}

.cta-panel .add-to-cart::after {
    content: '→';
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.45rem;
    opacity: 0.96;
}

.cta-panel .add-to-cart:hover {
    background: linear-gradient(135deg, #ff6257 0%, #ff8557 48%, #ffcd46 120%);
    transform: translate(-2px, -2px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.cta-panel .add-to-cart:hover::after {
    right: 14px;
}

.cta-panel-link::before {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    pointer-events: none;
}

.cta-panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #fff7d2;
    text-transform: uppercase;
}

.cta-panel-label {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

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

@keyframes explode {
    0% { transform: scale(0) rotate(-15deg); opacity: 1; }
    100% { transform: scale(2) rotate(-15deg); opacity: 0; }
}
/* FAQパネル内のお問い合わせフォームを水平に */
.comic-panel.faq-panel .contact-form-container {
    transform: none !important;
    /* フォーム自体がホバーされても親の:hover状態を無視 */
    pointer-events: auto;
}

/* 親パネルのホバー時は補正しない（常に水平で固定） */
.comic-panel.faq-panel:hover .contact-form-container {
    transform: none !important;
}

/* MEDIAモーダルの画像周りのスタイル - ファイル情報を非表示 */
.museum-modal img::before,
.museum-modal img::after {
    content: none !important;
    display: none !important;
}

.museum-modal img {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}

.museum-section-shell {
    margin-top: 30px;
    padding: 20px 0;
}

.museum-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 26px;
    padding: 20px;
    border: 4px solid var(--black);
    border-radius: 24px;
    background: linear-gradient(145deg, #fbf3df 0%, #ffffff 44%, #f6ecd2 100%);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.museum-feature-media {
    display: block;
    width: 100%;
    padding: 0;
    background: #f5f5f5;
    border: 3px solid var(--black);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}

.museum-feature-media img {
    display: block;
    width: 100%;
    height: min(52vw, 430px);
    object-fit: cover;
}

.museum-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    min-width: 0;
}

.museum-feature-kicker {
    margin: 0;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.12em;
    font-size: 1rem;
    color: var(--red);
}

.museum-feature-copy h3 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.museum-feature-meta {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.76);
}

.museum-feature-cta {
    align-self: flex-start;
    padding: 12px 18px;
    border: 3px solid var(--black);
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 5px 5px 0 var(--shadow);
}

.museum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

.museum-card {
    position: relative;
    cursor: pointer;
    border: 3px solid var(--black);
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.museum-card:hover,
.museum-card:focus-visible,
.museum-card.is-active {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    border-color: var(--accent);
    outline: none;
}

.museum-card-image {
    width: 100%;
    height: 178px;
    object-fit: cover;
    display: block;
}

.museum-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(18, 18, 18, 0.82) 28%, rgba(18, 18, 18, 0.92) 100%);
    color: white;
    font-size: 0.88rem;
    line-height: 1.45;
    word-break: break-word;
}

/* 全体セーフティネット：モーション低減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
