




:root {
  color-scheme: light;
  --page-bg: #ffffff;
  --text: #121212;
  --text-muted: #4c4c4c;
  --white: #ffffff;
  --black: #121212;
  --dark: #0f0f0f;
  --gray: #efefed;
  --green: #7fb1a9;
  --green-dark: #3d5d57;
  --shadow: 0 25px 60px rgba(18, 18, 18, 0.14);
  --radius: 32px;
  --max-width: 1260px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
    scroll-behavior: smooth;

}

body {
  font-family: "suns-serif", serif, system-ui, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.HOME {
  margin: 0;
  padding: 0;
  background-color: var(--page-bg);
}


/* =========================
   ハンバーガー
========================= */

.hamburger {

  position: fixed;

  top: 24px;
  right: 24px;

  width: 72px;
  height: 72px;

  border-radius: 50%;

  background: #ffffff;

  border: none;

  z-index: 9999;

  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.hamburger span {

  width: 28px;
  height: 2px;

  background: #111;

  transition: 0.3s;
}

/* 開いた時 */

.hamburger.active span:nth-child(1) {

  transform:
    rotate(45deg)
    translateY(8px);
}

.hamburger.active span:nth-child(2) {

  transform:
    rotate(-45deg)
    translateY(-8px);
}

/* =========================
   メニュー
========================= */

.global-menu {

  position: fixed;

  inset: 0;

  background: rgba(0,0,0,0.92);

  z-index: 9998;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 28px;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s;
}

/* 開いた状態 */

.global-menu.active {

  opacity: 1;
  visibility: visible;
}

.global-menu a {

  color: #fff;

  text-decoration: none;

  font-size: clamp(24px, 3vw, 48px);

  letter-spacing: 0.08em;

  transition: 0.3s;
}

.global-menu a:hover {

  opacity: 0.6;
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 768px) {

  .hamburger {

    width: 60px;
    height: 60px;

    top: 16px;
    right: 16px;
  }

  .fixed-entry {

    right: 16px;
    bottom: 16px;

    padding: 14px 22px;

    font-size: 14px;
  }
}/* =========================
   メニュー応募ボタン
========================= */

.menu-entry {

  margin-top: 18px;

  padding: 18px 34px;

  border: 1px solid rgba(255,255,255,0.6);

  border-radius: 999px;

  font-size: clamp(18px, 2vw, 24px);

  letter-spacing: 0.08em;

  transition: 0.3s;

  background: #fff;

  color: #111 !important;
}

.menu-entry:hover {

  background: transparent;

  color: #fff !important;

  border-color: #fff;

  opacity: 1;
}

/* =========================
   FV
========================= */


.nowrap {
  white-space: nowrap;
}

.FV {
  min-height: 100vh;
  width: 100%;

  background-image: url("../img/1920fv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  padding: 80px 0 100px;

  position: relative;
}

.FV::before {
  display: none;
}

/* =========================
   FV中身
========================= */

.fv-hero {

  position: relative;
  z-index: 1;

  width: 100%;

  /* ←重要 */
  max-width: 1400px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
 align-items: flex-start;
  gap: 42px;

  padding: 0 40px;
}

/* =========================
   タイトル
========================= */

.intro-small {
  font-size: 0.45em;
}


.intro-inner {
  margin-left: auto;
}

.fv-hero__title {

  position: relative;

  display: flex;
  flex-direction: column;

  gap: 10px;

  width: fit-content;

  /* ←大きくなりすぎ防止 */
  max-width: 100%;
  margin: 0;
}

/* =========================
   SEO用
========================= */

.seo-text {

  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* =========================
   SVG
========================= */

.fv-title-svg {

  display: block;

  width: 100%;

  /* ←ここ重要 */
  max-width: 980px;

  height: auto;

  object-fit: contain;
}

/* Morning */
.fv-title-svg--morning {
  width: clamp(320px, 72vw, 980px);
}

/* Discipline */
.fv-title-svg--discipline {
  width: clamp(320px, 72vw, 980px);
}

/* =========================
   説明文
========================= */

.intro-inner {
  width: 100%;
}

.intro-heading {

  margin: 0;

  font-size: clamp(22px, 2.2vw, 48px);

  line-height: 1.35;

  letter-spacing: 0.02em;

  color: #111;
}

.intro-emphasis {
  font-size: 1.1em;
}

/* =========================
   ボタン
========================= */

.fv-button {

  display: inline-flex;

  margin-top: 10px;

  width: fit-content;
}

.fv-button img {

  display: block;

  width: clamp(240px, 28vw, 460px);

  height: auto;
}

/* =========================
   タブレット
========================= */

@media screen and (max-width: 1200px) {

  .fv-hero {

    gap: 36px;

    padding: 0 28px;
  }

  .fv-title-svg--morning,
  .fv-title-svg--discipline {

    width: min(92vw, 860px);
  }

  .intro-heading {

    font-size: clamp(20px, 3vw, 36px);
  }
}
/* =========================
   スマホ
========================= */

@media screen and (max-width: 768px) {

  .FV {

    padding: 60px 0 80px;

    align-items: flex-start;
  }

  .fv-hero {

    gap: 28px;

    padding: 0 16px;
  }

  .fv-hero__title {
    gap: 6px;
  }

  /* ←ここ変更 */
  .fv-title-svg--morning,
  .fv-title-svg--discipline {

    width: clamp(280px, 82vw, 520px);

    max-width: 100%;
  }

  .intro-heading {

    font-size: clamp(18px, 5vw, 28px);

    line-height: 1.45;
  }

  .fv-button img {

    width: min(72vw, 280px);
  }
}










.FV2 {
  padding: 100px 100px 100px;

}

.fv2-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: right;

}

.fv2-copy {
  /* max-width: 720px; */
  align-items: right;
  text-align: right;
}

.fv2-headline {
  margin: 0;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--black);
}

.fv2-list {
  display: grid;
  gap: 18px;
  text-align: right;
}

.fv2-line {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.6;
  color: rgba(18, 18, 18, 0.84);
}








.ONAYAMI {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 900px;
  background: var(--dark) url("../img/onayami_back.png") center top/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%);
  padding: 120px 0 220px;
  color: #f7f7f7;
}

.onayami-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;

}

