@charset "UTF-8";

:root {
    --primary-color: #C4506A;
    --primary-dark: #A33D57;
    --gold-accent: #E89570;
    --gold-shiny: #C97850;
    --gold-light: #F5D0BC;
    --bg-color: #FFFFFF;
    --light-bg: #FFF5F7;
    --cream-bg: rgba(255, 252, 250, 0.97);
    --text-color: #2C2C2C;
    --gray-text: #555555;
    --font-family: 'Noto Serif JP', serif;
    --script-font: 'Pinyon Script', cursive;
    --logo-font: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 2.2;
    letter-spacing: 0.08em;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ============================================
   ローディング画面
   ============================================ */
#loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #2a1018 0%, #3d1828 40%, #2a1018 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loading-logo {
    font-family: var(--logo-font);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--gold-accent);
    opacity: 0;
    transform: translateY(20px);
    animation: loadingLogoIn 0.8s var(--transition-smooth) 0.2s forwards;
    letter-spacing: 0.05em;
    text-shadow: 0 0 40px rgba(197, 168, 128, 0.4);
}

.loading-tagline {
    font-family: var(--font-family);
    font-size: 0.85rem;
    color: rgba(197, 168, 128, 0.7);
    letter-spacing: 0.3em;
    margin-top: 15px;
    opacity: 0;
    animation: loadingLogoIn 0.8s var(--transition-smooth) 0.6s forwards;
}

.loading-bar-wrap {
    width: 200px;
    height: 1px;
    background: rgba(197, 168, 128, 0.2);
    margin: 40px auto 0;
    overflow: hidden;
    opacity: 0;
    animation: loadingLogoIn 0.5s ease 0.8s forwards;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    animation: loadingBarFill 1.2s ease 1s forwards;
}

.loading-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.loading-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 39, 59, 0.3), transparent);
    top: -100px;
    right: -100px;
    animation: orbFloat 4s ease-in-out infinite;
}

.loading-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.2), transparent);
    bottom: -50px;
    left: -50px;
    animation: orbFloat 5s ease-in-out 1s infinite reverse;
}

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

@keyframes loadingBarFill {
    to { width: 100%; }
}

/* ============================================
   スクロール進捗バー
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.5);
}

/* ============================================
   ナビゲーション
   ============================================ */
header.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(197, 168, 128, 0.15);
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s var(--transition-smooth),
                box-shadow 0.4s ease,
                background 0.4s ease;
}

header.nav-bar.scrolled {
    padding: 12px 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
    opacity: 0.85;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    /* SVGが白色設計のため、ブランドカラー（ローズ）に変換 */
    filter: brightness(0) saturate(100%) invert(35%) sepia(40%) saturate(600%) hue-rotate(305deg) brightness(90%);
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(800%) hue-rotate(305deg) brightness(80%);
}

.logo-name {
    font-family: var(--logo-font);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.15em;
    margin-left: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.92rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent));
    transition: width 0.35s var(--transition-smooth);
}

.nav-links a:hover { color: var(--primary-color); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-family: var(--font-family);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: white;
    background: var(--primary-color);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gold-accent);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 39, 59, 0.25);
}

/* ============================================
   スティッキーCTA
   ============================================ */
.sticky-cta-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: 1px solid var(--gold-accent);
    box-shadow: 0 10px 30px rgba(140, 39, 59, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 800;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.6s var(--transition-smooth),
                opacity 0.6s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.sticky-cta-btn.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 40px rgba(140, 39, 59, 0.4);
    transform: translateY(-3px);
}

.sticky-cta-btn.visible:hover {
    transform: translateY(-3px);
}

.sticky-cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sticky-cta-btn:hover .sticky-cta-arrow {
    transform: translateX(4px);
}

/* ============================================
   共通・コンテナ
   ============================================ */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* カード・ビジュアル系：余裕のある横幅 */
.container-wide {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* テキスト系：読みやすい幅 */
.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 150px 0;
    position: relative;
}

/* #contents 内の各要素を個別に幅制御 */
#contents > h2,
#contents > .concept-box,
#contents > .content-note-box,
#contents > .roadmap-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

