@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type="number"]{-moz-appearance:textfield}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit;border-collapse:collapse}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}
body{
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    z-index: -1;
}
main{
    position: relative;
    z-index: -1;
}
img {
    max-width: 100%;
    width: 100%;
}
a:hover{
    opacity: .85;
    transition: all .3s;
}
:root{
    --color-primary: #ef858c;
    --color-primary-light: #ffeaed;
    --color-teal: #60c1bd;
    --color-coral: #F08476;
    --color-red: #b40000;
    --color-white: #ffffff;
    --text-color: #333333;
    --header-h: 80px;
}
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-primary {
    color: var(--color-red);
}

/* ========================================
   Header
======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: var(--header-h);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

/* ロゴ */
.header__logo a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}
.header__logo a img{
    max-width: 200px;
    width: 100%;
}
/* ナビ */
.header__nav {
    margin-left: auto;
}
.header__nav-list {
    display: flex;
    gap: 36px;
}
.header__nav-list a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
}
.header__nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.25s;
}
.header__nav-list a:hover {
    color: var(--color-primary);
    opacity: 1;
}
.header__nav-list a:hover::after {
    width: 100%;
}

/* CTAボタン */
.header__cta {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.header__cta a{
    min-width: 180px;
    padding: 6px 18px;
}
/* ハンバーガーボタン */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 4px;
    margin-left: 4px;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #444;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}
body.menu-open .header__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.menu-open .header__hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
body.menu-open .header__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* モバイルドロワー */
.header__drawer {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    background: #fff;
    padding: 24px 20px 48px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 99;
    display: none;
}
body.menu-open .header__drawer {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.header__drawer-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 20px;
}
.header__drawer-list li a {
    display: block;
    padding: 16px 4px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}
.header__drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header__drawer-cta .btn {
    justify-content: center;
    font-size: 1.4rem;
    padding: 14px 20px;
}

/* オーバーレイ */
.header__overlay {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 98;
}
body.menu-open .header__overlay {
    opacity: 1;
    pointer-events: auto;
}
body.menu-open {
    overflow: hidden;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    transition: opacity 0.2s, transform 0.2s;
}
.btn:hover {
    opacity: 0.85;
}
.btn__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}
.btn--teal {
    background: var(--color-teal);
}
.btn--coral {
    background: var(--color-primary);
}
@media (max-width: 1080px) {
.header__nav { display: none; }
    .header__cta { display: none; }
    .header__hamburger { display: flex; margin-left: auto; }
    .header__drawer { display: block; }
}
@media (max-width: 540px) {
:root { --header-h: 60px; }
    .header__logo a img { max-width: 140px; }
    .header__cta { gap: 6px; }
    .header__cta .btn { font-size: 1.1rem; padding: 8px 10px; gap: 4px; }
    .header__cta .btn span br { display: none; }
}

/* ========================================
   MV（メインビジュアル）
======================================== */
.mv {
    display: flex;
    min-height: calc(100vh - var(--header-h));
    position: relative;
}