.onayami-heading {
  text-align: center;
  margin-bottom: 72px;
}

.onayami-heading p {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.88em;
  text-transform: none;
  line-height: 1.1;
}

.onayami-row {
  display: grid;
  gap: 32px;
}

.onayami-row--top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 36px;
}

.onayami-row--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 40px;
}

.onayami-card {
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
}

.onayami-icon {
  width: 250px;
  height: auto;
}

.onayami-card p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}








.INTRO {
  background: #fff;
  padding: 120px 0 80px;
}

.intro-inner {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  
}

.intro-kicker {
  margin: 0 0 24px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  color: #121212;

}

.intro-heading {
  margin: 0 0 0 auto;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  color: #121212;

  text-align: right;
  width: fit-content;
}


.intro-emphasis {
  display: inline-block;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-family: "sans-serif";
}

.LINE-SPACE {
  width: 1440px;
  height: 1539px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.LINE-SPACE .line {
  height: 925px;
  margin-left: 1px;
  width: 1px;
  object-fit: cover;
}
/* Inject the original CSS code above. */

.LINE-SPACE {
  min-height: 100vh;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.line {
  display: block;
  max-width: 100%;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;

}

.section-inner--dark,
.f-q .section-inner--dark {
  background: #2C231D;
  color: #ffffff;
  border-radius: var(--radius);
  padding: 40px 40px;
  margin: 0 auto;
  align-items: center;
}

.section-inner--white {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 80px 40px;
}

.section-copy {
  margin-bottom: 40px;
}

.section-copy--centered {
  text-align: center;
}

/* .section-label {
 color: #FFF;
font-family: "DIN Alternate";
font-size: 84px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 16.8px;
margin: 0;
} */




.section-label {

  color: #FFF;

  font-family: "DIN Alternate", sans-serif;

  /* =========================
     レスポンシブ文字サイズ
  ========================= */

  font-size: clamp(28px, 8vw, 84px);

  font-style: normal;

  font-weight: 700;

  line-height: 1;

  /* =========================
     文字間も可変
  ========================= */

  letter-spacing: clamp(4px, 1.5vw, 16.8px);

  margin: 0;

  /* =========================
     はみ出し防止
  ========================= */

  word-break: break-word;

  overflow-wrap: break-word;
}

/* =========================
   スマホ
========================= */

@media screen and (max-width: 768px) {

  .section-label {

    font-size: clamp(24px, 10vw, 52px);

    letter-spacing: 0.12em;

    line-height: 1.1;
  }
}



.section-label-point{
 color: #2C231D;
font-family: "DIN Alternate";
font-size: 84px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 16.8px;
margin: 0;
}



.section-heading {
color: #000;
font-family: "semibold", Helvetica;
font-style: normal;
font-weight: 200;
line-height: normal;
letter-spacing: 7px;
margin: 2px;
}

.section-heading--light {
  color: #ffffff;
  margin: 0 0 90px;
}

.section-heading--centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-text,
.hero-copy,
.quote-subtext {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.92;
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.75;
}

.section-text {
  color: rgba(18, 18, 18, 0.84);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 32px;
  min-height: 240px;
}

.problem-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}

.problem-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: #ffffff;
}