#contents > .content-grid-8 {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* 見出し */
h2 {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.h2-en {
    font-family: var(--script-font);
    font-size: 2.8rem;
    color: var(--gold-accent);
    display: block;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.1em;
}

.h2-jp {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.15em;
}

.mizuhiki-line {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
}

.mizuhiki-line::before,
.mizuhiki-line::after {
    content: '';
    height: 1px;
    width: 0;
    background: linear-gradient(to right, transparent, var(--gold-accent), transparent);
    margin: 0 20px;
    transition: width 1.2s var(--transition-smooth);
}

.mizuhiki-line.animate::before,
.mizuhiki-line.animate::after {
    width: 80px;
}

.knot {
    width: 24px;
    height: 12px;
    border: 1px solid var(--primary-color);
    border-radius: 50% 50% 0 0;
    position: relative;
}

.knot::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
}

/* ============================================
   ボタン
   ============================================ */
.btn {
    display: inline-block;
    padding: 20px 60px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(140, 39, 59, 0.25);
    border: 1px solid var(--gold-accent);
    position: relative;
    overflow: hidden;
}

.btn-inner {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.btn:hover .btn-glow { opacity: 1; }

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 70%
    );
    transition: left 0.55s ease;
    z-index: 1;
}

.btn:hover::before { left: 100%; }

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(140, 39, 59, 0.35);
    background: var(--primary-dark);
}

.btn .ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.65s ease-out forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes rippleEffect {
    to { transform: scale(4.5); opacity: 0; }
}

.btn-hero {
    padding: 22px 70px;
    font-size: 1.15rem;
}

.btn-cta {
    font-size: 1.2rem;
    padding: 24px 80px;
}

.btn-plan {
    margin-top: auto;
    padding: 14px 30px;
    font-size: 0.95rem;
    display: block;
    text-align: center;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(140, 39, 59, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-text-link:hover {
    border-bottom-color: var(--primary-color);
    gap: 14px;
}

.link-arrow {
    transition: transform 0.3s ease;
}

.btn-text-link:hover .link-arrow {
    transform: translateX(4px);
}

/* ============================================
   カスタムカーソル
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.3s ease, width 0.25s ease, height 0.25s ease;
    mix-blend-mode: normal;
    opacity: 0;
}

.custom-cursor.visible { opacity: 1; }

.cursor-aura {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.35s ease, height 0.35s ease,
                border-color 0.35s ease, opacity 0.3s ease;
}

.cursor-aura.visible { opacity: 0.55; }

.custom-cursor.hover {
    width: 0px;
    height: 0px;
    background: transparent;
}

.cursor-aura.hover {
    width: 70px;
    height: 70px;
    border-color: var(--primary-color);
    opacity: 0.25;
}

/* カーソルテキスト */
.cursor-text {
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    font-family: var(--font-family);
    font-size: 0.65rem;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.cursor-text.show { opacity: 1; }

@media (hover: none) and (pointer: coarse) {
    .custom-cursor, .cursor-aura, .cursor-text { display: none !important; }
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 30% 50%, #3d1028 0%, #1a0810 40%, #0e0608 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(196,80,106,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(232,149,112,0.12) 0%, transparent 50%),
        linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(10,3,6,0.4) 100%);
    z-index: 0;
}

/* ヒーロー背景オーブ */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140,39,59,0.25) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197,168,128,0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 10s ease-in-out 2s infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140,39,59,0.15) 0%, transparent 70%);
    top: 40%;
    left: 10%;
    animation: orbFloat 12s ease-in-out 4s infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-30px) scale(1.05); }
    66% { transform: translateY(20px) scale(0.95); }
}

/* ヒーローパーティクルキャンバス */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ヒーローボックス */
.hero-box {
    position: relative;
    z-index: 1;
    background-color: var(--cream-bg);
    padding: 80px 70px;
    text-align: center;
    max-width: 900px;
    border: 1.5px solid var(--gold-accent);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(197,168,128,0.1) inset;
    backdrop-filter: blur(4px);
}

/* ヒーロー装飾コーナー */
.hero-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--gold-accent);
    border-style: solid;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-corner-tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.hero-corner-tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.hero-corner-bl { bottom: 10px; left: 10px; border-width: 0 0 1px 1px; }
.hero-corner-br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

.hero-box:hover .hero-corner { opacity: 1; }

.hero-label {
    display: inline-block;
    font-family: var(--font-family);
    color: var(--gold-shiny);
    font-size: 0.88rem;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
}

.hero-box.animate .hero-label {
    animation: fadeInUp 1s var(--transition-smooth) 0.2s forwards;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(25px);
}

.hero-box.animate .hero-title {
    animation: fadeInUp 1s var(--transition-smooth) 0.5s forwards;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 28px auto;
    opacity: 0;
}

.hero-box.animate .hero-divider {
    animation: fadeIn 0.8s ease 0.9s forwards;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-accent));
    transition: width 0.8s var(--transition-smooth);
}

