/* ––– Design tokens (PC base; SP用にメディアクエリで上書き可能) ––– */
:root {
    /* Colors */
    --green: #08BF5A;
    --green-light: #08BF5A;
    --green-btn: #08BF5A;
    --green-dark: #08BF5A;
    --orange: #e67e22;
    --gold: #EFC40F;
    --gold-line: #EFC40F;
    --text: #000000;
    --text-dark: #000000;
    --text-light: #000000;
    --bg: #fff;
    --bg-tint: #F2FFF4;
    --bg-hero-cta: #24231F;
    --bg-footer: #000000;

    /* Designer colors (PC) */
    --unnamed-color-ef637c: #EF637C;
    --unnamed-color-70707a: #70707A;
    --unnamed-color-f41111: #F41111;
    --unnamed-color-707070: #707070;
    --unnamed-color-0b83ce: #0B83CE;
    --unnamed-color-ef0b3f: #EF0B3F;
    --unnamed-color-efc40f: #EFC40F;
    --unnamed-color-ff0b3f: #FF0B3F;
    --unnamed-color-ff0000: #FF0000;
    --unnamed-color-000000: #000000;
    --unnamed-color-fcf4f8: #FCF4F8;
    --unnamed-color-eb1591: #EB1591;
    --unnamed-color-faf4f5: #FAF4F5;
    --unnamed-color-24231f: #24231F;
    --unnamed-color-331c1c: #331C1C;
    --unnamed-color-ffffff: #FFFFFF;

    --shadow: 0 2px 12px rgba(0,0,0,.08);
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
    --shadow-header: 0 1px 4px rgba(0,0,0,.08);
    --radius: 4px;
    --radius-lg: 8px;

    /* Typography */
    --font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Noto Sans JP", sans-serif;
    --text-xs: 16px;
    --text-sm: 18px;
    --text-base: 20px;
    --text-md: 22px;
    --text-lg: 24px;
    --text-xl: 28px;
    --text-2xl: 32px;
    --title-large: 64px;

    /* Layout */
    --container: 1100px;
    --container-mid: 1200px;
    --container-wide: 1400px;
    --container-xl: 1800px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;

    /* Breakpoint (SP用: @media (max-width: var(--bp-sp)) { ... }) */
    --bp-sp: 768px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    margin: 0;
    padding: 0 0 130px;
    overflow-x: clip;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header .container {
    max-width: none;
    margin: 0;
    width: 100%;
    padding-left: 0;
    padding-right: var(--space-md);
}

/* ––– Header ––– */
.header {
    background: var(--bg);
    box-shadow: var(--shadow-header);
    min-height: 180px;
    padding-bottom: 24px;
    margin-bottom: 0;
    display: block;
    position: relative;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 43px;
    padding-left: 97px;
    margin-left: 0;
}

.logo-group {
    display: block;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 470px;
    height: 122px;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: left top;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: var(--text-sm);
    font-weight: bold;
    color: var(--text-dark);
}

.logo-since {
    font-size: var(--text-xs);
    color: #000000;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
}

.nav a:hover {
    color: var(--green);
}

/* ––– Hero ––– */
.hero {
    position: relative;
    overflow: visible;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-bg {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-bg picture {
    display: block;
    width: 100%;
}

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

.hero-sub {
    position: absolute;
    right: 48px;
    bottom: 130px;
    z-index: 10;
    font-size: 40px;
    color: #fff;
    text-align: right;
    line-height: 1.5;
    max-width: 900px;
    padding: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
    box-sizing: border-box;
}

.hero-cta {
    width: 100%;
    height: 160px;
    background: var(--bg-hero-cta);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.btn-hero-1,
.btn-hero-2 {
    position: relative;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.btn-hero-1 {
    width: 649px;
    height: 120px;
}

.btn-hero-2 {
    width: 649px;
    height: 120px;
    line-height: 1.15;
}

/* ––– Buttons ––– */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: bold;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    box-shadow: var(--shadow);
}

.btn:hover {
    opacity: .92;
    transform: translateY(1px);
}

.btn-green {
    background: var(--green-light);
    color: #fff;
}

.btn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.btn-dot--white {
    background: rgba(255,255,255,.9);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    margin-left: 8px;
    flex-shrink: 0;
}

.btn-arrow::after {
    content: '';
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--green);
}

.btn-dark {
    background: #333;
    color: #fff;
}

.btn.btn-hero-1,
.btn.btn-hero-2 {
    font-size: 40px;
}

/* ––– Section ––– */
.section {
    padding: 56px 0;
}

.section-title {
    font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text);
}

.section-title--dark {
    color: var(--text-dark);
}

.underline-gold {
    display: inline-block;
    border-bottom: 3px solid var(--gold-line);
    padding-bottom: 2px;
}

.section-title--underline {
    position: relative;
    padding-bottom: 12px;
}

.section-title--underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 3px;
    background: var(--gold-line);
}

.highlight {
    color: #FF0000;
}

/* ––– Bar title (green full-width) ––– */
.bar-title {
    background: var(--green);
    color: #fff;
    font-weight: bold;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    text-align: center;
    padding: 16px 24px;
    margin-bottom: 0;
}

.why-choose .bar-title {
    font-size: 80px;
    font-weight: 600;
}

/* ––– Problems ––– */
.problems {
    background: var(--bg-tint);
    padding-top: 112px;
    padding-bottom: 350px;
}

.problems-heading-wrap {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-md) 32px;
    box-sizing: border-box;
}