/* 左エリア */
.mv__left {
    position: relative;
    width: 50%;
    background: var(--color-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px 80px;
}

/* 背景の円装飾 */
.mv__circle {
    position: absolute;
    border-radius: 50%;
}
.mv__circle--1 {
    width: 430px;
    height: 430px;
    top: -140px;
    left: -100px;
    background: rgba(0, 0, 0, 0.07);
}
.mv__circle--2 {
    width: 300px;
    height: 300px;
    bottom: -40px;
    right: -80px;
    background: rgba(0, 0, 0, 0.07);
}

/* コンテンツ */
.mv__content {
    position: relative;
    z-index: 1;
}
.mv__catch {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(3.6rem, 5.5vw, 6.5rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.mv__catch-em {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}
.mv__catch-em::before {
    content: '•';
    position: absolute;
    top: -.85em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    color: #fff;
    line-height: 1;
    pointer-events: none;
}
.mv__title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.mv__title-line {
    display: inline-block;
    background: #fff;
    color: var(--color-primary);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 800;
    font-size: clamp(3.6rem, 5.5vw, 6.5rem);
    padding: 6px 20px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    align-self: flex-start;
    line-height: 1.3;
}
.mv__desc {
    font-size: clamp(1.3rem, 1.8vw, 2.3rem);
    color: #fff;
    line-height: 2;
    font-weight: bold;
}

/* イラスト */
.mv__illust {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 180px;
}


/* 右エリア（写真） */
.mv__right {
    width: 50%;
    overflow: hidden;
}
.mv__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
@media (max-width: 1080px) {
.mv { flex-direction: column; min-height: auto; }
    .mv__left { width: 100%; padding: 48px 32px 80px; order: 2; }
    .mv__right { width: 100%; aspect-ratio: 16 / 13; order: 1; }
    .mv__illust { display: none; }
}
@media (max-width: 540px) {
.mv__left { padding: 36px 20px 70px; }
}

/* ========================================
   Lead
======================================== */
.lead {
    position: relative;
    background: #FDEAEA;
    padding: 80px 24px 100px;
    /* overflow: hidden; */
}


.lead__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* イントロ文 */
.lead__intro {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
    margin-bottom: 80px;
}

/* Q&Aカード */
.lead__qa {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Q */
.lead__q {
    padding: 24px 36px;
    background: #fff;
}
.lead__q-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.lead__q p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
}

/* A */
.lead__a {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 36px 32px;
    background: var(--color-primary-light);
    position: relative;
}
.lead__a-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

/* QAアイコン共通 */
.lead__qa-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}
.lead__qa-icon--q {
    /* background: var(--color-primary);
    color: #333; */
}
.lead__qa-icon--a {
    /* background: #fff;
    color: #333; */
}
.lead__qa-icon--a::after {
    border-top-color: #fff;
}

/* A本文 */
.lead__a-body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lead__a-answer {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}
.lead__a-answer strong {
    color: var(--color-red);
    font-size: 2.8rem;
}
.lead__a-text {
    font-size: 1.4rem;
    line-height: 2;
    color: #333;
}

/* Aイラスト */
.lead__a-illust {
    position: absolute;
    right: 24px;
    bottom: 0;
    width: 120px;
}
.lead__a-illust img {
    width: 100%;
}

/* 吹き出しバルーン */
.lead__balloon {
    position: relative;
    background: var(--color-primary);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    padding: 22px 40px;
    border-radius: 50px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}
.lead__balloon::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid var(--color-primary);
}
.lead__balloon strong {
    font-weight: 800;
}

/* カード2枚 */
.lead__cards {
    display: flex;
    align-items: center;
    gap: 0;
}
.lead__card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.lead__card-img {
    /* aspect-ratio: 4 / 3; */
    overflow: hidden;
}
.lead__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lead__card-body {
    background: var(--color-primary);
    padding: 16px 20px;
    text-align: center;
}
.lead__card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.lead__card-desc {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ＋マーク */
.lead__plus {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0 -10px;
    position: relative;
    z-index: 1;
}

/* 装飾イラスト */
.lead__deco {
    position: absolute;
    pointer-events: none;
}
.lead__deco--book {
    top: 16px;
    right: 16px;
    width: clamp(8rem, 14vw, 16rem);
    z-index: 1;
}
.lead__deco--car {
    top: 36%;
    left: 60px;
    z-index: 2;
    width: clamp(7.5rem, 11vw, 12rem);
    z-index: 1;
}
.lead__deco--block {
    top: 28%;
    left: clamp(8rem, 16vw, 20rem);
    z-index: 2;
    width: clamp(3rem, 5vw, 6rem);
    z-index: 1;
}
.lead__deco--girl {
    bottom: 0;
    right: 20px;
    width: clamp(6.5rem, 8vw, 11rem);
}
.lead__deco--boy {
    bottom: 0;
    left: 20px;
    width: clamp(5rem, 6vw, 8rem);
}
.lead__deco--pat1 {
    top: -25px;
    left: 0px;
    width: clamp(12rem, 23vw, 29rem);
    opacity: 0.6;
}
.lead__deco--pat2 {
    top: 47%;
    right: 16px;
    width: clamp(6rem, 14vw, 16rem);
    opacity: 0.6;
}
@media (max-width: 1080px) {
.lead { padding: 60px 20px 100px; }
    .lead__q { padding: 20px 24px; }
    .lead__a { padding: 20px 24px 24px; gap: 12px; }
    .lead__a-illust { width: 90px; right: 16px; }
    /* .lead__a-text { padding-right: 100px; } */
    .lead__cards { flex-direction: column; gap: 24px; align-items: center; }
    .lead__card { width: 100%; max-width: 480px; }
    .lead__plus { margin: 0; transform: rotate(90deg); }
    .lead__deco--book { width: 90px; }
    .lead__deco--car  { width: 100px; top: 20%; left: 40px; }
    .lead__deco--girl { width: 70px; }
    .lead__deco--boy  { width: 55px; }
    .lead__deco--block {
        display: none;
    }
    .lead__deco--pat1 { width: 160px; }
    .lead__deco--pat2 { width: 70px; }
    .lead__a-answer strong{
        font-size: 2.4rem;
    }
}
@media (max-width: 540px) {
    .lead__a-answer strong{
        font-size: 2rem;
    }
.lead { padding: 80px 16px 100px; }
    .lead__intro { font-size: 1.4rem; }
    .lead__q p { font-size: 1.4rem; }
    .lead__a-answer { font-size: 1.6rem; }
    .lead__a-illust { display: none; }
    .lead__balloon { font-size: 1.4rem; padding: 18px 20px; border-radius: 12px; }
    .lead__deco--book { width: 100px; top: 3px; }
    .lead__deco--car  { width: 80px; top: 13%; } 
    .lead__deco--girl { width: 70px; right: 10px; }
    .lead__deco--boy  { width: 70px; left: 10px; bottom: -20px; }
    .lead__deco--pat1 { width: 120px; }
    .lead__deco--pat2 { width: 50px; }
    .lead__qa-icon{
        width: 64px;
        height: 64px;
    }
    .lead__card-title{
        font-size: 1.8rem;
    }
}

/* ========================================
   About
======================================== */
.about__wrap {
    background: #fff;
    padding: 120px 24px 72px;
}
.about__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* 見出し */
.about__head {
    position: relative;
    text-align: center;
    margin-bottom: 36px;
}
.about__deco {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: clamp(5rem, 11vw, 13rem);
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.07;
    letter-spacing: 0.15em;
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.about__title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
}

/* リード */
.about__lead {
    text-align: center;
    font-size: 1.8rem;
    color: #555;
    line-height: 2;
    margin-bottom: 48px;
}

/* カード */
.about__cards {
    display: flex;
    justify-content: center;
}
.about__card {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.about__card-img {
    flex: 1;
    overflow: hidden;
    min-height: 200px;
}
.about__card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}
.about__card-body {
    background: #fff;
    padding: 16px 20px;
    text-align: center;
}
.about__card-body--home {
    background: var(--color-primary);
}
.about__card-body--home .about__card-desc {
    color: rgba(255, 255, 255, 0.85);
}
.about__card-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}
.about__card-title--home {
    color: #fff;
}
.about__card-desc {
    font-size: 1.3rem;
    color: #777;
    line-height: 1.6;
}

/* ＋マーク */
.about__plus {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 -10px;
    position: relative;
    z-index: 1;
    align-self: center;
}

/* プログラム内容 */
.about__progs-wrap {
    background: #fff;
    padding: 64px 24px 72px;
}
.about__progs-inner {
    max-width: 900px;
    margin: 0 auto;
}
.about__progs-badge-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.about__progs-badge {
    display: block;
    position: relative;
    background: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: #fff1f2;
    font-size: 2.8rem;
    font-weight: 700;
    padding: 22px 24px;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(232, 139, 139, 0.25);
}
.about__progs-illust {
    position: absolute;
    left: 100%;
    bottom: 0;
    width: 130px;
    margin-left: 60px;
    pointer-events: none;
}
.about__progs-lead {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    line-height: 2;
    margin-block: 50px;
}

@media (max-width: 540px) {

}

/* プログラムグリッド */
.about__prog-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.about__prog-row {
    display: grid;
    gap: 20px;
}
.about__prog-row--2 {
    grid-template-columns: 1fr 1fr;
}
.about__prog-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.about__prog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--color-primary);
}
.about__prog-card:hover {
    opacity: .85;
    /* transform: translateY(-4px); */
}
.about__prog-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.about__prog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about__prog-body {
    padding: 24px 30px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #FFF0EF;
    position: relative;
}
.about__prog-card--opt {
    border-color: var(--color-teal);
}
.about__prog-body--opt {
    background: #EEF7F5;
}
.about__prog-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
}
.about__prog-arrow-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}
.about__prog-arrow-icon--teal {
    background: var(--color-teal);
}
.about__prog-label {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.about__prog-label--prog {
    color: #f6b9bd;
    font-size: 1.8rem;
}
.about__prog-label--prog .prog-dash {
    color: var(--color-primary);
}
.about__prog-label--opt {
    color: var(--color-teal);
}
.about__prog-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}
.about__prog-title--opt {
    color: var(--color-teal);
}
.about__prog-desc {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 12px;
}
.about__prog-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    align-self: flex-start;
    line-height: 1.5;
}
.about__prog-tag--primary { background: #f9d1d3; color: var(--color-primary); }
.about__prog-tag--teal { color: var(--color-teal); background: #d9fdfc; }
.about__prog-tag--coral { background: var(--color-coral); }

/* 矢印 */
.about__arrow {
    width: 0;
    height: 0;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
    border-top: 36px solid var(--color-primary);
    margin: 0 auto 32px;
}

/* バナー */
.about__banner-wrap {
    position: relative;
}
.about__banner {
    background: var(--color-primary);
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    padding: 24px 40px;
    border-radius: 50px;
    line-height: 1.5;
}
.about__banner-illust {
    position: absolute;
    width: 120px;
    right: 40px;
    bottom: 15px;
    pointer-events: none;
}

@media (max-width: 1080px) {
    .about__wrap { padding: 120px 20px 56px; }
    .about__progs-wrap { padding: 48px 20px 56px; }
    .about__banner { font-size: 1.9rem; }
}
@media (max-width: 768px) {
    .about__banner-illust {
    width: 80px;
    right: 40px;
    bottom: 15px;
    }
    .about__progs-badge { font-size: 2rem; padding: 16px 24px; }
    .about__progs-illust {
        width: 90px;
        margin-left: 25px;
    }
        .about__prog-row--2,
    .about__prog-row--3 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
        .about__banner-illust {
                right: 10px;
                width: 70px;
        }
    .about__wrap { padding: 48px 16px 48px; }
    .about__lead { font-size: 1.3rem; }
    .about__cards { flex-direction: column; gap: 24px; align-items: stretch; }
    .about__card { width: 100%; }
    .about__plus { transform: rotate(90deg); margin: 0 auto; }
    .about__progs-wrap { padding: 40px 16px 48px; }
    .about__prog-row--2,
    .about__prog-row--3 { grid-template-columns: 1fr; }
    .about__banner { font-size: 1.5rem; padding: 20px 20px; }
    .about__arrow { border-left-width: 36px; border-right-width: 36px; border-top-width: 28px; }
    .about__progs-illust {
        width: 60px;
        margin-left: -40px;
        bottom: -40px;
    }
    
    .about__progs-lead {
        font-size: 1.6rem;
    }
}

/* ========================================
   Program 共通ヘッド（prog-head）
======================================== */
.prog-head-wrap {
    position: relative;
}
.prog-head {
    position: relative;
    background-color: var(--color-primary);
    background-image: url('../img/common/bg-p-circle.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 200px;
    height: 200px;
    overflow: hidden;
}
.prog-head__inner {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
}
.prog-head__img {
    width: 45%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
}
.prog-head--4 .prog-head__img {
    object-position: right center;
}
.prog-head__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 0 48px;
    position: relative;
}
.prog-head__eyebrow {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}
.prog-head__title {
    font-size: 3.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.4;
}
@media (max-width: 1080px) {
.prog-head { height: 160px; background-size: auto 160px; }
    .prog-head__title { font-size: 2.4rem; }
    .prog-head__content { padding: 0 28px 0 32px; }
    .prog-head__eyebrow{
        font-size: 2rem;
    }
}
@media (max-width: 540px) {
    .prog-head__eyebrow{
        font-size: 1.2rem;
    }
.prog-head { height: 120px; background-size: auto 120px; }
    .prog-head__title { font-size: 1.6rem; }
    .prog-head__content { padding: 0 16px 0 20px; }
    .prog-head__inner { max-width: 100%; }
    .prog-head__img { width: 42%; }
}

/* ========================================
   Program1 / 動画教材
======================================== */
.prog1__body {
    background: var(--color-primary-light);
    padding: 56px 24px 72px;
}
.prog1__inner {
    max-width: 900px;
    margin: 0 auto;
}
.prog1__lead-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
}
.prog1__lead {
    flex: 1;
    text-align: center;
    font-size: 1.8rem;
    color: #555;
    line-height: 2;
}
.prog1__illust {
    position: absolute;
    width: 160px;
    top: -80px;
    right: 0;
    pointer-events: none;
}
.prog1__illust--sp {
    display: none;
}

/* 動画カード */
.video-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.video-card {
    border-radius: 18px;
    /* overflow: hidden; */
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.video-card--theory,
.video-card--practice {
    position: relative;
}
.video-card__head {
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
}
.video-card--theory .video-card__head {
    background: var(--color-teal);
}
.video-card--practice .video-card__head {
    background: var(--color-primary);
}
.video-card__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    object-fit: contain;
}
.video-card__name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.video-card__body {
    padding: 20px 20px 24px;
}
.video-card__desc {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}
.video-card__sample {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.video-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-card__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.video-card--theory .video-card__thumb {
    background: #c8ede9;
}
.video-card--practice .video-card__thumb {
    background: #f8dbd6;
}
.video-card__play {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.video-card__play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #666;
}
.video-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.video-card__list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.5;
}
.video-card--practice .video-card__list li {
    justify-content: space-between;
}
.video-card__item-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.video-card__num {
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.video-card--theory .video-card__num {
    color: var(--color-teal);
}
.video-card--practice .video-card__num {
    color: var(--color-coral);
}
.video-card__song {
    font-size: 1.1rem;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 監修者 */
.supervisor {
    position: relative;
    margin-top: 28px;
}
.supervisor__head {
    position: absolute;
    top: -8px;
    left: -10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.supervisor__eyebrow {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 6px 12px;
}
.supervisor__title {
    display: inline-block;
    background: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 7px 20px;
    line-height: 1.4;
}
.supervisor__card {
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    background: #fff;
    padding: 80px 40px 80px;
}
.supervisor__lead {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}
.supervisor__body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.supervisor__photo-wrap {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.supervisor__photo {
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    width: 140px;
    display: block;
    margin-bottom: 12px;
}
.supervisor__name-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}
.supervisor__kanshu {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.supervisor__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}
.supervisor__name-en {
    font-size: 1.2rem;
    color: #999;
    text-align: right;
}
.supervisor__info {
    flex: 1;
}
.supervisor__affil {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}
.supervisor__bio {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}
.supervisor__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.supervisor__tag-item {
    font-size: 1.2rem;
    padding: 5px 14px;
    border: 1px solid var(--color-primary-light);
    border-radius: 100px;
    background: var(--color-primary-light);
    color: var(--color-primary);
}
@media (max-width: 1080px) {
    .prog1__body { padding: 80px 20px 56px; }
    .prog1__lead{
        font-size: 1.6rem;
    }
    .prog1__lead-row { gap: 20px; margin-bottom: 80px;}
    .prog1__illust { width: 130px; }
    .supervisor__card { padding: 60px 28px 60px; }
    .supervisor__body { gap: 28px; }
}
@media (max-width: 540px) {
    .prog1__body { padding: 36px 16px 48px; }
    .prog1__lead-row { flex-direction: column; gap: 16px; margin-bottom: 60px; }
    .prog1__lead{font-size: 1.6rem;}
    .prog1__illust { display: none; }
    .prog1__illust--sp { display: block; width: 120px; top: -57px; right: 0; }
    .video-cards { grid-template-columns: 1fr; gap: 16px; }
    .supervisor__card { padding: 60px 20px; }
    .supervisor__body { flex-direction: column; align-items: center; gap: 20px; }
    .supervisor__info { width: 100%; }
    .supervisor__photo { width: 120px; }
}

/* ========================================
   Program2 / オンライン英会話
======================================== */
.prog2__body {
    background: #fff;
    padding: 80px 24px 72px;
}
.prog2__inner {
    max-width: 900px;
    margin: 0 auto;
}
.prog2__lead-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 80px;
}
.prog2__lead {
    flex: 1;
    text-align: center;
    font-size: 1.8rem;
    color: #555;
    line-height: 2;
}
.prog2__illust {
    position: absolute;
    width: 140px;
    top: -137px;
    right: -40px;
}

/* 12シーングリッド */
.scenes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}
.scene {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    line-height: 1.4;
    transition: background 0.2s, color 0.2s;
}

/* テキストサンプル */
.prog2__textbooks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.prog2__textbooks img {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* CTAボタン */
.prog2__cta {
    text-align: center;
}
.prog2__cta-btn {
    padding: 18px 48px;
    font-size: 1.7rem;
    gap: 14px;
    justify-content: center;
}
.prog2__cta-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
@media (max-width: 1080px) {
.prog2__body { padding: 80px 20px 80px; }
    .prog2__lead-row { gap: 20px; }
    .prog2__illust { width: 100px; top: -70px; right: 0; }
    .scenes { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .scene { font-size: 1.3rem; padding: 14px 6px; }
}
@media (max-width: 540px) {
.prog2__body { padding: 80px 16px 80px; }
.prog2__lead{
    font-size: 1.6rem;
}
    .prog2__lead-row { flex-direction: column; gap: 16px; }
    .prog2__illust { width: 100px; top: -70px; right: 0;}
    .scenes { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .scene { font-size: 1.3rem; padding: 14px 8px; }
    .prog2__textbooks { grid-template-columns: 1fr; }
    .prog2__cta-btn { font-size: 1.4rem; padding: 16px 24px; width: 100%; justify-content: space-between; }
}

/* ========================================
   Program3 / 英語絵本
======================================== */
.prog3__deco {
    position: absolute;
    bottom: -16px;
    right: 4%;
    width: 130px;
    z-index: 2;
    pointer-events: none;
}
.prog3__body {
    position: relative;
    background: var(--color-primary-light);
    padding: 80px 24px 80px;
}
.prog3__illust {
    position: absolute;
    width: 180px;
    top: -50px;
    right: 50px;
    pointer-events: none;
}
.prog3__inner {
    max-width: 900px;
    margin: 0 auto;
}
.prog3__lead {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    line-height: 2;
    margin-bottom: 80px;
}
.prog3__hint {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 28px;
}

/* 絵本カード */
.books {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.book {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}
.book__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.book__img-wrap img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
}
.book__body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.book__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}
.book__desc {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 14px;
}
.book__btn {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: opacity 0.2s;
}
.book__btn:hover {
    opacity: 0.85;
}

/* Book Modal */
.book-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.book-modal.is-open {
    display: flex;
}
.book-modal__content {
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 20px 60px rgba(74, 59, 59, 0.2);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.book-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.book-modal__close:hover {
    background: #e8e0d8;
}
.book-modal__header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.book-modal__img {
    width: 120px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-modal__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.book-modal__badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: rgba(232, 139, 139, 0.13);
    color: var(--color-primary);
    border: 1px solid rgba(232, 139, 139, 0.27);
}
.book-modal__title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 6px;
}
.book-modal__author {
    font-size: 1.2rem;
    color: #999;
}
.book-modal__body {
    border-top: 1px solid var(--color-primary-light);
    padding-top: 20px;
}
.book-modal__section-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.book-modal__story {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}
.book-modal__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.book-modal__feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 1.4rem;
    color: #7A6565;
    line-height: 1.7;
}
.book-modal__feature-check {
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* World Library カード */
.wl-card-wrap {
    position: relative;
    padding-top: 56px;
    margin-top: 32px;
}
.wl-card__illust {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    pointer-events: none;
    z-index: 2;
}
.wl-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    overflow: hidden;
    padding: 0 40px;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}
.wl-card__logo-area {
    flex-shrink: 0;
    width: 180px;
    padding: 24px 20px;
    text-align: center;
    background: #fff;
}
.wl-card__logo-box {
    padding: 12px 10px;
    margin-bottom: 10px;
}
.wl-card__logo-img {
    width: 100%;
    display: block;
}
.wl-card__partner {
    font-size: 1.4rem;
    color: #333;
}
.wl-card__divider {
    width: 1px;
    align-self: stretch;
    background: #ddd;
    flex-shrink: 0;
}
.wl-card__body {
    flex: 1;
    padding: 28px 32px;
}
.wl-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
}
.wl-card__desc {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.9;
}
@media (max-width: 1080px) {
.prog3__body { padding: 80px 20px 80px; }
    .books { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .prog3__deco { width: 100px; }
    .prog3__illust {
    width: 140px;
    top: -18px;
}
.wl-card{
    padding: 0 20px;
}
}
@media (max-width: 768px) {
.wl-card__logo-box{
    padding: 0;

}

}
@media (max-width: 540px) {
    .book-modal__header{
        flex-direction: column;
        align-items: center;
    }
    .book-modal__meta{
        text-align: center;
    }
.prog3__body { padding: 80px 16px 48px; }
    .books { grid-template-columns: 1fr; gap: 16px; }
    .prog3__deco { display: none; }
    .wl-card-wrap { padding-top: 48px; }
    .wl-card__illust { width: 90px; }
    .wl-card { flex-direction: column; }
    .wl-card__logo-area { width: 100%; border-bottom: 1px solid #ddd; padding: 20px; }
    .wl-card__divider { display: none; }
    .wl-card__body { padding: 20px; }
    .prog3__lead,.prog3__hint{
        font-size: 1.6rem;
    }
    .prog3__hint{
        line-height: 1.5;
    }
    .prog3__lead{
        margin-bottom: 60px;
    }
    .wl-card__logo-box{
    max-width: 250px;
    margin: auto;
}
}


/* ========================================
   Program4 / おうちえいご検定
======================================== */
.prog4__body {
    background: #fff;
    padding: 56px 24px 72px;
}
.prog4__inner {
    max-width: 760px;
    margin: 0 auto;
}
.prog4__lead {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #444;
    line-height: 1.9;
    margin-bottom: 36px;
}

/* 認定カード */
.cert-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    padding: 50px 40px;
    background: #fff;
    box-shadow: 0 0 3px #ef858c2c,0 0 3px #ef858c2c;
}
.cert-card__medal {
    width: 100px;
    flex-shrink: 0;
}
.cert-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}
.cert-card__desc {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}
.cert-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cert-card__tag {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
}
@media (max-width: 1080px) {
.prog4__body { padding: 48px 20px 56px; }
    .cert-card { padding: 28px 28px; gap: 24px; }
}
@media (max-width: 540px) {
.prog4__body { padding: 36px 16px 48px; }
    .prog4__lead { font-size: 1.4rem; }
    .cert-card { flex-direction: column; align-items: center; padding: 24px 20px; }
    .cert-card__medal { width: 80px; }
}

/* ========================================
   Option / えいごコーチング
======================================== */
.prog-head--option {
    background-color: #60c1bd;
    background-image: url('../img/common/bg-option-circle.png');
}

.option__body {
    background: #E8F7F6;
    padding: 56px 24px 72px;
}
.option__inner {
    max-width: 900px;
    margin: 0 auto;
}
.option__catch-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}
.option__catch {
    display: block;
    position: relative;
    background: #fff;
    color: var(--color-teal);
    border: 2px solid var(--color-teal);
    background-color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 18px 32px;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(91, 188, 180, 0.25);
}
.option__lead-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 60px;
}
.option__lead {
    flex: 1;
    font-size: 1.8rem;
    color: #555;
    line-height: 2;
    text-align: center;
}
.option__illust {
    position: absolute;
    width: 200px;
    top: -88px;
    right: 0;
    pointer-events: none;
}
.option__features {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.option__feature {
    background: #fff;
    border-radius: 12px;
    padding: 20px 20px;
    border: 1px solid var(--color-teal);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.option__feature-icon {
    width: 80px;
    height: 80px;
    background: #D4F0EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.option__feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.option__feature-body {
    flex: 1;
}
.option__feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.4;
}
.option__feature-desc {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}
@media (max-width: 1080px) {
    .option__body { padding: 48px 20px 56px; }
    .option__lead-row { flex-direction: column; gap: 24px; }
    .option__lead { text-align: center; }
    .option__illust { width: 160px; }
}
@media (max-width: 540px) {
    .option__lead{
        font-size: 1.6rem;
    }
    .option__illust{
        display: none;
    }
    .option__body { padding: 36px 16px 48px; }
    .option__catch { font-size: 1.5rem; padding: 14px 24px; }
    .option__features { grid-template-columns: 1fr; }
    .option__illust { width: 130px; }
}

/* ========================================
   Free Seminar
======================================== */
.seminar__body {
    background: #fff;
    padding: 56px 24px 72px;
}
.seminar__inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.seminar__lead {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    line-height: 2;
    margin-bottom: 8px;
}

/* CTAカード */
.seminar__cta-card {
    background: var(--color-primary-light);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.seminar__checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
}
.seminar__check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #444;
}
.seminar__check-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-primary);
}
.seminar__btn {
    padding: 16px 40px;
    font-size: 1.6rem;
    gap: 12px;
    min-width: 360px;
    justify-content: space-between;
}
.seminar__cta-note {
    font-size: 1.2rem;
    color: #333;
}

