/* =========================================
   NFT漫画プロジェクト 国内版テンプレート
   第9弾 あばちょ『はじめは「あ」から。』
   Design: マンガ・コミックコンベンション風
   ========================================= */

/* Sub Nav (ヘッダー下スティッキーサブナビ) */
.sub-nav {
    position: fixed;
    top: -50px;
    left: 0; right: 0;
    z-index: 899;
    background: var(--primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: top 0.3s ease;
}
.sub-nav.visible { top: 60px; }
.sub-nav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.sub-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 16px;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}
.sub-nav a:hover,
.sub-nav a.active {
    color: #fff;
    border-bottom-color: var(--cta);
}
.sub-nav-cta {
    color: var(--cta) !important;
}
@media (max-width: 768px) {
    .sub-nav.visible { top: 56px; }
    .sub-nav a { font-size: 0.75rem; padding: 8px 12px; }
}

:root {
    --primary: #1B2A4A;
    --primary-light: #2E4068;
    --cta: #E8553D;
    --cta-hover: #D04430;
    --cta-glow: rgba(232, 85, 61, 0.4);
    --accent: #C8A85C;
    --accent-light: #F0E4C4;
    --pop-blue: #2E8FE8;
    --pop-yellow: #FFD93D;
    --pop-pink: #FF6B9D;
    --bg-body: #FAF8F4;
    --bg-warm: #F3EDE2;
    --bg-dark: #0F1923;
    --text-main: #1a1a1a;
    --text-sub: #444;
    --text-light: #888;
    --border-bold: 3px solid #000;
    --border-color: #d0c8b8;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-en: 'Oswald', sans-serif;
    --shadow-comic: 5px 5px 0 rgba(0,0,0,0.15);
    --shadow-card: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-pop: 6px 6px 0 #000;
    --radius: 4px;
    /* CTA: INO Fine（ロイヤルブルー）/ CAMPFIRE（赤） */
    --ino-cta: #2563EB;
    --ino-cta-hover: #1D4ED8;
    --camp-cta: #E8553D;
    --camp-cta-hover: #D04430;
}

/* =========================================
   Base
   ========================================= */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-jp);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
    margin: 0; padding: 0;
    padding-top: clamp(56px, 10vw, 72px);
    /* ハーフトーンドット背景 */
    background-image: radial-gradient(circle, #e0ddd5 1px, transparent 1px);
    background-size: 24px 24px;
}

body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%; left: 0; right: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.bg-warm { background: var(--bg-warm); }

.sp-only { display: none; }
.text-bold { font-weight: bold; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* =========================================
   コミック風パーツ
   ========================================= */

/* セクション区切りのギザギザ線 */
.section-divider {
    height: 6px;
    background: repeating-linear-gradient(
        90deg, #000 0, #000 20px, transparent 20px, transparent 24px
    );
}

/* スピードライン背景 */
.speed-lines::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.02) 10px,
        rgba(0,0,0,0.02) 11px
    );
    pointer-events: none;
    z-index: 0;
}

/* 集中線エフェクト */
.focus-lines::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 200%; height: 200%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg, rgba(0,0,0,0.03) 2deg,
        transparent 4deg, transparent 8deg
    );
    pointer-events: none;
    z-index: 0;
}

/* =========================================
   Typography - コミック風見出し
   ========================================= */
.section-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
    font-family: var(--font-en);
    color: var(--text-main);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.05em;
    transform: skewX(-3deg);
}

.section-title-en {
    display: block;
    font-size: 0.8rem;
    font-family: var(--font-en);
    color: var(--cta);
    margin-bottom: 4px;
    letter-spacing: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: var(--cta);
    margin: 10px auto 0;
    transform: skewX(15deg);
}

.section-intro {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text-sub);
}

.text-highlight {
    background: linear-gradient(transparent 55%, var(--pop-yellow) 55%);
    font-weight: bold;
    padding: 0 3px;
}

.tag-row { margin-bottom: 20px; }

.tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    font-size: 0.75rem;
    margin-right: 6px;
    font-weight: bold;
    transform: skewX(-8deg);
    letter-spacing: 0.05em;
}

/* =========================================
   Buttons - CTA最適化（マーケティング）
   ========================================= */

/* メインCTA: コーラルレッド → 視認性・緊急性 */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cta);
    color: #fff;
    padding: 16px 44px;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: var(--font-jp);
    border: 3px solid #000;
    box-shadow: var(--shadow-pop);
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
    background: var(--cta-hover);
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 #000;
    color: #fff;
}

/* パルスアニメ付きCTA */
.btn-primary.pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: var(--shadow-pop), 0 0 0 0 var(--cta-glow); }
    50% { box-shadow: var(--shadow-pop), 0 0 0 12px transparent; }
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 3px solid #000;
    background: #fff;
    color: #000;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 4px 4px 0 #000;
}

.btn-secondary:hover {
    background: var(--cta);
    color: #fff;
    border-color: var(--cta);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--cta);
}

.btn-spec {
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 10px;
}

.btn-spec:hover {
    background: #000;
    color: #fff;
}

/* disabled 状態 */
.btn-primary.disabled {
    position: relative;
    overflow: visible;
    background: #aaa;
    border-color: #888;
    box-shadow: 3px 3px 0 #666;
    cursor: not-allowed;
    animation: none;
}

/* COMING SOON バッジ（支援プラン・グッズ用） */
.sale-soon-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e63b2e;
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 2px 8px;
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1.4;
    z-index: 1;
}

.btn-primary.disabled:hover {
    transform: none;
    box-shadow: 3px 3px 0 #666;
    background: #aaa;
}

/* =========================================
   Header
   ========================================= */
