@charset "UTF-8";
/*
 * Mixins
 * 再利用可能なスタイルパターンを定義
 */
/**
 * プロジェクトのFigmaデザインサイズ
 * プロジェクト開始時に一度だけ設定してください
 */
/**
 * r() - 比率を保ったレスポンシブ関数
 *
 * 使用例:
 * width: r(416, 0.67);     // PC:416px, モバイル:278px（0.67倍）
 * height: r(90, 0.75);     // PC:90px, モバイル:67.5px（0.75倍）
 * padding: r(28, 0.6);     // PC:28px, モバイル:16.8px（0.6倍）
 */
/**
 * f() - シンプル＆パワフルなレスポンシブ関数
 *
 * 使用例:
 * font-size: f(24, 18);        // PC:24px, SP:18px（明示指定）
 * width: f(800, 400);          // PC:800px, SP:400px（明示指定）
 * padding: f(40);              // 自動計算：PC:40px, SP:30px (デフォルト0.75倍)
 * margin: f(-20, -15);         // マイナス値対応
 * padding: f(160, $ratio: 0.2);  // カスタム縮小率：PC:160px, SP:32px (0.2倍)
 *
 * プロジェクト設定変更例:
 * $figma-desktop: 1920;        // 4Kディスプレイ用
 * $figma-mobile: 375;          // iPhone X基準
 *
 * 動作：
 * - 設定したFigmaサイズで完全一致
 * - 小さい画面〜大きい画面まで滑らかにスケーリング
 * - Figmaサイズ超: vwで比例拡大（デザイン破綻なし）
 * - マイナス値完全対応
 */
/**
 * 🎯 g() - グリッド一括設定ミクシン
 * 
 * 使用例:
 * @include g(
 *   $cols: (f(300), 1fr, f(200)),    // カラム
 *   $rows: (f(80), 1fr),             // 行  
 *   $gap: f(20)                      // ギャップ
 * );
 * 
 * @include g($cols: (1fr, 2fr), $gap: f(20));          // シンプル
 * @include g($cols: (repeat(3, 1fr)), $gap: f(15));    // リピート
 * @include g($areas: 'header header' 'nav main');       // エリア指定
 */
/**
 * 🎯 gitem() - グリッドアイテム配置ミクシン
 * 
 * 使用例:
 * @include gitem(1, 3, 1, 2);      // col: 1/3, row: 1/2
 * @include gitem(1, span 2);       // col: 1/span 2, row: auto
 * @include gitem(1, 3);            // col: 1/3, row: auto
 * @include gitem($area: 'header'); // grid-area: header
 * 
 * パラメータ:
 * - $col-start: カラム開始位置
 * - $col-end: カラム終了位置 (span X も可)
 * - $row-start: 行開始位置
 * - $row-end: 行終了位置 (span X も可)
 * - $area: グリッドエリア名
 */
/**
 * デザインから簡単にGridレイアウトを作成するmixin
 * 使用例:
 * @include design-grid(
 *   $cols: (500, 80, 1fr),      // カラム幅 (px値または1fr)
 *   $rows: (100, 200, auto),    // 行高さ (px値またはauto)
 *   $gap: 20                    // グリッドギャップ
 * );
 */
/**
 * Figmaデザインの値をそのまま使えるグリッドmixin
 * 
 * 特徴:
 * - Figmaの数値をそのまま入力可能 (672 → fs(672)でレスポンシブ化)
 * - fs/fsm関数を自動適用してレスポンシブ対応
 * - fr、auto、%などの単位はそのまま使用
 * 
 * 基本的な使用例:
 * @include grid(
 *   $cols: (1fr, 672, 1fr),     // 左右1fr、中央672px(レスポンシブ)
 *   $rows: (auto),               // 行高さ自動
 *   $gap: 20                     // 20px gap(レスポンシブ)
 * );
 * 
 * モバイル版の使用例:
 * @include grid(
 *   $cols: (1fr),                // 1カラム
 *   $rows: (auto, 200, auto),    // 中央200px固定(fsm関数)
 *   $gap: 16,                    // 16px gap(fsm関数)
 *   $mobile: true                // fsm関数を使用
 * );
 * 
 * 複雑なレイアウト例:
 * @include grid(
 *   $cols: (240, 1fr, 200),      // 240px, 可変, 200px
 *   $rows: (80, 1fr, 60),        // ヘッダー80px, 可変, フッター60px
 *   $gap: 24
 * );
 * 
 * 値の種類:
 * - 数値のみ(672): fs()またはfsm()でレスポンシブpx値に変換
 * - px付き(672px): fs()またはfsm()でレスポンシブpx値に変換
 * - fr系(1fr, 2fr): そのまま使用
 * - その他(auto, %, min-content等): そのまま使用
 * 
 * 🆕 新しい使い方（推奨）:
 * @include grid((f(300), 1fr, f(200)), $gap: f(20));
 * - f()関数でレスポンシブ値を簡単指定
 * - 既存のfs/fsm形式も引き続き対応
 */
