/* ============================================
   LAKSHME - style.css
   ============================================ */

/* ---- Design Tokens ---- */
:root {
    --red: #e60026;
    --red-bright: #f00032;
    --red-cta: #f7011b;
    --blue: #2ba0e0;
    /* instructor / fee section bg */
    --blue-mid: #1577cf;
    /* course cards */
    --blue-deep: #0964be;
    /* headings / buttons */
    --blue-light: #4199f2;
    /* section heading accents */
    --navy: #022b62;
    /* cta card bg / dark plan head */
    --hero-bg: #dcf0fa;
    --pale: #d1ebff;
    --line: #b9dbf7;
    --footer-bg: #0f161f;
    --text: #1a2230;
    --text-sub: #56606e;
    --white: #ffffff;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text);
    line-height: 1.8;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.grecaptcha-badge { visibility: hidden; }

/* ---- Layout ---- */
.container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 24px;
    z-index: 999;
}

.container--narrow {
    max-width: 860px;
}

.container--form {
    max-width: 500px;
    margin: 0 auto;
}

.tx-blue {
    color: var(--blue-deep);
}

.tx-red {
    color: var(--red-bright);
}

/* ---- Section heading ---- */
.sec-head {
    text-align: center;
    margin-bottom: 48px;
}

.sec-head__en {
    color: var(--blue);
    font-weight: 400;
    font-size: 0.625rem;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.sec-head__ja {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}

.sec-head__sub {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--blue-light);
}

.sec-head--light .sec-head__ja {
    color: var(--white);
}

.sec-head--light .sec-head__sub {
    color: rgba(255, 255, 255, 0.9);
}

.sec-head--left {
    text-align: left;
    margin-bottom: 20px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    background:#fff;
    z-index: 9999;
}

