/* =========================================================
   KOROMO Academy LP  —  academy-lp.css
   基調：白 / 濃いネイビー / KOROMO水色 / 明るいブルー
========================================================= */

:root {
    --ac-navy: #0d2a4a;        /* 濃いネイビー */
    --ac-navy-2: #143a63;
    --ac-cyan: #29b6d8;        /* KOROMO 水色 */
    --ac-blue: #2f9de0;        /* 明るいブルー */
    --ac-blue-light: #eaf6fb;  /* 淡い水色背景 */
    --ac-blue-soft: #f4fafd;
    --ac-white: #ffffff;
    --ac-gray: #46586a;
    --ac-line: #e2ecf3;
    --ac-shadow: 0 12px 40px rgba(13, 42, 74, .10);
    --ac-shadow-sm: 0 6px 20px rgba(13, 42, 74, .08);
    --ac-radius: 22px;
}

/* ---- フェードイン ---- */
.ac-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.ac-fade.is-visible {
    opacity: 1;
    transform: none;
}

/* ---- 基本 ---- */
.ac-lp {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--ac-navy);
    background: var(--ac-white);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}
.ac-lp * { box-sizing: border-box; }

.ac-container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.ac-section {
    padding: clamp(56px, 8vw, 100px) 0;
}
.ac-section--tint { background: var(--ac-blue-soft); }
.ac-section--navy { background: var(--ac-navy); color: #fff; }

/* ---- セクション見出し ---- */
.ac-head {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 56px);
}
.ac-head-en {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 13px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ac-cyan);
    font-weight: 600;
    margin-bottom: 12px;
}
.ac-head-ja {
    font-size: clamp(24px, 4.2vw, 38px);
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}
.ac-section--navy .ac-head-ja { color: #fff; }
.ac-section--navy .ac-head-en { color: var(--ac-cyan); }

/* =========================================================
   ① ファーストビュー
========================================================= */
.ac-hero {
    background: linear-gradient(180deg, var(--ac-blue-light) 0%, #fff 100%);
    padding-top: 72px;   /* 固定ヘッダー(PC 72px)の下に画像が隠れないよう確保 */
    padding-bottom: clamp(30px, 5vw, 56px);
}
@media (max-width: 900px) {
    .ac-hero {
        padding-top: 64px; /* モバイル・タブレットのヘッダー高さ(64px)に合わせる */
    }
}
.ac-hero-img-wrap {
    width: 100%;
    line-height: 0;
}
.ac-hero-img {
    width: 100%;
    height: auto;
    display: block;
}
.ac-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: clamp(24px, 4vw, 40px);
}

/* ---- 丸みのある水色ボタン ---- */
.ac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 999px;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
    border: none;
    line-height: 1.4;
    text-align: center;
}
.ac-btn-primary {
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
    box-shadow: 0 10px 26px rgba(41, 182, 216, .38);
}
.ac-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(41, 182, 216, .5);
}
.ac-btn-outline {
    background: #fff;
    color: var(--ac-blue);
    border: 2px solid var(--ac-cyan);
}
.ac-btn-outline:hover {
    transform: translateY(-3px);
    background: var(--ac-blue-light);
}
.ac-btn-line {
    background: #06c755;
    color: #fff;
    box-shadow: 0 10px 26px rgba(6, 199, 85, .32);
}
.ac-btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(6, 199, 85, .45);
}
.ac-btn-lg {
    padding: 20px 52px;
    font-size: clamp(17px, 2.4vw, 21px);
}

/* =========================================================
   ② KOROMO Academyとは
========================================================= */
.ac-concept-lead {
    max-width: 760px;
    margin: 0 auto clamp(28px, 4vw, 40px);
    text-align: center;
    font-size: clamp(15px, 2vw, 17px);
    color: var(--ac-gray);
}
.ac-concept-lead strong { color: var(--ac-navy); }
.ac-concept-img-wrap {
    max-width: 900px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    border-radius: var(--ac-radius);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
    line-height: 0;
}
.ac-concept-img { width: 100%; height: auto; display: block; }

.ac-steps3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ac-step3-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 34px 26px;
    text-align: center;
    box-shadow: var(--ac-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.ac-step3-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ac-shadow);
}
.ac-step3-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}
.ac-step3-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
}
.ac-step3-card p {
    font-size: 14px;
    color: var(--ac-gray);
    margin: 0;
    line-height: 1.8;
}