/**
 * グリッドアイテムの配置を簡単に設定するmixin
 * 使用例:
 * @include grid-item(
 *   $col-start: 1,
 *   $col-end: 3,
 *   $row-start: 1,
 *   $row-end: 4
 * );
 */
/**
 * グリッドアイテムの配置を短縮形で設定（0ベースのインデックス）
 * 使用例:
 * @include grid-area(0, 2, 0, 3);  // col-start, col-end, row-start, row-end
 */
/**
 * デザインのオートレイアウトを再現するmixin
 * 使用例:
 * @include auto-layout(
 *   $direction: 'horizontal',  // または 'vertical'
 *   $gap: 20,
 *   $padding: 40
 * );
 */
/**
 * コンテナ突き抜け背景mixin
 * 
 * 仕組み：
 * 画面全体                    コンテナ
 * |--------------------------|
 * |        |  Container  |   |
 * |        |     50%     |   |  ← コンテナは画面の中央にある
 * |        |             |   |
 * |--------------------------|
 *          ↑             ↑
 *       25%            75%
 * 
 * calc(-50vw + 50%)の計算：
 * - 50vw = 画面幅の50%（画面中央まで）
 * - 50% = コンテナ中央からの位置
 * - -50vw + 50% = コンテナ左端から画面左端までの距離
 * 
 * 使用例:
 * @include breakout-bg('left', 50vw, 84%, #57aace);  // 左に50vw幅、84%からオフセット
 * @include breakout-bg('right', 30vw, 20%, red);     // 右に30vw幅、20%からオフセット
 * @include breakout-bg('both', 100vw, 50%, blue);    // 両端まで全幅
 * 
 * パラメータ説明:
 * @param {String} $direction - 'left', 'right', または 'both' - 突き抜ける方向
 * @param {String} $width - 幅（vw単位） - 画面幅に対する絶対的なサイズ
 * @param {String} $offset - オフセット（%単位） - コンテナ内での開始位置（0%=左端, 50%=中央, 100%=右端）
 * @param {Color} $bg-color - 背景色
 * 
 * 例: @include breakout-bg('left', 100vw, 40%, #57aace);
 * → コンテナの40%の位置から左に画面全幅まで青色で突き抜け
 */
/**
 * シンプル化したレスポンシブサイズ関数 - 縮小率を直接指定可能
 * 
 * @param {Number} $max-size - 最大サイズ（PC向け1440pxでの値）
 * @param {Number} $ratio - 縮小率（デフォルト0.74）
 * @return {String} - 計算されたcalc()式
 * 
 * 使用例:
 * font-size: fs(20);           // 基本使用法（デフォルト縮小率0.74）
 * font-size: fs(20, 0.5);      // 縮小率0.5で計算
 * font-size: fs(20, 1.2);      // 拡大率1.2で計算
 */
/**
 * 統一レスポンシブ関数 - PC/SPを自動判定
 * 
 * @param {Number} $value - デザインカンプの値
 * @param {Number} $sp-value - モバイル用の値（省略可）
 * @return {String} - レスポンシブな値
 * 
 * 使用例:
 * padding: r(40);          // PC/SP自動切り替え
 * padding: r(40, 20);      // PC:40px, SP:20px
 */
/**
 * レスポンシブ値用のCSS変数生成mixin
 * bodyまたはルート要素で使用
 */
/**
 * 768px以下（モバイル）専用のレスポンシブサイズ関数
 * 比率を維持して画面幅に比例してスケール
 * 
 * @param {Number} $size-480 - 480pxでの基準サイズ
 * @return {String} - 計算されたvw値
 */
/**
 * スペーシング専用mixin - padding/marginを簡単に設定
 * 
 * @param {String} $prop - 'padding' or 'margin'
 * @param {List} $values - 1〜4個の値
 * 
 * 使用例:
 * @include spacing(padding, 40);          // 全方向40px
 * @include spacing(padding, 40 20);       // 上下40px, 左右20px
 * @include spacing(margin, 40 20 30 10);  // 上40px, 右20px, 下30px, 左10px
 */
/**
 * タイポグラフィ専用mixin
 * 
 * 使用例:
 * @include typo(24);              // font-size: fs(24)
 * @include typo(24, 18);           // PC:24px, SP:18px
 * @include typo(24, 18, 1.6, 700); // サイズ、行高、太さ指定
 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #024D9D;
  background-color: #fff;
}

/**
 * transform:scale JavaScript スケール機能用のCSS
 */
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}
body::-webkit-scrollbar {
  display: none;
}
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#scale-wrapper {
  width: 768px;
  -webkit-transform-origin: top left !important;
  transform-origin: top left !important;
  background: white;
}

.main-container {
  width: 768px;
  background: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.main-container {
  width: 768px;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  background: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 0, 0, 0.05);
}

.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  padding: 0 28px;
  background-color: #ffffff;
  max-width: 768px;
  margin: 0 auto;
  width: 768px;
}
.header__container__logo-left img {
  width: 350px;
  max-width: none;
}
.header__container__logo-right img {
  width: 220px;
  max-width: none;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}

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

