/* =========================
   You can code LP - Hero (CLEAN)
   ========================= */
/* =========================
   You can Code LP - Global
   ========================= */

:root {
    --ycc-accent: #1cb5e0;
    --ycc-accent-2: #00c9a7;
    --ycc-orange: #ff7a18;
    --ycc-dark: #0f2d40;
    --ycc-text: #445b6b;
}

/* 共通コンテナ */
.ycc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション共通 */
.ycc-section {
    position: relative;
    padding: clamp(70px, 8vw, 120px) 0;
}

/* セクションタイトル共通 */
.ycc-section__title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
    color: var(--ycc-dark);
}



/* ===== Hero ===== */
.ycc-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* 左寄せ */
    overflow: hidden;
    color: #fff;
}

.ycc-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* 画像（アイキャッチ） */
.ycc-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    filter: brightness(1.08) contrast(1.03);
}

/* アイキャッチ未設定のとき用（任意） */
.ycc-hero__imgFallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, #1cb5e0, #00c9a7);
}

/* 画像の上にかぶせるシェード（明るめ青緑） */
.ycc-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(600px 300px at 20% 30%, rgba(255, 255, 255, 0.14), transparent 65%),
        linear-gradient(120deg, rgba(28, 181, 224, 0.42), rgba(0, 201, 167, 0.42));
}

/* 中身：左インデントで整列 */
.ycc-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    width: 100%;
    padding: 0 20px;
    margin-left: clamp(16px, 6vw, 80px);
    text-align: left;
}

.ycc-hero__kicker {
    font-size: clamp(14px, 1.3vw, 16px);
    letter-spacing: .04em;
    opacity: .95;
    margin: 0 0 14px;
}

.ycc-hero__title {
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .01em;
    margin: 0 0 18px;
}

/* 強調は「自分で考える力」「学習習慣」だけ */
.ycc-hero__strong {
    color: #ffe66d;
    font-weight: 900;
    text-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}

.ycc-hero__lead {
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.85;
    font-weight: 600;
    opacity: .95;
    margin: 0 0 26px;
}

/* CTA */
.ycc-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.ycc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s;
    line-height: 1;
}

.ycc-btn--cta {
    background: #ff7a18;
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 122, 24, .35);
}

.ycc-btn--cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.ycc-btn--ghost {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .38);
}

.ycc-btn--ghost:hover {
    background: rgba(255, 255, 255, .26);
}

/* Hero内の強調をさらに自然に */
.ycc-hero__strong {
    color: #ffe66d;
    font-weight: 900;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

/* ヒーローのCTAを少しだけ強化 */
.ycc-btn--cta {
    background: var(--ycc-orange);
    box-shadow: 0 18px 40px rgba(255, 122, 24, .35);
}

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

/* スマホ：左インデント控えめ */
@media (max-width: 768px) {
    .ycc-hero__inner {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    /* 全体のシェードを少し濃く */
    .ycc-hero__shade {
        background:
            radial-gradient(520px 260px at 18% 24%, rgba(255, 255, 255, .12), transparent 65%),
            linear-gradient(120deg, rgba(28, 181, 224, .52), rgba(0, 201, 167, .52)),
            linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .35));
    }

    /* テキストの背面に“読みやすい板”を敷く */
    .ycc-hero__inner {
        margin-left: 0;
        padding: 18px 16px;
        max-width: 560px;
        background: rgba(0, 0, 0, .22);
        backdrop-filter: blur(6px);
        border-radius: 18px;
    }

    /* タイトルを少し小さく、行間広め */
    .ycc-hero__title {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.25;
        margin-bottom: 12px;
    }

    /* リードは短く見せる（2行程度） */
    .ycc-hero__lead {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    /* CTAは1列で押しやすく */
    .ycc-hero__actions {
        gap: 10px;
    }

    .ycc-btn {
        width: 100%;
        padding: 16px 18px;
        font-size: 16px;
    }

    /* 2個目ボタンがあるならスマホでは隠す案 */
    .ycc-btn--ghost {
        display: none;
    }
}

.ycc-only-sp {
    display: none;
}

@media (max-width:768px) {
    .ycc-only-pc {
        display: none;
    }

    .ycc-only-sp {
        display: inline;
    }
}

/* =========================
   Problem Section
   ========================= */

.ycc-problem {
    background:
        linear-gradient(to bottom, #ffffff, #f4f9fc);
}

.ycc-problem__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: 24px;
}

.ycc-problem__lead {
    font-size: 18px;
    line-height: 1.9;
    color: var(--ycc-text);
    margin-bottom: 60px;
}

.ycc-problem__lead strong {
    color: var(--ycc-accent);
    font-weight: 800;
}

/* グリッド */
.ycc-problem__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ycc-problem__item {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s ease;
}

.ycc-problem__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ycc-problem__bottom {
    margin-top: 60px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
}

/* スマホ */
@media (max-width: 768px) {
    .ycc-problem__grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   Philosophy Section
   ========================= */

.ycc-philosophy {
    background: linear-gradient(135deg, #f8fbff, #eef7fc);
}

.ycc-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.ycc-philosophy__item {
    background: #ffffff;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    transition: .3s ease;
    position: relative;
}

/* 上部にアクセントライン追加 */
.ycc-philosophy__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--ycc-accent), var(--ycc-accent-2));
    border-radius: 20px 20px 0 0;
}