.problems-heading-wrap .section-title {
    max-width: 1280px;
    width: 100%;
    min-width: 0;
    text-align: center;
    box-sizing: border-box;
}

.problems .section-title--dark {
    color: var(--text-dark);
    font-size: 94px;
    font-family: var(--font-family);
    line-height: 1.2;
}

.problems-nayami {
    color: var(--green);
    font-size: 137px;
    font-family: var(--font-family);
    font-weight: 600;
}

.problems-line1,
.problems-line2 {
    display: block;
    text-align: center;
    line-height: 1.2;
}

.problems-line2 {
    margin-top: -0.2em;
}

.problems-line1 {
    white-space: nowrap;
}

.problems-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.problems-img-wrap {
    position: relative;
    z-index: 1;
    margin-top: 64px;
    margin-bottom: -80px;
    text-align: center;
}

.problems-img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    display: block;
    transform: scale(2.2);
    transform-origin: center center;
}

.problems-card {
    background: var(--bg);
    border: none;
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    position: relative;
    z-index: 2;
    min-width: 320px;
    max-width: 500px;
}

.problems-list {
    list-style: none;
}

.problems-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-base);
    margin-bottom: 14px;
    color: var(--text-dark);
}

.problems-list li:last-child {
    margin-bottom: 0;
}

.check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--green);
    color: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: bold;
}

.check::before {
    content: '✔';
}

/* ––– Solution intro ––– */
.solution-intro {
    background: var(--bg);
    position: relative;
    z-index: 2;
    padding-bottom: 24px;
}

.solution-intro > .container {
    max-width: 1418px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-intro .arrow-down {
    width: 0;
    height: 0;
    border-left: 139.185px solid transparent;
    border-right: 139.185px solid transparent;
    border-top: 103.3px solid var(--green);
    margin: 0 auto 32px;
}

.solution-intro-title {
    font-size: 52px;
    font-weight: 600;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
    max-width: 1418px;
    box-sizing: border-box;
    white-space: nowrap;
}

.solution-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 3px;
    background: var(--gold-line);
}

.solution-desc {
    text-align: center;
    color: var(--text);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.7;
}

/* ––– Challenges ––– */
.challenges {
    background: var(--bg);
    padding-top: 48px;
    padding-bottom: 160px;
}

.challenges .bar-title {
    background: var(--green);
    font-size: 30px;
    font-weight: 400;
}

.challenges .container {
    padding-top: 120px;
    max-width: var(--container-wide);
}

.challenge-block {
    background: var(--bg);
    border: 2px solid var(--green);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 80px;
    text-align: center;
    max-width: 100%;
}

.challenge-block:last-child {
    margin-bottom: 0;
}

.challenge-bar {
    background: var(--green);
    color: #fff;
    font-weight: 400;
    padding: 12px 20px;
    font-size: 30px;
}

.challenge-sub {
    font-size: 30px;
    font-weight: 400;
    color: var(--text);
    padding: 16px 36px 4px;
}

.challenge-txt {
    padding: 0 52px 20px;
    font-size: 30px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    box-sizing: border-box;
}

/* ––– Stats ––– */
.stats {
    background: var(--bg-tint);
}

.stats .container {
    max-width: 1900px;
}

.stats .section-title {
    font-size: 62px;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 64px;
}

.stats .section-title--underline::after {
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 416px);
    justify-content: center;
    gap: 85px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg);
    border: 1px solid #707070;
    border-radius: var(--radius-lg);
    padding: 52px 42px 47px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 416px;
    height: 442px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.stat-icon-wrap {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    flex-shrink: 0;
}