.button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(5.92px + (2.08) * (100vw - 768px) / (672));
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: calc(13.32px + (4.68) * (100vw - 768px) / (672));
  color: #024D9D;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: calc(5.92px + (2.08) * (100vw - 768px) / (672)) calc(8.88px + (3.12) * (100vw - 768px) / (672));
  border-radius: calc(2.96px + (1.04) * (100vw - 768px) / (672));
}
@media (max-width: 767px) {
  .button-link {
    font-size: clamp(9.6px, 3.3333333333vw, 28.8px);
    gap: clamp(4.8px, 1.6666666667vw, 14.4px);
    padding: 0 clamp(7.2px, 2.5vw, 21.6px);
  }
}
.button-link:hover {
  opacity: 0.7;
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}
.button-link__text {
  white-space: nowrap;
}
.button-link__icon {
  width: calc(11.84px + (4.16) * (100vw - 768px) / (672));
  height: calc(11.84px + (4.16) * (100vw - 768px) / (672));
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .button-link__icon {
    width: clamp(9.6px, 3.3333333333vw, 28.8px);
    height: clamp(9.6px, 3.3333333333vw, 28.8px);
  }
}

.hero-section {
  width: 100%;
  position: relative;
  overflow: visible;
}
.hero-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  height: 974px;
  background-image: url("/assets/images/first-bg-hero.png");
  background-size: cover;
  background-color: #024D9D;
}
.hero-section__container__hero-top img {
  width: 768px;
  height: 190.02px;
  margin-top: 30px;
}
.hero-section__container__hero-txt-circle img {
  width: 677px;
  height: 147.16px;
  margin-top: 35px;
}
.hero-section__container__hero-txt-circle__text {
  width: 100%;
  position: absolute;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 21.5px;
  color: #FFFF00;
  top: 282px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}
.hero-section__container__hero-txt-circle__text .opening-paren {
  margin-left: -0.5em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.2em !important;
}
.hero-section__container__hero-txt-circle__text .closing-paren {
  margin-left: 0.1em !important;
  margin-right: -0.35em !important;
  letter-spacing: -0.15em !important;
}
.hero-section__container__hero-txt-circle__text .comma {
  margin-right: -0.5em !important;
}
.hero-section__container__hero-txt-circle__text--big {
  font-size: 30px;
}
.hero-section__container__hero-grid {
  display: grid;
  position: absolute;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 303px 336px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 550px;
  width: 677px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 291px;
}
.hero-section__container__hero-grid__item1 {
  grid-column: 1;
  grid-row: 1;
  position: absolute;
  bottom: 170px;
}
.hero-section__container__hero-grid__item1 img {
  width: 303px;
  height: 237px;
}
.hero-section__container__hero-grid__item2 {
  grid-column: 1;
  grid-row: 2;
}
.hero-section__container__hero-grid__item2 img {
  height: 219px;
  width: 336px;
  border-radius: 23px;
}
.hero-section__container__hero-grid__item3 {
  grid-column: 2;
  grid-row: 1/span 2;
  -webkit-transform: translateX(25px) translateY(40px);
  transform: translateX(25px) translateY(40px);
  width: 350px;
}
.hero-section__container__hero-grid__item3 img {
  width: 100%;
}

.application-section-header {
  width: 100%;
  position: relative;
  overflow: visible;
}
.application-section-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 768px;
  height: 272px;
  margin: 0 auto;
  background-color: #ffffff;
}
.application-section-header__container__item1 img {
  width: 648px;
  height: 97.81px;
  margin-top: 10px;
  max-width: none;
}
.application-section-header__container__item2 img {
  width: 374.8px;
  height: 37.43px;
  margin-top: 10px;
  max-width: none;
}
.application-section-header__container__item3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 768px;
  height: 86px;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  -webkit-font-feature-settings: "kern" 0;
  font-feature-settings: "kern" 0;
  -ms-text-spacing: trim;
  text-spacing: trim;
  font-variant-east-asian: proportional-width;
  background-color: #FFFF00;
  color: #024D9D;
  margin-top: 20px;
}
.application-section-header__container__item3 .opening-bracket {
  margin-left: -0.1em !important;
  margin-right: 0.1em !important;
}
.application-section-header__container__item3 .closing-bracket {
  margin-left: 0.1em !important;
  margin-right: -0.3em !important;
}