header {
    background: rgba(250, 248, 244, 0.95);
    border-bottom: var(--border-bold);
    height: clamp(56px, 10vw, 72px);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 99999;
    backdrop-filter: blur(10px);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img { height: clamp(20px, 5vw, 28px); width: auto; }

.project-name {
    font-family: var(--font-en);
    font-size: clamp(0.65rem, 2vw, 0.95rem);
    line-height: 1.1;
    color: var(--text-main);
    border-left: 3px solid var(--cta);
    padding-left: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-name span {
    color: var(--cta);
    font-size: 0.85em;
    font-weight: 900;
}

.header-nav { margin-left: auto; margin-right: 20px; }
.header-nav ul { display: flex; gap: 20px; align-items: center; }

.header-nav a {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 900;
    color: var(--text-main);
    white-space: nowrap;
}

.header-nav a:hover { color: var(--cta); }

@media (max-width: 900px) { .header-nav { display: none; } }

.menu-toggle {
    display: block;
    font-size: 1.6rem;
    cursor: pointer;
    color: #000;
    border: none;
    background: none;
    z-index: 10001;
}

.mobile-menu-overlay {
    position: fixed;
    top: clamp(56px, 10vw, 72px);
    left: 0; width: 100%;
    height: calc(100vh - clamp(56px, 10vw, 72px));
    background: var(--bg-body);
    z-index: 10000;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-top: var(--border-bold);
    overflow-y: auto;
}

.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay ul { text-align: center; }
.mobile-menu-overlay li { margin: 14px 0; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.mobile-menu-overlay a { font-size: 1.1rem; font-weight: 900; color: #000; }

/* =========================================
   Animations
   ========================================= */
.anim-target { opacity: 0; }

.anim-fade-up.visible { animation: fadeUp 0.8s ease-out forwards; }
@keyframes fadeUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.anim-zoom-in.visible { animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.anim-slide-left.visible { animation: slideLeft 0.8s ease-out forwards; }
@keyframes slideLeft {
    from { transform: translateX(-80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.anim-slide-right.visible { animation: slideRight 0.8s ease-out forwards; }
@keyframes slideRight {
    from { transform: translateX(80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.anim-pop.visible { animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards; }
@keyframes popIn {
    from { transform: scale(0.7) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.anim-flip.visible { animation: flipInX 0.8s ease-out forwards; }
@keyframes flipInX {
    from { transform: perspective(400px) rotateX(80deg); opacity: 0; }
    to { transform: perspective(400px) rotateX(0deg); opacity: 1; }
}


/* =========================================
   HERO Section - コミックコンベンション風
   ========================================= */
.hero {
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: var(--bg-warm);
    position: relative;
}

/* ギャラリースライダー */
.hero-gallery-area {
    width: 100%;
    background: linear-gradient(180deg, #E8A87C 0%, #D4856A 30%, #C8705A 50%, #D4856A 70%, #E8A87C 100%);
    position: relative;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
    overflow: hidden;
    cursor: pointer;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: #C8705A;
}

/* ナビ矢印 */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    width: 48px; height: 48px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.hero-nav:hover { background: var(--cta); border-color: var(--cta); }
.hero-prev { left: 12px; }
.hero-next { right: 12px; }

/* ドット（非表示 - サムネイルで代用） */
.hero-dots { display: none; }
.hero-dot { display: none; }

/* サムネイル */
/* サムネイルストリップ（パララックス除外） */
.hero-thumbs {
    display: flex; gap: 6px;
    padding: 10px 16px;
    background: #C0685A;
    overflow-x: auto;
    justify-content: safe center;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 5;
}

.hero-thumbs::-webkit-scrollbar { height: 0; }

.hero-thumb {
    flex-shrink: 0;
    width: 72px; height: 72px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    opacity: 0.5;
    transition: all 0.3s;
}

.hero-thumb.active { border-color: var(--cta); opacity: 1; }
.hero-thumb:hover { opacity: 0.8; }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Hero テキスト - コミック風パネル */
.hero-text-area {
    background: #fff;
    padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 60px);
    text-align: center;
    position: relative;
    border-top: 6px solid var(--cta);
    overflow: hidden;
}

/* 斜めストライプ装飾 */
.hero-text-area::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(232,85,61,0.05) 8px,
        rgba(232,85,61,0.05) 9px
    );
    pointer-events: none;
}

.hero-text-area::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 200px; height: 200px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(27,42,74,0.04) 8px,
        rgba(27,42,74,0.04) 9px
    );
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: var(--cta);
    color: #fff;
    padding: 6px 24px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    transform: skewX(-8deg);
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
}

.hero-artist-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 900;
    font-family: var(--font-serif);
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}


/* =========================================
   About (STORY) - コミックパネル風
   ========================================= */
#about { position: relative; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border: var(--border-bold);
    box-shadow: 8px 8px 0 var(--pop-blue);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.about-img:hover { transform: rotate(0deg) scale(1.02); }

.about-text h3 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 900;
    font-family: var(--font-serif);
    border-left: 6px solid var(--cta);
    padding-left: 16px;
    line-height: 1.5;
}

.about-text p { color: var(--text-sub); font-size: 0.95rem; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-img { transform: none; }
}

/* =========================================
   Artist - 吹き出し + コミック風
   ========================================= */
#artist { position: relative; }

.artist-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.artist-icon-wrap { text-align: center; }

.artist-icon {
    width: 130px; height: 130px;
    border-radius: 50%;
    border: 4px solid #000;
    box-shadow: 5px 5px 0 var(--cta);
    object-fit: cover;
}

.artist-name-main {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-serif);
    margin: 0;
}

.artist-bio {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 2;
    position: relative;
    z-index: 2;
}

/* メッセージ - 吹き出し風 */


.message-card::before {
    content: '';
    position: absolute;
    top: -20px; left: 50px;
    border-width: 0 20px 20px 20px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
}

.message-card::after {
    content: '';
    position: absolute;
    top: -15px; left: 53px;
    border-width: 0 17px 17px 17px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.message-label {
    font-weight: 900;
    color: var(--cta);
    margin-bottom: 12px;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

.message-card p {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.8;
}

/* 制作風景 */
.making-section { margin-top: 10px; }

.making-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
}

.making-title i { color: var(--cta); margin-right: 8px; }

/* 制作風景ラッパー（矢印ナビ付き） */
.making-marquee-wrap {
    position: relative;
}

.making-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    width: 40px; height: 40px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: all 0.3s;
}

.making-nav:hover { background: var(--cta); border-color: var(--cta); }
.making-nav-prev { left: 8px; }
.making-nav-next { right: 8px; }

/* 制作風景マーキー（1段横スクロールループ） */
.making-marquee {
    overflow: hidden;
    position: relative;
    cursor: grab;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.making-marquee:active { cursor: grabbing; }

.making-track {
    display: flex;
    gap: 8px;
    width: max-content;
    will-change: transform;
}

.making-item {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border: 2px solid #000;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.making-item:hover { box-shadow: var(--shadow-pop); }

.making-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 6px; right: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 26px; height: 26px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.making-item { position: relative; }
.making-item:hover::after { opacity: 1; }

.making-item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 600px) {
    .making-item { width: 140px; height: 140px; }
}

/* =========================================
   Preview - マンガコマ風
   ========================================= */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.preview-item {
    overflow: hidden;
    border: var(--border-bold);
    box-shadow: var(--shadow-comic);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.preview-item::after {
    content: 'TAP';
    position: absolute;
    bottom: 10px; right: 10px;
    background: var(--cta);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 900;
    font-family: var(--font-en);
    opacity: 0;
    transition: 0.3s;
}

.preview-item:hover::after { opacity: 1; }
.preview-item:hover { transform: scale(1.03); box-shadow: 8px 8px 0 rgba(0,0,0,0.2); }
.preview-item img { width: 100%; display: block; }

/* =========================================
   Video
   ========================================= */
.video-placeholder {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: var(--primary);
    border: var(--border-bold);
    box-shadow: var(--shadow-comic);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 21px
    );
}

.video-coming-soon {
    text-align: center;
    color: rgba(255,255,255,0.7);
    z-index: 1;
}

.video-coming-soon i { font-size: 3rem; margin-bottom: 16px; color: var(--cta); }

.video-coming-soon p {
    font-size: 1.4rem; font-weight: 900;
    font-family: var(--font-en);
    letter-spacing: 0.2em;
    margin: 0 0 8px; color: #fff;
}

.video-coming-soon span { font-size: 0.85rem; }

/* =========================================
   Goals - パワフルなカード
   ========================================= */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.goal-card {
    background: #fff;
    border: var(--border-bold);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-comic);
    transition: transform 0.3s, box-shadow 0.3s;
}

.goal-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 rgba(0,0,0,0.2); }

.goal-icon { font-size: 2.5rem; margin-bottom: 12px; color: var(--primary); }

.goal-card-title {
    font-size: 1.3rem; font-weight: 900;
    margin-bottom: 10px; color: var(--primary);
    border-bottom: 3px solid var(--cta);
    display: inline-block;
    align-self: center;
    padding-bottom: 4px;
}


.goal-link:hover { background: var(--cta); color: #fff; }

/* =========================================
   Plans
   ========================================= */
.countdown-area {
    text-align: center;
    background: #000;
    color: #fff;
    padding: 24px;
    margin-bottom: 40px;
    border: 3px solid var(--cta);
    position: relative;
    overflow: hidden;
}

/* 点滅エフェクト */
.countdown-area::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232,85,61,0.1), transparent);
    animation: countdownShine 3s ease-in-out infinite;
}

@keyframes countdownShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.countdown-header { font-weight: bold; line-height: 1.6; }
.countdown-header span { display: inline-block; }

.countdown-timer {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--cta);
    margin-top: 10px;
    letter-spacing: 0.05em;
}

.plans-note {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.plans-note span { font-size: 0.85rem; font-weight: normal; color: var(--text-light); }

/* プランフロー（縦1カラム） */
.plans-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* 並列表示（電子・紙を横並び） */
.plans-grid {
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
}
.plans-grid > .plan-card {
    flex: 1;
    min-width: 0;
}
@media (max-width: 768px) {
    .plans-grid {
        flex-direction: column;
    }
}

.plan-step-label {
    background: var(--accent);
    color: #000;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 10px 24px;
    display: inline-block;
    align-self: flex-start;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    transform: skewX(-5deg);
    margin-bottom: -2px;
    z-index: 5;
}

.plan-step-label i { margin-right: 6px; }

.plan-step-stretch {
    background: var(--primary);
    color: #fff;
}

/* ストレッチコネクター */
.plan-stretch-connector {
    text-align: center;
    padding: 24px 0;
}

.plan-stretch-arrow {
    font-size: 2rem;
    color: var(--cta);
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.plan-stretch-label {
    background: var(--cta);
    color: #fff;
    display: inline-block;
    padding: 10px 28px;
    font-weight: 900;
    font-size: 0.95rem;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    transform: skewX(-5deg);
    margin-top: 8px;
}

.plan-stretch-label i { margin-right: 6px; }

/* ストレッチ目標のカードスタイル */
.plan-stretch {
    border-style: dashed !important;
    opacity: 0.85;
}

/* ラベル間隔調整 */
.plan-step-label {
    margin-bottom: 0;
    margin-top: 0;
}

.plan-card {
    margin-top: 0 !important;
}

/* プラン横レイアウト */
.plan-horizontal {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.plan-h-left {
    flex-shrink: 0;
    width: 180px;
    text-align: center;
}

.plan-h-left .plan-img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    margin: 0 auto 10px;
}

.plan-h-left .plan-name {
    font-size: 1.1rem;
    text-align: center;
}

.plan-h-right {
    flex: 1;
    min-width: 0;
}

.plan-h-right .plan-price { text-align: left; }
.plan-h-right .plan-goal { margin-bottom: 12px; }
.plan-h-right .plan-desc { text-align: left; margin-bottom: 16px; }

.plan-h-right .plan-return-wrapper { text-align: left; }

.plan-h-right .plan-buy-btn {
    width: auto;
    max-width: 300px;
}

@media (max-width: 700px) {
    .plan-horizontal {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .plan-h-left { width: 260px; }
    .plan-h-left .plan-img { height: 260px; max-width: 260px; }
    .plan-h-left .plan-name { white-space: nowrap; font-size: 1.3rem; }
    .plan-h-right .plan-price { text-align: center; font-size: 2rem; }
    .plan-h-right .plan-goal { font-size: 1rem; }
    .plan-h-right .plan-desc { text-align: center; }
    .plan-h-right .plan-buy-btn { width: 100%; max-width: 100%; }
}

.plan-card {
    background: #fff;
    border: var(--border-bold);
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    scroll-margin-top: 100px;
    box-shadow: var(--shadow-comic);
}

.plan-card:hover { transform: translateY(-5px); }

.plan-badge {
    color: #fff;
    padding: 8px 22px;
    font-size: 0.95rem;
    font-weight: 900;
    display: inline-block;
    font-family: var(--font-en);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.plan-blue { border-color: var(--primary); }
.plan-blue .plan-badge { background: var(--primary); }
.plan-blue .plan-price { color: var(--primary); }
.plan-blue:hover { box-shadow: 8px 8px 0 rgba(27,42,74,0.2); }
.plan-blue.manga-impact::before { border-top-color: var(--pop-blue); border-left-color: var(--pop-blue); }
.plan-blue.manga-impact::after { border-bottom-color: var(--pop-blue); border-right-color: var(--pop-blue); }

.plan-gold { border-color: var(--accent); }
.plan-gold .plan-badge { background: var(--accent); color: #000; }
.plan-gold .plan-price { color: #8B7332; }
.plan-gold:hover { box-shadow: 8px 8px 0 rgba(200,168,92,0.3); }

.plan-img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: cover;
    margin: 28px auto 20px;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.plan-name { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.plan-price { font-size: 1.8rem; font-weight: bold; font-family: var(--font-en); margin-bottom: 5px; }
.plan-goal { display: inline-block; background: #f4f4f4; padding: 4px 14px; font-size: 0.85rem; font-weight: bold; color: var(--text-light); margin-bottom: 20px; }
.plan-desc { font-size: 0.9rem; line-height: 1.8; color: var(--text-sub); margin-bottom: 20px; }

/* ★ CTAボタンサイズ・余白修正 */
.plan-buy-btn {
    width: auto;
    max-width: 280px;
    margin: 16px auto 0;
    display: inline-flex;
    box-sizing: border-box;
    padding: 12px 28px;
    font-size: 0.95rem;
    background: var(--ino-cta);
    border-color: #000;
}
.plan-buy-btn.disabled {
    background: #aaa;
    border-color: #888;
}
.plan-buy-btn:hover {
    background: var(--ino-cta-hover);
}

/* Plan Return Accordion */
.plan-return-wrapper { margin-top: 16px; border-top: 2px dashed #ddd; padding-top: 18px; }

.plan-return-toggle {
    background: #f9f9f9;
    border: 1px solid #eee;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    padding: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.plan-return-toggle:hover { background: #eee; }
.plan-return-toggle i { transition: transform 0.3s; }
.plan-return-toggle.active i { transform: rotate(180deg); }

.plan-return-content {
    display: none;
    margin-top: 15px;
    text-align: left;
    background: #fff;
    padding: 18px;
    border: 2px solid #f0f0f0;
    font-size: 0.88rem;
}

.plan-return-content.open { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.return-detail-group { display: flex; flex-direction: column; gap: 18px; }

.return-item { margin: 0; padding-bottom: 14px; border-bottom: 1px dashed #ddd; }
.return-item:last-child { border-bottom: none; padding-bottom: 0; }

.return-item dt {
    font-weight: 900;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.return-item dt i { color: var(--cta); font-size: 1rem; }

.return-item dd { margin: 0; padding-left: 1.5em; color: var(--text-sub); line-height: 1.6; font-size: 0.88rem; }
.return-note { display: block; margin-top: 4px; font-size: 0.78rem; color: var(--text-light); }
.text-link { color: var(--primary); text-decoration: underline; font-size: 0.85rem; }
.text-link:hover { opacity: 0.7; }

.btn-nftcard {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    background: var(--primary);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 3px;
    transition: 0.2s;
}
.btn-nftcard i { margin-right: 4px; }
.btn-nftcard:hover { background: var(--primary-light); }

/* =========================================
   Flow - ステップ形式
   ========================================= */
.flow-container { max-width: 900px; margin: 0 auto; }

.flow-card {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    background: #fff;
    padding: 28px;
    border: var(--border-bold);
    box-shadow: var(--shadow-comic);
    align-items: flex-start;
}

.flow-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    font-family: var(--font-en);
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 3px 3px 0 var(--cta);
}

.flow-content h4 {
    font-size: 1.2rem;
    margin: 0 0 8px;
    font-weight: 900;
    color: var(--primary);
    border-bottom: 3px solid var(--cta);
    display: inline-block;
}

.flow-content p { font-size: 0.95rem; color: var(--text-sub); margin-bottom: 8px; }
.flow-highlight { font-weight: 900; color: var(--cta); }

.flow-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 8px;
    background: #f8f8f8;
    padding: 10px;
}

/* =========================================
   Goods (EC-style) - 商品カード
   ========================================= */

/* デザイン切り替えタブ */
.goods-design-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.goods-design-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 3px solid var(--primary);
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-jp);
}

.goods-design-tab:hover {
    background: var(--primary);
    color: #fff;
}

.goods-design-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(27, 42, 74, 0.3);
}

.goods-tab-num {
    font-family: var(--font-en);
    font-size: 0.8rem;
    opacity: 0.7;
}

.goods-design-panel {
    display: none;
}

.goods-design-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .goods-design-tabs { gap: 6px; }
    .goods-design-tab { padding: 8px 14px; font-size: 0.82rem; }
}

.goods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) { .goods-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .goods-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

.goods-card {
    background: #fff;
    border: var(--border-bold);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-comic);
    position: relative;
}

/* グッズカードにホバー光エフェクト */
.goods-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 5;
}

.goods-card:hover::before { left: 150%; }

.goods-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 rgba(0,0,0,0.2); }

.goods-img-area { position: relative; }

.goods-slider {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.goods-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.goods-slider-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.goods-sl-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 32px; height: 32px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
}

.goods-sl-btn:hover { background: var(--cta); }
.goods-sl-btn.prev { left: 6px; }
.goods-sl-btn.next { right: 6px; }

.goods-dots {
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px;
    z-index: 10;
}

.goods-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.goods-dot.active { background: var(--cta); }

.goods-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.goods-name {
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--primary);
}

.goods-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cta);
    font-family: var(--font-en);
    margin-bottom: 14px;
}

.goods-tax { font-size: 0.7rem; font-weight: normal; color: var(--text-light); margin-left: 4px; font-family: var(--font-jp); }

/* ★ グッズCTAはみ出し修正 */
.goods-buy-btn {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding: 12px 16px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

/* =========================================
   Fund Usage - 資金の使い道
   ========================================= */
.fund-intro { text-align: center; margin-bottom: 32px; }
.fund-lead {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 900;
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 12px;
}
.fund-items {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.fund-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: #fff;
    border: var(--border-bold);
    box-shadow: var(--shadow-comic);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}
.fund-item i { color: var(--cta); font-size: 1.1rem; }

/* =========================================
   Roadmap - ロードマップ
   ========================================= */
.roadmap-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cta), var(--primary));
}
.rm-step {
    position: relative;
    margin-bottom: 32px;
}
.rm-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 34px; height: 34px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    z-index: 2;
}
.rm-active .rm-marker { background: var(--cta); color: #fff; border-color: var(--cta); }
.rm-content {
    background: #fff;
    padding: 20px 24px;
    border: var(--border-bold);
    box-shadow: var(--shadow-comic);
}
.rm-date {
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--cta);
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.rm-content h4 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}
.rm-content p { font-size: 0.9rem; color: var(--text-sub); margin: 0; }
.rm-content p.rm-note { font-size: 0.82rem; color: var(--accent); font-weight: 700; margin-top: 8px; }

