@charset "UTF-8";
/*共通*/
:root {
  --font-normal: 20px; /*PC用テキスト*/
  --font-normal-sp: 20px; /*スマホ用タイトル*/
  --font-big: 24px; /*スマホ用タイトル*/
  --font-navy: #004789; /*紺色フォントカラー*/
  --font-blue: #4d5ca6; /*青色フォントカラー*/
  --font-dark-navy: #03305f; /*濃い紺色フォントカラー*/
  --bg-navy:#032e5d; /*背景用紺色*/
  --dot-navy:#054b99; /*紺色装飾カラー*/
  --minion-font: "minion-pro", serif; /*サブタイトルフォント*/
  font-weight: 400;
  font-style: normal;
  /*お問い合わせフォーム用*/
  --bg:#043161;
  --white:#fff;
  --ink:#0b1a2e;
  --field-radius:10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  color: #333;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #333;
}

p {
  font-size: var(--font-normal);
  color: #333333;
}

h2 {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

img {
  width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}

section {
  margin: 0 auto;
}

.spNon {
  display: block;
}

.spOnly {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.font-brown {
  font-weight: 600;
  color: #ae8b14;
}

.font-beige {
  font-weight: 600;
  color: #f3cc6f;
}

.yellow__line {
  position: relative;
  display: inline-block;
}
.yellow__line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #857942, #e8cb59, #857942);
}

.back__white {
  padding: 5px 10px;
  color: var(--font-navy);
  background-color: #fff;
}

.space__big {
  display: block;
  margin-bottom: 20px;
}

/*青背景タイトル*/
.blue__ttl {
  position: relative;
  width: 100%;
  height: 100px;
  text-align: center;
  background: linear-gradient(to right, #033265, #074f98, #033265);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.blue__ttl::before, .blue__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #857942, #e8cb59, #857942);
}
.blue__ttl::before {
  top: 0;
}
.blue__ttl::after {
  bottom: 0;
}

/* ボタン本体 */
.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: #fff;
  border: 1px solid #0b2e55;
  color: #0b2e55;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  box-shadow: 6px 6px 0 #0b2e55;
}

/*アコーディオン*/
.img-accordion-inner {
  position: relative;
  overflow: hidden;
  max-height: 290px;
  transition: max-height 0.3s ease;
}

/* 開いた状態 */
.img-accordion[aria-open=true] .img-accordion-inner {
  max-height: 7000px;
  overflow: visible;
}
.img-accordion[aria-open=true] .img-accordion-inner .accordion-trigger {
  bottom: -10px;
}

/* 画像 */
.img-accordion-inner img {
  width: 100%;
  display: block;
}

/* 下フェード（閉じてる時だけ） */
.img-accordion[aria-open=false] .img-accordion-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.accordion-trigger {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 20px;
  background: #fff;
  border-radius: 999px; /* ← カプセル */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  font-weight: 600;
  color: #1f4ea8;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ホバー演出（任意） */
.accordion-trigger:hover {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.16);
  transform: translateX(-50%) translateY(-1px);
}

/* 表示切り替え */
.open-text {
  display: inline;
}

.close-text {
  display: none;
}

.img-accordion[aria-open=true] .open-text {
  display: none;
}

.img-accordion[aria-open=true] .close-text {
  display: inline;
}

/*アコーディオン２つめ*/
.accordion {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  max-height: 60px;
  transition: max-height 0.3s ease;
}
.accordion[aria-open=true] {
  max-height: 2000px;
}
.accordion[aria-open=true] .chevron {
  transform: rotate(-135deg);
}
.accordion[aria-open=true] .accordion-body {
  grid-template-rows: 1fr;
}
.accordion-head {
  width: 100%;
  display: grid;
  grid-template-columns: 96px 1fr;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.accordion-head2 {
  width: 100%;
  display: grid;
  grid-template-columns: 100% 1fr;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.accordion .month {
  padding: 19px 0;
  background: linear-gradient(180deg, #2f66b3, #1f4ea8);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion .head-main {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.accordion .head-main2 {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.accordion .head-title {
  color: #1f3f73;
  font-size: 18px;
  line-height: 1.4;
  white-space: nowrap;
}
.accordion .head-title strong {
  font-weight: 700;
}
.accordion .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #9aa5b1;
  border-bottom: 2px solid #9aa5b1;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.accordion .body-inner {
  overflow: hidden;
  background: #eaf3ff;
  padding: 10px 32px 30px;
}

/* ===== リスト系 ===== */
.list__content {
  text-align: left;
}
.list__content + .list__content {
  margin-top: 24px;
}
.list__content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1f3f73;
  border-bottom: 1px solid #c8dcf3;
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.list__content ul {
  padding-left: 1.2em;
}
.list__content li {
  margin-bottom: 8px;
  position: relative;
}
.list__content .learn__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-65%);
  width: 8px;
  height: 8px;
  background-color: var(--dot-navy);
}
.list__content .check {
  list-style: none;
  padding-left: 0;
}
.list__content .check li {
  padding-left: 28px;
}
.list__content .check li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.25em;
  width: 10px;
  height: 6px;
  border-left: 3px solid #1f4ea8;
  border-bottom: 3px solid #1f4ea8;
  transform: rotate(-45deg);
}

