/*
===============================================
Shinka AI - Franchise LP (page-fc.php)
UI Redesign v2 — Inspired by:
  - Fconne (wave dividers, curved sections)
  - HiPro Direct (orange CTAs, stat cards)
  - PaceBox LP (bold headings, illustration style)

Design Changes:
  - Orange/red gradient CTA buttons
  - Wave SVG dividers between sections
  - Deeper card shadows + hover lift
  - Decorative heading accents (underline)
  - Mid-page CTA banners
  - Larger spacing, richer visuals
===============================================
*/

/* ========================================
   LP Layout — Hide WP defaults
   ======================================== */
body.fc-lp #masthead { display: none !important; }
body.fc-lp .c-fixed-footer-cta { display: none !important; }
body.fc-lp .c-site-footer { display: none !important; }
body.fc-lp.page .c-main { padding-top: 0 !important; }
body.fc-lp.page .c-main::before { display: none !important; }
body.fc-lp.page { background: none !important; background-color: #fff !important; }
body.fc-lp .c-site-wrapper { overflow: visible !important; }

/* Utility */
.u-sp-only { display: none; }
.u-pc-only { display: inline; }
@media (max-width: 767px) {
    .u-sp-only { display: inline; }
    .u-pc-only { display: none; }
}

/* ========================================
   CTA Color — Orange Gradient (HiPro style)
   ======================================== */
:root {
    --fc-cta-gradient: linear-gradient(135deg, #FF6B35 0%, #F7441A 50%, #E8360E 100%);
    --fc-cta-hover-shadow: 0 8px 32px rgba(247, 68, 26, 0.4);
    --fc-cta-color: #FF6B35;
    --fc-accent-orange: #FF6B35;
    --fc-wave-light: #f7f8fc;
    --fc-section-gap: 0;
}

/* ========================================
   LP Header
   ======================================== */
.fc-lp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(11, 45, 110, 0.06);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.fc-lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.fc-lp-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.fc-lp-header__logo:hover {
    color: inherit;
}

.fc-lp-header__logo img { height: 28px; width: auto; }

.fc-lp-header__right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fc-lp-header__tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.fc-lp-header__cta {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 12px 40px 12px 28px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    background: var(--fc-cta-gradient);
    border-radius: var(--border-radius-full);
    text-decoration: none;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(247, 68, 26, 0.25);
}

.fc-lp-header__cta:hover {
    color: #fff !important;
    opacity: 0.9;
}

.fc-lp-header__cta .fc-mv__btn-arrow--right {
    right: 16px;
    font-size: 1.3em;
}

/* ---- ハンバーガーボタン（デフォルト非表示） ---- */
.fc-lp-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.fc-lp-header__hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ハンバーガー開いた時のX */
.fc-lp-header__hamburger.is-open .fc-lp-header__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.fc-lp-header__hamburger.is-open .fc-lp-header__hamburger-line:nth-child(2) {
    opacity: 0;
}
.fc-lp-header__hamburger.is-open .fc-lp-header__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- ドロワーメニュー（デフォルト非表示） ---- */
.fc-lp-header__drawer {
    display: none;
}

/* ========================================
   Section Nav (Hero下ナビゲーション)
   ======================================== */
.fc-section-nav {
    background: #fff;
    border-bottom: 1px solid rgba(11, 45, 110, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 72px;
    z-index: 999;
}

.fc-section-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fc-section-nav__link {
    display: block;
    padding: 18px 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light, #5A6580);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.fc-section-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--fc-cta-gradient);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.fc-section-nav__link:hover {
    color: var(--fc-accent-orange, #FF6B35);
}

.fc-section-nav__link:hover::after {
    width: 100%;
}

.fc-section-nav__link.is-active {
    color: var(--fc-accent-orange, #FF6B35);
}

.fc-section-nav__link.is-active::after {
    width: 100%;
}

/* ========================================
   LP Footer
   ======================================== */
.fc-lp-footer {
    background: #0A0E27;
    padding: 48px 0;
}

.fc-lp-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.fc-lp-footer__logo { display: flex; align-items: center; }
.fc-lp-footer__logo img {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

.fc-lp-footer__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fc-lp-footer__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc-lp-footer__links a:hover { color: rgba(255, 255, 255, 0.8); }

.fc-lp-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* 固定フッターCTA（スマホのみ） */
.fc-fixed-cta {
    display: none;
}

/* ========================================
   Wave Dividers (Fconne style)
   ======================================== */
.fc-wave-divider {
    display: block;
    width: 100%;
    height: auto;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.fc-wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   Book Cover: なぜ生成AI？
   ======================================== */
.fc-book-cover {
    position: relative;
    z-index: 2;
    background: #143A77;
    text-align: center;
    padding: 40px 0;
}

/* 下向き三角形 */
.fc-book-cover::after {
    content: '';
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 36px solid #143A77;
}

.fc-book-cover__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.fc-book-cover__title {
    font-size: clamp(24px, 4.5vw, 32px);
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

/* ========================================
   Mid-page CTA Banner
   ======================================== */
.fc-mid-cta {
    padding: 30px 0;
    background: #fff;
    text-align: center;
    position: relative;
}

.fc-mid-cta__inner {
    max-width: 780px;
    margin: 0 auto;
}

.fc-mid-cta__actions {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.fc-mid-cta__action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fc-mid-cta__action-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

/* 共通ボタンスタイル（hero立体ボタン準拠） */
.fc-mid-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 64px;
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.08em;
    border-radius: 100vh;
    transition: all 0.2s ease;
}

/* オレンジボタン */
.fc-mid-cta__btn--orange {
    background: var(--fc-cta-gradient);
    border-bottom: 5px solid #b52d06;
}

.fc-mid-cta__btn--orange:hover {
    margin-top: 3px;
    border-bottom: 2px solid #b52d06;
    color: #fff;
}

/* 青ボタン */
.fc-mid-cta__btn--blue {
    background: linear-gradient(135deg, #2B7DE9 0%, #1A5FBF 50%, #0B4A9E 100%);
    border-bottom: 5px solid #083A7A;
}

.fc-mid-cta__btn--blue:hover {
    margin-top: 3px;
    border-bottom: 2px solid #083A7A;
    color: #fff;
}

/* ボタン内SVGアイコン */
.fc-mid-cta__btn-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    flex-shrink: 0;
}

/* ボタン内矢印 */
.fc-mid-cta__btn-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    font-weight: 400;
    font-size: 1.5em;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.fc-mid-cta__btn:hover .fc-mid-cta__btn-arrow {
    opacity: 1;
}

/* ========================================
   Section Heading (Redesigned with accent)
   ======================================== */
.fc-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
}

.fc-section-heading__label {
    position: relative;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 14px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    background: var(--fc-accent-orange, #FF6B35);
}

/* 左の斜めカット */
.fc-section-heading__label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -14px;
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-right: 14px solid var(--fc-accent-orange, #FF6B35);
}

/* 右の斜めカット */
.fc-section-heading__label::after {
    content: '';
    position: absolute;
    top: 0;
    right: -14px;
    width: 0;
    height: 0;
    border-bottom: 32px solid transparent;
    border-left: 14px solid var(--fc-accent-orange, #FF6B35);
}

.fc-section-heading__title {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.45;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}


/* Light variant for dark backgrounds */
.fc-section-heading--light .fc-section-heading__label {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.fc-section-heading--light .fc-section-heading__label::before {
    border-right-color: rgba(255, 255, 255, 0.15);
}
.fc-section-heading--light .fc-section-heading__label::after {
    border-left-color: rgba(255, 255, 255, 0.15);
}
.fc-section-heading--light .fc-section-heading__title { color: #fff; }

/* ========================================
   1. Main Visual (Hero)
   ======================================== */
.fc-mv {
    position: relative;
    padding: 50px 0;
    background: #1a3a7a;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero 背景画像 */
.fc-mv__bg-picture {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.fc-mv__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.fc-mv__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(11, 45, 110, 0.55) 0%,
        rgba(11, 45, 110, 0.25) 50%,
        transparent 100%
    );
}

.fc-mv__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.fc-mv__badge {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: var(--border-radius-full);
    padding: 8px 24px;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-xl);
}

.fc-mv__title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-lg);
}

.fc-mv__title-kanji {
    font-size: 1.1em;
    font-weight: 900;
    letter-spacing: 0.04em;
    -webkit-text-stroke: 0.6px currentColor;
    paint-order: stroke fill;
}

.fc-mv__title-kana {
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.fc-mv__title-accent {
    font-size: 1.2em;
    font-weight: 900;
    letter-spacing: 0.06em;
    -webkit-text-stroke: 0.6px rgba(109, 179, 248, 0.6);
    paint-order: stroke fill;
    background: linear-gradient(135deg, #6db3f8 0%, #a8d8ff 50%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-mv__lead {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
}

.fc-mv__actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.fc-mv__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 64px;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
}

/* Hero primary CTA = Orange 立体(cubic)ボタン */
.fc-mv__btn--primary {
    color: #fff;
    background: var(--fc-cta-gradient);
    border-bottom: 5px solid #b52d06;
    border-radius: 100vh;
}

.fc-mv__btn--primary:hover {
    margin-top: 3px;
    border-bottom: 2px solid #b52d06;
    color: #fff;
}

/* ボタン内矢印アイコン */
.fc-mv__btn-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.fc-mv__btn-arrow--left {
    left: 20px;
    font-size: 1.2em;
}

.fc-mv__btn-arrow--right {
    right: 20px;
    font-size: 1.5em;
}

.fc-mv__btn--primary:hover .fc-mv__btn-arrow {
    opacity: 1;
}

.fc-mv__stats {
    display: flex;
    gap: 48px;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-mv__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.fc-mv__stat-num small {
    font-size: 18px;
    font-weight: 700;
}

.fc-mv__stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* ========================================
   2. About
   ======================================== */
.fc-about {
    position: relative;
    padding: 100px 0 80px;
    background: var(--color-bg);
    overflow: hidden;
}

/* 背景テキスト — 左寄せ */
.fc-about__bg-text {
    position: absolute;
    left: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 900;
    color: rgba(11, 45, 110, 0.04);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
}

/* 流れるライン装飾 */
.fc-about__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.fc-about__line {
    position: absolute;
    width: 12px;
    height: 300px;
    transform: rotate(-18deg);
    border-radius: 8px;
    overflow: hidden;
}

.fc-about__line::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation: fc-line-flow 4s cubic-bezier(0.87, 0, 0.13, 1) infinite;
}

.fc-about__line--1 {
    top: 5%;
    left: 6%;
    height: 320px;
}
.fc-about__line--1::before {
    background: linear-gradient(0deg, rgba(45, 125, 210, 0.5), rgba(0, 180, 216, 0.12));
}

.fc-about__line--2 {
    bottom: 10%;
    left: 2%;
    height: 260px;
}
.fc-about__line--2::before {
    background: linear-gradient(0deg, rgba(11, 45, 110, 0.4), rgba(45, 125, 210, 0.1));
    animation-delay: 1.6s;
}

.fc-about__line--3 {
    top: 30%;
    left: 12%;
    height: 280px;
}
.fc-about__line--3::before {
    background: linear-gradient(0deg, rgba(45, 125, 210, 0.35), rgba(11, 45, 110, 0.08));
    animation-delay: 2.8s;
}

@keyframes fc-line-flow {
    0%   { top: -100%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.fc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.fc-about__image {
    overflow: hidden;
}

.fc-about__image img {
    width: 100%;
    height: auto;
    display: block;
}

.fc-about__lead {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.fc-about__text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
}

.fc-about__clients {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-border);
}

.fc-about__clients-label {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-lighter);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.fc-about__clients-list {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.fc-about__clients-list span {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    font-weight: var(--font-weight-medium);
    background: var(--color-bg-light);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--color-border);
}

/* ========================================
   Arc Divider: About → Reasons
   ======================================== */
.fc-reasons-arc {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    background: transparent;
    margin-bottom: -2px;
}

/* arc部分にも同じ背景パターンを適用して fc-reasons と繋げる */
.fc-reasons-arc::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.07) 1.2px, transparent 1.2px),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 36px,
            rgba(255, 255, 255, 0.04) 36px,
            rgba(255, 255, 255, 0.04) 37px
        );
    background-size: 28px 28px, auto;
    pointer-events: none;
    z-index: 1;
    clip-path: ellipse(62.5% 100% at 50% 100%);
}

.fc-reasons-arc svg {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

/* ========================================
   3. Reasons (選ばれる理由)
   ======================================== */
.fc-reasons {
    position: relative;
    padding: 0 0 100px;
    background: #2D7DD2;
    overflow: hidden;
}

/* 背景パターン（ドット + 斜めライン） */
.fc-reasons::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.07) 1.2px, transparent 1.2px),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 36px,
            rgba(255, 255, 255, 0.04) 36px,
            rgba(255, 255, 255, 0.04) 37px
        );
    background-size: 28px 28px, auto;
    pointer-events: none;
    z-index: 0;
}

.fc-reasons__bg-text {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
    z-index: 0;
}

.fc-reasons > .c-container {
    position: relative;
    z-index: 1;
}

/* --- Reasons: Zigzag Items --- */
.fc-reasons__items {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.fc-reasons__item {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 64px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.fc-reasons__item--reverse {
    grid-template-columns: 6fr 5fr;
    direction: rtl;
}
.fc-reasons__item--reverse > * {
    direction: ltr;
}

/* --- Visual (Image + decorative pseudo) --- */
.fc-reasons__item-visual {
    position: relative;
    padding: 24px;
}

/* 装飾パネル（濃い青の影）：通常（画像左）→ 左下に配置 */
.fc-reasons__item-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 88%;
    border-radius: 20px;
    background: rgba(15, 50, 120, 0.45);
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reverse（画像右）→ 右上に配置 */
.fc-reasons__item--reverse .fc-reasons__item-visual::before {
    left: auto;
    right: 0;
    bottom: auto;
    top: 0;
}

.fc-reasons__item-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    z-index: 1;
}

.fc-reasons__item-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    pointer-events: none;
}

.fc-reasons__item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ナンバー（円の中に配置）：通常→右上、Reverse→左上 */
.fc-reasons__item-num {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    background: rgba(255, 107, 53);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    pointer-events: none;
    z-index: 3;
}

.fc-reasons__item--reverse .fc-reasons__item-num {
    right: auto;
    left: 0;
}

/* --- Body (Text content) --- */
.fc-reasons__item-body {
    position: relative;
    padding: 12px 0;
}

.fc-reasons__item-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 24px;
    background: linear-gradient(135deg, #FF6B35, #FF8F65, #FFB088);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.fc-reasons__item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FF8F65, rgba(255, 143, 101, 0.3));
    border-radius: 2px;
}

.fc-reasons__item-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.95;
    margin: 0;
}

/* ========================================
   4. Market Data
   ======================================== */
.fc-market {
    position: relative;
    padding: 100px 0;
    background: url('../../image/fc-market.jpg') center center / cover no-repeat;
    overflow: hidden;
}

/* 白オーバーレイ */
.fc-market::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.fc-market > * {
    position: relative;
    z-index: 1;
}

.fc-market__bg-text {
    position: absolute;
    left: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
}

.fc-market__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fc-market__card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fc-market__card-img {
    flex: 0 0 45%;
    padding: 20px;
    text-align: center;
}

.fc-market__card-img img {
    width: 100%;
    height: 160px;
    object-fit: contain;
}

.fc-market__card--wide .fc-market__card-img {
    flex: 0 0 40%;
}

.fc-market__card--wide .fc-market__card-img img {
    height: 200px;
}

.fc-market__card-body {
    flex: 1;
    padding: 28px 32px 28px 0;
}

.fc-market__card--wide { grid-column: 1 / -1; }

.fc-market__card-title {
    font-size: var(--font-size-sm);
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: var(--spacing-sm);
}

.fc-market__card-title span {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(0, 0, 0, 0.4);
    margin-top: 2px;
}

.fc-market__card-number {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--spacing-sm);
}

.fc-market__card-number em {
    font-style: normal;
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #1a6dca 0%, #2b88e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.fc-market__card-number span {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
}

.fc-market__card-desc {
    font-size: var(--font-size-sm);
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

.fc-market__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--spacing-md);
}