/* CSS 3D Book Mockup */
.book-mockup {
    margin-top: 20px;
    text-align: center;
}
.book-3d {
    display: inline-block;
    perspective: 600px;
    margin-bottom: 10px;
}
.book-cover {
    width: 120px;
    height: 170px;
    transform: rotateY(-20deg);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.3), 2px 2px 6px rgba(0,0,0,0.15);
    border-radius: 0 3px 3px 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s;
}
.book-cover:hover { transform: rotateY(-5deg); }
.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.book-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, transparent 8%, transparent 92%, rgba(0,0,0,0.1) 100%);
}
.book-spine {
    width: 15px;
    height: 170px;
    background: linear-gradient(90deg, #8B1E1E, #a02828);
    position: absolute;
    left: -7px;
    top: 0;
    transform: rotateY(60deg) translateX(-7px);
    border-radius: 2px 0 0 2px;
}
.book-caption {
    font-size: 0.78rem;
    color: var(--cta);
    font-weight: 700;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .roadmap-timeline { padding-left: 32px; }
    .rm-marker { left: -32px; width: 28px; height: 28px; font-size: 0.75rem; }
    .rm-content { padding: 16px; }
    .fund-item { padding: 10px 16px; font-size: 0.85rem; }
}

/* =========================================
   Track Record - 実績
   ========================================= */
.track-intro { text-align: center; margin-bottom: 28px; }
.track-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.track-card {
    background: #fff;
    border: var(--border-bold);
    box-shadow: var(--shadow-comic);
    text-align: center;
    padding: 0 0 16px;
    font-size: 0.9rem;
    overflow: hidden;
}
.track-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    object-position: center;
    display: block;
    margin-bottom: 10px;
    background: #f5f5f5;
}
.track-success { border-color: #27ae60; }
.track-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.track-badge.success { background: #27ae60; color: #fff; }
.track-work { display: block; font-size: 0.78rem; color: var(--text-sub); font-weight: 700; margin-top: 2px; }
.track-note { display: block; font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }
.track-link { text-align: center; margin-bottom: 24px; }

/* X Follow CTA */
.track-x-follow { margin-top: 8px; }
.track-x-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #15202b;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}
.track-x-icon { font-size: 1.8rem; opacity: 0.8; }
.track-x-text { flex: 1; }
.track-x-text p { margin: 0; font-weight: 700; font-size: 0.9rem; }
.track-x-text span { font-size: 0.78rem; opacity: 0.6; }
.track-x-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #fff;
    color: #15202b;
    font-weight: 900;
    font-size: 0.85rem;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}
.track-x-btn:hover { background: #1da1f2; color: #fff; }

/* Partner Buttons */
.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.2s;
    border: 2px solid var(--primary);
}
.btn-partner:hover { background: transparent; color: var(--primary); }

@media (max-width: 768px) {
    .track-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .track-card { font-size: 0.78rem; padding: 0 0 10px; }
    .track-card strong { font-size: 0.78rem; }
    .track-work { font-size: 0.62rem; }
    .track-note { font-size: 0.6rem; }
    .track-badge { font-size: 0.62rem; padding: 1px 6px; }
    .track-img { aspect-ratio: 1/1; }
    .track-x-inner { flex-direction: column; text-align: center; gap: 10px; }
}

/* =========================================
   Plan Limit Badge
   ========================================= */
.plan-limit {
    display: inline-block;
    padding: 4px 16px;
    background: #d32f2f;
    color: #fff;
    font-weight: 900;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.plan-limit i { margin-right: 4px; }

/* =========================================
   Sponsor
   ========================================= */
.sponsor-section {
    background: #000;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 斜めストライプ */
.sponsor-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.02) 30px,
        rgba(255,255,255,0.02) 31px
    );
    pointer-events: none;
}