/* ===== 下部メッセージ ===== */
.note {
  margin-top: 28px;
  margin-bottom: 0;
  padding: 20px;
  font-weight: 700;
  color: #1f3f73;
  text-align: center;
  background-color: #fff;
}

/* SP微調整 */
@media (max-width: 768px) {
  .accordion-trigger {
    font-size: 13px;
    padding: 8px 18px;
  }
}
/*pc*/
/*-----------------
fv
-----------------*/
#fv {
  position: relative;
  margin: 0 auto;
  width: 1000px;
  height: 100vh;
  max-height: 768px;
  background-image: url(img/fv_pc.webp), linear-gradient(to bottom, #072f62 0%, #044599 15%, #062b5b 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%; /* 高さ100%で中央 */
  background-blend-mode: normal;
}
#fv .fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
#fv .fv__inner .fv__txt--box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 50px;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}
#fv .fv__inner .fv__txt--box .fv__ttl--small {
  font-size: calc(var(--font-normal) + 10px);
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
#fv .fv__inner .fv__txt--box .fv__ttl {
  margin-bottom: 70px;
  font-size: 45px;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
}
#fv .fv__inner .fv__txt--box .fv__ttl--sub {
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}
#fv .fv__inner .fv__cta {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  width: 330px;
}

/*-----------------
intro
-----------------*/
#intro {
  width: 1000px;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(to right, rgb(16, 46, 87) 30%, rgb(4, 69, 153) 90%);
}
#intro .intro__title {
  margin-bottom: 60px;
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  color: #fff;
}
#intro .intro__list {
  position: relative;
  width: fit-content;
  margin: 0 auto 60px;
}
#intro .intro__list li {
  position: relative;
  margin-bottom: 30px;
}
#intro .intro__list li p {
  letter-spacing: 3px;
  color: #fff;
}
#intro .intro__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("img/check.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
#intro .intro__list::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -30px;
  width: 850px;
  height: 1px;
  background-color: #fff;
}
#intro .intro__list::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: -30px;
  width: 850px;
  height: 1px;
  background-color: #fff;
}
#intro .intro__bottom {
  color: #fff;
  text-align: center;
}
#intro .intro__bottom .font-big {
  font-weight: 600;
  font-size: 30px;
}
#intro .intro__bottom .font-bar {
  position: relative;
}
#intro .intro__bottom .font-bar::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f3cc6f;
}

#teacher {
  width: 1000px;
  margin: 0 auto;
  padding: 120px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("img/teacher_bg.webp") no-repeat bottom/cover;
}
#teacher .teacher__ttl {
  text-align: center;
  margin-top: 0;
  margin-bottom: 60px;
}
#teacher .teacher__main--inner {
  width: 100%;
  padding-left: 50px;
  display: flex;
  flex-direction: row;
}
#teacher .teacher__main--inner .teacher__left--inner {
  position: relative;
  flex: 0 0 45%;
  top: -10px;
  left: 30px;
}
#teacher .teacher__main--inner .teacher__left--inner .teacher__face {
  width: 250px;
  margin: 0 auto;
}
#teacher .teacher__main--inner .teacher__right--inner {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
}
#teacher .teacher__main--inner .teacher__right--inner .teacher__name {
  width: 300px;
}
#teacher .teacher__main--inner .teacher__right--inner .teacher__info ul li {
  position: relative;
  padding-left: 16px; /* マーク分の余白 */
  margin-bottom: 6px;
}
#teacher .teacher__main--inner .teacher__right--inner .teacher__info ul li p {
  color: #01375d;
}
#teacher .teacher__main--inner .teacher__right--inner .teacher__info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em; /* テキストの高さに合わせて微調整 */
  width: 6px;
  height: 6px;
  background-color: #01375d; /* ご指定のカラー */
  border-radius: 2px; /* 四角：0 / 少し丸み：2px */
}
#teacher .teacher__main--inner .teacher__right--inner .teacher__detail--top {
  position: relative;
  color: #02254c;
  font-size: var(--font-big);
}
#teacher .teacher__main--inner .teacher__right--inner .teacher__detail--top::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 5px; /* 太さ */
  height: 100%; /* テキストの高さに合わせる */
  background-color: #02254c; /* 色 */
  border-radius: 2px; /* 角に少し丸み（必要なければ削除） */
}
#teacher .teacher__detail {
  width: 700px;
  margin: 20px auto 0;
  padding: 20px 0px 20px 50px;
  background-color: #fff;
}