.header__inner {
    max-width: 1280px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 28px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.gnav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.gnav__list {
    display: flex;
    gap: 26px;
}

.gnav__list a {
    font-size: 0.9375rem;
    font-weight: 500;
}

.gnav__list a:hover {
    color: var(--blue-deep);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 12px 20px;
    border-radius: 6px;
}

.btn-contact img {
    width: 18px;
    aspect-ratio: 1/1;
    filter: brightness(0) invert(1);
}

.btn-contact:hover {
    background: #c4001f;
}

.header__toggle {
    display: none;
}

/* ============================================
   MV / Hero
   ============================================ */
.mv {
    position: relative;
    background: var(--hero-bg);
    overflow: hidden;
    padding: 40px 0 40px;
}

.mv__dec{
    position: absolute;
}

.mv__deco {
    position: absolute;
    z-index: 0;
    border: 26px solid var(--blue-deep);
    width: 90px;
    height: 90px;
}

.mv__dec--1{
    top: -40px;
    right: -40px;
}

.mv__dec--2{
    bottom: 0;
    left: 0;
}

.mv__dec--3{
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.mv__dec--4{
    top: 0;
    left: 50px;
}
.mv__deco--1 {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.mv__deco--2 {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.mv__photo {
    position: absolute;
    right: -210px;
    bottom: -270px;
    z-index: 1;
    width: 100%;
    max-width: 909px;
    object-fit: contain;
}

.mv__vertical {
    position: absolute;
    top: 40px;
    left: 139px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    writing-mode: vertical-rl;
}

.mv__vertical p {
    background: #fff;
    height: fit-content;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    color: #000;
    padding: 5px 10px;
}

.mv__inner {
    position: relative;
    z-index: 3;
    margin-inline: auto;
    padding-inline: 24px;
}

.mv__head {
    position: relative;
    text-align: center;
    padding: 51px 0;
    max-width: 822px;
    margin: 0 auto;
}

.mv__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.mv__badges li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--red-bright);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 3px 15px;
    border-radius: 50px;
}

.mv__badges img {
    width: 24px;
    aspect-ratio: 1/1;
}

.mv__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}

.mv__title-sm {
    font-size: 2.5rem;
}

.mv__title-lg {
    display: inline-flex;
    align-items: center;
    font-size: 3.375rem;
    color: #000;
}

.mv__title-no {
    font-size: 2.5rem;
    color: #000;
}

.mv__title .tx-blue {
    color: var(--blue-deep);
}

.mv__title .tx-red {
    color: #de0931;
}

.mv__lead {
    position: relative;
    text-align: center;
    margin-top: 20px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    z-index: 1;
}

.mv__lead span {
    display: inline-block;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
}

/* ============================================
   CTA cards (shared)
   ============================================ */
.cta-cards {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
    z-index: 4;
}

.cta-cards--inner {
    margin-top: 40px;
}

.cta-card {
    position: relative;
    background: var(--navy);
    border-radius: 10px;
    padding: 5px;
    width: 376px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cta-card__head {
    width: 100%;
}

.cta-card__badge {
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 2;
    width: 67px;
    height: 67px;
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 2px 6px;
}

.cta-card__badge b {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.cta-card__badge small {
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-card__badge--red {
    background: #f23255;
}

.cta-card__badge--blue {
    background: #106dc6;
}

.cta-card__title {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.8;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 44px;
}

.cta-card__body {
    background: #fff;
    border-radius: 5px;
    width: 366px;
    max-width: 100%;
    min-height: 106px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 8px;
}

.cta-card__note {
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 0.625rem;
    font-weight: 700;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-card__note img {
    width: 34px;
    aspect-ratio: 1/1;
    margin-top: 0;
}

.cta-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.6px;
    width: 320px;
    max-width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
}

.cta-card__btn img {
    width: 17px;
    aspect-ratio: 1/1;
    filter: brightness(0) invert(1);
}

.cta-card__btn--red {
    background: #df0a31;
}

.cta-card__btn--red:hover {
    background: #c40029;
}

.cta-card__btn--blue {
    background: #106bc6;
}

.cta-card__btn--blue:hover {
    background: #0d5aa8;
}

/* ============================================
   WHY
   ============================================ */
.why {
    position: relative;
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.why__dec {
    position: absolute;
}

.why__dec--1 {
    bottom: 10%;
    left: 0;
}

.why__dec--2 {
    top: 0;
    left: 0;
}

.why__dec--3 {
    bottom: 0;
    right: 0;
}

.why__dec--4 {
    right: 0;
    top: 10%;
}

.why__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin-inline: auto;
}

/* ---- single reason card ---- */
.why-card {
    position: relative;
    display: grid;
    align-items: center;
    gap: 40px;
    grid-template-columns: 1fr 430px;
    grid-template-areas: "text media";
    padding: 20px;
}

.why-card--rev {
    grid-template-columns: 430px 1fr;
    grid-template-areas: "media text";
}

.why-card__text {
    grid-area: text;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
}

.why-card--rev .why-card__text {
    align-items: flex-end;
}

.why-card__text>p {
    width: 400px;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
}

.why__note {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #000;
}

/* point + title row */
.why__point {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.why__num {
    position: relative;
    flex-shrink: 0;
    width: 143px;
    height: 120px;
}

.why__num::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    background: url("../images/ellipse6.svg") no-repeat center / 120px 120px;
}

.why__num-text {
    position: absolute;
    left: 80px;
    top: 0;
    width: 63px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4199f2;
    font-family: "Montserrat", "Inter", sans-serif;
    line-height: 1;
}

.why__num-label {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.why__num-fig {
    font-size: 3.3125rem;
    font-weight: 700;
    line-height: 1;
}

.why__point h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}

/* media (photo + decorative icon) */
.why-card__media {
    grid-area: media;
    position: relative;
    max-width: 430px;
}

.why-card__photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.why-card--4 .why-card__photo {
    height: 258px;
}

.why-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card__icon {
    position: absolute;
    pointer-events: none;
}

.why-card--1 .why-card__icon {
    width: 200px;
    height: 200px;
    left: 290px;
    top: 142px;
}

.why-card--2 .why-card__icon {
    width: 217px;
    height: 80px;
    left: -40px;
    top: 242px;
}

.why-card--3 .why-card__icon {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -40px;
}

.why-card--4 .why-card__icon {
    width: 200px;
    height: 200px;
    left: -60px;
    top: 142px;
}

/* ============================================
   INSTRUCTORS
   ============================================ */
.instructor {
    position: relative;
    background: var(--blue);
    padding: 70px 0 90px;
    overflow: hidden;
}

.instructor__wm {
    position: absolute;
    top: 40px;
    right: 40px;
    aspect-ratio: 1140/120;
    height: auto;
    z-index: 0;
}

.instructor .container {
    position: relative;
    z-index: 1;
}

.inst__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 870px;
    margin-inline: auto;
}

.inst-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.inst-card__photo {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.inst-card__photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.inst-card__photo--y {
    background: #fefb41;
}

.inst-card__photo--b {
    background: #93e3fd;
}

.inst-card__credit {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 0.75rem;
    color: #000;
}

.inst-card__body {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.inst-card__role {
    color: #106bc6;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.inst-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.inst-card__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin:0 0 20px 0;
}

.inst-card__meta>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inst-card__meta dt {
    background: #3b97c9;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    width: 84px;
    padding: 0 10px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.inst-card__meta dd {
    margin: 0;
    font-size: 0.875rem;
    color: #000;
}

.inst-card__desc {
    font-size: 0.875rem;
    color: #000;
    line-height: 1.6;
}

/* ============================================
   COURSE
   ============================================ */
.course {
    position: relative;
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.course__dec {
    position: absolute;
    z-index: 0;
}

.course__dec--1 {
    top: 0;
    right: 0;
}

.course__dec--2 {
    bottom: 0;
    right: 0;
}

.course__dec--3 {
    bottom: 30%;
    left: 0;
}

.course .container {
    position: relative;
    z-index: 1;
}

.course__top {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
    margin-bottom: 56px;
}

.course__intro {
    display: flex;
    flex-direction: column;
}

.course__intro .sec-head__en {
    color: var(--red-bright);
}

.course__lead {
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
}

.course__points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fde5ea;
    border-radius: 0;
    padding: 20px;
}

.course__points img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    margin-top: 6px;
    flex-shrink: 0;
}

.course__points div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.course__points b {
    display: block;
    color: var(--red-bright);
    font-size: 1.125rem;
    font-weight: 700;
}

.course__points span {
    font-size: 0.875rem;
    color: #000;
}

.course__photo{
    position: relative;
}

.course__photo img:not(.course__icon) {
    width: 350px;
    max-width: 100%;
    height: 327px;
    object-fit: cover;
    border-radius: 10px;
}

.course__icon{
    position: absolute;
    bottom: -143px;
    right: -40px;
}

.course__band {
    text-align: center;
    margin: 48px 0 32px;
}

.course__band span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 40px;
    padding: 10px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    word-break: auto-phrase;
}

.course__band span::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 43px;
    width: 13px;
    height: 13px;
    background: #fff;
    border-bottom: 2px solid #000;
    transform: translateX(-50%) rotate(45deg);
}


.course__band span br {
	display: none;
}

.subj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.subj-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #289be6;
    color: #fff;
    border-radius: 0;
    padding: 20px;
    overflow: hidden;
}

.subj-card__icon {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 4px;
}

.subj-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.subj-card__deco {
    position: absolute;
    bottom: 20px;
    right: -50px;
    width: 154px;
    height: 154px;
    z-index: 0;
    pointer-events: none;
}

.subj-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.subj-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.target-card {
    position: relative;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
}

.target-card__no {
    position: absolute;
    top: -23px;
    right: -8px;
    width: 87px;
    height: 87px;
    padding: 25px 0 0 24px;
    background: #dcf0fa;
    border-radius: 50%;
    font-family: "Roboto Condensed", "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
}

.target-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #106bc6;
    margin-bottom: 5px;
}

.target-card>p {
    font-size: 0.875rem;
    color: #000;
    margin-bottom: 10px;
}

.target-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.target-card__tags li {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #ebebeb;
    color: #000;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 5px 8px 5px 5px;
    border-radius: 30px;
}

.target-card__tags img {
    width: 14px;
    height: 14px;
    aspect-ratio: 1/1;
}

/* ============================================
   PRICE / FEE
   ============================================ */
.fee {
    position: relative;
    background: var(--blue);
    padding: 70px 0 90px;
    overflow: hidden;
}

.fee__wm {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 486/128;
    height: auto;
    z-index: 0;
}

.fee .container {
    position: relative;
    z-index: 1;
}

.fee__zero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.fee__zero li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 30px;
    padding: 10px 16px 10px 10px;
}