.application-section {
  width: 100%;
  position: relative;
  overflow: visible;
}
.application-section__container {
  width: 768px;
  background-image: url("/assets/images/application-section-bg.png");
  background-size: cover;
  background-position: center;
  background-color: #0094DA;
  margin: 0 auto;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
.application-section__container__table-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.application-section__container__table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 645px;
  height: 87px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #024D9D;
  border-radius: 20px 20px 0 0;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "kern" 0;
  font-feature-settings: "kern" 0;
  -ms-text-spacing: trim;
  text-spacing: trim;
  font-variant-east-asian: proportional-width;
  word-spacing: -0.6em;
}
.application-section__container__table-body {
  width: 645px;
  height: 648px;
  background-color: #ffffff;
  border-radius: 0 0 20px 20px;
  position: relative;
  padding: 20px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.application-section__container__table-body__circle-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 553px;
  height: 96px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 5px solid #FF0000;
  border-radius: 60px;
  margin-bottom: 20px;
}
.application-section__container__table-body__circle-button__text {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #FF0000;
}
.application-section__container__table-body__table {
  width: 554px;
  border-collapse: collapse;
  border-spacing: 0;
}
.application-section__container__table-body__table tr {
  height: 97px;
  border-bottom: 2px solid #024D9D;
}
.application-section__container__table-body__table td:first-child {
  width: 67px;
  font-family: "Roboto Mono", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace;
  font-size: 82px;
  font-weight: 700;
  color: #024D9D;
  font-style: italic;
}
.application-section__container__table-body__table td:last-child {
  width: 469px;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: #333333;
}
.application-section__container__table-body__table td:last-child .closing-quote {
  margin-right: -0.3em;
}
.application-section__container__table-body__table td:last-child .opening-paren {
  margin-left: -0.5em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.2em !important;
}
.application-section__container__table-body__table td:last-child .closing-paren {
  margin-left: 0.1em !important;
  margin-right: -0.35em !important;
  letter-spacing: -0.15em !important;
}
.application-section__container__table-body__table td:last-child .comma {
  margin-right: -0.5em !important;
}
.application-section__container__button {
  width: 645px;
  height: 138px;
  font-size: 48px;
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  border-radius: 30px;
  background-color: #DA0000;
  -webkit-box-shadow: 5px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 8px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}
.application-section__container__button a {
  text-decoration: none;
  color: #ffffff;
}
.application-section__container__button:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.application-section__container__circle-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 645px;
  height: 87px;
  background-color: #024D9D;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 53px;
  letter-spacing: 0.1em;
}
.application-section__container__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 645px;
  height: 103.5px;
  gap: 10px;
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 43px;
  font-weight: 800;
  color: #FFFF00;
  text-align: center;
}
.application-section__container__text-block img {
  display: block;
  width: 454.5px;
  height: 32.5px;
  margin: 0 auto;
  max-width: none;
}
.application-section__container__text-block01 {
  width: 645px;
  height: 310px;
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 75px;
  font-weight: 800;
  line-height: 94px;
  color: #ffffff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -50px;
}
.application-section__container__image-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 768px;
  gap: 50px;
  margin-top: -35px;
}
.application-section__container__image-block__image-overlay-container {
  position: relative;
  display: inline-block;
}
.application-section__container__image-block__image-overlay-container img {
  width: 650px;
  height: auto;
  border-radius: 61px;
  max-width: none;
}
.application-section__container__image-block__image-overlay-container__image-overlay-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 645px;
  height: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: 99px;
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-text-stroke: 16px #024D9D;
  paint-order: stroke fill;
}
.application-section__container__image-block__image-overlay-container__image-overlay-text small {
  font-size: 57px;
  position: relative;
  top: 0.1em;
}

.section-02 {
  width: 100%;
  position: relative;
  overflow: visible;
}
.section-02__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 768px;
  background-image: url("/assets/images/section-02-bg.png");
  background-size: cover;
  background-position: center;
  background-color: #024D9D;
  margin: 0 auto;
  padding-top: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px;
}
.section-02__container__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 640.39px;
  height: 210.19px;
}
.section-02__container__logo__item1 img {
  width: 640.39px;
  height: 127.64px;
  max-width: none;
}
.section-02__container__logo__item2 img {
  width: 350.3px;
  height: 78.19px;
  max-width: none;
}
.section-02__container__image-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -ms-flex-item-align: center;
  align-self: center;
  overflow: hidden;
}
.section-02__container__image-block__image-overlay {
  position: relative;
  display: inline-block;
}
.section-02__container__image-block__image-overlay img {
  width: 728px;
  height: auto;
  max-width: none;
  margin-left: 60px;
}
.section-02__container__image-block__image-overlay.section-02__container__image-block__image-overlay:nth-child(1) img {
  height: 886px;
}
.section-02__container__image-block__image-overlay.section-02__container__image-block__image-overlay:nth-child(2) img {
  height: 888px;
}
.section-02__container__image-block__image-overlay.section-02__container__image-block__image-overlay:nth-child(3) img {
  height: 888px;
}
.section-02__container__image-block__image-overlay.section-02__container__image-block__image-overlay:nth-child(4) img {
  height: 1302px;
}
.section-02__container__image-block__image-overlay.section-02__container__image-block__image-overlay:nth-child(5) img {
  height: 1302px;
}
.section-02__container__image-block__image-overlay__image-overlay-text {
  position: absolute;
  width: 728px;
  bottom: 130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #333333;
  text-align: center;
}
.section-02__container__image-block__image-overlay__image-overlay-text .opening-paren {
  margin-left: -0.5em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.2em !important;
}
.section-02__container__image-block__image-overlay__image-overlay-text .closing-paren {
  margin-left: 0.1em !important;
  margin-right: -0.35em !important;
  letter-spacing: -0.15em !important;
}
.section-02__container__image-block__image-overlay__image-overlay-text .comma {
  margin-right: -0.5em !important;
}
.section-02__container__image-block__image-overlay__image-overlay-text .opening-quote {
  margin-left: -0.3em;
}
.section-02__container__image-block__image-overlay__image-overlay-text .closing-quote {
  margin-right: -0.3em;
}