#yobo {
  width: 1000px;
  margin-top: 120px;
  margin-bottom: 120px;
}
#yobo .yobo__box {
  width: 700px;
  margin: 0 auto;
}
#yobo .yobo__box img {
  width: 100%;
  object-fit: contain;
}

#reason {
  position: relative;
  width: 1000px;
  text-align: center;
  margin-bottom: 50px;
}
#reason .reason__head {
  position: relative;
  padding: 0 20px;
  margin-top: 60px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}
#reason .reason__head::before, #reason .reason__head::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 170px;
  height: 2px;
  background-color: #000;
}
#reason .reason__head::before {
  left: -190px;
}
#reason .reason__head::after {
  right: -190px;
}
#reason .reason__txt {
  position: relative;
  line-height: 50px;
  padding-bottom: 40px;
  margin-bottom: 60px;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  letter-spacing: 0.5px;
}
#reason .reason__txt::after {
  content: "";
  width: 510px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  background-color: #000;
}
#reason .reason__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
  margin-bottom: 60px;
}
#reason .reason__list li {
  width: 800px;
  margin: 0 auto;
}
#reason .reason__list li img {
  width: 100%;
  object-fit: contain;
}
#reason .reason__summary {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#reason .reason__summary .summary__ttl {
  position: relative;
  margin-bottom: 40px;
  color: var(--font-dark-navy);
  font-size: calc(var(--font-normal) + 5px);
  font-weight: bold;
}
#reason .reason__summary .summary__ttl::before, #reason .reason__summary .summary__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 5px;
  background-color: var(--font-dark-navy);
}
#reason .reason__summary .summary__ttl::before {
  left: 0px;
}
#reason .reason__summary .summary__ttl::after {
  right: 0px;
}
#reason .reason__summary .summary__txt {
  margin-bottom: 40px;
  line-height: 40px;
  font-weight: bold;
}
#reason .reason__summary .summary__txt span {
  position: relative;
}
#reason .reason__summary .summary__txt span::before {
  content: "・・";
  position: absolute;
  top: -30px;
}
#reason .reason__summary .summary__bottom {
  width: 600px;
  margin: 0 auto;
}
#reason .reason__summary .summary__bottom img {
  width: 100%;
  object-fit: contain;
}
#reason .reason__summary .summary__bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 100px;
  background-color: var(--font-dark-navy);
  z-index: -1;
}

#result {
  width: 1000px;
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #032e5d;
}
#result .result__list {
  width: 83%;
  margin: 60px auto 60px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
#result .result__list li {
  width: 400px;
  margin: 0 auto;
}
#result .result__list li img {
  width: 100%;
  object-fit: contain;
}
#result .result__bottom {
  width: 900px;
  margin: 0 auto 90px;
}
#result .result__bottom img {
  width: 100%;
  object-fit: contain;
}
#result .result__cta {
  display: block;
  margin: 0 auto 60px;
  width: 500px;
}

/*-----------------
wish
-----------------*/
#wish {
  width: 1000px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
  background: linear-gradient(rgba(236, 244, 252, 0.8), rgba(236, 244, 252, 0.8)), url("img/wish_bg.webp") repeat;
}
#wish .wish__ttl {
  position: relative;
  padding: 0 20px;
  left: 30px;
  margin-bottom: 50px;
  text-align: left;
  display: inline-block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  font-weight: bold;
}
#wish .wish__ttl span {
  font-size: 35px;
  color: var(--font-navy);
}
#wish .wish__ttl::before {
  content: "";
  position: absolute;
  left: -15px;
  width: 6px;
  height: 100%;
  background-color: var(--dot-navy);
}
#wish .wish_content {
  width: 600px;
  margin: 0 auto 50px;
}
#wish .wish__txt {
  line-height: 40px;
  margin-bottom: 50px;
}
#wish .wish__txt span {
  position: relative;
}
#wish .wish__txt span::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 90%;
  height: 2px;
  background-color: #333;
}
#wish .wish__box {
  width: 600px;
  margin: 0 auto;
}