.sponsor-section .section-title { color: #fff; }
.sponsor-section .section-title::after { background: var(--cta); }
.sponsor-section .section-title-en { color: var(--cta); }

.sponsor-text { font-size: 1rem; margin-bottom: 10px; line-height: 1.8; position: relative; z-index: 1; }

.sponsor-btn {
    background: var(--cta);
    color: #fff;
    padding: 18px 50px;
    font-weight: 900;
    display: inline-block;
    margin-top: 24px;
    font-size: 1.1rem;
    border: 3px solid #fff;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.sponsor-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* =========================================
   SNS
   ========================================= */
.sns-section { background: #fff; text-align: center; padding: 80px 0; }

.sns-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.sns-icon-link {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.sns-icon-link:hover { transform: scale(1.15); box-shadow: 0 6px 15px rgba(0,0,0,0.25); }
.sns-x { background: #000; }
.sns-line { background: #06C755; }
.sns-discord { background: #5865F2; }
.sns-mail { background: #1E90FF; }
.sns-tiktok { background: #000; }
.sns-youtube { background: #FF0000; }

/* =========================================
   Fixed Bottom Bar
   ========================================= */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 9900;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-top: 3px solid var(--cta);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

/* Goal1達成バッジ */
.bb-goal1-achieved {
    background: var(--accent);
    color: #000;
    text-align: center;
    padding: 3px 0;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.bb-goal1-achieved i { margin-right: 4px; color: #2d7d32; }

.bottom-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.bottom-bar-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    flex-shrink: 0;
}

.bb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.bb-num-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.bb-num {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--primary);
    line-height: 1.2;
}

.bb-unit {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 700;
    margin-left: 2px;
}

.bb-pct { color: var(--cta) !important; font-size: 1.1rem; }

.bb-label {
    font-size: 0.55rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.bb-divider {
    width: 1px; height: 20px;
    background: #ddd;
}

.bottom-bar-cta {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.bb-btn {
    padding: 10px 20px;
    font-weight: 900;
    font-size: 0.85rem;
    text-align: center;
    transition: 0.2s;
    white-space: nowrap;
    display: block;
}

.bb-btn-primary {
    background: var(--ino-cta);
    color: #fff;
    border: 2px solid var(--ino-cta);
}

.bb-btn-primary:hover { background: var(--ino-cta-hover); color: #fff; }

.bb-btn-camp {
    background: var(--camp-cta);
    color: #fff !important;
    border: 2px solid var(--camp-cta);
}

.bb-btn-camp:hover { background: var(--camp-cta-hover); color: #fff !important; }

.bb-btn-goods {
    background: var(--pop-blue);
    color: #fff !important;
    border: 2px solid var(--pop-blue);
}

.bb-btn-goods:hover { background: #2370c0; color: #fff !important; }

@media (max-width: 700px) {
    .bottom-bar-stats { display: none; }
    .bottom-bar-inner { padding: 0 10px; gap: 0; justify-content: flex-start; }
    .bottom-bar-cta { width: 100%; gap: 6px; }
    .bb-btn { flex: 1; padding: 10px 8px; font-size: 0.75rem; }
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #000;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 36px 36px 80px;
    font-size: 0.78rem;
    font-family: var(--font-en);
    border-top: 6px solid var(--cta);
}

/* =========================================
   Modals
   ========================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 100000;
}

.modal-overlay[style*="display: flex"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 32px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border: var(--border-bold);
    margin-top: clamp(60px, 10vw, 80px);
}

.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000;
    line-height: 1;
    transition: 0.3s;
}

.modal-close:hover { color: var(--cta); }

.lightbox-content {
    position: relative;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-height: 85vh;
    max-width: 90%;
    border: 4px solid #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
}

.lightbox-close:hover { color: var(--cta); }

.lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.3);
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.lightbox-nav:hover { background: var(--cta); border-color: var(--cta); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.spec-table th, .spec-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-size: 0.88rem;
}

.spec-table th { background: #f8f8f8; font-weight: bold; }

/* =========================================
   Scroll Progress Bar
   ========================================= */
.scroll-progress {
    position: fixed;
    top: clamp(56px, 10vw, 72px);
    left: 0;
    height: 3px;
    background: var(--cta);
    z-index: 99998;
    width: 0%;
    transition: width 0.1s linear;
}

/* =========================================
   Mobile
   ========================================= */
@media (max-width: 600px) {
    .sp-only { display: block; }

    .hero-slider { aspect-ratio: 4 / 3; max-height: 45vh; }
    .hero-thumb { width: 52px; height: 52px; }
    .hero-thumbs { gap: 4px; padding: 8px 10px; }

    .btn-primary {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 4px 4px 0 #000;
    }

    .btn-primary:hover {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0 #000;
    }

    /* セクション余白 */
    section { padding: 60px 0; }

    .section-title { font-size: 1.5rem; margin-bottom: 24px; }
    .section-title-en { font-size: 0.6rem; }

    /* 作品概要 */
    .about-work-title { font-size: 1.2rem; margin-bottom: 20px; }
    .about-text h3 { font-size: 1.1rem; padding-left: 12px; }
    .about-text p { font-size: 0.88rem; }
    .section-intro { font-size: 0.85rem; margin-bottom: 24px; }

    /* 作家 */
    .artist-profile { flex-direction: column; text-align: center; }
    .artist-icon { width: 90px; height: 90px; }
    .artist-name-main { font-size: 1.4rem; }
    .artist-story-item h4 { font-size: 0.9rem; }
    .artist-story-item p { font-size: 0.85rem; }
    
    .message-card p { font-size: 0.88rem; }
    .message-label { font-size: 0.95rem; }

    /* プラン */
    .plan-card { padding: 24px 10px; }
    .plan-buy-btn { width: 100%; padding: 12px 10px; font-size: 0.9rem; }
    .plan-name { font-size: 1.3rem; }
    .plan-price { font-size: 2rem; }
    .plan-goal { font-size: 1rem; padding: 6px 16px; }
    .plan-h-left { width: 240px; }
    .plan-h-left .plan-img { height: 240px; max-width: 240px; }
    .plan-step-label { font-size: 0.8rem; padding: 8px 16px; }
    .plan-stretch-label { font-size: 0.8rem; padding: 8px 18px; }

    /* フロー */
    .flow-card { flex-direction: column; gap: 12px; padding: 18px; }
    .flow-num { font-size: 1.6rem; }
    .flow-content h4 { font-size: 1rem; }
    .flow-content p { font-size: 0.88rem; }

    /* グッズ */
    .goods-buy-btn { padding: 12px 10px; font-size: 0.85rem; }
    .goods-name { font-size: 0.9rem; }
    .goods-price { font-size: 1.2rem; }

    /* タイトルバナー: フォントサイズのスマホ調整（レイアウトは後方のmedia queryで制御） */
    .hero-title-banner { padding: 12px 6px 20px; }
    .title-banner-catch { font-size: clamp(0.95rem, 4.8vw, 2.4rem) !important; white-space: nowrap; }
    .catch-line-1, .catch-line-2 { white-space: nowrap; }
    .title-credit-name { font-size: clamp(0.55rem, 2.2vw, 1rem); }
    .title-credit-genre { font-size: clamp(0.5rem, 1.8vw, 0.88rem); }
    .title-credit-dot { font-size: 0.3rem; }
    .title-work-name-row { font-size: clamp(0.7rem, 3.2vw, 2rem); white-space: nowrap; }
    .title-work-copy { white-space: nowrap; }
    .title-banner-sub { font-size: clamp(0.55rem, 2.2vw, 1.5rem); }

    /* スマホ: 中央揃えテキストを左揃えに（不自然な改行を防止） */
    .stretch-explain p,
    .aon-notice p,
    .goods-notice p,
    .sponsor-text,
    .campfire-desc,
    .project-note p,
    .fund-intro p { text-align: left; }

    /* レスポンシブ全般 */
    .btn-primary {
        padding: 12px 16px;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 4px 4px 0 #000;
    }

    .fit-text-sp {
        white-space: nowrap;
        font-size: 3vw !important;
        width: 100%;
        box-sizing: border-box;
    }

    .fit-text-sp span { font-size: 2.2vw !important; }

    .preview-item::after { content: none; }
    .preview-grid { gap: 12px; }

/* FAQ */
    .faq-question { font-size: 0.85rem; }

    /* コミック区切り */
    .comic-panel-divider { height: 6px; }
    .comic-panel-divider::after { width: 22px; height: 22px; font-size: 0.65rem; }

    .campfire-box { padding: 20px; }
    .campfire-head { font-size: clamp(0.95rem, 4.2vw, 1.6rem); white-space: nowrap; }
    .campfire-desc { font-size: 0.9rem; text-align: left; }
    .btn-camp { width: 100%; padding: 14px 20px; font-size: 1rem; box-sizing: border-box; }
}

/* (旧タイトルバー → 大型バナーに統合済み) */

/* =========================================
   About Video (作品概要セクション内)
   ========================================= */
.about-video {
    margin-top: 60px;
    text-align: center;
}

.about-video-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

.about-video-title i {
    color: var(--cta);
    margin-right: 8px;
}

/* =========================================
   CAMPFIRE Section
   ========================================= */
.campfire-section {
    background: #fff5f5;
    border-bottom: var(--border-bold);
}

.campfire-box {
    background: #fff;
    border: 3px solid #e63b2e;
    padding: 40px;
    box-shadow: 8px 8px 0 rgba(230, 59, 46, 0.15);
    text-align: center;
}

.campfire-img-area {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.campfire-img-area:hover { transform: scale(1.02); }

.campfire-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #000;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.15);
}

.campfire-head {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: #e63b2e;
    line-height: 1.4;
    border-bottom: 2px dashed #e63b2e;
    display: inline-block;
    padding-bottom: 10px;
}

.campfire-desc {
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1rem;
}

.btn-camp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--camp-cta);
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 900;
    border: 3px solid #000;
    box-shadow: var(--shadow-pop);
    transition: all 0.2s ease;
}

.btn-camp:hover {
    background: var(--camp-cta-hover);
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 #000;
    color: #fff;
}

/* CAMPFIRE COMING SOON 共通 */
.btn-camp-soon,
.fp-btn-camp-soon,
.bb-btn-camp-soon {
    position: relative;
    background: #aaa !important;
    border-color: #888 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.85;
}
.btn-camp-soon:hover,
.fp-btn-camp-soon:hover,
.bb-btn-camp-soon:hover {
    background: #aaa !important;
    transform: none !important;
    box-shadow: 3px 3px 0 #666 !important;
}
.btn-camp-soon { box-shadow: 3px 3px 0 #666 !important; }

/* COMING SOON バッジ */
.camp-soon-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e63b2e;
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 2px 10px;
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1.4;
}
.camp-soon-badge-sm {
    font-size: 0.5rem;
    padding: 1px 6px;
    top: -8px;
}

.campfire-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* =========================================
   Hero Title Banner - コミカルなインパクト演出
   ========================================= */
.hero-title-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 8vw, 70px) 20px clamp(30px, 6vw, 50px);
    text-align: center;
    background: #fff;
    color: var(--text-main);
    border-bottom: 5px solid var(--primary);
}

/* コマ割り背景: 大量グリッド */
.title-hero-illust {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 2px;
    background: #000;
    opacity: 0;
    animation: komaBgIn 1s 0.05s ease-out forwards;
}

.title-hero-illust .koma {
    overflow: hidden;
}

.title-hero-illust .koma img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 中央のテキスト領域だけ白くかぶせる */
.title-hero-illust::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

@keyframes komaBgIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .title-hero-illust { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
    .title-hero-illust { grid-template-columns: repeat(3, 1fr); }
}

/* 背景装飾：非表示 */
.title-banner-bg { display: none; }

/* パーティクルCanvas：非表示 */
.title-particles { display: none; }

/* 斜めカット（左） */
.title-slash-left {
    position: absolute;
    top: 0; left: 0;
    width: 35%; height: 100%;
    display: none;
    z-index: 0;
}

/* 斜めカット（右） */
.title-slash-right {
    position: absolute;
    top: 0; right: 0;
    width: 35%; height: 100%;
    display: none;
    z-index: 0;
}

.title-banner-burst { display: none; }

/* ポップカクカク吹き出し（e1164風 SVG固定アスペクト比方式） */
.bubble-wrap {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.bubble-shape {
    display: block;
    width: 100%;
    height: auto;
}

.title-banner-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 50px 0;
    text-align: center;
    gap: 6px;
    transform-origin: top center;
}

/* 全子要素のブラウザデフォルトmarginをリセット（h2等の意図しない余白を排除） */
.title-banner-content > * {
    margin: 0;
}

.title-banner-content::before,
.title-banner-content::after {
    content: none;
}

@media (max-width: 768px) {
    .title-banner-content {
        padding: 3.5vw 4vw 0;
        gap: 1vw;
    }
}
@media (max-width: 600px) {
    .title-banner-content {
        padding: 5.5vw 5vw 0;
        gap: 0.4vw;
    }
}

/* バッジ */
.title-banner-badge {
    display: inline-block;
    background: var(--cta);
    color: #fff;
    padding: 8px 28px;
    font-weight: 900;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    letter-spacing: 0.12em;
    transform: skewX(-8deg);
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    margin-top: -38px !important;
    margin-bottom: 12px;
    opacity: 0;
    animation: badgeSlam 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-banner-badge i { margin-right: 8px; }

@keyframes badgeSlam {
    0% { opacity: 0; transform: skewX(-8deg) translateY(-15px); }
    100% { opacity: 1; transform: skewX(-8deg) translateY(0); }
}

@media (max-width: 600px) {
    .title-banner-badge {
        margin-top: -5.5vw !important;
        margin-bottom: 1vw;
        padding: 1vw 3.5vw;
        font-size: clamp(0.55rem, 1.8vw, 0.95rem);
        border-width: 2px;
        box-shadow: 3px 3px 0 #000;
    }
}

/* キャッチコピー：シンプル＆大胆 */
.title-banner-catch {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 6.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #000;
    position: relative;
}

.catch-line-1,
.catch-line-2 {
    display: block;
    white-space: nowrap;
    opacity: 0;
    animation: fadeScale 0.7s ease-out forwards;
}
.catch-line-1 { animation-delay: 0.2s; }
.catch-line-2 { animation-delay: 0.4s; }

@keyframes fadeScale {
    0% { opacity: 0; transform: translateY(20px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.title-banner-catch em {
    font-style: normal;
    color: var(--cta);
    -webkit-text-fill-color: var(--cta);
}

/* 作品名：バウンスイン */
.title-banner-work {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: workBounce 0.7s 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.title-work-name {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    font-weight: 900;
    color: var(--primary);
    background: #fff;
    padding: 10px 32px;
    border: 3px solid var(--primary);
    box-shadow: 5px 5px 0 var(--cta);
    display: inline-block;
}

.title-work-sub {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 700;
    color: var(--text-sub);
    letter-spacing: 0.15em;
    font-family: var(--font-en);
    text-transform: uppercase;
}

@keyframes workBounce {
    0% { opacity: 0; transform: translateY(40px) scale(0.8); }
    60% { transform: translateY(-8px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
    .hero-title-banner { padding: 20px 4px 14px; }
}

/* =========================================
   Progress Area（2段ゴールバー）
   ========================================= */
.progress-area {
    background: #fff;
    border: var(--border-bold);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-comic);
}

/* 合計スタッツ */
.progress-total-stats {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 6vw, 60px);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.progress-stat { text-align: center; }

.progress-stat-num {
    display: block;
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--primary);
    line-height: 1.2;
}

.progress-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
}

/* 各ゴール行 */
.progress-goal-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.progress-goal-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.progress-goal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.progress-goal-badge {
    font-size: 0.7rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: #fff;
    padding: 3px 12px;
    letter-spacing: 1px;
}

.goal1-badge { background: var(--accent); color: #000; }
.goal2-badge { background: var(--primary); }

.progress-goal-name {
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--text-main);
}

.progress-goal-target {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-left: auto;
    font-family: var(--font-en);
}

/* バー */
.progress-goal-bar-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.progress-goal-bar-wrap {
    flex: 1;
    height: 20px;
    background: #eee;
    border: 2px solid #000;
    position: relative;
    overflow: hidden;
}

.progress-goal-bar {
    height: 100%;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.goal1-bar {
    background: linear-gradient(90deg, #e8d9a8, var(--accent));
}

.goal2-bar {
    background: linear-gradient(90deg, var(--primary-light), var(--cta));
}

/* バーの先端に光 */
.progress-goal-bar::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    width: 8px; height: 100%;
    background: rgba(255,255,255,0.6);
}

.progress-goal-nums {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 80px;
    text-align: right;
}

.progress-goal-current {
    font-size: 0.9rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--text-main);
}

.progress-goal-pct {
    font-size: 1.2rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--cta);
    line-height: 1.1;
}

.progress-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* ストレッチゴール説明 */
.stretch-explain {
    background: #f8f6f0;
    border: 2px dashed var(--accent);
    padding: 14px 18px;
    margin-bottom: 20px;
    text-align: center;
}

.stretch-explain p {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-sub);
    line-height: 1.6;
}

.stretch-explain i { color: var(--cta); margin-right: 6px; }

/* 矢印接続 */
.stretch-arrow {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--cta);
    margin: 6px 0;
    padding: 6px 0;
}

.stretch-arrow i { margin-right: 4px; }

/* ストレッチ目標は少し薄く（まだ先のゴール感） */
.stretch-goal-2 {
    opacity: 0.7;
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}

.stretch-goal-2 .progress-goal-bar-wrap {
    background: #f0f0f0;
}

@media (max-width: 600px) {
    .progress-goal-header { gap: 6px; }
    .progress-goal-target { margin-left: 0; font-size: 0.7rem; }
    .progress-goal-bar-area { flex-direction: column; align-items: stretch; gap: 6px; }
    .progress-goal-nums { flex-direction: row; justify-content: space-between; min-width: auto; }
    .stretch-goal-2 { padding-left: 10px; }
}

/* =========================================
   Goods Notice
   ========================================= */
.goods-notice {
    max-width: 700px;
    margin: -10px auto 30px;
    text-align: center;
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: var(--shadow-comic);
}

.goods-notice p { margin: 0; font-size: 0.9rem; color: var(--text-sub); }
.goods-notice i { color: var(--cta); margin-right: 4px; }
.goods-notice-sub { font-size: 0.78rem !important; color: var(--text-light) !important; margin-top: 8px !important; }

/* =========================================
   FAQ Section
   ========================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 2px solid #000;
    background: #fff;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--primary);
    text-align: left;
    transition: background 0.3s;
    gap: 12px;
}

.faq-question:hover { background: #f8f6f0; }

.faq-question span { flex: 1; }

.faq-question i {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--cta);
    font-size: 0.85rem;
}

.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    border-top: 1px dashed #ddd;
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.8;
}

.faq-answer.open { display: block; animation: fadeIn 0.3s ease; }

.faq-answer ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0;
}

.faq-answer li { margin-bottom: 6px; }

@media (max-width: 600px) {
    .faq-question { padding: 14px 16px; font-size: 0.88rem; }
    .faq-answer { padding: 0 16px 14px; font-size: 0.85rem; }
    .progress-stats { gap: 16px; }
    .progress-goal-mark span { font-size: 0.55rem; }
}

/* =========================================
   All-or-Nothing Notice
   ========================================= */
.aon-notice {
    text-align: center;
    margin-bottom: 30px;
    background: #fff;
    border: 2px solid var(--primary);
    padding: 24px;
    box-shadow: var(--shadow-comic);
    position: relative;
}

.aon-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.aon-badge i { margin-right: 6px; }

.aon-notice p {
    font-size: 0.92rem;
    font-weight: bold;
    line-height: 1.7;
    margin: 0;
}

.aon-sub {
    font-size: 0.78rem !important;
    font-weight: normal !important;
    color: var(--text-light) !important;
    margin-top: 10px !important;
}

/* =========================================
   Title Banner - 追加要素
   ========================================= */
.title-work-genre {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    font-weight: 700;
    color: var(--text-sub);
    display: block;
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 0.03em;
}

/* クレジットライン: [icon] あばちょ ● 青春×演劇 */
.title-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    opacity: 0;
    animation: subSlide 0.5s 0.9s ease-out forwards;
}

.title-credit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.title-credit-name {
    font-size: 1rem;
    font-weight: 900;
    color: #000;
    font-family: var(--font-serif);
}

.title-credit-dot {
    font-size: 0.4rem;
    color: #000;
    opacity: 0.4;
}

.title-credit-genre {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cta);
    letter-spacing: 0.06em;
}

/* 作品名（大きく） */
.title-work-name-row {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    font-weight: 900;
    font-family: var(--font-serif);
    color: #000;
    margin-top: 6px;
    letter-spacing: 0.06em;
    opacity: 0;
    animation: subSlide 0.5s 1.0s ease-out forwards;
}

/* キャッチコピー */
.title-work-copy {
    font-size: clamp(0.75rem, 1.8vw, 0.88rem);
    color: #333;
    font-family: var(--font-serif);
    margin-top: 4px;
    opacity: 0;
    animation: subSlide 0.5s 1.1s ease-out forwards;
    letter-spacing: 0.04em;
}

.title-banner-sub {
    font-family: var(--font-en);
    font-size: clamp(0.8rem, 2.2vw, 1.05rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #000;
    margin-top: 6px;
    text-transform: uppercase;
    opacity: 0;
    animation: subSlide 0.6s 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    text-shadow: none;
}

@keyframes subSlide {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* スマホ: 吹き出し内テキストの間隔をSVGアスペクト比に合わせてスケール */
@media (max-width: 600px) {
    .title-credit { margin-top: 0.3vw; gap: 0.8vw; }
    .title-credit-icon { width: clamp(14px, 4vw, 32px); height: clamp(14px, 4vw, 32px); }
    .title-work-name-row { margin-top: 0.2vw; }
    .title-work-copy { margin-top: 0; font-size: clamp(0.5rem, 2.8vw, 0.92rem); padding-inline: 3vw; }
    .title-banner-sub { margin-top: 0.2vw; font-size: clamp(0.5rem, 2vw, 1.05rem); }
}

/* 出版社バッジ */


.title-banner-publisher i {
    color: var(--accent);
    margin-right: 6px;
}

/* Hero CTAバー */
.hero-cta-bar {
    background: #fff;
    border-top: 3px solid var(--cta);
    padding: 20px 20px 28px;
}

.hero-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}


.hero-cta-btn {
    white-space: nowrap;
    padding: 14px 32px;
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .hero-cta-inner { gap: 14px; }
    
    
    .hero-cta-btn { padding: 12px 18px; font-size: 0.9rem; }
}

/* =========================================
   About - 作品名タイトル
   ========================================= */
.about-work-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--cta);
    display: block;
}

/* =========================================
   Artist Story（タイムライン風）
   ========================================= */
.artist-story {
    max-width: 800px;
    margin: 0 auto;
}

.artist-story-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.artist-story-item:last-child { margin-bottom: 0; }

.artist-story-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--cta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
}

.artist-story-item h4 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0 0 6px;
    font-family: var(--font-serif);
}

.artist-story-item p {
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 600px) {
    .artist-story-icon { width: 40px; height: 40px; font-size: 0.9rem; }
    .artist-story-item h4 { font-size: 0.95rem; }
}

/* =========================================
   Comic Panel Divider（マンガコマ区切り）
   ========================================= */
.comic-panel-divider {
    height: 8px;
    background: #000;
    position: relative;
}

.comic-panel-divider::after {
    content: '★';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cta);
    color: #fff;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 50%;
    border: 3px solid #000;
    z-index: 2;
}

/* =========================================
   Manga Panel Decorations（コマ割り風装飾）
   ========================================= */

/* コマ枠風の内側ボーダー */
.manga-frame {
    position: relative;
}

.manga-frame::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px; right: 16px; bottom: 16px;
    border: 2px solid rgba(0,0,0,0.05);
    pointer-events: none;
    z-index: 0;
}

/* 漫画風の斜め区切り線 */
.manga-slash::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 100%;
    background: linear-gradient(to bottom right, transparent 48%, rgba(0,0,0,0.04) 48%, rgba(0,0,0,0.04) 52%, transparent 52%);
    pointer-events: none;
    z-index: 0;
}

/* 漫画風スピードライン背景（SVG） */
.manga-speed-bg {
    position: relative;
}

.manga-speed-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg stroke='%23000' fill='none'%3E%3Cline x1='0' y1='100' x2='400' y2='80' stroke-width='1'/%3E%3Cline x1='0' y1='90' x2='400' y2='95' stroke-width='0.5'/%3E%3Cline x1='0' y1='110' x2='400' y2='105' stroke-width='1.5'/%3E%3Cline x1='0' y1='120' x2='400' y2='115' stroke-width='0.5'/%3E%3Cline x1='0' y1='80' x2='400' y2='70' stroke-width='1'/%3E%3Cline x1='0' y1='130' x2='400' y2='125' stroke-width='0.8'/%3E%3Cline x1='0' y1='70' x2='400' y2='60' stroke-width='0.5'/%3E%3Cline x1='0' y1='140' x2='400' y2='140' stroke-width='1'/%3E%3Cline x1='0' y1='60' x2='400' y2='50' stroke-width='0.8'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat-y;
    background-size: 100% 200px;
}

/* 漫画風ドットスクリーントーン（大きめ、セクション装飾用） */
.manga-screentone {
    position: relative;
}

.manga-screentone::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 200px; height: 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle, #000 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    -webkit-mask-image: linear-gradient(135deg, transparent 30%, #000 100%);
    mask-image: linear-gradient(135deg, transparent 30%, #000 100%);
}

/* =========================================
   Halftone Background
   ========================================= */
.halftone-bg {
    background-color: #1B2A4A !important;
    color: #fff !important;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px) !important;
    background-size: 10px 10px !important;
}
.halftone-bg .section-title,
.halftone-bg .section-title-en { color: #fff; }
.halftone-bg .section-intro { color: rgba(255,255,255,0.8); }
.halftone-bg .btn-secondary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    font-weight: 900;
}
.halftone-bg .btn-secondary:hover { background: var(--cta); color: #fff; border-color: var(--cta); }

/* スクリーントーン強化 bg-warm */
.bg-warm {
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 6px 6px;
}

/* =========================================
   Message Card V2（強化版）
   ========================================= */
.message-card-v2 {
    background: linear-gradient(135deg, #fff 0%, #fdf8f0 100%);
    border: 3px solid var(--cta);
    border-radius: 16px;
    padding: 0;
    position: relative;
    margin-bottom: 50px;
    box-shadow: 6px 6px 0 rgba(232,85,61,0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.msg-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: var(--cta);
    color: #fff;
}

.msg-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.msg-label {
    font-size: 1.1rem;
    font-weight: 900;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    margin: 0;
    color: #fff;
}

.msg-sub {
    font-size: 0.7rem;
    opacity: 0.8;
}

.msg-body {
    padding: 28px;
}

.msg-text {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.9;
    margin: 0 0 12px;
}

.msg-em {
    background: linear-gradient(transparent 55%, var(--pop-yellow) 55%);
    font-weight: 900;
    padding: 0 3px;
}

.msg-appeal {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 900;
    font-family: var(--font-serif);
    color: var(--cta);
    text-align: center;
    margin: 20px 0 0;
    padding: 0;
    background: none;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .msg-header { padding: 14px 18px; }
    .msg-avatar { width: 40px; height: 40px; }
    .msg-label { font-size: 0.95rem; }
    .msg-body { padding: 20px 18px; }
    .msg-text { font-size: 0.9rem; }
    .msg-appeal { font-size: 1rem; padding: 12px; }
}

/* =========================================
   Plan Label Spacing（ラベル間隔修正）
   ========================================= */
.plan-step-label {
    margin-bottom: 12px !important;
}

.plan-stretch-connector {
    margin: 16px 0 !important;
}

/* =========================================
   Locked Plan Button
   ========================================= */
.plan-locked-btn {
    background: #aaa !important;
    border-color: #888 !important;
    box-shadow: 3px 3px 0 #666 !important;
    cursor: not-allowed !important;
    font-size: 0.85rem !important;
    animation: none !important;
}

/* =========================================
   Goods EC型レイアウト
   ========================================= */
.goods-cat-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.goods-cat-tab {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid var(--border-color);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    color: var(--text-sub);
}
.goods-cat-tab i { margin-right: 6px; }
.goods-cat-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.goods-cat-tab:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

.goods-cat-panel { display: none; }
.goods-cat-panel.active { display: block; }

.goods-cat-header {
    text-align: center;
    margin-bottom: 20px;
}
.goods-cat-header h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 0 6px;
    color: var(--text-main);
}
.goods-cat-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cta);
    font-family: var(--font-en);
    display: block;
    margin-bottom: 10px;
}
.goods-cat-header .btn-spec {
    font-size: 0.8rem;
    padding: 4px 14px;
}

.goods-cat-header h3 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-spec-v2 {
    display: inline-block;
    padding: 10px 24px;
    background: #f0ede8;
    border: 1.5px solid #b5ad9e;
    color: #4a4540;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 4px;
    box-shadow: none;
}
.btn-spec-v2 i { margin-right: 6px; }
.btn-spec-v2:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-1px); }

.goods-ec-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
.goods-ec-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.2s;
    text-align: center;
}
.goods-ec-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.1); }

