/* Variables */
:root {
    --color-accent: #2995DB;
    /* Accent Color */
    --color-main: #222222;
    /* Main Black */
    --color-text: #444444;
    /* Body Text */
    --color-bg: #FFFFFF;
    /* Base White */
    --color-light-gray: #f5f7fa;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    --sp-accent: #2995DB;
    --sp-accent-light: #2995DB;
    --sp-bg-card: #222222;
    --font-en: #ffffff;
    --sp-text-white: #ffffff;
}

/* =========================
   Site Loader
========================= */

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    /* 初期状態は必ず見える */
    opacity: 1;
    visibility: visible;

    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.site-loader__logo {
    width: 100px;
    /* 画質対策で小さめ固定 */
    max-width: 120px;
    height: auto;
    display: block;
}

/* ===== spinner ===== */
.site-loader__spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid #e5e5e5;
    border-top-color: #111;

    /* SPでも止まらない指定 */
    animation: siteLoaderSpin 0.8s linear infinite;
    will-change: transform;
}

@keyframes siteLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* 消える状態（JSで付与） */
.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* iOS / SP の motion 制限でも回す */
@media (prefers-reduced-motion: reduce) {
    .site-loader__spinner {
        animation: siteLoaderSpin 1s linear infinite;
    }
}



/* body scroll lock */
body.is-fixed {
    overflow: hidden;
}


/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-jp);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.concept__image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 角丸の本体 */
.concept__image .img-placeholder {
    display: block;
    width: 100%;
    max-width: 30rem;
    padding: 1rem;


    overflow: hidden;

    /* ★ 透過PNG対策：必須 */
    background: #ffffff;

    box-sizing: border-box;
}

/* 画像は中身として100%従わせる */
.concept__image .img-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
}




/* Utilities */
.container {
    width: 90%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1200px;
}


.text-white {
    color: #fff !important;
}

/* Section Headers */
.section {
    padding: 100px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section__header {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.section__en {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0;
}

.section__jp {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: linear-gradient(90deg, #111, var(--c-accent));
}



/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header__inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-main);
}

.header__nav {
    display: none;
    /* Mobile first hidden, show on desktop */
}

.header__cta {
    background: var(--color-accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.header__cta:hover {
    background: #1a7bbd;
    transform: translateY(-2px);
}

/* =========================
   Hero Section
   ========================= */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    /* 縦中央 */
    justify-content: center;
    /* 横中央 */
    text-align: center;
    overflow: hidden;
}

/* 背景 */
.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../images/first_view.png') center center / cover no-repeat;
    z-index: 1;
    opacity: 0.7;
}

/* 中身 */
.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    font-weight: 800;
    animation: fadeUp 1.5s ease;
    color: #000;
}

/* =========================
   SP調整
   ========================= */

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        /* ← SPではここだけ変える */
    }

    .hero__bg {
        background-position: center center;
        /* 注目領域を上下中央 */
    }

    .hero__content {
        padding: 0 16px;
    }
}

.hero__sub {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    opacity: 0.9;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.hero__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero__desc {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    font-weight: 600;
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.2em;
    z-index: 2;
}

.hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: #fff;
    margin: 8px auto 0;
    animation: scrollLine 2s infinite;
}



.front__section__header {
    margin-right: auto;
    margin-left: auto;
}

/* =========================
   service List
========================= */

.front-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 70rem;
}

/* =========================
   Responsive（SP）
========================= */

@media (max-width: 768px) {

    /* service list */
    .front-service-list {
        grid-template-columns: 1fr;
        gap: 1 rem;
    }


}

.service-item {
    background: transparent;
    padding: 30px;
    border-radius: 1rem;
    color: var(--color-main);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    /* or min-height */
    gap: 0.5rem;
    border: 1px solid var(--color-main);
}

.service-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.1rem;
}

.service-item h5 {
    font-size: 18px;
    font-weight: 700;
}

.service-item p {
    line-height: 1.8;
}

/* セクション全体 */
.market-section {
    background-color: #ffffff;
    /* 全体背景は白 */
    font-family: var(--font-jp);
    box-sizing: border-box;
    overflow: hidden;
}

.sp-container {
    padding: 5%;
    /* スマホ幅の最大値目安 */
    margin: 0 auto;
    position: relative;
}

.pc-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ============================
   表示切り替え（SP / PC・iPad）
   ============================ */

/* デフォルト：SP想定 */
.sp-container {
    display: block;
}

.pc-container {
    display: none;
}

/* 768px以上（iPad / PC） */
@media screen and (min-width: 768px) {
    .sp-container {
        display: none;
    }

    .pc-container {
        display: block;
    }
}

