/* =============================================
   Family Partners - Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #1B3A5C;
    --color-primary-light: #2C5F8A;
    --color-primary-dark: #0F2440;
    --color-accent: #D4AF37;
    --color-accent-light: #E2C564;
    --color-bg: #F8F7F5;
    --color-bg-alt: #F0EDE8;
    --color-text: #2D3436;
    --color-text-light: #636E72;
    --color-white: #FFFFFF;
    --color-line: #06C755;

    --font-body: 'Noto Sans JP', sans-serif;
    --font-heading: 'FOT-TsukuAOldMin Pr6N', '游明朝体', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'Zen Old Mincho', serif;
    --font-en: 'Outfit', sans-serif;
    --font-hand: 'Zen Kurenaido', 'Klee One', cursive;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 17px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 66px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.25rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    padding: 0.9rem 2rem !important;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-accent-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 1rem 2.3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-line {
    background: var(--color-line);
    color: var(--color-white);
}

.btn-line:hover {
    background: #05b04a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- HERO ---------- */
/* --- Hero: カーテン動画背景 × 人物切り抜き × テキストの3レイヤー構成 --- */
.hero {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 70px;
    isolation: isolate;
    background: #F4EFE6;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 22% center;
    z-index: -2;
}

/* 人物側（左40%）には一切かけず、テキスト側だけ淡くする */
.hero-veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to left,
            rgba(250, 249, 246, 0.98) 0%,
            rgba(250, 249, 246, 0.92) 30%,
            rgba(250, 249, 246, 0.55) 55%,
            rgba(250, 249, 246, 0) 70%,
            rgba(250, 249, 246, 0) 100%);
}

/* スマホ専用の縦動画（PCでは非表示） */
.hero-video-sp {
    display: none;
}

.hero-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 旧構成の名残（未使用） */
.hero-photo,
.hero-person {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 52%;
    align-self: center;
    padding: 1.6rem 0 5rem;
    text-align: left;
}

.hero-handnote {
    font-family: var(--font-hand);
    font-weight: 600;
    font-size: clamp(1.25rem, 1.9vw, 1.6rem);
    letter-spacing: 0.08em;
    color: #14304F;
    margin-bottom: 1.1rem;
}

.hero-handnote::after {
    content: '';
    display: block;
    width: 200px;
    height: 2px;
    margin-top: 0.55rem;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

.sp-only { display: none; }
.pc-only { display: inline; }

.hero-title {
    font-family: var(--font-heading);
    font-synthesis: none;
    font-size: clamp(2.8rem, 4.7vw, 4.1rem);
    font-weight: 400;
    color: #122B48;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    letter-spacing: 0.06em;
    font-feature-settings: "palt";
    white-space: nowrap;
}

.hero-title-hand {
    font-family: 'Zen Old Mincho', 'Shippori Mincho', 'Yu Mincho', serif;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.hero-title em {
    font-style: normal;
}

.hero-title::before {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--color-accent);
    margin-bottom: 1.4rem;
}

.hero-sublink {
    font-size: 0.95rem;
    font-weight: 600;
    color: #14304F;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(20, 48, 79, 0.4);
    padding-bottom: 2px;
    transition: var(--transition);
}

.hero-sublink:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ヒーロー要素のロード時アニメーション */
.hero-content > * {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-content > *:nth-child(4) { animation-delay: 0.6s; }
.hero-content > *:nth-child(5) { animation-delay: 0.75s; }

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

/* ヒーロー実績チップ */
.hero-stats {
    display: flex;
    gap: 1.75rem;
    margin: 1.1rem 0 1.3rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--color-accent);
    padding-left: 0.9rem;
}

.hero-stat-num {
    font-family: var(--font-en);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.3;
}

.hero-stat-num small {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1px;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--color-text-light);
    letter-spacing: 0.06em;
}

.hero-description {
    font-size: 1.02rem;
    color: #3f4a52;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero-expert-name {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

.expert-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #14304F;
    letter-spacing: 0.16em;
}