#point {
  width: 1000px;
  background-color: var(--bg-navy);
  text-align: center;
  padding: 60px 0 120px;
  /* 親ラップ（ページ内で中央に寄せたいとき） */
}
#point h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 60px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  font-weight: bold;
  color: #fff;
  letter-spacing: 5px;
}
#point h2 span {
  font-size: 35px;
}
#point h2 span:nth-of-type(1) {
  font-size: 40px;
}
#point h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px; /* 位置はお好みで */
  transform: translateX(-50%);
  width: 100%; /* 線の長さ */
  height: 2px; /* 線の太さ */
  border-radius: 2px;
  /* 金色っぽいグラデーション（中央が明るい） */
  background: linear-gradient(90deg, #c9a64c 0%, #f7e7a4 50%, #c9a64c 100%);
}
#point .point__bottom {
  width: 800px;
  margin: 0 auto;
}
#point :root {
  --navy: #032e5d; /* 背景用の濃紺 */
  --white: #ffffff;
  --text: #ffffff;
}
#point .point__list {
  max-width: 1100px;
  margin: 24px auto 80px;
  padding: 0 16px;
}
#point .point__list li {
  margin-bottom: 50px;
  /* ピル型ステップ */
  /* 丸数字（はみ出す部分） */
  /* 丸の外側が親の枠線とぶつからないように、枠をインセットする（見た目を揃えるトリック） */
  /* テキストが長い場合の折り返しと余白調整 */
}
#point .point__list li .step {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent; /* 背景透過（必要なら色を付けてください） */
  border: 2px solid var(--white); /* 白の枠線 */
  border-radius: 9999px; /* 両端を半円に */
  width: 600px;
  margin: 0 auto;
  padding: 18px 28px; /* 上下・右側の余白 */
  padding-left: 70px; /* 左側を丸数字分だけ空ける */
  box-sizing: border-box;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  background-clip: padding-box; /* 枠線が角丸からはみ出さないように */
}
#point .point__list li .step span {
  color: var(--font-navy);
}
#point .point__list li .point__txt {
  position: relative;
  width: 476px;
  margin: 20px auto;
  text-align: left;
  padding-left: 8px;
  white-space: nowrap;
  color: #fff;
}
#point .point__list li .point__txt::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -50px;
  width: 30px;
  height: 30px;
  background-image: url("img/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
#point .point__list li .step__num {
  position: absolute;
  left: 0; /* 親の左端からのずらし量。必要なら負の値でさらに外にはみ出す */
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white); /* 丸は白 */
  color: var(--navy); /* 数字色は濃紺 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06); /* わずかな立体感 */
  z-index: 2;
}
#point .point__list li .step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
#point .point__list li .step {
  word-break: break-word;
}

#skill {
  width: 1000px;
  padding-bottom: 60px;
  background-color: #f5f4f4;
}
#skill .blue__ttl {
  height: 150px;
  margin-bottom: 60px;
}
#skill .skill__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
#skill .skill__list li {
  width: 500px;
  margin: 0 auto;
}
#skill .skill__list li img {
  width: 100%;
  object-fit: contain;
}

/* レスポンシブ調整 */
@media (max-width: 640px) {
  .step {
    padding-left: 76px;
    padding: 14px 18px;
    font-size: 16px;
  }
  .step__num {
    width: 48px;
    height: 48px;
    left: 10px;
    font-size: 18px;
  }
}
/*flow*/
#flow {
  width: 1000px;
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
  background-color: var(--bg-navy);
}
#flow .blue__ttl {
  margin-bottom: 60px;
}
#flow .flow__txt {
  margin-bottom: 60px;
  line-height: 40px;
  color: #fff;
}
#flow .flow__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
#flow .flow__list li {
  width: 650px;
  margin: 0 auto;
}
#flow .flow__list li .head-main {
  padding: 18px 24px;
}
#flow .flow__list li .head-main .spNon {
  display: inline;
}
#flow .flow__list li img {
  width: 100%;
  object-fit: contain;
}
#flow .flow__list li .learn__list li::after {
  top: 11px;
}
#flow .flow__list li .check li::before {
  top: 4px;
}

#change {
  width: 1000px;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(to bottom left, #226fc2 0%, #5ca2e8 50%, #b1d4fb 100%);
}
#change .change__ttl {
  margin-bottom: 60px;
  line-height: 70px;
  letter-spacing: 5px;
  color: #fff;
}
#change .change__ttl span {
  font-size: 40px;
}
#change .change__table {
  width: 700px;
  margin: 0 auto 60px;
}
#change .change__table img {
  width: 100%;
  object-fit: contain;
}
#change .change__bottom {
  text-align: center;
}
#change .change__bottom .change__bottom--q {
  margin-bottom: 30px;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
#change .change__bottom .change__bottom--a {
  display: inline-block;
  background-color: #eaf4ff;
  color: var(--font-navy);
  padding: 3px 10px;
  margin-bottom: 10px;
}

#feature {
  width: 1000px;
}
#feature .feature__ttl--sub {
  display: block;
  margin: 80px auto;
  width: fit-content;
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 5px;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}
#feature .feature__ttl--sub span {
  display: inline-block;
}
#feature .feature__ttl--sub::before, #feature .feature__ttl--sub::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 1px;
  background-color: #333;
}
#feature .feature__ttl--sub::before {
  top: -30px;
}
#feature .feature__ttl--sub::after {
  bottom: -30px;
}
#feature .feature__txt {
  width: 590px;
  margin: 0 auto;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