/* --- 1. CAGR Bubble (上の吹き出し) --- */
.cagr-wrapper {
    padding-left: 12px;
    /* 線の位置に合わせる調整 */
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cagr-bubble {
    display: inline-flex;
    align-items: baseline;
    background: var(--sp-accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(41, 149, 219, 0.3);
    position: relative;
}

/* 吹き出しのしっぽ（下向き三角） */
.cagr-bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 20px;
    /* 線の真上に来るように調整 */
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: var(--sp-accent) transparent transparent transparent;
}

.cagr-label {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 14px;
    margin-right: 8px;
}

.cagr-figure {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
}

.cagr-figure small {
    font-size: 14px;
    font-weight: 700;
    margin-left: 2px;
}

/* --- 2. Timeline Body --- */
.timeline-body {
    position: relative;
    padding-top: 10px;
    padding-bottom: 40px;
}

/* 垂直の青い太線 */
.vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    /* 左端からの距離 */
    width: 8px;
    /* 線の太さ */
    background-color: var(--sp-accent);
    border-radius: 4px;
    z-index: 0;
}

/* 各アイテムのラッパー */
.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    /* 上揃え */
    margin-bottom: 40px;
    /* カード間の余白 */
    z-index: 1;
}

/* 最後のアイテムは余白なし */
.timeline-item:last-child {
    margin-bottom: 0;
}

/* 丸いドット */
.timeline-dot {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: var(--sp-accent);
    border-radius: 50%;
    margin-left: 20px;
    /* 線の中心に合わせる（線left:28px, 線幅8px => 中心32px。ドット幅24px => 左余白20pxで中心32px） */
    margin-top: 30px;
    /* カードの矢印位置に合わせる調整 */
    box-shadow: 0 0 0 4px #ffffff;
    /* 白い縁取りで線を区切るように見せる */
}

/* --- Market Card (黒いカード) --- */
.market-card {
    flex-grow: 1;
    background-color: var(--sp-bg-card);
    color: var(--sp-text-white);
    border-radius: 12px;
    padding: 24px;
    margin-left: 24px;
    /* ドットとの距離 */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* カード左側の吹き出し三角 */
.card-arrow {
    position: absolute;
    top: 36px;
    /* ドットの高さに合わせる */
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid var(--sp-bg-card);
    /* カードと同じ色 */
}

/* Current / Forecast ラベル */
.card-sub {
    display: block;
    font-family: var(--font-en);
    color: var(--sp-accent);
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 4px;
}

/* 年号 */
.card-year {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
    /* グレーの下線 */
    line-height: 1;
}

/* 数字エリア */
.figure-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.figure-num {
    font-family: var(--font-en);
    font-size: 60px;
    /* インパクトのあるサイズ */
    font-weight: 700;
    line-height: 0.9;
}

.figure-unit {
    font-size: 14px;
    font-weight: 700;
    margin-left: 6px;
}

/* 説明文 */
.card-desc {
    font-size: 13px;
    color: var(--sp-text-gray);
    margin: 0;
    line-height: 1.5;
}

/* --- Target Market Badge (2033年用) --- */
.card-forecast {
    position: relative;
    border: 1px solid #333;
    /* 少し明るい枠線 */
}

.target-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(90deg, var(--sp-accent), var(--sp-accent-light));
    color: #fff;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(41, 149, 219, 0.4);
}

/* テキストグラデーション (2.5兆円部分) */
.text-gradient {
    background: linear-gradient(180deg, #ffffff 0%, var(--sp-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 強調文字 */
.highlight {
    color: var(--sp-accent-light);
    font-weight: 700;
}


/* Market Section (Dynamic Design) */

/* --- Base Settings --- */
:root {
    --c-bg: #ffffff;
    --c-card-bg: #111111;
    /* メインの黒 */
    --c-card-accent: #000000;
    /* より深い黒 */
    --c-accent: #2995DB;
    /* 指定ブルー */
    --c-accent-light: #6bc4ff;
    --c-text-gray: #b0b0b0;
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Montserrat", sans-serif;
}

.u-mobile {
    display: block;
}

@media (min-width: 768px) {
    .u-mobile {
        display: none;
    }
}




/* 背景の装飾（薄いグレーの巨大な文字など） */
.market__bg-decor {
    position: absolute;
    top: -5%;
    right: -5%;
    font-size: 400px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    font-family: var(--font-en);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* --- Header --- */
.section__header {
    text-align: center;
    margin-bottom: 1rem;
}

.section__en {
    display: block;
    font-family: var(--font-en);
    color: var(--c-accent);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 14px;
    margin-bottom: 0;
}

.section__jp {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.4;
}


.section__desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .section__jp {
        font-size: 42px;
    }
}


/* --- Timeline Wrapper --- */
.timeline-wrapper {
    position: relative;
    padding: 40px 0;
    margin-bottom: 60px;
}

/* --- Dynamic Route Line (Timeline) --- */

/* --- Timeline / Route Map Line --- */

.route-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    /* 点のサイズに合わせて高さを確保 */
    transform: translateY(-200%);
    z-index: 10;
    /* カード(z-index:1以上)よりは後ろ、背景よりは前 */
    pointer-events: none;
    /* 線が重なってもクリックを邪魔しない */
    border-radius: 3rem;
}

/* 1. 画面を貫く線 (The Track) */
.route-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* 画面幅いっぱい (Viewport Width) に突き抜ける設定 */
    width: 100vw;
    height: 4px;
    border-radius: 3rem;
}