.hero-divider::after {
    background: linear-gradient(to left, transparent, var(--gold-accent));
}

.hero-box.animate .hero-divider::before,
.hero-box.animate .hero-divider::after {
    width: 50px;
}

.divider-gem {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    transform: rotate(45deg);
    animation: gemPulse 2s ease-in-out infinite;
}

@keyframes gemPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,168,128,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(197,168,128,0); }
}

.hero-subtitle {
    font-size: 1.08rem;
    line-height: 2;
    margin-bottom: 40px;
    font-weight: 400;
    color: #3a3a3a;
    opacity: 0;
    transform: translateY(20px);
}

.hero-box.animate .hero-subtitle {
    animation: fadeInUp 1s var(--transition-smooth) 1.1s forwards;
}

.hero-box.animate .btn-hero {
    animation: fadeInUp 1s var(--transition-smooth) 1.4s forwards;
}

.btn-hero {
    opacity: 0;
    transform: translateY(20px);
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(10px); opacity: 0; }
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-family);
}

/* ============================================
   実績セクション
   ============================================ */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #fdf8f5 0%, #fff7f8 50%, #fdf8f5 100%);
    border-top: 1px solid rgba(197,168,128,0.15);
    border-bottom: 1px solid rgba(197,168,128,0.15);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px 60px;
    flex: 1;
    max-width: 280px;
}

.stat-number {
    font-family: var(--script-font);
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1;
    display: inline;
}

.stat-unit {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--primary-color);
    display: inline;
    font-weight: 500;
    vertical-align: bottom;
    line-height: 3;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-text);
    letter-spacing: 0.1em;
    margin-top: 8px;
    line-height: 1.6;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-accent), transparent);
    flex-shrink: 0;
}

/* ============================================
   スクロールアニメーション
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.9s var(--transition-smooth),
                transform 0.9s var(--transition-smooth);
}

.reveal.from-left { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.scale-in { transform: scale(0.92) translateY(15px); }

.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   アニメーション キーフレーム
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================
   悩み・共感セクション
   ============================================ */
.bg-light {
    background: linear-gradient(180deg, #fff7f8 0%, #fffcfd 100%);
}

.worries-list {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px 80px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03),
                0 0 0 1px rgba(197,168,128,0.08) inset;
}

.worries-list ul { list-style: none; }

.worries-list li {
    font-size: 1.08rem;
    color: var(--text-color);
    margin-bottom: 22px;
    padding-left: 38px;
    position: relative;
    line-height: 1.8;
    transition: transform 0.3s ease;
}

.worries-list li:hover { transform: translateX(6px); }

.worries-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.8;
}

.worries-list li:last-child { margin-bottom: 0; }

/* ============================================
   コンセプトボックス
   ============================================ */
.concept-box {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
    border-top: 1px solid rgba(197,168,128,0.5);
    border-bottom: 1px solid rgba(197,168,128,0.5);
    padding: 70px 40px;
    position: relative;
    background: linear-gradient(180deg, rgba(255,247,248,0.4) 0%, transparent 100%);
}

.concept-icon {
    font-size: 1.5rem;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 25px;
    animation: gemPulse 3s ease-in-out infinite;
}

.concept-box h3 {
    font-size: 1.55rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.7;
}

.concept-box p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 22px;
    line-height: 2;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
    margin-top: 30px;
    letter-spacing: 0.05em;
}

/* ============================================
   コンテンツカード
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.content-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #fff;
    padding: 36px 36px 36px 0;
    border: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.18);
    position: relative;
    text-align: left;
    transition: background 0.3s ease;
}

.content-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--gold-accent));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.content-card:hover {
    background: rgba(197, 168, 128, 0.03);
}

.content-card:hover::before {
    opacity: 1;
}

.card-number {
    font-family: var(--logo-font);
    color: rgba(197, 168, 128, 0.22);
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    text-align: right;
    padding-top: 2px;
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}

.content-card:hover .card-number {
    color: rgba(197, 168, 128, 0.45);
}

.card-body {
    flex: 1;
    padding-top: 4px;
}

.content-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.card-note {
    font-size: 0.82rem;
    color: var(--gold-accent);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
    opacity: 0.85;
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(197, 168, 128, 0.18);
    padding-top: 14px;
}

.content-card ul li {
    font-size: 0.87rem;
    color: var(--gray-text);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.65;
}

.content-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(197, 168, 128, 0.5);
    font-size: 0.75rem;
    top: 2px;
}

/* ============================================
   ロードマップ
   ============================================ */
