/* =========================================
   Base CSS
   ========================================= */
:root {
    --primary: #FF6D00;
    --primary-light: #FFF8E1;
    --accent: #0056b3;
    --text-main: #111111;
    --text-sub: #444444;
    --bg-body: #ffffff;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Oswald', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* モーダル表示中のスクロール禁止 */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    transition: none !important;
}

/* 基本設定 */
body {
    font-family: var(--font-jp);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 20px 20px;
    margin: 0;
    padding: 0;
    padding-top: clamp(60px, 10vw, 80px);
    /* ヘッダーの高さ分 */
}

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 15px;
    position: relative;
    z-index: 2;
}

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

/* 見出しデザイン */
.section-title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 70px);
    font-family: var(--font-en);
    color: var(--text-main);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.05em;
    transform: skewX(-5deg);
    word-break: break-word;
}

.section-desc {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: -20px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 1 !important;
    visibility: visible !important;
}

/* PREVIEWセクション：大文字化を抑制してタイトルが折り返さないようにする */
#preview .section-title {
    text-transform: none;
    font-size: clamp(1.6rem, 4vw, 3rem);
}

.section-title span {
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-jp);
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 8px;
    background: var(--text-main);
    margin: 10px auto 0;
    transform: skewX(20deg);
}

/* ボタンデザイン */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    border: 2px solid #000;
    box-shadow: 6px 6px 0 #000;
    transition: all 0.2s ease;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid #000;
    height: clamp(60px, 10vw, 80px);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

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

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

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

.project-name {
    font-family: var(--font-en);
    font-size: clamp(0.7rem, 2.2vw, 1.2rem);
    line-height: 1.1;
    color: var(--text-main);
    border-left: 2px solid #000;
    padding-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.project-name span {
    color: var(--primary);
    font-size: 0.8em;
    display: block;
}

/* PC Nav */
.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.95rem);
    font-weight: 900;
    color: var(--text-main);
    position: relative;
    font-family: var(--font-jp);
    white-space: nowrap;
}

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

/* Hamburger Menu Button */
.menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000;
    border: none;
    background: none;
    z-index: 10001;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: clamp(60px, 10vw, 80px);
    left: 0;
    width: 100%;
    height: calc(100vh - clamp(60px, 10vw, 80px));
    background: #fff;
    z-index: 10000;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-top: 3px solid #000;
    overflow-y: auto;
}

.mobile-menu-overlay.open {
    display: flex;
}

.mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu-overlay li {
    margin: 15px 0;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.mobile-menu-overlay a {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    font-family: var(--font-jp);
}

/* PCでは非表示にするクラス */
.sp-only {
    display: none;
}

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

/* アニメーション設定 */
.anim-target {
    opacity: 0;
}

.anim-zoom-in.visible {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.anim-slide-left.visible {
    animation: slideLeft 0.8s ease-out forwards;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.anim-slide-right.visible {
    animation: slideRight 0.8s ease-out forwards;
}

@keyframes slideRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        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 {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.anim-flip.visible {
    animation: flipInX 0.8s ease-out forwards;
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

/* テキストハイライト（マーカー風） */
.text-highlight {
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    /* 黄色のマーカー */
    font-weight: bold;
    padding: 0 2px;
    display: inline;
}

/* Tag */
.tag {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 3px 10px;
    font-size: 0.7rem;
    margin-right: 5px;
    font-weight: bold;
    transform: skewX(-10deg);
}

/* モーダル・スライダー・アコーディオン */
.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;
}

/* プレビューモーダルとspec-modalのz-indexを確実に適用 */
#preview-modal,
#spec-modal {
    z-index: 999999 !important;
}

/* spec-modalのコンテンツがヘッダーの下に隠れないように調整 */
#spec-modal .modal-content {
    margin-top: clamp(70px, 11vw, 90px);
    max-height: calc(90vh - clamp(70px, 11vw, 90px));
}

.modal-content {
    background: #fff;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 4px solid #000;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    line-height: 1;
}

.preview-modal-content {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    pointer-events: none;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-modal-content img {
    max-height: 85vh;
    max-width: 90%;
    border: 4px solid #fff;
    pointer-events: auto;
}

.preview-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10001;
}

.preview-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 50%;
}

.preview-nav-btn.prev {
    left: 20px;
}

.preview-nav-btn.next {
    right: 20px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.slider-slide {
    min-width: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}

.accordion-content {
    display: none;
    margin-top: 20px;
    border-top: 2px solid #000;
    padding-top: 20px;
}

.accordion-content.open {
    display: block;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 700px;
}

.plan-table th,
.plan-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

.plan-table th {
    background: #f0f0f0;
    font-weight: bold;
    color: #000;
}

.table-scroll {
    overflow-x: auto;
}

.check-mark {
    color: var(--primary);
    font-size: 1.2rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    table-layout: fixed; /* ★追加：列の幅を均等にする設定 */
}

.spec-table th,
.spec-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center; /* ★変更：数値を見やすくするため中央揃えに変更 */
    vertical-align: middle; /* ★追加：上下も中央揃え */
}

.spec-table th {
    background: #f9f9f9;
    /* width: 30%;  <-- ★削除：この指定を消すことで均等になります */
    font-weight: bold;
}

/* 動画フレーム */
.video-responsive-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.video-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-responsive-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 動画全体を表示（余白は黒） */
    background: #000;
}

/* HERO Section */
.hero {
    min-height: 600px;
    height: auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* 黒い影を薄くしました（0.3→0.1, 0.6→0.3） */
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
        url('../assets/hero-main.png') center/cover no-repeat;
    animation: heroBgZoom 20s ease-out forwards;
}

.hero-content {
    max-width: 850px;
    width: 95%;
    position: relative;
    z-index: 2;
    border: 4px solid #000;
    padding: clamp(20px, 5vw, 30px);

    /* 背景を半透明（0.7）にし、すりガラス効果（blur）を追加 */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari用 */

    box-shadow: 10px 10px 0 var(--primary);
    transform: rotate(-1deg);
}

.hero-tag {
    background: #000;
    color: #fff;
    padding: 4px 15px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    transform: skewX(-10deg);
    font-size: 0.9rem;
}

.hero-header-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}

.hero-artist-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

.hero-artist-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #000;
    margin-bottom: 10px;
}

.hero-artist-name {
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-artist-jp {
    font-size: 0.6rem;
    font-weight: normal;
    color: #555;
}

.hero-title-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    color: var(--text-main);
    font-family: var(--font-en);
    text-transform: uppercase;
}