/* =========================================================
   ③ 学べること
========================================================= */
.ac-contents-img-wrap {
    max-width: 940px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    border-radius: var(--ac-radius);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
    line-height: 0;
}
.ac-contents-img { width: 100%; height: auto; display: block; }

.ac-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.ac-cat-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 30px 28px;
    box-shadow: var(--ac-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.ac-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ac-shadow);
}
.ac-cat-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--ac-blue-light);
    color: var(--ac-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.ac-cat-en {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    color: var(--ac-cyan);
    font-weight: 600;
    margin-bottom: 6px;
}
.ac-cat-card h3 { font-size: 18px; margin: 0 0 8px; }
.ac-cat-card p { font-size: 14px; color: var(--ac-gray); margin: 0; line-height: 1.75; }

/* =========================================================
   ④ 動画コンテンツ（ネイビー背景）
========================================================= */
.ac-video-title {
    text-align: center;
    font-size: clamp(23px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 clamp(36px, 5vw, 52px);
}
.ac-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.ac-video-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--ac-radius);
    padding: 32px 22px;
    text-align: center;
}
.ac-video-item i {
    font-size: 34px;
    color: var(--ac-cyan);
    margin-bottom: 16px;
}
.ac-video-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #eaf2f8;
    line-height: 1.7;
}

/* =========================================================
   ⑤ こんな方におすすめ
========================================================= */
.ac-target-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.ac-target-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--ac-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.ac-target-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ac-shadow);
}
.ac-target-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.ac-target-card h3 { font-size: 18px; margin: 0 0 10px; }
.ac-target-card p { font-size: 13.5px; color: var(--ac-gray); margin: 0; line-height: 1.75; }

/* =========================================================
   ⑥ 講師紹介
========================================================= */
.ac-profile {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(30px, 5vw, 56px);
    align-items: center;
}
.ac-profile-img-wrap {
    border-radius: var(--ac-radius);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
    line-height: 0;
}
.ac-profile-img { width: 100%; height: auto; display: block; }
.ac-profile-name {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin: 0 0 4px;
}
.ac-profile-name small {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--ac-gray);
    letter-spacing: .06em;
    margin-top: 4px;
}
.ac-profile-role {
    color: var(--ac-blue);
    font-weight: 600;
    font-size: 16px;
    margin: 14px 0 4px;
}
.ac-profile-sub {
    font-size: 14px;
    color: var(--ac-gray);
    margin: 0 0 20px;
}
.ac-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}
.ac-profile-tags li {
    background: var(--ac-blue-light);
    color: var(--ac-navy-2);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 13.5px;
    font-weight: 600;
}
.ac-profile-text {
    font-size: 15px;
    color: var(--ac-gray);
    margin: 0;
}

/* =========================================================
   ⑦ 料金プラン
========================================================= */
.ac-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
    align-items: stretch;
}
.ac-plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 40px 32px 36px;
    box-shadow: var(--ac-shadow-sm);
    display: flex;
    flex-direction: column;
}
.ac-plan-card--reco {
    border: 2px solid var(--ac-cyan);
    box-shadow: 0 16px 44px rgba(41, 182, 216, .22);
}
.ac-plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 24px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(41, 182, 216, .4);
}
.ac-plan-name {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--ac-navy);
}
.ac-plan-name-ja {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--ac-gray);
    margin-top: 2px;
}
.ac-plan-price {
    text-align: center;
    margin: 20px 0 8px;
    color: var(--ac-navy);
}
.ac-plan-yen { font-size: 22px; font-weight: 700; vertical-align: 6px; }
.ac-plan-amount { font-size: 44px; font-weight: 700; font-family: Inter, sans-serif; }
.ac-plan-period { font-size: 14px; color: var(--ac-gray); }
.ac-plan-catch {
    text-align: center;
    font-size: 14px;
    color: var(--ac-gray);
    margin: 0 0 22px;
}
.ac-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.ac-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--ac-line);
}
.ac-plan-features li i.fa-check { color: var(--ac-cyan); margin-top: 4px; }
.ac-plan-features li i.fa-times { color: #c3cdd6; margin-top: 4px; }
.ac-plan-features li.is-off { color: #a9b4bd; }
.ac-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    color: var(--ac-blue);
    border: 2px solid var(--ac-cyan);
    transition: all .2s ease;
}
.ac-plan-btn:hover { background: var(--ac-blue-light); transform: translateY(-2px); }
.ac-plan-btn--primary {
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
    border: none;
    box-shadow: 0 10px 24px rgba(41, 182, 216, .36);
}
.ac-plan-btn--primary:hover { box-shadow: 0 14px 30px rgba(41, 182, 216, .5); }

/* =========================================================
   ⑧ ご利用の流れ
========================================================= */
.ac-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.ac-flow-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 34px 26px;
    text-align: center;
    box-shadow: var(--ac-shadow-sm);
    position: relative;
}
.ac-flow-step {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--ac-cyan);
    margin-bottom: 14px;
}
.ac-flow-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--ac-blue-light);
    color: var(--ac-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}