/* カード（流れ・できること共通） */
.seminar__card {
    background: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    padding: 36px 40px;
}
.seminar__card-title-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.seminar__card-title {
    display: block;
    position: relative;
    background-color: #fff1f2;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    padding: 16px 32px;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(232, 139, 139, 0.25);
}

/* STEPリスト（how__badgeを流用） */
.seminar__steps {
    display: flex;
    flex-direction: column;
}
.seminar__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 28px;
}
.seminar__step:not(.seminar__step--last)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
}
.seminar__step--last {
    padding-bottom: 0;
}

/* できることグリッド */
.seminar__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.seminar__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.5;
}
.seminar__feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-coral);
}

/* ハイライトメッセージ */
.seminar__message {
    background: var(--color-primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 14px 20px;
    border-radius: 100px;
    line-height: 1.7;
}
@media (max-width: 1080px) {
.seminar__body { padding: 48px 20px 56px; }
    .seminar__cta-card { padding: 28px 24px; }
    .seminar__card { padding: 28px 24px; }
    .seminar__btn { min-width: auto; width: 100%; }
}
@media (max-width: 540px) {
.seminar__body { padding: 36px 16px 56px; }
    .seminar__checks { gap: 12px 16px; }
    .seminar__features { grid-template-columns: 1fr; }
    .seminar__card-title { padding: 12px 24px; font-size: 1.6rem; }
}

/* ========================================
   テーブル共通
======================================== */
.tbl-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
.rec-badge {
    display: inline-block;
    position: relative;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 10px 32px;
    border-radius: 50px;
    width: 100%;
    text-align: center;
}
.rec-badge::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--color-primary);
}

