@charset "UTF-8";
@media screen and (min-width: 375px) {
  /* xs-size */
}
@media screen and (min-width: 768px) {
  /* s-size */
}
@media screen and (min-width: 992px) {
  /* m-size */
}
@media screen and (min-width: 1200px) {
  /* l-size */
}
@media screen and (min-width: 1400px) {
  /* xl-size */
}
/* グローバルリセット */
*,
*::before,
*::after {
  box-sizing: border-box; /* ボックスモデルをボーダーとパディングを含むように設定 */
}

* {
  margin: 0; /* 全ての要素のデフォルトのマージンを削除 */
  padding: 0; /* 全ての要素のデフォルトのパディングを削除 */
}

/* デフォルトのフォント設定 */
body {
  overflow-wrap: break-word; /* 単語が幅を超えた場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 日本語の禁則処理を厳格に適用 */
  -webkit-text-size-adjust: 100%; /* モバイルデバイスでのテキストサイズ調整を無効化 */
  -webkit-font-smoothing: antialiased; /* テキストのスムージングを有効化 */
}

/* リストのリセット */
ul,
ol {
  list-style: none; /* デフォルトのリストマーカーを削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  margin: 0; /* デフォルトのマージンを削除 */
}

/* リンクのリセット */
a {
  text-decoration: none; /* デフォルトの下線を削除 */
  color: inherit; /* 親要素の色を継承 */
}

/* フォーム要素のリセット */
input,
button,
textarea,
select {
  font: inherit; /* フォントスタイルを親要素から継承 */
  color: inherit; /* フォントカラーを親要素から継承 */
  border: none; /* デフォルトのボーダーを削除 */
  background: none; /* デフォルトの背景を削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  margin: 0; /* デフォルトのマージンを削除 */
}

/* ボタン要素のリセット */
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 標準のボタンスタイルを削除 */
  background: none; /* デフォルトの背景を削除 */
  border: none; /* デフォルトのボーダーを削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  margin: 0; /* デフォルトのマージンを削除 */
  cursor: pointer; /* カーソルをポインタに変更 */
}

/* モバイルデバイス特有のリセット */
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 標準のチェックボックスやラジオボタンのスタイルを削除 */
}

button,
a {
  touch-action: manipulation; /* タップやスクロールの動作を改善 */
}

/* メディア要素のリセット */
img,
picture,
video,
canvas,
svg {
  display: block; /* ブロック要素として扱い、余白を除去 */
  max-width: 100%; /* 親要素の幅に収まるように設定 */
  height: auto; /* 元のアスペクト比を保つ */
}

/* テーブルのリセット */
table {
  border-collapse: collapse; /* テーブルの境界線を統合 */
  border-spacing: 0; /* セル間のスペースを削除 */
}

th,
td {
  padding: 0; /* セルのデフォルトのパディングを削除 */
  border: 0; /* デフォルトのボーダーを削除 */
}

/* 見出しのリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; /* デフォルトのマージンを削除 */
  font-size: inherit; /* フォントサイズを親要素から継承 */
}

sup {
  font-size: 0.813em;
  font-weight: 400;
}

/* スクロールとタップのリセット */
html,
body {
  overscroll-behavior: none; /* スクロールのオーバースクロール挙動を無効化 */
}