#feature .feature__txt span {
  color: var(--font-blue);
}
#feature .feature__box {
  display: flex;
  width: 590px;
  margin: 0 auto;
  background-color: #ecf6ff;
}
#feature .feature__box .feature__box--txt {
  flex: 0 0 60%;
  padding-left: 30px;
  line-height: 40px;
}
#feature .feature__box .feature__icon1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 40%;
}
#feature .feature__box .feature__icon1 img {
  width: 50%;
  object-fit: contain;
  object-position: center;
}
#feature .feature__point {
  width: 100%;
  margin-top: 60px;
  padding-top: 60px;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("img/wish_bg.webp") repeat;
}
#feature .feature__point .feature__list {
  margin: 0 auto 90px;
  width: 600px;
}
#feature .feature__point .feature__list .point-box {
  width: 100%;
  margin-bottom: 40px;
}
#feature .feature__point .feature__list .point-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
#feature .feature__point .feature__list .point-mark {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 5px; /* 長方形の幅 */
  height: 26px; /* 長方形の高さ */
  background: var(--dot-navy); /* 長方形の色（例：金色） */
}
#feature .feature__point .feature__list .point-mark::after {
  content: "";
  position: absolute;
  right: -5px; /* 三角形の幅分ズラす */
  top: 0;
  width: 0;
  height: 0;
  border-top: 13px solid transparent; /* 高さの半分 */
  border-bottom: 13px solid transparent;
  border-left: 5px solid var(--dot-navy); /* 三角の色 */
}
#feature .feature__point .feature__list .point-title .feature__ttl--point {
  font-weight: 700;
  color: #000;
  margin: 0;
  font-size: 22px;
}
#feature .feature__point .feature__list .point-text {
  color: #333;
  line-height: 1.8;
  letter-spacing: -0.3px;
}
#feature .feature__point .feature__list .point-text .bold {
  font-weight: 700;
}
#feature .feature__point .feature__list .point-line {
  width: 100%;
  height: 1px;
  background: var(--dot-navy); /* 薄いグレーの下線 */
  margin-top: 20px;
}
#feature .feature__point .feature__summary {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#feature .feature__point .feature__summary .feature__bottom {
  width: 800px;
  margin: 0 auto;
}
#feature .feature__point .feature__summary .feature__bottom img {
  position: relative;
  width: 100%;
  object-fit: contain;
  z-index: 1;
}
#feature .feature__point .feature__summary .feature__bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to right, #0cb8c7 0%, #004994 50%, #0cb8c7 100%);
  z-index: 0;
}

#voice {
  width: 1000px;
  margin-top: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f5f4f4;
}
#voice .voice__ttl {
  margin: 0 auto 60px;
  width: 400px;
}
#voice .voice__ttl img {
  width: 100%;
  object-fit: contain;
}
#voice .voice__list {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
#voice .voice__list li {
  flex: 0 0 35%;
}
#voice .voice__list li img {
  width: 100%;
  object-fit: contain;
}

#preseminar {
  width: 1000px;
  margin-top: 120px;
}
#preseminar .preseminar__ttl {
  display: block;
  width: fit-content;
  padding: 12px 20px;
  margin: 0 auto 40px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #0cb8c7 0%, #004994 50%, #0cb8c7 100%);
  text-align: center;
  letter-spacing: 2px;
}
#preseminar .pre__icon {
  margin: 0 auto;
  width: 80px;
}
#preseminar .pre__icon img {
  width: 100%;
  object-fit: contain;
}
#preseminar .preseminar__head {
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
  letter-spacing: 3px;
}
#preseminar .preseminar__txt {
  margin-bottom: 100px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 35px;
}
#preseminar .preseminar__txt span {
  color: var(--font-blue);
}
#preseminar .preseminar__content--ttl {
  display: block;
  width: fit-content;
  padding: 8px 180px;
  margin: 0 auto 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 9999px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: var(--dot-navy);
  text-align: center;
  letter-spacing: 2px;
}
#preseminar .preseminar__content--list {
  width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
}
#preseminar .preseminar__content--list li {
  flex: 0 0 45%;
}
#preseminar .preseminar__content--list li img {
  width: 100%;
  object-fit: contain;
}
#preseminar .blue__bottom {
  position: relative;
  width: 100%;
  height: 200px;
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(to right, #033265, #074f98, #033265);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
#preseminar .blue__bottom .preseminar__bottom {
  color: #fff;
  line-height: 40px;
}
#preseminar .blue__bottom .preseminar__bottom .yellow_txt {
  color: #fcfa69;
}
#preseminar .blue__bottom .preseminar__bottom .dot_txt {
  position: relative;
}
#preseminar .blue__bottom .preseminar__bottom .dot_txt::before {
  content: "・・";
  position: absolute;
  top: -25px;
  left: 0;
  color: #fcfa69;
}