@media (max-width: 540px) {
    .rec-badge {
        font-size: 1.2rem;
        padding: 10px 24px;
    }
}

/* ========================================
   Plans
======================================== */
.plans__body {
    background: var(--color-primary-light);
    padding: 56px 24px 72px;
}
.plans__inner {
    max-width: 900px;
    margin: 0 auto;
}
.plans__lead {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    line-height: 2;
    margin-bottom: 28px;
}
.plans__table-wrap {
    margin-bottom: 40px;
}
.plans__table tbody tr{
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.plans__table tbody tr:last-child{
    border-bottom: 1px solid #ddd;
}
.plans__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 70px;
}
.plans__table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}
.plans__col-opt   { width: 52px; }
.plans__col-label { width: 164px; }

/* ヘッダー */
.plans__th-empty {
    background: var(--color-primary-light);
    border-left: none;
}
.plans__th {
    background: #fff;
    padding: 18px 12px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
    height: 150px;
    vertical-align: middle;
    border-top: 1px solid #ddd;;
    border-left: 1px solid #ddd;
}
.plans__th--rec {
    background: var(--color-primary);
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
}
.plans__th--rec .rec-badge {
    position: absolute;
    bottom: 108%;
    left: 0;
    right: 0;
    width: 100%;
    margin-bottom: 8px;
}