.fc-market__card-tags span {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.55);
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* ========================================
   5. Side Job Era
   ======================================== */
.fc-sidejob {
    padding: 100px 0;
    background: var(--color-bg);
}

.fc-sidejob__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fc-sidejob__fact {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    padding-bottom: 56px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.fc-sidejob__fact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #0B2D6E 0%, #143A77 100%);
}

.fc-sidejob__fact-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    letter-spacing: -0.02em;
}

.fc-sidejob__fact-label {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
}

.fc-sidejob__fact-body {
    padding: 24px 28px 0;
}

.fc-sidejob__fact-body h3 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.fc-sidejob__fact-body p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.85;
    margin: 0;
}

.fc-sidejob__fact::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    border-right: 3px solid rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
}

/* ========================================
   6. Risk
   ======================================== */
.fc-risk {
    padding: 48px 0;
    background: repeating-linear-gradient(
        -45deg,
        #111 0px,
        #111 24px,
        #222 24px,
        #222 26px,
        #c8a800 26px,
        #c8a800 50px,
        #222 50px,
        #222 52px
    );
    text-align: center;
}

.fc-risk .c-container {
    max-width: 780px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 16px;
    padding: 44px 48px;
}

.fc-risk__lead {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.fc-risk__title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.fc-risk__title small {
    font-size: 0.7em;
    font-weight: 700;
}

.fc-risk__title-accent {
    color: #E53935;
    font-size: 1.2em;
}

.fc-risk__conclusion {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    margin: 0;
}

.fc-risk__conclusion strong {
    color: #E53935;
    font-size: 1.1em;
}

/* ========================================
   7. Local Gap
   ======================================== */
.fc-local {
    padding: 100px 0;
    background: var(--color-bg);
}

.fc-local__content {
    max-width: 800px;
    margin: 0 auto;
}

.fc-local__comparison { margin-bottom: var(--spacing-lg); }

.fc-local__bar { margin-bottom: var(--spacing-lg); }

.fc-local__bar-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.fc-local__bar-fill {
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    min-width: 80px;
    transition: width 1s var(--ease-out-expo);
    box-shadow: 0 4px 16px rgba(11, 45, 110, 0.2);
}

.fc-local__bar-fill--accent {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.2);
}