.fee__zero img {
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
}

.fee__zero span {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.fee__zero b {
    color: #f00032;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 870px;
    margin: 0 auto 40px;
}

.plan-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
}

.plan-card__ribbon {
    position: absolute;
    top: -11px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    background: #f23255;
    border: 1px solid #ff8299;
    border-radius: 60px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.plan-card__head {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 15px 10px;
    border-radius: 10px 10px 0 0;
}

.plan-card__head h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.plan-card__head h3 img {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
}

.plan-card__head p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 5px;
}

.plan-card__head--navy {
    background: var(--navy);
}

.plan-card__head--red {
    background: #df0a31;
}

.plan-card__body {
    padding: 20px;
}

.plan-card--recommend .plan-card__body {
    border: 1px solid #f00032;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.plan-card__row {
    text-align: center;
    padding: 0 0 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ededed;
}

.plan-card__row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.plan-card__course {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

.plan-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #106bc6;
}

.plan-card__price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
}

.plan-card__price--red {
    color: #df0a31;
}

.plan-card__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
    border: 3px solid #df0a31;
    border-radius: 4px;
    color: #df0a31;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 6px 10px;
}

.plan-card__guarantee img {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
}

.fee__info {
    max-width: 870px;
    margin: 0 auto 40px;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 20px;
}