/* カード内ミニスライダー */
.goods-ec-slider { position: relative; }
.goods-ec-track {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f8f8f8;
    position: relative;
}
.goods-ec-track img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.goods-ec-track img:first-child,
.goods-ec-track img.ec-active { opacity: 1; }
.goods-ec-thumbs {
    display: flex;
    gap: 3px;
    padding: 4px;
    justify-content: center;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}
.goods-ec-thumb {
    width: 28px; height: 28px;
    border: 2px solid transparent;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.2s;
}
.goods-ec-thumb.active { border-color: var(--cta); opacity: 1; }
.goods-ec-thumb img { width: 100%; height: 100%; object-fit: cover; }

.goods-ec-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px;
    padding-top: 16px;
    gap: 6px;
    border-top: 1px solid #eee;
    overflow: visible;
    position: relative;
}
.goods-ec-label {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--text-main);
    font-family: var(--font-en);
}
.goods-ec-buy {
    padding: 6px 12px !important;
    font-size: 0.72rem !important;
    width: auto !important;
    box-shadow: 2px 2px 0 #000 !important;
}
.goods-ec-buy.disabled {
    background: #aaa !important;
    border-color: #888 !important;
    box-shadow: 2px 2px 0 #666 !important;
}
.goods-buy-btn.disabled {
    background: #aaa;
    border-color: #888;
}