.problem-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.quote {
  padding: 100px 0;
}

.quote-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.quote-line {
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--black);
}

.quote-line--highlight {
  margin-top: 16px;
  color: var(--green-dark);
}

.quote-subtext {
  margin-top: 36px;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* 
.CLASS {
  background: #7fb1a9;
  padding: 120px 0;
}

.section-inner--class {
  padding: 0;
}

.class-circle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.class-circle {
  background: #ffffff;
  border-radius: 50%;
  min-height: 420px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.circle-title {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
}

.circle-copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-muted);
} */
.CLASS {
  background: #5f8f88;
  padding: 140px 40px;
  overflow: hidden;
}

/* =========================
   セクション全体
========================= */

.section-inner--class {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}

/* タイトル */

.section-copy {
  max-width: 1760px;
  margin: 0 auto 60px;
}

/* =========================
   円グリッド
========================= */

.class-circle-grid {

  display: flex;

  /* ←中央配置 */
  justify-content: center;

  align-items: flex-start;

  gap: 32px;

  margin-top: 60px;

  /* ←PCでは横3つ固定 */
  flex-wrap: nowrap;
}

/* =========================
   円
========================= */

.class-circle {

  background: #f8f8f8;

  border-radius: 50%;

  /* ←3つ並ぶサイズ */
  width: 31vw;
  height: 31vw;

  /* ←最大サイズ */
  max-width: 560px;
  max-height: 560px;

  /* ←最小サイズ */
  min-width: 420px;
  min-height: 420px;

  flex-shrink: 0;

  padding: clamp(40px, 4vw, 70px);

  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: visible;
}

/* =========================
   中身
========================= */

.circle-inner {
  width: 78%;
  max-width: 420px;
}

/* =========================
   見出し
========================= */

.circle-head {
  margin-bottom: 24px;
}

.circle-time {
  margin: 0;

  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 500;

  color: #111;
}

.circle-title {
  margin: 8px 0 20px;

  font-size: clamp(28px, 2vw, 48px);
  line-height: 1.2;
  font-weight: 700;

  color: #111;
}

/* =========================
   本文
========================= */

.circle-copy {
  font-size: clamp(12px, 0.9vw, 17px);
  line-height: 1.9;
  letter-spacing: 0.02em;

  color: #222;

  word-break: break-word;
}

.circle-copy p {
  margin: 0 0 16px;
}

.circle-copy ul {
  margin: 16px 0;
  padding-left: 20px;
}

.circle-copy li {
  margin-bottom: 6px;
}

/* =========================
   タブレット
========================= */

@media screen and (max-width: 1400px) {

  .class-circle-grid {

    flex-direction: column;

    align-items: center;
  }

  .class-circle {

    width: min(88vw, 760px);
    height: min(88vw, 760px);

    min-width: unset;
    min-height: unset;
  }
}