.fee__info>div {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 0 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
}

.fee__info>div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fee__info dt {
    color: #ebebeb;
    font-weight: 400;
    font-size: 1rem;
    min-width: 96px;
}

.fee__info dd {
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.fee__caption {
    max-width: 677px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.5;
}

.fee__caption img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

/* ============================================
   CTA section
   ============================================ */
.cta {
    position: relative;
    background: var(--red-cta);
    padding: 70px 0 80px;
    overflow: hidden;
    text-align: center;
}

.cta__deco {
    position: absolute;
    background: #e60018;
    z-index: 0;
    width: 1121px;
    height: 271px;
    pointer-events: none;
}

.cta__deco--1 {
    top: -207px;
    left: -477px;
    transform: rotate(-110deg);
}

.cta__deco--2 {
    bottom: -168px;
    right: -185px;
    transform: rotate(-73deg);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta__title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
}

.cta__lead {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 30px;
}

.cta__limit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border-radius: 30px;
    padding: 10px 30px 10px 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-top: 30px;
}

.cta__limit img {
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
}

.cta__limit b {
    color: #f00032;
    font-weight: 700;
}

.cta__note-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.6px;
    line-height: 1.8;
    padding: 10px 30px;
    border-radius: 5px;
    margin-top: 40px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
}

.cta__note-link img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    position: relative;
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.faq__dec {
    position: absolute;
}

.faq__dec--1 {
    top: 0;
    right: 0;
}

.faq__dec--2 {
    bottom: 0;
    right: 0;
}

.faq__dec--3 {
    bottom: 30%;
    left: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: left;
}