#voice2 {
  margin-top: 120px;
}
#voice2 .voice2__ttl {
  margin: 0 auto 60px;
  width: 400px;
}
#voice2 .voice2__ttl img {
  width: 100%;
  object-fit: contain;
}
#voice2 .voice2__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  margin-bottom: 120px;
}
#voice2 .voice2__list li {
  width: 700px;
  margin: 0 auto;
}

#detail {
  margin-top: 120px;
}
#detail .detail__content {
  margin: 0 auto 60px;
  width: 700px;
}
#detail .detail__return {
  display: block;
  margin: 0 auto 60px;
  width: 650px;
}

#message {
  width: 1000px;
  padding: 60px 0;
  background-color: var(--bg-navy);
}
#message h3 {
  margin-top: 60px;
  margin-bottom: 30px;
  padding-top: 30px;
  color: #fff;
  text-align: center;
}
#message .accordion {
  width: 700px;
  margin: 0 auto 60px;
}
#message .accordion .head-title {
  font-weight: bold;
  margin: 0 auto;
}
#message .accordion .line {
  flex-grow: 1; /* ← 必ず親要素右端まで広がる */
  height: 1px;
  background: #fff; /* 白線 */
}
#message .accordion p {
  color: #333;
  letter-spacing: 2.5px;
  line-height: 50px;
  text-align: center;
}
#message .accordion p span {
  position: relative;
}
#message .accordion p span::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  width: 95%;
  background-color: #333;
}
#message .accordion .message__box--bottom {
  width: 650px;
  margin: 0 auto;
}
#message .accordion .message__box--bottom img {
  width: 100%;
  object-fit: contain;
}
#message .message__bottom {
  width: 700px;
  margin: 0 auto 60px;
}

#faq {
  width: 1000px;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  background-color: #032e5d;
}
#faq .faq__ttl {
  width: 400px;
  margin: 0 auto 60px;
}
#faq .faq__ttl--sub {
  width: 220px;
  margin: 0 auto;
}
#faq .faq__ttl--sub img {
  width: 100%;
  object-fit: contain;
}
#faq ul {
  padding-left: 0;
  margin-bottom: 70px;
}
#faq ul li {
  width: 60%;
  margin: 0 auto 40px auto;
  background-color: #ffffff;
  box-shadow: 0 0 3px #777777;
}
#faq ul li .faq__q {
  position: relative;
  display: flex;
  width: 90%;
  padding-top: 15px;
  margin: 0 auto 20px auto;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
#faq ul li .faq__q span:nth-of-type(2) {
  padding-left: 5px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #01375d;
}
#faq ul li .faq__q::after {
  content: "";
  position: absolute;
  bottom: -8px;
  background-color: #01375d;
  height: 1px;
  width: 100%;
  box-shadow: #777777;
}
#faq ul li .faq__q .faq__icon {
  width: 30px;
}
#faq ul li .faq__q .faq__icon img {
  width: 100%;
  object-fit: cover;
}
#faq ul li .faq__a {
  display: flex;
  width: 90%;
  padding-bottom: 15px;
  padding-left: 3px;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
}
#faq ul li .faq__a span:nth-of-type(1) {
  color: #01375d;
  text-align: center;
  width: 30px;
}
#faq ul li .faq__a span:nth-of-type(2) {
  padding-left: 5px;
  letter-spacing: 1px;
  text-align: left;
}
#faq .faq__bottom {
  letter-spacing: 1px;
  margin-bottom: 70px;
  line-height: 40px;
  color: #fff;
}
#faq .faq__cta {
  display: block;
  width: 400px;
  margin: 0 auto;
}

footer {
  padding-top: 30px;
  padding-bottom: 20px;
  background-color: #333;
}
footer .footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 700px;
  gap: 100px;
  margin: 0 auto 20px;
}
footer .footer__inner p {
  color: #fff;
}
footer .footer__inner .footer__left {
  flex: 0 0 45%;
  color: #fff;
}
footer .footer__inner .footer__left p {
  text-align: right;
  margin-top: 0;
  letter-spacing: 2px;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}
footer .footer__inner .footer__right {
  position: relative;
  flex: 0 0 45%;
}
footer .footer__inner .footer__right p {
  margin-top: 3px;
  font-size: 15px;
}
footer .footer__inner .footer__right::before {
  content: "";
  position: absolute;
  left: -50px;
  width: 1px;
  height: 80%;
  background-color: #fff;
}
footer small {
  display: block;
  color: #fff;
  text-align: center;
}