.expert-sign {
    font-family: 'Yuji Syuku', serif;
    font-size: 2rem;
    color: #122B48;
    line-height: 1.2;
    letter-spacing: 0.08em;
    display: inline-block;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-scroll span {
    font-family: var(--font-en);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

/* ---------- TRUST BAND（ヒーロー直下の実績帯） ---------- */
.trust-band {
    background: var(--color-primary-dark);
    padding: 1.9rem 2rem;
}

.trust-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.1rem;
}

.trust-num {
    font-family: var(--font-en);
    font-weight: 300;
    font-size: 2.2rem;
    line-height: 1.15;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-num small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 2px;
}

.trust-label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.78);
}

/* ---------- SECTIONS ---------- */
.section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.big-bg {
    position: absolute;
    left: -0.04em;
    top: 1.5rem;
    font-family: var(--font-en);
    font-weight: 200;
    font-size: clamp(5rem, 13vw, 11rem);
    line-height: 1;
    letter-spacing: 0.05em;
    color: rgba(27, 58, 92, 0.05);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.worry .big-bg,
.contact .big-bg {
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.34em;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-synthesis: none;
    font-size: clamp(2.1rem, 3.3vw, 2.9rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    color: var(--color-text);
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--color-accent);
    margin: 1.1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.04rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- WORRY（ダーク・感情セクション） ---------- */
.worry {
    position: relative;
    overflow: hidden;
    background: var(--color-primary-dark);
    isolation: isolate;
}

.worry-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.worry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 36, 64, 0.86) 0%, rgba(15, 36, 64, 0.72) 50%, rgba(15, 36, 64, 0.9) 100%);
    z-index: -1;
}

.worry .section-title {
    color: var(--color-white);
}

.worry .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.worry .section-label {
    color: var(--color-accent-light);
}

.worry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.worry-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.worry-item:hover {
    border-left-color: var(--color-accent);
    transform: translateX(4px);
}

.worry-check {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1.6;
}

.worry-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.94);
}

.worry-message {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.worry-message p {
    font-family: var(--font-heading);
    font-synthesis: none;
    font-size: 1.6rem;
    color: var(--color-white);
    line-height: 1.9;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.worry-message p strong {
    color: var(--color-accent-light);
    font-weight: 600;
}

.worry-message-sub {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.9 !important;
}

.worry-reassurance {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    max-width: 980px;
    min-height: 430px;
    margin: 0 auto;
    overflow: hidden;
    background: #f8f7f3;
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.worry-reassurance > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
}

.worry-reassurance-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.25rem;
    color: var(--color-text);
}

.editorial-kicker {
    display: block;
    margin-bottom: 1rem;
    color: #a77a24;
    font-family: var(--font-en);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.worry-reassurance-copy h3 {
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.6vw, 2.05rem);
    font-weight: 500;
    line-height: 1.75;
}

.worry-reassurance-copy p {
    margin-bottom: 1.4rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 2;
}

.worry-reassurance-copy strong {
    padding-top: 1.15rem;
    border-top: 1px solid rgba(27, 58, 92, 0.16);
    color: var(--color-primary);
    font-size: 1rem;
}

/* Worry editorial layout */
.worry {
    background: #f3f1ed;
}

.worry .big-bg {
    color: rgba(27, 58, 92, 0.045);
}

.worry-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: stretch;
}

.worry-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.worry-copy .section-header {
    margin-bottom: 2.25rem;
    text-align: left;
}

.worry-copy .section-label {
    color: #9a742c;
}

.worry-copy .section-title {
    color: var(--color-text);
    font-size: clamp(2.2rem, 3.7vw, 3.2rem);
    line-height: 1.55;
}

.worry-copy .section-title::after {
    margin-right: 0;
    margin-left: 0;
}

.worry-copy .section-subtitle {
    margin: 0;
    color: var(--color-text-light);
    line-height: 2;
}

.worry-copy .worry-grid {
    display: block;
    max-width: none;
    margin: 0;
}

.worry-copy .worry-item {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(27, 58, 92, 0.14);
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.worry-copy .worry-item:first-child {
    border-top: 1px solid rgba(27, 58, 92, 0.14);
}

.worry-copy .worry-item:hover {
    transform: none;
    border-left-color: transparent;
}

.worry-copy .worry-check {
    color: #a47b2c;
    font-family: var(--font-en);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.worry-copy .worry-item p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.75;
}

.worry-visual {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #e7e6e2;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(15, 36, 64, 0.14);
}

.worry-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
}