.faq-item__mark {
    flex-shrink: 0;
    width: 39px;
    height: 39px;
    border-radius: 4px;
    background: var(--blue-deep);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.faq-item__mark--a {
    background: var(--red);
}

.faq-item__arrow {
    width: 16px;
    aspect-ratio: 1/1;
    margin-left: auto;
    transition: transform 0.3s;
    transform: rotate(90deg);
}

.faq-item.is-open .faq-item__arrow {
    transform: rotate(-90deg);
}

.faq-item__a {
    display: none;
    gap: 14px;
    padding: 0 22px 20px;
    align-items: flex-start;
}

.faq-item.is-open .faq-item__a {
    display: flex;
}

.faq-item__a p {
    font-size: 0.875rem;
    line-height: initial;
    color: #000;
}

.faq__contact {
    margin-top: 40px;
    border: 2px solid var(--red);
    border-radius: 8px;
    text-align: center;
    padding: 24px;
}

.faq__contact p {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 5px 40px;
    border-radius: 6px;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
}

.btn-red img {
    width: 16px;
    aspect-ratio: 1/1;
    filter: brightness(0) invert(1);
}

.btn-red:hover {
    background: #c4001f;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    position: relative;
    padding: 80px 0 100px;
    background: #fff;
    overflow: hidden;
}

.contact__deco {
    position: absolute;
    border: 24px solid var(--pale);
    width: 80px;
    height: 80px;
    z-index: 0;
}

.contact__deco--1 {
    top: -40px;
    left: -120px;
    border-right: none;
    border-bottom: none;
}

.contact__deco--2 {
    bottom: -40px;
    right: -120px;
    border-left: none;
    border-top: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 500px;
    width: 100%;
}

.form__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.form__row label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}

.req {
    color: #f00032;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.1;
}

.form input:not(.form input.form__submit) ,
.form select,
.form textarea{
    width: 100%;
    max-width: 240px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    padding: 5px 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
    background: #fff;
    color: var(--text);
}

.form input[type='email'],.form textarea{
    max-width: 100%;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #bbb;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--blue-deep);
    box-shadow: 0 0 0 3px rgba(9, 100, 190, 0.12);
}

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

.form__hint {
    font-size: 1rem;
    line-height: 1.5;
    color: #106bc6;
    margin-top: 0;
}

.form__schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form__schedule-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.form__schedule-row span {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    white-space: nowrap;
}

.form__schedule-row input,
.form__schedule-row select {
    flex: 1;
    min-width: 0;
}

.form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 40px;
    background: #df0a31;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.6px;
    line-height: 1.8;
    padding: 10px;
    border-radius: 5px;
    margin-top: 0;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
}

.form__submit::after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url('../images/arrow.svg') no-repeat center / contain;
    filter: brightness(0) invert(1);
}

.form__submit img {
    width: 17px;
    aspect-ratio: 1/1;
    filter: brightness(0) invert(1);
}