:root {
  --vh: 100vh;
  --vh: 100svh;
  /* 色関連 */
  --color-primary: #002F76;
  --color-secondary: #c3ddf2;
  --color-accent: #ea5504;
  --color-text: #404040;
  --color-border: #d4d1d1;
  --color-black: #404040;
  --color-white: #fff;
  --color-link: #0072cf;
  --color-red: #d51919;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-inter: "Inter", sans-serif;
  /* トランジションとアニメーション */
  --transition-duration-default: 0.3s;
  --transition-easing-default: ease-out;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  z-index: 1;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  min-height: var(--vh);
  -webkit-font-smoothing: antialiased;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
body.is_noScroll {
  overflow: hidden;
}
body.is_stopTransition *:not(.swiper-wrapper) {
  transition: none !important;
}

/* SP・PCの切り替え */
@media screen and (min-width: 768px) {
  .hp_spOnly {
    display: none !important;
  }
}

.hp_pcOnly {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hp_pcOnly {
    display: block !important;
  }
}

/* font-weight */
.hp_fw900 {
  font-weight: 900 !important;
}

.hp_fw700 {
  font-weight: 700 !important;
}

.hp_fw600 {
  font-weight: 600 !important;
}

.hp_fw500 {
  font-weight: 500 !important;
}

.hp_fw400 {
  font-weight: 400 !important;
}

/* text-align */
.hp_tal {
  text-align: left !important;
}

.hp_tac {
  text-align: center !important;
}

.hp_tar {
  text-align: right !important;
}

/* font-size */
.hp_fsz10 {
  font-size: 1rem !important;
}

.hp_fsz11 {
  font-size: 1.1rem !important;
}

.hp_fsz12 {
  font-size: 1.2rem !important;
}

.hp_fsz13 {
  font-size: 1.3rem !important;
}

.hp_fsz14 {
  font-size: 1.4rem !important;
}

.hp_fsz15 {
  font-size: 1.5rem !important;
}

.hp_fsz16 {
  font-size: 1.6rem !important;
}

.hp_fsz17 {
  font-size: 1.7rem !important;
}

.hp_fsz18 {
  font-size: 1.8rem !important;
}

.hp_fsz19 {
  font-size: 1.9rem !important;
}

.hp_fsz20 {
  font-size: 2rem !important;
}

.hp_fsz21 {
  font-size: 2.1rem !important;
}

.hp_fsz22 {
  font-size: 2.2rem !important;
}

.hp_fsz23 {
  font-size: 2.3rem !important;
}

.hp_fsz24 {
  font-size: 2.4rem !important;
}

.hp_fsz25 {
  font-size: 2.5rem !important;
}

.hp_fsz26 {
  font-size: 2.6rem !important;
}

.hp_fsz27 {
  font-size: 2.7rem !important;
}

.hp_fsz28 {
  font-size: 2.8rem !important;
}

.hp_fsz29 {
  font-size: 2.9rem !important;
}

.hp_fsz30 {
  font-size: 3rem !important;
}

/* block */
.hp_d_block {
  display: block !important;
}

.hp_d_inline-block {
  display: inline-block !important;
}

.hp_d_inline {
  display: inline !important;
}

/* flex */
.hp_d_flex {
  display: flex !important;
}

.hp_d_inline-flex {
  display: inline-flex !important;
}

/* flex | align-items */
.hp_ai_start {
  align-items: flex-start !important;
}

.hp_ai_center {
  align-items: center !important;
}

.hp_ai_end {
  align-items: flex-end !important;
}

/* flex | justify-content */
.hp_jc_start {
  justify-content: flex-start !important;
}

.hp_jc_center {
  justify-content: center !important;
}

.hp_jc_end {
  justify-content: flex-end !important;
}

.hp_jc_between {
  justify-content: space-between !important;
}

.hp_jc_around {
  justify-content: space-around !important;
}

/* flex | flex-direction */
.hp_fd_row {
  flex-direction: row !important;
}

.hp_fd_column {
  flex-direction: column !important;
}

/* flex | flex: 1 */
.hp_f_1 {
  flex: 1 !important;
}

/* flex | flex: 0 0 auto */
.hp_no_shrink {
  flex: 0 0 auto !important;
}

/* flex | flex-wrap */
.hp_fw_wrap {
  flex-wrap: wrap !important;
}

.hp_fw_nowrap {
  flex-wrap: nowrap !important;
}

/* flex or grid | gap （4の倍数） */
.hp_gap0 {
  gap: 0px !important;
}

.hp_gap4 {
  gap: 4px !important;
}

.hp_gap8 {
  gap: 8px !important;
}

.hp_gap12 {
  gap: 12px !important;
}

.hp_gap16 {
  gap: 16px !important;
}

.hp_gap20 {
  gap: 20px !important;
}

.hp_gap24 {
  gap: 24px !important;
}

.hp_gap28 {
  gap: 28px !important;
}

.hp_gap32 {
  gap: 32px !important;
}

.hp_gap36 {
  gap: 36px !important;
}

.hp_gap40 {
  gap: 40px !important;
}

.hp_gap44 {
  gap: 44px !important;
}

.hp_gap48 {
  gap: 48px !important;
}

.hp_gap52 {
  gap: 52px !important;
}

.hp_gap56 {
  gap: 56px !important;
}

.hp_gap60 {
  gap: 60px !important;
}

/* flex or grid | column-gap （4の倍数） */
.hp_gap_c0 {
  -moz-column-gap: 0px !important;
       column-gap: 0px !important;
}

.hp_gap_c4 {
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.hp_gap_c8 {
  -moz-column-gap: 8px !important;
       column-gap: 8px !important;
}

.hp_gap_c12 {
  -moz-column-gap: 12px !important;
       column-gap: 12px !important;
}

.hp_gap_c16 {
  -moz-column-gap: 16px !important;
       column-gap: 16px !important;
}

.hp_gap_c20 {
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.hp_gap_c24 {
  -moz-column-gap: 24px !important;
       column-gap: 24px !important;
}

.hp_gap_c28 {
  -moz-column-gap: 28px !important;
       column-gap: 28px !important;
}

.hp_gap_c32 {
  -moz-column-gap: 32px !important;
       column-gap: 32px !important;
}

.hp_gap_c36 {
  -moz-column-gap: 36px !important;
       column-gap: 36px !important;
}

.hp_gap_c40 {
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.hp_gap_c44 {
  -moz-column-gap: 44px !important;
       column-gap: 44px !important;
}

.hp_gap_c48 {
  -moz-column-gap: 48px !important;
       column-gap: 48px !important;
}

.hp_gap_c52 {
  -moz-column-gap: 52px !important;
       column-gap: 52px !important;
}

.hp_gap_c56 {
  -moz-column-gap: 56px !important;
       column-gap: 56px !important;
}

.hp_gap_c60 {
  -moz-column-gap: 60px !important;
       column-gap: 60px !important;
}

/* flex or grid | row-gap （4の倍数） */
.hp_gap_r0 {
  row-gap: 0px !important;
}

.hp_gap_r4 {
  row-gap: 4px !important;
}

.hp_gap_r8 {
  row-gap: 8px !important;
}

.hp_gap_r12 {
  row-gap: 12px !important;
}

.hp_gap_r16 {
  row-gap: 16px !important;
}

.hp_gap_r20 {
  row-gap: 20px !important;
}

.hp_gap_r24 {
  row-gap: 24px !important;
}

.hp_gap_r28 {
  row-gap: 28px !important;
}

.hp_gap_r32 {
  row-gap: 32px !important;
}

.hp_gap_r36 {
  row-gap: 36px !important;
}

.hp_gap_r40 {
  row-gap: 40px !important;
}

.hp_gap_r44 {
  row-gap: 44px !important;
}

.hp_gap_r48 {
  row-gap: 48px !important;
}

.hp_gap_r52 {
  row-gap: 52px !important;
}

.hp_gap_r56 {
  row-gap: 56px !important;
}

.hp_gap_r60 {
  row-gap: 60px !important;
}

/* width（%）（5の倍数） */
.hp_w05 {
  width: 5% !important;
}

.hp_w10 {
  width: 10% !important;
}

.hp_w15 {
  width: 15% !important;
}

.hp_w20 {
  width: 20% !important;
}

.hp_w25 {
  width: 25% !important;
}

.hp_w30 {
  width: 30% !important;
}

.hp_w35 {
  width: 35% !important;
}

.hp_w40 {
  width: 40% !important;
}

.hp_w45 {
  width: 45% !important;
}

.hp_w50 {
  width: 50% !important;
}

.hp_w55 {
  width: 55% !important;
}

.hp_w60 {
  width: 60% !important;
}

.hp_w65 {
  width: 65% !important;
}

.hp_w70 {
  width: 70% !important;
}

.hp_w75 {
  width: 75% !important;
}

.hp_w80 {
  width: 80% !important;
}

.hp_w85 {
  width: 85% !important;
}

.hp_w90 {
  width: 90% !important;
}

.hp_w95 {
  width: 95% !important;
}

.hp_w100 {
  width: 100% !important;
}

/* 余白は4の倍数 */
/* padding (top + right + bottom + left) */
.hp_pd0 {
  padding: 0px !important;
}

.hp_pd4 {
  padding: 4px !important;
}

.hp_pd8 {
  padding: 8px !important;
}

.hp_pd12 {
  padding: 12px !important;
}

.hp_pd16 {
  padding: 16px !important;
}

.hp_pd20 {
  padding: 20px !important;
}

.hp_pd24 {
  padding: 24px !important;
}

.hp_pd28 {
  padding: 28px !important;
}

.hp_pd32 {
  padding: 32px !important;
}

.hp_pd36 {
  padding: 36px !important;
}

.hp_pd40 {
  padding: 40px !important;
}

.hp_pd44 {
  padding: 44px !important;
}

.hp_pd48 {
  padding: 48px !important;
}

.hp_pd52 {
  padding: 52px !important;
}

.hp_pd56 {
  padding: 56px !important;
}

.hp_pd60 {
  padding: 60px !important;
}

.hp_pd64 {
  padding: 64px !important;
}

.hp_pd68 {
  padding: 68px !important;
}

.hp_pd72 {
  padding: 72px !important;
}

.hp_pd76 {
  padding: 76px !important;
}

.hp_pd80 {
  padding: 80px !important;
}

/* padding (top + bottom) */
.hp_pdtb0 {
  padding-block: 0 !important;
}

.hp_pdtb4 {
  padding-block: 4px !important;
}

.hp_pdtb8 {
  padding-block: 8px !important;
}

.hp_pdtb12 {
  padding-block: 12px !important;
}

.hp_pdtb16 {
  padding-block: 16px !important;
}

.hp_pdtb20 {
  padding-block: 20px !important;
}

.hp_pdtb24 {
  padding-block: 24px !important;
}

.hp_pdtb28 {
  padding-block: 28px !important;
}

.hp_pdtb32 {
  padding-block: 32px !important;
}

.hp_pdtb36 {
  padding-block: 36px !important;
}

.hp_pdtb40 {
  padding-block: 40px !important;
}

.hp_pdtb44 {
  padding-block: 44px !important;
}

.hp_pdtb48 {
  padding-block: 48px !important;
}

.hp_pdtb52 {
  padding-block: 52px !important;
}

.hp_pdtb56 {
  padding-block: 56px !important;
}

.hp_pdtb60 {
  padding-block: 60px !important;
}

.hp_pdtb64 {
  padding-block: 64px !important;
}

.hp_pdtb68 {
  padding-block: 68px !important;
}

.hp_pdtb72 {
  padding-block: 72px !important;
}

.hp_pdtb76 {
  padding-block: 76px !important;
}

.hp_pdtb80 {
  padding-block: 80px !important;
}

/* padding (right + left) */
.hp_pdrl0 {
  padding-inline: 0 !important;
}

.hp_pdrl4 {
  padding-inline: 4px !important;
}

.hp_pdrl8 {
  padding-inline: 8px !important;
}

.hp_pdrl12 {
  padding-inline: 12px !important;
}

.hp_pdrl16 {
  padding-inline: 16px !important;
}

.hp_pdrl20 {
  padding-inline: 20px !important;
}

.hp_pdrl24 {
  padding-inline: 24px !important;
}

.hp_pdrl28 {
  padding-inline: 28px !important;
}

.hp_pdrl32 {
  padding-inline: 32px !important;
}

.hp_pdrl36 {
  padding-inline: 36px !important;
}

.hp_pdrl40 {
  padding-inline: 40px !important;
}

.hp_pdrl44 {
  padding-inline: 44px !important;
}

.hp_pdrl48 {
  padding-inline: 48px !important;
}

.hp_pdrl52 {
  padding-inline: 52px !important;
}

.hp_pdrl56 {
  padding-inline: 56px !important;
}

.hp_pdrl60 {
  padding-inline: 60px !important;
}

.hp_pdrl64 {
  padding-inline: 64px !important;
}

.hp_pdrl68 {
  padding-inline: 68px !important;
}

.hp_pdrl72 {
  padding-inline: 72px !important;
}

.hp_pdrl76 {
  padding-inline: 76px !important;
}

.hp_pdrl80 {
  padding-inline: 80px !important;
}

/* padding (top) */
.hp_pdt0 {
  padding-top: 0 !important;
}

.hp_pdt4 {
  padding-top: 4px !important;
}

.hp_pdt8 {
  padding-top: 8px !important;
}

.hp_pdt12 {
  padding-top: 12px !important;
}

.hp_pdt16 {
  padding-top: 16px !important;
}

.hp_pdt20 {
  padding-top: 20px !important;
}

.hp_pdt24 {
  padding-top: 24px !important;
}

.hp_pdt28 {
  padding-top: 28px !important;
}

.hp_pdt32 {
  padding-top: 32px !important;
}

.hp_pdt36 {
  padding-top: 36px !important;
}

.hp_pdt40 {
  padding-top: 40px !important;
}

.hp_pdt44 {
  padding-top: 44px !important;
}

.hp_pdt48 {
  padding-top: 48px !important;
}

.hp_pdt52 {
  padding-top: 52px !important;
}

.hp_pdt56 {
  padding-top: 56px !important;
}

.hp_pdt60 {
  padding-top: 60px !important;
}

.hp_pdt64 {
  padding-top: 64px !important;
}

.hp_pdt68 {
  padding-top: 68px !important;
}

.hp_pdt72 {
  padding-top: 72px !important;
}

.hp_pdt76 {
  padding-top: 76px !important;
}

.hp_pdt80 {
  padding-top: 80px !important;
}

/* padding (right) */
.hp_pdr0 {
  padding-right: 0 !important;
}

.hp_pdr4 {
  padding-right: 4px !important;
}

.hp_pdr8 {
  padding-right: 8px !important;
}

.hp_pdr12 {
  padding-right: 12px !important;
}

.hp_pdr16 {
  padding-right: 16px !important;
}

.hp_pdr20 {
  padding-right: 20px !important;
}

.hp_pdr24 {
  padding-right: 24px !important;
}

.hp_pdr28 {
  padding-right: 28px !important;
}

.hp_pdr32 {
  padding-right: 32px !important;
}

.hp_pdr36 {
  padding-right: 36px !important;
}

.hp_pdr40 {
  padding-right: 40px !important;
}

.hp_pdr44 {
  padding-right: 44px !important;
}

.hp_pdr48 {
  padding-right: 48px !important;
}

.hp_pdr52 {
  padding-right: 52px !important;
}

.hp_pdr56 {
  padding-right: 56px !important;
}

.hp_pdr60 {
  padding-right: 60px !important;
}

.hp_pdr64 {
  padding-right: 64px !important;
}

.hp_pdr68 {
  padding-right: 68px !important;
}

.hp_pdr72 {
  padding-right: 72px !important;
}

.hp_pdr76 {
  padding-right: 76px !important;
}

.hp_pdr80 {
  padding-right: 80px !important;
}

/* padding (bottom) */
.hp_pdb0 {
  padding-bottom: 0 !important;
}

.hp_pdb4 {
  padding-bottom: 4px !important;
}

.hp_pdb8 {
  padding-bottom: 8px !important;
}

.hp_pdb12 {
  padding-bottom: 12px !important;
}

.hp_pdb16 {
  padding-bottom: 16px !important;
}

.hp_pdb20 {
  padding-bottom: 20px !important;
}

.hp_pdb24 {
  padding-bottom: 24px !important;
}

.hp_pdb28 {
  padding-bottom: 28px !important;
}

.hp_pdb32 {
  padding-bottom: 32px !important;
}

.hp_pdb36 {
  padding-bottom: 36px !important;
}

.hp_pdb40 {
  padding-bottom: 40px !important;
}

.hp_pdb44 {
  padding-bottom: 44px !important;
}

.hp_pdb48 {
  padding-bottom: 48px !important;
}

.hp_pdb52 {
  padding-bottom: 52px !important;
}

.hp_pdb56 {
  padding-bottom: 56px !important;
}

.hp_pdb60 {
  padding-bottom: 60px !important;
}

.hp_pdb64 {
  padding-bottom: 64px !important;
}

.hp_pdb68 {
  padding-bottom: 68px !important;
}

.hp_pdb72 {
  padding-bottom: 72px !important;
}

.hp_pdb76 {
  padding-bottom: 76px !important;
}

.hp_pdb80 {
  padding-bottom: 80px !important;
}

/* padding (left) */
.hp_pdl0 {
  padding-left: 0 !important;
}

.hp_pdl4 {
  padding-left: 4px !important;
}

.hp_pdl8 {
  padding-left: 8px !important;
}

.hp_pdl12 {
  padding-left: 12px !important;
}

.hp_pdl16 {
  padding-left: 16px !important;
}

.hp_pdl20 {
  padding-left: 20px !important;
}

.hp_pdl24 {
  padding-left: 24px !important;
}

.hp_pdl28 {
  padding-left: 28px !important;
}

.hp_pdl32 {
  padding-left: 32px !important;
}

.hp_pdl36 {
  padding-left: 36px !important;
}

.hp_pdl40 {
  padding-left: 40px !important;
}

.hp_pdl44 {
  padding-left: 44px !important;
}

.hp_pdl48 {
  padding-left: 48px !important;
}

.hp_pdl52 {
  padding-left: 52px !important;
}

.hp_pdl56 {
  padding-left: 56px !important;
}

.hp_pdl60 {
  padding-left: 60px !important;
}

.hp_pdl64 {
  padding-left: 64px !important;
}

.hp_pdl68 {
  padding-left: 68px !important;
}

.hp_pdl72 {
  padding-left: 72px !important;
}

.hp_pdl76 {
  padding-left: 76px !important;
}

.hp_pdl80 {
  padding-left: 80px !important;
}

/* margin (top + right + bottom + left) */
.hp_mg0 {
  margin: 0 !important;
}

.hp_mg4 {
  margin: 4px !important;
}

.hp_mg8 {
  margin: 8px !important;
}

.hp_mg12 {
  margin: 12px !important;
}

.hp_mg16 {
  margin: 16px !important;
}

.hp_mg20 {
  margin: 20px !important;
}

.hp_mg24 {
  margin: 24px !important;
}

.hp_mg28 {
  margin: 28px !important;
}

.hp_mg32 {
  margin: 32px !important;
}

.hp_mg36 {
  margin: 36px !important;
}

.hp_mg40 {
  margin: 40px !important;
}

.hp_mg44 {
  margin: 44px !important;
}

.hp_mg48 {
  margin: 48px !important;
}

.hp_mg52 {
  margin: 52px !important;
}

.hp_mg56 {
  margin: 56px !important;
}

.hp_mg60 {
  margin: 60px !important;
}

.hp_mg64 {
  margin: 64px !important;
}

.hp_mg68 {
  margin: 68px !important;
}

.hp_mg72 {
  margin: 72px !important;
}

.hp_mg76 {
  margin: 76px !important;
}

.hp_mg80 {
  margin: 80px !important;
}

/* margin (top + bottom) */
.hp_mgtb0 {
  margin-block: 0 !important;
}

.hp_mgtb4 {
  margin-block: 4px !important;
}

.hp_mgtb8 {
  margin-block: 8px !important;
}

.hp_mgtb12 {
  margin-block: 12px !important;
}

.hp_mgtb16 {
  margin-block: 16px !important;
}

.hp_mgtb20 {
  margin-block: 20px !important;
}

.hp_mgtb24 {
  margin-block: 24px !important;
}

.hp_mgtb28 {
  margin-block: 28px !important;
}

.hp_mgtb32 {
  margin-block: 32px !important;
}

.hp_mgtb36 {
  margin-block: 36px !important;
}

.hp_mgtb40 {
  margin-block: 40px !important;
}

.hp_mgtb44 {
  margin-block: 44px !important;
}

.hp_mgtb48 {
  margin-block: 48px !important;
}

.hp_mgtb52 {
  margin-block: 52px !important;
}

.hp_mgtb56 {
  margin-block: 56px !important;
}

.hp_mgtb60 {
  margin-block: 60px !important;
}

.hp_mgtb64 {
  margin-block: 64px !important;
}

.hp_mgtb68 {
  margin-block: 68px !important;
}

.hp_mgtb72 {
  margin-block: 72px !important;
}

.hp_mgtb76 {
  margin-block: 76px !important;
}

.hp_mgtb80 {
  margin-block: 80px !important;
}

/* margin (left + right) */
.hp_mgrl0 {
  margin-inline: 0 !important;
}

.hp_mgrl4 {
  margin-inline: 4px !important;
}

.hp_mgrl8 {
  margin-inline: 8px !important;
}

.hp_mgrl12 {
  margin-inline: 12px !important;
}

.hp_mgrl16 {
  margin-inline: 16px !important;
}

.hp_mgrl20 {
  margin-inline: 20px !important;
}

.hp_mgrl24 {
  margin-inline: 24px !important;
}

.hp_mgrl28 {
  margin-inline: 28px !important;
}

.hp_mgrl32 {
  margin-inline: 32px !important;
}

.hp_mgrl36 {
  margin-inline: 36px !important;
}

.hp_mgrl40 {
  margin-inline: 40px !important;
}

.hp_mgrl44 {
  margin-inline: 44px !important;
}

.hp_mgrl48 {
  margin-inline: 48px !important;
}

.hp_mgrl52 {
  margin-inline: 52px !important;
}

.hp_mgrl56 {
  margin-inline: 56px !important;
}

.hp_mgrl60 {
  margin-inline: 60px !important;
}

.hp_mgrl64 {
  margin-inline: 64px !important;
}

.hp_mgrl68 {
  margin-inline: 68px !important;
}

.hp_mgrl72 {
  margin-inline: 72px !important;
}

.hp_mgrl76 {
  margin-inline: 76px !important;
}

.hp_mgrl80 {
  margin-inline: 80px !important;
}

/* margin (top) */
.hp_mgt0 {
  margin-top: 0 !important;
}

.hp_mgt4 {
  margin-top: 4px !important;
}

.hp_mgt8 {
  margin-top: 8px !important;
}

.hp_mgt12 {
  margin-top: 12px !important;
}

.hp_mgt16 {
  margin-top: 16px !important;
}

.hp_mgt20 {
  margin-top: 20px !important;
}

.hp_mgt24 {
  margin-top: 24px !important;
}

.hp_mgt28 {
  margin-top: 28px !important;
}

.hp_mgt32 {
  margin-top: 32px !important;
}

.hp_mgt36 {
  margin-top: 36px !important;
}

.hp_mgt40 {
  margin-top: 40px !important;
}

.hp_mgt44 {
  margin-top: 44px !important;
}

.hp_mgt48 {
  margin-top: 48px !important;
}

.hp_mgt52 {
  margin-top: 52px !important;
}

.hp_mgt56 {
  margin-top: 56px !important;
}

.hp_mgt60 {
  margin-top: 60px !important;
}

.hp_mgt64 {
  margin-top: 64px !important;
}

.hp_mgt68 {
  margin-top: 68px !important;
}

.hp_mgt72 {
  margin-top: 72px !important;
}

.hp_mgt76 {
  margin-top: 76px !important;
}

.hp_mgt80 {
  margin-top: 80px !important;
}

/* margin (right) */
.hp_mgr0 {
  margin-right: 0 !important;
}

.hp_mgr4 {
  margin-right: 4px !important;
}

.hp_mgr8 {
  margin-right: 8px !important;
}

.hp_mgr12 {
  margin-right: 12px !important;
}

.hp_mgr16 {
  margin-right: 16px !important;
}

.hp_mgr20 {
  margin-right: 20px !important;
}

.hp_mgr24 {
  margin-right: 24px !important;
}

.hp_mgr28 {
  margin-right: 28px !important;
}

.hp_mgr32 {
  margin-right: 32px !important;
}

.hp_mgr36 {
  margin-right: 36px !important;
}

.hp_mgr40 {
  margin-right: 40px !important;
}

.hp_mgr44 {
  margin-right: 44px !important;
}

.hp_mgr48 {
  margin-right: 48px !important;
}

.hp_mgr52 {
  margin-right: 52px !important;
}

.hp_mgr56 {
  margin-right: 56px !important;
}

.hp_mgr60 {
  margin-right: 60px !important;
}

.hp_mgr64 {
  margin-right: 64px !important;
}

.hp_mgr68 {
  margin-right: 68px !important;
}

.hp_mgr72 {
  margin-right: 72px !important;
}

.hp_mgr76 {
  margin-right: 76px !important;
}

.hp_mgr80 {
  margin-right: 80px !important;
}

/* margin (bottom) */
.hp_mgb0 {
  margin-bottom: 0 !important;
}

.hp_mgb4 {
  margin-bottom: 4px !important;
}

.hp_mgb8 {
  margin-bottom: 8px !important;
}

.hp_mgb12 {
  margin-bottom: 12px !important;
}

.hp_mgb16 {
  margin-bottom: 16px !important;
}

.hp_mgb20 {
  margin-bottom: 20px !important;
}

.hp_mgb24 {
  margin-bottom: 24px !important;
}

.hp_mgb28 {
  margin-bottom: 28px !important;
}

.hp_mgb32 {
  margin-bottom: 32px !important;
}

.hp_mgb36 {
  margin-bottom: 36px !important;
}

.hp_mgb40 {
  margin-bottom: 40px !important;
}

.hp_mgb44 {
  margin-bottom: 44px !important;
}

.hp_mgb48 {
  margin-bottom: 48px !important;
}

.hp_mgb52 {
  margin-bottom: 52px !important;
}

.hp_mgb56 {
  margin-bottom: 56px !important;
}

.hp_mgb60 {
  margin-bottom: 60px !important;
}

.hp_mgb64 {
  margin-bottom: 64px !important;
}

.hp_mgb68 {
  margin-bottom: 68px !important;
}

.hp_mgb72 {
  margin-bottom: 72px !important;
}

.hp_mgb76 {
  margin-bottom: 76px !important;
}

.hp_mgb80 {
  margin-bottom: 80px !important;
}

/* margin (left) */
.hp_mgl0 {
  margin-left: 0 !important;
}

.hp_mgl4 {
  margin-left: 4px !important;
}

.hp_mgl8 {
  margin-left: 8px !important;
}

.hp_mgl12 {
  margin-left: 12px !important;
}

.hp_mgl16 {
  margin-left: 16px !important;
}

.hp_mgl20 {
  margin-left: 20px !important;
}

.hp_mgl24 {
  margin-left: 24px !important;
}

.hp_mgl28 {
  margin-left: 28px !important;
}

.hp_mgl32 {
  margin-left: 32px !important;
}

.hp_mgl36 {
  margin-left: 36px !important;
}

.hp_mgl40 {
  margin-left: 40px !important;
}

.hp_mgl44 {
  margin-left: 44px !important;
}

.hp_mgl48 {
  margin-left: 48px !important;
}

.hp_mgl52 {
  margin-left: 52px !important;
}

.hp_mgl56 {
  margin-left: 56px !important;
}

.hp_mgl60 {
  margin-left: 60px !important;
}

.hp_mgl64 {
  margin-left: 64px !important;
}

.hp_mgl68 {
  margin-left: 68px !important;
}

.hp_mgl72 {
  margin-left: 72px !important;
}

.hp_mgl76 {
  margin-left: 76px !important;
}

.hp_mgl80 {
  margin-left: 80px !important;
}

/* other */
.hp_red {
  color: var(--red) !important;
}

/* tel */
.hp_telRestricted[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media (hover: none) and (pointer: coarse) {
  .hp_telRestricted[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.ly_container {
  height: 100%;
  min-height: var(--vh);
  display: flex;
  flex-direction: column;
}

.ly_main {
  position: relative;
}

.ly_mainHead {
  position: relative;
  width: 100%;
  height: 253px;
  display: grid;
  place-items: center;
  background-image: url("../image/mv-bg-sp.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .ly_mainHead {
    min-height: 331px;
    height: 22.9861111vw;
    padding-bottom: max(165px, 11.4583333vw);
    background-image: url("../image/mv-bg-pc.png");
    background-size: auto 100%;
  }
}
.ly_mainHead_inner {
  position: relative;
  width: calc(100% - 32px);
  margin-inline: auto;
}
.ly_mainHead_siteLogo {
  display: block;
  max-width: 303px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ly_mainHead_siteLogo {
    max-width: 405px;
  }
}
.ly_mainHead_siteLogo img {
  display: block;
  width: 100%;
}

.ly_mainContent {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .ly_mainContent {
    padding-top: 20px;
  }
}
.ly_mainContent_head {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto 80px;
}

.ly_centered {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.ly_header {
  display: none;
  width: calc(100% - 32px);
  max-width: 1000px;
  min-height: 50px;
  padding-block: 10px;
  background-color: var(--color-white);
  border-radius: 100px;
  border: 1px solid var(--color-secondary);
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .ly_header {
    display: block;
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: max(152px, 10.5555556vw);
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
  }
}
.ly_header_inner {
  width: calc(100% - 60px);
  margin-inline: auto;
}
.ly_header.is_active {
  position: fixed;
  top: 10px;
}
.ly_header__home {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .ly_header__home {
    opacity: 0;
    visibility: hidden;
  }
}
.ly_header__home.is_active {
  opacity: 1;
  visibility: visible;
}

.ly_headerNav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.ly_headerNav_list > li > a {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media (hover: hover) {
  .ly_headerNav_list > li > a:hover {
    text-decoration: underline;
  }
}

.ly_footer_wrap {
  position: relative;
  padding-top: 90px;
  margin-top: 50px;
}
.ly_footer_wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, #fff, #ebf6ff);
}
.ly_footer_siteLogo {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 303px;
  margin-inline: auto;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .ly_footer_siteLogo {
    max-width: 360px;
    margin: 0;
  }
}
.ly_footer_siteLogo img {
  display: block;
  width: 100%;
}
@media (hover: hover) {
  .ly_footer_siteLogo:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}
.ly_footer_logo {
  display: block;
  max-width: 200px;
  margin: 100px auto 0;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .ly_footer_logo {
    margin-top: 60px;
  }
}
.ly_footer_logo img {
  display: block;
  width: 100%;
}
@media (hover: hover) {
  .ly_footer_logo:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}
.ly_footer_copyright {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .ly_footer_copyright {
    min-width: 420px;
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 992px) {
  .ly_footer_copyright {
    margin-left: auto;
    text-align: right;
  }
}

.ly_footerTop {
  background-color: var(--color-white);
  padding-block: 80px 60px;
}
@media screen and (min-width: 768px) {
  .ly_footerTop {
    padding-block: 60px;
  }
}
.ly_footerTop_inner {
  width: calc(100% - 72px);
  max-width: 1000px;
  margin-inline: auto;
}
.ly_footerTop_columns {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media screen and (min-width: 768px) {
  .ly_footerTop_columns {
    flex-direction: row;
    align-items: flex-start;
    gap: 0 80px;
  }
}

@media screen and (min-width: 768px) {
  .ly_footerNav {
    margin-left: auto;
    flex: 1;
  }
}
.ly_footerNav_list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 768px) {
  .ly_footerNav_list {
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
.ly_footerNav_list > li > a {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
@media (hover: hover) {
  .ly_footerNav_list > li > a:hover {
    text-decoration: underline;
  }
}

.ly_footerNav02_list {
  width: calc(100% - 40px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 768px) {
  .ly_footerNav02_list {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 30px;
  }
}
.ly_footerNav02_list > li > a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2857142857;
}
@media (hover: hover) {
  .ly_footerNav02_list > li > a:hover {
    text-decoration: underline;
  }
}

.ly_footerBottom {
  padding-block: 40px;
  color: var(--color-white);
  background-color: #1a2b43;
}
@media screen and (min-width: 992px) {
  .ly_footerBottom {
    padding-block: 25px;
  }
}
.ly_footerBottom_inner {
  width: calc(100% - 32px);
  max-width: 1340px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ly_footerBottom_inner {
    width: calc(100% - 72px);
  }
}
.ly_footerBottom_columns {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media screen and (min-width: 768px) {
  .ly_footerBottom_columns {
    gap: 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .ly_footerBottom_columns {
    flex-direction: row;
    align-items: center;
    gap: 0 60px;
  }
}

.ly_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 47, 118, 0.2);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.ly_menu.is_menuOpen {
  opacity: 1;
  visibility: visible;
  will-change: visibility, opacity;
}
@media screen and (min-width: 768px) {
  .ly_menu {
    display: none;
  }
}
.ly_menu_container {
  position: relative;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  padding-block: 60px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px;
  border: 2px solid var(--color-white);
}
.ly_menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}
.ly_menu_close > .line {
  position: absolute;
  top: 22px;
  left: 10px;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-white);
}
.ly_menu_close > .line:nth-of-type(1) {
  transform: rotate(-45deg);
}
.ly_menu_close > .line:nth-of-type(2) {
  transform: rotate(45deg);
}
.ly_menu_inner {
  width: calc(100% - 52px);
  margin-inline: auto;
}
.ly_menu_siteLogo {
  display: block;
  max-width: 257px;
  margin-inline: auto;
}
.ly_menu_siteLogo img {
  display: block;
  width: 100%;
}
.ly_menu_logo {
  display: block;
  width: 160px;
  margin-inline: auto;
}
.ly_menu_logo img {
  display: block;
  width: 100%;
}
.ly_menu_main {
  margin-top: 40px;
}
.ly_menu_footer {
  margin-top: 80px;
}

.ly_menuNavUnit {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}

.ly_menuNav_list, .ly_menuNav_list02 {
  display: flex;
  flex-direction: column;
}
.ly_menuNav_list > li > a, .ly_menuNav_list02 > li > a {
  display: block;
  letter-spacing: 0.05em;
}
.ly_menuNav_list {
  gap: 30px 0;
}
.ly_menuNav_list > li > a {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
.ly_menuNav_list02 {
  gap: 20px 0;
}
.ly_menuNav_list02 > li > a {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.ly_menuBtn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-white);
  background-color: var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .ly_menuBtn {
    display: none;
  }
}
.ly_menuBtn_line {
  position: absolute;
  top: 22px;
  left: 10px;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-white);
}
.ly_menuBtn_line:nth-of-type(1) {
  transform: translateY(-10px);
}
.ly_menuBtn_line:nth-of-type(3) {
  transform: translateY(10px);
}

.ly_pageTop {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .ly_pageTop {
    left: auto;
    right: 30px;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1200px) {
  .ly_pageTop {
    top: 120px;
  }
}
.ly_pageTop_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px 0;
  width: 100px;
  height: 80px;
  padding-bottom: 4px;
  color: var(--color-primary);
  border-radius: 80px;
  border: 3px solid var(--color-white);
  background: linear-gradient(to right, rgba(222, 246, 255, 0.9), rgba(239, 249, 255, 0.7));
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: var(--font-family-inter);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0em;
}
.ly_pageTop_link::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  background: url("../image/icons/icon-arrow.svg") no-repeat center;
}

.bl_section {
  padding-block: 120px 0;
}

.bl_section02 + .bl_section02 {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .bl_section02 + .bl_section02 {
    padding-top: 60px;
  }
}

.bl_section03 {
  padding-top: 30px;
}
.bl_section03 + .bl_section03 {
  padding-top: 80px;
}

.bl_panelLink {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.bl_panelLink > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl_panelLink > li > a {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 20px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebf6ff;
  border: 1px solid var(--color-secondary);
  color: var(--color-link);
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .bl_panelLink > li > a {
    padding-inline: 32px;
  }
}
.bl_panelLink > li > a[href^="#"] > span::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  transform: rotate(90deg);
  background: url("../image/icons/icon-arrow.svg") no-repeat center;
  background-size: 100% 100%;
}
.bl_panelLink > li > a[target=_blank]::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: translateY(4px);
  background: url("../image/icons/icon-external.svg") no-repeat center;
  background-size: 100% 100%;
}
@media (hover: hover) {
  .bl_panelLink > li > a:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .bl_panelLink__3col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .bl_panelLink__3col > li {
    width: calc((100% - 40px) / 3);
  }
}

.bl_linkList {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 768px) {
  .bl_linkList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
}
@media screen and (min-width: 768px) {
  .bl_linkList__lg > li > a {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  .bl_linkList__tac {
    justify-content: center;
  }
}
.bl_linkList__row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 30px;
}
@media screen and (min-width: 768px) {
  .bl_linkList__column {
    flex-direction: column;
    gap: 10px 0;
  }
}

.bl_tabBtnUnit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  padding: 15px 20px;
  background-color: #d4d1d1;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .bl_tabBtnUnit {
    gap: 20px;
    padding: 12px 30px;
    border-radius: 70px;
  }
}
.bl_tabBtnUnit .bl_tabBtn {
  width: calc((100% - 16px) / 3);
}
@media screen and (min-width: 768px) {
  .bl_tabBtnUnit .bl_tabBtn {
    width: calc((100% - 40px) / 3);
  }
}

.bl_tabBtn {
  padding: 17px 8px 15px;
  color: var(--color-primary);
  background-color: var(--color-white);
  border-radius: 10px;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .bl_tabBtn {
    padding: 8px 20px;
    border-radius: 70px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.bl_tabBtn.is_current {
  color: var(--color-white);
  background-color: var(--color-primary);
  font-weight: 700;
}
@media (hover: hover) {
  .bl_tabBtn:hover {
    will-change: background-color, color;
    background-color: var(--color-primary);
    color: var(--color-white);
  }
}

.bl_tabContentArea {
  margin-top: 30px;
}

.bl_tabContent {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, height 0.2s ease-out;
}

.bl_flowList {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.bl_flowItem {
  position: relative;
}
.bl_flowItem::before {
  content: "";
  display: block;
  position: absolute;
  top: 50px;
  left: 14px;
  width: 1px;
  height: calc(100% - 50px);
  background-color: var(--color-primary);
  border-radius: 2px;
}
.bl_flowItem_ttl {
  display: flex;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
}
.bl_flowItem_ttl .num {
  margin-right: 15px;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
}
.bl_flowItem_ttl .ttl {
  flex: 1;
}
.bl_flowItem_ttl .label {
  display: inline-block;
  min-height: 30px;
  padding: 2px 12px 1px;
  margin-right: 12px;
  border-radius: 4px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-white);
  text-align: center;
  transform: translateY(-2px);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
}
.bl_flowItem_ttl .label__blue {
  border-color: #00afdf;
  background-color: #f0fcff;
}
.bl_flowItem_ttl .label__orange {
  border-color: var(--color-accent);
  background-color: #fff9f6;
  color: var(--color-accent);
}
.bl_flowItem_ttl02 {
  margin: 40px 0 15px;
  padding: 3px 16px;
  border-radius: 6px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}
.bl_flowItem_ttl02 + * {
  margin-top: 15px;
}
.bl_flowItem_ttl03 {
  position: relative;
  padding-left: 0.889em;
  margin: 50px 0 10px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
.bl_flowItem_ttl03::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.611em;
  left: 0;
  width: 0.444em;
  height: 0.444em;
  background-color: var(--color-primary);
  border-radius: 1px;
}
.bl_flowItem_body {
  margin-top: 20px;
  padding: 0 0 50px 45px;
}
@media screen and (min-width: 768px) {
  .bl_flowItem_body {
    padding-bottom: 30px;
  }
}
.bl_flowItem_body > *:first-child {
  margin-top: 0 !important;
}
.bl_flowItem_imgWrap {
  margin-top: 30px;
  padding: 45px 28px;
  background-color: #f6f6f6;
}
@media screen and (min-width: 768px) {
  .bl_flowItem_imgWrap {
    padding-block: 12px;
  }
}
.bl_flowItem_img {
  max-width: 200px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_flowItem_img {
    max-width: 300px;
  }
}
.bl_flowItem_img img {
  display: block;
  width: 100%;
}
.bl_flowItem_txt + .bl_flowItem_txt {
  margin-top: 15px;
}
.bl_flowItem_txt02 {
  font-size: 1.6rem;
  line-height: 1.625;
}
.bl_flowItem_txt02 + .bl_flowItem_txt {
  margin-top: 15px;
}

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

.bl_accItem {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}
.bl_accItem.is_open .bl_accItem_head::after {
  transform: translateY(-50%) rotate(270deg);
}
.bl_accItem_head {
  position: relative;
  width: 100%;
  padding: 14px 45px 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.1em;
}
.bl_accItem_head::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  width: 20px;
  height: 20px;
  background: url("../image/icons/icon-arrow-black.svg") no-repeat center;
  background-size: 100% 100%;
  transition: transform 0.3s ease-out;
}
.bl_accItem_cont {
  position: relative;
  padding: 20px 14px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .bl_accItem_cont {
    padding: 20px;
  }
}
.bl_accItem_cont::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  height: 2px;
  background-color: var(--color-border);
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .bl_accItem_cont::before {
    width: calc(100% - 40px);
  }
}

.bl_table {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .bl_table {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 768px) {
  .bl_table tr {
    display: flex;
    gap: 0 4px;
  }
}
.bl_table tr:first-child th {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .bl_table tr:first-child td {
    margin-top: 0;
  }
}
.bl_table th, .bl_table td {
  display: block;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .bl_table th, .bl_table td {
    display: table-cell;
  }
}
.bl_table th > *:first-child, .bl_table td > *:first-child {
  margin-top: 0 !important;
}
.bl_table th {
  margin-top: 10px;
  text-align: left;
  background-color: #f2f2f2;
  border: 1px solid var(--color-border);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .bl_table th {
    width: 200px;
    margin-top: 4px;
  }
}
.bl_table td {
  border: 1px solid var(--color-border);
  border-top-width: 0;
}
@media screen and (min-width: 768px) {
  .bl_table td {
    flex: 1;
    margin-top: 4px;
    border-top-width: 1px;
  }
}
.bl_table td .item + .item {
  margin-top: 30px;
}
.bl_table td .item .ttl {
  margin-bottom: 6px;
  font-weight: 700;
}
.bl_table_wrap {
  margin-block: 40px;
}

.bl_boxUnit {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.bl_box {
  padding-block: 30px;
  border: 2px solid var(--color-border);
  border-radius: 20px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .bl_box {
    padding-block: 50px;
  }
}
.bl_box_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_box_inner {
    width: calc(100% - 100px);
  }
}
.bl_box_inner > *:last-child {
  margin-bottom: 0 !important;
}
.bl_box_txt + .bl_box_txt {
  margin-top: 16px;
}
.bl_box_heading {
  position: relative;
  padding-left: 12px;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
}
.bl_box_heading::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: 24px;
  background-color: var(--color-primary);
}

.bl_box02 {
  padding-block: 30px;
  border: 1px solid #fdeee6;
  border-radius: 20px;
  background-color: #fdeee6;
}
@media screen and (min-width: 768px) {
  .bl_box02 {
    padding-block: 50px;
  }
}
.bl_box02_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_box02_inner {
    width: calc(100% - 100px);
  }
}
.bl_box02_ttl {
  margin-bottom: 20px;
  font-weight: 700;
}

.bl_box03 {
  padding-block: 20px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .bl_box03 {
    padding-block: 30px;
  }
}
.bl_box03_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_box03_inner {
    width: calc(100% - 60px);
  }
}
.bl_box03_ttl {
  margin-bottom: 20px;
  font-weight: 700;
}

.bl_infoBox {
  padding-block: 30px;
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  background-color: var(--color-white);
}
.bl_infoBox_inner {
  width: calc(100% - 28px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_infoBox_inner {
    width: calc(100% - 70px);
  }
}
.bl_infoBox_columns {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .bl_infoBox_columns {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .bl_infoBox_columns .bl_infoBoxItem {
    width: 100%;
  }
}
.bl_infoBox_columns .bl_infoBoxItem:not(:first-child) {
  border-top: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .bl_infoBox_columns .bl_infoBoxItem:not(:first-child) {
    border-top: none;
    border-left: 1px solid var(--color-border);
  }
}
.bl_infoBox_columns .bl_infoBoxItem:first-child {
  padding-top: 0;
}
.bl_infoBox_columns .bl_infoBoxItem:last-child {
  padding-bottom: 0;
}

.bl_infoBoxItem {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .bl_infoBoxItem {
    padding: 0 50px;
  }
}
.bl_infoBoxItem_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
}
.bl_infoBoxItem_ttl .icon {
  min-width: 30px;
}
.bl_infoBoxItem_ttl .ttl {
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.bl_infoBoxItem_ttl__orange {
  color: var(--color-accent);
}
.bl_infoBoxItem_body {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
}
.bl_infoBoxItem_txt + .bl_infoBoxItem_txt {
  margin-top: 16px;
}

.bl_contactBox {
  padding-block: 30px;
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  background-color: #ebf6ff;
}
@media screen and (min-width: 768px) {
  .bl_contactBox {
    padding-block: 40px;
  }
}
.bl_contactBox_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_contactBox_inner {
    width: calc(100% - 100px);
  }
}
.bl_contactBox_heading {
  margin-bottom: 10px;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4545454545;
}
@media screen and (min-width: 768px) {
  .bl_contactBox_heading {
    font-size: 2.6rem;
    line-height: 1.3846153846;
  }
}
.bl_contactBox_txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5714285714;
}

.bl_contactBoxItemUnit {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media screen and (min-width: 768px) {
  .bl_contactBoxItemUnit {
    max-width: 590px;
    margin-inline: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
}
@media screen and (min-width: 768px) {
  .bl_contactBoxItemUnit .bl_contactBoxItem {
    width: calc((100% - 30px) / 2);
  }
}

.bl_contactBoxItem {
  text-align: center;
  padding-block: 20px;
  background-color: var(--color-white);
  border-radius: 10px;
}
.bl_contactBoxItem_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}
.bl_contactBoxItem_ttl {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
.bl_contactBoxItem_tel {
  margin-bottom: 5px;
  color: var(--color-link);
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
}
.bl_contactBoxItem_txt {
  font-size: 1.4rem;
  line-height: 1.5714285714;
}

.bl_breadcrumb {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.bl_breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
}
.bl_breadcrumb_item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
.bl_breadcrumb_item:not(:first-child)::before {
  content: "";
  display: inline-block;
  margin: 0 10px;
  width: 12px;
  height: 16px;
  background: url("../image/icons/icon-arrow02.svg") no-repeat center;
  background-size: 100% 100%;
}
.bl_breadcrumb_item > a {
  display: inline-block;
  color: var(--color-link);
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .bl_breadcrumb_item > a:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}

.bl_warningBox {
  padding-block: 30px;
  border-radius: 4px;
  background-color: #ffebeb;
  font-size: 1.6rem;
  line-height: 1.625;
}
.bl_warningBox_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_warningBox_inner {
    width: calc(100% - 60px);
  }
}
.bl_warningBox_inner > *:last-child {
  margin-bottom: 0 !important;
}
.bl_warningBox_txt + .bl_warningBox_txt {
  margin-top: 16px;
}
.bl_warningBox_heading {
  margin-bottom: 15px;
  color: var(--color-red);
  font-weight: 700;
}

.bl_media {
  margin-block: 40px;
}
.bl_media_inner {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 768px) {
  .bl_media_inner {
    flex-direction: row;
    gap: 0 50px;
  }
}
.bl_media_imgWrap {
  max-width: 170px;
  margin-inline: auto;
}
.bl_media_imgWrap img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bl_media_body {
    flex: 1;
  }
}
.bl_media_txt {
  font-size: 1.8rem;
  line-height: 1.6666666667;
}

.el_lv1Heading {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .el_lv1Heading {
    font-size: 3.6rem;
    line-height: 1.2777777778;
  }
}

.el_lv2Heading {
  position: relative;
  padding-top: 44px;
  margin-bottom: 30px;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .el_lv2Heading {
    margin-bottom: 40px;
    font-size: 3.6rem;
    line-height: 1.2777777778;
  }
}
.el_lv2Heading::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 24px;
  background: url("../image/icons/heading-icon01.svg") no-repeat center;
  background-size: 100% 100%;
}

.el_lv2Heading02 {
  margin-bottom: 30px;
  padding: 8px;
  text-align: center;
  color: var(--color-primary);
  background-color: #ebf6ff;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4545454545;
}
@media screen and (min-width: 768px) {
  .el_lv2Heading02 {
    font-size: 2.4rem;
    line-height: 1.4166666667;
  }
}
.el_lv2Heading02 + * {
  margin-top: 30px;
}

.el_btn {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 54px;
  padding: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 6px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .el_btn {
    padding-block: 12px;
  }
}
.el_btn[target=_blank] {
  padding-inline: 40px;
}
@media screen and (min-width: 768px) {
  .el_btn[target=_blank] {
    padding-inline: 45px;
  }
}
.el_btn[target=_blank]::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../image/icons/icon-external-white.svg") no-repeat center;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .el_btn[target=_blank]::after {
    right: 20px;
  }
}
@media (hover: hover) {
  .el_btn:hover {
    text-decoration: underline;
  }
}
.el_btn_wrap {
  text-align: center;
  margin-top: 40px;
}
.el_btn_wrap__right {
  text-align: right;
}
.el_btn_wrap__left {
  text-align: left;
}
.el_btn__orange {
  background-color: var(--color-accent);
}

.el_txt {
  font-size: 1.8rem;
  line-height: 1.6666666667;
}

.el_note {
  margin-top: 30px;
  display: flex;
  gap: 0 4px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.el_note + .el_note {
  margin-top: 8px;
}
.el_note .symbol {
  display: inline-block;
  min-width: 1em;
}
.el_note .txt {
  flex: 1;
}

.el_link {
  color: var(--color-link);
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
.el_link::after {
  content: "";
  display: inline-block;
  width: 1.111em;
  height: 1.111em;
  margin: 0 8px;
  transform: translateY(4px);
  background: url("../image/icons/icon-arrow.svg") no-repeat center;
  background-size: 100% 100%;
}
.el_link[href^="#"]::after, .el_link[href$=".pdf"]::after, .el_link[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.111em;
  height: 1.111em;
  margin: 0 0.444em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.el_link[href^="#"]::after {
  transform: translateY(4px) rotate(90deg);
  background-image: url("../image/icons/icon-arrow.svg");
}
.el_link[href$=".pdf"]::after {
  transform: translateY(4px);
  background-image: url("../image/icons/icon-pdf.svg");
}
.el_link[target=_blank]::after {
  transform: translateY(4px);
  background-image: url("../image/icons/icon-external.svg");
}
.el_link[href^=tel]::after {
  content: none;
}
@media (hover: hover) {
  .el_link:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}
.el_link_wrap {
  margin-top: 30px;
}

.el_olList,
.el_ulList {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

.el_ulList > li {
  position: relative;
  padding-left: 1em;
}
.el_ulList > li::before {
  content: "";
  position: absolute;
  top: 0.571em;
  left: 0;
  width: 0.429em;
  height: 0.429em;
  border-radius: 50%;
  background-color: var(--color-black);
}

.el_img {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
.el_img img {
  display: block;
  width: 100%;
}
.el_img__w640 {
  max-width: 640px;
}
.el_img__w750 {
  max-width: 750px;
}

.js_fadeUp {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js_fadeUp.is_fadeUp {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js_accItemBody {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.js_tabShow {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.un_homeMv {
  position: relative;
  width: 100%;
  height: 416px;
  display: grid;
  place-items: center;
  background-image: url("../image/home/mv-bg-sp.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .un_homeMv {
    min-height: 540px;
    height: 37.5vw;
    padding-bottom: 80px;
    background-image: url("../image/home/mv-bg-pc.png");
    background-size: auto 100%;
  }
}
.un_homeMv_inner {
  position: relative;
  width: calc(100% - 32px);
  margin-inline: auto;
}
.un_homeMv_siteLogo {
  position: relative;
  display: block;
  max-width: 343px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .un_homeMv_siteLogo {
    max-width: 761px;
    transform: translateX(-55px);
  }
}
.un_homeMv_siteLogo::before {
  content: "";
  display: block;
  position: absolute;
  top: -22px;
  left: calc(50% + 37px);
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: url("../image/home/mv-illust01.svg") no-repeat center;
  background-size: 100% 100%;
}
@media screen and (min-width: 992px) {
  .un_homeMv_siteLogo::before {
    top: -37px;
    left: calc(100% + 5px);
    transform: translateX(0);
    width: 112px;
    height: 112px;
  }
}
.un_homeMv_siteLogo img {
  display: block;
  width: 100%;
}
.un_homeMv_ttl {
  max-width: 275px;
  min-height: 60px;
  margin: 30px auto 0;
  padding: 12px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  border: 3px solid var(--color-white);
  background: linear-gradient(to right, rgba(212, 242, 255, 0.9) 0%, rgba(239, 248, 255, 0.8) 48%, rgba(188, 235, 255, 0.7) 100%);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media screen and (min-width: 992px) {
  .un_homeMv_ttl {
    max-width: 460px;
    min-height: 80px;
    margin-top: 36px;
    border-radius: 40px;
    font-size: 2.6rem;
    line-height: 1.1538461538;
  }
}

.un_homeIntro {
  padding-block: 30px 0;
}
@media screen and (min-width: 768px) {
  .un_homeIntro {
    padding-block: 20px 30px;
  }
}

.un_homeFlow_lv3Heading {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.6;
}

.un_upPovoIntro .el_btn_wrap {
  margin-block: 30px;
}
@media screen and (min-width: 768px) {
  .un_upPovoIntro .el_btn_wrap {
    margin-block: 40px;
  }
}/*# sourceMappingURL=common.css.map */