.section-03 {
  width: 100%;
  position: relative;
  overflow: visible;
}
.section-03__container-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 768px;
  height: 214px;
  background-size: cover;
  background-position: center;
  background-color: #FFFF00;
  margin: 0 auto;
}
.section-03__container-01 p {
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: 800;
  font-size: 35px;
  color: #024D9D;
  text-align: center;
}
.section-03__container-01 p .opening-quote {
  margin-left: -0.3em;
}
.section-03__container-01 p .closing-quote {
  margin-right: -0.3em;
}
.section-03__container-01 p .closing-comma {
  margin-right: -0.3em;
}
.section-03__container-01 p .opening-paren {
  margin-left: -0.5em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.2em !important;
}
.section-03__container-01 p .closing-paren {
  margin-left: 0.1em !important;
  margin-right: -0.35em !important;
  letter-spacing: -0.15em !important;
}
.section-03__container-02 {
  width: 768px;
  margin: 0 auto;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 20px 0;
}
.section-03__container-02 p {
  height: 174px;
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: 800;
  font-size: 35px;
  color: #333333;
  text-align: center;
  line-height: 1.4;
  padding-top: 34px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.section-03__container-02 p .application-terms {
  color: #da0000;
  text-decoration: underline;
  text-decoration-color: #da0000;
  text-decoration-thickness: 2px;
}
.section-03__container-02__check-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 645px;
  height: 138px;
  margin-bottom: 20px;
  background-color: #DA0000;
  color: #ffffff;
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: 800;
  font-size: 40px;
  border: none;
  border-radius: 30px;
  padding: 0 27px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.section-03__container-02__check-button.checked {
  background-color: #024d9d;
}
.section-03__container-02__check-button input[type=checkbox] {
  width: 79px;
  height: 79px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 8px solid #000000;
  border-radius: 0;
  margin-right: 18px;
  background-color: #ffffff;
  position: relative;
}
.section-03__container-02__check-button input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: calc(50% - 45.52px - 26.35px);
  left: calc(50% - 53.51px + 13px);
  width: 107.02px;
  height: 91.04px;
  background-image: url("/assets/images/checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.section-03__container-02__arrow {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
}
.section-03__container-02__arrow img {
  width: 95px;
  height: 38px;
  max-width: none;
}
.section-03__container-02__apply-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 645px;
  height: 138px;
  background-color: #DA0000;
  color: #ffffff;
  font-family: "TBUDGothic Std", "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: 800;
  font-size: 48px;
  border: none;
  border-radius: 30px;
  margin-bottom: 42px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.section-03__container-02__apply-button:hover, .section-03__container-02__apply-button:focus, .section-03__container-02__apply-button:visited {
  color: #ffffff;
  text-decoration: none;
}
.section-03__container-02__apply-button.disabled {
  position: relative;
  pointer-events: none;
  cursor: not-allowed;
}
.section-03__container-02__apply-button.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.85);
  border-radius: 30px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.requirement-section {
  width: 100%;
  position: relative;
  overflow: visible;
}
.requirement-section__container {
  width: 768px;
  min-height: 100vh;
  background-image: url("/assets/images/requirement-bg.png");
  background-size: cover;
  background-position: center;
  background-color: #0094DA;
  margin: 0 auto;
  padding: 50px 0;
}
.requirement-section__container__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 645px;
  height: 87px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  color: #ffffff;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 36px;
  background-color: #024D9D;
  border-radius: 20px 20px 0 0;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