.form__submit:hover {
    background: #c4001f;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--footer-bg);
    color: #fff;
    padding: 40px 0;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer__name {
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.8;
    color: #fff;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

.footer__info img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

.footer__info a {
    color: #fff;
}

.footer__info a:hover {
    text-decoration: underline;
}

.footer__nav {
    display: flex;
    gap: 60px;
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__nav a {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.footer__nav a:hover {
    opacity: 0.7;
}

.footer__copy {
    margin-top: 40px;
    text-align: center;
    font-size: 0.875rem;
    color: #919191;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1300px) {
    .mv__photo {
        width: 65%;
    }

    .mv__title {
        font-size: 2.375rem;
    }

    .mv__vertical{
        left: 10px;
        top: 140px;
    }
}

@media (max-width: 900px) {

    /* Header -> drawer */
    .header__toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        margin-left: auto;
    }

    .header__toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text);
        transition: 0.3s;
    }

    .header__toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .header__toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .gnav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .gnav.is-open {
        max-height: 460px;
    }

    .gnav__list {
        flex-direction: column;
        gap: 0;
    }

    .gnav__list a {
        display: block;
        padding: 16px 28px;
        border-bottom: 1px solid #eee;
    }

    .btn-contact {
        margin: 16px 28px;
        justify-content: center;
    }

    .mv {
        padding: 48px 0 60px;
    }

    .mv__photo {
        width: 100%;
        z-index: 0;
        bottom: -180px;
    }

    .mv__head{
        padding:0;
    }

    .mv__vertical {
        display: none;
    }

    .mv__deco {
        display: none;
    }

    .mv__title {
        font-size: 2rem;
    }

    .why__list {
        max-width: 480px;
        gap: 80px
    }

    .why-card,
    .why-card--rev {
        grid-template-columns: 1fr;
        grid-template-areas: "text" "media";
        gap: 24px;
        padding: 0;
    }

    .why-card__text {
        padding: 0;
        gap: 12px;
    }

    .why-card--rev .why-card__text {
        align-items: flex-start;
    }

    .why-card--rev .why__point {
        justify-content: flex-start;
    }

    .why-card__text>p {
        width: 100%;
    }

    .why-card__media {
        width: 100%;
    }

    .why-card__photo,
    .why-card--4 .why-card__photo {
        width: 100%;
        height: auto;
        aspect-ratio: 430 / 282;
    }

    .why-card--1 .why-card__icon {
        width: 120px;
        height: 120px;
        left: auto;
        right: -8px;
        top: auto;
        bottom: -24px;
    }

    .why-card--2 .why-card__icon {
        width: 150px;
        height: 55px;
        left: -8px;
        top: auto;
        bottom: -20px;
    }

    .why-card--3 .why-card__icon {
        width: 130px;
        height: 130px;
        right: -8px;
        bottom: -24px;
    }

    .why-card--4 .why-card__icon {
        width: 120px;
        height: 120px;
        left: -8px;
        top: auto;
        bottom: -24px;
    }

    .inst__cards {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    .course__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .course__photo img:not(.course__icon){
        width: 100%;
        height: auto;
        aspect-ratio: 350 / 327;
    }

    .subj-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .plan-cards {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
}

@media (max-width: 600px) {
    .wpcf7-form-control-wrap{
        width: 100%;
    }

    .form input:not(.form input.form__submit), .form select, .form textarea{
        width: 100%;
        max-width: 100%;
    }

    .form__schedule{
        flex-direction: column;
    }

    .sec-head__ja {
        font-size: 1.5rem;
    }
    
    .mv__photo {
        width: 160%;
        z-index: 0;
        bottom: -80px;
    }

    .mv__title {
        font-size: 1.625rem;
    }

    .mv__lead{
        padding: 0 10px;
    }

    .mv__title-lg{
        font-size: 2rem;
    }

    .mv__badges li {
        font-size: 0.8125rem;
        padding: 7px 14px;
    }

    .cta__title {
        font-size: 1.625rem;
    }

    .subj-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        max-width: 100%;
    }

    .cta-card__title{
        padding-left: 80px;
    }

    .why__point h3 {
        padding-left: 20px;
        font-size: 1.25rem;
    }

    .why__point h3 br{
        display: none;
    }

    .why__num-text{
        right: 0px;
        height: 76px;
        width: auto;
    }

    .why__num {
        width: 76px;
        height: 76px;
        font-size: 1.875rem;
    }
    
    .why__num::before{
        width: 76px;
        height: 76px;
        background: url(../images/ellipse6.svg) no-repeat center / 76px 76px;
    }
    .why__num-label{
        font-size: 0.75rem;
    }
    .why__num-fig{
        font-size: 1.25rem;
    }

    .course__icon{
        bottom:-30px;
    }

    .plan-card__price {
        font-size: 1.375rem;
    }

    .form__schedule-row {
        flex-direction: column;
        justify-content: center;
        align-items: baseline;
    }

    .form__schedule-row span {
        margin-bottom: -4px;
    }

    .footer__inner {
        flex-direction: column;
    }
}
@media (max-width: 540px) {
    .course__band span br {
        display: inline;
    }
}