/* =========================
   スマホ
========================= */

@media screen and (max-width: 768px) {

  .CLASS {
    padding: 100px 16px;
  }

  .section-copy {
    margin-bottom: 40px;
  }

  .class-circle-grid {
    gap: 28px;
  }

  .class-circle {

    width: 92vw;
    height: 92vw;

    padding: 12vw;
  }

  .circle-inner {
    width: 82%;
  }

  .circle-time {
    font-size: 18px;
  }

  .circle-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .circle-copy {
    font-size: 13px;
    line-height: 1.7;
  }

  .circle-copy p {
    margin-bottom: 10px;
  }

  .circle-copy li {
    margin-bottom: 4px;
  }
}














.points {
  padding: 120px 0;
  background-color: #E9E8E8;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.point-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.point-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.point-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}


.PHOTO-SPACE {
  width: 1440px;
  height: 935px;
  background-image: url(../img/gt_mono.png);
  background-size: cover;
  background-position: 50% 50%;
}
/* Original CSS should be injected above */

body {
  min-height: 100vh;
}

.PHOTO-SPACE {
  width: 100%;
  min-height: 935px;
  background-repeat: no-repeat;
}







/* =========================
   CURRICULUM
========================= */

.CURRICULUM {

  background: #121212;

  padding: clamp(80px, 10vw, 120px) 20px;
}

/* タイトル */

.section-heading-curiculum {

  color: #ffffff;

  font-family: "semibold", Helvetica, sans-serif;

  font-weight: 200;

  line-height: 1.4;

  letter-spacing: clamp(2px, 0.5vw, 7px);

  margin: 0;
}

/* グリッド */

.curriculum-row {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;

  margin-top: 40px;
}

/* カード */

.curriculum-pill {

  background: #ffffff;

  border-radius: 999px;

  padding: clamp(28px, 4vw, 44px);

  margin: 0;

  min-width: 0;

  /* ←追加 */
  overflow: hidden;
}

/* タイトル */

.curriculum-pill h3 {

  margin: 0 0 18px;

  color: #0f0f0f;

  /* ←ここ変更 */
  font-size: clamp(16px, 1.5vw, 28px);

  line-height: 1.5;

  letter-spacing: 0.02em;

  /* ←追加 */
  word-break: keep-all;

  overflow-wrap: break-word;
}

/* 本文 */

.curriculum-pill p {

  margin: 0;

  color: #0f0f0f;

  font-size: clamp(14px, 1.1vw, 20px);

  line-height: 1.9;

  letter-spacing: 0.03em;

  word-break: break-word;
}

/* =========================
   タブレット
========================= */

@media screen and (max-width: 1024px) {

  .curriculum-row {

    grid-template-columns: 1fr;

    gap: 20px;
  }

  .curriculum-pill {

    border-radius: 60px;
  }

  .curriculum-pill h3 {

    font-size: clamp(18px, 2.8vw, 26px);
  }
}

/* =========================
   スマホ
========================= */

@media screen and (max-width: 768px) {

  .CURRICULUM {

    padding: 72px 16px;
  }

  .curriculum-row {

    gap: 16px;

    margin-top: 28px;
  }

  .curriculum-pill {

    border-radius: 42px;

    padding: 24px 22px;
  }

  .curriculum-pill h3 {

    font-size: clamp(15px, 4.5vw, 20px);

    line-height: 1.5;

    letter-spacing: 0.01em;
  }

  .curriculum-pill p {

    font-size: clamp(13px, 3.8vw, 17px);

    line-height: 1.8;
  }
}













.TEACHER {
  background: #323232;
  padding: 120px 40px;
}

.section-label-teacher {
  color: #ffffff;
font-family: "DIN Alternate";
font-size: 84px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 16.8px;


}

.section-teacher {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;

}

.section-teacher .section-text{
    color:#ffffff;
}
.teacher-copy {
  max-width: 580px;
  align-items: center;
}

.teacher-photo {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.PLAN {
  width: 1440px;
  height: 755px;
  background-color: #ececec;
  padding: 120px 40px;
}

.section-label-plan {
 color: #2C231D;
font-family: "DIN Alternate";
font-size: 84px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 16.8px;
margin: 0;
padding: 0 0 90px;
}

.PLAN .plan-tex {
  display: flex;
  margin-top: 54px;
  width: 952px;
  height: 529px;
  margin-left: 112px;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 78px;
}

.PLAN .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "DIN Alternate-Bold", Helvetica;
  font-weight: 700;
  color: var(--);
  font-size: 84px;
  letter-spacing: 57.12px;
  line-height: 97.8px;
}

.PLAN .plan-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 41px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.PLAN .p {
  display: flex;
  flex-direction: column;
  width: 742px;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  flex: 0 0 auto;
}

.PLAN .p-money {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.PLAN .price {
  position: relative;
  width: fit-content;
  margin:0;
  font-family: "serif";
  font-size: 64px;
  text-align: left;
  color: #000000;
  line-height: normal;
}

.PLAN .span {
  letter-spacing: 4.1px;
}

.PLAN .text-wrapper-2 {
  letter-spacing: -2.05px;
  font-weight: 700;
}

.PLAN .text-wrapper-3 {
  font-family: "Hiragino Mincho Pro-Regular", Helvetica;
  letter-spacing: 4.1px;
  font-size: 24px;
}

.PLAN .div {
  position: relative;
  width: fit-content;
  font-family: "Kozuka Mincho Pro-L", Helvetica;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  color: #000000;
  line-height: normal;
}

.PLAN .text-wrapper-4 {

  font-family: "Inter-Bold", Helvetica;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 12px;
  color: #000000;
  line-height: normal;
  padding: 10px 0 10px;
}

.PLAN .p-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.PLAN .p-s {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.PLAN .i-icon-icon {
  position: relative;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  object-fit: cover;
}

.PLAN .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Hiragino Mincho Pro-W6", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 32px;
  letter-spacing: 6.4px;
  line-height: normal;
}

.PLAN .p-s-po {
  display: flex;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
/* Original CSS is automatically injected above */

body {
  background-color: #ececec;
}

.PLAN {
  width: 100%;
  min-height: 755px;
  height: auto;
}

.PLAN .plan-tex {
  max-width: 952px;
  width: calc(100% - 224px);
}

.PLAN .p {
  max-width: 742px;
  width: 100%;
}

.PLAN .p-money {
  width: 100%;
}

.PLAN .element,
.PLAN .div,
.PLAN .text-wrapper-4,
.PLAN .text-wrapper-5 {
  margin: 0;
}

.PLAN .p-s,
.PLAN .p-s-po {
  gap: 0;
}

.PLAN .i-icon-icon {
  display: block;
  flex: 0 0 44px;
}

@media (max-width: 1440px) {
  .PLAN .plan-tex {
    margin-left: 7.7778vw;
  }
}

@media (max-width: 1024px) {
  .PLAN {
    min-height: auto;
  }

  .PLAN .plan-tex {
    width: calc(100% - 96px);
    margin-left: 48px;
    margin-right: 48px;
    gap: 56px;
  }

  .PLAN .text-wrapper {
    font-size: 72px;
    letter-spacing: 40px;
    line-height: 1.1;
  }

  .PLAN .element {
    font-size: 56px;
  }

  .PLAN .text-wrapper-4 {
    position: static;
    margin-top: 12px;
    letter-spacing: 8px;
  }

  .PLAN .text-wrapper-5 {
    font-size: 28px;
    letter-spacing: 4.8px;
  }

  .PLAN .p-sub {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .PLAN .plan-tex {
    width: calc(100% - 40px);
    margin-top: 32px;
    margin-left: 20px;
    margin-right: 20px;
    gap: 40px;
  }

  .PLAN .text-wrapper {
    font-size: 48px;
    letter-spacing: 20px;
    line-height: 1.15;
  }

  .PLAN .plan-sub {
    gap: 28px;
  }

  .PLAN .element {
    font-size: 40px;
    line-height: 1.3;
  }

  .PLAN .div {
    font-size: 16px;
  }

  .PLAN .text-wrapper-4 {
    font-size: 18px;
    letter-spacing: 4px;
    line-height: 1.4;
  }

  .PLAN .text-wrapper-5 {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.5;
  }

  .PLAN .i-icon-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}


.f-q {
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: #2C231D;
  margin: 0 auto;
}
.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 24px 30px;
}

.faq-item summary {
  margin: 0;
  font-size: 20px;
}

.faq-item p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.FUTTER {
  padding: 60px 0 40px;
  text-align: center;
}

.footer-inner {
  background: var(--gray);
  border-radius: 28px;
  padding: 26px 24px;
  display: inline-flex;
  flex-direction:column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
}


/* .footer-sns {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
} */



.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.footer-icon img {
  width: 48px;
  height: 48px;
  display: block;
  opacity: 1;
}


.footer-icon {
  display: block;
  transition: opacity 0.3s ease;
}

.footer-icon:hover {
  opacity: 0.7;
}

/* .footer-icon img {
  display: block;
  width: 72px;
  height: auto;
} */

@media (max-width: 1120px) {
  .fv2-inner,
  .onayami-row--top,
  .onayami-row--bottom,
  .problem-grid,
  .class-circle-grid,
  .points-grid,
  .curriculum-row,
  .plan-grid,
  .section-teacher {
    grid-template-columns: 1fr;
  }

  .fv2-inner {
    gap: 32px;
  }

  .onayami-row--top,
  .onayami-row--bottom {
    gap: 24px;
  }

  .section-inner--dark,
  .section-inner--white,
  .section-inner--class,
  .section-inner--curriculum,
  .section-inner--plan {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .HOME {
    padding: 0 18px 60px;
  }

  .FV {
    padding: 60px 0 80px;
    background-position: center 20%;
  }

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

  .fv2-headline {
    font-size: clamp(40px, 10vw, 64px);
  }

  .fv2-line {
    font-size: clamp(18px, 4vw, 22px);
  }

  .hero-inner {
    padding: 0 18px;
  }

  .hero-heading {
    font-size: clamp(42px, 10vw, 64px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-button {
    width: 100%;
    justify-content: center;
  }

  .section-inner {
    padding: 60px 0;
  }

  .section-inner--dark,
  .section-inner--white,
  .section-inner--class,
  .section-inner--curriculum,
  .section-inner--plan {
    padding: 60px 20px;
  }

  .onayami-inner {
    padding: 0 18px;
  }

  .onayami-heading p {
    font-size: clamp(20px, 4vw, 30px);
    letter-spacing: 0.5em;
  }

  .onayami-card p {
    font-size: 16px;
  }

  .intro-inner {
    padding: 0 18px;
  }

  .intro-heading {
    font-size: clamp(34px, 8vw, 50px);
  }

  .problem-grid,
  .class-circle-grid,
  .points-grid,
  .curriculum-row,
  .plan-grid,
  .section-teacher {
    gap: 20px;
  }

  .class-circle {
    min-height: auto;
    padding: 32px;
  }

  .quote-line {
    font-size: clamp(32px, 10vw, 48px);
  }

  .footer-inner {
    flex-direction: column;
  }
}


.LAST-OUBO {
  width: 100%;
  height: 450px;
  margin: 0 auto;

  background-image: url(../img/LAST_OUBO.png);
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.oubobtn {
  display: block;
  transition: 0.3s;
}

.oubobtn img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.oubobtn:hover {
  opacity: 0.95;
}


.CONTACT-PAGE {

  min-height: 100vh;

  padding: 160px 20px 120px;

  background: #ececec;
}

.contact-page-inner {

  max-width: 760px;

  margin: 0 auto;
}

.contact-page-title {

  font-size: clamp(40px, 5vw, 72px);

  margin-bottom: 24px;
}

.contact-page-text {

  font-size: 18px;

  margin-bottom: 48px;
}

.contact-form-wrap {

  background: #fff;

  border-radius: 32px;

  padding: 48px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}