/* 行ラベル */
.plans__label {
    padding: 16px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #444;
    border-top: 1px solid #F2E8E8;
    border-right: 1px solid #F2E8E8;
    vertical-align: middle;
}
.plans__label--price {
    font-weight: 700;
}
.plans__sublabel {
    padding: 14px 16px;
    font-size: 1.3rem;
    color: #555;
    border-top: 1px solid #F2E8E8;
    border-right: 1px solid #F2E8E8;
    vertical-align: middle;
}

/* OPTIONラベルセル */
.plans__option-label {
    border-top: 1px solid #F2E8E8;
    border-right: 1px solid #F2E8E8;
    padding: 12px 6px;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
}
.plans__option-badge {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.plans__option-name {
    display: block;
    writing-mode: vertical-lr;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 auto;
    letter-spacing: 0.12em;
    line-height: 1;
}

/* セル */
.plans__cell {
    padding: 16px 12px;
    text-align: center;
    font-size: 1.4rem;
    color: #444;
    border-top: 1px solid #F2E8E8;
    border-left: 1px solid #F2E8E8;
    vertical-align: middle;
}
.plans__cell--rec {
    background: #FFF0EF;
    border-left: 1px solid #FBCECE;
}

/* 価格セル */
.plans__cell--price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-coral);
}
.plans__cell--price small {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}
.plans__cell--price-lg {
    font-size: 2.4rem;
}