@media (max-width: 768px) {
    .goods-ec-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .goods-cat-tabs { gap: 6px; }
    .goods-cat-tab { padding: 8px 14px; font-size: 0.8rem; }
    .goods-ec-buy { font-size: 0.65rem !important; padding: 5px 8px !important; }
    .goods-ec-thumb { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
    .goods-ec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   試し読み: PC左プレビュー+右CTA / スマホ縦積み
   ========================================= */
.preview-split {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}
.preview-viewer {
    flex-shrink: 0;
    width: 300px;
    height: 450px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    cursor: pointer;
}
.preview-viewer-inner {
    width: 100%;
}
.preview-viewer-inner img {
    width: 100%;
    display: block;
}
.preview-viewer-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent, rgba(27,42,74,0.95));
    pointer-events: none;
}
.preview-expand-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2;
    transition: 0.2s;
    white-space: nowrap;
}
.preview-expand-btn:hover {
    background: var(--primary);
    color: #fff;
}
.preview-cta-area {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}
.preview-cta-badge {
    display: inline-block;
    background: var(--cta);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 3px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.preview-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    line-height: 1.5;
    margin: 0 0 16px;
}
.preview-cta-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.85;
    margin: 0 0 24px;
}
.preview-cta-btn {
    align-self: flex-start;
}

