@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-collapse: collapse;
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol) {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
  text-decoration: none;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

:where(iframe[src*=youtube]) {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.is_pc {
  display: block;
}

.is_wide {
  display: block;
}

.is_sp {
  display: none;
}

[data-anim-elm] {
  opacity: 0;
}

[v-cloak] {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button {
  outline: none;
  background: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 游ゴシック, "Yu Gothic ", YuGothic, Osaka, メイリオ, Meiryo, "MS Pゴシック", "MS P Gothic", sans-serif;
  background: #fff;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.08em;
  color: #0e2b4b;
  font-size: 18px;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #eff7fb;
  z-index: -50;
}

/**
* CVコンポーネント
*/
.cv_btn {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
  padding: 20px 0 16px;
  padding-right: 63px;
  padding-left: 55px;
  transition: 0.3s ease;
}
.cv_btn::before {
  content: "";
  background: linear-gradient(180deg, #fffcb4, #f1e800, #fff500);
  border-radius: 90px;
  border: 5px solid #ffffff;
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 56, 120, 0.45));
          filter: drop-shadow(0 0 4px rgba(0, 56, 120, 0.45));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* .cv_btn::after {
  content: "";
  background: url("../img/txt_btn_balloon.png") no-repeat 50% 0%;
  background-size: 100%;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 320px;
  max-width: 68%;
  height: 55px;
  -webkit-filter: drop-shadow(0 0 4px rgba(52, 98, 13, 0.45));
          filter: drop-shadow(0 0 4px rgba(52, 98, 13, 0.45));
  transition: 0.3s ease;
} */
.cv_btn.footer_btn {
  margin-top: 25px;
  padding: 25px 0;
  padding-right: 63px;
  padding-left: 40px;
}

.cv_btn__label {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff500;
  display: block;
  padding: 3px 8px 4px;
  background-color: #0e2b4b;
  border-radius: 8px;
}
.cv_btn__inner {
  color: #0e2b4b;
  font-weight: 700;
  line-height: 130%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.cv_btn__inner p {
  font-size: 20px;
  padding: 0 30px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.cv_btn__inner--bold {
  font-size: 28px;
}
.cv_btn__note_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cv_btn__img {
  position: relative;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 15px 16px;
  margin-right: 38px;
}
.cv_btn__note {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
  letter-spacing: 0.08em;
  line-height: 155%;
  width: 500px;
  text-align: center;
}
.cv_btn__note--bold {
  font-weight: 700;
}
.cv_btn__desc {
  color: #fff500;
  font-weight: 700;
  font-size: 23px;
  display: inline-block;
  border-bottom: 3px solid #fff500;
  line-height: 155%;
  letter-spacing: 0.09em;
}

.cta_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  width: calc(692 / 768 * 100vw);
  white-space: nowrap;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: drop-shadow(0 calc(5 / 768 * 100vw) 4.5px rgba(0, 56, 120, 0.45));
          filter: drop-shadow(0 calc(5 / 768 * 100vw) 4.5px rgba(0, 56, 120, 0.45));
  padding: 25px 35px;
}
.cta_btn::before {
  content: "";
  background: linear-gradient(180deg, #fffcb4, #f1e800, #fff500);
  border-radius: 90px;
  border: clamp(2.5px, 1vw, 5px) solid #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta_btn.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.cta_btn__inner {
  color: #0e2b4b;
  font-weight: 700;
  line-height: 130%;
  display: flex;
  align-items: center;
}
.cta_btn__inner p {
  font-size: 26px;
  letter-spacing: 0.08em;
  padding: 0 clamp(12.5px, 1vw, 35px);
}
.cta_btn__inner--img.left {
  width: calc(40 / 768 * 100vw);
}
.cta_btn__inner--img.right {
  width: calc(24 / 768 * 100vw);
}
.cta_btn__note {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  display: inline-block;
}
.cta_btn__note--bold {
  font-weight: 500;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/**
* アニメーションキーフレーム
*/
@-webkit-keyframes scroll_bg1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll_bg1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll_bg2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes scroll_bg2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes ft_scroll_bg1 {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes ft_scroll_bg1 {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes ft_scroll_bg2 {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
}
@keyframes ft_scroll_bg2 {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
}
@-webkit-keyframes ft_scroll_bg1_sp {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes ft_scroll_bg1_sp {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes ft_scroll_bg2_sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes ft_scroll_bg2_sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.footer_block__content {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
.footer_block__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg_cv_block.jpg") no-repeat 50% 100%;
  background-size: cover;
  z-index: -3;
}
.footer_block__bg_unit {
  position: absolute;
  top: 28%;
  z-index: -2;
  width: 50%;
  overflow: hidden;
}
.footer_block__bg_unit:nth-of-type(1) {
  left: 0;
}
.footer_block__bg_unit:nth-of-type(1) .footer_block__list:first-of-type {
  display: flex;
  -webkit-animation: scroll_bg1 40s -20s linear infinite;
          animation: scroll_bg1 40s -20s linear infinite;
}
.footer_block__bg_unit:nth-of-type(1) .footer_block__list:last-of-type {
  -webkit-animation: scroll_bg2 40s linear infinite;
          animation: scroll_bg2 40s linear infinite;
}
.footer_block__bg_unit:nth-of-type(2) {
  right: 0;
  z-index: -2;
  width: 50%;
}
.footer_block__bg_unit:nth-of-type(2) .footer_block__list:first-of-type {
  display: flex;
  -webkit-animation: ft_scroll_bg1 20s -10s linear infinite;
          animation: ft_scroll_bg1 20s -10s linear infinite;
}
.footer_block__bg_unit:nth-of-type(2) .footer_block__list:last-of-type {
  -webkit-animation: ft_scroll_bg2 20s linear infinite;
          animation: ft_scroll_bg2 20s linear infinite;
}
.footer_block__bg {
  display: flex;
  justify-content: center;
  width: 200%;
}
.footer_block__list {
  display: flex;
}
.footer_block__item {
  padding: 0 2.4%;
  width: 352px;
}
.footer_block__item--img {
  width: 100%;
}
.footer_block__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 660px;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  padding: 65px 30px 55px;
}
.footer_block__unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg_cv_block.jpg") no-repeat 50% 100%;
  background-size: cover;
  z-index: -1;
}
.footer_block__head {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 78%;
}
.footer_block .cv_btn__note {
  font-size: 15px;
}
.footer_block__title {
  margin: 0 auto;
  width: 100%;
}
.footer_block__bottom {
  padding: 4px 10px 12px;
  background-color: #0e2b4b;
  text-align: center;
}
.footer_block__copyright {
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.header_block {
  width: 100%;
  background-color: #eff7fb;
  padding: 34px 38px 36px;
}
.header_block__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 0;
  display: flex;
  align-items: center;
}
.header_block__logo {
  display: inline-block;
  transition: 0.3s ease;
  margin-right: 25px;
}
.header_block__logo p {
  margin: 0;
}
.header_block__txt {
  font-weight: 700;
}

.summary_block__title, .course_block__title, .flow_block__title, .about_block__title, .osusume_block__title {
  line-height: 150%;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.course_block__text, .about_block__text, .about_block__intro_text {
  line-height: 200%;
  letter-spacing: 0.08em;
}

.index_page .mv_block {
  position: relative;
  padding: 0 30px 100px;
}
.index_page .mv_block__img_clip {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-clip-path: inset(0 round 60px);
          clip-path: inset(0 round 60px);
  position: relative;
}
.index_page .mv_block__img_clip--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_page .mv_block__cm {
  color: #ffffff;
  font-weight: 700;
  padding: 0.2em 0.5em;
  font-size: 23px;
  position: absolute;
  top: 13%;
  left: 4%;
  border: 3px solid #ffffff;
  border-radius: 5px;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
}
.index_page .mv_block__cm:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.1;
  border-radius: 5px;
}
.index_page .mv_block__cm span {
  font-size: 1.5em;
}
.index_page .mv_block__main_copy {
  position: absolute;
  top: 26%;
  left: 3.5%;
  width: 38.5%;
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  transition: 0.3s ease-in-out;
}
.index_page .mv_block__main_copy_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -2;
}
.index_page .mv_block__sub_copy {
  position: absolute;
  top: 59%;
  left: 6.2%;
  width: 35.2%;
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  transition: 0.3s ease-in-out;
}
.index_page .mv_block__sub_copy_img {
  width: 100%;
  height: auto;
}
.index_page .mv_block .mv_anime.active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.index_page .mv_block .mv_anime.active .mv_anime_in {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.index_page .mv_block .mv_anime .mv_anime_in {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  transition: 0.3s ease-in-out;
  display: block;
}

.concept_block {
  width: 100%;
  position: relative;
}
.concept_block::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #dfeef8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.concept_block__unit {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 162px 0 175px;
  padding-left: 38px;
}
.concept_block__catch {
  font-size: 24px;
  line-height: 220%;
  letter-spacing: 0.08em;
  font-weight: 700;
  -webkit-transform: translateX(-0.2em);
          transform: translateX(-0.2em);
}
.concept_block__catch--color {
  font-weight: 900;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.concept_block__catch:not(:first-of-type) {
  margin-bottom: 25px;
}
.concept_block__text {
  line-height: 220%;
  letter-spacing: 0.08em;
  padding-left: 0.6em;
}
.concept_block__text--bold {
  font-weight: 700;
}
.concept_block__img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-51%);
          transform: translateY(-51%);
  width: 36.2%;
  height: auto;
  z-index: -1;
}

.osusume_block {
  position: relative;
  padding: 0 30px;
  padding-bottom: 130px;
}
.osusume_block::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #dfeef8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.osusume_block__additional {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.osusume_block__title {
  text-align: center;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 60px;
  padding-left: 0.1em;
}
.osusume_block__figure_outer {
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.osusume_block__figure:not(:first-of-type) {
  margin-left: 70px;
}
.osusume_block__figure:last-of-type .osusume_block__figcaption_unit .osusume_block__marker {
  letter-spacing: 0.07em;
  padding: 0 0.3em 0 0.2em;
  margin-left: -0.18em;
  margin-right: 0.07em;
}
.osusume_block__content {
  display: flex;
  flex-direction: column;
}
.osusume_block__img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.osusume_block__figcaption_unit {
  text-align: center;
}
.osusume_block__figcaption {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.08em;
}
.osusume_block__marker {
  font-weight: 700;
  position: relative;
  padding: 0 0.3em;
  background-color: #fff500;
}
.osusume_block__space {
  padding-right: 1em;
}

.about_block {
  position: relative;
  overflow: hidden;
  padding: 105px 30px 0;
  margin-bottom: 100px;
}
.about_block__bg {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  z-index: -2;
  width: 200%;
}
.about_block__list {
  display: flex;
}
.about_block__list:first-of-type {
  -webkit-animation: scroll_bg1 60s -30s linear infinite;
          animation: scroll_bg1 60s -30s linear infinite;
}
.about_block__list:last-of-type {
  -webkit-animation: scroll_bg2 60s linear infinite;
          animation: scroll_bg2 60s linear infinite;
}
.about_block__item {
  padding: 0 2.4%;
  width: 440px;
}
.about_block__item--img {
  width: 100%;
}
.about_block__unit {
  max-width: 1305px;
  width: 100%;
  margin: 0 auto;
}
.about_block__head {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 45px;
}
.about_block__title {
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.about_block__title--logo {
  display: inline-block;
  width: 90px;
  height: 45.5px;
}
.about_block__intro_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about_block__intro_text--bold {
  font-weight: 700;
  position: relative;
  background-color: #fff500;
}
.about_block__intro_text:not(:last-of-type) {
  margin-bottom: 10px;
}
.about_block__intro_text:nth-child(1) {
  margin-bottom: 10px;
}
.about_block__figure {
  width: min(40vw, 578px);
  height: auto;
}
.about_block__content {
  background-color: #eff7fb;
  padding: 175px calc(75 / 1440 * 100vw) 80px;
  width: 60%;
  margin-left: auto;
}
.about_block__text--bold {
  font-weight: 700;
}
.about_block__text--notice {
  font-size: 13px;
  padding-top: 15px;
}

.flow_block {
  margin-bottom: 105px;
}
.flow_block__title {
  text-align: center;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 60px;
}
.flow_block__list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  margin-bottom: 28px;
}
.flow_block__item {
  width: 33.3333333333%;
  position: relative;
}
.flow_block__item:not(:last-of-type) {
  margin-right: 120px;
}
.flow_block__item:not(:last-of-type) .flow_block__img_box {
  position: relative;
}
.flow_block__item:not(:last-of-type) .flow_block__img_box::after {
  content: "";
  width: 76px;
  height: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -100px;
  background: url("../img/ico_flow_arrow.svg") no-repeat 50% 100%;
  background-size: 100%;
}
.flow_block__item:nth-of-type(2) .flow_block__step {
  top: 4%;
  right: 2.9%;
}
.flow_block__item:nth-of-type(2) .flow_block__step--text {
  line-height: 100%;
}
.flow_block__item:nth-of-type(3) .flow_block__step {
  top: 4%;
  right: 3.2%;
}
.flow_block__item:nth-of-type(3) .flow_block__step--text {
  line-height: 115%;
}
.flow_block__img_unit {
  position: relative;
}
.flow_block__step {
  font-family: "Josefin Sans", sans-serif;
  position: absolute;
  top: 3%;
  right: 0;
  width: 80px;
  aspect-ratio: 1/1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow_block__step--text {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  aspect-ratio: 1/1;
  letter-spacing: -0.01em;
  line-height: 95%;
}
.flow_block__step--num {
  line-height: 90%;
  letter-spacing: 0.05em;
  font-size: 25px;
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
  display: inline-block;
}
.flow_block__step::before {
  content: "";
  background: linear-gradient(225deg, #05a3d7, #015cc6);
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50vw;
  position: absolute;
  top: -2%;
  right: 0;
  z-index: -1;
}
.flow_block__img {
  margin: 0 auto;
  margin-bottom: 18px;
  position: relative;
  z-index: -2;
}
.flow_block__text {
  text-align: center;
  font-size: 29px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.flow_block__text--small {
  font-size: 16px;
  line-height: 160%;
  margin-top: 5px;
  letter-spacing: 1.28px;
  color: #0e2b4b;
  font-weight: 500;
  padding-top: 0.1em;
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
  display: inline-block;
}
.flow_block__note_box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.flow_block__note {
  text-align: right;
}
.flow_block__note--link {
  color: #0e2b4b;
  font-weight: 700;
  transition: 0.3s ease;
  border-bottom: 1px solid #0e2b4b;
}

.chart_block {
  padding: 0px 30px;
}
.chart_block__main-catch {
  margin-bottom: 100px;
}
.chart_block__main_img {
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.chart_block__unit {
  margin-bottom: 100px;
}
.chart_block__parts1 {
  margin-bottom: 50px;
  text-align: center;
}
.chart_block__parts1--sub-text {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  line-height: 120%;
  letter-spacing: 0.08em;
}
.chart_block__parts1--text {
  font-size: 77px;
  line-height: 100%;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.chart_block__parts1--text .bg-color {
  color: #ffffff;
  background-color: #0e2b4b;
  line-height: 150%;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 32px;
  border-radius: 5px;
  margin-right: 15px;
  -webkit-transform: translateY(-24%);
          transform: translateY(-24%);
  display: inline-block;
}
.chart_block__parts1--text .num {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 125px;
  letter-spacing: -0.01em;
}
.chart_block__parts1--text .sign {
  font-weight: 400;
  font-size: 96px;
  letter-spacing: -0.02em;
}
.chart_block__parts2 {
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  padding-bottom: 38px;
}
.chart_block__parts2_box {
  position: relative;
  width: 100%;
  padding: min(10vw, 72px) 0 min(10vw, 46px);
  margin-top: min(10vw, 36px);
}
.chart_block__parts2_box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: 5px auto auto 5px;
  border-radius: 10px;
  z-index: -2;
}
.chart_block__parts2_box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: -3;
}
.chart_block__balloon_img {
  position: absolute;
  top: calc(min(10vw, -36px) / 1.5);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.chart_block__parts2_box:first-of-type .chart_block__balloon_img {
  width: 53.74%;
}
.chart_block__parts2_box:last-of-type .chart_block__balloon_img {
  width: 76.36%;
}
.chart_block__box_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.chart_block__batch {
  position: relative;
  font-size: clamp(22px, 8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  aspect-ratio: 1/1;
  line-height: 65%;
  margin-top: calc(-5 / 1440 * 100vw);
}
.chart_block__batch--num {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 500;
  line-height: 110%;
}
.chart_block__batch--small {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(14px, 8vw, 22px);
  font-weight: 500;
}
.chart_block__amount {
  font-size: clamp(44px, 8vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.chart_block__amount--num {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(88px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.chart_block__amount--num .sign {
  font-size: clamp(64px, 8vw, 80px);
  font-weight: 400;
  letter-spacing: -0.05em;
}
.chart_block__parts2_sign {
  font-size: 85px;
  font-weight: 700;
  line-height: 100%;
  padding: 0 10px;
  -webkit-transform: translateY(22px);
          transform: translateY(22px);
}
.chart_block__arrow_wrap {
  border-top: 4px solid #0e2b4b;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.chart_block__arrow_img {
  margin: 0 auto;
  height: auto;
  width: 130px;
}
.chart_block__parts3 {
  margin-bottom: 60px;
}
.chart_block__parts3_txt {
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
.chart_block__parts3_txt .bg-color {
  color: #ffffff;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  line-height: 150%;
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 30px;
  border-radius: 5px;
  -webkit-transform: translate(-0.3em, -0.3em);
          transform: translate(-0.3em, -0.3em);
  display: inline-block;
}
.chart_block__parts3_txt .num {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(115px, 10vw, 125px);
  letter-spacing: -0.02em;
  line-height: 100%;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.chart_block__parts3_txt .num .sign {
  font-weight: 400;
  font-size: 96px;
  letter-spacing: -0.01em;
}
.chart_block__parts3_txt .small {
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: clamp(67px, 7vw, 77px);
  line-height: 100%;
  letter-spacing: -0.01em;
}
.chart_block__parts3_txt .normal {
  font-size: clamp(48px, 5vw, 58px);
  letter-spacing: 0;
  line-height: 150%;
  letter-spacing: 0;
  -webkit-transform: translateX(0.3em);
          transform: translateX(0.3em);
  display: inline-block;
}
.chart_block__parts3_sub_txt {
  font-size: clamp(36px, 3vw, 46px);
  text-align: center;
  line-height: 160%;
  letter-spacing: 0.08em;
}
.chart_block__parts3_sub_txt .num {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 3vw, 46px);
}
.chart_block__faq_unit {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 100px;
}
.chart_block__faq {
  -webkit-clip-path: inset(0 round 15px);
          clip-path: inset(0 round 15px);
  position: relative;
  margin-bottom: 50px;
}
.chart_block__faq::before {
  content: "";
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.chart_block__question {
  color: #ffffff;
  background-color: #025fc7;
  padding: 25px;
  display: flex;
  align-items: center;
}
.chart_block__question--bold {
  font-size: 42px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  padding-right: 24px;
  line-height: 100%;
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
}
.chart_block__question_inner {
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.chart_block__answer {
  padding: 25px 30px 35px;
  display: flex;
  align-items: center;
}
.chart_block__answer--bold {
  font-size: 42px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  padding-right: 30px;
  line-height: 100%;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.chart_block__answer--marker {
  font-weight: 700;
  line-height: 180%;
  background-color: #fff500;
}
.chart_block__answer--non_marker {
  margin-top: 25px;
  display: inline-block;
  line-height: 180%;
}
.chart_block__answer_inner {
  letter-spacing: 0.08em;
}

.course_block {
  padding: 100px 30px 88px;
  background-color: #dfeef8;
}
.course_block__title {
  text-align: center;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 35px;
}
.course_block__text {
  text-align: center;
  margin-bottom: 80px;
}
.course_block__list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.course_block__list_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.course_block__list_ttl::before {
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.course_block__list_ttl--small {
  letter-spacing: 0.08em;
  display: inline-block;
  -webkit-transform: translate(0.8em, 0em);
          transform: translate(0.8em, 0em);
}
.course_block__list_logo {
  display: inline-block;
  vertical-align: bottom;
  -webkit-transform: translate(1em, 0);
          transform: translate(1em, 0);
}
.course_block__item_unit {
  display: grid;
  gap: 20px 34px;
}
.course_block__list_item {
  -webkit-clip-path: inset(0 round 5px);
          clip-path: inset(0 round 5px);
  position: relative;
  padding: 12px 0;
  text-align: center;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 0;
  line-height: 155%;
}
.course_block__list_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.course_block__list_item .color {
  color: #2e7376;
  font-weight: 700;
}
.course_block__list_item.dummy {
  visibility: hidden;
}
.course_block__list:nth-of-type(1) {
  margin-bottom: 62px;
}
.course_block__list:nth-of-type(1) .course_block__list_ttl::before {
  background-color: #06a3d7;
}
.course_block__list:nth-of-type(1) .course_block__item_unit {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(7, 1fr);
}
.course_block__list:nth-of-type(1) .course_block__list_item::before {
  border: 2px solid #06a3d7;
}
.course_block__list:nth-of-type(2) {
  margin-bottom: 80px;
}
.course_block__list:nth-of-type(2) .course_block__list_ttl::before {
  background-color: #06a3d7;
}
.course_block__list:nth-of-type(2) .course_block__item_unit {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.course_block__list:nth-of-type(2) .course_block__list_item::before {
  border: 2px solid #06a3d7;
}
.course_block__list:nth-of-type(3) {
  margin-bottom: 85px;
}
.course_block__list:nth-of-type(3) .course_block__list_ttl::before {
  background-color: #0486d1;
}
.course_block__list:nth-of-type(3) .course_block__item_unit {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.course_block__list:nth-of-type(3) .course_block__list_item::before {
  border: 2px solid #0486d1;
}
.course_block__list:nth-of-type(4) {
  margin-bottom: 85px;
}
.course_block__list:nth-of-type(4) .course_block__list_ttl::before {
  background-color: #0371cc;
}
.course_block__list:nth-of-type(4) .course_block__item_unit {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.course_block__list:nth-of-type(4) .course_block__list_item::before {
  border: 2px solid #0371cc;
}
.course_block__list:nth-of-type(5) .course_block__list_item .item_in {
  display: contents;
}
.course_block__list:nth-of-type(5) .course_block__list_ttl::before {
  background-color: #0054b6;
}
.course_block__list:nth-of-type(5) .course_block__item_unit {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.course_block__list:nth-of-type(5) .course_block__list_item::before {
  border: 2px solid #0054b6;
}
.course_block__list:nth-of-type(5) .course_block__list_ttl::before {
  background-color: #0054b6;
}
.course_block__list:nth-of-type(5) .course_block__item_unit {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.course_block__list:nth-of-type(5) .course_block__list_item::before {
  border: 2px solid #0054b6;
}

.counseling_block {
  padding: 120px 30px 75px;
}
.counseling_block__img_unit {
  position: relative;
}
.counseling_block__img_unit::before {
  content: "";
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, #05a3d7, #015cc6);
  position: absolute;
  bottom: -140px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.counseling_block__img {
  margin: 0 auto;
  margin-bottom: 160px;
}
.counseling_block__catch {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  padding-top: 10px;
}
.counseling_block__catch.second_block {
  max-width: 1000px;
}
.counseling_block__catch.second_block .counseling_block__catch_img_unit {
  width: 25%;
}
.counseling_block__catch_img_unit {
  width: 23%;
}
.counseling_block__catch_img {
  margin-left: auto;
}
.counseling_block__text {
  width: 77%;
  font-size: 30px;
  font-weight: 700;
  line-height: 195%;
  letter-spacing: 0.08em;
  padding-left: 1.6em;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.cv_block {
  width: 100%;
  position: relative;
}
.cv_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg_cv_block.jpg") no-repeat 50% 100%;
  background-size: cover;
  z-index: -5;
}
.cv_block__unit {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cv_block__feature {
  padding-left: 50px;
}
.cv_block__text {
  line-height: 200%;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  max-width: 61vw;
}
.cv_block__img {
  position: absolute;
  right: -94px;
  bottom: -2px;
  max-width: 60vw;
  z-index: -3;
  width: 635px;
}

.cv_block__note {
display: block;
font-family: 'Zen Kaku Gothic New';
font-weight: 400;
font-size: 12px;
line-height: 180%;
letter-spacing: 0.08em;
color: #FFFFFF;
margin-bottom: 48px;
}

.cv_btn__note {
  font-weight: 400;
}
.cv_btn__inner p {
  padding: 0;
}

.cv_block__caution {
width: 504px;
display: block;
font-family: 'Zen Kaku Gothic New';
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 160%;
text-align: center;
letter-spacing: 0.08em;
color: #D61A00;
}

.summary_block {
  position: relative;
}
.summary_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #dfeef8;
  width: 100%;
  height: 100%;
  z-index: -5;
}
.summary_block__outer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
}
.summary_block__title {
  text-align: center;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 60px;
}
.summary_block__flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 66px;
  gap: 0 clamp(40px, 4vw, 80px);
}
.summary_block__flow_box {
  position: relative;
}
.summary_block__flow_box::before {
  content: "";
  background-color: #ffffff;
  width: 100%;
  height: calc(100% - 50px);
  border-radius: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.summary_block__triangle {
  position: relative;
  margin-bottom: calc(2.8% + 30px);
}
.summary_block__triangle::after {
  content: "";
  border: 20px solid transparent;
  border-top: 22px solid #ffffff;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 7.5%;
  height: 4.5%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  margin: 0 auto;
  z-index: -3;
}
.summary_block__flow_box:nth-of-type(1) {
  order: 1;
  padding-top: 18px;
}
.summary_block__flow_box:nth-of-type(1) .summary_block__flow_detail {
  position: relative;
  padding: 24px 0 52px clamp(35px, 4vw, 45px);
}
.summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(2) {
  padding-bottom: 20px;
}
.summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(2) .summary_block__flow_item--txt {
  -webkit-transform: translateY(-0.6em);
          transform: translateY(-0.6em);
}
.summary_block__flow_box:nth-of-type(4) {
  order: 2;
  padding-top: 18px;
}
.summary_block__flow_box:nth-of-type(4) .summary_block__flow_detail {
  position: relative;
  padding: 25px 0 52px clamp(22px, 3vw, 32px);
}
.summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(1) {
  padding-bottom: 28px;
}
.summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(4) {
  padding-bottom: 20px;
}
.summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(4) .summary_block__flow_item--txt {
  -webkit-transform: translateY(-0.7em);
          transform: translateY(-0.7em);
}
.summary_block__triangle:nth-of-type(2) {
  order: 3;
}
.summary_block__triangle:nth-of-type(5) {
  order: 4;
}
.summary_block__txt_outer:nth-of-type(3) {
  order: 5;
}
.summary_block__txt_outer:nth-of-type(6) {
  order: 6;
}
.summary_block__flow_ttl--img {
  margin: 0 auto;
  max-width: 45%;
}
.summary_block__flow_item {
  display: grid;
  align-items: baseline;
  grid-template-columns: 1fr 7fr;
  gap: 26px;
  position: relative;
}
.summary_block__flow_item--num {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}
.summary_block__flow_item--num::before {
  content: "";
  width: 2em;
  aspect-ratio: 1/1;
  border-radius: 50vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -0.1em auto auto 0;
}
.summary_block__flow_item--txt {
  line-height: 150%;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.summary_block__flow_item--txt .small {
  font-size: 18px;
  font-weight: 400;
  display: block;
  line-height: 150%;
}
.summary_block__num_wrap {
  aspect-ratio: 1/1;
  font-size: 30px;
  position: relative;
  width: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.summary_block__flow_item:has(.gray_out) .summary_block__flow_item--num {
  color: #b4b4b4;
}
.summary_block__flow_item:has(.gray_out) .summary_block__flow_item--num::before {
  background-color: #f2f2f2;
}
.summary_block__flow_item:not(:has(.gray_out)) .summary_block__flow_item--num {
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.summary_block__flow_item:not(:has(.gray_out)) .summary_block__flow_item--num::before {
  background-color: #dfeef8;
}
.summary_block__flow_item:not(:last-of-type):not(:has(.sp_only_last))::after {
  content: "";
  background-color: #e2e2e2;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 26px;
  z-index: -2;
}
.summary_block__flow_catch {
  text-align: center;
  font-weight: 700;
  font-size: 37px;
  line-height: 120%;
  margin-bottom: 23px;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.summary_block__flow_catch--num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.summary_block__flow_catch--sign {
  font-family: "Josefin Sans", sans-serif;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.summary_block__flow_catch--under {
  -webkit-transform: translateX(-0.5em);
          transform: translateX(-0.5em);
  display: inline-block;
  background: linear-gradient(90deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.summary_block__flow_catch--additional {
  font-size: 25px;
  font-weight: 700;
}
.summary_block__flow_note {
  line-height: 180%;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.summary_block__flow_note--line {
  position: relative;
  transition: 0.3s ease;
}
.summary_block__flow_note--line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0e2b4b;
}
.summary_block__flow_note--line a {
  color: #0e2b4b;
  transition: 0.3s ease;
}
.summary_block__subject {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  grid-template-columns: repeat(2, 1fr);
}
.summary_block__subject_unit {
  width: 100%;
  margin: 0 auto;
  -webkit-clip-path: inset(0 round 20px);
          clip-path: inset(0 round 20px);
  position: relative;
}
.summary_block__subject_unit::before {
  content: "";
  background-color: #ffffff;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  margin: 4px auto auto 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 15px;
  z-index: -1;
}
.summary_block__subject_unit::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(45deg, #05a3d7, #015cc6);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: -3;
}
.summary_block__subject_head {
  color: #ffffff;
  background: linear-gradient(45deg, #05a3d7, #015cc6);
  font-size: 24px;
  font-weight: 700;
  line-height: 170%;
  padding: 17px;
  text-align: center;
  letter-spacing: 0.08em;
}
.summary_block__subject_head--num {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.05em;
}
.summary_block__subject_inner {
  padding: 0 min(2.2vw, 48px) 50px;
  padding-top: 0;
}
.summary_block__subject_ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 24px 0 34px;
  background: linear-gradient(45deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.summary_block__subject_li {
  background-color: #eff7fb;
  border-radius: 15px;
  padding: 22px min(4vw, 55px) 20px;
}
.summary_block__subject_item {
  font-size: 21px;
  line-height: 180%;
  font-weight: 500;
  letter-spacing: 0.07em;
}
.summary_block__subject_item--red {
  font-weight: 700;
  color: #f74b33;
}
.summary_block__subject_item--blue {
  font-weight: 700;
  color: #4f9cc8;
}
.summary_block__subject_item.subject_sub_ttl {
  font-weight: 700;
  margin-top: 30px;
}
.summary_block__subject_item.subject_sub_ttl span {
  line-height: 180%;
}

.attention_block {
  width: 100%;
  position: relative;
}
.attention_block__list_unit {
  padding: 145px 30px 0;
}
.attention_block__list_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 65px 0;
  margin-bottom: 98px;
}
.attention_block__list_box::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #0e2b4b;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.attention_block__title {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: calc(-0.75em - 60px);
  position: absolute;
  left: 0;
  right: 0;
}
.attention_block__title::before {
  content: "";
  width: 7em;
  padding: 0 1.5em;
  height: 1.5em;
  background-color: #eff7fb;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.attention_block__list {
  line-height: 200%;
  padding: 0 50px;
  padding-left: 70px;
}
.attention_block li::marker {
  font-size: 0.4em;
}
.attention_block__item {
  list-style: disc;
  line-height: 200%;
  letter-spacing: 0;
  padding-left: 0.2em;
  margin-bottom: -0.02em;
}
.attention_block__item a {
  text-decoration: underline;
  color: inherit;
}
.attention_block__item span {
  vertical-align: -0.3em;
}
.attention_block__sub_title {
  margin-top: 45px;
  font-weight: 700;
  font-size: 18px;
  padding: 0 48px;
  line-height: 190%;
  letter-spacing: 0;
  margin-bottom: -6px;
}
.attention_block__catch_unit {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  padding-bottom: 60px;
}
.attention_block__catch {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  background: linear-gradient(45deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  position: relative;
  padding: 0 55px;
  letter-spacing: 0.08em;
  line-height: 200%;
}
.attention_block__catch--under {
  display: inline-block;
  -webkit-transform: translateX(-0.6em);
          transform: translateX(-0.6em);
  background: linear-gradient(45deg, #05a3d7, #015cc6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .cv_btn__inner p {
    font-size: min(3vw, 18px);
  }
  .cv_btn__inner--bold {
    font-size: min(4vw, 26px);
  }
  .cv_btn__inner--img.left {
    width: calc(50 / 1024 * 100vw);
  }
  .cv_btn__inner--img.right {
    width: calc(30 / 1024 * 100vw);
  }
  .header_block__logo {
    margin-right: calc(25 / 1024 * 100vw);
  }
  .header_block__logo img {
    width: calc(146 / 1024 * 100vw);
  }
  .header_block__logo:nth-of-type(2) img {
    width: calc(98 / 1024 * 100vw);
  }
  .header_block__txt {
    font-size: min(2vw, 17px);
  }
  .summary_block__title, .course_block__title, .flow_block__title, .about_block__title, .osusume_block__title {
    font-size: min(5vw, 46px);
  }
  .concept_block__catch {
    font-size: min(2.8vw, 23px);
  }
  .osusume_block__figure:not(:first-of-type) {
    margin-left: calc(70 / 1024 * 100vw);
  }
  .osusume_block__figcaption {
    font-size: min(3vw, 20px);
  }
  .about_block__title {
    margin-bottom: 50px;
  }
  .about_block__intro {
    margin-bottom: calc(50 / 1024 * 100vw);
  }
  .about_block__figure {
    width: 578px;
    margin-left: auto;
  }
  .about_block__content {
    width: 80%;
    padding: calc(100 / 1024 * 100vw) calc(75 / 1440 * 100vw) 80px;
  }
  .flow_block__item:not(:last-of-type) {
    margin-right: calc(120 / 1024 * 100vw);
  }
  .flow_block__item:not(:last-of-type) .flow_block__img_box::after {
    width: calc(76 / 1024 * 100vw);
    height: calc(15 / 1024 * 100vw);
    right: calc(-100 / 1024 * 100vw);
  }
  .flow_block__step {
    width: calc(80 / 1024 * 100vw);
  }
  .flow_block__step::before {
    width: calc(80 / 1024 * 100vw);
  }
  .flow_block__text {
    font-size: min(4vw, 28px);
  }
  .flow_block__text--small {
    font-size: min(2vw, 17px);
  }
  .chart_block {
    padding: 0px calc(30 / 1024 * 100vw);
  }
  .chart_block__batch {
    font-size: calc(22 / 1024 * 100vw);
    margin-top: calc(-10 / 1024 * 100vw);
  }
  .chart_block__batch img {
    width: calc(100 / 1024 * 100vw);
  }
  .chart_block__batch--num {
    font-size: calc(28 / 1024 * 100vw);
  }
  .chart_block__batch--small {
    font-size: calc(14 / 1024 * 100vw);
  }
  .chart_block__amount {
    font-size: calc(44 / 1024 * 100vw);
  }
  .chart_block__amount--num {
    font-size: calc(88 / 1024 * 100vw);
  }
  .chart_block__parts2_sign {
    font-size: calc(60 / 1024 * 100vw);
  }
  .chart_block__parts3_txt .bg-color {
    font-size: calc(30 / 1024 * 100vw);
    padding: clamp(5px, 1vw, 10px) clamp(15px, 1vw, 30px);
  }
  .chart_block__parts3_txt .num {
    font-size: calc(115 / 1024 * 100vw);
  }
  .chart_block__parts3_txt .small {
    font-size: calc(67 / 1024 * 100vw);
  }
  .chart_block__parts3_txt .normal {
    font-size: calc(48 / 1024 * 100vw);
  }
  .course_block__item_unit {
    gap: calc(20 / 1024 * 100vw) calc(34 / 1024 * 100vw);
  }
  .counseling_block__text {
    font-size: min(2.8vw, 28px);
  }
  .cv_block__text {
    margin-bottom: calc(85 / 1024 * 100vw);
  }
  .summary_block__flow {
    display: block;
    max-width: 614px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
  .summary_block__triangle::after {
    width: 5.4%;
    height: 3.3%;
  }
  .summary_block__txt_outer:nth-of-type(3) {
    margin-bottom: 60px;
  }
  .summary_block__subject {
    display: block;
    max-width: 614px;
    margin: 0 auto;
  }
  .summary_block__subject_unit:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
@media screen and (769px <= width) {
  .summary_block__flow_item:not(:last-of-type) {
    padding-bottom: 30px;
  }
  .summary_block__flow_item:not(:last-of-type)::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #e2e2e2;
    position: absolute;
    top: 0;
    left: 26px;
    z-index: -2;
  }
}
@media screen and (max-width: 768px) {
  .is_pc {
    display: none;
  }
  .is_sp {
    display: block;
  }
  html {
    font-size: calc(16 / 768 * 100vw);
  }
  body {
    font-size: calc(16 / 768 * 100vw);
  }
  .cv_btn {
    margin-bottom: calc(30 / 768 * 100vw);
    padding: calc(30 / 768 * 100vw) 0;
    padding-right: calc(98 / 768 * 100vw);
    padding-left: calc(90 / 768 * 100vw);
  }
  .cv_btn::before {
    border: clamp(2.5px, 1vw, 5px) solid #ffffff;
  }
  /* .cv_btn::after {
    height: 54%;
    top: -34%;
    width: 70%;
    background: url("../img/txt_btn_balloon_sp.png") no-repeat 50% 0%;
    background-size: 100%;
  } */
  .cv_btn.footer_btn {
    padding: calc(30 / 768 * 100vw) 0;
    padding-right: calc(98 / 768 * 100vw);
    padding-left: calc(90 / 768 * 100vw);
  }
  .cv_btn.footer_btn::after {
    height: 54%;
    top: -35%;
    width: 70%;
  }
  .cv_btn__inner p {
    font-size: calc(25 / 768 * 100vw);
    padding: 0 calc(20 / 768 * 100vw);
  }
  .cv_btn__inner--bold {
    font-size: calc(33 / 768 * 100vw);
  }
  .cv_btn__inner--img.left {
    width: calc(60 / 768 * 100vw);
  }
  .cv_btn__inner--img.right {
    width: calc(30 / 768 * 100vw);
  }
  .cv_btn__img {
    width: min(16vw, 140px);
    padding: calc(18 / 768 * 100vw) calc(18 / 768 * 100vw);
  }
  .cv_btn__note {
    font-size: calc(20 / 768 * 100vw);
    letter-spacing: 0.07em;
    width: calc(616 / 768 * 100vw);
  }
  .cv_btn__desc {
    font-size: calc(28 / 768 * 100vw);
    margin-left: calc(10 / 768 * 100vw);
    letter-spacing: 0.1em;
    line-height: 160%;
  }
  .cta_btn {
    font-size: calc(25 / 768 * 100vw);
    margin-bottom: 20px;
    padding: calc(32 / 768 * 100vw) calc(35 / 768 * 100vw) calc(25 / 768 * 100vw) calc(30 / 768 * 100vw);
  }

  .cta_btn__inner {
    justify-content: center;
    gap: calc(40 / 768 * 100vw);
  }
  .cta_btn__inner p {
    letter-spacing: 0.08em;
    font-size: calc(26 / 768 * 100vw);
    padding: 0 calc(5 / 768 * 100vw) 0 calc(13 / 768 * 100vw);
  }
  .cta_btn__note {
    text-align: center;
    font-size: calc(20 / 768 * 100vw);
  }
  .footer_block__content {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer_block__bg_unit {
    position: relative;
    width: 300%;
    -webkit-transform: none;
            transform: none;
    margin-bottom: calc(55 / 768 * 100vw);
  }
  .footer_block__bg_unit:nth-of-type(1) .footer_block__list:first-of-type {
    -webkit-animation: ft_scroll_bg1_sp 30s -15s linear infinite;
            animation: ft_scroll_bg1_sp 30s -15s linear infinite;
  }
  .footer_block__bg_unit:nth-of-type(1) .footer_block__list:last-of-type {
    -webkit-animation: ft_scroll_bg2_sp 30s linear infinite;
            animation: ft_scroll_bg2_sp 30s linear infinite;
  }
  .footer_block__bg_unit:nth-of-type(2) {
    display: none;
  }
  .footer_block__bg {
    width: 100%;
  }
  .footer_block__item {
    width: calc(348 / 768 * 100vw);
  }
  .footer_block__unit {
    width: 100%;
    padding: calc(54 / 768 * 100vw) 0 calc(60 / 768 * 100vw);
  }
  .footer_block__unit::before {
    display: none;
  }
  .footer_block__head {
    padding-left: calc(148 / 768 * 100vw);
    padding-right: calc(120 / 768 * 100vw);
    margin-bottom: calc(35 / 768 * 100vw);
    width: 100%;
  }
  .footer_block .cv_btn__note {
    text-align: center;
    font-size: calc(20 / 768 * 100vw);
  }
  .footer_block__bottom {
    padding: calc(8 / 768 * 100vw) 10px;
  }
  .footer_block__copyright {
    font-size: calc(16 / 768 * 100vw);
  }
  .header_block {
    padding: calc(24 / 768 * 100vw) calc(38 / 768 * 100vw);
  }
  .header_block__logo {
    width: 25%;
    margin-right: calc(25 / 768 * 100vw);
  }
  .header_block__logo img {
    width: 100%;
  }
  .header_block__logo:nth-of-type(2) {
    width: 16%;
  }
  .header_block__txt {
    font-size: min(3vw, 20px);
    letter-spacing: 0.08em;
    line-height: 160%;
  }
  .summary_block__title, .course_block__title, .flow_block__title, .about_block__title, .osusume_block__title {
    font-size: min(6.5vw, 50px);
  }
  .course_block__text, .about_block__text, .about_block__intro_text {
    line-height: 190%;
    font-size: calc(28 / 768 * 100vw);
    letter-spacing: 0.06em;
  }
  .index_page .mv_block {
    padding: 0 calc(38 / 768 * 100vw) calc(94 / 768 * 100vw);
  }
  .index_page .mv_block__img_clip {
    -webkit-clip-path: inset(0 round calc(60 / 768 * 100vw));
            clip-path: inset(0 round calc(60 / 768 * 100vw));
  }
  .index_page .mv_block__cm {
    font-size: calc(24 / 768 * 100vw);
    left: 5.5%;
    top: 4.7%;
    padding: 0em 0.4em 0.3em;
    border: calc(3 / 768 * 100vw) solid #ffffff;
  }
  .index_page .mv_block__main_copy {
    top: 8.5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(662 / 768 * 100vw);
    padding-left: 10px;
  }
  .index_page .mv_block__sub_copy {
    top: 27.5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(580 / 768 * 100vw);
  }
  .concept_block__unit {
    padding: calc(100 / 768 * 100vw) 0 calc(105 / 768 * 100vw);
  }
  .concept_block__catch {
    font-size: calc(34 / 768 * 100vw);
    letter-spacing: 0.08em;
    line-height: 200%;
    padding-left: calc(40 / 768 * 100vw);
    -webkit-transform: none;
            transform: none;
  }
  .concept_block__catch--color {
    padding-left: 1.1em;
  }
  .concept_block__catch:not(:first-of-type) {
    margin-bottom: calc(60 / 768 * 100vw);
  }
  .concept_block__text {
    line-height: 190%;
    padding-left: 0;
    font-size: calc(28 / 768 * 100vw);
    margin-bottom: calc(58 / 768 * 100vw);
    padding: 0 calc(78 / 768 * 100vw);
    letter-spacing: 0.04em;
  }
  .concept_block__img {
    position: relative;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    padding: 0 calc(76 / 768 * 100vw);
  }
  .osusume_block {
    padding: 0 calc(37 / 768 * 100vw);
    padding-bottom: calc(140 / 768 * 100vw);
  }
  .osusume_block__additional {
    font-size: calc(28 / 768 * 100vw);
    margin-bottom: calc(5 / 768 * 100vw);
  }
  .osusume_block__title {
    margin-bottom: calc(78 / 768 * 100vw);
    padding-left: 0;
  }
  .osusume_block__figure_outer {
    flex-direction: column;
    align-items: center;
  }
  .osusume_block__figure {
    width: 100%;
    display: flex;
    align-items: center;
    gap: calc(42 / 768 * 100vw);
  }
  .osusume_block__figure:not(:first-of-type) {
    margin-left: unset;
  }
  .osusume_block__figure:first-of-type {
    margin-bottom: calc(75 / 768 * 100vw);
  }
  .osusume_block__figure:nth-of-type(2) {
    flex-direction: row-reverse;
    margin-bottom: calc(75 / 768 * 100vw);
  }
  .osusume_block__figure:nth-of-type(2) .osusume_block__figcaption_unit {
    -webkit-transform: translateY(-0.6em);
            transform: translateY(-0.6em);
  }
  .osusume_block__figure:last-of-type .osusume_block__figcaption_unit {
    margin-top: -0.3em;
    white-space: nowrap;
    -webkit-transform: translateY(-0.6em);
            transform: translateY(-0.6em);
  }
  .osusume_block__img {
    width: calc(320 / 768 * 100vw);
    margin-bottom: 0;
  }
  .osusume_block__figcaption_unit {
    text-align: center;
    white-space: nowrap;
  }
  .osusume_block__figcaption {
    font-size: calc(34 / 768 * 100vw);
    text-align: center;
    display: inline-block;
  }
  .osusume_block__marker {
    padding: 0 0.1em;
    line-height: 150%;
  }
  .osusume_block__space {
    padding-right: 0;
  }
  .about_block {
    padding: calc(100 / 768 * 100vw) calc(74 / 768 * 100vw) calc(10 / 768 * 100vw);
  }
  .about_block__bg {
    position: relative;
    width: 400%;
  }
  .about_block__list:first-of-type {
    -webkit-animation: scroll_bg1 40s -20s linear infinite;
            animation: scroll_bg1 40s -20s linear infinite;
  }
  .about_block__list:last-of-type {
    -webkit-animation: scroll_bg2 40s linear infinite;
            animation: scroll_bg2 40s linear infinite;
  }
  .about_block__item {
    width: calc(440 / 768 * 100vw);
  }
  .about_block__title {
    margin-bottom: calc(40 / 768 * 100vw);
    letter-spacing: 0.11em;
    padding: 0;
  }
  .about_block__title--logo {
    width: calc(90 / 768 * 100vw);
    height: calc(45 / 768 * 100vw);
  }
  .about_block__intro {
    margin-bottom: calc(50 / 768 * 100vw);
  }
  .about_block__intro_text {
    font-size: min(4vw, 28px);
  }
  .about_block__intro_text:not(:last-of-type) {
    margin-bottom: 0;
  }
  .about_block__intro_text:nth-child(1) {
    margin-bottom: calc(60 / 768 * 100vw);
  }
  .about_block__figure {
    width: 100%;
    margin-bottom: calc(55 / 768 * 100vw);
  }
  .about_block__content {
    padding: 0 calc(35 / 768 * 100vw);
    padding-bottom: calc(60 / 768 * 100vw);
    width: 100%;
  }
  .about_block__text {
    margin-bottom: calc(40 / 768 * 100vw);
    letter-spacing: 0.08em;
  }
  .about_block__text--notice {
    padding: 0;
    margin: 0;
    font-size: calc(22 / 768 * 100vw);
    line-height: 190%;
  }
  .flow_block {
    margin-bottom: calc(105 / 768 * 100vw);
    padding-left: 0.22em;
  }
  .flow_block__title {
    margin-bottom: 7.8125vw;
    padding-left: 0.2em;
  }
  .flow_block__list {
    flex-direction: column;
    align-items: center;
    padding: 0 calc(20 / 768 * 100vw);
    margin-bottom: calc(35 / 768 * 100vw);
  }
  .flow_block__item {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .flow_block__item:not(:last-of-type) {
    margin-right: 0;
    padding-bottom: calc(100 / 768 * 100vw);
  }
  .flow_block__item:not(:last-of-type)::after {
    content: "";
    width: calc(22 / 768 * 100vw);
    height: calc(62 / 768 * 100vw);
    position: absolute;
    bottom: calc(26 / 768 * 100vw);
    right: 0;
    left: 0;
    margin: 0 auto;
    background: url("../img/ico_flow_arrow_sp.svg") no-repeat 50% 50%;
    background-size: cover;
  }
  .flow_block__item:not(:last-of-type) .flow_block__img_box::after {
    display: none;
  }
  .flow_block__item:nth-of-type(2) .flow_block__step {
    top: 2%;
    right: 2.9%;
  }
  .flow_block__item:nth-of-type(3) .flow_block__step {
    top: 2%;
    right: 2.9%;
  }
  .flow_block__item:nth-of-type(3) .flow_block__text {
    margin-top: -0.2em;
  }
  .flow_block__img_unit {
    width: 60%;
  }
  .flow_block__step {
    width: calc(115 / 768 * 100vw);
    top: 3%;
    right: 2.9%;
  }
  .flow_block__step--text {
    font-size: calc(21 / 768 * 100vw);
  }
  .flow_block__step--num {
    font-size: calc(47 / 768 * 100vw);
  }
  .flow_block__step::before {
    width: calc(115 / 768 * 100vw);
    top: 0;
  }
  .flow_block__img {
    margin-bottom: 0;
  }
  .flow_block__text {
    font-size: calc(30 / 768 * 100vw);
    padding-left: 0.48em;
    width: 40%;
    margin-top: 0.5em;
    text-align: left;
  }
  .flow_block__text--small {
    font-size: calc(22 / 768 * 100vw);
    line-height: 160%;
    padding-top: 0.5em;
    font-weight: 400;
  }
  .flow_block__note_box {
    text-align: center;
  }
  .flow_block__note {
    font-size: calc(28 / 768 * 100vw);
    line-height: 200%;
    letter-spacing: 0.08em;
    display: inline-block;
  }
  .chart_block {
    padding: 0;
  }
  .chart_block__main-catch {
    margin-bottom: calc(100 / 768 * 100vw);
    padding: 0 calc(38 / 768 * 100vw);
  }
  .chart_block__unit {
    margin-bottom: calc(95 / 768 * 100vw);
  }
  .chart_block__parts1 {
    margin-bottom: calc(50 / 768 * 100vw);
  }
  .chart_block__parts1--sub-text {
    line-height: 150%;
    font-size: calc(24 / 768 * 100vw);
    padding-left: 0.2em;
    margin-bottom: calc(10 / 768 * 100vw);
  }
  .chart_block__parts1--text {
    font-size: calc(65 / 768 * 100vw);
  }
  .chart_block__parts1--text .bg-color {
    padding: 0 calc(26.5 / 768 * 100vw);
    font-size: calc(39 / 768 * 100vw);
  }
  .chart_block__parts1--text .num {
    font-size: calc(106 / 768 * 100vw);
  }
  .chart_block__parts1--text .sign {
    font-size: calc(81 / 768 * 100vw);
    letter-spacing: -0.01em;
  }
  .chart_block__parts2 {
    flex-direction: column;
    padding-bottom: calc(45 / 768 * 100vw);
  }
  .chart_block__parts2_box {
    padding: calc(75 / 768 * 100vw) 0 calc(55 / 768 * 100vw);
    margin-top: 4vw;
    width: 70%;
  }
  .chart_block__balloon_img {
    top: -4.8vw;
  }
  .chart_block__batch img {
    width: calc(112 / 768 * 100vw);
  }
  .chart_block__batch--num {
    font-size: calc(39 / 768 * 100vw);
    -webkit-transform: translateX(-0.1em);
            transform: translateX(-0.1em);
    display: inline-block;
  }
  .chart_block__batch--small {
    font-size: calc(24 / 768 * 100vw);
    -webkit-transform: translateX(-0.2em);
            transform: translateX(-0.2em);
    display: inline-block;
  }
  .chart_block__amount {
    font-size: calc(65 / 768 * 100vw);
  }
  .chart_block__amount--num {
    font-size: calc(115 / 768 * 100vw);
  }
  .chart_block__amount--num .sign {
    font-size: calc(87 / 768 * 100vw);
  }
  .chart_block__parts2_sign {
    padding: 0;
    font-size: calc(92 / 768 * 100vw);
    padding-top: calc(5 / 768 * 100vw);
    padding-bottom: calc(20 / 768 * 100vw);
    padding-left: 0.05em;
    -webkit-transform: none;
            transform: none;
  }
  .chart_block__arrow_wrap {
    width: calc(100% - (152 / 768 * 100vw));
    padding: 0 calc(76 / 768 * 100vw);
    margin-bottom: calc(32 / 768 * 100vw);
  }
  .chart_block__arrow_img {
    width: calc(130 / 768 * 100vw);
  }
  .chart_block__parts3 {
    margin-bottom: calc(50 / 768 * 100vw);
  }
  .chart_block__parts3_txt .bg-color {
    font-size: calc(46 / 768 * 100vw);
    padding: 0 calc(32 / 768 * 100vw);
    -webkit-transform: translate(0, -0.3em);
            transform: translate(0, -0.3em);
  }
  .chart_block__parts3_txt .num {
    font-size: calc(125 / 768 * 100vw);
    letter-spacing: -0.01em;
    padding-left: 0.1em;
  }
  .chart_block__parts3_txt .num .sign {
    font-size: calc(96 / 768 * 100vw);
  }
  .chart_block__parts3_txt .small {
    font-size: calc(77 / 768 * 100vw);
  }
  .chart_block__parts3_txt .normal {
    font-size: calc(58 / 768 * 100vw);
    -webkit-transform: translate(0.2em, -0.3em);
            transform: translate(0.2em, -0.3em);
    display: inline-block;
    line-height: 140%;
  }
  .chart_block__parts3_sub_txt {
    font-size: calc(36 / 768 * 100vw);
    margin-top: -0.2em;
    line-height: 185%;
  }
  .chart_block__parts3_sub_txt .num {
    font-size: calc(36 / 768 * 100vw);
  }
  .chart_block__faq_unit {
    margin-bottom: calc(100 / 768 * 100vw);
    padding: 0 calc(38 / 768 * 100vw);
  }
  .chart_block__faq {
    margin-bottom: calc(60 / 768 * 100vw);
  }
  .chart_block__question {
    padding: calc(22 / 768 * 100vw) calc(28 / 768 * 100vw);
  }
  .chart_block__question--bold {
    font-size: calc(45 / 768 * 100vw);
    padding-right: calc(24 / 768 * 100vw);
  }
  .chart_block__question_inner {
    font-size: calc(32 / 768 * 100vw);
    padding-top: 0.1em;
  }
  .chart_block__answer {
    padding: calc(23 / 768 * 100vw) calc(30 / 768 * 100vw) calc(28 / 768 * 100vw);
  }
  .chart_block__answer--bold {
    font-size: calc(45 / 768 * 100vw);
    padding-right: calc(30 / 768 * 100vw);
  }
  .chart_block__answer--non_marker {
    margin-top: 0;
  }
  .chart_block__answer_inner {
    font-size: calc(28 / 768 * 100vw);
  }
  .course_block {
    padding: calc(100 / 768 * 100vw) calc(38 / 768 * 100vw) calc(80 / 768 * 100vw);
  }
  .course_block__title {
    margin-bottom: calc(35 / 768 * 100vw);
    text-align: left;
  }
  .course_block__text {
    margin-bottom: calc(80 / 768 * 100vw);
  }
  .course_block__list_ttl {
    font-size: calc(32 / 768 * 100vw);
    margin-bottom: calc(19 / 768 * 100vw);
  }
  .course_block__list_ttl::before {
    width: calc(20 / 768 * 100vw);
    top: calc(0.1em + (20 / 768 * 100vw) / 2);
  }
  .course_block__list_ttl--small {
    font-size: calc(26 / 768 * 100vw);
    -webkit-transform: translate(0.1em, -0.3em);
            transform: translate(0.1em, -0.3em);
  }
  .course_block__list_logo {
    height: 1.15em;
    width: auto;
    padding-left: 0.15em;
    -webkit-transform: translateY(-0.3em);
            transform: translateY(-0.3em);
  }
  .course_block__item_unit {
    gap: calc(18 / 768 * 100vw) calc(26 / 768 * 100vw);
  }
  .course_block__list_item {
    font-size: calc(25 / 768 * 100vw);
    padding: calc(13.5 / 768 * 100vw) calc(15 / 768 * 100vw);
    line-height: 140%;
    letter-spacing: -0.02em;
  }
  .course_block__list_item .color {
    font-size: calc(21 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(1) {
    margin-bottom: calc(60 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(1) .course_block__item_unit {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(11, 1fr);
  }
  .course_block__list:nth-of-type(2) {
    margin-bottom: calc(60 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(2) .course_block__list_ttl {
    font-size: calc(28 / 768 * 100vw);
    padding-left: 1.2em;
    margin-bottom: calc(28 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(2) .course_block__list_ttl--small {
    -webkit-transform: translate(0.1em, -0.1em);
            transform: translate(0.1em, -0.1em);
  }
  .course_block__list:nth-of-type(2) .course_block__list_ttl .course_block__list_logo {
    -webkit-transform: translate(0.1em, -0.1em);
            transform: translate(0.1em, -0.1em);
    height: 1.35em;
  }
  .course_block__list:nth-of-type(2) .course_block__item_unit {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .course_block__list:nth-of-type(3) {
    margin-bottom: calc(35 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(3) .course_block__list_item {
    padding: calc(6 / 768 * 100vw) calc(15 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(3) .course_block__list_ttl {
    font-size: calc(28 / 768 * 100vw);
    padding-left: 1.2em;
    margin-bottom: calc(28 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(3) .course_block__list_ttl--small {
    -webkit-transform: translate(0.1em, -0.1em);
            transform: translate(0.1em, -0.1em);
  }
  .course_block__list:nth-of-type(3) .course_block__list_ttl .course_block__list_logo {
    -webkit-transform: translate(0.1em, -0.2em);
            transform: translate(0.1em, -0.2em);
    height: 1.1em;
  }
  .course_block__list:nth-of-type(3) .course_block__item_unit {
    grid-template-columns: repeat(2, 1fr);
  }
  .course_block__list:nth-of-type(4) {
    margin-bottom: calc(40 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(4) .course_block__list_item {
    padding: calc(15 / 768 * 100vw) calc(15 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(4) .course_block__list_ttl {
    font-size: calc(28 / 768 * 100vw);
    padding-left: 1.2em;
    margin-bottom: calc(25 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(4) .course_block__list_ttl--small {
    -webkit-transform: translate(0.1em, -0.1em);
            transform: translate(0.1em, -0.1em);
  }
  .course_block__list:nth-of-type(4) .course_block__list_ttl .course_block__list_logo {
    -webkit-transform: translate(0.1em, -0.2em);
            transform: translate(0.1em, -0.2em);
    height: 1.1em;
  }
  .course_block__list:nth-of-type(4) .course_block__item_unit {
    grid-template-columns: repeat(2, 1fr);
  }
  .course_block__list:nth-of-type(5) .course_block__list_item {
    padding: calc(5 / 768 * 100vw) calc(15 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(5) .course_block__list_item .item_in {
    display: inline-block;
    -webkit-transform: translateX(-0.2em);
            transform: translateX(-0.2em);
  }
  .course_block__list:nth-of-type(5) .course_block__list_ttl {
    font-size: calc(28 / 768 * 100vw);
    padding-left: 1.2em;
    margin-bottom: calc(35 / 768 * 100vw);
  }
  .course_block__list:nth-of-type(5) .course_block__list_ttl--small {
    -webkit-transform: translate(0.1em, -0.1em);
            transform: translate(0.1em, -0.1em);
  }
  .course_block__list:nth-of-type(5) .course_block__list_ttl .course_block__list_logo {
    -webkit-transform: translate(0, -0.3em);
            transform: translate(0, -0.3em);
    height: 1.1em;
  }
  .course_block__list:nth-of-type(5) .course_block__item_unit {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .course_block__list:nth-of-type(5) .course_block__item_unit {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .counseling_block {
    padding: calc(100 / 768 * 100vw) 0;
  }
  .counseling_block__img_unit {
    padding-left: calc(73 / 768 * 100vw);
    padding-right: calc(40 / 768 * 100vw);
  }
  .counseling_block__img_unit::before {
    height: calc(100 / 768 * 100vw);
    bottom: calc(-135 / 768 * 100vw);
    width: calc(1 / 768 * 100vw);
  }
  .counseling_block__img {
    width: 100%;
    margin-bottom: calc(15 / 768 * 100vw);
  }
  .counseling_block__img:nth-of-type(3) {
    padding-right: calc(40 / 768 * 100vw);
    margin-bottom: calc(25 / 768 * 100vw);
  }
  .counseling_block__img:last-of-type {
    margin-bottom: calc(180 / 768 * 100vw);
  }
  .counseling_block__catch {
    padding: 0 calc(38 / 768 * 100vw);
    align-items: center;
  }
  .counseling_block__catch.second_block .counseling_block__catch_img_unit {
    width: 34%;
  }
  .counseling_block__catch_img_unit {
    width: 34%;
    padding-right: calc(35 / 768 * 100vw);
  }
  .counseling_block__text {
    width: 65%;
    font-size: calc(30 / 768 * 100vw);
    padding-left: 0.1em;
    letter-spacing: 0.06em;
    line-height: 200%;
  }
  .cv_block__unit {
    display: block;
    align-items: center;
    flex-direction: column;
    padding: calc(100 / 768 * 100vw) calc(75 / 768 * 100vw) 0;
  }
  .cv_block__feature {
    padding-left: 0;
  }
  .cv_block__text {
    max-width: unset;
    margin-bottom: calc(16 / 768 * 100vw);
    line-height: 200%;
    font-size: calc(28 / 768 * 100vw);
  }
  .cv_block__note {
    margin-bottom: calc(70 / 768 * 100vw);
    font-size: calc(22 / 768 * 100vw);
  }
  .cv_block__img {
    position: relative;
    max-width: 100vw;
    padding-top: calc(40 / 768 * 100vw);
    right: calc(70 / 768 * 100vw);
    bottom: 0;
    width: calc(765 / 768 * 100vw);
  }
  .cv_btn {
    padding-right: calc(76 / 768 * 100vw);
    padding-left: calc(62 / 768 * 100vw);
  }
  .cv_btn__inner {
    gap: calc(24 / 768 * 100vw);
  }
  .cv_btn__label {
    white-space: nowrap;
    font-size: calc(28 / 768 * 100vw);
    padding: calc(3 / 768 * 100vw) calc(8 / 768 * 100vw) calc(4 / 768 * 100vw);
    border-radius: calc(8 / 768 * 100vw);

  }

  .cv_block__caution {
    width: 100%;
    font-size: calc(20 / 768 * 100vw);

  }
  .summary_block__outer {
    padding: calc(90 / 768 * 100vw) calc(77 / 768 * 100vw) calc(100 / 768 * 100vw);
  }
  .summary_block__title {
    line-height: 155%;
    margin-bottom: calc(60 / 768 * 100vw);
  }
  .summary_block__flow {
    display: block;
    margin: 0 auto;
    margin-bottom: calc(100 / 768 * 100vw);
  }
  .summary_block__flow_box::before {
    height: calc(100% - 4vw);
  }
  .summary_block__triangle {
    margin-bottom: calc(4.5% + (25 / 768 * 100vw));
  }
  .summary_block__flow_box:nth-of-type(1) {
    padding-top: 0;
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_detail {
    padding: calc(30 / 768 * 100vw) calc(32 / 768 * 100vw) calc(60 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(1) {
    padding-bottom: calc(35 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(2) {
    padding-bottom: calc(30 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(2) .summary_block__flow_item--txt {
    -webkit-transform: translateY(-0.3em);
            transform: translateY(-0.3em);
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(3) {
    padding-bottom: calc(30 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(3) .summary_block__flow_item--txt {
    -webkit-transform: translateY(-0.3em);
            transform: translateY(-0.3em);
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(4) {
    padding-bottom: calc(42 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(1) .summary_block__flow_item:nth-of-type(5) {
    padding-bottom: calc(40 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(4) {
    padding-top: 0;
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_detail {
    padding: calc(30 / 768 * 100vw) calc(32 / 768 * 100vw) calc(40 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(1) {
    padding-bottom: calc(38 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(2) {
    padding-bottom: calc(40 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(2) .summary_block__flow_item--txt {
    -webkit-transform: translateY(-0.3em);
            transform: translateY(-0.3em);
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(3) {
    padding-bottom: calc(40 / 768 * 100vw);
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(3) .summary_block__flow_item--txt {
    -webkit-transform: translateY(-0.3em);
            transform: translateY(-0.3em);
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(4) {
    padding-bottom: 0;
  }
  .summary_block__flow_box:nth-of-type(4) .summary_block__flow_item:nth-of-type(5) {
    padding-bottom: calc(40 / 768 * 100vw);
  }
  .summary_block__txt_outer:nth-of-type(3) {
    margin-bottom: calc(70 / 768 * 100vw);
  }
  .summary_block__flow_ttl--img {
    width: 45%;
  }
  .summary_block__flow_item {
    gap: calc(30 / 768 * 100vw);
  }
  .summary_block__flow_item--num {
    line-height: 100%;
  }
  .summary_block__flow_item--num::before {
    width: 1.8em;
  }
  .summary_block__flow_item--txt {
    font-size: calc(28 / 768 * 100vw);
    letter-spacing: 0.07em;
  }
  .summary_block__flow_item--txt .small {
    font-size: calc(28 / 768 * 100vw);
    width: 90%;
    padding-top: 0.1em;
    line-height: 140%;
  }
  .summary_block__num_wrap {
    width: 1.8em;
    font-size: calc(33 / 768 * 100vw);
  }
  .summary_block__flow_item:not(:last-of-type):not(:has(.sp_only_last))::after {
    left: calc(26 / 768 * 100vw);
  }
  .summary_block__flow_catch {
    font-size: calc(58 / 768 * 100vw);
    margin-bottom: calc(30 / 768 * 100vw);
    line-height: 115%;
  }
  .summary_block__flow_catch--num {
    font-size: calc(71 / 768 * 100vw);
  }
  .summary_block__flow_catch--sign {
    font-size: calc(58 / 768 * 100vw);
  }
  .summary_block__flow_catch--under {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .summary_block__flow_note {
    font-size: calc(22 / 768 * 100vw);
    padding: calc(22 / 768 * 100vw);
    line-height: 150%;
    padding: 0 calc(27 / 768 * 100vw);
    letter-spacing: 0.07em;
  }
  .summary_block__subject {
    display: block;
    margin: 0 auto;
  }
  .summary_block__subject_unit:not(:last-of-type) {
    margin-bottom: calc(58 / 768 * 100vw);
  }
  .summary_block__subject_head {
    padding: 15px;
    font-size: calc(26 / 768 * 100vw);
    padding: calc(20 / 768 * 100vw);
  }
  .summary_block__subject_head--num {
    font-size: calc(33 / 768 * 100vw);
  }
  .summary_block__subject_inner {
    padding: calc(66 / 768 * 100vw) calc(38 / 768 * 100vw);
    padding-top: 0;
  }
  .summary_block__subject_ttl {
    font-size: calc(44 / 768 * 100vw);
    padding: calc(25 / 768 * 100vw) 0 calc(38 / 768 * 100vw);
  }
  .summary_block__subject_li {
    font-size: calc(22 / 768 * 100vw);
    padding: calc(25 / 768 * 100vw) 0;
    padding-left: calc(45 / 768 * 100vw);
    padding-right: calc(28 / 768 * 100vw);
  }
  .summary_block__subject_item {
    line-height: 180%;
  }
  .summary_block__subject_item.kari {
    display: none;
  }
  .summary_block__subject_item {
    font-size: calc(28 / 768 * 100vw);
  }
  .summary_block__subject_item.subject_sub_ttl {
    margin-top: calc(32 / 768 * 100vw);
  }
  .attention_block__list_unit {
    padding: calc(125 / 768 * 100vw) calc(38 / 768 * 100vw) 0;
  }
  .attention_block__list_box {
    padding: calc(70 / 768 * 100vw) 0 calc(65 / 768 * 100vw);
    margin-bottom: calc(100 / 768 * 100vw);
  }
  .attention_block__title {
    font-size: calc(30 / 768 * 100vw);
    margin-top: calc(-2em - (30 / 768 * 100vw));
  }
  .attention_block__list {
    padding: 0 calc(32 / 768 * 100vw);
    padding-left: calc((30 / 768 * 100vw) + 4vw);
  }
  .attention_block__item {
    line-height: 190%;
    font-size: calc(25 / 768 * 100vw);
  }
  .attention_block__sub_title {
    font-size: calc(25 / 768 * 100vw);
    padding: 0 calc(30 / 768 * 100vw);
    margin-top: calc(53 / 768 * 100vw);
    margin-bottom: calc(-11 / 768 * 100vw);
  }
  .attention_block__catch_unit {
    justify-content: space-between;
    padding: 0 calc(20 / 768 * 100vw);
    padding-bottom: calc(100 / 768 * 100vw);
  }
  .attention_block__catch {
    font-size: calc(32 / 768 * 100vw);
    padding: 0 clamp(0.1em, 1vw, 1em);
    letter-spacing: 0.06em;
  }
  .attention_block__catch--under {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .attention_block__catch--img {
    width: 4.5em;
  }
}
@media screen and (max-width: 1023px) {
  .cv_btn__img {
    margin-right: calc(20 / 1024 * 100vw);
  }
  .about_block {
    display: flex;
    flex-direction: column-reverse;
  }
  .about_block__head {
    padding-left: 0;
  }
  .about_block__intro_wrap {
    display: block;
  }
  .course_block__text {
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .is_wide {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cv_btn:hover:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .cv_btn:hover:hover::after {
    top: -35px;
  }
  .cv_btn.footer_btn:hover:hover::after {
    top: -45px;
  }
  .cta_btn:hover:hover {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .cta_btn:hover:hover::after {
    top: -60%;
  }
  .header_block__logo:hover:hover {
    opacity: 0.8;
  }
  .flow_block__note--link:hover:hover {
    color: #025fc7;
    border-bottom: 1px solid #025fc7;
  }
  .summary_block__flow_note--line:hover:hover {
    border-bottom: 1px solid #025fc7;
  }
  .summary_block__flow_note--line:hover:hover a {
    color: #025fc7;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}

/* ======================================================= */
/*
/* add section 20250731
/*
/* ======================================================= */

.u-marker {
	background: linear-gradient(transparent 0%, #fff500 0%);
	display: inline;
	padding: 0 1px 0px;
  color: #0e2b4b;
  /* font-weight: bold; */
}