.ac-flow-card h3 { font-size: 18px; margin: 0; }

/* =========================================================
   ⑨ CTA
========================================================= */
.ac-cta-img-wrap {
    max-width: 1000px;
    margin: 0 auto clamp(30px, 5vw, 44px);
    border-radius: var(--ac-radius);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
    line-height: 0;
}
.ac-cta-img { width: 100%; height: auto; display: block; }
.ac-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 460px;
    margin: 0 auto;
}
.ac-cta-buttons .ac-btn { width: 100%; }

/* =========================================================
   ⑩ FAQ
========================================================= */
.ac-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.ac-faq-item {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--ac-shadow-sm);
}
.ac-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ac-navy);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}
.ac-faq-q i {
    flex: 0 0 auto;
    color: var(--ac-cyan);
    transition: transform .3s ease;
}
.ac-faq-item.is-open .ac-faq-q i { transform: rotate(45deg); }
.ac-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.ac-faq-a-inner {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--ac-gray);
    line-height: 1.85;
}

/* =========================================================
   レスポンシブ
========================================================= */
@media (max-width: 960px) {
    .ac-video-grid { grid-template-columns: repeat(2, 1fr); }
    .ac-target-grid { grid-template-columns: repeat(2, 1fr); }
    .ac-flow { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 760px) {
    .ac-steps3 { grid-template-columns: 1fr; }
    .ac-cat-grid { grid-template-columns: 1fr; }
    .ac-profile { grid-template-columns: 1fr; }
    .ac-plan-grid { grid-template-columns: 1fr; max-width: 420px; }
    .ac-hero-cta { flex-direction: column; align-items: stretch; padding: 0 6%; }
    .ac-hero-cta .ac-btn { width: 100%; }
}

@media (max-width: 480px) {
    .ac-target-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .ac-video-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .ac-cat-card { flex-direction: column; align-items: center; text-align: center; }
}

/* =========================================================
   ======  KOROMO Trainer Development  追加スタイル  ======
   （academy-lp.css の変数・ボタン・見出しをそのまま再利用）
========================================================= */

/* ---- ヒーロー：写真の上にコピーを重ねる ---- */
.td-hero {
    position: relative;
    padding-top: 72px;               /* 固定ヘッダー分 */
    background: linear-gradient(180deg, var(--ac-blue-light) 0%, #fff 100%);
}
.td-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
    padding-top: clamp(30px, 5vw, 56px);
    padding-bottom: clamp(40px, 6vw, 72px);
}
.td-hero-copy .ac-head-en { text-align: left; }
.td-hero-title {
    font-size: clamp(30px, 5.4vw, 52px);
    font-weight: 700;
    line-height: 1.3;
    margin: 6px 0 22px;
    color: var(--ac-navy);
}
.td-hero-title .td-accent {
    background: linear-gradient(transparent 62%, rgba(41,182,216,.28) 0);
}
.td-hero-lead {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--ac-gray);
    margin: 0 0 30px;
    line-height: 2;
}
.td-hero-lead strong { color: var(--ac-navy); font-weight: 700; }
.td-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.td-hero-img-wrap {
    border-radius: var(--ac-radius);
    overflow: hidden;
    box-shadow: var(--ac-shadow);
    line-height: 0;
}
.td-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
    .td-hero { padding-top: 64px; }
    .td-hero-inner { grid-template-columns: 1fr; }
    .td-hero-img-wrap { order: -1; max-height: 320px; }
}
@media (max-width: 480px) {
    .td-hero-cta { flex-direction: column; }
    .td-hero-cta .ac-btn { width: 100%; }
}