.roadmap-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.15);
    margin-top: 50px;
}

.roadmap-img { flex: 1; }

.img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s var(--transition-smooth);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(140,39,59,0.1), transparent);
    pointer-events: none;
}

.roadmap-img:hover img { transform: scale(1.04); }

.roadmap-text { flex: 1.2; }

.roadmap-badge {
    display: inline-block;
    font-family: var(--script-font);
    font-size: 1.1rem;
    color: var(--gold-shiny);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(197,168,128,0.4);
}

.roadmap-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 22px;
    font-weight: 500;
    line-height: 1.6;
}

.roadmap-text p {
    color: var(--gray-text);
    margin-bottom: 16px;
    font-size: 0.97rem;
    line-height: 1.9;
}

/* ============================================
   プランカード
   ============================================ */
.plan-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
    padding-top: 20px; /* バッジのはみ出し分を確保 */
}

.plan-card {
    background: white;
    border: 1px solid rgba(197, 168, 128, 0.25);
    padding: 50px 24px 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.4s var(--transition-smooth),
                box-shadow 0.4s var(--transition-smooth);
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(140, 39, 59, 0.1);
}

.plan-tier-label {
    font-family: var(--script-font);
    font-size: 1.3rem;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}

.plan-price-wrap {
    margin-bottom: 5px;
}

.plan-price {
    font-weight: bold;
    font-size: 1.6rem;
    color: var(--primary-color);
    line-height: 1.2;
    display: block;
}

.plan-price-unit {
    font-size: 0.85rem;
    font-weight: normal;
}

.plan-tax {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.plan-desc {
    color: var(--gray-text);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(197,168,128,0.2);
}

.plan-card ul {
    text-align: left;
    list-style: none;
    margin-bottom: auto;
}

.plan-card ul li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.6;
}

.plan-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold-accent);
    font-size: 0.75rem;
}

.plan-note {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-top: 15px;
    line-height: 1.6;
}

/* ゴールドプレミアム */
.plan-card.premium {
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(140, 39, 59, 0.15);
    transform: scale(1.04);
    z-index: 1;
    padding: 60px 28px 40px;
    overflow: visible; /* バッジが上にはみ出せるように */
}

.plan-card.premium:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 30px 80px rgba(140, 39, 59, 0.2);
}

.plan-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(197,168,128,0.06),
        transparent
    );
    animation: planShine 4s ease-in-out infinite;
    pointer-events: none;
    /* overflow: visible の親でもはみ出さないようにクリップ */
    clip-path: inset(0);
}

@keyframes planShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.premium-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 7px 22px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 30px;
    white-space: nowrap;
    letter-spacing: 0.08em;
    box-shadow: 0 5px 20px rgba(140, 39, 59, 0.3);
    border: 1px solid rgba(197,168,128,0.4);
}

.gold-label { color: var(--gold-shiny); }

.gold-name {
    color: var(--primary-color);
    font-size: 1.7rem;
}

.gold-price {
    font-size: 1.8rem;
}

/* ============================================
   FAQ — アコーディオン式
   ============================================ */
.faq-section {
    max-width: 860px;
}

.faq-list {
    counter-reset: faq-counter;
    border-top: 1px solid rgba(197, 168, 128, 0.25);
}

.faq-item {
    counter-increment: faq-counter;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 247, 248, 0.55);
    transform: none;
    box-shadow: none;
    border-color: rgba(197, 168, 128, 0.2);
}

.faq-item.faq-open {
    background: white;
}

/* Q 行 */
.faq-q {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 20px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.02rem;
    line-height: 1.65;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.faq-item.faq-open .faq-q {
    color: var(--primary-color);
}

/* 番号（01, 02…） */
.faq-q::before {
    content: counter(faq-counter, decimal-leading-zero);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.5;
    flex-shrink: 0;
    min-width: 22px;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
    line-height: 1.65;
}

/* ＋ / × トグルアイコン（JSで生成） */
.faq-toggle-icon {
    margin-left: auto;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(197, 168, 128, 0.4);
    color: var(--gold-accent);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.4s var(--transition-smooth),
                background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
}

.faq-item.faq-open .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* 回答の高さアニメーション用ラッパー（JSで生成） */
.faq-a-wrap {
    height: 0;
    overflow: hidden;
    transition: height 0.45s var(--transition-smooth);
}

/* A 本文 */
.faq-a {
    display: block;
    color: var(--gray-text);
    line-height: 1.95;
    font-size: 0.96rem;
    padding: 0 20px 28px 40px;
    border-left: 2px solid var(--gold-light);
    margin: 0 20px 20px 40px;
}

.faq-a::before {
    content: none;
}

/* ============================================
   CTAセクション
   ============================================ */
.cta-section {
    background: linear-gradient(145deg, #fdf0f3 0%, #fff7f9 45%, #f5e0e6 100%);
    text-align: center;
    padding: 160px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.97) 0%,
        rgba(255,240,243,0.95) 50%,
        rgba(140,39,59,0.9) 100%
    );
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197,168,128,0.2), transparent);
    top: -100px;
    right: -100px;
    animation: orbFloat 10s ease-in-out infinite;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140,39,59,0.15), transparent);
    bottom: -80px;
    left: -80px;
    animation: orbFloat 8s ease-in-out 3s infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.96);
    padding: 80px 60px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(197,168,128,0.1) inset;
    border: 1.5px solid var(--gold-accent);
    backdrop-filter: blur(8px);
}