.ycc-philosophy__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.ycc-philosophy__item h3 {
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--ycc-dark);
}

.ycc-philosophy__item p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ycc-text);
}

/* スマホ */
@media (max-width: 900px) {
    .ycc-philosophy__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Step Section
   ========================= */
.ycc-step {
    padding: clamp(70px, 8vw, 120px) 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.ycc-step__kicker {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0f6b86;
    font-weight: 800;
    margin: 0 0 10px;
}

.ycc-step__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.35;
    color: #0f2d40;
    margin: 0 0 clamp(28px, 4vw, 48px);
}

.ycc-step__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.5vw, 28px);
}

.ycc-step__card {
    background: #fff;
    border-radius: 18px;
    padding: clamp(22px, 2.5vw, 32px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .06);
    border: 1px solid rgba(15, 45, 64, .08);
    transition: .25s ease;
}

.ycc-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .09);
}

.ycc-step__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    color: #0f2d40;
    background: rgba(28, 181, 224, .14);
    padding: 6px 10px;
    border-radius: 999px;
    margin: 0 0 14px;
}

.ycc-step__h3 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.4;
    color: #0f2d40;
    margin: 0 0 10px;
}

.ycc-step__p {
    font-size: 16px;
    line-height: 1.9;
    color: #445b6b;
    margin: 0;
    font-weight: 600;
}

/* 強調カード：未来感を少しだけ */
.ycc-step__card--highlight {
    background: linear-gradient(120deg, rgba(28, 181, 224, .10), rgba(0, 201, 167, .10));
    border-color: rgba(28, 181, 224, .22);
}

.ycc-step__note {
    margin-top: 22px;
    color: #5b7486;
    font-size: 14px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
    .ycc-step__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Roadmap Section
   ========================= */
.ycc-roadmap {
    padding: clamp(70px, 8vw, 120px) 20px;
    background: #ffffff;
}

.ycc-roadmap__kicker {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0f6b86;
    font-weight: 900;
    margin: 0 0 10px;
}

.ycc-roadmap__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.35;
    color: #0f2d40;
    margin: 0 0 14px;
}

.ycc-roadmap__lead {
    font-size: 16px;
    line-height: 1.9;
    color: #445b6b;
    font-weight: 600;
    margin: 0 0 clamp(24px, 3vw, 40px);
}

.ycc-roadmap__layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 32px);
    align-items: start;
}

/* 図解側 */
.ycc-roadmap__figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .08);
    border: 1px solid rgba(15, 45, 64, .08);
    background: linear-gradient(120deg, rgba(28, 181, 224, .10), rgba(0, 201, 167, .10));
}

.ycc-roadmap__img {
    display: block;
    width: 100%;
    height: auto;
}

/* 説明側 */
.ycc-roadmap__content {
    display: grid;
    gap: 14px;
}

.ycc-roadmap__block {
    background: #fff;
    border-radius: 16px;
    padding: 18px 18px;
    border: 1px solid rgba(15, 45, 64, .08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.ycc-roadmap__block--highlight {
    background: linear-gradient(120deg, rgba(28, 181, 224, .10), rgba(0, 201, 167, .10));
    border-color: rgba(28, 181, 224, .22);
}

.ycc-roadmap__badge {
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    color: #0f2d40;
    background: rgba(28, 181, 224, .14);
    padding: 6px 10px;
    border-radius: 999px;
    margin: 0 0 10px;
}

.ycc-roadmap__h3 {
    font-size: 18px;
    font-weight: 900;
    color: #0f2d40;
    margin: 0 0 8px;
    line-height: 1.45;
}

.ycc-roadmap__p {
    font-size: 15px;
    line-height: 1.85;
    color: #445b6b;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 900px) {
    .ycc-roadmap__layout {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Middle School Step-up Section
   ========================= */

.ycc-middle {
    padding: clamp(60px, 8vw, 120px) 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.ycc-middle .ycc-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ycc-middle__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 18px;
    color: #0f2d40;
    text-align: center;
}

.ycc-middle__lead {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.9;
    color: #445b6b;
    font-weight: 600;
    margin: 0 auto clamp(28px, 4vw, 48px);
    max-width: 820px;
    text-align: center;
}

.ycc-middle__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.6vw, 28px);
}

.ycc-middle__card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: clamp(22px, 2.8vw, 34px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .07);
    border: 1px solid rgba(28, 181, 224, 0.10);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}

/* うっすらアクセント（左上に光） */
.ycc-middle__card::before {
    content: "";
    position: absolute;
    inset: -40% -30% auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%,
            rgba(28, 181, 224, .18),
            rgba(0, 201, 167, .10),
            transparent 65%);
    transform: rotate(18deg);
    pointer-events: none;
}