/* スマホ: 縦積み */
@media (max-width: 768px) {
    .preview-split {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .preview-viewer { width: 80%; max-width: 320px; height: 400px; }
    .preview-cta-area { text-align: center; align-items: center; padding-top: 0; }
    .preview-cta-badge { align-self: center; }
    .preview-cta-btn { align-self: center; }
}

/* 試し読みモーダル */
.preview-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.preview-modal-overlay.open { display: flex; }
.preview-modal-content {
    background: #fff;
    width: 90%;
    max-width: 420px;
    max-height: 75vh;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.preview-modal-close {
    position: absolute;
    top: 10px; right: 10px;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preview-modal-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.preview-modal-scroll img {
    width: 100%;
    display: block;
}
.preview-modal-bottom {
    padding: 12px 16px;
    text-align: center;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}
.preview-modal-bottom .btn-primary {
    width: auto;
    display: inline-flex;
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* =========================================
   実績: スマホでスライド形式
   ========================================= */
@media (max-width: 768px) {
    .track-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 16px 12px;
    }
    .track-grid::-webkit-scrollbar { height: 4px; }
    .track-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }
    .track-card {
        flex-shrink: 0;
        width: 200px;
        scroll-snap-align: center;
        font-size: 0.85rem;
        padding: 0 0 12px;
    }
    .track-card strong { font-size: 0.85rem; }
    .track-work { font-size: 0.72rem; }
    .track-note { font-size: 0.65rem; }
    .track-img { aspect-ratio: 4/3; }
}

/* =========================================
   プラン: スマホで幅統一
   ========================================= */
@media (max-width: 768px) {
    .plans-grid > .plan-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* =========================================
   支援金の使い道: スマホ調整
   ========================================= */
@media (max-width: 600px) {
    .fund-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .fund-item {
        padding: 12px 10px;
        font-size: 0.82rem;
        white-space: normal;
    }
}

/* =========================================
   SNSアイコン: スマホ3×2の2段表示
   ========================================= */
@media (max-width: 600px) {
    .sns-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        max-width: 240px;
        margin: 20px auto 0;
    }
    .sns-icon-link {
        margin: 0 auto;
    }
}

/* =========================================
   フローティングCTA: スマホsafe area対応
   ========================================= */
@media (max-width: 700px) {
    .fixed-bottom-bar {
        padding-bottom: env(safe-area-inset-bottom, 6px);
    }
    .bottom-bar-inner {
        padding: 6px 10px calc(4px + env(safe-area-inset-bottom, 0px));
    }
    .bb-btn {
        padding: 12px 8px;
    }
}

.plan-locked-btn:hover {
    transform: none !important;
    box-shadow: 3px 3px 0 #666 !important;
    background: #aaa !important;
}

.plan-locked-btn i { margin-right: 6px; }

/* =========================================
   Partner Cards（プロジェクトについて）
   ========================================= */
.project-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 30px;
}

.partner-card {
    background: #fff;
    border: var(--border-bold);
    padding: 28px;
    box-shadow: var(--shadow-comic);
    position: relative;
    display: flex;
    flex-direction: column;
}
.partner-card p:last-of-type { flex: 1; }
.partner-card .btn-partner { align-self: flex-start; margin-top: auto; }

.partner-logo {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0 0 4px;
}

.partner-org {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 12px;
}

.partner-card p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.7;
    margin: 0 0 10px;
}

.project-note {
    text-align: center;
    background: #fff;
    border: 2px dashed var(--border-color);
    padding: 18px;
    font-size: 0.9rem;
    color: var(--text-sub);
    font-weight: 700;
}

.project-note p { margin: 0; }

@media (max-width: 700px) {
    .project-partners { grid-template-columns: 1fr; gap: 18px; }
    .partner-card { padding: 20px; }
    .partner-card h3 { font-size: 1rem; }
}

/* =========================================
   マンガ装飾素材（SVGインライン）
   ========================================= */

/* 吹き出し風セクション見出し装飾 */