.cta-en {
    color: var(--gold-shiny) !important;
}

.cta-lead {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 2;
    margin: 0 0 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-text);
    letter-spacing: 0.05em;
}

.cta-feature-icon {
    color: var(--gold-accent);
    font-size: 0.7rem;
}

.cta-sub {
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--gray-text);
    letter-spacing: 0.08em;
}

/* ============================================
   お問い合わせフォーム（ライトボックス内）
   ============================================ */
.contact-form {
    width: 100%;
    margin: 32px auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.82rem;
    color: var(--gray-text);
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-req {
    font-size: 0.72rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}

.form-opt {
    font-size: 0.72rem;
    background: #eee;
    color: #888;
    padding: 1px 6px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
    background: #fafafa;
    border: 1.5px solid #e0d0d5;
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 0.93rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(196,80,106,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit-btn {
    margin-top: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 17px 40px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(196,80,106,0.4);
}

.form-submit-arrow { font-size: 1rem; }

/* チェックボックスグループ（ライト） */
.check-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: #555;
    letter-spacing: 0.04em;
    padding: 10px 14px;
    border: 1.5px solid #e0d0d5;
    border-radius: 8px;
    background: #fafafa;
    transition: background 0.2s, border-color 0.2s;
    user-select: none;
}
.check-item:hover { background: #fff5f7; border-color: #C4506A; }
.check-item input[type=checkbox] { display: none; }
.check-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}
.check-item.checked { background: #fff0f3; border-color: #C4506A; color: #C4506A; }
.check-item.checked .check-box { background: #C4506A; border-color: #C4506A; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: #aaa;
    letter-spacing: 0.06em;
    line-height: 1.8;
    margin-top: -6px;
}

/* ── LINEセクション ── */
.cta-line-wrap {
    width: 100%;
    margin: 0 auto;
}

.cta-line-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 44px 0 32px;
    color: #bbb;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.cta-line-divider::before,
.cta-line-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(197,168,128,0.3);
}

.cta-line-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.line-qr {
    width: 108px;
    height: 108px;
    border-radius: 10px;
    border: 2px solid #e8d8de;
}

.cta-line-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.line-caption {
    font-size: 0.83rem;
    color: var(--gray-text);
    letter-spacing: 0.06em;
    line-height: 1.9;
    text-align: left;
}

.cta-line-text img { border-radius: 4px; }

@media (max-width: 560px) {
    .form-row-half { grid-template-columns: 1fr; }
    .cta-line-inner { flex-direction: column; align-items: center; }
    .cta-line-text { align-items: center; text-align: center; }
    .line-caption { text-align: center; }
}

/* ============================================
   マイクロコンバージョン バナー (LINE診断)
   ============================================ */
.micro-cv-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1.5px solid rgba(197, 168, 128, 0.4);
    border-radius: 4px;
    padding: 18px 28px;
    margin: 0 auto 8px;
    max-width: 560px;
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.micro-cv-banner:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 8px 30px rgba(197, 168, 128, 0.2);
    transform: translateY(-2px);
}

.micro-cv-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.micro-cv-text {
    flex: 1;
    font-size: 0.88rem;
    color: var(--primary-color);
    line-height: 1.6;
}

.micro-cv-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--primary-color);
}

.micro-cv-arrow {
    flex-shrink: 0;
    color: var(--gold-accent);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.micro-cv-banner:hover .micro-cv-arrow {
    transform: translateX(4px);
}

.cta-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px auto;
    max-width: 320px;
    color: var(--gray-text);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(197, 168, 128, 0.3);
}