/*----------------------------------------------------------
スマホ版
----------------------------------------------------------*/
@media all and (max-width: 700px) {
  /**/
  .spNon {
    display: none !important;
  }
  .spOnly {
    display: inline-block !important;
  }
  h2 {
    font-size: var(--font-big);
  }
  p {
    font-size: var(--font-normal-sp);
  }
  #fv {
    width: 100%;
    height: auto;
    max-height: none;
    background-image: none;
  }
  #fv .fv__inner .fv__cta {
    margin: 0 auto;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: 90%;
  }
  /*アコーディオン*/
  .img-accordion-inner {
    max-height: 200px;
    transition: max-height 0.3s ease;
  }
  #intro {
    width: 100%;
  }
  #intro .intro__list {
    padding-left: 70px;
    padding-right: 20px;
  }
  #intro .intro__list li p {
    letter-spacing: 1px;
  }
  #intro .intro__list li::before {
    top: 14px;
    left: -30px;
    width: 20px;
    height: 20px;
    background-image: url("img/check.webp");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #intro .intro__list::after, #intro .intro__list::before {
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
  }
  #teacher {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0px;
    padding-top: 60px;
    padding-bottom: 0px;
  }
  #teacher .teacher__main--inner {
    padding-left: 20px;
    flex-direction: column;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("img/teacher_bg.webp") no-repeat bottom/cover;
  }
  #teacher .teacher__main--inner .teacher__left--inner {
    left: 0;
    text-align: center;
  }
  #teacher .teacher__main--inner .teacher__left--inner .teacher__face {
    position: relative;
    left: -2%;
    width: 60%;
    margin: 0 auto;
  }
  #teacher .teacher__main--inner .teacher__right--inner {
    flex: 0 0 50%;
  }
  #teacher .teacher__main--inner .teacher__right--inner .teacher__info {
    margin: 0 auto;
    text-align: center;
  }
  #teacher .teacher__main--inner .teacher__right--inner .teacher__info .teacher__name {
    position: relative;
    left: -3%;
    width: 50%;
  }
  #teacher .teacher__main--inner .teacher__right--inner .teacher__info ul {
    text-align: left;
    padding-left: 10px;
  }
  #teacher .teacher__detail {
    width: 100%;
    padding: 20px 20px 60px;
    margin-top: 0;
  }
  #yobo {
    width: 100%;
    margin-top: 0;
    margin-bottom: 60px;
  }
  #yobo .yobo__box {
    width: 90%;
  }
  #reason {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
  }
  #reason .reason__head {
    margin-bottom: 0px;
  }
  #reason .reason__txt {
    line-height: 40px;
    padding-bottom: 30px;
  }
  #reason .reason__list {
    width: 95%;
    margin: 0 auto 50px;
    gap: 50px;
  }
  #reason .reason__list li {
    width: 100%;
  }
  #reason .reason__summary {
    width: 100%;
  }
  #reason .reason__summary .summary__ttl {
    margin-bottom: 20px;
  }
  #reason .reason__summary .summary__txt {
    margin-bottom: 20px;
  }
  #reason .reason__summary .summary__bottom {
    width: 90%;
    margin: 0 auto;
  }
  #result {
    width: 100%;
  }
  #result .result__bottom {
    width: 90%;
    margin-bottom: 60px;
  }
  #result .result__cta {
    width: 80%;
    max-width: 500px;
  }
  #wish {
    width: 100%;
    padding-top: 60px;
    margin-bottom: 0;
    overflow-x: hidden;
  }
  #wish .wish__ttl {
    display: inline-block;
    padding-left: 10px;
    left: 30px;
    width: 90%;
  }
  #wish .wish__ttl span {
    font-size: 28px;
  }
  #wish .wish_content {
    width: 90%;
    margin-bottom: 40px;
  }
  #wish .wish__txt {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  #wish .wish__box {
    width: 90%;
  }
  #point {
    width: 100%;
    padding-bottom: 60px;
    padding-top: 50px;
  }
  #point .point__list {
    max-width: 95%;
    margin-bottom: 30px;
  }
  #point .point__list li .step {
    width: auto;
    text-align: left;
    padding: 13px 28px 13px 70px;
    line-height: 1.2;
    max-height: 60px;
  }
  #point .point__list li .point__txt {
    width: auto;
    white-space: normal;
    padding-left: 40px;
  }
  #point .point__list li .point__txt::before {
    left: 5px;
  }
  #point .point__bottom {
    width: 90%;
  }
  #skill {
    width: 100%;
  }
  #skill .skill__list {
    margin-bottom: 0;
  }
  #skill .skill__list li {
    width: 95%;
  }
  #flow {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #flow .flow__txt {
    padding: 0 20px;
  }
  #flow .flow__list li {
    width: 95%;
  }
  #flow .flow__list li .accordion .accordion-head .head-main {
    padding: 6px 24px 6px 0;
    text-align: center;
    gap: 5px;
    min-height: 61px;
  }
  #flow .flow__list li .accordion .accordion-head .head-main span:nth-of-type(1) {
    display: inline-block;
    margin: 0 auto;
  }
  #flow .flow__list li .accordion .accordion-head .head-main .head-title {
    white-space: nowrap;
  }
  #flow .flow__list li .accordion .accordion-body .body-inner {
    padding: 10px 20px 30px;
  }
  #flow .flow__list li .accordion .accordion-body .body-inner .note {
    padding: 20px 0;
  }
  #change {
    padding-top: 40px;
    padding-bottom: 60px;
    width: 100%;
  }
  #change .change__ttl {
    margin-bottom: 40px;
    line-height: 50px;
  }
  #change .change__table {
    width: 95%;
    margin: 0 auto 30px;
  }
  #change .change__bottom .change__bottom--q {
    margin-bottom: 10px;
  }
  #feature {
    width: 100%;
  }
  #feature .feature__ttl--sub {
    font-size: 24px;
  }
  #feature .feature__txt {
    width: 90%;
  }
  #feature .feature__box {
    width: 100%;
    padding-bottom: 30px;
    flex-direction: column;
  }
  #feature .feature__box .feature__box--txt {
    text-align: center;
    padding: 0;
  }
  #feature .feature__box .feature__icon1 {
    width: 200px;
    margin: 0 auto;
  }
  #feature .feature__point {
    margin-top: 0;
  }
  #feature .feature__point .feature__list {
    width: 100%;
    padding: 0 20px;
  }
  #feature .feature__point .feature__summary {
    width: 100%;
  }
  #feature .feature__point .feature__summary .feature__bottom {
    width: 100%;
  }
  #voice {
    width: 100%;
    padding: 60px 0;
  }
  #voice .voice__ttl {
    width: 350px;
    margin-bottom: 30px;
  }
  #voice .voice__list {
    width: 100%;
  }
  #voice .voice__list li {
    flex: 0 0 90%;
  }
  #preseminar {
    width: 100%;
    margin-top: 60px;
  }
  #preseminar .preseminar__txt {
    margin-bottom: 40px;
  }
  #preseminar .preseminar__content--ttl {
    padding: 8px 50px;
    margin-bottom: 30px;
  }
  #preseminar .preseminar__content--list {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
  #preseminar .preseminar__content--list li {
    flex: 0 0 43%;
  }
  #voice2 {
    width: 100%;
  }
  #voice2 .voice2__ttl {
    width: 350px;
    margin-bottom: 30px;
  }
  #voice2 .voice2__list {
    gap: 40px;
    margin-bottom: 60px;
  }
  #voice2 .voice2__list li {
    width: 90%;
  }
  #detail {
    width: 100%;
  }
  #detail .detail__content {
    width: 100%;
  }
  #detail .detail__return {
    width: 100%;
  }
  #message {
    width: 100%;
    padding: 60px 0;
  }
  #message h3 {
    margin-top: 30px;
  }
  #message .accordion {
    width: 90%;
    margin-bottom: 60px;
  }
  #message .accordion .accordion-body .body-inner {
    padding: 10px 0 0;
  }
  #message .accordion .accordion-body .body-inner p {
    font-size: 18px;
    padding: 0 20px;
    letter-spacing: 1px;
  }
  #message .accordion .accordion-body .body-inner p span {
    border-bottom: 1px solid #333;
  }
  #message .accordion .accordion-body .body-inner p span::before {
    display: none;
  }
  #message .accordion .accordion-body .body-inner .message__box--bottom {
    width: 100%;
  }
  #message .message__bottom {
    width: 100%;
    margin-bottom: 30px;
  }
  #faq {
    width: 100%;
    margin-bottom: 0px;
    padding-top: 60px;
    padding-bottom: 30px;
  }
  #faq .faq__ttl {
    width: 300px;
    margin-bottom: 30px;
  }
  #faq ul li {
    width: 90%;
    margin-bottom: 30px;
  }
  #faq ul li .faq__q {
    align-items: flex-start;
  }
  #faq ul li .faq__q .faq__icon {
    width: 20px;
  }
  #faq ul li .faq__q span:nth-of-type(2) {
    flex: 1;
  }
  #faq .faq__cta {
    width: 80%;
    max-width: 500px;
  }
  footer .footer__inner {
    width: 100%;
    max-width: 700px;
    gap: 40px;
  }
  footer .footer__inner .footer__left {
    flex: 0 0 36%;
  }
  footer .footer__inner .footer__right {
    flex: 0 0 50%;
  }
  footer .footer__inner .footer__right::before {
    left: -20px;
  }
}

/*# sourceMappingURL=style.css.map */