.ycc-middle__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .09);
    border-color: rgba(28, 181, 224, 0.22);
}

.ycc-middle__card h3 {
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #0f2d40;
}

.ycc-middle__card p {
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    color: #445b6b;
    font-weight: 600;
}

/* カード内の“ポイント”を強調したい時用 */
.ycc-middle__card strong {
    color: #1cb5e0;
    font-weight: 900;
}

/* ===== Tablet / Mobile ===== */
@media (max-width: 980px) {
    .ycc-middle__grid {
        grid-template-columns: 1fr;
    }

    .ycc-middle__title,
    .ycc-middle__lead {
        text-align: left;
    }

    .ycc-middle__lead {
        margin-left: 0;
        margin-right: 0;
    }
}


/* =========================
   Continuous Gallery FIX
   ========================= */

.ycc-gallery {
    overflow: hidden;
    padding: 80px 0;
    background: #f8fbff;
}

.ycc-gallery__slider {
    overflow: hidden;
}

.ycc-gallery__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: ycc-scroll 35s linear infinite;
}

.ycc-gallery__track img {
    flex: 0 0 auto;
    width: 320px;
    /* ← ここでサイズ制御 */
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: block;
}

/* 無限ループ */
@keyframes ycc-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ホバーで停止（PCのみ） */
@media (hover: hover) {
    .ycc-gallery__track:hover {
        animation-play-state: paused;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .ycc-gallery__track img {
        width: 240px;
        height: 170px;
    }
}

/* =========================
   Voice Section
   ========================= */

.ycc-voice {
    padding: clamp(70px, 8vw, 120px) 20px;
    background: #ffffff;
}

.ycc-voice__title {
    text-align: center;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
    color: #0f2d40;
}

.ycc-voice__lead {
    text-align: center;
    font-size: 18px;
    color: #556;
    margin-bottom: 60px;
    line-height: 1.8;
}

.ycc-voice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ycc-voice__card {
    background: #f8fbff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.ycc-voice__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.ycc-voice__text {
    font-size: 16px;
    line-height: 1.9;
    color: #334;
    margin-bottom: 18px;
}

.ycc-voice__meta {
    font-size: 14px;
    font-weight: 700;
    color: #1cb5e0;
}

/* スマホ */
@media (max-width: 900px) {
    .ycc-voice__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Result Section
   ========================= */

.ycc-result {
    padding: clamp(70px, 8vw, 120px) 20px;
    background: linear-gradient(135deg, #f5fbff, #f0fff9);
    text-align: center;
}

.ycc-result__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
    color: #0f2d40;
}

.ycc-result__lead {
    font-size: 18px;
    line-height: 1.8;
    color: #556;
    margin-bottom: 60px;
}

.ycc-result__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.ycc-result__item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.ycc-result__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.ycc-result__number {
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 900;
    color: #1cb5e0;
    margin-bottom: 14px;
    line-height: 1;
}

.ycc-result__number span {
    font-size: 0.6em;
}

.ycc-result__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #445b6b;
    font-weight: 600;
}

/* スマホ */
@media (max-width: 900px) {
    .ycc-result__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================
   Price Section
   ========================= */

.ycc-price {
    padding: clamp(70px, 8vw, 120px) 20px;
    background: #ffffff;
    text-align: center;
}

.ycc-price__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
    color: #0f2d40;
}

.ycc-price__lead {
    font-size: 18px;
    line-height: 1.8;
    color: #556;
    margin-bottom: 60px;
}

/* グリッド */
.ycc-price__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

/* カード */
.ycc-price__card {
    background: #f8fbff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: .3s ease;
    position: relative;
}

.ycc-price__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.ycc-price__card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ycc-price__amount {
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 900;
    color: #1cb5e0;
    margin-bottom: 10px;
}

.ycc-price__amount span {
    font-size: 0.5em;
}

.ycc-price__meta {
    font-size: 16px;
    color: #445b6b;
    font-weight: 600;
}

/* おすすめ */
.ycc-price__card--recommended {
    background: linear-gradient(135deg, #1cb5e0, #00c9a7);
    color: #fff;
    transform: scale(1.05);
}

.ycc-price__card--recommended .ycc-price__amount {
    color: #fff;
}

.ycc-price__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7a18;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* 入会金 */
.ycc-price__entry {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.8;
}

.ycc-price__discount {
    display: inline-block;
    margin-top: 12px;
    font-size: 22px;
    font-weight: 900;
    color: #ff7a18;
}

/* スマホ */
@media (max-width: 900px) {
    .ycc-price__grid {
        grid-template-columns: 1fr;
    }

    .ycc-price__card--recommended {
        transform: none;
    }
}

/* =========================
   Closing Section
   ========================= */

.ycc-closing {
    padding: clamp(80px, 8vw, 140px) 20px;
    background: linear-gradient(135deg, #1cb5e0, #00c9a7);
    text-align: center;
    color: #fff;
}

.ycc-closing__title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 24px;
}

.ycc-closing__lead {
    font-size: 18px;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto 40px;
    font-weight: 500;
    opacity: .95;
}

.ycc-closing__cta .ycc-btn--cta {
    background: #ff7a18;
    box-shadow: 0 15px 40px rgba(255, 122, 24, .4);
}

.ycc-closing__note {
    margin-top: 14px;
    font-size: 14px;
    opacity: .9;
}

/* =========================
   Trial Section
   ========================= */

.ycc-trial {
    padding: clamp(70px, 8vw, 120px) 20px;
    background: #f8fbff;
    text-align: center;
}

.ycc-trial__title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    margin-bottom: 16px;
}

.ycc-trial__lead {
    font-size: 17px;
    line-height: 1.8;
    color: #556;
    margin-bottom: 50px;
}

.ycc-trial__form {
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   Teacher Section
   ========================= */

.ycc-teacher {
    padding: clamp(80px, 8vw, 130px) 20px;
    background: #ffffff;
}

.ycc-teacher__title {
    text-align: center;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: clamp(40px, 5vw, 70px);
    color: #0f2d40;
}

.ycc-teacher__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ycc-teacher__image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: block;
}

.ycc-teacher__content h3 {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    margin-bottom: 18px;
    color: #1cb5e0;
}

.ycc-teacher__content p {
    font-size: 16px;
    line-height: 1.9;
    color: #445b6b;
    margin-bottom: 16px;
}

/* スマホ */
@media (max-width: 900px) {
    .ycc-teacher__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ycc-teacher__content {
        text-align: left;
    }
}

/* =========================
   Access Section
   ========================= */

.ycc-access {
    padding: clamp(80px, 8vw, 130px) 20px;
    background: #f8fbff;
    text-align: center;
}

.ycc-access__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    margin-bottom: 24px;
    color: #0f2d40;
}