/* ============================================
   MEO対応 エリアセクション
   ============================================ */
.area-section {
    padding: 50px 0;
}

.area-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: linear-gradient(135deg, rgba(197,168,128,0.06) 0%, rgba(196,80,106,0.04) 100%);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 40px 48px;
}

.area-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
    opacity: 0.6;
}

.area-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.area-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    line-height: 1.5;
}

.area-text p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.9;
}

.area-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 640px) {
    .area-inner { flex-direction: column; gap: 16px; padding: 30px 24px; }
    .micro-cv-banner { padding: 16px 20px; }
}

/* ============================================
   桜パーティクル
   ============================================ */
.petal {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

@keyframes petalFall {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(0deg) scale(0.8);
    }
    10% { opacity: 0.65; }
    90% { opacity: 0.4; }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(380deg) scale(0.5);
    }
}

/* ============================================
   磁力ボタン
   ============================================ */
.magnetic-btn {
    will-change: transform;
    transition: transform 0.3s var(--transition-smooth),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

/* ============================================
   8コンテンツグリッド（横並び2列）
   ============================================ */
.content-grid-8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    margin-top: 60px;
    border-top: 1px solid rgba(197, 168, 128, 0.18);
    padding-left: 0;
}

@media (max-width: 860px) {
    .content-grid-8 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .content-card { padding: 28px 20px 28px 0; gap: 16px; }
    .card-number { font-size: 3rem; width: 56px; }
}

/* コンテンツ補足ボックス */
.content-note-box {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(196,80,106,0.06) 0%, rgba(232,149,112,0.06) 100%);
    border: 1px solid rgba(196,80,106,0.2);
    padding: 50px 40px;
    text-align: center;
}

.content-note-lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.content-note-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.note-tag {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.tag-yes {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(196,80,106,0.25);
}

.tag-now {
    background: var(--gold-accent);
    color: white;
    box-shadow: 0 6px 20px rgba(232,149,112,0.25);
}

.tag-skip {
    background: white;
    color: var(--gray-text);
    border: 1px solid rgba(196,80,106,0.2);
}

.content-note-sub {
    font-size: 1.05rem;
    color: var(--gray-text);
    letter-spacing: 0.08em;
}

/* ============================================
   他社との違いセクション
   ============================================ */
.difference-section {
    background: white;
    padding: 150px 0;
}

.diff-lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 2;
    margin-bottom: 60px;
}

.diff-lead strong {
    color: var(--primary-color);
}

.diff-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.diff-col {
    padding: 45px 35px;
    border-radius: 4px;
}

.diff-bad {
    background: #fafafa;
    border: 1px solid #e0e0e0;
}

.diff-good {
    background: linear-gradient(135deg, rgba(196,80,106,0.04) 0%, rgba(232,149,112,0.04) 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(196,80,106,0.1);
}

.diff-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.diff-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.diff-icon-bad {
    background: #f0f0f0;
    color: #999;
}

.diff-icon-good {
    background: var(--primary-color);
    color: white;
}

.diff-col-header h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.diff-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.diff-col ul li {
    font-size: 0.95rem;
    padding: 10px 0 10px 22px;
    position: relative;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    line-height: 1.7;
    color: var(--gray-text);
}

.diff-bad ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #bbb;
}

.diff-good ul li {
    color: var(--text-color);
}

.diff-good ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.diff-result {
    font-size: 0.88rem;
    padding: 12px 16px;
    border-radius: 4px;
    line-height: 1.6;
    margin-top: 8px;
}

.diff-result-bad {
    background: #f5f5f5;
    color: #888;
}

.diff-result-good {
    background: rgba(196,80,106,0.08);
    color: var(--primary-color);
    font-weight: 500;
}

.diff-vs {
    font-family: var(--script-font);
    font-size: 2rem;
    color: var(--gold-accent);
    text-align: center;
    flex-shrink: 0;
}

/* 判断力ボックス */
.diff-judgment {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.diff-judgment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.diff-judgment-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.diff-judgment-label {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-bottom: 10px;
}

.diff-judgment-title {
    font-family: var(--script-font);
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 25px;
    line-height: 1;
}

.diff-judgment p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.9;
    margin-bottom: 25px;
}

.diff-judgment-points {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.diff-judgment-points span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.diff-judgment-cta {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold-accent);
    letter-spacing: 0.08em;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .diff-compare {
        grid-template-columns: 1fr;
    }
    .diff-vs {
        text-align: center;
        padding: 10px 0;
    }
}

/* ============================================
   なぜこの価格なのかセクション — 再設計
   ============================================ */