/* おすすめ列の太枠 */
.plans__th--rec {
    border-left: 4px solid var(--color-primary) !important;
    border-right: 4px solid var(--color-primary) !important;
    border-top: 4px solid var(--color-primary) !important;
}
.plans__cell--rec {
    border-left: 4px solid var(--color-primary) !important;
    border-right: 4px solid var(--color-primary) !important;
}
.plans__table tbody tr:last-child .plans__cell--rec {
    border-bottom: 4px solid var(--color-primary) !important;
}

/* しましまカラー */
.plans__table tbody tr:nth-child(odd) .plans__label,
.plans__table tbody tr:nth-child(odd) .plans__sublabel,
.plans__table tbody tr:nth-child(odd) .plans__cell {
    background: #ffffff;
}
.plans__table tbody tr:nth-child(even) .plans__label,
.plans__table tbody tr:nth-child(even) .plans__sublabel,
.plans__table tbody tr:nth-child(even) .plans__cell {
    background: #f9f9f9;
}
.plans__table tbody tr:nth-child(odd) .plans__cell--rec {
    background: #ffffff;
}
.plans__table tbody tr:nth-child(even) .plans__cell--rec {
    background: #ffeaed;
}

/* CTAボタン */
.plans__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.plans__cta .btn {
    padding: 16px 32px;
    font-size: 1.6rem;
    min-width: 280px;
    justify-content: space-between;
}
@media (max-width: 1080px) {
.plans__body { padding: 48px 20px 56px; }
    .plans__cta .btn { min-width: auto; flex: 1; }
}
@media (max-width: 540px) {
.plans__body { padding: 36px 16px 48px; }
    .plans__cta { flex-direction: column; align-items: stretch; }
    .plans__cta .btn { width: 100%; flex: none; justify-content: space-between; }
}

/* ========================================
   Timeline（受講の流れ）
======================================== */
.timeline__body {
    background: #fff;
    padding: 56px 24px 72px;
}
.timeline__inner {
    max-width: 760px;
    margin: 0 auto;
}
.timeline__lead {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    line-height: 2;
    margin-bottom: 36px;
}

/* タブ：個別ピルボタン横並び */
.tl-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}
.tl-tab {
    flex: 1;
    padding: 14px 20px;
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    background: #fff;
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    line-height: 1.4;
    position: relative;
}

.tl-tab.is-active {
    background: var(--color-primary);
    color: #fff;
}
.tl-tab:not(.is-active):hover {
    background: #FFF0EF;
    opacity: 1;
}

.tl-tab.is-active::after{
    content: '';
    display: block;
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 14px solid var(--color-primary);
    border-bottom: 0;
}

/* パネル */
.tl-panel { display: none; }
.tl-panel.is-active { display: block; }

/* タイムラインリスト */
.tl-list {
    display: flex;
    flex-direction: column;
}

/* 各アイテム */
.tl-item__row {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

/* 期間ラベル */
.tl-item__period {
    background: var(--color-primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-width: 108px;
    text-align: center;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

/* コンテンツ */
.tl-item__content {
    background: #fff;
    padding: 22px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tl-item__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}
.tl-item__desc {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.9;
}

/* 矢印（▼） */
.tl-item__arrow {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.tl-item__arrow::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 27px solid transparent;
    border-top: 18px solid var(--color-primary);
}
@media (max-width: 1080px) {
.timeline__body { padding: 48px 20px 56px; }
    .tl-item__period { min-width: 92px; font-size: 1.3rem; }
}
@media (max-width: 540px) {
.timeline__body { padding: 36px 16px 56px; }
    .tl-tab { font-size: 1.2rem; padding: 12px 10px; }
    .tl-item__period { min-width: 76px; font-size: 1.3rem; padding: 20px 10px; }
    .tl-item__content { padding: 16px 16px; }
    .tl-item__title { font-size: 1.4rem; }
    .tl-item__desc { font-size: 1.3rem; }
}

/* ========================================
   How It Works
======================================== */
.how__body {
    background: var(--color-primary-light);
    padding: 56px 24px 72px;
}
.how__inner {
    max-width: 760px;
    margin: 0 auto;
}
.how__card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 56px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.how__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
}
.how__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 64px;
    bottom: -65px;
    width: 2px;
    background: var(--color-primary-light);
    z-index: 0;
}
.how__divider {
    border: none;
    border-top: 1px solid var(--color-primary-light);
    margin: 32px 0;
}

/* バッジ */
.how__badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 2px;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}
.how__badge-label {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
}
.how__badge-num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.how__divider{
    border: none;
}