.worry-visual figcaption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 480px;
    padding: 2rem 2.1rem;
    background: rgba(15, 36, 64, 0.94);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.worry-visual .editorial-kicker {
    margin-bottom: 0.75rem;
    color: var(--color-accent-light);
}

.worry-visual h3 {
    margin-bottom: 0.85rem;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 500;
    line-height: 1.75;
}

.worry-visual p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.85;
}

.worry-visual strong {
    display: block;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    font-size: 0.9rem;
}

/* Worry unified layout: keep the instructor reveal for the following profile section. */
.worry {
    background: var(--color-primary-dark);
}

.worry .big-bg {
    color: rgba(255, 255, 255, 0.045);
}

.worry-header {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.worry-header .section-label {
    color: var(--color-accent-light);
}

.worry-header .section-title {
    color: var(--color-white);
}

.worry-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 760px;
}

.worry-list {
    max-width: 980px;
    margin: 0 auto 3.5rem;
    gap: 0 3rem;
}

.worry-list .worry-item {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 1.25rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.worry-list .worry-item:nth-child(-n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.worry-list .worry-item:hover {
    transform: none;
    border-left-color: transparent;
}

.worry-list .worry-check {
    color: var(--color-accent-light);
    font-family: var(--font-en);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.worry-list .worry-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
}

.worry-conclusion {
    max-width: 780px;
    margin: 0 auto;
    padding: 2.25rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.55);
    border-bottom: 1px solid rgba(212, 175, 55, 0.55);
    text-align: center;
}

.worry-conclusion > span {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--color-accent-light);
    font-family: var(--font-en);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.worry-conclusion p {
    margin-bottom: 0.7rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    line-height: 1.8;
}

.worry-conclusion strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ---------- PROFILE ---------- */
.profile {
    background: var(--color-white);
}

.profile-content {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) 1.1fr;
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center;
    margin-bottom: 4rem;
}

.profile-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #eef0ee;
    border-radius: var(--radius-lg);
}

.profile-photo {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center 18%;
}

.profile-name {
    margin-bottom: 1.5rem;
}

.profile-name-ja {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-name-title {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 500;
}

.profile-greeting {
    font-size: 1.12rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 2;
}

.profile-description {
    font-size: 1.04rem;
    color: var(--color-text-light);
    line-height: 2;
    margin-bottom: 1rem;
}

.profile-message {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    line-height: 2;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.05), rgba(212, 175, 55, 0.07));
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
    margin-top: 1rem;
}