/* --- Timeline Nodes (Points) --- */
.timeline-node {
    display: flex;

    /* 1. 子要素を垂直（縦）に並べる */
    flex-direction: column;

    /* 2. 横軸方向（主軸が縦になったので、交差軸は横）で中央寄せにする */
    align-items: center;

    /* 補足: 既に指定されていた主軸方向での中央寄せ（この場合は無視されることが多いが念のため） */
    justify-content: center;
}



/* The Dot ● */
.node-dot {
    width: 3rem;
    height: 3rem;
    background-color: var(--c-accent);
    border-radius: 50%;
    z-index: 11;
    flex-shrink: 0;
}

/* 2024年 (Node 1): 全体の幅の 1/3 の位置に配置 */
.timeline-node.node-start .node-dot {
    /* 親要素 (.timeline-node) の左端から全体の1/3の位置へ移動 */
    left: calc(33.33% - 10px);
    /* 10px はドットの幅の半分 (20px/2) で微調整 */
}

/* 2033年 (Node 2): 全体の幅の 2/3 の位置に配置 */
.timeline-node.node-end .node-dot {
    /* 親要素 (.timeline-node) の右端から全体の1/3の位置へ移動 (つまり左から2/3) */
    left: calc(66.66% - 10px);
    /* 10px はドットの幅の半分で微調整 */
}

/* ⚡️ 共通設定（SPファースト：デフォルトは1列） */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 768px) {
    .timeline-grid {
        /* PCでは横に2列に並べる */
        grid-template-columns: 1fr 1fr;
    }
}

/* PCレイアウト用のグリッドの変更 */
@media (min-width: 992px) {


    /* Node 1: ドットを左端に寄せておく */
    .timeline-node.node-start {
        justify-content: flex-start;
    }

    /* Node 3: ドットを右端に寄せておく */
    .timeline-node.node-end {
        justify-content: flex-end;
    }
}

/* --- Mobile (Vertical Layout) --- */
@media (max-width: 991px) {
    .route-line {
        /* スマホでは縦向きに配置 */
        top: 0;
        bottom: 0;
        left: 32px;
        /* ドットの垂直ライン位置 */
        right: auto;
        width: 20px;
        height: auto;
        transform: none;
    }

    /* 縦の線 */
    .route-line::before {
        width: 4px;
        height: 150%;
        /* 上下に十分長く突き抜ける */
    }


    /* 縦の点 */
    .route-line::after {
        /* 縦並びの座標指定 */
        background-position:
            50% 5%,
            /* 上端付近 */
            50% 15%,
            50% 25%,
            50% 35%,
            50% 45%,
            50% 55%,
            50% 65%,
            50% 75%,
            50% 85%,
            50% 95%;
        /* 下端付近 */
        /* ※スマホレイアウトのカード間隔に合わせて微調整してください */
    }
}

/* 進行方向を示す色のついたライン（グラデーション） */
.route-line__progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* アニメーションさせるならここを0->100% */
    height: 100%;
    background: var(--c-accent);
    border-radius: 4rem;
}



/* モバイル：ドットは左端、線は縦 */
@media (max-width: 991px) {


    .route-line__progress {
        display: none;
    }

    /* 縦書き用のグラデに変更したため */

    .timeline-node {
        justify-content: flex-start;
        /* ドット分の余白 */
    }

    .node-dot {
        left: 20px;
        top: 50%;
        transform: translateY(-100%);
    }
}

/* PC: ドットはカードの上部または下部に配置 */
@media (min-width: 992px) {
    .node-dot {
        top: 50%;
        left: 50%;
        transform: translateY(-110%);
    }

    /* Node 1: 左側 */
    .node-start {
        justify-content: flex-start;
    }

    /* Node 3: 右側 */
    .node-end {
        justify-content: flex-end;
    }
}