/* コンテンツ */
.how__content {
    flex: 1;
    padding-top: 4px;
}
.how__title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}
.how__desc {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.9;
}

/* ボタン */
.how__btn {
    margin-top: 16px;
    padding: 12px 28px;
    font-size: 1.5rem;
    gap: 12px;
}
@media (max-width: 1080px) {
.how__card { padding: 36px 32px; }
}
@media (max-width: 540px) {
.how__body { padding: 36px 16px 56px; }
    .how__card { padding: 28px 20px; }
    .how__step { gap: 16px; }
    .how__badge { width: 52px; height: 52px; }
    .how__badge-num { font-size: 1.7rem; }
    .how__title { font-size: 1.5rem; }
}

/* ========================================
   Comparison
======================================== */
.comparison__body {
    background: #fff;
    padding: 56px 24px 80px;
}
.comparison__inner {
    max-width: 900px;
    margin: 0 auto;
}
.comparison__lead {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    line-height: 2;
    margin-bottom: 28px;
}
.comparison__table-wrap {
    margin-bottom: 12px;
}
.comparison__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 70px;
}
.comparison__table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    background: #fff;
}

.comparison__table tr{
    border-left: 1px solid #ddd;
}
.comparison__table thead tr{
    border-left: none;
}
.comparison__table tr:last-child{
    border-bottom: 1px solid #ddd;
}