/* Credentials */
.credentials {
    background: var(--color-bg);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.credentials-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    padding: 1.1rem 1.35rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.credential-item::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services {
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    padding: 0 0 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.service-step {
    display: block;
    padding: 1rem 1.75rem 0.85rem;
    color: #8d6c2b;
    font-family: var(--font-en);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: left;
    text-transform: uppercase;
}

.service-card-img {
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-img-person img {
    object-position: center 20%;
}

.service-card-img-plan img {
    object-position: center top;
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-img-person:not(.service-card-img-plan) img {
    object-position: 68% 20%;
    transform: scale(1.18);
}

.service-card:hover .service-card-img-person:not(.service-card-img-plan) img {
    transform: scale(1.23);
}

.service-card-title,
.service-card-desc,
.service-card-link {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card-icon {
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.service-card-icon svg {
    width: 44px;
    height: 44px;
    margin: 0 auto;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-card-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-card-link {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Analysis Detail（ネイビーシルクの高級バンド） */
.analysis-detail {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 4rem;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-primary-dark);
}

.analysis-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: -1;
}

.analysis-title {
    font-family: var(--font-heading);
    font-synthesis: none;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2.25rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.analysis-item {
    background: rgba(255, 255, 255, 0.94);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.analysis-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.analysis-number {
    font-family: var(--font-en);
    font-size: 2.1rem;
    font-weight: 200;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.analysis-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.analysis-item p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Pricing */
.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card {
    position: relative;
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-card-featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1.25rem;
    border-radius: 50px;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-amount span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.pricing-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.8;
}

/* ---------- FLOW ---------- */
.flow {
    background: var(--color-bg);
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.flow-step {
    position: relative;
    background: var(--color-white);
    padding: 2.25rem 1.75rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-accent);
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.15rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
    transform: translateY(-50%) rotate(45deg);
}

.flow-step-num {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 200;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.9rem;
}

.flow-step-title {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}

.flow-step-desc {
    font-size: 0.94rem;
    color: var(--color-text-light);
    line-height: 1.9;
}

/* すがちゃんの顔を散りばめる（ミキミキ方式）: CSS円×AI切り抜きの合成バッジ */
.face-badge {
    position: relative;
    display: block;
    margin: 0 auto;
}

.face-badge::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(180deg, #FCF9F2 0%, #F0E2C4 100%);
    border: 3px solid rgba(212, 175, 55, 0.75);
    box-shadow: 0 10px 26px rgba(15, 36, 64, 0.12);
}

.face-badge-blue::before {
    background: linear-gradient(180deg, #F4F8FC 0%, #D8E4F0 100%);
}

.face-badge img {
    position: relative;
    display: block;
    width: 86%;
    margin: 0 auto;
    padding-bottom: 3%;
}

.face-badge-sm { width: 150px; margin-bottom: 1rem; margin-top: -0.4rem; }
.face-badge-md { width: 170px; margin-bottom: 1rem; }
.face-badge-lg { width: 230px; margin-bottom: 1.1rem; }

.worry-face {
    width: 138px;
    height: auto;
    margin: -0.4rem auto 0.9rem;
}

.flow-cta {
    max-width: 700px;
    margin: 3.5rem auto 0;
    padding: 2.4rem 2rem;
    text-align: center;
    background: #eef2f2;
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
}

.flow-cta-eyebrow {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.82rem;
    font-weight: 500;
}

.flow-cta-face {
    width: 210px;
    height: auto;
    margin: 0 auto 0.9rem;
    filter: drop-shadow(0 14px 26px rgba(15, 36, 64, 0.16));
}

.flow-cta-txt {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.35rem;
    color: #14304F;
    margin-bottom: 1.4rem;
    letter-spacing: 0;
}

.contact-card-face {
    width: 150px;
    height: auto;
    margin: -0.5rem auto 0.9rem;
    filter: drop-shadow(0 10px 20px rgba(15, 36, 64, 0.18));
}

/* ---------- FAQ ---------- */
.faq {
    background: var(--color-white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 0.9rem;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.5rem 3.2rem 1.5rem 1.7rem;
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--color-text);
    position: relative;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: 'Q';
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.faq-item summary::after {
    content: '';
    position: absolute;
    right: 1.6rem;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: translateY(-70%) rotate(45deg);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-item summary:hover {
    color: var(--color-primary);
}

.faq-item p {
    padding: 0 1.7rem 1.5rem 3.7rem;
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 2;
}

/* ---------- QUOTE BAND（全幅の情緒帯） ---------- */
.quote-band {
    position: relative;
    overflow: hidden;
    padding: 9rem 2rem;
    text-align: left;
    isolation: isolate;
    background: var(--color-primary-dark);
}

.quote-band-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
}

.quote-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 36, 64, 0.94) 0%, rgba(15, 36, 64, 0.84) 42%, rgba(15, 36, 64, 0.12) 72%, rgba(15, 36, 64, 0.02) 100%);
    z-index: -1;
}

.quote-band-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.quote-band .editorial-kicker {
    color: var(--color-accent-light);
}

.quote-band-txt {
    font-family: var(--font-heading);
    font-synthesis: none;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.08em;
    color: var(--color-white);
    text-shadow: 0 2px 30px rgba(15, 36, 64, 0.6);
    font-feature-settings: "palt";
    max-width: 690px;
}

.quote-band-sign {
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.86rem;
}

/* ---------- VOICES ---------- */
.voices {
    background: var(--color-white);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.voice-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.voice-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.voice-card-header {
    margin-bottom: 0.75rem;
}

.voice-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(27, 58, 92, 0.09);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.voice-card-quote {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.voice-card-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 2;
}

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

/* ---------- YOUTUBE ---------- */
.youtube {
    background: var(--color-bg);
}

.youtube-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.yt-card {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.yt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.yt-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 36, 64, 0.78);
    transition: var(--transition);
}

.yt-play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #fff;
}

.yt-card:hover .yt-play {
    background: var(--color-accent);
}

.yt-label {
    display: block;
    padding: 0.95rem 1.15rem 1.05rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
}

.yt-card.yt-playing {
    cursor: default;
    transform: none;
}

/* 「最新の動画」専用デザインカバー（サムネ非依存＝古くならない） */
.yt-thumb-latest {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    background: linear-gradient(150deg, var(--color-primary-dark) 0%, var(--color-primary) 62%, #2C5F8A 100%);
    color: var(--color-white);
}

.yt-latest-en {
    font-family: var(--font-en);
    font-weight: 200;
    font-size: 1.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.yt-latest-ja {
    font-family: var(--font-heading);
    font-synthesis: none;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
}

.yt-latest-note {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3.6rem;
}

.yt-thumb-latest .yt-play {
    top: auto;
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: rgba(212, 175, 55, 0.9);
}

.youtube-grid {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.youtube-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-text);
}

.youtube-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.youtube-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

/* ---------- CONTACT ---------- */
.contact {
    position: relative;
    overflow: hidden;
    background: var(--color-primary-dark);
    isolation: isolate;
}

.contact-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 36, 64, 0.90) 0%, rgba(27, 58, 92, 0.82) 60%, rgba(15, 36, 64, 0.88) 100%);
    z-index: -1;
}

.contact .section-title {
    color: var(--color-white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact .section-label {
    color: var(--color-accent-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-editorial {
    grid-template-columns: 0.82fr 1.18fr;
    max-width: 980px;
    gap: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-person {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #f2f1ed;
}

.contact-person img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    object-position: center top;
}

.contact-person p {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    margin: 0;
    padding: 1rem 1.15rem;
    background: rgba(15, 36, 64, 0.9);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    line-height: 1.8;
}

.contact-actions {
    display: grid;
    align-content: center;
    gap: 1px;
    padding: 2rem;
    background: rgba(27, 58, 92, 0.1);
}

.contact-actions .contact-card {
    border-radius: 0;
    box-shadow: none;
}

.contact-actions .contact-card:hover {
    transform: none;
    box-shadow: none;
}

.contact-card-primary {
    padding-bottom: 2.3rem;
}

.contact-card-secondary {
    padding-top: 2.3rem;
    border-top: 1px solid rgba(27, 58, 92, 0.12);
}

.contact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    color: var(--color-accent);
}

.contact-card-icon svg {
    width: 42px;
    height: 42px;
    margin: 0 auto;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 0.96rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: min(100%, 360px);
    height: auto;
}

.footer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.footer-table th {
    text-align: left;
    padding: 0.5rem 1rem 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    white-space: nowrap;
    vertical-align: top;
}

.footer-table td {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-sns h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-sns-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-sns-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-sns-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- GOLD CTA BUTTON ---------- */
.btn-gold {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(196, 162, 101, 0.35);
}

.btn-gold:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 162, 101, 0.45);
}

/* ---------- FIXED CTA BAR ---------- */
.fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.fixed-cta-bar.visible {
    transform: translateY(0);
}

.fixed-cta-btn {
    display: inline-block;
    padding: 0.9rem 3rem;
    background: #06C755;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.08em;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.35);
}

.fixed-cta-btn:hover {
    background: #05B34C;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.45);
}

@media (min-width: 769px) {
    .fixed-cta-bar {
        display: none;
    }
}

/* =============================================
   LINE Tokuten LP (line.html)
   ============================================= */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 10rem 0 5rem;
    text-align: center;
    background:
        radial-gradient(120% 90% at 85% 0%, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 55%),
        linear-gradient(175deg, #FDFCFA 0%, var(--color-bg) 60%, var(--color-bg-alt) 100%);
}

.lp-hero-eyebrow {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    padding: 0.4em 1.6em;
    margin-bottom: 2rem;
    background: var(--color-white);
}

.lp-hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    font-size: 3rem;
    line-height: 1.4;
    color: var(--color-primary-dark);
    margin-bottom: 1.8rem;
}

.lp-hero-num {
    font-family: var(--font-en);
    font-weight: 200;
    font-size: 4.6rem;
    vertical-align: -0.08em;
    padding: 0 0.06em;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero-lead {
    color: var(--color-text-light);
    margin-bottom: 2.2rem;
}

.lp-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.6rem;
}

.lp-hero-badge {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid rgba(27, 58, 92, 0.18);
    border-radius: 999px;
    padding: 0.45em 1.4em;
    box-shadow: var(--shadow-sm);
}

.lp-hero-cta {
    font-size: 1.05rem;
    padding: 1.2em 3em;
}

.lp-hero-note {
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: var(--color-text-light);
}

/* --- 診断テスト --- */
.lp-shindan {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.lp-shindan-box {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-lg);
    padding: 3.2rem 3rem;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.lp-shindan-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    color: var(--color-accent-light);
    border: 1px solid rgba(226, 197, 100, 0.5);
    border-radius: 999px;
    padding: 0.3em 1.4em;
    margin-bottom: 1.4rem;
}

.lp-shindan-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
}

.lp-shindan-desc {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}

/* --- PDF5点 --- */
.lp-tokuten {
    position: relative;
}

.lp-pdf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem 2rem;
}

.lp-pdf-item {
    text-align: center;
}

.lp-pdf-cover {
    position: relative;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.6rem 1.2rem;
    margin-bottom: 1.1rem;
    border-radius: 6px;
    background: linear-gradient(150deg, #21456B 0%, var(--color-primary-dark) 70%);
    box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(226, 197, 100, 0.35);
    overflow: hidden;
}

.lp-pdf-cover::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(226, 197, 100, 0.4);
    border-radius: 4px;
    pointer-events: none;
}

.lp-pdf-cover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: linear-gradient(180deg, var(--color-accent), #9C7C1E);
}

.lp-pdf-no {
    font-family: var(--font-en);
    font-weight: 200;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-pdf-cover-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-white);
}

.lp-pdf-pages {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.25em 1.1em;
}

.lp-pdf-desc {
    font-size: 0.92rem;
    color: var(--color-text-light);
    text-align: left;
}

/* --- 動画3本 --- */
.lp-video {
    padding-top: 0;
}

.lp-video-box {
    background: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-top: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    padding: 3.2rem 3rem;
    box-shadow: var(--shadow-md);
}

.lp-video-box .section-header {
    margin-bottom: 1.6rem;
}

.lp-video-desc {
    max-width: 640px;
    margin: 0 auto 2.2rem;
    color: var(--color-text-light);
}

.lp-video-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 640px;
    margin: 0 auto;
}

.lp-video-item {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(150deg, #21456B 0%, var(--color-primary-dark) 70%);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.lp-video-item::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent rgba(226, 197, 100, 0.9);
    margin-right: 0.6rem;
}

.lp-video-num {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    letter-spacing: 0.1em;
}

/* --- 受け取り手順 --- */
.lp-howto {
    position: relative;
    background: var(--color-white);
}

.lp-howto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.lp-howto-step {
    text-align: center;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2.4rem 1.8rem;
    box-shadow: var(--shadow-sm);
}

.lp-howto-num {
    font-family: var(--font-en);
    font-weight: 200;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-howto-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.8rem;
}

.lp-howto-desc {
    font-size: 0.92rem;
    color: var(--color-text-light);
    text-align: left;
}

.lp-final-cta {
    margin-top: 0;
}

.flow-cta-more {
    margin-top: 1.2rem;
    font-size: 0.92rem;
}

.flow-cta-more a {
    color: var(--color-primary);
    border-bottom: 1px solid rgba(27, 58, 92, 0.35);
    padding-bottom: 2px;
}

.flow-cta-more a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* ---------- LP v2: 画像入りリデザイン ---------- */
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    text-align: left;
}

.lp-hero-grid .lp-hero-badges {
    justify-content: flex-start;
}

.lp-hero-visual img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* 診断テスト 2カラム */
.lp-shindan-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.8rem;
    align-items: center;
    text-align: left;
}

.lp-shindan-grid .lp-shindan-desc {
    margin: 0;
    max-width: none;
}

.lp-shindan-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* PDF表紙: 生成画像ベース */
.lp-pdf-cover {
    background:
        linear-gradient(rgba(15, 36, 64, 0.42), rgba(15, 36, 64, 0.42)),
        url("../images/lp-booklet-cover.jpg") center / cover no-repeat;
}

.lp-pdf-cover::after {
    display: none;
}

/* 動画セクション: 画像 */
.lp-video-visual {
    max-width: 640px;
    margin: 0 auto;
}

.lp-video-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* 最終CTA: ギフトボックスバナー */
.lp-final-banner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    background: linear-gradient(135deg, #EFF3F7 0%, #E7EDF3 100%);
    border-top: 2px solid var(--color-primary-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lp-final-visual {
    height: 100%;
}

.lp-final-visual img {
    height: 100%;
    object-fit: cover;
}

.lp-final-copy {
    padding: 3rem 2.5rem;
    text-align: center;
}

/* トップページ: LINE特典バナー */
.tokuten-banner {
    padding: 0 0 5.5rem;
    background: var(--color-bg);
}

.tokuten-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.tokuten-banner-inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.tokuten-banner-visual {
    height: 100%;
    min-height: 260px;
}

.tokuten-banner-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tokuten-banner-copy {
    padding: 2.8rem 3rem;
    color: var(--color-white);
}

.tokuten-banner-eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    color: var(--color-accent-light);
    margin-bottom: 0.9rem;
}

.tokuten-banner-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

.tokuten-banner-num {
    font-family: var(--font-en);
    font-weight: 200;
    font-size: 3rem;
    vertical-align: -0.06em;
    padding: 0 0.05em;
    background: linear-gradient(160deg, var(--color-accent), #E8CFA0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tokuten-banner-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.6rem;
}

.tokuten-banner-btn {
    display: inline-block;
}

.nav-list .nav-tokuten {
    color: #B8942C;
    font-weight: 700;
}

.lp-hero-grid .lp-hero-title {
    font-size: 2.5rem;
}

.lp-hero-grid .lp-hero-num {
    font-size: 3.9rem;
}

/* ---------- ヘッダー折り返し対策（メニュー7項目対応） ---------- */
.nav-list a {
    white-space: nowrap;
}

@media (min-width: 769px) and (max-width: 1240px) {
    .nav-list {
        gap: 1.2rem;
    }

    .nav-list a {
        font-size: 0.82rem;
    }

    .nav-cta {
        padding: 0.75rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .nav-list {
        gap: 0.9rem;
    }

    .nav-list a {
        font-size: 0.78rem;
    }
}

/* ---------- 2026-08-16 Zoom反映: 料金2枚・価格タグ ---------- */
.pricing-cards-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-price {
    display: block;
    margin-top: 0.3rem;
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: #B8942C;
}

/* ========== 細部の磨き 2026-08-31（Refero Styles DESIGN.md流・戻す時はこのブロックごと削除） ========== */

/* 1) 文字サイズの底上げ
   PCは17pxのまま（+3%するとヘッダーのロゴとメニューが窮屈になるため据え置き）
   スマホのみ16→16.5px。加えて読み物系の本文を個別に少し拡大 */
@media (max-width: 768px) { html { font-size: 16.5px; } }
.voice-card-text { font-size: 1.05rem; }

/* 2) お客様の声: 灰色ベタ → 温かいベージュ＋金の細アクセントで世界観（紺×金）に揃える
   （セクション背景は白のまま維持: 前後のflow/youtubeがクリームなので明暗リズムを守る） */
.voice-card {
    background: var(--color-bg-alt);
    border: 1px solid rgba(27, 58, 92, 0.06);
    border-top: 2px solid rgba(212, 175, 55, 0.55);
    box-shadow: var(--shadow-sm);
    padding: 2.25rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}
.voice-card:hover { box-shadow: var(--shadow-md); }

/* 引用符: Yukaさん判断で非表示（「何を意味するのかわからない」2026-08-31） */
.voice-card-quote { display: none; }
.voice-card-text { position: relative; }
.voice-card-header { margin-bottom: 1rem; }

/* タグ: 薄灰ピル → 紺地×白字の小ラベル（信頼感・視認性UP） */
.voice-card-tag {
    font-size: 0.78rem;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 3px;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.04em;
}

/* 5枚の3+2不揃い → 最終行2枚を中央寄せ */
@media (min-width: 769px) {
    .voices-grid { grid-template-columns: repeat(6, 1fr); }
    .voice-card { grid-column: span 2; }
    .voice-card:nth-child(4) { grid-column: 2 / span 2; }
    .voice-card:nth-child(5) { grid-column: 4 / span 2; }
}