.requirement-section__container__header::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -40px;
  width: 240px;
  height: 240px;
  background-image: url("/assets/images/requirement-head.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 100;
  pointer-events: none;
}
.requirement-section__container__content-wrapper {
  position: relative;
  width: 645px;
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  z-index: 1;
  padding-top: 35px;
  padding-bottom: 50px;
}
.requirement-section__container__content-wrapper .opening-paren {
  margin-left: -0.5em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.2em !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.requirement-section__container__content-wrapper .closing-paren {
  margin-left: 0.1em !important;
  margin-right: -0.35em !important;
  letter-spacing: -0.15em !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.requirement-section__container__content-wrapper .closing-paren-period {
  margin-left: 0.1em !important;
  margin-right: -0.1em !important;
  letter-spacing: -0.05em !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.requirement-section__container__content-wrapper .closing-paren-opening {
  margin-left: 0.1em !important;
  margin-right: -0.1em !important;
  letter-spacing: -0.05em !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.requirement-section__container__content-wrapper .opening-paren-after {
  margin-left: 0.1em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.1em !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.requirement-section__container__content-wrapper .project-title {
  letter-spacing: 0;
  white-space: normal;
  display: block;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.requirement-section__container__content-wrapper a {
  color: inherit;
  text-decoration: none;
}
.requirement-section__container__content-wrapper a:hover {
  text-decoration: none;
}
.requirement-section__container__content-wrapper a:visited {
  color: inherit;
}
.requirement-section__container__content-wrapper .product-link {
  color: #024D9D !important;
  text-decoration: underline !important;
}
.requirement-section__container__content-wrapper .product-link:hover {
  text-decoration: underline !important;
}
.requirement-section__container__content-wrapper .product-link:visited {
  color: #024D9D !important;
}
.requirement-section__container__content-wrapper sub {
  font-size: 0.75em;
  vertical-align: sub;
  line-height: 0;
}
.requirement-section__container__content-wrapper .application-method-text {
  text-align: justify;
  text-justify: inter-character;
}
.requirement-section__container__content-wrapper table {
  width: 553px !important;
  border-collapse: collapse;
  margin: 0 auto 30px;
  margin-left: auto;
  margin-right: auto;
  table-layout: fixed;
  width: clamp(207px, 71.875vw, 621px);
}
.requirement-section__container__content-wrapper table th {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 19px;
  text-align: left;
  color: #024D9D;
  padding-top: 10px;
}
.requirement-section__container__content-wrapper table tr td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #333333;
  border-bottom: 1.5px solid #AFAFAF;
  padding: 10px 0 10px 0;
}
.requirement-section__container__content-wrapper table:nth-of-type(2) {
  width: 553px;
  border-collapse: collapse;
  margin: 30px auto;
}
.requirement-section__container__content-wrapper table:nth-of-type(2) th {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 19px;
  text-align: left;
  color: #024D9D;
}
.requirement-section__container__content-wrapper table:nth-of-type(2) tr td:first-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  color: #333333;
  border-bottom: 1.5px solid #AFAFAF;
  width: 175px;
}
.requirement-section__container__content-wrapper table:nth-of-type(2) tr td:last-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  color: #333333;
  border-bottom: 1.5px solid #AFAFAF;
  max-width: 316px;
}
.requirement-section__container__content-wrapper__table-3-header {
  width: 553px;
  margin: 30px auto 10px;
}
.requirement-section__container__content-wrapper__table-3-header span:nth-of-type(1) {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: #024D9D;
}
.requirement-section__container__content-wrapper__table-3-header span:nth-of-type(2) {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: #333333;
}
.requirement-section__container__content-wrapper table:nth-of-type(3) {
  width: 553px;
  margin: 0 auto 30px;
}
.requirement-section__container__content-wrapper table:nth-of-type(3) th:first-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #333333;
  width: 110px;
  height: 63px;
  background-color: rgba(0, 148, 218, 0.35);
  border-right: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(3) th:last-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #333333;
  height: 63px;
  background-color: rgba(0, 148, 218, 0.35);
  text-align: center;
}
.requirement-section__container__content-wrapper table:nth-of-type(3) tr td:first-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  width: 110px;
  background-color: #F3F3F3;
  text-align: center;
  border-right: 1px solid #ffffff;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(3) tr td:last-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #333333;
  background-color: #F3F3F3;
  border-bottom: none;
  padding: 20px;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) {
  width: 553px;
  margin: 30px auto;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:first-child td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:first-child td:first-child {
  width: 110px;
  text-align: center;
  border-right: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:first-child td:nth-child(2) {
  background-color: rgba(0, 148, 218, 0.35);
  border-right: 1px solid #ffffff;
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:first-child td:nth-child(3) {
  background-color: #F3F3F3;
  padding: 20px;
  text-align: left;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:nth-child(2) td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:nth-child(2) td:first-child {
  width: 110px;
  text-align: center;
  border-right: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
  border-top: 1px solid #ffffff;
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:nth-child(2) td:nth-child(2) {
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  padding: 20px;
  text-align: left;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:nth-child(3) td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:nth-child(3) td:first-child {
  width: 110px;
  text-align: center;
  border-right: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
  border-top: 1px solid #ffffff;
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(4) tr:nth-child(3) td:nth-child(2) {
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  padding: 20px;
  text-align: left;
}
.requirement-section__container__content-wrapper__paragraph-block {
  width: 553px;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.requirement-section__container__content-wrapper__paragraph-block span {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
}
.requirement-section__container__content-wrapper__paragraph-block p {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) {
  width: 553px;
  margin: 30px auto 1px;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) td {
  padding: 0 !important;
  font-weight: 400 !important;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:first-child td {
  font-weight: 700 !important;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) td:first-child {
  font-weight: 700 !important;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:first-child td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  text-align: center;
  vertical-align: middle;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:first-child td:first-child {
  width: 193px;
  height: 49px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:first-child td:nth-child(2) {
  width: 120px;
  height: 49px;
  background-color: rgba(0, 148, 218, 0.35);
  border-right: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:first-child td:nth-child(3) {
  width: 120px;
  height: 49px;
  background-color: rgba(0, 148, 218, 0.35);
  border-right: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:first-child td:nth-child(4) {
  width: 120px;
  height: 49px;
  background-color: rgba(0, 148, 218, 0.35);
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td:nth-child(2),
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td:nth-child(3),
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td:nth-child(4) {
  font-weight: 400 !important;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td:first-child {
  width: 193px;
  height: 49px;
  text-align: center;
  border-right: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
  border-top: 1px solid #ffffff;
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td:nth-child(2) {
  width: 120px;
  height: 49px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td:nth-child(3) {
  width: 120px;
  height: 49px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(5) tr:nth-child(2) td:nth-child(4) {
  width: 120px;
  height: 49px;
  background-color: #F3F3F3;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) {
  width: 553px;
  margin: 0 auto 30px;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:first-child td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:first-child td:first-child {
  width: 96.5px;
  height: 96px;
  text-align: center;
  border-right: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:first-child td:nth-child(2) {
  width: 96.5px;
  height: 96px;
  background-color: rgba(0, 148, 218, 0.35);
  border-right: 1px solid #ffffff;
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:first-child td:nth-child(3) {
  width: 120px;
  height: 96px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:first-child td:nth-child(4) {
  width: 120px;
  height: 96px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:first-child td:nth-child(5) {
  width: 120px;
  height: 96px;
  background-color: #F3F3F3;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(2) td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(2) td:first-child {
  width: 96.5px;
  height: 49px;
  text-align: center;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
  padding: 42px 0;
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(2) td:nth-child(2) {
  width: 120px;
  height: 49px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(2) td:nth-child(3) {
  width: 120px;
  height: 49px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(2) td:nth-child(4) {
  width: 120px;
  height: 49px;
  background-color: #F3F3F3;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(3) td {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: center;
  border-bottom: none;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(3) td:first-child {
  width: 96.5px;
  height: 96px;
  text-align: center;
  border-right: 1px solid #ffffff;
  background-color: rgba(0, 148, 218, 0.35);
  border-top: 1px solid #ffffff;
  font-weight: 700;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(3) td:nth-child(2) {
  width: 120px;
  height: 96px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(3) td:nth-child(3) {
  width: 120px;
  height: 96px;
  background-color: #F3F3F3;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper table:nth-of-type(6) tr:nth-child(3) td:nth-child(4) {
  width: 120px;
  height: 96px;
  background-color: #F3F3F3;
  border-top: 1px solid #ffffff;
}
.requirement-section__container__content-wrapper__paragraph-block-02 {
  width: 553px;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.requirement-section__container__content-wrapper__paragraph-block-02 span {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
}
.requirement-section__container__content-wrapper__paragraph-block-02 p {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.requirement-section__container__content-wrapper__paragraph-block-03 {
  width: 553px;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.requirement-section__container__content-wrapper__paragraph-block-03 span {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #024D9D;
}
.requirement-section__container__content-wrapper__paragraph-block-03 p {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.requirement-section__container__content-wrapper table:nth-of-type(7) {
  width: 553px;
  border-collapse: collapse;
  margin: 30px auto;
}
.requirement-section__container__content-wrapper table:nth-of-type(7) td {
  vertical-align: top !important;
}
.requirement-section__container__content-wrapper table:nth-of-type(7) th {
  padding: 26px 0;
}
.requirement-section__container__content-wrapper table:nth-of-type(7) tr:not(:first-child) td {
  padding-top: 12px;
}
.requirement-section__container__content-wrapper table:nth-of-type(7) th {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: #024D9D;
}
.requirement-section__container__content-wrapper table:nth-of-type(7) tr td:first-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #333333;
  border-bottom: 1.5px solid #AFAFAF;
  width: 245px;
}
.requirement-section__container__content-wrapper table:nth-of-type(7) tr td:last-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #333333;
  border-bottom: 1.5px solid #AFAFAF;
}
.requirement-section__container__content-wrapper__table-8-header {
  width: 553px;
  margin: 30px auto 10px;
}
.requirement-section__container__content-wrapper__table-8-header span:nth-of-type(1) {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: #024D9D;
}
.requirement-section__container__content-wrapper__table-8-header span:nth-of-type(2) {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #333333;
}
.requirement-section__container__content-wrapper table:nth-of-type(8) {
  width: 553px;
  border-collapse: collapse;
  margin: 0 auto 30px;
}
.requirement-section__container__content-wrapper table:nth-of-type(8) td {
  vertical-align: top !important;
}
.requirement-section__container__content-wrapper table:nth-of-type(8) th {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: #024D9D;
  padding: 26px 0;
}
.requirement-section__container__content-wrapper table:nth-of-type(8) tr:not(:first-child) td {
  padding-top: 12px;
}
.requirement-section__container__content-wrapper table:nth-of-type(8) th {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: #024D9D;
}
.requirement-section__container__content-wrapper table:nth-of-type(8) tr td:first-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #333333;
  border-bottom: 1.5px solid #AFAFAF;
  width: 245px;
}
.requirement-section__container__content-wrapper table:nth-of-type(8) tr td:last-child {
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #333333;
  border-bottom: 1.5px solid #AFAFAF;
}
.requirement-section__container__footer {
  width: 768px;
  margin: 30px auto 0;
  font-weight: 600;
  text-align: center;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  color: #ffffff;
  -webkit-text-size-adjust: none !important;
  -moz-text-size-adjust: none !important;
  -ms-text-size-adjust: none !important;
  text-size-adjust: none !important;
}

.application-completed {
  width: 100%;
  position: relative;
  overflow: visible;
  min-height: 100vh;
}
.application-completed__container {
  max-width: 768px;
  height: auto;
  margin: 0 auto;
  padding: 50px 0 100px 0;
  margin-top: 90px;
  background-color: rgba(0, 0, 0, 0.77);
}
@media (max-width: 767px) {
  .application-completed__container {
    width: 100%;
    padding: clamp(18px, 6.25vw, 54px) clamp(12px, 4.1666666667vw, 36px) clamp(36px, 12.5vw, 108px) clamp(12px, 4.1666666667vw, 36px);
    margin-top: clamp(36px, 12.5vw, 108px);
  }
}
.application-completed__container span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 679px;
  height: auto;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 46px;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .application-completed__container span {
    width: 100%;
    font-size: clamp(16.8px, 5.8333333333vw, 50.4px);
    padding: 0 clamp(6px, 2.0833333333vw, 18px);
  }
}
.application-completed__container p {
  width: 679px;
  font-family: "Noto Sans JP", "Yu Gothic Pr6N", "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  padding-top: 50px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .application-completed__container p {
    width: 100%;
    font-size: clamp(9.6px, 3.3333333333vw, 28.8px);
    padding: clamp(18px, 6.25vw, 54px) clamp(6px, 2.0833333333vw, 18px) 0 clamp(6px, 2.0833333333vw, 18px);
    line-height: 1.7;
  }
}
.application-completed__container p a {
  color: #ffffff;
  text-decoration: underline;
}
.application-completed__container p a:hover, .application-completed__container p a:focus, .application-completed__container p a:visited {
  color: #ffffff;
  text-decoration: underline;
}

.header-completed {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}
.header-completed__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  padding: 0 28px;
  background-color: #ffffff;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .header-completed__container {
    height: clamp(36px, 12.5vw, 108px);
    padding: 0 clamp(9px, 3.125vw, 27px);
    max-width: 100%;
  }
}
.header-completed__container__logo-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-completed__container__logo-left img {
  width: 350px;
  height: auto;
  max-width: none;
}
@media (max-width: 767px) {
  .header-completed__container__logo-left img {
    width: clamp(120px, 41.6666666667vw, 360px);
    max-width: 60%;
  }
}
@media (max-width: 480px) {
  .header-completed__container__logo-left img {
    width: clamp(96px, 33.3333333333vw, 288px);
    max-width: 50%;
  }
}
.header-completed__container__logo-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-completed__container__logo-right img {
  width: 220px;
  height: auto;
  max-width: none;
}
@media (max-width: 767px) {
  .header-completed__container__logo-right img {
    width: clamp(120px, 41.6666666667vw, 360px);
    max-width: 40%;
  }
}
@media (max-width: 360px) {
  .header-completed__container {
    padding: 0 clamp(6px, 2.0833333333vw, 18px);
  }
  .header-completed__container__logo-left img {
    width: clamp(84px, 29.1666666667vw, 252px);
    max-width: 45%;
  }
  .header-completed__container__logo-right img {
    width: clamp(66px, 22.9166666667vw, 198px);
    max-width: 30%;
  }
}

.opening-paren {
  margin-left: -0.5em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.2em !important;
}

.closing-paren {
  margin-left: 0.1em !important;
  margin-right: -0.35em !important;
  letter-spacing: -0.15em !important;
}

.closing-paren-period {
  margin-left: 0.1em !important;
  margin-right: -0.1em !important;
  letter-spacing: -0.05em !important;
}

.closing-paren-opening {
  margin-left: 0.1em !important;
  margin-right: -0.1em !important;
  letter-spacing: -0.05em !important;
}

.opening-paren-after {
  margin-left: 0.1em !important;
  margin-right: 0.25em !important;
  letter-spacing: -0.1em !important;
}

.opening-bracket {
  margin-left: -0.1em !important;
  margin-right: 0.1em !important;
}

.closing-bracket {
  margin-left: 0.1em !important;
  margin-right: -0.3em !important;
}

.comma {
  margin-right: -0.5em !important;
}
/*# sourceMappingURL=style.css.map */