.ycc-access p {
    font-size: 17px;
    line-height: 1.8;
    color: #445b6b;
    margin-bottom: 40px;
}

.ycc-access__map {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Google Map iframe用 */
.ycc-access__map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* スマホ */
@media (max-width: 768px) {
    .ycc-access__map iframe {
        height: 300px;
    }
}

/* =========================
   Trial Form Section
   ========================= */

.ycc-form {
    max-width: 720px;
    margin: 0 auto;
}

.ycc-form__row {
    margin-bottom: 24px;
    text-align: left;
}

.ycc-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
}

.ycc-form label span {
    color: #ff7a18;
    font-size: 13px;
    margin-left: 6px;
}

.ycc-form input,
.ycc-form select,
.ycc-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dce3ea;
    font-size: 15px;
    transition: 0.2s;
    background: #fff;
}

.ycc-form input:focus,
.ycc-form select:focus,
.ycc-form textarea:focus {
    outline: none;
    border-color: #1cb5e0;
    box-shadow: 0 0 0 3px rgba(28, 181, 224, 0.15);
}

.ycc-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ycc-form__note {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

.ycc-form__submit {
    margin-top: 40px;
    text-align: center;
}

/* CF7 送信ボタン（無料体験に申し込む） */
#ycc-trial .wpcf7 input[type="submit"],
#ycc-trial .wpcf7 button[type="submit"],
.wpcf7 input.wpcf7-submit,
.wpcf7 button.wpcf7-submit {
    appearance: none;
    -webkit-appearance: none;
    border: none !important;

    background: #ff7a18 !important;
    /* CTAオレンジ */
    color: #fff !important;
    /* 文字が見えない問題の本丸 */
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 999px;
    line-height: 1;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
}

#ycc-trial .wpcf7 input[type="submit"]:hover,
#ycc-trial .wpcf7 button[type="submit"]:hover,
.wpcf7 input.wpcf7-submit:hover,
.wpcf7 button.wpcf7-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}