/* ヘッダー */
.comparison__th-empty {
    background: #fff;
    width: 180px;
}
.comparison__th {
    background: #c6c6c6;
    height: 150px;
    padding: 12px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.comparison__th--rec {
    background: var(--color-primary);
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid #ddd;
    position: relative;
    overflow: visible;
}
.comparison__th--rec .rec-badge {
    position: absolute;
    bottom: 108%;
    left: 0;
    right: 0;
    width: 100%;
    margin-bottom: 8px;
}

/* 行ラベル */
.comparison__label {
    padding: 16px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #444;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    vertical-align: middle;
}

/* セル */
.comparison__cell {
    padding: 20px 32px;
    text-align: left;
    font-size: 1.3rem;
    color: #555;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    vertical-align: middle;
    line-height: 1.6;
}
.comparison__cell--rec {
    color: #444;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* しましまカラー */
.comparison__table tbody tr:nth-child(even) .comparison__label,
.comparison__table tbody tr:nth-child(even) .comparison__cell {
    background: #f9f9f9;
}
.comparison__table tbody tr:nth-child(odd) .comparison__cell--rec {
    background: #fff8f9;
}
.comparison__table tbody tr:nth-child(even) .comparison__cell--rec {
    background: #ffeaed;
}

/* 記号マーク */
.mark {
    display: inline-block;
    font-weight: 700;
    margin-right: 3px;
}
.mark--ng,
.mark--tri,
.mark--ok,
.mark--dbl { color: inherit; }

.comparison__note {
    text-align: right;
    font-size: 1.1rem;
    color: #aaa;
    margin-top: 10px;
}
@media (max-width: 1080px) {
.comparison__body { padding: 48px 20px 64px; }
.comparison__th{
    height: 100px;
    font-size: 1.6rem;
}
.comparison__cell{
    padding: 16px 12px;
}
}
@media (max-width: 540px) {
.comparison__body { padding: 36px 16px 56px; }
}

/* ========================================
   共通見出し（sec-head）
======================================== */
.sec-head {
    background-color: #ef858c;
    background-image: url('../img/common/bg-head-circle.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 200px;
    height: 200px;
    text-align: center;
}
.sec-head__inner {
    position: relative;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec-head__content {
    position: relative;
    z-index: 1;
}
.sec-head__eyebrow {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}
.sec-head__title {
    position: relative;
    display: inline-block;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.sec-head-wrap {
    position: relative;
}
.sec-head__illust {
    position: absolute;
    bottom: -50px;
    left: calc(100% + 40px);
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 1080px) {
    .sec-head__title { font-size: 2.6rem; }
    .sec-head__illust { width: 120px; }
}
@media (max-width: 540px) {
    .sec-head { height: 160px; background-size: auto 160px; }
    .sec-head__title { font-size: 2.2rem; }
    .sec-head__illust { width: 80px; bottom: -30px; }
}

/* --- sec-head__illust 個別調整 ---
 *
 * PC (共通)
 * .sec-head__illust--free-seminar  { }
 * .sec-head__illust--plans         { }
 * .sec-head__illust--timeline      { }
 * .sec-head__illust--how-it-works  { }
 * .sec-head__illust--comparison    { }
 * .sec-head__illust--faq           { }
 *
 * @media (max-width: 1080px)
 * .sec-head__illust--free-seminar  { }
 * .sec-head__illust--plans         { }
 * .sec-head__illust--timeline      { }
 * .sec-head__illust--how-it-works  { }
 * .sec-head__illust--comparison    { }
 * .sec-head__illust--faq           { }
 *
 * @media (max-width: 768px)
 * .sec-head__illust--free-seminar  { }
 * .sec-head__illust--plans         { }
 * .sec-head__illust--timeline      { }
 * .sec-head__illust--how-it-works  { }
 * .sec-head__illust--comparison    { }
 * .sec-head__illust--faq           { }
 *
 * @media (max-width: 540px)
 * .sec-head__illust--free-seminar  { }
 * .sec-head__illust--plans         { }
 * .sec-head__illust--timeline      { }
 * .sec-head__illust--how-it-works  { }
 * .sec-head__illust--comparison    { }
 * .sec-head__illust--faq           { }
 *
 * ↓ 実際に使うルールはここに追記 ↓ */
     .sec-head__illust--free-seminar {
        width: 190px;
     }
    .sec-head__illust--faq{
        width: 160px;
    }

@media (max-width: 1080px){
    .sec-head__illust--free-seminar {
        width: 120px;
    }
    .sec-head__illust--how-it-works{
        width: 100px;
    }
    .sec-head__illust--comparison {
        width: 100px;
    }
        .sec-head__illust--faq{
        width: 140px;
    }
    .sec-head__illust--plans  {
        width: 100px;
        left: auto;
    }
}

@media (max-width: 768px){
    .sec-head__illust--faq{
        width: 100px;
    }
        .sec-head__illust--plans  {

        }
}


@media (max-width: 540px){
     .sec-head__illust--free-seminar {
        width: 110px;
        left: auto;
        right: -110px;
        bottom: 0px;
     }
     .sec-head__illust--timeline  {
        width: 90px;
        left: auto;
        right: -90px;
      }
     .sec-head__illust--plans {
            left: auto;
        right: -90px;
        width: 70px;
     }
    .sec-head__illust--how-it-works{
        left: auto;
        right: -60px;
    }
    .sec-head__illust--comparison{
        left: auto;
        right: -100px;
        bottom: -10px;
        width: 80px;
    }
    .sec-head__illust--faq{
        width: 80px;
        right: -90px;
        left: auto;
    }
}

/* ========================================
   FAQ
======================================== */
.faq__body {
    background: var(--color-primary-light);
    padding: 56px 24px 80px;
}
.faq__inner {
    max-width: 860px;
    margin: 0 auto;
}
.faq__lead {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    line-height: 2;
    margin-bottom: 40px;
}

/* アコーディオンリスト */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 各アイテム */
.faq__item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* 質問行 */
.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    border: none;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.6;
}
.faq__q:hover {
    background: #fdf0ef;
    opacity: 1;
}
.faq__item.is-open .faq__q {
    background: var(--color-primary);
    color: #fff;
}

/* Qアイコン */
.faq__q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}
.faq__item.is-open .faq__q-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* 質問テキスト */
.faq__q-text {
    flex: 1;
}

/* ＋／－ アイコン */
.faq__toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    color: var(--color-primary);
    transition: color 0.25s;
}
.faq__toggle::before,
.faq__toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.faq__toggle::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.faq__toggle::after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.faq__item.is-open .faq__toggle {
    color: #fff;
}
.faq__item.is-open .faq__toggle::before {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* 回答行 */
.faq__a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-top: 1px solid var(--color-primary-light);
}
.faq__a[hidden] { display: none; }

/* Aアイコン */
.faq__a-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.faq__a-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #555;
    flex: 1;
}
@media (max-width: 1080px) {
.faq__body { padding: 48px 20px 64px; }
}
@media (max-width: 540px) {
.faq__body { padding: 40px 16px 56px; }
    .faq__q { font-size: 1.4rem; padding: 16px 16px; gap: 12px; }
    .faq__a { padding: 16px; gap: 12px; }
}

/* ========================================
   CTA
======================================== */
.cta {
    background: #fff;
    padding: 80px 24px 80px;
    position: relative;
}
.cta__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* イラスト */
.cta__illust {
    position: absolute;
    top: 0;
    width: 170px;
    pointer-events: none;
    z-index: 1;
}
.cta__illust--left {
    left: -40px;
    top: -60px;
}
.cta__illust--right {
    width: 150px;
    right: -80px;
    top: auto;
    bottom: -30px;
}

/* カード全体 */
.cta__card {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ヘッド（コーラル帯） */
.cta__head {
    position: relative;
    background: var(--color-primary);
    padding: 36px 40px;
    overflow: hidden;
    text-align: center;
}
.cta__head-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
}
.cta__head-circle--1 {
    width: 140px;
    height: 140px;
    top: -40px;
    right: 60px;
}
.cta__head-circle--2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: 0px;
}
.cta__title {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

/* ボディ（ライトピンク帯） */
.cta__body {
    background: var(--color-primary-light);
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.cta__desc {
    font-size: 1.4rem;
    line-height: 2;
    color: #333;
    text-align: center;
}

/* ボタン横並び */
.cta__btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta__btns .btn {
    padding: 16px 32px;
    font-size: 1.6rem;
    min-width: 280px;
    justify-content: space-between;
}
.cta__note {
    font-size: 1.3rem;
    color: #333;
}
@media (max-width: 1080px) {
    .cta__illust--left {
        width: 120px;
    left: -20px;
    top: -40px;
}
.cta__illust--right {
    width: 100px;
    right: 0px;
    top: auto;
    bottom: -20px;
}
.cta { padding: 60px 20px; }
    /* .cta__illust { display: none; } */
    .cta__title { font-size: 2.2rem; }
    .cta__btns .btn { min-width: auto; flex: 1; }
}
@media (max-width: 540px) {
.cta { padding: 48px 16px; }
    .cta__head { padding: 28px 20px; }
    .cta__title { font-size: 1.8rem; }
    .cta__body { padding: 50px 16px 50px; gap: 20px; }
    .cta__desc { font-size: 1.3rem; }
    .cta__btns { flex-direction: column; width: 100%; }
    .cta__btns .btn { width: 100%; flex: none; justify-content: space-between; }
        .cta__illust--left {
        width: 90px;
    left: -20px;
    top: -80px;
}
.cta__illust--right {
    width: 80px;
    right: 0px;
    top: auto;
    bottom: -40px;
}
.cta__note{
    line-height: 1.4;
    font-size: 1.2rem;
}
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #3D3D3D;
    color: #fff;
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 56px;
}

/* ブランドエリア */
.footer__brand {
    flex: 0 0 auto;
    min-width: 200px;
}
.footer__logo {
    display: block;
    margin-bottom: 16px;
}
.footer__logo img {
    width: 180px;
    max-width: 100%;
}
.footer__tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* ナビ */
.footer__nav {
    flex: 1;
}
.footer__nav-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer__nav-list a {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}
.footer__nav-list a:hover {
    color: #fff;
    opacity: 1;
}

/* CTAエリア */
.footer__cta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: center;
}
.footer__cta .btn {
    padding: 14px 24px;
    font-size: 1.4rem;
    justify-content: space-between;
    min-width: 240px;
}
.btn__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-left: 8px;
}

/* コピーライト */
.footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 24px;
}
.footer__copy p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1080px) {
.footer__inner {
        flex-wrap: wrap;
        gap: 36px;
        padding: 48px 24px 44px;
    }
    .footer__brand { width: 100%; min-width: auto; }
    .footer__nav { flex: 0 0 calc(50% - 18px); }
    .footer__cta {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .footer__cta .btn { flex: 1; min-width: auto; justify-content: center; gap: 10px; }
}
@media (max-width: 540px) {
.footer__inner { padding: 40px 16px 36px; gap: 28px; }
    .footer__nav { flex: 0 0 100%; }
    .footer__cta { flex-direction: column; }
    .footer__cta .btn { width: 100%; flex: none; justify-content: space-between; }
    .footer__copy { padding: 16px; }
    .footer__copy p { font-size: 1.1rem; }
}

.sp-only { display: none; }
.tab-only { display: none; }
    .tab2-only { display: none; }
@media (max-width: 1080px) {
    .tab2-only { display: block; }
}   
@media (max-width: 768px) {
.tab-only { display: block; }
}
@media (max-width: 540px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}