/* --- Cards Styling --- */
.stat-card {
    background-color: var(--c-card-bg);
    color: #fff;
    border-radius: 1rem;
    padding: 32px;
    width: 100%;
    max-width: 380px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: -2rem;
    /* 三角をカード上に突き出す */
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid transparent;
    border-bottom: 2rem solid var(--c-card-bg);
    /* カードと同色 */
}

.stat-card:hover {
    transform: translateY(-10px);
}

/* Future Card (2033) - Emphasis */
.stat-card--future {
    background-color: var(--c-card-accent);
    border: 1px solid #2995db4d;
    padding: 40px 32px;
    /* 少し大きく */
}

/* Glow Effect for Future Card */
.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(41, 149, 219, 0.15);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.card-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #2995db4d, var(--c-accent-light));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 2rem;
    letter-spacing: 0.05em;
    font-family: var(--font-en);
}

/* Card Content */
.card-header {
    margin-bottom: 0.5rem;
    border-bottom: 2px solid rgb(128, 128, 128);
    padding-bottom: 0.5rem;
}

.year-label {
    display: block;
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--c-accent);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-en);
    /* 数字を強調 */
}

.figure-group {
    display: flex;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 12px;
}

.figure {
    font-family: var(--font-en);
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-card--future .figure {
    background: linear-gradient(135deg, #fff, var(--c-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.unit {
    font-size: 18px;
    font-weight: 700;
    margin-left: 8px;
}

.card-note {
    font-size: 1.5rem;
    color: var(--c-text-gray);
    margin: 0;
}

.highlight {
    color: var(--c-accent);
    font-weight: 700;
}


/* --- Bridge: Growth Bubble (The Speech Bubble) --- */
.timeline-bridge {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 20px 0;
}

@media (max-width: 991px) {

    /* モバイルではカードの間に配置 */
    .timeline-bridge {
        padding-left: 80px;
        justify-content: flex-start;
    }
}

.growth-bubble {
    background: var(--c-accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 20px rgba(41, 149, 219, 0.3);
    animation: float 3s ease-in-out infinite;
    min-width: 200px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* 吹き出しのしっぽ（三角） */
.growth-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* モバイル：しっぽは左（線に向かう） */
@media (max-width: 991px) {
    .growth-bubble::after {
        left: -10px;
        top: 50%;
        transform: translateY(-100%);
        border-width: 10px 10px 10px 0;
    }
}

/* PC：しっぽは下（線に向かう） */
@media (min-width: 992px) {
    .growth-bubble {
        transform: translateY(-20px);
        /* 線の上に浮かす */
    }

    .growth-bubble::after {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 10px 10px 0 10px;
        border-color: var(--c-accent) transparent transparent transparent;
    }
}

.bubble-content {
    display: flex;
    flex-direction: row;
    align-items: end;
}

.bubble-label {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 2px;
    font-family: var(--font-en);
}

.bubble-figure {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.bubble-figure small {
    font-size: 14px;
    margin-left: 2px;
}


/* --- Footer --- */
.market__footer {
    text-align: center;
    margin-top: 60px;
}

.market__footer p {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 24px;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--c-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.btn-arrow:hover {
    border-bottom-color: var(--c-accent);
}

.btn-arrow .arrow-icon {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-arrow:hover .arrow-icon {
    transform: translateX(5px);
}



/* Mission Section */
.mission__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 70rem;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--color-main);
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.mission__summary {
    background: var(--color-light-gray);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--color-main);
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--color-accent);
    /* Slight arrow animation */
}

.btn-primary .arrow {
    margin-left: 10px;
    transition: margin 0.3s;
}

/* CTA Section */
.cta {
    background: var(--color-light-gray);
    text-align: center;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


/* Utilities */
.container {
    width: 90%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1200px;
}

.cta__title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--color-main);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-cta {
    display: block;
    width: 280px;
    padding: 20px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-cta--tel {
    background: #fff;
    border: 2px solid var(--color-main);
    color: var(--color-main);
}

.btn-cta--mail {
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
    color: #fff;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--color-main);
    color: #fff;
    padding: 60px 0 20px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer__links {
    display: flex;
    gap: 30px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Responsive PC Settings */
@media (min-width: 768px) {
    .header__nav {
        display: block;
    }

    .header__list {
        display: flex;
        gap: 30px;
        font-weight: 700;
        font-size: 14px;
    }

    .hero__title {
        font-size: 4rem;
    }

    .concept__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .concept__text {
        order: 1;
    }

    .concept__image {
        order: 2;
    }

    .mission__inner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}