/* ---- 共通：セクションのリード文 ---- */
.td-lead {
    max-width: 760px;
    margin: 0 auto clamp(30px, 4vw, 46px);
    text-align: center;
    font-size: clamp(15px, 2vw, 17px);
    color: var(--ac-gray);
    line-height: 2;
}
.ac-section--navy .td-lead { color: #dbe8f2; }

/* ---- 大きな強調メッセージ（セクション末尾） ---- */
.td-statement {
    max-width: 900px;
    margin: clamp(36px, 5vw, 56px) auto 0;
    text-align: center;
    font-size: clamp(20px, 3.4vw, 30px);
    font-weight: 700;
    line-height: 1.7;
    color: var(--ac-navy);
}
.td-statement .td-accent { color: var(--ac-blue); }
.ac-section--navy .td-statement { color: #fff; }

/* =========================================================
   SECTION2  技術だけでは足りない（比較2カラム）
========================================================= */
.td-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 940px;
    margin: 0 auto;
    align-items: stretch;
}
.td-compare-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 34px 30px;
    box-shadow: var(--ac-shadow-sm);
}
.td-compare-card--reco {
    border: 2px solid var(--ac-cyan);
    box-shadow: 0 14px 40px rgba(41,182,216,.18);
    background: linear-gradient(180deg, #f4fbfd 0%, #fff 60%);
}
.td-compare-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.td-compare-card .td-compare-label { background: #eef2f5; color: var(--ac-gray); }
.td-compare-card--reco .td-compare-label {
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
}
.td-compare-card h3 { font-size: 19px; margin: 0 0 16px; color: var(--ac-navy); }
.td-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.td-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 15px;
    color: var(--ac-navy-2);
    border-bottom: 1px dashed var(--ac-line);
    line-height: 1.7;
}
.td-list li:last-child { border-bottom: none; }
.td-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--ac-cyan);
    font-size: 14px;
}
.td-compare-card .td-list li i { color: #b7c2cc; }

@media (max-width: 760px) {
    .td-compare { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION3  7つの力
========================================================= */
.td-skill-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* 7枚：4+3 の据わりを良くするため、下段3枚を中央寄せ */
.td-skill-grid .td-skill-card:nth-child(5) { grid-column: 1 / 2; }
.td-skill-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 28px 22px;
    box-shadow: var(--ac-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.td-skill-card:hover { transform: translateY(-6px); box-shadow: var(--ac-shadow); }
.td-skill-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.td-skill-num {
    flex: 0 0 auto;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.td-skill-icon { color: var(--ac-blue); font-size: 22px; }
.td-skill-en {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ac-cyan);
    letter-spacing: .02em;
    line-height: 1.35;
    margin-bottom: 3px;
}
.td-skill-card h3 { font-size: 16px; margin: 0 0 8px; color: var(--ac-navy); }
.td-skill-card p { font-size: 13.5px; color: var(--ac-gray); margin: 0; line-height: 1.75; }

.td-note {
    max-width: 760px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 13px;
    color: #8493a0;
    line-height: 1.8;
}
.td-note i { color: var(--ac-cyan); margin-right: 4px; }

@media (max-width: 900px) {
    .td-skill-grid { grid-template-columns: repeat(2, 1fr); }
    .td-skill-grid .td-skill-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 480px) {
    .td-skill-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* =========================================================
   SECTION4  3段階の成長モデル
========================================================= */
.td-levels {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 14px;
    max-width: 1040px;
    margin: 0 auto;
}
.td-level-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--ac-shadow-sm);
}
.td-level-badge {
    display: inline-block;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    color: #fff;
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.td-level-en {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ac-cyan);
    margin-bottom: 4px;
}
.td-level-card h3 { font-size: 18px; margin: 0 0 12px; color: var(--ac-navy); }
.td-level-card p { font-size: 14px; color: var(--ac-gray); margin: 0; line-height: 1.8; }
.td-level-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-cyan);
    font-size: 22px;
}
@media (max-width: 860px) {
    .td-levels { grid-template-columns: 1fr; }
    .td-level-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* =========================================================
   SECTION5  育成プロセス（縦フロー・強調）
========================================================= */
.td-process {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.td-process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: var(--ac-shadow-sm);
    position: relative;
}
.td-process-step--goal {
    border: 2px solid var(--ac-cyan);
    background: linear-gradient(135deg, var(--ac-navy), var(--ac-navy-2));
    box-shadow: 0 14px 36px rgba(13,42,74,.28);
}
.td-process-step--goal .td-process-title,
.td-process-step--goal .td-process-en { color: #fff; }
.td-process-step--goal .td-process-desc { color: #cfe0ee; }
.td-process-num {
    flex: 0 0 auto;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 17px;
    display: flex; align-items: center; justify-content: center;
}
.td-process-step--goal .td-process-num {
    background: #fff;
    color: var(--ac-navy);
}
.td-process-en {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ac-cyan);
    font-weight: 600;
    margin-bottom: 3px;
}
.td-process-title { font-size: 17px; font-weight: 700; margin: 0 0 5px; color: var(--ac-navy); }
.td-process-desc { font-size: 14px; color: var(--ac-gray); margin: 0; line-height: 1.7; }
.td-process-connector {
    width: 2px;
    height: 22px;
    margin: 6px 0 6px 46px;
    background: linear-gradient(var(--ac-cyan), var(--ac-blue));
    opacity: .5;
}
@media (max-width: 480px) {
    .td-process-step { padding: 18px 18px; gap: 14px; }
    .td-process-num { width: 40px; height: 40px; font-size: 15px; }
    .td-process-connector { margin-left: 40px; }
}

/* =========================================================
   SECTION6  現場で身につける3つの視点
========================================================= */
.td-view-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.td-view-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 32px 28px;
    box-shadow: var(--ac-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.td-view-card:hover { transform: translateY(-6px); box-shadow: var(--ac-shadow); }
.td-view-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--ac-blue-light);
    color: var(--ac-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.td-view-card h3 { font-size: 19px; margin: 0 0 16px; color: var(--ac-navy); }
.td-view-tags {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.td-view-tags li {
    background: var(--ac-blue-light);
    color: var(--ac-navy-2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
}
@media (max-width: 860px) {
    .td-view-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* =========================================================
   SECTION7  4 Principles
========================================================= */
.td-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.td-principle-card {
    background: #fff;
    border: 1px solid var(--ac-line);
    border-radius: var(--ac-radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--ac-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.td-principle-card:hover { transform: translateY(-6px); box-shadow: var(--ac-shadow); }
.td-principle-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ac-cyan), var(--ac-blue));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}
.td-principle-en {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ac-cyan);
    margin-bottom: 4px;
}
.td-principle-card h3 { font-size: 16px; margin: 0 0 10px; color: var(--ac-navy); }
.td-principle-card p { font-size: 13.5px; color: var(--ac-gray); margin: 0; line-height: 1.75; }
@media (max-width: 860px) {
    .td-principle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
    .td-principle-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* =========================================================
   SECTION8  未来（ネイビー背景＋画像）
========================================================= */
.td-future {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 56px);
    align-items: center;
}
.td-future-copy h2 {
    font-size: clamp(23px, 3.6vw, 34px);
    line-height: 1.5;
    margin: 12px 0 22px;
    color: #fff;
}
.td-future-copy p {
    font-size: clamp(15px, 2vw, 16px);
    color: #cfe0ee;
    line-height: 2;
    margin: 0 0 16px;
}
.td-future-copy .td-quote {
    display: block;
    font-size: clamp(18px, 2.6vw, 22px);
    font-weight: 700;
    color: var(--ac-cyan);
    margin: 22px 0;
    line-height: 1.6;
}
.td-future-img-wrap {
    border-radius: var(--ac-radius);
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0,0,0,.3);
    line-height: 0;
}
.td-future-img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
    .td-future { grid-template-columns: 1fr; }
    .td-future-img-wrap { order: -1; max-height: 300px; }
}

/* =========================================================
   SECTION9  CTA
========================================================= */
.td-cta {
    text-align: center;
}
.td-cta .td-lead { margin-bottom: 30px; }
.td-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 460px;
    margin: 0 auto;
}
.td-cta-buttons .ac-btn { width: 100%; }