.why-price-section {
    padding: 150px 0;
}

/* ── NG vs YES コントラストレイアウト ── */
.why-contrast {
    display: grid;
    grid-template-columns: 1fr 48px 1.8fr;
    gap: 0;
    align-items: stretch;
    margin-top: 70px;
    margin-bottom: 80px;
}

/* NG側：控えめ・打ち消し線 */
.why-ng {
    padding: 40px 30px;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.why-ng-label {
    font-size: 0.72rem;
    color: #bbb;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-ng ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.why-ng ul li {
    font-size: 0.9rem;
    color: #bbb;
    padding: 8px 0;
    border-bottom: 1px solid #ebebeb;
    text-decoration: line-through;
    text-decoration-color: rgba(200,0,0,0.25);
    letter-spacing: 0.03em;
}

.why-ng-result {
    font-size: 0.8rem;
    color: #ccc;
    letter-spacing: 0.05em;
}

/* 中央区切り */
.why-contrast-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
}

.why-contrast-sep::before,
.why-contrast-sep::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(197,168,128,0.4), transparent);
    height: 40%;
}

.why-contrast-sep::before { top: 0; }
.why-contrast-sep::after  { bottom: 0; }

.why-contrast-vs {
    font-family: var(--script-font);
    font-size: 1.3rem;
    color: var(--gold-accent);
    position: relative;
    z-index: 1;
}

/* YES側：主役・大きく */
.why-yes {
    padding: 55px 50px;
    background: white;
    border-left: 3px solid var(--primary-color);
    box-shadow: 8px 0 40px rgba(196,80,106,0.06),
                -2px 0 0 rgba(196,80,106,0.08);
    position: relative;
    overflow: hidden;
}

.why-yes::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(196,80,106,0.06), transparent 70%);
    pointer-events: none;
}

.why-yes-eyebrow {
    font-family: var(--script-font);
    font-size: 1.1rem;
    color: var(--gold-shiny);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.why-yes h3 {
    font-size: 1.55rem;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 30px;
    letter-spacing: 0.03em;
}

.why-yes ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.why-yes ul li {
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 11px 0 11px 24px;
    position: relative;
    border-bottom: 1px dashed rgba(196,80,106,0.12);
    line-height: 1.6;
}

.why-yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.why-yes-closing {
    font-size: 0.92rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

/* ── コストの可視化：タイムライン ── */
.why-cost {
    background: linear-gradient(135deg, #1e1218 0%, #2c1820 60%, #1e1218 100%);
    color: white;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 70px;
}

.why-cost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.why-cost-lead {
    font-size: 1.15rem;
    line-height: 2;
    opacity: 0.85;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.why-cost-lead strong {
    color: var(--gold-accent);
    opacity: 1;
}

/* タイムラインパス */
.why-cost-path {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.why-cost-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.why-cost-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.4);
    transition: transform 0.3s ease;
}

.why-cost-step-end .why-cost-dot {
    width: 16px;
    height: 16px;
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    box-shadow: 0 0 18px rgba(232,149,112,0.5);
}

.why-cost-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.why-cost-step-end .why-cost-text {
    color: var(--gold-accent);
    font-weight: 500;
    opacity: 1;
}

.why-cost-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(232,149,112,0.5));
    max-width: 140px;
    margin-top: 5px; /* ドットの中央に合わせる */
    align-self: flex-start;
    margin-top: 6px;
}

.why-cost-conclusion {
    font-size: 1.1rem;
    color: var(--gold-accent);
    font-weight: 500;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

/* ── 対象者：番号スタイル ── */
.why-for {
    text-align: center;
    padding: 20px 0 40px;
}

.why-for-pre {
    font-size: 1rem;
    color: var(--gray-text);
    letter-spacing: 0.06em;
    margin-bottom: 50px;
}

.why-for-people {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.why-for-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 50px;
}

.why-for-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(197,168,128,0.4), transparent);
    flex-shrink: 0;
}

.why-for-num {
    font-family: var(--script-font);
    font-size: 2.5rem;
    color: var(--gold-accent);
    line-height: 1;
    opacity: 0.7;
}