.stat-icon {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.stat-icon-wrap .stat-icon {
    filter: brightness(0) invert(1);
}

.stat-num {
    font-size: 2.6rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.stat-desc {
    font-size: 23px;
    color: var(--text-dark);
    line-height: 1.6;
}

.stats-sub {
    font-size: 59px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: var(--green);
    font-family: var(--font-family);
}

.stats-txt {
    font-size: 38px;
    font-weight: 300;
    color: var(--text-dark);
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.8;
}

.stats-txt-line1 {
    white-space: nowrap;
}

.stats-txt-line2 {
    white-space: nowrap;
}

/* ––– Instructors ––– */
.instructors {
    background: var(--bg);
    padding-top: 0;
    padding-bottom: 180px;
}

.instructors .bar-title {
    font-size: 76px;
    font-weight: 600;
    padding: 16px 24px 16px 8px;
}

.instructors .container {
    padding-top: 80px;
    max-width: var(--container-xl);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.instructor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.instructor-photo {
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 24px;
    display: block;
}

.instructor-name {
    font-size: 60px;
    font-weight: bold;
    color: var(--green-dark);
    margin-bottom: 20px;
    white-space: nowrap;
}

.instructor-desc {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: left;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ––– Graduates (1920×1648) ––– */
.graduates {
    background: var(--bg-tint);
    padding: 100px 0 120px;
}

.graduates .container {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    box-sizing: border-box;
}

.graduates .section-title {
    font-size: 96px;
    font-weight: 600;
}

.graduates .section-title--underline::after {
    width: 960px;
}

.graduates .graduates-sub {
    text-align: center;
    color: var(--green);
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 160px;
}

.testimonial {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 96px;
    align-items: start;
    margin-bottom: 128px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial--reverse {
    direction: rtl;
    margin-top: -128px;
}

.testimonial--reverse > * {
    direction: ltr;
}

.testimonial-img-wrap {
    min-width: 0;
}

.testimonial-img {
    width: 80%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
}

.testimonial-body {
    text-align: left;
    box-sizing: border-box;
}

.testimonial-name {
    font-size: 66px;
    font-weight: bold;
    color: #08BF5A;
    margin-bottom: 20px;
}

.testimonial--reverse .testimonial-name {
    text-align: right;
}

.testimonial--reverse .testimonial-body {
    text-align: right;
}

.testimonial-txt {
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}

.testimonial-tags {
    list-style: none;
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    padding-left: 0;
    margin: 0;
    margin-top: 32px;
}

.testimonial-tags li {
    margin-bottom: 8px;
}

.testimonial-tags li::before {
    content: none;
    display: none;
}

/* ––– Course flow ––– */
.course-flow {
    background: var(--bg);
    padding-top: 0;
}

.course-flow .container {
    padding-top: 32px;
}

.course-flow .section-title {
    margin-bottom: 28px;
}

.roadmap-wrap {
    text-align: center;
    padding-top: 96px;
    padding-bottom: 64px;
}

.roadmap-wrap picture {
    display: block;
    width: 100%;
}

.roadmap-img {
    max-width: 100%;
    height: auto;
    transform: scale(1.5);
    transform-origin: center center;
}

/* ––– Why choose ––– */
.why-choose {
    background: var(--bg);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.why-choose .bar-title {
    padding-bottom: 40px;
}

.why-choose .container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 48px var(--space-md) 0;
    width: 100%;
    box-sizing: border-box;
}

.why-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    max-width: 100%;
}

.why-illust {
    order: 1;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.why-illust-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    transform: scale(1);
    transform-origin: left top;
}

.why-boxes {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
    min-width: 0;
    max-width: 834px;
}

.why-box {
    background: transparent;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 834px;
    max-width: 100%;
}

.why-box-header {
    background: var(--green);
    color: #fff;
    padding: 20px 24px;
    text-align: center;
}

.why-box-title {
    font-size: 51px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.why-box-body {
    background: var(--bg);
    border: 3px solid var(--green);
    border-top: none;
    padding: 20px 24px;
    text-align: center;
}

.why-box-txt {
    font-size: 41px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.why-box-txt--single-line {
    white-space: nowrap;
}

/* ––– Comparison ––– */
.comparison-scroll-hint {
    display: none;
}

.comparison {
    background: var(--bg);
    padding-top: 0;
}

.comparison .container {
    max-width: var(--container-wide);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.comparison-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 32px;
}

.comparison-img {
    width: 1390px;
    height: 637px;
    max-width: none;
    display: block;
    margin-left: -49px;
    object-fit: contain;
}

/* ––– Career ––– */
.career {
    background: var(--bg);
    padding-top: 28px;
}

.career .section-title {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Noto Sans JP", sans-serif;
    font-size: 62px;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 64px;
}

.career .section-title--underline::after {
    width: 535.64px;
}

.career .container {
    max-width: var(--container-wide);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.career-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
}

.career-img-wrap {
    margin-top: 10px;
}

.career-img {
    width: 100%;
    margin-left: 20px;
    height: auto;
    border-radius: 0;
    transform: scale(1.79);
    transform-origin: top center;
}

.career-body {
    margin-left: 120px;
}

.career-txt-box {
    width: 900px;
    max-width: 100%;
    min-height: 0;
    padding: 20px 22px;
    overflow-y: hidden;
    overflow-x: hidden;
    box-sizing: border-box;
    margin-bottom: 0;
}

.career-txt {
    font-size: 30px;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
}

.career-highlight {
    width: 860px;
    max-width: 100%;
    min-height: 241px;
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    box-sizing: border-box;
}

.career-highlight-header {
    background: var(--green);
    color: #fff;
    padding: 20px 24px;
    text-align: center;
}

.career-highlight-title {
    font-size: 30px;
    font-weight: 300;
    margin: 0;
    color: #fff;
}

.career-highlight-body {
    background: var(--bg);
    border: 1px solid var(--green);
    border-top: none;
    padding: 20px 24px;
    text-align: center;
}

.career-list {
    list-style: none;
    font-size: var(--text-base);
    color: #70707A;
    margin: 0;
    padding: 0;
}

.career-list li {
    margin-bottom: 6px;
}

.career-list li::before {
    content: '・';
}

.career-list--centered {
    text-align: center;
}

.career-list--centered li::before {
    content: none;
    display: none;
}

/* ––– Student Voices ––– */
.student-voices {
    background: var(--bg);
}

.student-voices .container {
    max-width: 1360px;
}

.student-voices .section-title {
    font-size: var(--title-large);
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 80px;
}

.student-voice-item {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 100px;
    padding: 24px;
    border: 2px solid var(--green);
    border-radius: var(--radius-lg);
    background: var(--bg);
    position: relative;
    width: 1360px;
    max-width: 100%;
    height: 190px;
    min-height: 190px;
    box-sizing: border-box;
    overflow: visible;
}

.student-voice-item:last-child {
    margin-bottom: 0;
}

.student-voice-illust {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #F2FFF4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green);
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-40%, -40%);
    z-index: 2;
}

.student-voice-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
}

.student-voice-text {
    flex: 1;
    padding-left: 140px;
    display: flex;
    align-items: center;
}

.student-voice-text p {
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* ––– FAQ ––– */
.faq {
    background: var(--bg);
}

.faq .bar-title {
    background: var(--green);
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    padding: 16px 24px;
}

.faq .container {
    max-width: var(--container-wide);
    padding-top: 80px;
}

.faq-list {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.faq-item {
    width: 1694px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    transform: translateX(60px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

.faq-item[open] {
    min-height: 332px;
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    color: var(--green);
    border: 3px solid var(--green);
    font-weight: bold;
    font-size: 52px;
    cursor: pointer;
    list-style: none;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '+';
    margin-left: auto;
    font-size: var(--text-lg);
    font-weight: 700;
    color: inherit;
    opacity: .9;
}

.faq-item[open] .faq-q::after {
    content: '−';
    font-weight: 700;
}

.faq-item[open] .faq-q {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.faq-item[open] .faq-q-icon {
    background: #fff;
    color: var(--green);
    border-color: #fff;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: 3px solid var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.faq-item:not([open]) .faq-a {
    display: none;
}

.faq-item[open] .faq-a {
    display: flex;
}

.faq-a {
    gap: 12px;
    padding: 20px 20px 24px;
    background: var(--bg);
    border: 3px solid var(--green);
    border-top: none;
}

.faq-a-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.faq-a p {
    font-size: 36px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
}

/* ––– Fees ––– */
.fees {
    background: var(--bg);
}

.fees .container {
    max-width: var(--container-wide);
}

.fees-title {
    font-size: var(--title-large);
    margin-bottom: 8px;
}

.fees-underline {
    width: 243.5px;
    height: 3px;
    background: var(--gold-line);
    margin: 0 auto 84px;
}

.fees-box {
    width: 1604px;
    max-width: 100%;
    height: 300px;
    margin: 0 auto 20px;
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 32px 24px;
    background: var(--bg);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fees-list {
    list-style: none;
    margin: 0;
    margin-left: 200px;
    max-width: calc(100% - 200px);
}

.fees-list--green li {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 1em;
    text-indent: -1em;
    color: var(--green);
}

.fees-list--green li:last-child {
    margin-bottom: 0;
}

.fees-list--green li::before {
    content: '・';
}

.fee-green {
    color: var(--green);
}

.fees-consultation {
    text-align: center;
    font-size: var(--text-md);
    font-weight: bold;
    color: var(--text);
    margin-bottom: 20px;
}

.fees-note {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

/* ––– CTA ––– */
.cta-section {
    background: var(--bg);
}

.cta-section .container {
    max-width: var(--container-wide);
}

.cta-txt {
    text-align: center;
    font-size: 56px;
    font-weight: 600;
    color: var(--green);
    font-family: var(--font-family);
    margin-bottom: 24px;
}

.cta-line1 {
    display: block;
}

.cta-line2 {
    display: block;
    margin-top: 0.1em;
}

.cta-highlight {
    color: var(--green);
}

/* ––– Contact ––– */
.contact {
    padding-top: 0;
    padding-bottom: 24px;
    background: var(--bg);
}

.contact .bar-title {
    font-size: 90px;
    font-weight: 600;
}

.contact-inner {
    padding: 60px 24px 40px;
}

.contact-sub {
    font-size: 44px;
    font-weight: 600;
    color: var(--green);
    text-align: center;
    margin-bottom: 8px;
    white-space: nowrap;
}

.contact-desc {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    white-space: nowrap;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    margin-top: 16px;
    padding: 0;
    background: transparent;
    text-decoration: none;
    transition: opacity .2s;
}

.btn-line:hover {
    opacity: .92;
}

.btn-line img {
    width: 360px;
    height: auto;
    object-fit: contain;
    display: block;
}

.btn-line-text {
    font-size: var(--text-lg);
}

.contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: var(--container-wide);
}

/* ––– Privacy ––– */
.privacy {
    padding-top: 2px;
    background: var(--bg);
}

.privacy .container {
    text-align: center;
}

.privacy-title {
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 48px;
    font-size: 50px;
    font-weight: 600;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 355px;
    max-width: 100%;
    height: 3px;
    background: var(--green);
}

.privacy-box {
    border: 3px solid var(--green);
    border-radius: 0;
    padding: 0;
    background: var(--bg);
    width: 1111px;
    max-width: 100%;
    height: 543px;
    margin: 0 auto;
    text-align: left;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: var(--green) rgba(0,0,0,.06);
}

.privacy-box::-webkit-scrollbar {
    width: 12px;
}

.privacy-box::-webkit-scrollbar-track {
    background: rgba(0,0,0,.06);
}

.privacy-box::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 6px;
}


.privacy-content {
    padding: 24px 28px;
}

.privacy-heading {
    font-size: 13px;
    font-weight: 300;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-heading:first-child {
    margin-top: 0;
}

.privacy-txt {
    font-size: 13px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}

.privacy-list li {
    font-size: 13px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 8px;
}

.privacy-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* ––– Footer ––– */
.footer {
    background: var(--bg-footer);
    padding-bottom: 40px;
}

.footer .bar-title {
    margin-bottom: 0;
    background: var(--green);
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    padding: 24px 24px;
}

.footer-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 64px 24px 48px;
}

.footer-btns .btn {
    background: var(--green);
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

/* Footer hero buttons: PC size in @media (min-width: 769px), SP 319×51 in @media (max-width: 768px) */

/* ––– Sticky banner ––– */
.sticky-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 16px;
    text-decoration: none;
}

.sticky-banner img,
.sticky-banner picture {
    display: block;
}

.sticky-banner img {
    max-width: 480px;
    width: auto;
    height: 250px;
    object-fit: contain;
}

/* PC: 23395655 反転・拡大表示（位置: translateX=左右 translateY=上下、値を変更して調整） */
@media (min-width: 769px) {
    .sp-only {
        display: none;
    }

    .why-illust {
        overflow: visible;
        position: relative;
        z-index: 0;
    }

    .why-boxes {
        position: relative;
        z-index: 1;
    }

    .why-illust-img {
        transform: scaleX(-1) scale(3) translateX(-30px) translateY(120px);
        transform-origin: center center;
    }

    .testimonial {
        gap: 40px;
    }

    .student-voice-illust {
        border: none;
    }

    .student-voice-text p {
        font-size: 36.5px;
        font-weight: 300;
    }

    .instructor-name {
        font-size: 50px;
    }

    .instructor-photo {
        width: 380px;
        max-width: 100%;
        height: 485px;
        object-fit: cover;
        object-position: center top;
    }

    .instructor-desc {
        max-width: 380px;
    }

    .challenges .bar-title {
        font-size: 90px;
        font-weight: 600;
    }

    .challenge-bar {
        font-size: 51px;
        font-weight: 600;
    }

    .challenge-sub {
        font-size: 50px;
        font-weight: 600;
    }

    .graduates .testimonial:first-of-type .testimonial-img-wrap {
        display: flex;
        justify-content: flex-end;
        overflow: visible;
    }

    .graduates .testimonial:first-of-type .testimonial-img {
        width: 80%;
        transform: translateX(45px);
    }

    .graduates .testimonial:first-of-type .testimonial-body {
        width: 750px;
        max-width: 920px;
        min-height: 85px;
        margin-left: 80px;
        text-align: left;
        box-sizing: border-box;
    }

    .graduates .testimonial:first-of-type .testimonial-txt,
    .graduates .testimonial:first-of-type .testimonial-tags {
        width: 100%;
        max-width: 920px;
        text-align: left;
    }

    .testimonial--reverse .testimonial-body {
        width: 740px;
        max-width: 920px;
        min-height: 85px;
        padding-top: 32px;
        margin-left: 40px;
        text-align: left;
        box-sizing: border-box;
    }

    .testimonial--reverse .testimonial-name {
        text-align: right;
        white-space: nowrap;
    }

    .testimonial--reverse .testimonial-img {
        width: 80%;
    }

    .testimonial--reverse .testimonial-txt,
    .testimonial--reverse .testimonial-tags {
        width: 100%;
        max-width: 920px;
        text-align: left;
    }

    .testimonial--reverse .testimonial-tags {
        padding-left: 0;
    }

    .graduates .testimonial-txt,
    .graduates .testimonial-tags {
        font-size: 22px;
    }

    .footer-btns {
        flex-direction: row;
        gap: 40px;
    }

    .footer-btns .btn-hero-1,
    .footer-btns .btn-hero-2 {
        width: 649px;
        height: 120px;
        min-height: 0;
        padding: 0;
        font-size: 40px;
        line-height: 1.15;
        box-sizing: border-box;
    }
}

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

    body {
        padding: 0 0 100px;
    }

    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .section {
        padding: 32px 0;
    }

    .header {
        min-height: 0;
        padding-bottom: 12px;
    }

    .header-inner {
        justify-content: center;
        align-items: center;
        padding-top: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo {
        width: 268px;
        max-width: 100%;
        height: 70px;
        object-fit: contain;
    }

    .hero-cta {
        flex-direction: column;
        width: 375px;
        max-width: 100%;
        min-height: 215px;
        height: auto;
        padding: 24px 16px;
        gap: 32px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .btn-hero-1,
    .btn-hero-2 {
        width: 319px;
        max-width: 100%;
        height: 51px;
        min-height: 51px;
        padding: 0 16px;
        font-size: 18px;
        line-height: 1.25;
        box-sizing: border-box;
    }

    .btn.btn-hero-1,
    .btn.btn-hero-2 {
        font-size: 18px;
    }

    .btn-arrow {
        width: 20px;
        height: 20px;
    }

    .btn-arrow::after {
        border-top-width: 4px;
        border-bottom-width: 4px;
        border-left-width: 6px;
    }

    .problems {
        padding-top: 48px;
        padding-bottom: 80px;
    }

    .problems-heading-wrap {
        margin-bottom: 8px;
        padding: 0 16px 8px;
    }

    .problems-heading-wrap .section-title {
        max-width: 100%;
    }

    .problems .section-title--dark {
        font-size: 37px;
    }

    .problems-nayami {
        font-size: 54px;
    }

    .problems-line1 {
        white-space: normal;
    }

    .problems-img {
        transform: scale(1.4);
    }

    .problems-img-wrap {
        margin-top: 8px;
        margin-bottom: -24px;
        overflow: visible;
    }

    .solution-intro > .container {
        max-width: 100%;
        padding-top: 24px;
    }

    .solution-intro .arrow-down {
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 40px solid var(--green);
        margin-bottom: 24px;
    }

    .solution-intro-title {
        width: 380px;
        max-width: 100%;
        min-height: 60px;
        font-size: 25px;
        line-height: 1.3;
        white-space: normal;
        margin-left: auto;
        margin-right: auto;
        display: block;
        text-align: center;
        padding: 6px 16px 24px;
        box-sizing: border-box;
    }

    .solution-intro-title .highlight {
        display: inline;
    }

    .solution-intro-title::after {
        width: 200px;
        bottom: 0;
    }

    .solution-desc {
        width: 322px;
        max-width: 100%;
        height: 80px;
        min-height: 80px;
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .challenges {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .challenges .bar-title {
        font-size: 30px;
        font-weight: 600;
        padding: 12px 16px;
    }

    .challenges .container {
        padding-top: 32px;
    }

    .challenge-block {
        width: 297px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
        height: 364px;
        min-height: 364px;
        box-sizing: border-box;
    }

    .challenge-block:first-of-type {
        height: 415px;
        min-height: 415px;
    }

    .challenge-bar {
        font-size: 25px;
        font-weight: 600;
        padding: 10px 16px;
    }

    .challenge-sub {
        font-size: 25px;
        font-weight: 600;
        padding: 24px 16px 4px;
    }

    .challenge-txt {
        font-size: 20px;
        font-weight: 300;
        padding: 0 16px 16px;
    }

    .stats {
        padding-bottom: 16px;
    }

    .stats .section-title {
        font-size: 25px;
        white-space: normal;
        margin-bottom: 32px;
    }

    .stats .section-title--underline::after {
        width: 243.5px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .stat-card {
        width: 307px;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        padding: 32px 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-icon-wrap {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
    }

    .stat-num {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .stat-desc {
        font-size: 22px;
        font-weight: 300;
    }

    .stats-sub {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .stats-txt {
        font-size: 20px;
        width: 307px;
        max-width: 100%;
        height: 332px;
        min-height: 332px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-txt-line1,
    .stats-txt-line2 {
        white-space: normal;
    }

    .instructors .bar-title {
        font-size: 30px;
        font-weight: 600;
        padding: 12px 16px;
        white-space: normal;
        width: 100%;
        text-align: center;
    }

    .instructors .container {
        padding-top: 32px;
    }

    .instructors {
        padding-bottom: 200px;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: center;
        justify-items: center;
    }

    .instructor-card {
        width: 320px;
        max-width: 100%;
        min-height: 190px;
        box-sizing: border-box;
    }

    .instructor-photo {
        width: 320px;
        max-width: 100%;
        height: auto;
    }

    .instructor-name {
        font-size: 35px;
    }

    .instructor-desc {
        width: 320px;
        max-width: 100%;
        font-size: 20px;
    }

    .graduates {
        padding: 48px 0 64px;
    }

    .graduates .section-title {
        font-size: 35px;
        font-weight: 600;
    }

    .graduates .section-title--underline {
        padding-bottom: 4px;
    }

    .graduates .section-title--underline::after {
        width: 200px;
    }

    .graduates .graduates-sub {
        font-size: 23px;
        margin-bottom: 0;
    }

    .graduates .container .testimonial:first-of-type {
        margin-top: 0;
    }

    .testimonial {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .graduates .testimonial:first-of-type .testimonial-img-wrap {
        margin-left: 0;
    }

    .testimonial--reverse {
        margin-top: 0;
        direction: ltr;
    }

    .testimonial--reverse .testimonial-body {
        width: 320px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0;
        text-align: left;
    }

    .testimonial-img-wrap {
        text-align: center;
    }

    .testimonial-img {
        width: 305px;
        height: 293px;
        max-width: 100%;
        object-fit: cover;
        margin: 0 auto;
        display: block;
    }

    .testimonial-body {
        width: 320px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-name {
        font-size: 28px;
        text-align: center;
    }

    .graduates .testimonial--reverse .testimonial-name {
        text-align: center;
        display: block;
        width: 100%;
    }

    .testimonial-txt {
        font-size: 20px;
        font-weight: 600;
    }

    .testimonial-tags {
        font-size: 15px;
        font-weight: 600;
        margin-top: 28px;
    }

    .course-flow .container {
        padding-top: 24px;
    }

    .roadmap-wrap {
        padding-top: 36px;
        padding-bottom: 24px;
    }

    .roadmap-img {
        transform: scale(1);
        max-width: 100%;
    }

    .why-choose {
        padding-top: 48px;
        padding-bottom: 48px;
        overflow: visible;
    }

    .why-choose .bar-title {
        font-size: 30px;
        font-weight: 600;
        padding: 12px 16px 8px;
        white-space: normal;
    }

    .why-choose .container {
        padding: 20px 16px 0;
    }

    /* SP: 画像上・ボックス下の縦並び（参考画像どおり） */
    .why-layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 48px;
    }

    .why-illust {
        order: 1;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 0 0 0;
        box-sizing: border-box;
        overflow: visible;
    }

    .why-boxes {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        align-items: stretch;
    }

    .why-illust-img {
        display: block;
        transform: scaleX(-1) scale(1.3) translateY(24px);
        transform-origin: center center;
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
    }

    .why-box {
        width: 360px;
        max-width: 100%;
        min-height: 90px;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .why-box-header {
        text-align: center;
    }

    .why-box-title {
        font-size: 35px;
        font-weight: 600;
        text-align: center;
    }

    .why-box-body {
        padding: 16px;
        text-align: center;
    }

    .why-box-txt {
        font-size: 25px;
        font-weight: 300;
        text-align: center;
    }

    .why-box-txt--single-line {
        white-space: normal;
        text-align: center;
        font-size: 25px;
        font-weight: 300;
    }

    .comparison-scroll-hint {
        display: block;
        text-align: center;
        font-size: 14px;
        color: var(--text);
        margin-bottom: 2px;
    }

    .comparison-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 8px 0 20px;
        max-width: 100%;
    }

    .comparison-img {
        width: 1390px;
        height: 637px;
        max-width: none;
        min-width: 1390px;
        object-fit: contain;
        display: block;
    }

    .career .section-title {
        font-size: 28px;
        font-weight: 600;
        white-space: normal;
        margin-bottom: 32px;
    }

    .career .section-title--underline::after {
        width: 243.5px;
    }

    .career-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .career {
        padding-bottom: 12px;
    }

    .career-img-wrap {
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

    .career-img {
        width: 297px;
        height: 365px;
        max-width: 100%;
        object-fit: contain;
        transform: none;
        margin-left: auto;
        margin-right: auto;
    }

    .career-body {
        margin-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .career-txt-box {
        width: 340px;
        max-width: 100%;
        height: 412px;
        min-height: 412px;
        padding: 16px;
        padding-bottom: 8px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .career-txt {
        font-size: 20px;
        font-weight: 300;
    }

    .career-highlight {
        width: 310px;
        max-width: 100%;
        height: auto;
        min-height: 0;
        box-sizing: border-box;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        align-self: center;
        overflow: visible;
    }

    .career-highlight-header {
        width: 100%;
        max-width: 100%;
        height: 46px;
        min-height: 46px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .career-highlight-title {
        font-size: 25px;
        font-weight: 300;
    }

    .career-highlight-body {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 12px 8px 14px;
        font-size: 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: left;
        border-width: 3px;
    }

    .career-list {
        width: fit-content;
        max-width: calc(100% - 8px);
        min-width: 280px;
        margin-left: auto;
        margin-right: auto;
        font-size: 20px;
        text-align: left;
    }

    .career-list li {
        display: block;
        margin-bottom: 0;
    }

    .career-list li::after {
        content: '、';
    }

    .career-list li:last-child::after {
        content: '';
    }

    .student-voices .section-title {
        font-size: 35px;
        width: 175px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 48px;
        text-align: center;
    }

    .student-voices .section-title--underline::after {
        width: 243.5px;
        left: 50%;
        transform: translateX(-50%);
    }

    .student-voice-item {
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 0;
        margin-bottom: 32px;
        padding: 0;
        border: none;
        border-radius: 0;
    }

    .student-voice-item:last-child {
        margin-bottom: 0;
    }

    .student-voice-illust {
        position: static;
        transform: none;
        width: 109px;
        height: 109px;
        margin: 0 auto 0;
        border: none;
    }

    .student-voice-img {
        width: 109px;
        height: 109px;
        object-fit: cover;
        opacity: 1;
        filter: contrast(1.2) saturate(1.15);
    }

    .student-voice-text {
        width: 251px;
        max-width: calc(100% - 32px);
        height: 135px;
        min-height: 135px;
        padding: 0 7px 14.5px 7px;
        margin: -20px auto 0;
        border: 2px solid var(--green);
        border-radius: var(--radius);
        background: var(--bg);
        display: block;
        text-align: left;
        box-sizing: border-box;
    }

    .student-voice-text p {
        font-size: 20px;
    }

    .faq .bar-title {
        font-size: 35px;
        font-weight: 600;
        padding: 16px 24px;
    }

    .faq .container {
        padding-top: 32px;
    }

    .faq-item {
        width: 360px;
        max-width: 100%;
        transform: none;
        margin-left: auto;
        margin-right: auto;
        border-radius: 8px;
    }

    .faq-q {
        font-size: 27px;
        font-weight: 600;
        padding: 12px 16px;
    }

    .faq-q-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .faq-item[open] {
        min-height: auto;
    }

    .faq-a {
        padding: 16px;
    }

    .faq-a p {
        font-size: 20px;
        font-weight: 300;
    }

    .fees .section-title,
    .fees-title {
        font-size: 35px;
        font-weight: 600;
    }

    .fees {
        padding-bottom: 16px;
    }

    .fees-underline {
        margin-bottom: 32px;
    }

    .fees-box {
        width: 100%;
        max-width: 120%;
        height: auto;
        min-height: 0;
        padding: 24px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-width: 3px;
    }

    .fees-list {
        margin-left: 0;
        text-align: center;
        width: 288px;
        max-width: 100%;
        height: 421px;
        min-height: 421px;
        box-sizing: border-box;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fees-list--green {
        text-align: center;
    }

    .fees-list--green li {
        font-size: 18px;
        padding-left: 0;
        text-indent: 0;
    }

    .fees-list--green li::before {
        content: '・';
        margin-right: 0.25em;
    }

    .fees-note {
        font-size: 18px;
    }

    .cta-txt {
        font-size: 30px;
    }

    .cta-section {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .contact .bar-title {
        font-size: 35px;
        font-weight: 600;
        padding: 16px 24px;
    }

    .contact-inner {
        padding: 32px 16px 0px;
    }

    .contact-sub {
        font-size: 25px;
        font-weight: 600;
        width: 310px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
        margin-bottom: 16px;
    }

    .contact-desc {
        font-size: 20px;
        font-weight: 600;
        width: 330px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
        margin-bottom: 4px;
    }

    .btn-line {
        margin-top: 8px;
    }

    .btn-line img {
        width: 336px;
        height: 105px;
        object-fit: contain;
    }

    .privacy {
        padding-bottom: 60px;
        padding-top: 1px;
    }

    .privacy .section-title,
    .privacy-title {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .privacy-box {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 400px;
        overflow-y: auto;
    }

    .privacy-txt,
    .privacy-heading,
    .privacy-list li {
        font-size: 14px;
    }

    .footer .bar-title {
        width: 100%;
        min-height: 167px;
        height: 167px;
        font-size: 35px;
        padding: 16px 24px;
        margin-left: 0;
        margin-right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    .footer-btns {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 40px 16px 40px;
        width: 375px;
        max-width: 100%;
        min-height: 215px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .footer-btns .btn {
        width: 319px;
        max-width: 100%;
    }

    .footer-btns .btn-hero-1,
    .footer-btns .btn-hero-2 {
        width: 319px;
        height: 51px;
        min-height: 51px;
        padding: 0 16px;
        font-size: 18px;
        line-height: 1.25;
        box-sizing: border-box;
    }

    .sticky-banner {
        left: 0;
        right: 0;
        bottom: 0;
        justify-content: center;
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .sticky-banner img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
}

/* ––– SP用メモ –––
 * メディアクエリ例: @media (max-width: var(--bp-sp)) { ... }
 * トークン上書き例: :root { --container: 100%; --container-wide: 100%; }
 * 余白・フォントも --space-* / --text-* で一括調整可能。
 */