.manga-balloon-title::before {
    content: '';
    position: absolute;
    top: -10px; left: -18px; right: -18px; bottom: -10px;
    border: 3px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    pointer-events: none;
}

.manga-balloon-title::after {
    content: '';
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: rgba(0,0,0,0.08);
}

/* 衝撃フレーム（セクション角） */
.manga-impact {
    position: relative;
}

.manga-impact::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px;
    width: 50px; height: 50px;
    border-top: 4px solid var(--cta);
    border-left: 4px solid var(--cta);
    pointer-events: none;
    z-index: 3;
}

.manga-impact::after {
    content: '';
    position: absolute;
    bottom: -4px; right: -4px;
    width: 50px; height: 50px;
    border-bottom: 4px solid var(--cta);
    border-right: 4px solid var(--cta);
    pointer-events: none;
    z-index: 3;
}

/* 放射状集中線（セクション背景 - 目標セクション用） */


.manga-focus-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'%3E%3Cg opacity='0.025' stroke='%23000' fill='none'%3E%3Cline x1='300' y1='200' x2='-50' y2='-50' stroke-width='3'/%3E%3Cline x1='300' y1='200' x2='150' y2='-50' stroke-width='2'/%3E%3Cline x1='300' y1='200' x2='450' y2='-50' stroke-width='3'/%3E%3Cline x1='300' y1='200' x2='650' y2='-50' stroke-width='2'/%3E%3Cline x1='300' y1='200' x2='-50' y2='200' stroke-width='2.5'/%3E%3Cline x1='300' y1='200' x2='650' y2='200' stroke-width='2.5'/%3E%3Cline x1='300' y1='200' x2='-50' y2='450' stroke-width='3'/%3E%3Cline x1='300' y1='200' x2='150' y2='450' stroke-width='2'/%3E%3Cline x1='300' y1='200' x2='450' y2='450' stroke-width='3'/%3E%3Cline x1='300' y1='200' x2='650' y2='450' stroke-width='2'/%3E%3Cline x1='300' y1='200' x2='-50' y2='100' stroke-width='1.5'/%3E%3Cline x1='300' y1='200' x2='650' y2='100' stroke-width='1.5'/%3E%3Cline x1='300' y1='200' x2='-50' y2='300' stroke-width='1.5'/%3E%3Cline x1='300' y1='200' x2='650' y2='300' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* キラキラ装飾（プレビュー・グッズ用） */


.manga-sparkle::before {
    content: '✦';
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.3;
    pointer-events: none;
    z-index: 3;
    animation: sparklePulse 2s ease-in-out infinite;
}

.manga-sparkle::after {
    content: '✦';
    position: absolute;
    bottom: 20px; left: 25px;
    font-size: 1rem;
    color: var(--cta);
    opacity: 0.2;
    pointer-events: none;
    z-index: 3;
    animation: sparklePulse 2.5s ease-in-out infinite 0.5s;
}

@keyframes sparklePulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

/* 効果線（カード装飾 - ホバー時に現れる） */
.manga-hover-lines {
    position: relative;
    overflow: hidden;
}

.manga-hover-lines::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
    pointer-events: none;
    z-index: 5;
}

.manga-hover-lines:hover::before {
    left: 150%;
}

/* トーンパターン（グラデーション付きドット） */
.manga-tone-corner {
    position: relative;
}

.manga-tone-corner::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 120px; height: 120px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, #000 1.2px, transparent 1.2px);
    background-size: 6px 6px;
    -webkit-mask-image: linear-gradient(315deg, transparent 50%, #000 100%);
    mask-image: linear-gradient(315deg, transparent 50%, #000 100%);
}

/* ========== 資金調達進捗セクション（HERO直後・CAMPFIRE風2カラム） ========== */
.funding-progress-section {
    background: #fff;
    padding: 1.8rem 0 1.5rem;
    border-bottom: 1px solid #eee;
}
.fp-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1rem;
}
.fp-visual {
    flex: 0 0 55%;
    max-width: 480px;
}
.fp-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.fp-visual-cta {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}
.fp-visual-cta .fp-btn {
    font-size: 0.78rem;
    padding: 0.6em 0.8em;
}
.fp-cta-mobile {
    display: none;
}
.fp-inner {
    flex: 1;
    min-width: 0;
}
.fp-row {
    margin-bottom: 0.9rem;
}
.fp-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.15rem;
}
.fp-label i {
    margin-right: 0.2em;
    color: #aaa;
}

/* 金額表示 */
.fp-amount-row {
    display: flex;
    align-items: baseline;
    gap: 0.1em;
}
.fp-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: #333;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
}
.fp-amount-unit {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

/* 支援者数＋残り日数 横並び */
.fp-stats-row {
    display: flex;
    gap: 1.5rem;
}
.fp-stat {
    flex: 1;
}

/* 大きな値（支援者数・残り日数） */
.fp-big-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #333;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
}
.fp-big-unit {
    font-size: 0.7em;
    font-weight: 700;
}

/* プログレスバー（CAMPFIRE風：緑） */
.fp-bar {
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}
.fp-bar-fill {
    height: 100%;
    background: #39b54a;
    border-radius: 4px;
    transition: width 1s ease-out;
    min-width: 0;
}
.fp-bar-goal {
    font-size: 0.75rem;
    color: #39b54a;
    font-weight: 600;
}

/* 募集期間＋カウントダウン */
.fp-period {
    padding-bottom: 0.8rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid #eee;
}
.fp-period-dates {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.3rem;
}
.fp-period-dates i {
    margin-right: 0.3em;
    color: #aaa;
}
.fp-period-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}
.fp-period-note {
    font-size: 0.72rem;
    color: #999;
    margin-top: 0.15rem;
}
.fp-countdown {
    font-size: 0.9rem;
    font-weight: 700;
    color: #E8553D;
}
.fp-countdown strong {
    font-size: 1.1em;
}

/* CTA行 */
.fp-cta-row {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
}
.fp-cta-row.fp-cta-mobile {
    display: none;
}
.fp-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 0.75em 1em;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.fp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.fp-btn-ino {
    background: var(--ino-cta);
    color: #fff;
}
.fp-btn-camp {
    background: var(--camp-cta);
    color: #fff;
}

/* レスポンシブ */
@media (max-width: 700px) {
    .fp-layout {
        flex-direction: column;
        gap: 1.2rem;
    }
    .fp-visual {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .fp-visual-cta {
        display: none;
    }
    .fp-cta-row.fp-cta-mobile {
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .fp-inner {
        width: 100%;
    }
    .funding-progress-section { padding: 1.5rem 0; }
    .fp-amount { font-size: 1.8rem; }
    .fp-big-value { font-size: 1.3rem; }
}

/* =========================================
   フェーズ遷移: 達成バナー・ゴールドバー・終了ボタン
   ========================================= */

/* 達成時プログレスバー: ゴールドグラデ＋シマー */
.fp-bar-reached {
    background: linear-gradient(90deg, #C8A85C, #F0D080, #C8A85C) !important;
    background-size: 200% 100%;
    animation: fpBarShimmer 2s ease-in-out infinite;
}

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

/* 達成バナー（資金調達セクション内） */
.fp-reached-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF0C8 50%, #FFF8E7 100%);
    border: 2px solid #C8A85C;
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    animation: fpBannerSlide 0.5s ease-out;
}

/* ゴールドシマー上辺ライン */
.fp-reached-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8963C, #E8D48C, #B8963C);
    background-size: 200% 100%;
    animation: fpBarShimmer 3s ease-in-out infinite;
}

@keyframes fpBannerSlide {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fp-reached-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #C8A85C, #E8D48C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 3px 12px rgba(200, 168, 92, 0.4);
}

.fp-reached-body {
    flex: 1;
    min-width: 0;
}

.fp-reached-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #8B6914;
    letter-spacing: 0.04em;
    line-height: 1.2;
    font-family: var(--font-jp);
}

.fp-reached-sub {
    font-size: 0.88rem;
    color: #6B5210;
    font-weight: 600;
    margin-top: 3px;
}

/* Hero 達成ラベル */
.hero-reached-label {
    display: inline-block;
    background: linear-gradient(135deg, #C8A85C, #E8D48C);
    color: #1B2A4A;
    font-size: clamp(0.6rem, 2.4vw, 0.9rem);
    font-weight: 900;
    padding: 6px 18px;
    margin-top: 8px;
    margin-bottom: 4px;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transform: skewX(-5deg);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    animation: heroLabelPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
}

.hero-reached-label i {
    margin-right: 6px;
}

@keyframes heroLabelPop {
    from { transform: skewX(-5deg) scale(0.7); opacity: 0; }
    to { transform: skewX(-5deg) scale(1); opacity: 1; }
}

/* 達成テキスト（目標金額横） */
.fp-goal-reached {
    color: #8B6914;
    font-weight: 900;
}

.fp-goal-reached i {
    color: #39b54a;
    margin-right: 4px;
}

/* CAMPFIRE終了ボタン */
.btn-camp-ended {
    background: #888 !important;
    border-color: #666 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.btn-camp-ended:hover {
    background: #888 !important;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 700px) {
    .fp-reached-banner { padding: 14px 16px; gap: 12px; }
    .fp-reached-icon { width: 42px; height: 42px; font-size: 1.15rem; }
    .fp-reached-title { font-size: 1.05rem; }
    .fp-reached-sub { font-size: 0.78rem; }
}