.fc-local__bar-value {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 900;
    color: #fff;
}

.fc-local__gap-label {
    text-align: center;
    font-size: var(--font-size-xl);
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.fc-local__gap-label strong {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: #C0392B;
}

.fc-local__points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-local__point {
    display: flex;
    gap: var(--spacing-md);
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.fc-local__point:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.fc-local__point-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.06);
}

.fc-local__point h3 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.fc-local__point p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.85;
    margin: 0;
}

/* ========================================
   8. Why AI
   ======================================== */
.fc-whyai {
    padding: 100px 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.fc-whyai__bg-text {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
}

.fc-whyai__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fc-whyai__item {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 36px;
    align-items: center;
}

.fc-whyai__item--reverse { direction: rtl; }
.fc-whyai__item--reverse > * { direction: ltr; }

.fc-whyai__item-image {
    position: relative;
    overflow: visible;
}

.fc-whyai__item-image::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: url('../../image/fc-why-bg-left.png') center center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

.fc-whyai__item--reverse .fc-whyai__item-image::before {
    background-image: url('../../image/fc-why-bg-right.png');
}

.fc-whyai__item-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}

.fc-whyai__item-num {
    font-family: var(--font-display);
    font-size: 68px;
    font-weight: 900;
    background: var(--fc-cta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.fc-whyai__item-num span {
    display: block;
    font-size: var(--font-size-xs);
    -webkit-text-fill-color: var(--color-text-lighter);
    letter-spacing: 0.15em;
    font-weight: var(--font-weight-semibold);
}

.fc-whyai__item-body h3 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.45;
    margin-bottom: var(--spacing-md);
}

.fc-whyai__item-body p {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.85;
    margin: 0;
}

/* ========================================
   9. AI Skills Grid
   ======================================== */
.fc-skills {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B2D6E 0%, #2D7DD2 100%);
    position: relative;
    overflow: hidden;
}

.fc-skills__bg-text {
    position: absolute;
    left: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
}

.fc-skills .fc-section-heading__label {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.fc-skills .fc-section-heading__label::before {
    border-right-color: rgba(255, 255, 255, 0.15);
}

.fc-skills .fc-section-heading__label::after {
    border-left-color: rgba(255, 255, 255, 0.15);
}

.fc-skills .fc-section-heading__title {
    color: #fff;
}

.fc-skills__lead {
    text-align: center;
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.fc-skills__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.fc-skills__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 20px;
    position: relative;
}

.fc-skills__item:not(:nth-child(4n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.fc-skills__item:nth-child(-n+4)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.fc-skills__item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
}

.fc-skills__item p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: #fff;
    line-height: var(--line-height-normal);
    margin: 0;
}

/* ========================================
   10. Revenue
   ======================================== */
.fc-revenue {
    position: relative;
    padding: 100px 0 140px;
    background-color: var(--color-bg-light);
    background-image:
        linear-gradient(30deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(150deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(30deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(150deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(60deg, rgba(0, 0, 0, 0.012) 25%, transparent 25.5%, transparent 75%, rgba(0, 0, 0, 0.012) 75%, rgba(0, 0, 0, 0.012)),
        linear-gradient(60deg, rgba(0, 0, 0, 0.012) 25%, transparent 25.5%, transparent 75%, rgba(0, 0, 0, 0.012) 75%, rgba(0, 0, 0, 0.012));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    overflow: visible;
    z-index: 1;
}

.fc-revenue::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--color-bg-light);
    background-image:
        linear-gradient(30deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(150deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(30deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(150deg, rgba(0, 0, 0, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.018) 87.5%, rgba(0, 0, 0, 0.018)),
        linear-gradient(60deg, rgba(0, 0, 0, 0.012) 25%, transparent 25.5%, transparent 75%, rgba(0, 0, 0, 0.012) 75%, rgba(0, 0, 0, 0.012)),
        linear-gradient(60deg, rgba(0, 0, 0, 0.012) 25%, transparent 25.5%, transparent 75%, rgba(0, 0, 0, 0.012) 75%, rgba(0, 0, 0, 0.012));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: translateY(calc(100% - 1px));
    z-index: 2;
}

.fc-revenue__lead {
    text-align: center;
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.fc-revenue__table-wrap {
    margin-bottom: 56px;
}

.fc-revenue__table-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.fc-revenue__sub-heading {
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
}

.fc-revenue__examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fc-revenue__example {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.fc-revenue__example-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.06);
    border-radius: 18px;
    color: var(--fc-accent-orange);
    margin-bottom: var(--spacing-md);
}

.fc-revenue__example-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: 4px;
}

.fc-revenue__example-desc {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.fc-revenue__example-price {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    background: var(--fc-cta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.fc-revenue__example-price small { font-size: var(--font-size-sm); font-weight: var(--font-weight-medium); }

/* ========================================
   11. Certification
   ======================================== */
.fc-cert {
    position: relative;
    padding: 180px 0 100px;
    background: var(--color-bg);
}

/* 上部の青帯 */
.fc-cert::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 720px;
    background: linear-gradient(160deg, #2563EB 0%, #3B82F6 100%);
    z-index: 0;
}

/* 青帯の上に重ねる白い右寄せブロック */
.fc-cert::after {
    content: "";
    position: absolute;
    top: 320px;
    right: 0;
    width: 85%;
    height: 580px;
    background: var(--color-bg);
    border-radius: 40px 0 0 40px;
    z-index: 0;
}

.fc-cert > .c-container {
    position: relative;
    z-index: 1;
}

.fc-cert__person {
    position: absolute;
    right: 8%;
    top: 380px;
    width: 280px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.fc-cert .fc-section-heading__title {
    color: #fff;
}

/* Lead Card */
.fc-cert__lead-card {
    padding: 48px 40px 40px;
    text-align: center;
    margin-bottom: 56px;
}

.fc-cert__lead-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
    flex-wrap: wrap;
    line-height: 1.5;
}

.fc-cert__lead-card-highlight {
    font-weight: 800;
    background: linear-gradient(transparent 60%, rgba(37, 99, 235, 0.18) 60%);
    padding: 0 4px;
}

.fc-cert__lead-card-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #38BDF8 100%);
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 8px;
    padding-left: 3px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.fc-cert__lead-card-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.fc-cert__lead-card-main-sub {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
}

.fc-cert__lead-card-main-value {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, #2563EB 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.fc-cert__lead-card-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 32px;
}

.fc-cert__lead-card-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: #fff;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    border-radius: 60px;
    letter-spacing: 0.06em;
    margin: 0 auto 36px;
}

.fc-cert__lead-card-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

/* アイコン間のグラデーション接続線 */
.fc-cert__lead-card-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0 28px;
}

.fc-cert__lead-card-icon-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px;
    right: -2px;
    width: 56px;
    height: 5px;
    background: linear-gradient(90deg, #2563EB, #38BDF8);
    transform: translateX(50%);
}

.fc-cert__lead-card-icon-item span {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
}

.fc-cert__lead-card-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    background: #F8FAFC;
    color: var(--color-primary, #2563EB);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fc-cert__lead-card-icon-item:hover .fc-cert__lead-card-icon-circle {
    border-color: var(--color-primary, #2563EB);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    transform: scale(1.1);
}

/* ---- Grid ---- */
.fc-cert__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    counter-reset: cert-step;
}

/* ---- Card base ---- */
.fc-cert__card {
    position: relative;
    text-align: left;
    padding: 44px 36px 40px;
    background: #fff;
    border: 1px solid #E5E9F0;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

/* 左端 → 左角丸 */
.fc-cert__card:first-child {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

/* 中央 → 角丸なし */
.fc-cert__card:nth-child(2) {
    border-radius: 0;
}

/* 右端 → 右角丸 */
.fc-cert__card:last-child {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

/* ---- 等級バッジ ---- */
.fc-cert__card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    padding: 6px 20px;
    border-radius: 8px;
    margin-bottom: 28px;
}

.fc-cert__card-badge--3 { background: #64748B; }
.fc-cert__card-badge--2 { background: #2563EB; }
.fc-cert__card-badge--1 { background: #0F172A; }

/* ---- 価格 ---- */
.fc-cert__card-price { margin-bottom: 28px; }

.fc-cert__card-price-label {
    display: block;
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.fc-cert__card-price-amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: #1E293B;
    line-height: 1;
    letter-spacing: -0.02em;
}

.fc-cert__card-price-amount small {
    font-size: 15px;
    font-weight: 500;
    color: #64748B;
    letter-spacing: 0;
}

/* ---- 区切り線 ---- */
.fc-cert__card-divider {
    width: 100%;
    height: 1px;
    background: #E5E9F0;
    border-radius: 0;
    margin: 0 0 24px;
}

/* ---- 業務内容ラベル ---- */
.fc-cert__card-scope {
    font-size: 11px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ---- 説明文 ---- */
.fc-cert__card-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ---- 業務リスト ---- */
.fc-cert__card-list { list-style: none; padding: 0; margin: 0; }

.fc-cert__card-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 2;
}

.fc-cert__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #2563EB;
}

/* ========================================
   12. Voice
   ======================================== */
.fc-voice {
    padding: 0;
    background: #F3F5FA;
    position: relative;
    overflow: visible;
}

/* 上部の楕円（fc-reasons-arcと同じサイズ: viewBox 1440x200, ellipse rx=900 ry=200） */
.fc-voice::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 200px;
    background: #F3F5FA;
    clip-path: ellipse(62.5% 100% at 50% 100%);
}

/* 下部の楕円（上部を反転） */
.fc-voice::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 200px;
    background: #F3F5FA;
    clip-path: ellipse(62.5% 100% at 50% 0%);
    z-index: 1;
}

/* Large background text */
.fc-voice__bg-text {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
    z-index: 0;
}

.fc-voice .c-container {
    position: relative;
    z-index: 1;
}

.fc-voice__list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 900px;
    margin: 0 auto;
}

.fc-voice__card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    position: relative;
}

.fc-voice__card-photo {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(145deg, #f5f6fa 0%, #e8eaf0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-voice__card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fc-voice__card-initial {
    font-size: 48px;
    font-weight: 800;
    color: #c8ccd4;
    letter-spacing: 0.02em;
    user-select: none;
}

.fc-voice__card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-voice__card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-voice__card-name {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0;
}

.fc-voice__card-meta {
    font-size: var(--font-size-xs);
    color: var(--color-text-lighter);
    margin: 0;
}

.fc-voice__card-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.9;
    margin: 0;
}

.fc-voice__card-text strong { color: var(--fc-accent-orange); font-weight: var(--font-weight-bold); }

/* ========================================
   13. Plans
   ======================================== */
.fc-plans {
    padding: 100px 0;
    position: relative;
    background:
        /* 格子柄オーバーレイ */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(255, 255, 255, 0.12) 39px,
            rgba(255, 255, 255, 0.12) 40px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            rgba(255, 255, 255, 0.12) 39px,
            rgba(255, 255, 255, 0.12) 40px
        ),
        /* 黒オーバーレイ */
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        /* 背景画像 */
        url('../../image/plans-bg.jpg') center / cover no-repeat;
    background-color: #e8edf5;
}

.fc-plans .c-container {
    padding-top: 200px;
    position: relative;
}

.fc-plans__lead {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: 48px;
}

/* 背景画像上のセクション見出しを白に */
.fc-plans .fc-section-heading__label { color: rgba(255, 255, 255, 0.7); }
.fc-plans .fc-section-heading__title { color: #fff; }
.fc-plans .fc-plans__lead { color: rgba(255, 255, 255, 0.8); }

/* ---- ラジオボタン（非表示） ---- */
.fc-plans__radio { display: none; }

/* ---- タブ ---- */
.fc-plans__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: -4px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.fc-plans__tab {
    cursor: pointer;
    display: block;
    flex: 1;
    max-width: 362px;
}

.fc-plans__tab-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px 12px 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease;
    background: #E8EDF5;
    color: var(--color-text-lighter);
    letter-spacing: 0.05em;
}

/* アクティブタブ - 分割が選択時 */
#fc-plans-tab-installment:checked ~ .fc-plans__tabs label[for="fc-plans-tab-installment"] .fc-plans__tab-badge {
    background: var(--color-primary);
    color: #fff;
}

/* アクティブタブ - 一括が選択時 */
#fc-plans-tab-lump:checked ~ .fc-plans__tabs label[for="fc-plans-tab-lump"] .fc-plans__tab-badge {
    background: var(--color-primary);
    color: #fff;
}

/* ---- パネル ---- */
.fc-plans__panel {
    display: none;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 56px;
    position: relative;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

/* 分割プランが選択時 */
#fc-plans-tab-installment:checked ~ .fc-plans__panel--installment { display: block; }
/* 一括プランが選択時 */
#fc-plans-tab-lump:checked ~ .fc-plans__panel--lump { display: block; }

/* ---- パネルタイトル ---- */
.fc-plans__panel-title {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 16px;
}

.fc-plans__panel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F7941D, #F7441A);
    border-radius: 2px;
}

/* ---- 価格表示 ---- */
.fc-plans__price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 4px;
}

.fc-plans__price-label-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    background: rgba(11, 45, 110, 0.08);
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.fc-plans__price-amount {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.fc-plans__price-unit {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    color: var(--color-text-light);
    align-self: flex-end;
    padding-bottom: 6px;
}

.fc-plans__price-sub {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* ---- 料金内訳ラベル ---- */
.fc-plans__breakdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin: 0 auto 24px;
    padding: 6px 0;
    background: var(--color-secondary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

/* ---- テーブル ---- */
.fc-plans__table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #D8D8D8;
}

.fc-plans__table tr { border-bottom: 1px solid #D8D8D8; }
.fc-plans__table tr:last-child { border-bottom: none; }

.fc-plans__table td {
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
}

.fc-plans__table-desc {
    color: var(--color-text);
    text-align: center;
    border-right: 1px solid #D8D8D8;
    background: #EDF4FB;
}

.fc-plans__table-desc strong {
    font-weight: 700;
    display: block;
}

.fc-plans__table-price {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    min-width: 140px;
    background: #fff;
}

/* ========================================
   14. FAQ
   ======================================== */
.fc-faq {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.fc-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-faq__item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.fc-faq__item[open] { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); }

.fc-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: 24px 32px;
    cursor: pointer;
    list-style: none;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    transition: color 0.3s ease;
}

.fc-faq__question:hover { color: var(--fc-accent-orange); }

.fc-faq__question::-webkit-details-marker { display: none; }

.fc-faq__icon {
    flex-shrink: 0;
    color: var(--fc-accent-orange);
    transition: transform 0.3s ease;
}

.fc-faq__item[open] .fc-faq__icon { transform: rotate(180deg); }

.fc-faq__answer {
    padding: 0 32px 24px;
}

.fc-faq__answer p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.85;
    margin: 0;
}

/* ========================================
   15. Contact CTA
   ======================================== */
.fc-contact {
    padding: 100px 0;
    background: #fff;
}

.fc-contact__inner {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.fc-contact__content { position: relative; z-index: 1; }

.fc-contact__text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Contact Form 7 スタイリング */
.fc-contact__form {
    max-width: 600px;
    margin: 0 auto 32px;
    text-align: left;
}

.fc-contact__form .wpcf7-form p {
    margin-bottom: 0;
}

.fc-contact__form .fc-form__field {
    margin-bottom: 24px;
}

.fc-contact__form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.fc-contact__form label .required {
    display: inline-block;
    background: var(--fc-accent-orange);
    color: #fff;
    font-size: 0;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.fc-contact__form label .required::after {
    content: '必須';
    font-size: 11px;
}

/* プライバシーポリシー同意 */
.fc-contact__form .wpcf7-acceptance {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 8px;
}

.fc-contact__form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.fc-contact__form .wpcf7-acceptance label,
.fc-contact__form .wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.fc-contact__form .wpcf7-acceptance .wpcf7-list-item label:hover {
    background: none;
    border-color: transparent;
}

.fc-contact__form .wpcf7-acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--fc-accent-orange);
    cursor: pointer;
    flex-shrink: 0;
}

.fc-contact__form .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
}

.fc-contact__form .wpcf7-acceptance .wpcf7-list-item-label a {
    color: var(--fc-accent-orange);
    text-decoration: underline;
    font-weight: 600;
}

.fc-contact__form .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    opacity: 0.8;
}

.fc-contact__form .fc-form__submit {
    margin-top: 8px;
}

.fc-contact__form input[type="text"],
.fc-contact__form input[type="email"],
.fc-contact__form input[type="tel"],
.fc-contact__form input[type="url"],
.fc-contact__form input[type="number"],
.fc-contact__form select,
.fc-contact__form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e0e3e8;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.fc-contact__form input[type="text"]:focus,
.fc-contact__form input[type="email"]:focus,
.fc-contact__form input[type="tel"]:focus,
.fc-contact__form input[type="url"]:focus,
.fc-contact__form input[type="number"]:focus,
.fc-contact__form select:focus,
.fc-contact__form textarea:focus {
    border-color: var(--fc-accent-orange);
    box-shadow: 0 0 0 3px rgba(247, 68, 26, 0.2);
    background: #fff;
}

.fc-contact__form textarea {
    min-height: 120px;
    resize: vertical;
}

.fc-contact__form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.fc-contact__form input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0;
    padding: 18px 52px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--fc-accent-orange);
    border: none;
    border-radius: 100vh;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: opacity 0.2s ease;
}