.hero-title-jp {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.hero-subtitle-jp {
    font-size: 0.5em;
    display: block;
    color: var(--text-sub);
    font-weight: normal;
}

@media (max-width: 600px) {
    .hero-header-layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.hero-text {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-message {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.6;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.hero-message span {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-img {
    border: 3px solid #000;
    box-shadow: 10px 10px 0 var(--accent);
    overflow: hidden;
}

.intro-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 25px;
    color: #000;
    font-weight: 900;
    border-left: 8px solid var(--primary);
    padding-left: 20px;
}

.comic-balloon {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    margin-top: 50px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

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

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

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.preview-item img {
    border: 2px solid #000;
    transition: 0.3s;
    width: 100%;
}

.preview-item:hover img {
    transform: scale(1.02);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

/* =========================================
   Plans Style (Updated for Turn 5)
   ========================================= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* PLAN 1 メイン推奨ラベル */
.plan-recommended-label {
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #E65100;
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border: 2px solid #FFD700;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 12px 20px;
    letter-spacing: 0.05em;
}

.plan-recommended-label i {
    color: #DAA520;
    margin-right: 5px;
}

.plan-main-wrapper .plan-card {
    border-radius: 0 0 15px 15px;
    border-top: none;
    border-color: #FFD700;
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.25);
}

.plan-main-wrapper .plan-card .plan-badge {
    font-size: 1rem;
}

/* PLAN 2 サブ表示 */
.plan-sub-heading {
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.plan-card-sub {
    opacity: 0.9;
}

.plan-card-sub .plan-img {
    max-height: 200px;
    object-fit: cover;
}

/* カード本体：余白を調整し、overflow設定を削除（ボタンの影が切れないように） */
.plan-card {
    background: #fff;
    border: 3px solid #ddd;
    padding: 40px 20px;
    text-align: center;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    scroll-margin-top: 120px;
    display: flex;
    flex-direction: column;
}

/* ホバー時の動き */
.plan-card:hover {
    transform: translateY(-5px);
}

/* バッジ：位置を枠線に合わせて微調整 */
.plan-badge {
    color: #fff;
    padding: 8px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    top: -3px;
    /* 枠線の上に被せる */
    left: -3px;
    border-radius: 13px 0 10px 0;
    /* カードの角丸に合わせる */
    font-family: var(--font-en);
    letter-spacing: 1px;
    z-index: 10;
}

/* 画像 */
.plan-img {
    width: 100%;
    max-width: 260px;
    height: 260px;
    object-fit: cover;
    margin: 30px auto 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    background: #f4f4f4;
}

/* 画像の下に添えるキャプション（何の画像かを明示・2026-08-05） */
.plan-img-caption {
    max-width: 260px;
    margin: -12px auto 18px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #777;
    text-align: center;
}

/* プラン別リターンバナー（1口 / 5口 / 10口・2026-08-05）
   実寸360x122で設計した画像を3倍解像度で書き出したもの。拡大しないこと。 */
.plan-return-banner {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* テキスト */
.plan-name {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text-main);
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--font-en);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.plan-goal {
    display: inline-block;
    background: #f4f4f4;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 25px;
}

.plan-desc {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

/* 配色設定 */
/* PLAN 1: オレンジ */
.plan-orange {
    border-color: #FF9800;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.15);
}

.plan-orange .plan-badge {
    background: #FF9800;
}

.plan-orange .plan-price {
    color: #E65100;
}

.plan-orange:hover {
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

/* PLAN 2: グリーン */
.plan-green {
    border-color: #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.15);
}

.plan-green .plan-badge {
    background: #4CAF50;
}

.plan-green .plan-price {
    color: #2E7D32;
}

.plan-green:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* PLAN 3: ブルー（第11弾＝支援プランが3本あるため追加。plan-orange/greenと同一構造） */
.plan-blue {
    border-color: #1E88E5;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.15);
}

.plan-blue .plan-badge {
    background: #1E88E5;
}

.plan-blue .plan-price {
    color: #0D47A1;
}

.plan-blue:hover {
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}


/* PLAN 1 印税チャンスバナー */
.plan-chance-banner {
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 0.95rem;
    color: #E65100;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
}

.plan-chance-banner i {
    color: #DAA520;
    font-size: 1.1rem;
}

/* プランカード 限定ラベル */
.plan-limited-label {
    position: absolute;
    top: -3px;
    right: -3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #7B3F00;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 900;
    border-radius: 0 13px 0 10px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.4);
}

.plan-limited-label i {
    color: #E65100;
}

/* 印税還元リターン ゴールドハイライト */
.return-highlight-gold {
    background: linear-gradient(135deg, #FFFDE7, #FFF8E1) !important;
    border: 2px solid #FFD700 !important;
    border-radius: 10px;
    padding: 15px !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.return-highlight-gold dt {
    color: #E65100 !important;
}

/* 応援プラン 限定バナー */
.plans-limited-banner {
    text-align: center;
    background: linear-gradient(135deg, #FFF3E0, #FFFDE7);
    border: 2px solid #FF9800;
    color: #E65100;
    font-weight: 900;
    font-size: 1.15rem;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    animation: pulse-limited 2s ease-in-out infinite;
}

.plans-limited-banner i {
    color: #FF5722;
}

@keyframes pulse-limited {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* リターンアコーディオン */
.plan-return-wrapper {
    margin-top: auto;
    border-top: 2px dashed #eee;
    padding-top: 20px;
}

.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.95rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 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: 15px;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    font-size: 0.9rem;
}

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

.plan-return-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-return-content li {
    margin-bottom: 10px;
    padding-left: 1.4em;
    position: relative;
    line-height: 1.6;
    font-weight: bold;
    color: #333;
}

.plan-return-content li::before {
    content: '✔';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 900;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown */
.countdown-area {
    text-align: center;
    background: #000;
    color: #fff;
    padding: 20px;
    margin-bottom: 50px;
    border: 4px solid var(--primary);
}

.countdown-timer {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--primary);
    margin-top: 10px;
}

/* Project Info */
.project-info-box {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    margin-top: 80px;
    text-align: center;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('../assets/visual-01.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: normal;
    background-color: rgba(255, 255, 255, 0.9);
}

.project-info-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: var(--font-en);
}

/* Flow Style */
.flow-container {
    max-width: 900px;
    margin: 0 auto;
}

.flow-card {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    background: #fff;
    padding: 30px;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #000;
    align-items: flex-start;
}

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

.flow-content h4 {
    font-size: 1.4rem;
    margin: 0 0 10px;
    font-weight: 900;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.flow-content p {
    font-size: 1rem;
    color: var(--text-sub);
    margin-bottom: 10px;
}

.flow-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    background: #f0f0f0;
    padding: 10px;
}

/* Roadmap Style */
.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #e0e0e0;
    border-radius: 3px;
}

.roadmap-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.roadmap-point {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 3px #000;
    position: absolute;
    left: -36px;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: var(--font-en);
}

.roadmap-content {
    margin-left: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 2px solid #000;
}

.roadmap-date {
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-en);
    font-size: 1.2rem;
}

.roadmap-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* Sponsor Style */
.sponsor-section {
    background: #111;
    color: #fff;
    text-align: center;
}

.sponsor-section .section-title {
    color: #fff;
}

.sponsor-section .section-title::after {
    background: #fff;
}

.sponsor-btn {
    background: #fff;
    color: #000;
    padding: 20px 60px;
    font-weight: 900;
    display: inline-block;
    margin-top: 30px;
    font-size: 1.2rem;
    border: 2px solid #fff;
    transition: 0.3s;
}

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

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

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

.sns-icon-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.sns-icon-link:hover {
    transform: scale(1.1);
}

.sns-x {
    background: #000;
}

.sns-line {
    background: #06C755;
}

.sns-discord {
    background: #5865F2;
}

.sns-mail {
    background: #1E90FF;
}

.sns-tiktok {
    background: #000;
}

.sns-youtube {
    background: #FF0000;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-btn {
    display: block;
    padding: 12px 15px;
    border: 2px solid #000;
    font-weight: 900;
    color: #fff;
    text-align: center;
    box-shadow: 4px 4px 0 #000;
    font-size: 0.95rem;
    transition: 0.2s;
}

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

.cta-btn.plans {
    background: var(--primary);
}

.cta-btn.goods {
    background: var(--accent);
}

.cta-btn.camp {
    background: #e63b2e;
    border-color: #b02c22;
}

.cta-btn.camp-achieved {
    background: #B8860B;
    border-color: #8B6914;
    color: #fff;
    font-size: 0.85em;
}

/* Footer */
footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    font-family: var(--font-en);
}

/* =========================================
   CAMPFIRE Section
   ========================================= */
.campfire-box {
    background: #fff;
    border: 3px solid #e63b2e;
    /* CAMPFIRE Red */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 10px 10px 0 rgba(230, 59, 46, 0.2);
    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: 650px;
    /* 450pxから650pxへ拡大 */
    margin: 0 auto;
    border: 2px solid #000;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.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: 30px;
    line-height: 1.8;
    font-size: 1rem;
}

.btn-camp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e63b2e;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: var(--font-en);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(230, 59, 46, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-camp:hover {
    background: #c42b1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 59, 46, 0.6);
    color: #fff;
}

/* === CAMPFIRE達成セクション === */
.campfire-achievement {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* バナー画像＋達成スタンプ */
.achievement-img-area {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.achievement-img-area .campfire-img {
    width: 100%;
    max-width: 650px;
    border: 2px solid #000;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

/* SVGメダルスタンプ */
.achievement-stamp {
    position: absolute;
    top: -5px;
    right: -25px;
    width: 130px;
    height: 125px;
    z-index: 2;
}

.stamp-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stamp-text {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 83px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.stamp-text i {
    font-size: 1rem;
    margin-bottom: 1px;
    color: #5C3300;
}

.stamp-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 900;
    color: #5C3300;
    letter-spacing: 0.08em;
    line-height: 1;
}

.stamp-main {
    display: block;
    font-size: 0.65rem;
    font-weight: 900;
    color: #5C3300;
    line-height: 1;
}

.stamp-pct {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #5C3300;
    line-height: 1;
}

.achievement-text {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #333;
}

/* CAMPFIRE達成実績ボックス */
.achievement-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px auto 20px;
    max-width: 500px;
}

.achievement-stat {
    flex: 1;
    background: #fff;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
}

.achievement-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #7B3F00;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.achievement-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E65100;
    line-height: 1.1;
}

.achievement-stat-unit {
    font-size: 0.9rem;
    font-weight: 700;
}

/* CAMPFIRE募集終了・達成バッジ（画像下帯） */
.achievement-ended-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: #B8860B;
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.achievement-ended-badge i {
    margin-right: 5px;
    color: #FFD700;
}

.achievement-limited {
    display: inline-block;
    background: #FFF3E0;
    border: 2px solid #FF9800;
    color: #E65100;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 10px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.achievement-limited i {
    color: #FF5722;
}

.achievement-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.achievement-btn-primary {
    padding: 15px 35px !important;
    font-size: 1.15rem !important;
    font-weight: 900;
    border-radius: 50px;
}

.achievement-btn-secondary {
    font-size: 0.95rem;
    padding: 12px 25px;
    background: transparent;
    color: #e63b2e;
    border: 2px solid #e63b2e;
    box-shadow: none;
}

.achievement-btn-secondary:hover {
    background: #e63b2e;
    color: #fff;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .campfire-achievement {
        padding: 0 10px;
    }

    .achievement-badge {
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    .achievement-text {
        font-size: 0.9rem;
        text-align: left;
    }

    .achievement-stats {
        gap: 10px;
        max-width: 100%;
    }

    .achievement-stat {
        padding: 10px 5px;
    }

    .achievement-stat-value {
        font-size: 1.3rem;
    }

    .achievement-stat-unit {
        font-size: 0.75rem;
    }

    .achievement-stamp {
        width: 100px;
        height: 100px;
        right: -12px;
        top: 0px;
    }

    .stamp-text {
        height: 67px;
        top: 3px;
        gap: 0;
    }

    .stamp-text i {
        font-size: 0.7rem;
        margin-bottom: 0;
    }

    .stamp-sub {
        font-size: 0.55rem;
    }

    .stamp-main {
        font-size: 0.5rem;
    }

    .stamp-pct {
        font-size: 0.85rem;
    }

    .achievement-ended-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .achievement-buttons {
        flex-direction: column;
        align-items: center;
    }

    .achievement-btn-primary,
    .achievement-btn-secondary {
        width: 100%;
        box-sizing: border-box;
    }

    .btn-camp {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        box-sizing: border-box;
    }

    /* NEWSセクション内CTAボタン */
    .achievement-btn-primary {
        font-size: clamp(0.85rem, 3.8vw, 1.1rem) !important;
        padding: 15px 16px !important;
        white-space: nowrap;
    }

    /* プランバナー */
    .plans-limited-banner {
        font-size: clamp(0.85rem, 3.8vw, 1.15rem);
    }

    /* プラン推奨ラベル */
    .plan-recommended-label {
        font-size: clamp(0.75rem, 3.5vw, 1.1rem);
        white-space: nowrap;
        padding: 10px 12px;
    }

    /* スマホでのCTA調整 */
    .floating-cta {
        bottom: 15px;
        right: 10px;
        gap: 6px;
    }

    .cta-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

}

/* =========================================
   Project Goals Section (Missing Styles)
   ========================================= */

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.goal-card-target {
    background: #fff;
    border: 3px solid #000;
    padding: 25px;
    position: relative;
    box-shadow: 6px 6px 0 var(--primary);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    /* テキストを中央揃え */
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 5px !important;
    /* 余白調整済み */
    color: var(--text-main);
}

.goal-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 10px;
    margin-top: 0 !important;
    /* 余白調整済み */
    padding-top: 0 !important;
    /* 余白調整済み */
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    align-self: center;
}

.goal-amount {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-en);
    display: block;
    margin-bottom: 15px;
}

.goal-desc {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: center;
}

.goal-link {
    background: #000;
    color: #fff;
    padding: 12px 10px;
    font-size: 0.9rem;
    font-weight: bold;
    display: block;
    margin-top: auto;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.goal-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .goal-card-target {
        margin-bottom: 10px;
    }
}

/* =========================================
   Mobile Optimization (Add to the end of style.css)
   ========================================= */
@media (max-width: 600px) {

    /* --- Hero Section 修正 --- */
    .hero-content {
        width: 85%;
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-subtitle-jp {
        font-size: 0.7rem;
    }

    .hero-text {
        font-size: 0.85rem;
        line-height: 1.6;
        text-align: center;
    }

    .hero-message {
        font-size: 0.85rem;
        padding: 15px;
    }

    .hero-message span {
        font-size: 1rem;
    }

    /* --- Button & CTA 修正 --- */
    .btn-main {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 4px 4px 0 #000;
    }

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

    /* --- General Typography 修正 --- */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-title span {
        font-size: 0.9rem;
    }

    .intro-text h3,
    .project-info-title {
        font-size: 1.3rem;
        border-left-width: 5px;
        padding-left: 15px;
    }

    .comic-balloon {
        padding: 20px;
    }

    .comic-balloon h4 {
        font-size: 1rem;
    }

    .comic-balloon p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* --- Project Info (ABOUT) 修正 --- */
    #about-project .project-info-box p {
        font-size: 0.85rem;
        line-height: 1.6 !important;
    }

    /* スマホの時だけ表示（改行）させる */
    .sp-only {
        display: block;
    }

    /* --- 長文を1行に収めるための自動縮小設定 --- */
    .fit-text-sp {
        white-space: nowrap;
        /* 自動改行（折り返し）を禁止 */
        font-size: 3.2vw !important;
        /* 画面幅に合わせて文字サイズを調整 */
        width: 100%;
        box-sizing: border-box;
        padding: 0 2px;
    }

    /* 特に文字数が多い注釈部分（※〜）はさらに小さくして収める */
    .fit-text-sp span {
        font-size: 2.4vw !important;
        display: inline-block;
    }

}

/* =========================================
   Plan Return Details (Updated)
   ========================================= */

/* アコーディオンの中身のコンテナ */
.plan-return-content {
    display: none;
    margin-top: 15px;
    text-align: left;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    font-size: 0.9rem;
}

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

/* 詳細リストのグループ */
.return-detail-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 各リターン項目 */
.return-item {
    margin: 0;
    padding-bottom: 15px;
    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: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* リターン項目説明文 */
.return-item dd {
    margin: 0;
    padding-left: 1.6em;
    /* アイコン分インデント */
    color: #444;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* 注釈テキスト */
.return-note {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #888;
}

/* テキストリンク */
.text-link {
    color: var(--accent);
    text-decoration: underline;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.text-link:hover {
    opacity: 0.7;
}

/* スマホ調整 */
@media (max-width: 600px) {
    .plan-return-content {
        padding: 15px;
    }

    .return-item dt {
        font-size: 0.95rem;
    }

    .return-item dd {
        padding-left: 0;
        /* スマホではインデント解除してスペース確保 */
        font-size: 0.85rem;
    }
}

/* =========================================
   Goods Section Styles
   ========================================= */

/* グッズグリッド */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

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

/* スマホ対応 */
@media (max-width: 600px) {
    .goods-grid {
        grid-template-columns: 1fr; /* ★ここを修正：強制的に1列にする */
        gap: 20px;
    }

    .goods-name {
        font-size: 1rem;
        min-height: 45px;
    }

    .goods-price {
        font-size: 1.3rem;
    }
}

/* グッズカード */
.goods-card {
    background: #fff;
    border: 3px solid #000;
    padding: 0;
    position: relative;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

/* グッズバッジ */
.goods-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 2px 2px 0 #000;
}

/* グッズ画像エリア */
.goods-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goods-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.goods-card:hover .goods-img {
    transform: scale(1.05);
}

/* グッズ画像スライダー */
.goods-img-slider {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

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

.goods-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.goods-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スライダーボタン */
.goods-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
}

.goods-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.goods-slider-btn.prev {
    left: 10px;
}

.goods-slider-btn.next {
    right: 10px;
}

/* スライダードット */
.goods-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.goods-slider-dot.active {
    background: #fff;
}


/* グッズ情報 */
.goods-name {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 15px 15px 10px;
    min-height: 50px;
    line-height: 1.4;
    text-align: center; /* ★追加：グッズ名を中央揃え */
}

.goods-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-en);
    margin: 0 15px 15px;
    text-align: center; /* ★追加：価格を中央揃え */
}

/* グッズボタン */
.goods-card .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.3s ease;
    margin: 0 15px 10px;
}

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

.goods-card .btn-main {
    margin: 0 15px 15px;
    width: 240px;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .goods-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .goods-card .btn-main {
        width: calc(100% - 40px); /* スマホでは幅広に戻す */
        max-width: 100%;
    }

    .goods-name {
        font-size: 1rem;
        min-height: 45px;
    }

    .goods-price {
        font-size: 1.3rem;
    }
}

/* =========================================
   Refactored Inline Styles
   ========================================= */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-title-jp {
    text-align: center;
}

.hero-subtitle-jp {
    text-align: center;
}

.relative-z2 {
    position: relative;
    z-index: 2;
}

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

.text-left {
    text-align: left;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pt-20 {
    padding-top: 20px;
}

.border-top-black {
    border-top: 2px solid #000;
}

.text-bold {
    font-weight: bold;
}

.fw-500 {
    font-weight: 500;
}

.fw-900 {
    font-weight: 900;
}

.text-normal {
    font-weight: normal;
}

.text-sub {
    color: var(--text-sub);
}

.text-primary {
    color: var(--primary);
}

.text-camp {
    color: #e63b2e;
}

.text-accent {
    color: var(--accent);
}

.text-white {
    color: #fff;
}

.text-gray {
    color: #666;
}

.text-underline {
    text-decoration: underline;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-30 {
    gap: 30px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-100 {
    width: 100%;
}

.line-height-16 {
    line-height: 1.6;
}

.line-height-2 {
    line-height: 2;
}

.font-md {
    font-size: 1.1rem;
}

.font-sm {
    font-size: 0.9rem;
}

.font-xs {
    font-size: 0.8rem;
}

.font-xxs {
    font-size: 0.7rem;
}

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

.bg-pale-red {
    background: #fff5f5;
}

.bg-gray-light {
    background: #f9f9f9;
}

.border-bottom-black {
    border-bottom: 3px solid #000;
}

/* Specific Refactors */
.artist-img-wrapper {
    text-align: center;
}

.artist-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #000;
    box-shadow: 5px 5px 0 var(--primary);
}

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

.artist-desc {
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.preview-btn {
    border-radius: 30px;
}

.countdown-header {
    font-weight: bold;
    line-height: 1.6;
}

.plans-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.goods-buy-btn {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    margin: 15px 0 0;
}

.plan-buy-btn {
    padding: 15px 20px;
    font-size: 1.2rem;
    width: 90%;
    margin: 25px auto 0;
    display: flex;
}

.roadmap-link-wrapper {
    margin-top: 10px;
    font-size: 0.85rem;
}

.roadmap-link {
    color: var(--accent);
    text-decoration: underline;
}

.roadmap-point-current {
    background: #fff;
    color: #000;
    border-color: #000;
}

.roadmap-content-current {
    border-color: var(--primary);
}

/* =========================================
   Tokoloshe Hunters 試し読み導線バナー
   ========================================= */
.tokoloshe-banner {
    margin-top: 50px;
    padding: 30px 35px;
    border: 3px solid #2c6e49;
    border-radius: 12px;
    background: #f0faf4;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 6px 6px 0 rgba(44, 110, 73, 0.15);
}

.tokoloshe-label {
    display: inline-block;
    background: #2c6e49;
    color: #fff;
    padding: 4px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.tokoloshe-title {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 900;
    margin: 0 0 15px;
    line-height: 1.5;
    color: #1a4731;
}

.tokoloshe-work-tag {
    display: inline-block;
    background: #e8f5e9;
    border: 2px solid #2c6e49;
    color: #2c6e49;
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 700;
    vertical-align: middle;
}

.tokoloshe-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-tokoloshe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c6e49;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid #1a4731;
    box-shadow: 4px 4px 0 #1a4731;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-tokoloshe:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #1a4731;
    background: #245e3d;
    color: #fff;
}

.tokoloshe-main-img {
    display: block;
    width: 100%;
    max-width: 680px;
    margin: 20px auto;
    border-radius: 8px;
    border: 2px solid #2c6e49;
}

.tokoloshe-note {
    margin-top: 18px;
    font-size: 0.8rem;
    color: #666;
    background: #fff;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    padding: 10px 15px;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .tokoloshe-banner {
        padding: 20px 18px;
    }
    .tokoloshe-desc {
        font-size: 0.85rem;
        text-align: left;
    }
    .btn-tokoloshe {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* =========================================
   Goods Tab System
   ========================================= */
.goods-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: center;
}

.goods-tab-btn {
    padding: 8px 18px;
    border: 2px solid #000;
    background: #fff;
    font-weight: 700;
    font-family: var(--font-en);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s ease;
    letter-spacing: 0.03em;
}

.goods-tab-btn:hover:not(.active) {
    background: #f0f0f0;
}

.goods-tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

/* モバイル：タブリストを横スクロール対応 */
@media (max-width: 600px) {
    .goods-tab-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* 左右パディングでスクロール余白確保 */
        padding-left: 4px;
        padding-right: 4px;
    }
    .goods-tab-list::-webkit-scrollbar {
        display: none;
    }
    .goods-tab-btn {
        font-size: 0.8rem;
        padding: 7px 14px;
        flex-shrink: 0;
    }
}

/* グッズ紹介テキスト */
.goods-intro {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}
.goods-intro-catch {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.goods-intro-desc {
    font-size: clamp(0.78rem, 3.5vw, 0.9rem);
    color: #444;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

/* タブエリアのラッパー（フェード用） */
.goods-tab-wrap {
    position: relative;
    margin-bottom: 30px;
}
.goods-tab-wrap .goods-tab-list {
    margin-bottom: 0;
}

/* 右端フェード＋矢印（スマホのみ）*/
.goods-tab-fade-right {
    display: none;
    pointer-events: none;
}
@media (max-width: 600px) {
    .goods-tab-fade-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 64px;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.95) 50%);
        z-index: 3;
        gap: 2px;
    }
}

/* 矢印アイコン */
.goods-tab-arrow {
    display: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
    font-weight: 900;
    animation: tab-arrow-bounce 0.8s ease-in-out infinite;
}
.goods-tab-arrow-label {
    display: none;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-family: var(--font-en);
}
@media (max-width: 600px) {
    .goods-tab-arrow,
    .goods-tab-arrow-label {
        display: block;
    }
}

@keyframes tab-arrow-bounce {
    0%, 100% { transform: translateX(0);   opacity: 1;   }
    50%       { transform: translateX(8px); opacity: 0.4; }
}

/* ============================================================
   ===== 2026-08-04 FB 反映（支援プラン横並び／試し読み縦スクロール／アニメーション拡充） =====
   ============================================================ */

/* --- 支援プラン：PLAN 1〜3 を横並び --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

.plan-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.plan-col .plan-card {
    height: 100%;
}

/* 横並び用にカードをコンパクト化 */
.plans-grid .plan-card {
    padding: 30px 18px 22px;
}

.plans-grid .plan-img {
    max-width: 210px;
    height: 210px;
    margin: 24px auto 16px;
}

.plans-grid .plan-img-caption {
    max-width: 210px;
    margin: -8px auto 14px;
    font-size: 0.72rem;
}

.plans-grid .plan-return-banner {
    margin-bottom: 16px;
}

.plans-grid .plan-badge {
    font-size: 0.95rem;
    padding: 7px 16px;
}

.plans-grid .plan-main-wrapper .plan-card .plan-badge,
.plans-grid .plan-col.plan-main-wrapper .plan-card .plan-badge {
    font-size: 0.95rem;
}

.plans-grid .plan-name {
    font-size: 1.2rem;
    line-height: 1.5;
}

.plans-grid .plan-price {
    font-size: 1.5rem;
    line-height: 1.3;
}

.plans-grid .plan-goal {
    font-size: 0.82rem;
    margin-bottom: 18px;
}

.plans-grid .plan-desc {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.plans-grid .plan-limited-label {
    font-size: 0.75rem;
}

.plans-grid .plan-chance-banner {
    font-size: 0.8rem;
    line-height: 1.7;
}

.plans-grid .plan-recommended-label {
    font-size: 0.98rem;
    padding: 10px 12px;
}

.plans-grid .plan-return-toggle {
    font-size: 0.9rem;
    padding: 12px 10px;
}

.plans-grid .return-item dt {
    font-size: 0.88rem;
}

.plans-grid .return-item dd,
.plans-grid .return-note {
    font-size: 0.8rem;
}

/* 3カラム→2カラム→1カラム */
@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 780px;
    }

    .plans-grid .plan-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .plans-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 600px;
        gap: 30px;
    }

    .plans-grid .plan-col:first-child {
        grid-column: auto;
    }
}

/* --- 漫画家の発信媒体（作品導線バナー削除に伴う集約先） --- */
.artist-sns-row {
    max-width: 800px;
    margin: 26px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.artist-sns-row .artist-sns-label {
    font-weight: 900;
    font-size: 0.82rem;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
}

.artist-sns-row a {
    font-weight: 800;
    color: var(--text-main);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1px;
    transition: opacity .2s;
}

.artist-sns-row a:hover {
    opacity: .6;
}

/* --- 試し読み：サムネイル下の案内 --- */
.preview-read-hint {
    text-align: center;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
}

.preview-read-hint i {
    margin-right: 4px;
}

/* --- 試し読みモーダル（縦スクロール） --- */
.preview-reader-overlay {
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background: rgba(18, 20, 22, .95);
}

.preview-reader {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
}

.preview-reader-head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #17191c;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.preview-reader-tag {
    flex-shrink: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.preview-reader-title {
    flex: 1;
    min-width: 0;
    color: #fff;
    font-weight: 900;
    font-size: 0.98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-reader-page {
    flex-shrink: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 0.78rem;
    font-weight: 700;
}

.preview-reader-overlay .preview-close-btn {
    position: static;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.preview-reader-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 18px 14px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.preview-reader-body img {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .45);
}

.preview-reader-foot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #17191c;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.preview-work-btn {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 11px 8px;
    border-radius: 8px;
    cursor: pointer;
}

.preview-work-btn:disabled {
    opacity: .3;
    cursor: default;
}

.preview-foot-cta {
    flex: 1.2;
    text-align: center;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 0.88rem;
    padding: 12px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .preview-reader-foot {
        flex-wrap: wrap;
    }

    .preview-foot-cta {
        order: -1;
        flex: 1 0 100%;
    }
}

/* --- スクロールアニメーション：種類を追加 --- */
.anim-target {
    will-change: opacity, transform;
}

.anim-fade-up.visible {
    animation: fadeUp .85s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes fadeUp {
    0% {
        transform: translateY(38px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.anim-fade-down.visible {
    animation: fadeDown .85s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes fadeDown {
    0% {
        transform: translateY(-32px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.anim-blur.visible {
    animation: blurIn .9s ease-out forwards;
}

@keyframes blurIn {
    0% {
        filter: blur(12px);
        transform: scale(1.04);
        opacity: 0;
    }

    100% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.anim-rotate.visible {
    animation: rotateIn .9s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes rotateIn {
    0% {
        transform: rotate(-6deg) translateY(30px) scale(.94);
        opacity: 0;
    }

    100% {
        transform: rotate(0) translateY(0) scale(1);
        opacity: 1;
    }
}

/* 見出し用：下から現れるマスク＋アンダーライン */
.anim-mask {
    clip-path: inset(0 0 100% 0);
}

.anim-mask.visible {
    animation: maskUp .9s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes maskUp {
    0% {
        clip-path: inset(0 0 100% 0);
        transform: translateY(18px);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 -10% 0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* 画像用：わずかにパンしながら出る */
.anim-pan.visible {
    animation: panIn 1s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes panIn {
    0% {
        transform: translateX(-24px) scale(1.05);
        opacity: 0;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* 動きを減らす設定の環境では一切動かさない */
@media (prefers-reduced-motion: reduce) {

    .anim-target,
    .anim-target.visible {
        opacity: 1 !important;
        clip-path: none !important;
        animation: none !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ※「まずはここから」ラベルは 2026-08-04 FB で削除。高さ合わせのスペーサーも不要になり撤去済み */

/* 3カラム時：カードの高さをそろえ、CTAを下端に固定。ボタンのはみ出しも止める */
.plan-col {
    height: 100%;
}

.plans-grid .plan-card .btn-main {
    box-sizing: border-box;
    width: 100% !important;
    margin-top: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.plans-grid .plan-return-wrapper {
    margin-bottom: 14px;
}

/* 金額の内訳（1口 12,000円 × N口）は副行に落として折返しを防ぐ */
.plan-price-sub {
    font-size: 0.82rem;
    font-weight: 700;
    color: #666;
    margin: -2px 0 8px;
}

/* CAMPFIREセクションのボタンが1本だけになったため、中央寄せで幅を持たせる */
.achievement-buttons-single {
    justify-content: center;
}

.achievement-buttons-single .achievement-btn-secondary {
    min-width: 320px;
    max-width: 100%;
}

@media (max-width: 480px) {
    .achievement-buttons-single .achievement-btn-secondary {
        min-width: 0;
        width: 100%;
    }
}

/* hero タイトルに添える（仮）表記（作品タイトル未確定のため 2026-08-04 復活） */
.hero-title-provisional {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.34em;
    font-weight: 700;
    letter-spacing: 0.02em;
    vertical-align: middle;
    opacity: 0.75;
}

@media (max-width: 700px) {
    .hero-title-provisional {
        font-size: 0.4em;
        margin-left: 6px;
    }
}

/* 中途半端な改行を防ぐ：見出しは行長を均等化、本文は最終行の孤立を回避（2026-08-04 FB） */
h1, h2, h3, h4, h5, .btn-primary, .btn-secondary, .cta-btn, .plan-title { text-wrap: balance; }
p, li, figcaption { text-wrap: pretty; }
body { word-break: auto-phrase; }
.achievement-stat-value { white-space: nowrap; }   /* 「360,000／円」の分割を防ぐ */
.roadmap-title, .flow-content h4 { text-wrap: balance; }
@media (max-width: 700px) { .roadmap-title { font-size: 1.15rem; } }   /* 「…参加を／打診」を1行に収める */   /* 「プロジェクト参加を／打診」を均等割りに */   /* 日本語を文節で折り返す（Chromium系） */

/* =========================================================================
   2026-08-05 ユーザーFB 対応
   ①右下フローティングCTA廃止 → ページ内CTA　②heroの2ボタン
   ③プランカードの整理　④リターン詳細のプレビュー（モーダル）
   ⑤CAMPFIREもプレビュー方式へ　⑥支援金の使い道をカード化
   ========================================================================= */

/* ---- hero のボタン2本 ---- */
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.hero-btns .btn-secondary.hero-btn-sub {
    background: rgba(255, 255, 255, 0.92);
}

/* ---- ページ内CTA（各セクションの区切りに置く） ---- */
.inline-cta {
    max-width: 860px;
    margin: 46px auto;
    padding: 30px 24px 26px;
    background: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    z-index: 2;
}
.inline-cta-lead {
    font-weight: 900;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 18px;
}
.inline-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.inline-cta-btns .btn-main,
.inline-cta-btns .btn-camp {
    margin: 0;
}
.inline-cta-note {
    font-size: 0.82rem;
    line-height: 1.8;
    color: #666;
    margin: 16px 0 0;
}
@media (max-width: 700px) {
    .inline-cta {
        margin: 30px 15px;
        padding: 24px 18px 22px;
    }
    .inline-cta-lead { font-size: 1rem; }
    .inline-cta-btns { flex-direction: column; }
    .inline-cta-btns .btn-main,
    .inline-cta-btns .btn-camp { width: 100%; justify-content: center; }
}

/* ---- プランカード：リターン詳細ボタン ---- */
.plan-detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 18px auto 0;
    padding: 13px 14px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 900;
    font-size: 0.95rem;
    color: #000;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.plan-detail-btn:hover {
    background: #f2f2f2;
    transform: translateY(-2px);
}
.plan-detail-btn i { color: var(--primary); }

/* 横並びのとき、各カードの要素がガタつかないように高さを揃える。
   ボタン2つはカード下端へ寄せ、余りの高さは説明文の上下に吸わせる。 */
.plans-grid .plan-card {
    display: flex;
    flex-direction: column;
}
.plans-grid .plan-img-caption { min-height: 3.4em; }
.plans-grid .plan-price-sub { min-height: 1.4em; }
.plans-grid .plan-desc {
    min-height: 3.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 0 0;
}
.plans-grid .plan-detail-btn { margin-top: auto; }

/* ---- CAMPFIRE：ボタン2つの間に余白を入れる ---- */
.campfire-actions {
    max-width: 560px;
    margin: 34px auto 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.campfire-actions .achievement-buttons { margin: 0; }
.campfire-detail-btn {
    margin: 0;
    border-color: var(--primary);
}

/* ---- リターン詳細プレビュー（モーダル） ---- */
.plan-reader { background: #fff; }
.plan-reader-body {
    padding: 0;
    background: #fff;
}
.plan-reader-body .pr-inner { padding: 22px 24px 30px; }
@media (max-width: 700px) {
    .plan-reader-body .pr-inner { padding: 18px 15px 24px; }
}
.pr-lead {
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: bold;
    margin: 0 0 18px;
    padding: 14px 16px;
    background: #fff5f0;
    border-left: 5px solid var(--primary);
}
.pr-sec-title {
    font-weight: 900;
    font-size: 1.05rem;
    margin: 26px 0 12px;
    padding-bottom: 8px;
    border-bottom: 3px solid #000;
    display: flex;
    align-items: center;
    gap: 9px;
}
.pr-sec-title i { color: var(--primary); }

/* 表形式（アイコン｜リターン名｜内容） */
.pr-table {
    border: 2px solid #000;
    border-radius: 6px;
    overflow: hidden;
}
.pr-row {
    display: grid;
    grid-template-columns: 54px 220px 1fr;
    align-items: stretch;
    border-bottom: 1px solid #e2e2e2;
    background: #fff;
}
.pr-row:last-child { border-bottom: none; }
.pr-row:nth-child(even) { background: #fbfbfb; }
.pr-row.pr-row-gold { background: #fffaf0; }
.pr-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    font-size: 1.15rem;
    color: var(--primary);
    border-right: 1px solid #e2e2e2;
    background: #fafafa;
}
.pr-row-gold .pr-ico { color: #b8860b; background: #fff4de; }
.pr-nm {
    padding: 14px 14px;
    font-weight: 900;
    font-size: 0.92rem;
    line-height: 1.6;
    border-right: 1px solid #e2e2e2;
}
.pr-bd {
    padding: 14px 16px;
    font-size: 0.88rem;
    line-height: 1.85;
}
.pr-bd .pr-note {
    display: block;
    margin-top: 7px;
    font-size: 0.8rem;
    line-height: 1.75;
    color: #777;
}
@media (max-width: 780px) {
    .pr-row { grid-template-columns: 44px 1fr; }
    .pr-ico { padding: 12px 0; }
    .pr-nm {
        border-right: none;
        padding: 12px 12px 4px;
    }
    .pr-bd {
        grid-column: 2 / 3;
        padding: 0 12px 13px;
    }
}

/* 注意事項リスト */
.pr-notes {
    list-style: none;
    padding: 16px 18px;
    margin: 0;
    background: #f7f7f7;
    border: 2px solid #ddd;
    border-radius: 6px;
}
.pr-notes li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.84rem;
    line-height: 1.85;
    color: #444;
}
.pr-notes li:last-child { margin-bottom: 0; }
.pr-notes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* CAMPFIRE 8プランは価格を頭に出す */
.pr-price {
    display: block;
    margin-top: 5px;
    font-family: var(--font-en);
    font-weight: bold;
    font-size: 0.95rem;
    color: var(--primary);
}
.pr-limit {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 999px;
    background: #ffe9e9;
    color: #d0303f;
    vertical-align: middle;
}

/* ---- 支援金の使い道：カード＋アイコン ---- */
.use-block {
    max-width: 900px;
    margin: 50px auto 0;
    background: #fff;
    border: 3px solid #000;
    padding: 28px 26px 24px;
    position: relative;
    z-index: 2;
}
.use-title {
    font-weight: 900;
    font-size: 1.3rem;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.use-title::before {
    content: "";
    width: 8px;
    height: 26px;
    background: var(--primary);
    display: block;
}
.use-lead {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 20px;
}
.use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.use-card {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 18px 16px;
    background: #fcfcfc;
    transition: transform 0.2s, box-shadow 0.2s;
}
.use-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.use-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.use-name {
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 6px;
}
.use-desc {
    font-size: 0.84rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.use-note {
    font-size: 0.82rem;
    line-height: 1.8;
    color: #666;
    margin: 18px 0 0;
}
@media (max-width: 900px) {
    .use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .use-grid { grid-template-columns: 1fr; }
    .use-block { padding: 22px 18px 20px; }
}

/* =========================================================================
   2026-08-05 ユーザーFB 第2弾：チープに見える箇所の刷新（テーマ上書きレイヤー）
   ---------------------------------------------------------------------
   ここより上は Bill LP 準拠のコミック調（極太黒枠＋ベタ影＋ビビッドカラー）。
   本レイヤーはそれを上書きして、NFT支援者証・カード券面と同じ
   「墨＋箔＋余白」の落ち着いたトーンへ寄せている。
   ※ 元の定義は消していないので、戻したい場合はこのブロックごと外せばよい。
   ========================================================================= */

:root {
    /* 墨・紙 */
    --ink: #171b20;
    --ink-2: #2a3138;
    --paper: #ffffff;
    --paper-2: #f5f7f8;
    --line-1: #e2e7ea;
    --line-2: #cfd6da;
    --tx-1: #171b20;
    --tx-2: #5b656d;
    --tx-3: #8b959c;
    /* 箔・グレード */
    --foil: #b08d3f;
    --foil-lt: #d9c088;
    --g-bronze: #a56a35;
    --g-silver: #7b858f;
    --g-gold: #b08d3f;
    /* CAMPFIRE */
    --camp: #d8443c;
    --radius: 12px;
    --shadow-1: 0 2px 10px rgba(23, 27, 32, .05);
    --shadow-2: 0 10px 30px -12px rgba(23, 27, 32, .28);
}

/* ---------------------------------------------------------------
   1) 共通CTAボタン（形・高さ・幅の基準をひとつに）
   --------------------------------------------------------------- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 268px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .02em;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    box-shadow: var(--shadow-1);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-cta i { font-size: .95em; }

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

.btn-cta-ghost {
    background: #fff;
    color: var(--tx-1);
    border-color: var(--line-2);
}
.btn-cta-ghost:hover { background: var(--paper-2); }

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

@media (max-width: 700px) {
    .btn-cta { width: 100%; min-width: 0; font-size: .95rem; }
}

/* 既存ボタンもトーンを合わせる（COMING SOON／プラン申込ボタンなど） */
.plan-card .btn-main,
.goods-card .btn-main {
    border-radius: 999px !important;
    border: none !important;
    background: var(--ink) !important;
    color: #fff !important;
    box-shadow: var(--shadow-1) !important;
    font-family: var(--font-jp) !important;
    font-weight: 700 !important;
    letter-spacing: .04em;
    min-height: 54px;
    align-items: center;
    justify-content: center;
}
.plan-card .btn-main.disabled {
    background: var(--tx-3) !important;
    box-shadow: none !important;
    cursor: default;
}
.plan-card .btn-main::after,
.plan-card .btn-main::before { display: none !important; }

/* ---------------------------------------------------------------
   2) hero：3行の行間・ボタンの並び
   --------------------------------------------------------------- */
.hero-title { line-height: 1.18; margin-bottom: 14px; }
.hero-subtitle {
    line-height: 2.05;          /* 詰まって窮屈だったので広げる（2026-08-05 FB） */
    letter-spacing: .02em;
}
.hero-subtitle-jp {
    display: inline-block;
    margin-top: 10px;
    line-height: 1.9;
    opacity: .78;
}
.hero-tag { letter-spacing: .18em; }
.hero-text { line-height: 2.05; margin-bottom: 26px; }
.hero-message { line-height: 2.05; }
.hero-btns { gap: 16px; margin-top: 26px; }

/* ---------------------------------------------------------------
   3) セクション見出し・区切りのトーン
   --------------------------------------------------------------- */
.section-title span {
    font-family: var(--font-en);
    letter-spacing: .22em;
    color: var(--foil);
}
.inline-cta {
    border: 1px solid var(--line-1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    background: #fff;
}
.inline-cta-lead { font-size: 1.08rem; letter-spacing: .01em; }

/* ---------------------------------------------------------------
   4) 支援状況パネル（旧・星アイコンの限定数バナー＋カウントダウンの置き換え）
   --------------------------------------------------------------- */
.fund-panel {
    max-width: 860px;
    margin: 0 auto 26px;
    padding: 28px 30px 24px;
    background: #fff;
    border: 1px solid var(--line-1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    position: relative;
    z-index: 2;
}
.fund-panel.is-achieved { border-color: var(--foil); }
.fund-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.fund-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--tx-3);
    margin-bottom: 4px;
}
.fund-value {
    font-family: var(--font-en);
    font-size: 2.9rem;
    line-height: 1;
    color: var(--tx-1);
    letter-spacing: .01em;
}
.fund-unit { font-size: 1.1rem; margin-left: 4px; }
.fund-pct { display: flex; align-items: baseline; gap: 6px; }
.fund-pct-num {
    font-family: var(--font-en);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--foil);
}
.fund-pct-sign { font-family: var(--font-en); font-size: 1.2rem; color: var(--foil); }
.fund-pct-label { font-size: .82rem; font-weight: 700; color: var(--tx-2); }

.fund-bar {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: var(--paper-2);
    overflow: hidden;
    border: 1px solid var(--line-1);
}
.fund-bar-in {
    display: block;
    height: 100%;
    width: 2%;
    border-radius: 999px;
    background: linear-gradient(90deg, #8a6d2f, #d9c088 55%, #b08d3f);
    transition: width .6s ease;
}
.fund-bar-in.is-achieved { background: linear-gradient(90deg, #1E4D42, #7FC6AF); }

.fund-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.fund-meta-item {
    border: 1px solid var(--line-1);
    border-radius: 9px;
    padding: 12px 12px 10px;
    background: var(--paper-2);
}
.fund-meta-k {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--tx-3);
    margin-bottom: 5px;
    white-space: nowrap;
}
.fund-meta-v {
    display: block;
    font-family: var(--font-en);
    font-size: 1.45rem;
    line-height: 1.1;
    color: var(--tx-1);
    white-space: nowrap;
}
.fund-meta-v small { font-family: var(--font-jp); font-size: .68rem; margin-left: 3px; color: var(--tx-2); }
.fund-meta-days .fund-meta-v { color: var(--camp); }
.fund-note {
    margin: 16px 0 0;
    font-size: .8rem;
    line-height: 1.85;
    color: var(--tx-2);
    text-align: center;
}
@media (max-width: 760px) {
    .fund-panel { padding: 22px 18px 20px; }
    .fund-value { font-size: 2.2rem; }
    .fund-pct-num { font-size: 1.9rem; }
    .fund-meta { grid-template-columns: repeat(2, 1fr); }
}

.plans-lead {
    text-align: center;
    font-weight: 700;
    line-height: 1.95;
    margin: 0 auto 34px;
    position: relative;
    z-index: 2;
}
.plans-lead-sub { display: block; font-weight: 400; font-size: .88rem; color: var(--tx-2); margin-top: 6px; }

/* ---------------------------------------------------------------
   5) プランカード：オレンジ／緑／青のポップな枠 → 墨＋グレード箔
   --------------------------------------------------------------- */
.plans-grid { gap: 20px; }
.plan-card,
.plans-grid .plan-card {
    background: #fff !important;
    border: 1px solid var(--line-1) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-1) !important;
    padding: 0 0 24px !important;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.plans-grid .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2) !important;
}
/* カード上端のグレード帯（旧・斜めラベルを置き換え） */
.plan-card .plan-badge,
.plans-grid .plan-badge,
.plans-grid .plan-main-wrapper .plan-card .plan-badge,
.plans-grid .plan-col.plan-main-wrapper .plan-card .plan-badge {
    position: static !important;
    display: block !important;
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 13px 18px !important;
    border-radius: 0 !important;
    transform: none !important;
    background: var(--ink) !important;
    color: #fff !important;
    font-family: var(--font-en) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: .18em !important;
    text-align: center !important;
    box-shadow: none !important;
    border: none !important;
}
.plan-card .plan-badge::after,
.plan-card .plan-badge::before { display: none !important; }
/* グレードごとの下線1本だけで色分けする（ベタ塗りの原色をやめる） */
#plan1 .plan-badge { border-bottom: 3px solid var(--g-bronze) !important; }
#plan2 .plan-badge { border-bottom: 3px solid var(--g-silver) !important; }
#plan3 .plan-badge { border-bottom: 3px solid var(--g-gold) !important; }

.plans-grid .plan-img,
.plan-card .plan-img {
    border-radius: 8px;
    border: 1px solid var(--line-1);
    box-shadow: var(--shadow-1);
    background: #fff;
}
.plans-grid .plan-name,
.plan-card .plan-name {
    font-size: 1.12rem !important;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 0 18px;
}
.plans-grid .plan-price,
.plan-card .plan-price {
    font-family: var(--font-en) !important;
    font-size: 1.9rem !important;
    letter-spacing: .01em;
    padding: 0 18px;
}
#plan1 .plan-price { color: var(--g-bronze) !important; }
#plan2 .plan-price { color: var(--g-silver) !important; }
#plan3 .plan-price { color: var(--g-gold) !important; }
.plans-grid .plan-price-sub,
.plan-card .plan-price-sub { color: var(--tx-3); font-size: .82rem; }
.plans-grid .plan-img-caption,
.plan-card .plan-img-caption { padding: 0 18px; color: var(--tx-2); }
.plans-grid .plan-return-banner,
.plan-card .plan-return-banner { border-radius: 8px; box-shadow: var(--shadow-1); }

/* ✓アイコンの箇条書き（旧 plan-desc の1文を置き換え） */
.plan-feats {
    list-style: none;
    margin: 14px 0 0;
    padding: 0 18px;
    text-align: left;
}
.plan-feats li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .89rem;
    line-height: 1.7;
    color: var(--tx-1);
    padding: 7px 0;
    border-bottom: 1px dashed var(--line-1);
}
.plan-feats li:last-child { border-bottom: none; }
.plan-feats li i {
    flex: 0 0 auto;
    margin-top: .28em;
    font-size: .78rem;
    color: var(--foil);
}
#plan1 .plan-feats li i { color: var(--g-bronze); }
#plan2 .plan-feats li i { color: var(--g-silver); }
#plan3 .plan-feats li i { color: var(--g-gold); }
.plan-reco {
    margin: 12px 18px 0;
    padding: 9px 12px;
    background: var(--paper-2);
    border-radius: 8px;
    font-size: .82rem;
    line-height: 1.6;
    color: var(--tx-2);
    text-align: left;
}
.plan-reco span {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--ink);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    vertical-align: 1px;
}
/* 3枚の高さ揃え（✓リストは行数を3行で固定してあるので min-height でそろう） */
.plans-grid .plan-feats { min-height: 9.6em; }
.plans-grid .plan-reco { min-height: 4.1em; display: flex; align-items: center; }
.plans-grid .plan-desc { display: none; }

/* 詳細ボタンとCOMING SOONの間に余白（2026-08-05 FB：窮屈だった） */
.plan-detail-btn,
.plans-grid .plan-detail-btn {
    width: calc(100% - 36px);
    margin: 20px 18px 0 !important;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: #fff;
    color: var(--tx-1);
    font-weight: 700;
    font-size: .92rem;
    min-height: 50px;
    box-shadow: none;
}
.plan-detail-btn:hover { background: var(--paper-2); transform: translateY(-2px); }
.plan-detail-btn i { color: var(--foil); }
.plans-grid .plan-detail-btn { margin-top: auto !important; }
.plan-card .btn-main {
    width: calc(100% - 36px) !important;
    margin: 16px 18px 0 !important;   /* 詳細ボタンとの間に16px */
}

/* ---------------------------------------------------------------
   6) 3プラン比較表
   --------------------------------------------------------------- */
.cmp-block {
    max-width: 980px;
    margin: 44px auto 0;
    padding: 28px 26px 22px;
    background: #fff;
    border: 1px solid var(--line-1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    position: relative;
    z-index: 2;
}
.cmp-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cmp-title::before { content: ""; width: 6px; height: 24px; background: var(--foil); display: block; }
.cmp-lead { font-size: .9rem; line-height: 1.8; color: var(--tx-2); margin: 0 0 18px; }
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table {
    width: 100%;
    min-width: 620px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .88rem;
}
.cmp-table th, .cmp-table td { border-bottom: 1px solid var(--line-1); }
.cmp-table thead th {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 2px solid var(--ink);
    padding: 12px 10px;
    vertical-align: bottom;
}
.cmp-head-item {
    text-align: left;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--tx-3);
    width: 42%;
}
.cmp-h { text-align: center; width: 19.3%; }
.cmp-g {
    display: block;
    font-family: var(--font-en);
    font-size: .82rem;
    letter-spacing: .16em;
}
.cmp-h-bronze .cmp-g { color: var(--g-bronze); }
.cmp-h-silver .cmp-g { color: var(--g-silver); }
.cmp-h-gold .cmp-g { color: var(--g-gold); }
.cmp-k { display: block; font-weight: 700; font-size: 1.05rem; margin-top: 2px; }
.cmp-p { display: block; font-size: .74rem; color: var(--tx-2); margin-top: 1px; white-space: nowrap; }
.cmp-table tbody th {
    text-align: left;
    font-weight: 500;
    padding: 12px 10px;
    color: var(--tx-1);
    display: table-cell;
}
.cmp-table tbody th i { color: var(--tx-3); width: 20px; margin-right: 8px; }
.cmp-table tbody td { text-align: center; padding: 12px 10px; }
.cmp-table tbody tr:nth-child(even) th,
.cmp-table tbody tr:nth-child(even) td { background: #fbfcfc; }
.cmp-yes i { color: var(--foil); font-size: 1.05rem; }
.cmp-no i { color: var(--line-2); font-size: .9rem; }
.cmp-row-royalty th, .cmp-row-royalty td { background: #fdfaf3 !important; font-weight: 700; }
.cmp-row-total th, .cmp-row-total td {
    background: var(--ink) !important;
    color: #fff !important;
    font-weight: 700;
    border-bottom: none;
}
.cmp-row-total th i { color: rgba(255, 255, 255, .6); }
.cmp-note { font-size: .78rem; color: var(--tx-3); margin: 14px 0 0; line-height: 1.8; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (max-width: 700px) {
    .cmp-block { padding: 22px 16px 18px; }
    .cmp-table { font-size: .82rem; }
}

/* ---------------------------------------------------------------
   7) 試し読み：1枚が大きすぎたので4列でコンパクトに
   --------------------------------------------------------------- */
#preview .preview-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 940px !important;
    gap: 18px;
}
.preview-item {
    border: 1px solid var(--line-1);
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow-1);
    transition: transform .25s ease, box-shadow .25s ease;
}
.preview-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.preview-item img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
    border: 1px solid var(--line-1);
    width: 100%;
    height: auto;
}
.preview-item > div {
    font-size: .82rem !important;
    font-weight: 700 !important;
    line-height: 1.6;
    margin-top: 9px !important;
    color: var(--tx-1);
}
@media (max-width: 900px) {
    #preview .preview-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 460px) {
    #preview .preview-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
    .preview-item > div { font-size: .74rem !important; }
}

/* ---------------------------------------------------------------
   8) CAMPFIRE セクション：薄ピンク背景 → 墨のダークセクション
   --------------------------------------------------------------- */
#campfire {
    background: linear-gradient(180deg, #1c2228 0%, #14181d 100%) !important;
    border-bottom: none !important;
    color: #fff;
}
#campfire .section-title { color: #fff; }
#campfire .section-title span { color: var(--foil-lt); }
#campfire .campfire-achievement {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: none;
}
#campfire .achievement-img-area img {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .8);
}
#campfire .achievement-text { color: rgba(255, 255, 255, .84); line-height: 2; }
#campfire .achievement-text strong { color: #fff; }

/* 黄色いカード3つ（目標金額／支援プラン／募集終了）→ 箔の細罫カードへ */
#campfire .achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 24px 0;
}
#campfire .achievement-stat {
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid rgba(var(--foil-lt), .3) !important;
    border-color: rgba(217, 192, 136, .32) !important;
    border-radius: 10px !important;
    padding: 16px 12px !important;
    box-shadow: none !important;
    text-align: center;
}
#campfire .achievement-stat-label {
    font-size: .74rem !important;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--foil-lt) !important;
    margin-bottom: 7px !important;
}
#campfire .achievement-stat-value {
    font-family: var(--font-en) !important;
    font-size: 1.7rem !important;
    color: #fff !important;
    line-height: 1.1;
}
#campfire .achievement-stat-unit {
    font-family: var(--font-jp) !important;
    font-size: .72rem !important;
    color: rgba(255, 255, 255, .7) !important;
    margin-left: 3px;
}
.campfire-actions {
    max-width: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px auto 0;
}
.campfire-actions .btn-cta { width: 100%; min-width: 0; }
.campfire-actions .btn-cta-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
}
.campfire-actions .btn-cta-ghost:hover { background: rgba(255, 255, 255, .08); }
@media (max-width: 700px) {
    .campfire-actions { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   9) スポンサー募集
   --------------------------------------------------------------- */
.sponsor-banner {
    max-width: 900px;
    margin: 0 auto 22px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-2);
}
.sponsor-banner img { width: 100%; height: auto; display: block; }
.sponsor-desc {
    max-width: 780px;
    margin: 0 auto 24px;
    font-size: .95rem;
    line-height: 2;
    color: var(--tx-2);
}
.sponsor-desc b { color: var(--tx-1); }

/* ---------------------------------------------------------------
   10) 全体のチープさを落とす微調整
   --------------------------------------------------------------- */
.flow-card, .roadmap-content, .project-info-box, .use-block, .comic-balloon {
    border-width: 1px !important;
    border-color: var(--line-1) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-1) !important;
}
.use-block, .project-info-box { border-color: var(--line-1) !important; }
.use-title::before, .cmp-title::before { background: var(--foil); }
.use-icon { background: var(--ink); }
.roadmap-point {
    border-radius: 50% !important;
    border: 2px solid var(--ink) !important;
    background: var(--ink) !important;
    color: #fff !important;
    box-shadow: none !important;
}
.tag {
    border-radius: 999px !important;
    border: 1px solid var(--line-2) !important;
    background: #fff !important;
    color: var(--tx-2) !important;
    font-weight: 700;
    font-size: .78rem;
}
.text-highlight {
    background: linear-gradient(transparent 62%, rgba(217, 192, 136, .55) 62%) !important;
    color: inherit !important;
    padding: 0 .08em;
}
.artist-sns-row a {
    border-radius: 999px !important;
    border: 1px solid var(--line-2) !important;
    background: #fff !important;
    color: var(--tx-1) !important;
}
footer { background: var(--ink) !important; }

/* --- SP の横スクロール対策（2026-08-05 FB第2弾の実測で検出） ---
   幅指定した要素に padding が加算されて画面幅を越えていた。 */
.btn-cta, .plan-badge, .plan-detail-btn, .plan-card .btn-main, .fund-panel, .cmp-block, .inline-cta {
    box-sizing: border-box;
    max-width: 100%;
}
@media (max-width: 700px) {
    .hero-btns, .inline-cta-btns, .campfire-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-btns .btn-cta, .inline-cta-btns .btn-cta, .campfire-actions .btn-cta,
    .sponsor-section .btn-cta, #preview .btn-cta {
        width: 100%;
        min-width: 0;
    }
    .plan-detail-btn, .plans-grid .plan-detail-btn, .plan-card .btn-main {
        width: calc(100% - 36px) !important;
    }
}

/* ---------------------------------------------------------------
   11) 仕上げ（実描画で見て残っていたチープさを潰す）
   --------------------------------------------------------------- */
/* hero：極太黒枠＋オレンジのベタ影 → 細罫＋やわらかい影 */
.hero-content {
    border: 1px solid rgba(255, 255, 255, .5) !important;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86) !important;
    box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .55) !important;
    padding: clamp(26px, 5vw, 40px) !important;
}
.hero-tag {
    background: var(--ink) !important;
    border-radius: 999px !important;
    border: none !important;
    box-shadow: none !important;
    font-size: .78rem !important;
    padding: 7px 20px !important;
}
.hero-subtitle { color: var(--tx-1) !important; }
.hero-subtitle-jp { color: var(--tx-2) !important; }
.hero-message {
    background: var(--paper-2) !important;
    border: 1px solid var(--line-1) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
    padding: 20px 22px !important;
    color: var(--tx-1) !important;
}
.hero-message span {
    color: var(--tx-1) !important;
    font-weight: 700;
    background: linear-gradient(transparent 62%, rgba(217, 192, 136, .6) 62%);
    padding: 0 .08em;
}
.hero-artist-img { border: 2px solid var(--ink) !important; box-shadow: none !important; }
.hero-artist-name { letter-spacing: .04em; }

/* セクション見出し：背景の巨大な英字と下線の太さを抑える */
.section-title::after {
    height: 3px !important;
    width: 56px !important;
    background: var(--foil) !important;
}
#campfire .section-title::after { background: var(--foil-lt) !important; }

/* 「こんな方に」バッジが折り返していた */
.plan-reco span { white-space: nowrap; }
.plans-grid .plan-reco { align-items: flex-start; }

/* 漫画家紹介の吹き出し・作品概要の枠も細罫へ */
.comic-balloon { background: #fff !important; }
.comic-balloon::after, .comic-balloon::before { display: none !important; }
.intro-img img, .artist-sns-row {
    border-radius: var(--radius);
}
.intro-img img {
    border: 1px solid var(--line-1) !important;
    box-shadow: var(--shadow-1) !important;
}
#artist img[alt="クラッシャー主婦 制作風景"] {
    border: 1px solid var(--line-1) !important;
    border-radius: var(--radius);
    box-shadow: var(--shadow-1) !important;
}
#artist { background: var(--paper-2) !important; }
#plans { background: var(--paper-2) !important; }

/* 流れ・ロードマップの番号バッジ */
.flow-num {
    background: var(--ink) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-family: var(--font-en);
}
.flow-note {
    background: var(--paper-2) !important;
    border-left: 3px solid var(--line-2) !important;
    border-radius: 0 8px 8px 0;
    color: var(--tx-2);
}
.roadmap-date { color: var(--foil) !important; font-family: var(--font-en); letter-spacing: .06em; }

/* SNSアイコン */
.sns-icon-link {
    border-radius: 50% !important;
    border: 1px solid var(--line-2) !important;
    box-shadow: none !important;
}
.sns-section { background: var(--paper-2) !important; }
.sponsor-section { background: #fff !important; }

/* スポンサー：背景を白にしたので見出し・本文の文字色を戻す（白×白で消えていた） */
.sponsor-section .section-title,
.sponsor-section .section-title span,
.sponsor-section p { color: var(--tx-1) !important; }
.sponsor-section .section-title span { color: var(--foil) !important; }
.sponsor-section .sponsor-desc { color: var(--tx-2) !important; }
.sponsor-section .container { padding-bottom: 10px; }

/* =========================================================================
   2026-08-05 ユーザーFB 第3弾
   ・CTAは「角ばった暖色＋黒シャドウ」へ戻す（丸みをやめる）
   ・hero を2カラム（左ギャラリー／右テキスト＋CTA）
   ・ヘッダー／フッターをサカモトLP（第10弾）に完全準拠
   ・CAMPFIRE は真っ黒をやめ、赤を効かせた地に
   ・ナンバリング（flow / roadmap）は黒をやめて元の配色へ
   ========================================================================= */

:root {
    /* 支援＝暖色（Bill/サカモト系のオレンジ〜朱）／CAMPFIRE＝ブランド赤 */
    --cta-warm: #FF6D00;
    --cta-warm-d: #d95c00;
    --camp: #E4453F;
    --camp-d: #c2332e;
    /* サカモトLP準拠のヘッダー／フッター用 */
    --sk-rule: #e3e0d4;
    --sk-ink: #0e0e10;
    --sk-ink-soft: #2b2b30;
    --sk-ink-muted: #6b6b73;
    --sk-inofine: #4361ee;
    --sk-accent: #e63b1a;
    --sk-accent-deep: #b82e14;
    --sk-magenta: #e040a0;
    --sk-mono: 'Oswald', 'Noto Sans JP', sans-serif;
    --sk-grad-dark: linear-gradient(135deg, #12141c 0%, #1a1d2e 100%);
}

/* ---------------------------------------------------------------
   1) CTAボタン：角ばった暖色＋黒シャドウ（丸みをやめる）
   --------------------------------------------------------------- */
.btn-cta {
    border-radius: 4px !important;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .85) !important;
    border: 2px solid #000 !important;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .85) !important;
}
/* 支援を促すボタン＝暖色 */
.btn-cta-primary {
    background: var(--cta-warm) !important;
    color: #fff !important;
}
.btn-cta-primary:hover { background: var(--cta-warm-d) !important; color: #fff !important; }
/* 副導線＝白 */
.btn-cta-ghost { background: #fff !important; color: #111 !important; }
.btn-cta-ghost:hover { background: #f4f4f4 !important; }
/* CAMPFIRE＝ブランド赤 */
.btn-cta-camp { background: var(--camp) !important; color: #fff !important; }
.btn-cta-camp:hover { background: var(--camp-d) !important; color: #fff !important; }

/* プランの申込ボタンも同じ形へ */
.plan-card .btn-main {
    border-radius: 4px !important;
    border: 2px solid #000 !important;
    background: var(--cta-warm) !important;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .85) !important;
    font-weight: 900 !important;
}
.plan-card .btn-main.disabled {
    background: #9aa2a8 !important;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .35) !important;
}
.plan-detail-btn {
    border-radius: 4px !important;
    border: 2px solid #111 !important;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .18);
}
.plan-detail-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(0, 0, 0, .18); }
/* hero のタグも角ばりに戻す */
.hero-tag {
    border-radius: 0 !important;
    background: #111 !important;
    letter-spacing: .16em !important;
}

/* ---------------------------------------------------------------
   2) ヘッダー（サカモトLP準拠）
   --------------------------------------------------------------- */
.gh {
    position: fixed; top: 0; left: 0; right: 0; z-index: 80;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sk-rule);
}
.gh-in {
    max-width: 1280px; margin: 0 auto; padding: 14px 28px;
    display: flex; align-items: center; gap: 24px;
}
.gh-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.gh-logo img { height: 30px; width: auto; display: block; }
.gh-tag {
    font-size: 11px; color: var(--sk-ink-muted); letter-spacing: .06em;
    border-left: 1px solid var(--sk-rule); padding-left: 14px; line-height: 1.4;
}
.gh-tag b { color: var(--sk-ink); font-weight: 700; display: block; font-size: 11px; }
.gh-vol { color: var(--sk-ink); font-family: var(--sk-mono); font-weight: 600; font-size: 12px; letter-spacing: .04em; }
.gh-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.gh-nav a { font-size: 13px; color: var(--sk-ink-soft); font-weight: 500; text-decoration: none; transition: color .15s; }
.gh-nav a:hover { color: var(--sk-inofine); }
.gh-burger { display: none; border: none; background: none; font-size: 1.6rem; cursor: pointer; color: #000; z-index: 10001; }
@media (max-width: 980px) {
    .gh-nav { display: none; }
    .gh-burger { display: block; margin-left: auto; }
    .gh-in { padding: 12px 16px; }
}

.mobile-menu-overlay {
    position: fixed; top: clamp(56px, 10vw, 62px); left: 0;
    width: 100%; height: calc(100vh - clamp(56px, 10vw, 62px));
    background: rgba(255, 255, 255, .98); z-index: 10000;
    display: none; flex-direction: column; padding: 20px;
    border-top: 1px solid var(--sk-rule); overflow-y: auto; backdrop-filter: blur(10px);
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay ul { list-style: none; margin: 0; padding: 0; 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; text-decoration: none; }
.mobile-menu-overlay a:hover { color: var(--sk-inofine); }
.mobile-menu-overlay .cta-link { color: var(--cta-warm); }
.mobile-menu-overlay .mobile-menu-divider { margin-top: 20px; border-top: 2px solid #e0e0e0; padding-top: 20px; }

.sub-nav {
    position: fixed; top: 62px; left: 0; right: 0; z-index: 79;
    background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--sk-rule);
    transform: translateY(-100%); transition: transform .28s cubic-bezier(.2, .7, .2, 1);
    pointer-events: none;
}
.sub-nav.show { transform: translateY(0); pointer-events: auto; }
.sub-nav-in {
    max-width: 1280px; margin: 0 auto; padding: 10px 28px;
    display: flex; align-items: center; gap: 22px; overflow-x: auto; scrollbar-width: none;
}
.sub-nav-in::-webkit-scrollbar { display: none; }
.sub-nav-in a {
    font-size: 12px; color: var(--sk-ink-muted); font-weight: 600; letter-spacing: .04em;
    white-space: nowrap; padding: 6px 0; border-bottom: 2px solid transparent;
    text-decoration: none; transition: color .15s, border-color .15s;
}
.sub-nav-in a:hover { color: var(--sk-ink); border-bottom-color: var(--sk-ink); }
.sub-nav-in a.sub-nav-cta { color: var(--sk-accent); font-weight: 800; }
.sub-nav-in a.sub-nav-cta:hover { color: var(--sk-accent-deep); border-bottom-color: var(--sk-accent); }
.ph-header { height: 62px; }
@media (max-width: 700px) {
    .sub-nav { top: 56px; }
    .sub-nav-in { padding: 8px 16px; gap: 16px; }
    .ph-header { height: 56px; }
}

/* ---------------------------------------------------------------
   3) フッター（サカモトLP準拠）
   --------------------------------------------------------------- */
.ftr-gs { background: var(--sk-grad-dark); color: rgba(255, 255, 255, .7); padding: 0; margin-top: 0; }
.ftr-gs-inner { max-width: 1200px; margin: 0 auto; padding: 72px 32px 32px; }
.ftr-gs-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.ftr-gs-brand { display: flex; flex-direction: column; gap: 14px; }
.ftr-gs-logo img { display: block; width: auto; height: auto; max-width: 220px; max-height: 56px; }
.ftr-gs-tagline { font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, .55); margin: 0; }
.ftr-gs-sns { display: flex; gap: 10px; margin-top: 6px; }
.ftr-gs-sns a {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff; text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
    transition: transform .18s, box-shadow .18s;
}
.ftr-gs-sns a:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(0, 0, 0, .35); }
.ftr-gs-sns .sns-x { background: #000; border: 1.5px solid rgba(255, 255, 255, .35); }
.ftr-gs-sns .sns-line { background: #06c755; }
.ftr-gs-sns .sns-discord { background: #5865F2; }
.ftr-gs-sns .sns-mail { background: var(--sk-magenta); }
.ftr-gs-sns .sns-tiktok { background: #000; border: 1.5px solid rgba(255, 255, 255, .35); }
.ftr-gs-sns .sns-youtube { background: #FF0000; }
.ftr-gs-col h5 {
    font-family: var(--sk-mono); font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--sk-magenta); margin-bottom: 14px; font-weight: 700;
}
.ftr-gs-col ul { list-style: none; padding: 0; margin: 0; }
.ftr-gs-col li { margin-bottom: 10px; }
.ftr-gs-col a { font-size: 13px; color: rgba(255, 255, 255, .7); text-decoration: none; transition: color .15s; }
.ftr-gs-col a:hover { color: var(--sk-magenta); }
.ftr-gs-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; padding-bottom: 48px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-family: var(--sk-mono); font-size: 10px; letter-spacing: .16em; color: rgba(255, 255, 255, .35);
}
@media (max-width: 900px) {
    .ftr-gs-top { grid-template-columns: 1fr 1fr; gap: 30px; }
    .ftr-gs-inner { padding: 48px 20px 24px; }
}
@media (max-width: 560px) {
    .ftr-gs-top { grid-template-columns: 1fr; }
    .ftr-gs-bottom { flex-direction: column; }
}

/* ---------------------------------------------------------------
   4) hero：2カラム（左ギャラリー／右テキスト＋CTA）
   --------------------------------------------------------------- */
.hero { padding: 46px 0 40px !important; }
.hero-layout {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 34px;
    align-items: start;
    max-width: 1240px;
}
.hero-gallery { position: relative; z-index: 2; }
.hero-gallery-main {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #0e1114;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .25);
    overflow: hidden;
}
.hero-gallery-main img {
    width: 100%; height: 100%; object-fit: contain; display: block;
    opacity: 0; transition: opacity .32s ease;
}
.hero-gallery-main img.is-in { opacity: 1; }
.hero-gallery-thumbs { display: flex; gap: 9px; margin-top: 12px; }
.hero-thumb {
    flex: 1 1 0; min-width: 0; aspect-ratio: 1 / 1;
    padding: 0; border: 2px solid #cfd4d8; background: #0e1114;
    cursor: pointer; overflow: hidden; opacity: .62;
    transition: opacity .18s, border-color .18s, transform .18s;
}
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-thumb:hover { opacity: .9; transform: translateY(-2px); }
.hero-thumb.is-active { opacity: 1; border-color: #000; }

/* 右カラム：コンパクトに */
.hero .hero-content {
    max-width: none !important;
    width: 100% !important;
    padding: 26px 24px !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, .93) !important;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .25) !important;
    text-align: left;
}
.hero-artist-row { display: flex; align-items: center; gap: 12px; margin: 16px 0 14px; }
.hero .hero-artist-img { width: 52px !important; height: 52px !important; border-radius: 50%; border: 2px solid #000 !important; }
.hero .hero-artist-name {
    font-size: 1rem !important; font-weight: 900; line-height: 1.3; letter-spacing: .02em;
}
.hero .hero-artist-name small {
    display: block; font-family: var(--sk-mono); font-size: .68rem; font-weight: 500;
    color: #7c858c; letter-spacing: .1em; margin-top: 2px;
}
.hero .hero-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem) !important; margin-bottom: 10px !important; text-align: left; }
.hero .hero-subtitle { font-size: .98rem !important; text-align: left; }
.hero .hero-message { font-size: .9rem !important; padding: 16px 18px !important; text-align: left; }
.hero .hero-btns { justify-content: flex-start; gap: 12px; margin-top: 20px; }
.hero .btn-cta { min-width: 0; flex: 1 1 auto; font-size: .92rem; padding: 0 14px; }
@media (max-width: 1000px) {
    .hero-layout { grid-template-columns: 1fr; gap: 24px; }
    .hero .hero-content { text-align: center; }
    .hero .hero-title, .hero .hero-subtitle, .hero .hero-message { text-align: center; }
    .hero-artist-row { justify-content: center; }
    .hero .hero-btns { justify-content: center; }
}

/* 支援状況（hero直下） */
.fund-section { padding: 0 0 34px !important; background: #fff; }
.fund-panel {
    border: 3px solid #000;
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .12);
}
.fund-bar-in { background: linear-gradient(90deg, #FF6D00, #ffa54d 60%, #FF6D00); }
.fund-pct-num, .fund-pct-sign { color: var(--cta-warm); }
.fund-meta-days .fund-meta-v { color: var(--camp); }

/* ---------------------------------------------------------------
   5) プランカード：統合バナー1枚。要素間に余白を入れる
   --------------------------------------------------------------- */
.plan-card-banner {
    display: block;
    width: calc(100% - 36px);
    max-width: 100%;
    height: auto;
    margin: 0 18px 18px;
    border: 2px solid #000;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .12);
}
.plans-grid .plan-feats { min-height: 9.6em; margin-top: 16px; }
.plans-grid .plan-reco { margin: 16px 18px 0; }
.plans-grid .plan-detail-btn { margin: 20px 18px 0 !important; }
.plan-card .btn-main { margin: 18px 18px 0 !important; }
.plan-card { padding-bottom: 26px !important; }

/* ---------------------------------------------------------------
   6) 比較表：チェックをプランカラーに
   --------------------------------------------------------------- */
.cmp-table tbody td:nth-child(2) .cmp-yes i,
.cmp-table tbody td.cmp-yes:nth-child(2) i { color: #a56a35; }
.cmp-table tbody td.cmp-yes:nth-child(3) i { color: #7b858f; }
.cmp-table tbody td.cmp-yes:nth-child(4) i { color: #b08d3f; }
.cmp-h-bronze { border-bottom-color: #a56a35 !important; }
.cmp-h-silver { border-bottom-color: #7b858f !important; }
.cmp-h-gold { border-bottom-color: #b08d3f !important; }
.cmp-row-total th, .cmp-row-total td { background: #111 !important; }

/* ---------------------------------------------------------------
   7) CAMPFIRE：真っ黒をやめ、赤を効かせた地に
   --------------------------------------------------------------- */
#campfire {
    background:
        radial-gradient(90% 60% at 88% 6%, rgba(228, 69, 63, .34) 0%, rgba(228, 69, 63, 0) 62%),
        radial-gradient(70% 50% at 6% 96%, rgba(228, 69, 63, .18) 0%, rgba(228, 69, 63, 0) 60%),
        linear-gradient(168deg, #2a1416 0%, #1d1114 52%, #150e10 100%) !important;
    position: relative;
}
/* 上下に赤の細い帯を1本ずつ入れて「CAMPFIREの色」を明示する */
#campfire::before,
#campfire::after {
    content: "";
    position: absolute; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--camp), #ff8a5c 55%, var(--camp));
}
#campfire::before { top: 0; }
#campfire::after { bottom: 0; }
#campfire .section-title span { color: #ff9a86 !important; }
#campfire .section-title::after { background: var(--camp) !important; }
#campfire .campfire-achievement {
    background: rgba(255, 255, 255, .045) !important;
    border: 1px solid rgba(228, 69, 63, .35) !important;
}
#campfire .achievement-stat {
    border-color: rgba(228, 69, 63, .38) !important;
    background: rgba(228, 69, 63, .08) !important;
}
#campfire .achievement-stat-label { color: #ff9a86 !important; }
#campfire .achievement-img-area img { border-color: rgba(228, 69, 63, .3) !important; }

/* ---------------------------------------------------------------
   8) ナンバリング：黒をやめて元の配色へ
   --------------------------------------------------------------- */
.flow-num {
    background: var(--cta-warm) !important;
    color: #fff !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .18) !important;
}
.roadmap-point {
    background: var(--cta-warm) !important;
    border: 3px solid #000 !important;
    color: #fff !important;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .18) !important;
}
.roadmap-item:nth-child(3) .roadmap-point { background: #fff !important; color: #111 !important; }

/* ---------------------------------------------------------------
   9) 支援金の使い道：アイコンの色を項目ごとに変える
   --------------------------------------------------------------- */
.use-card:nth-child(1) .use-icon { background: #e0642b; }
.use-card:nth-child(2) .use-icon { background: #c9873a; }
.use-card:nth-child(3) .use-icon { background: #4f8a6b; }
.use-card:nth-child(4) .use-icon { background: #3f6fa8; }
.use-card:nth-child(5) .use-icon { background: #7a5aa8; }
.use-card:nth-child(6) .use-icon { background: #b0475f; }

/* ---------------------------------------------------------------
   10) MESSAGE：左に画像／右にメッセージ
   --------------------------------------------------------------- */
.msg-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 26px;
    align-items: start;
    max-width: 1060px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}
.msg-visual img {
    width: 100%; height: auto; display: block;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .15);
}
.msg-visual-cap { font-size: .78rem; color: #7c858c; margin: 12px 0 0; text-align: center; }
.msg-head { font-weight: 900; font-size: 1.02rem; margin: 0 0 14px; color: var(--cta-warm); }
.msg-grid .comic-balloon { margin: 0 !important; padding: 26px 26px 24px !important; }
@media (max-width: 860px) {
    .msg-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------------------------------------------------------------
   11) 漫画家のSNS：正規のブランド色チップ
   --------------------------------------------------------------- */
.artist-sns-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.artist-sns-label { font-size: .74rem; font-weight: 900; letter-spacing: .1em; color: #7c858c; }
.sns-chip {
    display: inline-flex !important; align-items: center; gap: 7px;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    border: 2px solid #000 !important;
    background: #fff !important;
    color: #111 !important;
    font-size: .84rem; font-weight: 700; text-decoration: none;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .12);
    transition: transform .16s, box-shadow .16s;
}
.sns-chip:hover { transform: translate(1px, 1px); box-shadow: 1px 1px 0 rgba(0, 0, 0, .12); }
.sns-chip i { font-size: 1rem; }
.sns-chip-x i { color: #000; }
.sns-chip-ig i {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b 50%, #6228d7);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sns-chip-th i { color: #000; }
.sns-wordmark { font-weight: 900; letter-spacing: .02em; }
.sns-chip-pixiv .sns-wordmark { color: #0096fa; }
.sns-chip-note .sns-wordmark { color: #41c9b4; }

/* ---------------------------------------------------------------
   12) 試し読み：事前に縮小したサムネイルを等倍で使う（線が潰れないように）
   --------------------------------------------------------------- */
.preview-item {
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .14) !important;
    padding: 8px !important;
}
.preview-item:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(0, 0, 0, .14) !important; }
.preview-item img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 !important;
    border: 1px solid #e2e7ea !important;
    image-rendering: auto;
}

/* ---------------------------------------------------------------
   13) スポンサー：CTA2本を並記
   --------------------------------------------------------------- */
.sponsor-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    max-width: 660px; margin: 0 auto;
}
.sponsor-actions .btn-cta { flex: 1 1 260px; }
@media (max-width: 700px) {
    .sponsor-actions { flex-direction: column; }
    .sponsor-actions .btn-cta { width: 100%; }
}

/* ---------------------------------------------------------------
   14) その他：角丸を落として全体のトーンを揃える
   --------------------------------------------------------------- */
.inline-cta, .cmp-block, .use-block, .project-info-box, .flow-card, .roadmap-content, .comic-balloon {
    border-radius: 0 !important;
    border-width: 3px !important;
    border-color: #000 !important;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .12) !important;
}
.use-card { border-radius: 0 !important; border: 2px solid #e2e7ea !important; }
.tag { border-radius: 0 !important; border: 2px solid #000 !important; }
.intro-img img, #artist img[alt="クラッシャー主婦 制作風景"] {
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .15) !important;
}
.plan-card, .plans-grid .plan-card {
    border-radius: 0 !important;
    border: 3px solid #000 !important;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .12) !important;
}
.plans-grid .plan-card:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 rgba(0, 0, 0, .12) !important; }
.plan-card .plan-badge { border-radius: 0 !important; }
.sponsor-banner { border-radius: 0; border: 3px solid #000; box-shadow: 8px 8px 0 rgba(0, 0, 0, .18); }
.plan-reco, .plan-reco span { border-radius: 0 !important; }
.fund-meta-item { border-radius: 0 !important; border: 2px solid #e2e7ea !important; }


/* =========================================================================
   ▼ 上書きレイヤー④（2026-08-05）全体のバランス調整
   ・固定ヘッダー／サブナビの高さを確定させ、重なりとアンカーずれを解消
   ・hero：背景画像を撤去し、ギャラリーを拡大
   ・セクションの余白リズムとカードグリッドの隙間を統一
   このブロックを外せば FB第3弾反映直後の状態に戻せる
   ========================================================================= */

/* --- 1) 固定ヘッダー＋サブナビ ------------------------------------------- */
html { scroll-padding-top: 118px; }
.gh-in { height: 58px; padding: 0 28px !important; gap: 20px; }
.gh-logo { gap: 12px; }
.gh-logo img { height: 26px; }
.gh-tag { line-height: 1.32; padding-left: 12px; }
.gh-nav { gap: 18px; }
.sub-nav { top: 59px !important; }
.sub-nav-in { height: 42px; padding: 0 28px !important; gap: 20px; }
.sub-nav-in a {
    display: flex; align-items: center; height: 100%;
    padding: 0 !important; border-bottom-width: 2px;
}
.ph-header { height: 101px !important; }
/* 素の header{height:clamp(60px,10vw,80px)} が残っていて高さが揃わないので上書き */
header.gh { height: auto !important; }
/* 旧ヘッダー用の body padding-top:80px が残り、上端に約80pxの空白ができていたので解除
   （固定ヘッダー＋サブナビ分は .ph-header が確保する） */
body { padding-top: 0 !important; }
@media (max-width: 980px) {
    .gh-in { gap: 14px; }
}
@media (max-width: 700px) {
    html { scroll-padding-top: 106px; }
    .gh-in { height: 54px; padding: 0 16px !important; }
    .sub-nav { top: 55px !important; }
    .sub-nav-in { height: 40px; padding: 0 16px !important; gap: 16px; }
    .ph-header { height: 95px !important; }
}

/* --- 2) hero：背景画像を撤去（ギャラリーが見づらいため） ------------------ */
.hero::before {
    background: linear-gradient(180deg, #ffffff 0%, var(--paper-2) 100%) !important;
    animation: none !important;
}
.hero { padding: 40px 0 36px !important; }

/* --- 3) hero：ギャラリーを大きく、右カラムはコンパクトに ------------------ */
.hero-layout {
    grid-template-columns: 1.52fr .88fr !important;
    gap: 40px !important;
    max-width: 1280px;
    align-items: center;
}
.hero-gallery-main { aspect-ratio: 16 / 11; }
.hero-gallery-thumbs { gap: 10px; margin-top: 12px; }
.hero .hero-content {
    box-sizing: border-box !important;
    background: #fff !important;
    border: 1px solid var(--line-1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 10px 30px rgba(23, 27, 32, .09) !important;
    padding: clamp(22px, 2.6vw, 30px) !important;
    /* 素の rotate(-1deg) が残っていてカラムから飛び出していたので解除 */
    transform: none !important;
}
.hero-artist-row { margin: 14px 0 12px !important; }
.hero .hero-btns { margin-top: 22px !important; gap: 14px !important; }
@media (max-width: 1000px) {
    .hero-layout { grid-template-columns: 1fr !important; gap: 26px !important; }
    .hero-gallery-main { aspect-ratio: 16 / 10; }
}

/* --- 4) セクションの余白リズムを統一 ------------------------------------- */
section { padding: 84px 0; }
.sns-section { padding: 68px 0 !important; }
.fund-section { padding: 0 0 40px !important; }
.container { max-width: 1160px; padding-left: 24px; padding-right: 24px; }
.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem) !important;
    margin-bottom: 36px !important;
}
.inline-cta { margin-top: 40px !important; padding-top: 26px !important; }
@media (max-width: 700px) {
    section { padding: 60px 0; }
    .sns-section { padding: 52px 0 !important; }
    .container { padding-left: 18px; padding-right: 18px; }
    .section-title { margin-bottom: 28px !important; }
}

/* --- 5) 要素ごとの隙間を4pxグリッドに揃える ------------------------------ */
.intro-grid { gap: 44px !important; }
.msg-grid { gap: 32px !important; }
.preview-grid, .plans-grid, .use-grid { gap: 20px !important; }
.achievement-stats { gap: 16px !important; margin-bottom: 28px !important; }
.flow-card { gap: 26px !important; margin-bottom: 20px !important; }
.campfire-actions, .sponsor-actions, .inline-cta-btns { gap: 16px !important; }
.ftr-gs-top { gap: 36px !important; margin-bottom: 40px !important; }

/* --- 6) SP：1行維持（nowrap＋縮小フィット）で枠外に切れていた導入文を折り返す ---- */
@media (max-width: 700px) {
    .plans-lead, .plans-lead-sub, .fit-text-sp, .fit-text-sp span {
        white-space: normal !important;
        font-size: 12.5px !important;
        line-height: 1.85 !important;
        transform: none !important;
        width: auto !important;
        max-width: 100% !important;
    }
    .plans-lead-sub { display: block !important; margin-top: 6px; }
}


/* =========================================================================
   ▼ 上書きレイヤー⑤（2026-08-06）FB第4弾
   ・ヘッダー／サブナビをパターン1と同じ構成へ
   ・実績パネル／CTA枠／プランカード見出し／流れの番号／フッターの整理
   このブロックを外せば FB第3弾反映直後の状態に戻せる
   ========================================================================= */

/* --- 1) ヘッダー：パターン1（サカモト準拠）と同一構成 -------------------- */
html { scroll-padding-top: 112px; }
header.gh {
    background: rgba(255, 255, 255, .94) !important;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6e8ea !important;
    box-shadow: none !important;
}
.gh-in { height: 53px !important; max-width: 1280px; padding: 0 24px !important; gap: 20px; }
.gh-logo { gap: 13px; }
.gh-logo img { height: 26px !important; }
.gh-tag { border-left: 1px solid #e6e8ea !important; padding-left: 13px !important; line-height: 1.3 !important; }
.gh-tag b { color: #17191c !important; font-weight: 800 !important; font-size: 10.5px !important; letter-spacing: .02em; }
.gh-vol {
    color: #8440bf !important; font-family: 'Roboto Mono', 'Oswald', monospace !important;
    font-weight: 700 !important; font-size: 12px !important; letter-spacing: .04em !important;
}
.gh-nav { gap: 19px !important; }
.gh-nav a { font-size: 13px !important; color: #4a4f55 !important; font-weight: 600 !important; }
.sub-nav {
    top: 53px !important;
    background: rgba(255, 255, 255, .97) !important;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #e6e8ea !important;
}
.sub-nav-in { height: 41px !important; max-width: 1280px; padding: 0 24px !important; gap: 4px !important; }
.sub-nav-in a {
    font-size: 12.5px !important; color: #4a4f55 !important; font-weight: 700 !important;
    padding: 0 12px !important; letter-spacing: 0 !important;
}
.sub-nav-in a.sub-nav-cta { color: #FF6D00 !important; font-weight: 800 !important; border-bottom: 2.5px solid #FF6D00 !important; }
.ph-header { height: 94px !important; }
@media (max-width: 700px) {
    html { scroll-padding-top: 100px; }
    .gh-in { height: 52px !important; padding: 0 16px !important; }
    .sub-nav { top: 52px !important; }
    .sub-nav-in { height: 40px !important; padding: 0 10px !important; }
    .ph-header { height: 92px !important; }
}

/* --- 2) 実績：heroの地色と離す／メーターを太く ---------------------------- */
.fund-section { padding: 44px 0 40px !important; }
.fund-bar {
    height: 20px !important;
    border-radius: 999px !important;
    background: #eceff1 !important;
    overflow: hidden;
}
.fund-bar-in { border-radius: 999px !important; }

/* --- 3) ページ内CTA枠：画面いっぱいにしない ------------------------------ */
.inline-cta {
    max-width: 820px !important;
    width: calc(100% - 56px);
    box-sizing: border-box;
    margin-left: auto !important; margin-right: auto !important;
}
@media (max-width: 700px) { .inline-cta { width: calc(100% - 36px); } }

/* --- 4) プランカード：グレード帯の見出し＋バナー一体化 -------------------- */
.plan-card { padding-top: 0 !important; overflow: hidden !important; }
.plan-head { margin: 0 0 18px !important; }
.plan-card .plan-badge,
.plans-grid .plan-badge {
    position: relative !important; z-index: 0 !important;
    display: block !important; width: 100% !important;
    margin: 0 !important; padding: 14px 18px !important;
    border: none !important; border-radius: 0 !important; box-shadow: none !important;
    transform: none !important; overflow: hidden !important;
    font-family: 'Oswald', 'Noto Sans JP', sans-serif !important;
    font-size: 1.02rem !important; font-weight: 700 !important; letter-spacing: .14em !important;
    color: #fff !important; text-align: left !important; text-shadow: 0 1px 2px rgba(0,0,0,.28);
    top: 0 !important; left: 0 !important; right: auto !important; bottom: auto !important;
}
.plan-badge em {
    font-style: normal; margin-left: 14px; padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.45);
    font-size: .92em; letter-spacing: .06em; font-weight: 600;
}
.plan-card .plan-badge::before {
    content: "" !important; display: block !important; position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: linear-gradient(105deg, rgba(255,255,255,0) 34%, rgba(255,255,255,.42) 48%, rgba(255,255,255,0) 62%);
    animation: planShine 5s ease-in-out infinite;
}
@keyframes planShine {
    0%, 62% { transform: translateX(-115%); }
    100% { transform: translateX(115%); }
}
#plan1 .plan-badge { background: linear-gradient(100deg, #6d411c 0%, #a56a35 30%, #dcae76 50%, #a56a35 70%, #7a4b22 100%) !important; border-bottom: none !important; }
#plan2 .plan-badge { background: linear-gradient(100deg, #545d66 0%, #7b858f 30%, #ccd5db 50%, #7b858f 70%, #5f686f 100%) !important; border-bottom: none !important; }
#plan3 .plan-badge { background: linear-gradient(100deg, #7b6020 0%, #b08d3f 30%, #ecd79c 50%, #b08d3f 70%, #8a6c28 100%) !important; border-bottom: none !important; }
.plan-banner-wrap { display: block; overflow: hidden; line-height: 0; border-bottom: 1px solid var(--line-1); }
.plan-card .plan-card-banner {
    width: 100% !important; margin: -11.5% 0 0 !important;
    border: none !important; box-shadow: none !important;
}
/* 2本のボタンの幅を揃え、間に余白を入れる */
.plans-grid .plan-card .plan-detail-btn { margin: 20px 18px 0 !important; width: auto !important; }
.plans-grid .plan-card .btn-main,
.plans-grid .plan-card a.btn-main.plan-main-btn {
    box-sizing: border-box;
    width: auto !important; display: flex !important;
    margin: 14px 18px 0 !important;
}

/* --- 5) CAMPFIRE：赤を強める ---------------------------------------------- */
#campfire {
    background:
        radial-gradient(85% 60% at 86% 4%, rgba(228, 69, 63, .55) 0%, rgba(228, 69, 63, 0) 60%),
        radial-gradient(75% 55% at 4% 98%, rgba(228, 69, 63, .34) 0%, rgba(228, 69, 63, 0) 62%),
        linear-gradient(166deg, #45191a 0%, #331416 48%, #24100f 100%) !important;
}
#campfire::before, #campfire::after { height: 5px; }
#campfire .campfire-achievement {
    background: rgba(228, 69, 63, .10) !important;
    border: 1px solid rgba(228, 69, 63, .5) !important;
}
#campfire .achievement-stat {
    background: rgba(228, 69, 63, .16) !important;
    border-color: rgba(255, 154, 134, .5) !important;
}
#campfire .achievement-stat-label { color: #ffb3a3 !important; }
#campfire .section-title span { color: #ff9a86 !important; }
.campfire-actions { grid-template-columns: 1fr !important; max-width: 420px !important; }

/* --- 6) ご支援の流れ：四角い番号 → 影付きの数字 -------------------------- */
.flow-num {
    background: none !important; border: none !important; box-shadow: none !important;
    border-radius: 0 !important; padding: 0 !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 3.5rem !important; font-weight: 700 !important; line-height: 1 !important;
    color: var(--cta-warm) !important;
    text-shadow:
        1px 1px 0 rgba(255, 109, 0, .28),
        2px 2px 0 rgba(255, 109, 0, .18),
        3px 3px 0 rgba(255, 109, 0, .10),
        4px 6px 12px rgba(23, 27, 32, .18) !important;
    min-width: 74px; width: auto !important; height: auto !important;
    flex-shrink: 0; display: block !important;
    text-align: left;
}
@media (max-width: 700px) { .flow-num { font-size: 2.8rem !important; min-width: 58px; } }

/* --- 7) プロジェクトについて：2つの枠の横幅を揃える ---------------------- */
.project-info-box, .use-block {
    max-width: 900px !important;
    margin-left: auto !important; margin-right: auto !important;
    box-sizing: border-box;
}
.use-block { margin-top: 32px !important; }

/* --- 8) フッター：すべて左揃え ------------------------------------------- */
.ftr-gs, .ftr-gs *, .ftr-gs-bottom, .ftr-gs-bottom span { text-align: left !important; }
.ftr-gs-brand { align-items: flex-start !important; }
.ftr-gs-logo { display: block; margin-left: 0; }
.ftr-gs-logo img { margin-left: 0 !important; max-height: 34px; }
.ftr-gs-tagline { margin-left: 0 !important; padding-left: 0 !important; }
.ftr-gs-bottom { justify-content: flex-start !important; gap: 28px !important; }


/* =========================================================================
   ▼ 上書きレイヤー⑥（2026-08-06）FB第5弾
   ========================================================================= */

/* --- 1) ヘッダー：中央寄せを解除し、ロゴ＝左／ナビ＝右 -------------------- */
header.gh { display: block !important; }
.gh-in { width: 100% !important; box-sizing: border-box; margin: 0 auto !important; justify-content: flex-start !important; }
.gh-logo { margin-right: auto; }
.gh-nav { margin-left: auto !important; }

/* --- 2) hero：1枚目（16:9）がぴったり収まる枠に拡大 ---------------------- */
.hero-layout { grid-template-columns: 1.66fr .92fr !important; max-width: 1360px !important; }
.hero-gallery-main { aspect-ratio: 16 / 9 !important; }
.hero-gallery-main img { width: 100% !important; height: 100% !important; object-fit: cover; }
.hero-subtitle .hero-subtitle-jp,
.hero-subtitle-jp.is-lg { font-size: 1.02rem !important; letter-spacing: .01em; opacity: 1 !important; }
@media (max-width: 1000px) {
    .hero-layout { grid-template-columns: 1fr !important; }
    .hero-gallery-main { aspect-ratio: 16 / 9 !important; }
}
@media (max-width: 700px) { .hero-subtitle-jp.is-lg { font-size: .92rem !important; } }

/* --- 3) プランカード：デジタル支援者証を大きく／クリックで拡大 ------------ */
.plan-cert {
    display: block; width: 100%; padding: 0; margin: 0;
    border: none; background: none; cursor: zoom-in; text-align: center;
    border-bottom: 1px solid var(--line-1);
}
.plan-cert img {
    display: block; width: 100%; height: auto;
    transition: transform .25s ease;
}
.plan-cert:hover img { transform: scale(1.02); }
.plan-cert-cap {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 9px 10px; font-size: .76rem; font-weight: 700;
    color: var(--tx-2); background: var(--paper-2);
}
.plan-cert:hover .plan-cert-cap { color: var(--tx-1); }
#plan1 .plan-cert-cap i { color: var(--g-bronze); }
#plan2 .plan-cert-cap i { color: var(--g-silver); }
#plan3 .plan-cert-cap i { color: var(--g-gold); }

.cert-overlay {
    display: none; position: fixed; inset: 0; z-index: 12000;
    background: rgba(12, 14, 17, .88);
    padding: 3vh 4vw; overflow: auto;
}
.cert-overlay.is-open { display: block; }
.cert-box { position: relative; max-width: min(760px, 92vw); margin: auto; }
.cert-box img {
    display: block; margin: 0 auto;
    max-width: 100%; max-height: 74vh; width: auto; height: auto;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.8);
}
.cert-cap { margin: 14px 0 0; text-align: center; color: rgba(255,255,255,.85); font-size: .86rem; font-weight: 700; }
.cert-close {
    position: absolute; top: 8px; right: 8px; z-index: 2;
    width: 40px; height: 40px; line-height: 38px; text-align: center;
    font-size: 26px; color: #fff; cursor: pointer;
    background: rgba(12, 14, 17, .62); border: 1px solid rgba(255, 255, 255, .35);
}
.cert-close:hover { background: rgba(12, 14, 17, .85); }

/* --- 4) こんな方におすすめ ------------------------------------------------ */
.plan-reco {
    display: block !important;
    margin: 16px 18px 0 !important; padding: 11px 13px !important;
    text-align: left !important;
}
.plan-reco span {
    display: flex !important; align-items: center; gap: 7px;
    margin: 0 0 5px !important; white-space: normal !important;
    font-size: .74rem; font-weight: 800; letter-spacing: .04em;
}
.plan-reco em { display: block; font-style: normal; font-weight: 700; font-size: .88rem; line-height: 1.7; }
#plan1 .plan-reco span i { color: var(--g-bronze); }
#plan2 .plan-reco span i { color: var(--g-silver); }
#plan3 .plan-reco span i { color: var(--g-gold); }

/* --- 5) リターン詳細モーダル：プランごとの配色 ---------------------------- */
.pr-theme-bronze { --pr-c: #a56a35; --pr-bg: #fbf5ee; }
.pr-theme-silver { --pr-c: #6f7a85; --pr-bg: #f4f7f9; }
.pr-theme-gold   { --pr-c: #a8822f; --pr-bg: #fcf8ee; }
.pr-theme-camp   { --pr-c: #E4453F; --pr-bg: #fff4f3; }
.plan-reader .preview-reader-tag { background: var(--pr-c) !important; color: #fff !important; border-color: var(--pr-c) !important; }
.plan-reader .pr-lead { border-left-color: var(--pr-c) !important; background: var(--pr-bg) !important; }
.plan-reader .pr-sec-title i { color: var(--pr-c) !important; }
.plan-reader .pr-sec-title { border-bottom-color: var(--pr-c) !important; }
.plan-reader .pr-ico { color: var(--pr-c) !important; }
.plan-reader .pr-row-gold { background: var(--pr-bg) !important; }
.plan-reader .pr-row-gold .pr-ico { color: var(--pr-c) !important; background: var(--pr-bg) !important; }
.plan-reader .pr-price { color: var(--pr-c) !important; }
.plan-reader .pr-notes li::before { background: var(--pr-c) !important; }
.plan-reader .pr-limit { background: var(--pr-c) !important; color: #fff !important; }
.plan-reader .preview-foot-cta { background: var(--pr-c) !important; border-color: var(--pr-c) !important; color: #fff !important; }
.plan-reader .pr-bd strong { color: var(--pr-c); }

/* --- 6) CAMPFIRE：数値カードは中央／説明文は左 ---------------------------- */
#campfire .achievement-stat,
#campfire .achievement-stat-label,
#campfire .achievement-stat-value { text-align: center !important; }
#campfire .achievement-text { text-align: left !important; }
#campfire .campfire-achievement { text-align: left; }
#campfire .achievement-img-area { display: block; text-align: center; }

/* --- 7) プロジェクトについて：説明文を左揃え ------------------------------ */
.project-info-box { text-align: left !important; }
.project-info-box p { text-align: left !important; }
.project-info-box .btn-cta { margin-top: 4px; }

/* --- 8) スポンサー：バナーをHTMLで作り直し（可読性重視） ------------------ */
.sponsor-banner {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px;
    align-items: center;
    max-width: 980px; margin: 0 auto 24px;
    padding: 34px 34px 32px;
    background: #fff !important;
    border: 3px solid var(--tx-1) !important;
    box-shadow: 8px 8px 0 rgba(23, 27, 32, .12) !important;
    text-align: left;
}
.sb-eyebrow {
    display: block; font-family: 'Oswald', sans-serif; font-size: .78rem;
    letter-spacing: .3em; color: var(--foil); margin-bottom: 12px; font-weight: 600;
}
.sb-title { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 900; line-height: 1.45; margin: 0 0 16px; color: var(--tx-1); }
.sb-price { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.sb-amount { font-family: 'Oswald', sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--foil); line-height: 1; }
.sb-limit { border: 2px solid var(--tx-1); padding: 5px 11px; font-size: .78rem; font-weight: 800; color: var(--tx-1); }
.sb-desc { font-size: .92rem; line-height: 1.9; color: var(--tx-2) !important; margin: 0; }
.sb-desc b { color: var(--tx-1); }
.sb-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sb-slot-card {
    background: #faf7f1; border: 1px solid #e2dccd; padding: 16px 14px;
    aspect-ratio: 1 / 1; display: flex; flex-direction: column; justify-content: center; gap: 9px;
}
.sb-slot-card-web { background: #fff; border-color: var(--line-1); justify-content: flex-start; }
.sb-slot-head { font-size: .62rem; letter-spacing: .22em; color: #9a8f76; text-align: center; font-weight: 700; }
.sb-slot-head-web { text-align: left; color: var(--tx-3); }
.sb-slot-sub { font-size: .72rem; font-weight: 800; color: var(--tx-1); }
.sb-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sb-logos-3 { grid-template-columns: repeat(3, 1fr); }
.sb-logos span {
    display: grid; place-items: center; aspect-ratio: 16 / 9;
    border: 1px dashed #c9c0aa; font-size: .58rem; letter-spacing: .1em; color: #a99e85;
}
.sb-slot-card-web .sb-logos span { border-color: var(--line-2); color: var(--tx-3); }
.sb-logobar { border: 1px dashed #c9c0aa; padding: 8px; text-align: center; font-size: .6rem; color: #a99e85; }
.sb-dots { display: flex; gap: 4px; margin-bottom: 2px; }
.sb-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); display: block; }
.sb-slot-cap { margin: 8px 0 0; font-size: .74rem; font-weight: 800; color: var(--tx-1); text-align: center; }
.sb-note { grid-column: 1 / -1; margin: 2px 0 0; font-size: .66rem; color: var(--tx-3); text-align: right; }
@media (max-width: 860px) {
    .sponsor-banner { grid-template-columns: 1fr; gap: 24px; padding: 26px 20px; }
}

/* スポンサー説明文を左揃え */
.sponsor-section .sponsor-desc { text-align: left !important; max-width: 980px; margin-left: auto; margin-right: auto; }
.sponsor-section .sponsor-actions { justify-content: flex-start; max-width: 980px; margin-left: auto; margin-right: auto; }


/* =========================================================================
   ▼ 上書きレイヤー⑦（2026-08-06）FB第6弾
   ========================================================================= */

/* --- 1) hero：2枚目以降は全体表示（JSが object-fit を切り替える） -------- */
.hero-gallery-main { background: var(--paper-2); }

/* --- 2) 支援プラン：こんな方におすすめ ----------------------------------- */
.plan-reco {
    background: var(--paper-2) !important;
    border: 1px solid var(--line-1) !important;
    border-left-width: 4px !important;
    color: var(--tx-1) !important;
}
.plan-reco span {
    background: none !important; color: inherit !important; padding: 0 !important;
    border: none !important;
}
.plan-reco em { color: var(--tx-1); }
#plan1 .plan-reco { background: #fbf5ee !important; border-color: #ecdcc6 !important; border-left-color: var(--g-bronze) !important; }
#plan2 .plan-reco { background: #f4f7f9 !important; border-color: #dde4e9 !important; border-left-color: var(--g-silver) !important; }
#plan3 .plan-reco { background: #fcf8ee !important; border-color: #eee0bd !important; border-left-color: var(--g-gold) !important; }
#plan1 .plan-reco span { color: #8a5526 !important; }
#plan2 .plan-reco span { color: #5c666f !important; }
#plan3 .plan-reco span { color: #8d6d20 !important; }

/* --- 3) プロジェクトについて：中央揃えに戻す ------------------------------ */
.project-info-box, .project-info-box p, .project-info-title { text-align: center !important; }

/* --- 4) スポンサーバナー：配色を入れて“バナー”らしく ---------------------- */
.sponsor-banner-color {
    background:
        radial-gradient(80% 120% at 100% 0%, rgba(176, 141, 63, .22) 0%, rgba(176, 141, 63, 0) 62%),
        linear-gradient(150deg, #1f242b 0%, #171b21 58%, #12161a 100%) !important;
    border: 3px solid var(--tx-1) !important;
    box-shadow: 10px 10px 0 rgba(176, 141, 63, .35) !important;
    padding: 36px 34px !important;
}
.sponsor-banner-color::before {
    content: ""; position: absolute; inset: 10px; border: 1px solid rgba(217, 192, 136, .38); pointer-events: none;
}
.sponsor-banner-color { position: relative; }
.sponsor-banner-color .sb-main { position: relative; z-index: 1; padding-left: 8px; }
.sponsor-banner-color .sb-eyebrow { color: var(--foil-lt) !important; font-size: .82rem; }
.sponsor-banner-color .sb-title { color: #fff !important; }
.sponsor-banner-color .sb-amount {
    color: transparent !important;
    background: linear-gradient(100deg, #b08d3f 0%, #f0dca2 46%, #b08d3f 100%);
    -webkit-background-clip: text; background-clip: text;
    font-size: 2.4rem;
}
.sponsor-banner-color .sb-limit { color: #fff !important; border-color: rgba(217, 192, 136, .75) !important; background: rgba(217, 192, 136, .12); }
.sponsor-banner-color .sb-desc { color: rgba(255, 255, 255, .82) !important; }
.sponsor-banner-color .sb-desc b { color: #f0dca2 !important; }
.sponsor-banner-color .sb-slots { position: relative; z-index: 1; }
.sponsor-banner-color .sb-slot-card { background: #f7f3ea; border-color: #d9cdb2; }
.sponsor-banner-color .sb-slot-card-web { background: #fff; border-color: #e6e6e6; }
.sponsor-banner-color .sb-slot-cap { color: rgba(255, 255, 255, .9) !important; }
.sponsor-banner-color .sb-note { color: rgba(255, 255, 255, .5) !important; }

/* --- 5) スポンサーCTA：ページ内CTAと同じボタン幅に揃える ------------------ */
.sponsor-actions { display: flex !important; flex-wrap: wrap; justify-content: center !important; }
.sponsor-actions .btn-cta {
    width: auto !important; min-width: 268px !important; flex: 0 1 auto !important;
    display: flex !important;
}
@media (max-width: 620px) { .sponsor-actions .btn-cta { min-width: 0 !important; width: 100% !important; } }
.sponsor-section .sponsor-actions { max-width: 980px; margin-left: auto; margin-right: auto; }

/* --- 6) フッター：SNS欄に「最新情報を随時発信中！」を集約 ------------------ */
.ftr-gs-follow { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.ftr-gs-follow-head { font-size: 14px; font-weight: 900; color: #fff; letter-spacing: .02em; }
.ftr-gs-follow-sub { font-size: 12px; line-height: 1.7; color: rgba(255, 255, 255, .55); }
.ftr-gs-sns { margin-top: 2px !important; flex-wrap: wrap; }


/* =========================================================================
   ▼ 上書きレイヤー⑧（2026-08-06）FB第7弾
   ========================================================================= */

/* --- 1) hero：ギャラリーの余白は黒地 -------------------------------------- */
.hero-gallery-main { background: #0d0f12 !important; }

/* --- 2) 支援プラン：3枚の行位置を揃える ---------------------------------- */
.plans-grid .plan-col { display: flex; }
.plans-grid .plan-col > .plan-card { flex: 1 1 auto; width: 100%; }
/* 余剰スペースはリターン一覧に吸わせ、以下の行を底揃えにする（固定値に頼らない） */
.plans-grid .plan-card { display: flex !important; flex-direction: column !important; }
.plans-grid .plan-feats { flex: 1 1 auto; min-height: 0 !important; }

/* --- 3) CAMPFIRE：赤を主役にした明るいセクションへ ------------------------ */
#campfire {
    background:
        radial-gradient(70% 55% at 85% 2%, rgba(255, 196, 120, .5) 0%, rgba(255, 196, 120, 0) 58%),
        radial-gradient(60% 50% at 2% 100%, rgba(255, 122, 77, .45) 0%, rgba(255, 122, 77, 0) 60%),
        linear-gradient(158deg, #ff6a4a 0%, #e8463e 46%, #c9332f 100%) !important;
    color: #fff;
}
#campfire::before, #campfire::after {
    background: linear-gradient(90deg, #ffd18a, #fff 45%, #ffd18a) !important;
    height: 4px;
}
#campfire .section-title { color: #fff !important; }
#campfire .section-title span { color: #ffe0c4 !important; }
#campfire .section-title::after { background: #fff !important; }
#campfire .campfire-achievement {
    background: rgba(255, 255, 255, .97) !important;
    border: 3px solid #ffffff !important;
    box-shadow: 12px 12px 0 rgba(122, 26, 22, .28) !important;
    border-radius: 0 !important;
    padding: 32px 30px !important;
}
#campfire .achievement-img-area img {
    border: 2px solid rgba(23, 27, 32, .12) !important;
    border-radius: 6px !important;
    box-shadow: 0 14px 30px -14px rgba(23, 27, 32, .45) !important;
}
#campfire .achievement-text { color: var(--tx-2) !important; }
#campfire .achievement-text strong { color: var(--camp) !important; }
#campfire .achievement-stat {
    background: #fff7f6 !important;
    border: 2px solid rgba(228, 69, 63, .35) !important;
    border-radius: 0 !important;
}
#campfire .achievement-stat-label { color: var(--camp) !important; font-weight: 800; }
#campfire .achievement-stat-value { color: var(--tx-1) !important; }
#campfire .achievement-stat-unit { color: var(--tx-2) !important; }
#campfire .campfire-actions .btn-cta-camp {
    background: var(--camp) !important; color: #fff !important; border-color: var(--camp) !important;
}
#campfire .campfire-actions .btn-cta-ghost { background: #fff !important; color: var(--tx-1) !important; border-color: var(--line-2) !important; }

/* --- 4) スポンサーバナー：注記を読みやすく -------------------------------- */
.sponsor-banner-color .sb-note {
    color: rgba(255, 255, 255, .78) !important;
    font-size: .74rem !important;
    line-height: 1.7;
    text-align: right;
    padding-top: 4px;
}

/* --- 5) フッター：SNSの誘導文を目立たせる -------------------------------- */
.ftr-gs-follow { gap: 5px; margin-top: 14px; }
.ftr-gs-follow-head {
    font-size: 17px !important; font-weight: 900 !important; color: #fff !important;
    line-height: 1.4; letter-spacing: .01em;
}
.ftr-gs-follow-sub { font-size: 13px !important; color: rgba(255, 255, 255, .78) !important; line-height: 1.65; }


/* =========================================================================
   ▼ 上書きレイヤー⑨（2026-08-06）FB第8弾
   ========================================================================= */

/* --- 1) CAMPFIRE：ベタ赤をやめ、生成り地＋赤のアクセントに ---------------- */
#campfire {
    background: linear-gradient(180deg, #fffaf8 0%, #fff1ed 100%) !important;
    color: var(--tx-1) !important;
    border-top: 5px solid var(--camp) !important;
    border-bottom: 5px solid var(--camp) !important;
}
#campfire::before, #campfire::after { display: none !important; }
#campfire .section-title { color: var(--tx-1) !important; }
#campfire .section-title span { color: var(--camp) !important; }
#campfire .section-title::after { background: var(--camp) !important; }
#campfire .campfire-achievement {
    background: #fff !important;
    border: 2px solid rgba(228, 69, 63, .28) !important;
    box-shadow: 0 18px 44px -22px rgba(122, 26, 22, .35) !important;
    padding: 34px 32px !important;
}
#campfire .achievement-img-area img {
    border: 1px solid var(--line-1) !important;
    box-shadow: 0 10px 26px -14px rgba(23, 27, 32, .35) !important;
}
#campfire .achievement-text { color: var(--tx-2) !important; }
#campfire .achievement-text strong { color: var(--camp) !important; }
#campfire .achievement-stat {
    background: #fff !important;
    border: 1px solid var(--line-1) !important;
    border-top: 3px solid var(--camp) !important;
    box-shadow: 0 2px 10px rgba(23, 27, 32, .05) !important;
    padding: 18px 12px !important;
}
#campfire .achievement-stat-label { color: var(--camp) !important; }
#campfire .achievement-stat-value { color: var(--tx-1) !important; }
#campfire .achievement-stat-unit { color: var(--tx-2) !important; }
#campfire .campfire-actions .btn-cta-camp { background: var(--camp) !important; color: #fff !important; border-color: var(--camp) !important; }
#campfire .campfire-actions .btn-cta-camp:hover { background: var(--camp-d) !important; }

/* --- 2) フッター：SNS誘導をしっかり見せる -------------------------------- */
.ftr-gs-follow {
    gap: 6px; margin-top: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .06);
    border-left: 4px solid var(--sk-magenta);
}
.ftr-gs-follow-head {
    font-size: 21px !important; font-weight: 900 !important; color: #fff !important;
    line-height: 1.35; letter-spacing: .01em;
}
.ftr-gs-follow-sub { font-size: 14px !important; color: rgba(255, 255, 255, .88) !important; line-height: 1.65; font-weight: 700; }
@media (max-width: 900px) { .ftr-gs-follow-head { font-size: 19px !important; } }


/* =========================================================================
   ▼ 上書きレイヤー⑩（2026-08-06）スマートフォン最適化
   内容は変えず、SPでの文字・余白・要素サイズを詰めて縦の長さを圧縮する
   ========================================================================= */
@media (max-width: 700px) {

  /* 基準サイズを一段落とす（rem指定を一括で縮小） */
  html { font-size: 15px; }

  /* --- セクションの余白リズム --- */
  section { padding: 44px 0 !important; }
  .container { padding-left: 15px !important; padding-right: 15px !important; }
  .section-title { font-size: 1.5rem !important; margin-bottom: 20px !important; }
  .section-desc { font-size: .84rem !important; line-height: 1.85 !important; }

  /* --- hero --- */
  .hero { padding: 22px 0 24px !important; }
  .hero-layout { gap: 18px !important; }
  .hero .hero-content { padding: 16px 15px !important; }
  .hero-tag { font-size: .62rem !important; letter-spacing: .12em !important; }
  .hero-artist-row { margin: 10px 0 8px !important; }
  .hero-artist-img { width: 38px !important; height: 38px !important; }
  .hero-artist-name { font-size: .92rem !important; }
  .hero-title { font-size: 1.62rem !important; }
  .hero-subtitle { font-size: .82rem !important; line-height: 1.75 !important; margin-bottom: 10px !important; }
  .hero-subtitle-jp.is-lg { font-size: .82rem !important; }
  .hero-message { padding: 12px 13px !important; font-size: .78rem !important; line-height: 1.85 !important; }
  .hero .hero-btns { margin-top: 14px !important; gap: 9px !important; }
  .hero-gallery-thumbs { gap: 7px !important; margin-top: 8px !important; }

  /* --- ボタン全般 --- */
  .btn-cta {
    min-width: 0 !important; width: 100% !important;
    min-height: 46px !important; font-size: .88rem !important; padding: 0 16px !important;
  }
  .inline-cta-btns, .campfire-actions, .sponsor-actions { flex-direction: column; width: 100%; }

  /* --- 支援状況パネル --- */
  .fund-section { padding: 26px 0 24px !important; }
  .fund-panel { padding: 18px 15px !important; }
  .fund-value { font-size: 1.75rem !important; }
  .fund-unit { font-size: .8rem !important; }
  .fund-pct-num { font-size: 1.45rem !important; }
  .fund-pct-sign { font-size: .85rem !important; }
  .fund-main { margin-bottom: 10px !important; }
  .fund-bar { height: 14px !important; }
  .fund-meta { grid-template-columns: 1fr 1fr !important; gap: 8px !important; margin-top: 12px !important; }
  .fund-meta-item { padding: 9px 8px !important; }
  .fund-meta-k { font-size: .62rem !important; }
  .fund-meta-v { font-size: .95rem !important; }
  .fund-note { font-size: .68rem !important; line-height: 1.7 !important; margin-top: 11px !important; }

  /* --- 作品概要・漫画家紹介 --- */
  .intro-grid { gap: 20px !important; }
  .intro-text h3 { font-size: 1.12rem !important; }
  .intro-text p, #artist p { font-size: .82rem !important; line-height: 1.9 !important; }
  .tag { font-size: .66rem !important; padding: 4px 8px !important; }
  #artist img[alt="クラッシャー主婦"] { width: 96px !important; height: 96px !important; border-width: 3px !important; }
  #artist h3 { font-size: 1.3rem !important; }
  .artist-sns-row { gap: 8px !important; }
  .sns-chip { font-size: .72rem !important; padding: 6px 10px !important; }
  .msg-grid { gap: 18px !important; }
  .msg-grid .comic-balloon { padding: 16px 15px !important; }
  .comic-balloon p { font-size: .82rem !important; line-height: 1.9 !important; }
  .msg-head { font-size: .92rem !important; margin-bottom: 10px !important; }
  .msg-visual-cap { font-size: .68rem !important; margin-top: 8px !important; }

  /* --- ページ内CTA --- */
  .inline-cta { padding: 18px 14px 16px !important; margin-top: 28px !important; margin-bottom: 28px !important; }
  .inline-cta-lead { font-size: .95rem !important; margin-bottom: 12px !important; }
  .inline-cta-note { font-size: .7rem !important; line-height: 1.75 !important; margin-top: 12px !important; }

  /* --- 試し読み --- */
  .preview-grid { gap: 14px !important; }
  .preview-item div { font-size: .82rem !important; }

  /* --- 支援プラン --- */
  .plans-lead { margin-bottom: 20px !important; }
  .plans-grid { gap: 16px !important; }
  .plan-head { margin-bottom: 12px !important; }
  .plan-card .plan-badge { padding: 11px 14px !important; font-size: .86rem !important; letter-spacing: .1em !important; }
  .plan-badge em { margin-left: 10px; padding-left: 10px; }
  .plan-cert img { max-height: 240px !important; object-fit: contain !important; background: var(--paper-2); }
  .plan-cert-cap { padding: 7px 8px !important; font-size: .68rem !important; }
  .plan-card .plan-name { font-size: .95rem !important; padding: 0 14px !important; }
  .plan-card .plan-price { font-size: 1.5rem !important; padding: 0 14px !important; }
  .plan-card .plan-price-sub { font-size: .72rem !important; padding: 0 14px !important; }
  .plans-grid .plan-feats { margin-top: 10px !important; padding: 0 14px !important; }
  .plan-feats li { font-size: .8rem !important; line-height: 1.7 !important; margin-bottom: 7px !important; }
  .plan-reco { margin: 12px 14px 0 !important; padding: 9px 11px !important; }
  .plan-reco span { font-size: .68rem !important; }
  .plan-reco em { font-size: .8rem !important; }
  .plans-grid .plan-card .plan-detail-btn { margin: 12px 14px 0 !important; padding: 11px 10px !important; font-size: .8rem !important; }
  .plans-grid .plan-card .btn-main { margin: 10px 14px 0 !important; min-height: 46px !important; font-size: .88rem !important; padding: 0 14px !important; }
  .plan-card { padding-bottom: 16px !important; }

  /* --- リターン早見表 --- */
  .cmp-block { padding: 16px 14px !important; }
  .cmp-title { font-size: 1rem !important; }
  .cmp-lead, .cmp-note { font-size: .72rem !important; line-height: 1.75 !important; }
  .cmp-table { font-size: .7rem !important; }
  .cmp-table th, .cmp-table td { padding: 8px 7px !important; }
  .cmp-k { font-size: .82rem !important; }
  .cmp-p { font-size: .62rem !important; }

  /* --- CAMPFIRE --- */
  #campfire .campfire-achievement { padding: 18px 14px !important; }
  #campfire .achievement-stats { gap: 8px !important; margin: 16px 0 !important; }
  #campfire .achievement-stat { padding: 11px 6px !important; }
  #campfire .achievement-stat-label { font-size: .6rem !important; letter-spacing: .04em !important; }
  #campfire .achievement-stat-value { font-size: 1.05rem !important; }
  #campfire .achievement-stat-unit { font-size: .6rem !important; }
  #campfire .achievement-text { font-size: .8rem !important; line-height: 1.9 !important; }

  /* --- ご支援の流れ --- */
  .flow-card { gap: 12px !important; margin-bottom: 14px !important; padding: 16px 14px !important; }
  .flow-num { font-size: 2.1rem !important; min-width: 40px !important; }
  .flow-content h4 { font-size: 1rem !important; }
  .flow-content p { font-size: .8rem !important; line-height: 1.85 !important; }
  .flow-note { font-size: .7rem !important; line-height: 1.75 !important; }

  /* --- プロジェクトについて --- */
  .project-info-box { padding: 20px 15px !important; }
  .project-info-title { font-size: 1.2rem !important; }
  .project-info-box p { font-size: .8rem !important; line-height: 1.9 !important; margin-bottom: 18px !important; }
  .use-block { padding: 18px 14px !important; margin-top: 22px !important; }
  .use-title { font-size: 1.05rem !important; }
  .use-lead, .use-note { font-size: .76rem !important; line-height: 1.8 !important; }
  .use-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .use-card { padding: 12px 11px !important; }
  .use-icon { width: 34px !important; height: 34px !important; font-size: .85rem !important; margin-bottom: 8px !important; }
  .use-name { font-size: .82rem !important; }
  .use-desc { font-size: .72rem !important; line-height: 1.7 !important; }

  /* --- スポンサー --- */
  .sponsor-banner-color { padding: 20px 16px !important; gap: 18px !important; }
  .sb-eyebrow { font-size: .68rem !important; margin-bottom: 8px !important; }
  .sb-title { font-size: 1.2rem !important; margin-bottom: 12px !important; }
  .sb-amount { font-size: 1.7rem !important; }
  .sb-limit { font-size: .68rem !important; padding: 4px 8px !important; }
  .sb-desc { font-size: .78rem !important; line-height: 1.8 !important; }
  .sb-slots { gap: 10px !important; }
  .sb-slot-card { padding: 11px 9px !important; gap: 6px !important; }
  .sb-slot-cap { font-size: .66rem !important; }
  .sb-note { font-size: .64rem !important; }
  .sponsor-desc { font-size: .8rem !important; line-height: 1.9 !important; }

  /* --- フッター --- */
  .ftr-gs-inner { padding: 34px 15px 20px !important; }
  .ftr-gs-top { gap: 22px !important; margin-bottom: 24px !important; }
  .ftr-gs-logo img { max-height: 28px !important; }
  .ftr-gs-tagline { font-size: 12px !important; }
  .ftr-gs-follow { margin-top: 12px !important; padding: 13px 14px !important; }
  .ftr-gs-follow-head { font-size: 17px !important; }
  .ftr-gs-follow-sub { font-size: 12.5px !important; }
  .ftr-gs-sns a { width: 36px !important; height: 36px !important; font-size: 15px !important; }
  .ftr-gs-col h5 { font-size: 12px !important; margin-bottom: 10px !important; }
  .ftr-gs-col li { margin-bottom: 8px !important; }
  .ftr-gs-col a { font-size: 12.5px !important; }
  .ftr-gs-bottom { padding-top: 18px !important; padding-bottom: 28px !important; font-size: 11px !important; }

  /* --- モーダル --- */
  .plan-reader-body .pr-inner { padding: 14px 12px 20px !important; }
  .pr-lead { font-size: .8rem !important; line-height: 1.8 !important; }
  .pr-sec-title { font-size: .92rem !important; }
  .pr-nm, .pr-bd { font-size: .78rem !important; }
  .pr-notes { padding: 12px 13px !important; }
  .pr-notes li { font-size: .74rem !important; line-height: 1.8 !important; }
}

@media (max-width: 380px) {
  html { font-size: 14px; }
  .plan-cert img { max-height: 210px !important; }
}

/* SP追補：フッターのリンク列を2列に、heroメッセージをもう一段圧縮 */
@media (max-width: 700px) {
  .hero-message { font-size: .75rem !important; line-height: 1.78 !important; }
  .hero-gallery-thumbs { gap: 6px !important; }
}
@media (max-width: 560px) {
  .ftr-gs-top { grid-template-columns: 1fr 1fr !important; gap: 20px 16px !important; }
  .ftr-gs-brand { grid-column: 1 / -1; }
}

/* SP追補②：ラベル類の最小サイズをpxで担保／支援者証は幅で絞る */
@media (max-width: 700px) {
  .fund-meta-k,
  #campfire .achievement-stat-label,
  #campfire .achievement-stat-unit,
  .cmp-p, .hero-tag, .tag, .sb-slot-cap, .sb-note, .plan-cert-cap,
  .plan-reco span, .msg-visual-cap, .fund-label {
    font-size: 11px !important;
    letter-spacing: .02em !important;
  }
  .fund-note, .inline-cta-note, .cmp-lead, .cmp-note, .flow-note,
  .use-desc, .use-note, .pr-notes li, .plan-card .plan-price-sub,
  .ftr-gs-bottom { font-size: 12px !important; line-height: 1.75 !important; }
  .cmp-table { font-size: 11.5px !important; }
  .preview-reader-page, .sb-slot-head, .sb-slot-head-web { font-size: 11px !important; }

  /* 支援者証：レターボックスをやめ、幅で絞って中央寄せ */
  .plan-cert img {
    max-height: none !important;
    max-width: 260px !important;
    width: 100% !important;
    margin: 0 auto !important;
    object-fit: fill !important;
    background: none !important;
  }
  .plan-cert { background: #fff; }
}
@media (max-width: 380px) {
  .plan-cert img { max-width: 230px !important; max-height: none !important; }
}


/* =========================================================================
   ▼ 上書きレイヤー⑪（2026-08-06）SP追補＋モーダルの閉じる導線
   ========================================================================= */

/* --- 試し読みサムネ：全面が入る1:1に（画像も1:1で作り直し済み） -------- */
.preview-item img { aspect-ratio: 1 / 1 !important; object-fit: cover !important; }

/* --- リターン詳細モーダル：右上の✕を明示 -------------------------------- */
.preview-reader-overlay .plan-close-btn {
    position: static; flex-shrink: 0;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff; font-size: 1.45rem; line-height: 1; cursor: pointer;
    margin-left: auto;
}
.preview-reader-overlay .plan-close-btn:hover { background: rgba(255, 255, 255, .3); }
.preview-reader-foot { flex-wrap: wrap; gap: 8px; box-sizing: border-box; }
.preview-reader-foot > * { min-width: 0; box-sizing: border-box; }

@media (max-width: 700px) {

  /* --- NFT MANGA PROJECT：手動改行を解除して自然な折返しに --- */
  .project-info-box p br { display: none; }
  .project-info-box p { text-align: left !important; }

  /* --- スポンサー注記はSPでは左揃え --- */
  .sponsor-banner .sb-note { text-align: left !important; }

  /* --- セクションメニュー：横スクロールできることを見せる --- */
  .sub-nav { position: fixed; }
  .sub-nav-in { padding-right: 34px !important; scroll-snap-type: x proximity; }
  .sub-nav-in a { scroll-snap-align: start; }
  .sub-nav::after {
    content: "›";
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 34px;
    display: flex; align-items: center; justify-content: flex-end;
    padding-right: 10px;
    font-size: 18px; font-weight: 700; color: var(--tx-3);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.97) 55%);
    pointer-events: none;
  }

  /* --- ページ内CTA：もっとコンパクトに --- */
  .inline-cta { padding: 14px 12px 13px !important; margin-top: 22px !important; margin-bottom: 22px !important; }
  .inline-cta-lead { font-size: .88rem !important; line-height: 1.6 !important; margin-bottom: 10px !important; }
  .inline-cta-btns { gap: 8px !important; }
  .inline-cta-btns .btn-cta { min-height: 42px !important; font-size: .84rem !important; }
  .inline-cta-note { font-size: 11px !important; line-height: 1.65 !important; margin-top: 9px !important; }

  /* --- リターン早見表：列の間隔を詰める --- */
  .cmp-table th, .cmp-table td { padding: 7px 5px !important; }
  .cmp-table thead th { padding: 8px 4px !important; }
  .cmp-head-item { min-width: 132px !important; }
  .cmp-table tbody th i { margin-right: 5px !important; }
  .cmp-k { font-size: .8rem !important; }
  .cmp-yes i { font-size: .92rem !important; }

  /* --- モーダルのフッター：画面内に収める --- */
  .preview-reader-foot { padding: 9px 10px !important; gap: 7px !important; }
  .preview-foot-cta {
    order: -1; flex: 1 0 100% !important; width: 100% !important;
    font-size: .82rem !important; padding: 10px 12px !important;
  }
  .preview-work-btn { flex: 1 1 0 !important; font-size: .76rem !important; padding: 9px 6px !important; }
  .preview-reader-head { padding: 9px 10px !important; gap: 8px !important; }
  .preview-reader-title { font-size: .82rem !important; }
  .preview-reader-overlay .plan-close-btn,
  .preview-reader-overlay .preview-close-btn { width: 30px !important; height: 30px !important; font-size: 1.25rem !important; }
}

/* SP追補③：早見表の下限幅を下げて実際に列を詰める */
@media (max-width: 700px) {
  .cmp-table { min-width: 500px !important; }
  .cmp-head-item { min-width: 0 !important; width: 42% !important; }
  .cmp-table tbody th {
    font-size: 11.5px !important; line-height: 1.5 !important;
    padding-right: 4px !important;
  }
  .cmp-table tbody th i {
    width: 15px !important; margin-right: 4px !important;
    font-size: .82rem !important; text-align: center;
  }
  .cmp-table td { min-width: 78px !important; }
}


/* =========================================================================
   ▼ 上書きレイヤー⑫（2026-08-06）CTAカードの差別化＋SP追補
   ========================================================================= */

/* --- 1) ページ内CTA：使い回しの枠をやめ、支援導線だと分かる見た目に ------ */
.inline-cta {
    position: relative;
    background: linear-gradient(180deg, #fff7ef 0%, #ffffff 58%) !important;
    border: 2px solid var(--cta-warm) !important;
    border-radius: 0 !important;
    box-shadow: 6px 6px 0 rgba(255, 109, 0, .16) !important;
    padding: 28px 20px 18px !important;
}
.inline-cta::before {
    content: "SUPPORT";
    position: absolute; top: -2px; left: -2px;
    background: var(--cta-warm); color: #fff;
    font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .22em;
    padding: 4px 12px 4px 11px;
    line-height: 1.4;
}
.inline-cta-lead { color: var(--tx-1) !important; }
.inline-cta-note { color: var(--tx-3) !important; }

@media (max-width: 700px) {

  /* CTAカードをコンパクトに */
  .inline-cta { padding: 24px 12px 12px !important; box-shadow: 4px 4px 0 rgba(255, 109, 0, .16) !important; }
  .inline-cta::before { font-size: 9px; padding: 3px 10px; }
  .inline-cta-lead { font-size: .86rem !important; line-height: 1.6 !important; margin-bottom: 9px !important; }
  .inline-cta-btns { gap: 7px !important; }
  .inline-cta-btns .btn-cta { min-height: 40px !important; font-size: .82rem !important; }
  .inline-cta-note { font-size: 10.5px !important; line-height: 1.6 !important; margin-top: 8px !important; }

  /* --- 2) セクションメニュー：横スクロールをはっきり示す --- */
  .sub-nav-in { padding-right: 44px !important; }
  .sub-nav::before {
    content: "";
    position: absolute; top: 0; right: 0; bottom: 0; width: 58px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #fff 62%);
    pointer-events: none;
  }
  .sub-nav::after {
    content: "\276F";
    position: absolute; top: 50%; right: 8px;
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cta-warm); color: #fff;
    font-size: 11px; font-weight: 700; line-height: 1;
    box-shadow: 0 2px 6px rgba(23, 27, 32, .28);
    pointer-events: none;
    animation: subNavNudge 1.7s ease-in-out infinite;
  }

  /* --- 3) 募集期間の注記：小さく、3行構成 --- */
  .fund-note { font-size: 10.5px !important; line-height: 1.75 !important; }

  /* --- 4) 作品概要のタグ：3つ横並びでコンパクトに --- */
  .intro-tags { display: flex !important; gap: 5px !important; flex-wrap: nowrap !important; }
  .intro-tags .tag {
    flex: 1 1 0; min-width: 0;
    font-size: 9.5px !important; padding: 5px 4px !important;
    text-align: center; white-space: normal !important;
    line-height: 1.35; letter-spacing: 0;
    display: flex; align-items: center; justify-content: center;
    margin: 0 !important;
  }

  /* --- 5) 支援金の使い道：説明文をコンパクトに --- */
  .use-desc { font-size: 11px !important; line-height: 1.65 !important; }
  .use-name { font-size: .78rem !important; }
  .use-card { padding: 10px 9px !important; }
}
@keyframes subNavNudge {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(3px); }
}


/* =========================================================================
   ▼ 上書きレイヤー⑬（2026-08-06）CTAを枠なしに／サブナビの示唆を一般的な形へ
   ========================================================================= */

/* --- CTA：枠を外し、1行のキャッチ＋ボタンだけの軽い構成に --- */
.inline-cta {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 20px !important;
    margin-top: 34px !important; margin-bottom: 34px !important;
    max-width: 720px !important;
}
.inline-cta::before { content: none !important; display: none !important; }
.inline-cta-lead {
    font-size: 1.12rem !important; font-weight: 900 !important;
    line-height: 1.5 !important; margin: 0 0 14px !important;
    text-align: center; color: var(--tx-1) !important;
    white-space: nowrap;
}

@media (max-width: 700px) {
  .inline-cta { padding: 0 8px !important; margin-top: 24px !important; margin-bottom: 24px !important; }
  .inline-cta-lead { font-size: .95rem !important; margin-bottom: 10px !important; }
  .inline-cta-btns { gap: 8px !important; }

  /* --- サブナビ：アイコンをやめ、端のフェード＋次項目の見切れで示唆する --- */
  .sub-nav::after { content: none !important; display: none !important; }
  .sub-nav-in { padding-right: 26px !important; }
  .sub-nav::before {
    width: 40px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.98) 72%);
  }

  /* --- 作品概要のタグ：内容幅で3つ横並び（折返しなし） --- */
  .intro-tags { gap: 6px !important; }
  .intro-tags .tag {
    flex: 0 1 auto !important;
    font-size: 10px !important; padding: 4px 7px !important;
    white-space: nowrap !important; line-height: 1.4;
  }
}

/* SP追補④：サブナビ — フェードを弱めてピークを残し、細いスクロールインジケーターを併用 */
@media (max-width: 700px) {
  .sub-nav-in { padding-right: 14px !important; }
  .sub-nav::before {
    width: 24px !important;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.88) 100%) !important;
  }
  /* Material の scrollable tabs 相当：下端に細いインジケーター（トラック＋つまみ） */
  .sub-nav {
    background-image:
      linear-gradient(90deg, rgba(23,27,32,.28) 0 62%, rgba(23,27,32,0) 62%),
      linear-gradient(90deg, rgba(23,27,32,.08), rgba(23,27,32,.08)) !important;
    background-size: 100% 2px, 100% 2px !important;
    background-position: left bottom, left bottom !important;
    background-repeat: no-repeat, no-repeat !important;
    background-color: rgba(255, 255, 255, .97) !important;
  }
}

/* SP追補⑤：CTAボタンを横並びに（文字は折り返さない） */
@media (max-width: 700px) {
  .inline-cta-btns,
  .hero-btns,
  .sponsor-actions,
  .campfire-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100%;
  }
  .inline-cta-btns .btn-cta,
  .hero-btns .btn-cta,
  .sponsor-actions .btn-cta,
  .campfire-actions .btn-cta {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 8px !important;
    font-size: clamp(9.5px, 3vw, 12px) !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    gap: 5px !important;
  }
  .inline-cta-btns .btn-cta i,
  .hero-btns .btn-cta i,
  .sponsor-actions .btn-cta i,
  .campfire-actions .btn-cta i {
    font-size: .92em !important; margin: 0 !important; flex-shrink: 0;
  }
}


/* =========================================================================
   ▼ 上書きレイヤー⑬（2026-08-06）PC縮小時のレイアウト切替
   狭くなったら「縮める」のではなく「積む」。既存の <=1000px / <=700px の
   挙動は変えず、その上のレンジ（1001〜1200px）と、従来 860/768px で
   切り替えていた2カラムの切替点だけを引き上げる。
   ========================================================================= */

/* --- 1) hero：右カラムが窮屈になる前（<=1200px）でギャラリー下へ回す ----- */
@media (max-width: 1200px) and (min-width: 1001px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 30px !important;
        align-items: start !important;
    }
    .hero-gallery,
    .hero .hero-content {
        width: 100%;
        max-width: 880px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero-gallery-main { aspect-ratio: 16 / 9 !important; }
    .hero .hero-content,
    .hero .hero-title,
    .hero .hero-subtitle,
    .hero .hero-message { text-align: left !important; }
    .hero .hero-btns { justify-content: flex-start !important; }
}

/* --- 2) その他の左右2カラム：崩れる前に1カラムへ ------------------------- */
@media (max-width: 1200px) {
    .msg-grid { grid-template-columns: minmax(0, 1fr) !important; gap: 22px !important; }
    .intro-grid { grid-template-columns: minmax(0, 1fr) !important; }
    .sponsor-banner { grid-template-columns: minmax(0, 1fr) !important; gap: 26px !important; }
}

/* --- 3) 多カラムのグリッドも1段早めに間引く ------------------------------ */
@media (max-width: 1080px) {
    #preview .preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .fund-meta { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .ftr-gs-top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
}

/* =========================================================================
   ▼ 上書きレイヤー⑭（2026-08-06）hero ギャラリーのメイン画像をクリックで拡大
   ・支援プランの支援者証（.js-cert-zoom）と同じ #cert-modal を使い回す
   ・16:9 の横長画像なので、モーダル側の枠だけ .is-wide で広げる
   ========================================================================= */
/* 2026-08-07 FB：拡大できるのは6枚目以降だけ。
   JS が枠に .is-zoomable を付け外しするので、カーソルとバッジもそれに合わせる
   （1〜5枚目は拡大しないため、カーソルも「クリックで拡大」バッジも出さない） */
.hero-gallery-main { cursor: default; }
.hero-gallery-main.is-zoomable { cursor: zoom-in; }
.hero-gallery-main.is-zoomable::after {
    content: 'クリックで拡大';
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    padding: 5px 11px;
    font-family: var(--font-jp);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .94);
    background: rgba(12, 14, 17, .62);
    border: 1px solid rgba(255, 255, 255, .3);
    pointer-events: none;
    transition: background .2s ease;
}
.hero-gallery-main.is-zoomable:hover::after { background: rgba(12, 14, 17, .88); }

/* 拡大表示（横長画像用）：既定の 760px では元のギャラリーより小さくなるため広げる */
.cert-box.is-wide { max-width: min(1280px, 94vw); }
.cert-box.is-wide img { max-height: 80vh; }

@media (max-width: 700px) {
    .hero-gallery-main.is-zoomable::after { right: 7px; bottom: 7px; padding: 4px 8px; font-size: 10px; }
    /* SPは画面幅が上限になり「拡大」にならないので、高さ基準で拡大し横スクロールで見せる
       （早見表のような横長の画像を指で追えるようにする） */
    .cert-box.is-wide {
        max-width: none;
        width: max-content;
        margin: 0;
    }
    .cert-box.is-wide img {
        width: auto;
        max-width: none;
        height: 64vh;
        max-height: none;
    }
    .cert-box.is-wide .cert-cap {
        position: sticky;
        left: 0;
        width: 92vw;
    }
    .cert-box.is-wide .cert-cap::after {
        content: '（横にスクロールできます）';
        display: block;
        margin-top: 4px;
        font-weight: 400;
        font-size: .78rem;
        color: rgba(255, 255, 255, .7);
    }
    /* 枠が画面幅より広くなるため、閉じるボタンは画面に固定しないと押せなくなる */
    .cert-box.is-wide .cert-close {
        position: fixed;
        top: 10px;
        right: 10px;
    }
}


/* =========================================================================
   ▼ 上書きレイヤー⑮（2026-08-07）本文の右端のばらつき（ラグ）をそろえる
   症状＝行末の余白が行ごとにバラバラで、右側が不揃いに見える。
   原因は2つあり、両方に手当てする。
     ①（HTML側・対応済）散文に「文末ごとの <br>」が入っていた
        → 文の長さの余りが毎行出ていた。段落区切りの <br><br> だけ残して削除。
     ②（ここ）body に word-break: auto-phrase が掛かっていた（3569行）
        → 日本語を文節単位でしか折り返さないため、行末に 0〜7 文字の余りが
          不規則に出る。実測：SP390 で途中の短行 27 行 → normal なら 6 行、
          途中行の平均充填 90.2% → 94.9%。
        → 本文は normal（文字単位＋禁則）に戻して行を詰める。
   ただし見出し・ボタンは 1〜2 行で文節折返しのほうが読みやすいので
   auto-phrase を残す（text-wrap: balance と併用）。
   ※ auto-phrase は Chromium 系のみ対応で Safari は元から効いていない。
     本文を normal に統一することで、ブラウザ間の見え方の差もなくなる。
   ========================================================================= */
body { word-break: normal; }

h1, h2, h3, h4, h5,
.section-title,
.hero-title, .hero-subtitle,
.btn-cta, .btn-primary, .btn-secondary, .cta-btn,
.plan-title, .roadmap-title, .flow-content h4, .msg-head, .project-info-title {
    word-break: auto-phrase;
}


/* =========================================================================
   ▼ 上書きレイヤー⑯（2026-08-07）モバイルの本文表記
   ユーザーFB＝「モバイルは改行位置がばらけて凸凹。中央に寄せた方がいい所を
   無理に左へ寄せて右が不自然に空いている」

   【診断】各行について「次の1文字が入ったはずなのに折り返した行」を数えたところ、
   text-wrap: balance を当てた左揃えブロックが総崩れだった。
     .plans-lead 3/3行（余り 6.8/6.3/4.6 文字分）、.use-lead 1/1行（余り 9.1 文字分）
   balance は「行長を均等化」する＝全行を短くして右を空ける動き。
   **中央揃えなら左右対称の余白になって自然だが、左揃えに当てると
     『右だけが不自然に空く』という、まさに指摘どおりの状態を作る。**

   【ルール】揃え方で使い分ける（これがPCと同じ見え方に近づく最短路）
     ・中央揃えのブロック → text-wrap: balance（行長を均等化）
     ・左揃えのブロック   → balance を当てない。行を目一杯詰めて右端をそろえ、
                            短いのは最終行だけにする（通常の日本語組版）
   ③ NFT MANGA PROJECT の1文1行はPCのみ（.pc-br）
   ========================================================================= */
@media (max-width: 700px) {
    /* ③ PCだけ1文1行に戻す（モバイルは連結して行を詰める） */
    .pc-br { display: none; }

    /* ① 中央揃えのブロックだけ行長を均等化する。
          .hero-message は SP では中央（4986行）＝hero のリード文として自然なので中央のまま。 */
    .hero-message,
    .plans-lead, .plans-lead-sub,
    .section-desc,
    .fund-note {
        text-wrap: balance;
    }

    /* ② 左揃えの本文・注記・カード説明は balance を打ち消して行を詰める。
          3568行の `p, li, figcaption { text-wrap: pretty; }` も、行を短くする方向に
          働く場合があるためモバイルでは無効化し、素直な greedy 折返しに統一する。 */
    .use-lead, .use-desc, .use-note,
    .cmp-lead, .cmp-note, .cmp-table td, .cmp-table th,
    .sb-title, .sb-desc, .sb-note,
    .flow-content p, .flow-note,
    .plan-card li, .pr-notes li, .plan-price-sub,
    .msg-visual-cap, .ftr-gs-tagline, .inline-cta-note,
    .achievement-text, .sponsor-desc,
    #about p, #artist p, .comic-balloon p,
    .project-info-box p {
        text-wrap: wrap;
    }
}


/* =========================================================================
   ▼ 上書きレイヤー⑰（2026-08-07）改行位置の個別指定（ユーザーFB）
   ・.sp-br ＝モバイルだけ改行するための専用クラス。
     既存の .sp-only は display:block のため br に当てると余計な行が生まれ得る。
     br 専用に display:inline で用意する。
   ・改行を手で指定したブロックは text-wrap:balance を外す
     （balance は行長を均等化する＝手で決めた改行位置と喧嘩して行を短くするため）。
   ・🚨 NFT MANGA PROJECT は 6094行に
       @media(max-width:700px){ .project-info-box p br { display:none } }
     が既存であり、モバイルで改行が消えていた。今回「PC/モバイル共通で改行」の
     指示なので、ここで打ち消す。
   ・heroキャッチはモバイルで改行せず1行に収める指示。white-space:nowrap で
     折返しを止め、幅に応じて文字サイズを詰める（<br> は nowrap でも効くので
     和文サブタイトルとの2行構成は保たれる）。
   ========================================================================= */
.sp-br { display: none; }

@media (max-width: 700px) {
    .sp-br { display: inline; }

    /* 手で改行位置を決めたので均等化はしない */
    .plans-lead { text-wrap: wrap; }

    /* NFT MANGA PROJECT・CAMPFIRE は「PC版のみ改行」（8/7 ユーザー判断）。
       モバイルは連結して行を詰める＝スマホ幅で1文字だけの行が出るのを避けるため。
       改行タグは .pc-br なのでレイヤー⑯の display:none で消える。 */

    /* heroキャッチ：改行せず1行に収める（文字サイズを幅に追従させる）
       ⚠️ .hero .hero-subtitle（4979行）が !important で font-size を持つため、
          同じ詳細度以上で書かないと効かない */
    .hero .hero-subtitle,
    .hero-subtitle {
        white-space: nowrap;
        font-size: min(3.3vw, 15px) !important;
    }
}


/* =========================================================
   ▼ 上書きレイヤー⑱（2026-08-07）FAQ（よくある質問）セクションを新設
   第10弾サカモトLPのFAQを本プロジェクトの建付けへ変換して掲載。
   トーン＝墨＋紙白＋箔（FB第2弾のデザイン言語に合わせる）。
   ========================================================= */
#faq { background: var(--paper-2, #f5f7f8); }

.faq-block {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line-1, #e2e7ea);
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow-1, 0 2px 10px rgba(23, 27, 32, .05));
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
    border-color: var(--foil, #b08d3f);
    box-shadow: var(--shadow-2, 0 10px 30px -12px rgba(23, 27, 32, .28));
}

/* --- 質問（summary）--- */
.faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 52px 17px 20px;
    position: relative;
    transition: background .15s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--paper-2, #f5f7f8); }
.faq-q::before {
    content: "Q";
    flex: 0 0 auto;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--ink, #171b20);
    color: #fff;
    font-family: var(--font-en, sans-serif);
    font-size: .95rem;
    line-height: 26px;
    text-align: center;
}
/* 開閉の矢印 */
.faq-q::after {
    content: "";
    position: absolute;
    top: 50%; right: 22px;
    width: 9px; height: 9px;
    margin-top: -7px;
    border-right: 2px solid var(--foil, #b08d3f);
    border-bottom: 2px solid var(--foil, #b08d3f);
    transform: rotate(45deg);
    transition: transform .25s ease, margin-top .25s ease;
}
.faq-item[open] .faq-q::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-qt {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--tx-1, #171b20);
    padding-top: 2px;
}

/* --- 回答 --- */
.faq-a {
    position: relative;
    padding: 16px 22px 20px 58px;
    border-top: 1px solid var(--line-1, #e2e7ea);
    font-size: .93rem;
    line-height: 1.95;
    color: var(--tx-2, #5b656d);
}
.faq-a::before {
    content: "A";
    position: absolute;
    left: 20px; top: 16px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--foil, #b08d3f);
    color: #fff;
    font-family: var(--font-en, sans-serif);
    font-size: .95rem;
    line-height: 26px;
    text-align: center;
}
.faq-a p { margin: 0 0 11px; font-size: inherit; line-height: inherit; color: inherit; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong, .faq-a b { color: var(--tx-1, #171b20); font-weight: 700; }
.faq-a ul { margin: 4px 0 11px; padding: 0; list-style: none; }
.faq-a ul li {
    padding: 11px 14px;
    margin: 0 0 8px;
    background: var(--paper-2, #f5f7f8);
    border-left: 3px solid var(--foil, #b08d3f);
    border-radius: 0 8px 8px 0;
    font-size: inherit;
    line-height: 1.85;
}
.faq-a ul li:last-child { margin-bottom: 0; }
.faq-a .faq-sub {
    margin-top: 12px;
    font-size: .82rem;
    line-height: 1.85;
    /* --tx-3 は白地でコントラスト3.05＝基準割れ。注記も --tx-2 を使う（実測で是正） */
    color: var(--tx-2, #5b656d);
}

.faq-note {
    max-width: 900px;
    margin: 24px auto 0;
    text-align: center;
    font-size: .86rem;
    color: var(--tx-2, #5b656d);
}
.faq-note a {
    color: var(--foil, #b08d3f);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- モバイル ---
   本文は左揃えなので text-wrap:wrap で行を詰める（レイヤー⑯と同じ方針）。 */
@media (max-width: 700px) {
    .faq-block { gap: 10px; }
    .faq-q { padding: 14px 40px 14px 14px; gap: 9px; }
    .faq-q::before { width: 23px; height: 23px; line-height: 23px; font-size: .85rem; }
    .faq-q::after { right: 15px; }
    .faq-qt { font-size: .93rem; line-height: 1.6; padding-top: 1px; }
    .faq-a { padding: 14px 15px 17px 46px; font-size: .88rem; line-height: 1.9; }
    .faq-a::before { left: 14px; top: 14px; width: 23px; height: 23px; line-height: 23px; font-size: .85rem; }
    .faq-a ul li { padding: 10px 12px; }
    .faq-a .faq-sub { font-size: .78rem; }
    .faq-note { font-size: .8rem; }
    .faq-qt, .faq-a, .faq-a p, .faq-a li, .faq-a .faq-sub, .faq-note { text-wrap: wrap; }
}


/* ---------------------------------------------------------------
   ⑲ 試し読み：ワンクリック（スマホはタップ）で読めることを絵で示す
      ★ページ数バッジと「この話を読む」ボタンは常時表示にする。
        ホバーの無い端末（スマホ・タブレット）では hover 演出だけでは伝わらないため。
   --------------------------------------------------------------- */
.preview-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.preview-item:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* サムネイルのラッパー（バッジとホバー演出の位置基準）
   ※ <span> にしているのは、<div> だと既存の `.preview-item > div`（作品名の書式）に
      巻き込まれて余白と文字サイズが崩れるため */
.preview-thumb {
    position: relative;
    display: block;
    line-height: 0;
}
.preview-thumb img { display: block; }

/* 右上のページ数バッジ（常時表示） */
.preview-pages {
    position: absolute;
    top: 7px;
    right: 7px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, .82);
    color: #fff;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.4;
    pointer-events: none;
}

/* ホバー／キーボードフォーカス時に絵の上へ出す「読む」（PC向けの追加フィードバック） */
.preview-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.preview-item:hover .preview-hover,
.preview-item:focus-visible .preview-hover { opacity: 1; }

/* 「この話を読む」ボタン（常時表示）
   支援プランのCTA（オレンジ）と competing しないよう、
   既存の副ボタン .plan-detail-btn と同じ白地＋黒枠＋ハードシャドウに揃える */
.preview-read-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: auto;
    padding: 10px 8px;
    background: #fff;
    border: 2px solid #111;
    border-radius: 4px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .18);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 900;
    color: #111;
    line-height: 1.4;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.preview-read-btn i { color: var(--primary); }
.preview-item:hover .preview-read-btn,
.preview-item:focus-visible .preview-read-btn {
    background: #f4f4f4;
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .18);
}

/* 作品名は上下の余白を詰めてボタンの居場所を作る */
.preview-item > div { margin-bottom: 10px; }

@media (max-width: 700px) {
    .preview-pages { top: 5px; right: 5px; padding: 3px 6px; font-size: .62rem; }
    .preview-hover { font-size: .88rem; }
    .preview-read-btn { padding: 9px 6px; font-size: .74rem; gap: 5px; }
    .preview-item > div { margin-bottom: 8px; }
}


/* ---------------------------------------------------------------
   ページ先頭へ戻るボタン（2026-08-12 追加）
   z-index はモーダル（10000〜12000）より下・追従ナビ（79/80）より上に置く。
   モーダル／モバイルメニューを開いている間は覆われるので押せない。
   --------------------------------------------------------------- */
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9800;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
    border: 1px solid var(--line-2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(6px);
    color: var(--tx-1);
    font-family: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s, background .2s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--paper-2); }
.to-top:focus-visible { outline: 2px solid var(--foil); outline-offset: 3px; }
.to-top i { font-size: .95rem; line-height: 1; color: var(--foil); }
.to-top-label {
    font-family: var(--font-en);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
}

@media (max-width: 700px) {
    .to-top { right: 14px; bottom: 14px; width: 50px; height: 50px; }
    .to-top i { font-size: .88rem; }
}

@media (prefers-reduced-motion: reduce) {
    .to-top { transition: opacity .01s linear; }
}


/* ---------------------------------------------------------------
   スポンサー募集ボタン（2026-08-12 Bill LP 準拠へ戻したときの調整）
   Bill は黒背景に白ボタンだが、本LPはこのセクションも白背景のため
   そのままでは白×白で消える。本LPのCTA意匠（白地・黒枠2px・角4px・
   黒シャドウ）に合わせる。
   --------------------------------------------------------------- */
.sponsor-section .sponsor-btn {
    background: #fff;
    color: #111;
    border: 2px solid #000;
    border-radius: 4px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .85);
    text-decoration: none;
    letter-spacing: .04em;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.sponsor-section .sponsor-btn i { color: var(--foil); margin-left: 6px; }
.sponsor-section .sponsor-btn:hover {
    background: #f4f4f4;
    color: #111;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .85);
}

@media (max-width: 700px) {
    .sponsor-section .sponsor-btn { padding: 16px 30px; font-size: 1rem; }
}