.why-for-text {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.why-for-post {
    font-size: 1rem;
    color: var(--gray-text);
    letter-spacing: 0.06em;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .why-contrast {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .why-contrast-sep {
        height: 40px;
        flex-direction: row;
    }
    .why-contrast-sep::before,
    .why-contrast-sep::after {
        top: 50%;
        left: 0;
        width: 40%;
        height: 1px;
        transform: none;
    }
    .why-contrast-sep::after { left: auto; right: 0; }
    .why-yes { border-left: none; border-top: 3px solid var(--primary-color); }
    .why-for-person { padding: 0 25px; }
}

@media (max-width: 600px) {
    .why-cost-path { flex-direction: column; align-items: center; gap: 10px; }
    .why-cost-line { width: 1px; height: 30px; max-width: none; margin: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(232,149,112,0.5)); }
    .why-for-people { flex-direction: column; gap: 25px; }
    .why-for-divider { width: 60px; height: 1px; }
    .why-for-person { padding: 0; }
    .why-for-text { white-space: normal; text-align: center; }
}

/* ============================================
   フッター
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--light-bg) 0%, #fff4f5 100%);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    padding: 36px 60px 24px;
}

/* ── メインロー：ロゴ左・ナビ右 ── */
.footer-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

/* ロゴ＋サービス名 */
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(35%) sepia(40%) saturate(600%) hue-rotate(305deg) brightness(90%);
    opacity: 0.85;
}

.footer-service-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.06em;
}

/* ナビ */
.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.88rem;
    transition: color 0.25s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.25s ease;
}

.footer-nav a:hover { color: var(--primary-color); }
.footer-nav a:hover::after { width: 100%; }

.footer-nav-divider {
    display: inline-block;
    width: 1px;
    height: 13px;
    background: rgba(197, 168, 128, 0.4);
}

/* コピーライト */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 20px;
}

.copyright {
    color: var(--gray-text);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
}

/* ============================================
   セクション斜めカット区切り
   ============================================ */

/* 統計セクション → 下を斜めに */
.stats-section {
    position: relative;
    padding-bottom: 120px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    margin-bottom: -40px;
    z-index: 1;
}

/* お悩みセクション → 上下に余裕 */
#worries {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin-bottom: -30px;
    z-index: 0;
}

/* なぜこの価格 → 軽い斜め */
.why-price-section {
    position: relative;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    padding-top: 170px;
    padding-bottom: 170px;
    margin-bottom: -30px;
    z-index: 0;
}

/* 違いセクション → 平行四辺形ふう */
.difference-section {
    background: white;
    padding: 170px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    margin-bottom: -30px;
}

/* FAQセクション → 余白大きめ + 上の斜め調整 */
.faq-section {
    padding-top: 30px;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; gap: 25px; }
    .plan-wrap { grid-template-columns: 1fr 1fr; }
    .plan-card.premium { transform: scale(1); }
    .plan-card.premium:hover { transform: translateY(-10px); }
    .stats-grid { flex-direction: column; gap: 30px; }
    .stat-divider { width: 60px; height: 1px; }
    .roadmap-container { flex-direction: column; gap: 40px; }
}

/* ============================================
   ハンバーガーメニュー
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー本体（デスクトップでは完全非表示） */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    z-index: 1050;
    padding: 90px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    visibility: hidden;
}
.mobile-menu.open {
    right: 0;
    visibility: visible;
}
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}
.mobile-nav-links li {
    border-bottom: 1px solid rgba(197,168,128,0.2);
}
.mobile-nav-links a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}
.mobile-nav-cta {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity 0.2s;
}
.mobile-nav-cta:hover { opacity: 0.85; }

/* オーバーレイ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .plan-wrap { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    /* mobile-menu / overlayはvisibilityで制御するためdisplay変更不要 */

    header.nav-bar { padding: 14px 20px; }
    .logo-img { height: 36px; }
    .logo-name { font-size: 1.2rem; }

    section { padding: 80px 0; }

    .hero-box { padding: 50px 20px; }
    .hero-title { font-size: clamp(1.5rem, 5vw, 1.9rem); }
    .hero-subtitle { font-size: 0.92rem; }

    .h2-jp { font-size: 1.45rem; }
    .h2-en { font-size: 1.8rem; }

    .worries-list { padding: 40px 20px; }
    .concept-box { padding: 40px 20px; }
    .roadmap-container { padding: 32px 20px; }
    .cta-content { padding: 40px 20px; }
    .cta-features { gap: 20px; flex-direction: column; align-items: center; }

    .sticky-cta-btn { bottom: 15px; right: 15px; padding: 14px 22px; font-size: 0.82rem; }
    .sticky-cta-text { display: none; }

    .custom-cursor, .cursor-aura, .cursor-text { display: none !important; }

    /* テキスト途切れ防止 */
    * { word-break: break-word; overflow-wrap: break-word; }
    img { max-width: 100%; height: auto; }
}