.fc-contact__form input[type="submit"]:hover {
    opacity: 0.85;
    color: #fff;
}

/* CF7 バリデーション */
.fc-contact__form .wpcf7-not-valid-tip {
    color: #e53935;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.fc-contact__form .wpcf7-not-valid {
    border-color: #e53935;
}

.fc-contact__form .wpcf7-response-output {
    border: none !important;
    padding: 16px 20px !important;
    margin: 20px 0 0 !important;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
}

.fc-contact__form .wpcf7-mail-sent-ok,
.fc-contact__form .wpcf7 form.sent .wpcf7-response-output {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.fc-contact__form .wpcf7 form.failed .wpcf7-response-output,
.fc-contact__form .wpcf7 form.aborted .wpcf7-response-output {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
}

.fc-contact__form .wpcf7-spinner {
    margin: 16px auto 0;
    display: block;
}

.fc-contact__note {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    margin: 0;
}

/* ========================================
   Responsive — Tablet (≤ 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .fc-lp-header__inner { height: 64px; }
    .fc-lp-header__tagline { display: none; }
    .fc-lp-header__cta { padding: 10px 24px; font-size: 13px; }

    .fc-section-nav { top: 64px; }
    .fc-section-nav__link { padding: 14px 20px; font-size: 13px; }

    .fc-mv { padding: 80px 0 60px; min-height: 480px; }
    .fc-mv__stats { gap: 32px; }

    .fc-about { padding: 80px 0; }
    .fc-about__grid { grid-template-columns: 1fr; gap: var(--spacing-xl); }

    .fc-reasons { padding: 80px 0; }
    .fc-reasons__items { gap: 56px; }
    .fc-reasons__item { gap: 36px; grid-template-columns: 5fr 6fr; }
    .fc-reasons__item--reverse { grid-template-columns: 6fr 5fr; }
    .fc-reasons__item-visual { padding: 20px; }
    .fc-reasons__item-num { width: 64px; height: 64px; font-size: 22px; }
    .fc-reasons__item-title { font-size: 22px; }

    .fc-market { padding: 80px 0; }
    .fc-market__grid { grid-template-columns: 1fr 1fr; }

    .fc-sidejob { padding: 80px 0; }
    .fc-risk { padding: 64px 0; }

    .fc-local { padding: 80px 0; }

    .fc-whyai { padding: 80px 0; }
    .fc-whyai__item { grid-template-columns: 1fr; gap: var(--spacing-xl); }
    .fc-whyai__item--reverse { direction: ltr; }

    .fc-skills { padding: 80px 0; }
    .fc-skills__grid { grid-template-columns: repeat(3, 1fr); }
    .fc-skills__item:not(:nth-child(4n))::after { display: none; }
    .fc-skills__item:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: rgba(255, 255, 255, 0.12);
    }
    .fc-skills__item:nth-child(-n+4)::before { display: none; }
    .fc-skills__item:nth-child(-n+3)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: rgba(255, 255, 255, 0.12);
    }

    .fc-revenue { padding: 80px 0 120px; }
    .fc-revenue__examples { grid-template-columns: repeat(2, 1fr); }
    .fc-revenue::after { height: 60px; }

    .fc-cert { padding: 140px 0 80px; }
    .fc-cert__person { 
    position: absolute;
    right: 1%;
    top: -150px;
    width: 180px;
    height: auto;
    z-index: 2;
    pointer-events: none; }
    .fc-cert::before { height: 360px; }
    .fc-cert::after { top: 30px; width: 60%; height: 330px; border-radius: 32px 0 0 32px; }
    .fc-cert__lead-card { padding: 40px 32px 32px; }
    .fc-cert__lead-card-icon-item { padding: 0 20px; }
    .fc-cert__lead-card-icon-item:not(:last-child)::after { width: 40px; }
    .fc-cert__grid { grid-template-columns: 1fr; gap: 16px; }
    .fc-cert__card,
    .fc-cert__card:first-child,
    .fc-cert__card:last-child { border-radius: 16px; border: 1px solid #E5E9F0; }

    .fc-voice { padding: 0; }
    .fc-voice__card { grid-template-columns: 180px 1fr; gap: 28px; padding: 32px; }
    .fc-voice__card-photo { width: 180px; height: 180px; }

    .fc-plans { padding: 80px 0; }
    .fc-faq { padding: 80px 0; }

    .fc-contact { padding: 80px 0; }

    .fc-book-cover { padding: 30px 0; }
    .fc-mid-cta { padding: 24px 0; }
}

/* ========================================
   Responsive — Mobile (≤ 767px)
   ======================================== */
@media (max-width: 767px) {
    .fc-lp-header { position: fixed; top: 0; left: 0; right: 0; }
    .fc-lp-header__inner { height: 56px; }
    .fc-lp-header__logo img { height: 22px; }
    .fc-lp-header__right { display: none; }
    .fc-lp-header__hamburger { display: flex; }

    /* ドロワーメニュー */
    .fc-lp-header__drawer {
        display: block;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
    }

    .fc-lp-header__drawer.is-open {
        opacity: 1;
        visibility: visible;
    }

    .fc-lp-header__drawer-nav {
        padding: 24px;
    }

    .fc-lp-header__drawer-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .fc-lp-header__drawer-link {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--color-text);
        text-decoration: none;
        border-bottom: 1px solid rgba(11, 45, 110, 0.08);
        transition: color 0.3s ease;
    }

    .fc-lp-header__drawer-link:hover {
        color: var(--color-secondary);
    }

    .fc-lp-header__drawer-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 24px;
        padding: 16px 40px 16px 28px;
        font-size: 15px;
        font-weight: 700;
        color: #fff !important;
        background: var(--fc-cta-gradient);
        border-radius: var(--border-radius-full);
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(247, 68, 26, 0.25);
    }

    .fc-lp-header__drawer-cta .fc-mv__btn-arrow--right {
        right: 16px;
        font-size: 1.3em;
    }

    /* fc-section-navはモバイルで非表示（ドロワーに統合） */
    .fc-section-nav { display: none; }

    /* ヘッダー分のbody余白 */
    .fc-mv { margin-top: 56px; }

    .fc-lp-footer { padding: 36px 0 100px; }
    .fc-lp-footer__links { flex-direction: column; gap: 16px; }

    /* 固定フッターCTA */
    .fc-fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .fc-fixed-cta.is-visible {
        transform: translateY(0);
    }
    .fc-fixed-cta__btn {
        display: block;
        text-align: center;
        padding: 14px 20px;
        background: var(--fc-accent-orange);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        letter-spacing: 0.05em;
    }

    .fc-section-heading { margin-bottom: 40px; }

    .fc-mv { padding: 100px 0 60px; }
    .fc-mv__overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 45, 110, 0.4) 0%,
            rgba(11, 45, 110, 0.55) 60%,
            rgba(11, 45, 110, 0.7) 100%
        );
    }
    .fc-mv__content { max-width: 100%; }
    .fc-mv__title { margin-bottom: var(--spacing-md); }
    .fc-mv__actions { flex-direction: column; align-items: stretch; }
    .fc-mv__btn { justify-content: center; padding: 18px 48px; font-size: 16px; }
    .fc-mv__stats { flex-direction: column; gap: var(--spacing-lg); }

    .fc-about { padding: 60px 0; }
    .fc-about__grid { grid-template-columns: 1fr; }

    .fc-reasons { padding: 60px 0; }
    .fc-reasons__items { gap: 48px; }
    .fc-reasons__item { grid-template-columns: 1fr; gap: 20px; }
    .fc-reasons__item--reverse { grid-template-columns: 1fr; direction: ltr; }
    .fc-reasons__item-visual { padding: 16px; max-width: 480px; }
    .fc-reasons__item-visual::before { width: 70%; height: 80%; }
    .fc-reasons__item--reverse .fc-reasons__item-visual::before { right: auto; left: 0; }
    .fc-reasons__item-img-wrap { aspect-ratio: 16 / 10; }
    .fc-reasons__item-num { width: 56px; height: 56px; font-size: 20px; }
    .fc-reasons__item--reverse .fc-reasons__item-num { left: 0; right: auto; }
    .fc-reasons__item-body { padding: 24px 20px; }
    .fc-reasons__item-title { font-size: 20px; }

    .fc-market { padding: 60px 0; }
    .fc-market__grid { grid-template-columns: 1fr; }
    .fc-market__card { flex-direction: column; }
    .fc-market__card-img { flex: none; width: 100%; padding: 20px 20px 0; }
    .fc-market__card-img img { height: 140px; }
    .fc-market__card--wide .fc-market__card-img { flex: none; width: 100%; }
    .fc-market__card--wide .fc-market__card-img img { height: 160px; }
    .fc-market__card-body { padding: 20px 24px 28px; }
    .fc-market__card-number em { font-size: 40px; }

    .fc-sidejob { padding: 60px 0; }
    .fc-sidejob__facts { grid-template-columns: 1fr; }
    .fc-sidejob__fact { padding: 28px; }

    .fc-risk { padding: 48px 0; }

    .fc-local { padding: 60px 0; }

    .fc-whyai { padding: 60px 0; }
    .fc-whyai__item { grid-template-columns: 1fr; }
    .fc-whyai__item-num { font-size: 52px; }

    .fc-skills { padding: 60px 0; }
    .fc-skills__grid { grid-template-columns: repeat(2, 1fr); }
    .fc-skills__item:not(:nth-child(3n))::after { display: none; }
    .fc-skills__item:not(:nth-child(2n))::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: rgba(255, 255, 255, 0.12);
    }
    .fc-skills__item:nth-child(-n+3)::before { display: none; }
    .fc-skills__item:nth-child(-n+2)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: rgba(255, 255, 255, 0.12);
    }
    .fc-skills__item { padding: 16px; }

    .fc-revenue { padding: 60px 0 100px; }
    .fc-revenue__examples { grid-template-columns: 1fr; }
    .fc-revenue::after { height: 40px; }

    .fc-cert { padding: 120px 0 60px; }
    .fc-cert::before { height: 300px; }
    .fc-cert::after { top: 220px; width: 95%; height: 276px; border-radius: 24px 0 0 24px; }
    .fc-cert__lead-card { padding: 0 10px 28px; margin-bottom: 40px; border-radius: 20px; }
    .fc-cert__lead-card-title { font-size: 20px; }
    .fc-cert__lead-card-plus { width: 32px; height: 32px; font-size: 18px; }
    .fc-cert__lead-card-main-value { font-size: 36px; }
    .fc-cert__lead-card-banner { padding: 12px 32px; font-size: var(--font-size-sm); width: 80%; }
    .fc-cert__lead-card-icon-item { padding: 0 12px; }
    .fc-cert__lead-card-icon-item:not(:last-child)::after { width: 24px; top: 30px; }
    .fc-cert__lead-card-icon-circle { width: 60px; height: 60px; }
    .fc-cert__lead-card-icon-circle svg { width: 24px; height: 24px; }
    .fc-cert__grid { grid-template-columns: 1fr; gap: 12px; }
    .fc-cert__card { padding: 32px 24px; }
    .fc-cert__card,
    .fc-cert__card:first-child,
    .fc-cert__card:last-child { border-radius: 14px; border: 1px solid #E5E9F0; }

    .fc-voice { padding: 0; }
    .fc-voice::before,
    .fc-voice::after { height: 100px; }
    .fc-voice::before { bottom: 100%; }
    .fc-voice::after { top: 100%; }
    .fc-voice__list { gap: 24px; }
    .fc-voice__card { grid-template-columns: 1fr; gap: 20px; padding: 24px; text-align: center; }
    .fc-voice__card-photo { width: 160px; height: 160px; margin: 0 auto; }
    .fc-voice__card-header { align-items: center; }
    .fc-voice__card-text { text-align: left; }

    .fc-plans { padding: 60px 0; }
    .fc-plans .c-container { padding-top: 60px; }
    .fc-plans__panel { padding: 32px 20px 36px; }
    .fc-plans__price-row { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .fc-plans__price-amount { font-size: 40px; }
    .fc-plans__table td { padding: 14px 12px; font-size: 13px; }
    .fc-plans__table-price { font-size: 14px; min-width: 100px; }
    .fc-plans__tab-badge { padding: 12px 16px; font-size: 13px; }

    .fc-faq { padding: 60px 0; }
    .fc-faq__question { padding: 20px 24px; font-size: var(--font-size-sm); }
    .fc-faq__answer { padding: 0 24px 20px; }

    .fc-contact { padding: 48px 0; }
    .fc-contact__text br { display: none; }
    .fc-contact__form { margin-bottom: 24px; }
    .fc-contact__form .fc-form__field { margin-bottom: 18px; }
    .fc-contact__form input[type="text"] { padding: 6px 18px; }
    .fc-contact__form input[type="submit"] { padding: 16px 36px; font-size: 15px; }

    .fc-book-cover { padding: 30px 0; }
    .fc-book-cover::after { border-left-width: 40px; border-right-width: 40px; border-top-width: 24px; bottom: -20px; }
    .fc-mid-cta { padding: 40px 0; }
    .fc-mid-cta__actions { flex-direction: column; gap: 24px; }
    .fc-mid-cta__btn { padding: 16px 48px; font-size: 15px; }
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .fc-reasons__item-visual::before,
    .fc-reasons__item-img-wrap img,
    .fc-revenue__example,
    .fc-cert__card,
    .fc-voice__card,
    .fc-lp-header__cta,
    .fc-mv__btn,
    .fc-contact__form input[type="submit"],
    .fc-mid-cta__btn,
    .fc-sidejob__fact,
    .fc-local__point,
    .fc-market__card {
        transition: none !important;
    }
}