/* ==========================================
   1. リセット
   ========================================== */
/* ボックスモデル */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* スクロールを滑らか、MOBILE Safari横向きフォントサイズ自動調整を防止 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
html {
  font-size: 62.5%;
}
html,
body {
  height: 100%;
}
a {
  color: var(--color-text-base);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #808080;
  -webkit-tap-highlight-color: transparent;
}
/* a:link {}
a:visited{}
a:hover,
a:focus {}
a:active{} */

a:hover,
a:focus {
  text-decoration: underline dotted #808080;
}

/* フォーカス時のデフォルトの枠線を消す */
*:focus-visible {
  outline: none;
}
/* キーボード操作でフォーカスされた時だけ指定色枠線 */
*:focus-visible {
  outline: 3px solid skyblue;
  outline-offset: 2px;
}
ul,
ol {
  list-style: none;
}
img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/* フォーム要素のフォント親要素継承 */
input,
button,
textarea,
select {
  font: inherit;
}
/* ボタンの標準スタイルをクリア */
button {
  background: transparent;
  border: none;
  cursor: pointer;
}
/* テーブルのセル境界スペースを削除 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
address {
  font-style: normal;
}
em {
  font-style: normal;
  font-weight: bold;
}
/* 上付き文字 */
sup {
  vertical-align: 0.5em;
  font-size: 0.6em;
}

/* ==========================================
   2. サイト全体の基本設定
   ========================================== */
:root {
  /* 主要なカラー */
  --color-main: #993a07; /* メインカラー */
  --color-accent: #fdb372; /* アクセントカラー */
  /* 文字カラー */
  --color-text-base: #242424; /* 文章の文字色ベース */
  --color-text-main: #8f3606; /* 見出しなどメインカラー文字色 */
  --color-text-link: #6b6b6b; /* リンクhover */

  /* 見出しパーツカラー */
  --color-heading-parts-accent: #fdb372;
  --color-heading-parts-line: #e8e5d3;
  --color-heading-parts-PreserviceGr: #1c6262; /*学卒院生の文字色*/
  --color-heading-parts-InServiceGr: #424290; /*現職院生の文字色*/

  /* パーツカラー */
  --color-parts-accent-gray: #e6e6e6; /*装飾英文字など*/
  --color-parts-accent-gray-light: #a8a8a8; /*囲みラインなど*/
  --color-parts-accent-gray-medium: #6b6b6b;
  --color-parts-accent-gray-dark: #595959; /*白抜き文字背景*/
  --color-parts-accent-beige-light: #dfdcc9;
  --color-parts-accent-dark-purpleblue: #4a558b;

  /* 背景カラー・バリエーション */
  --color-bg-wh: #ffffff; /* サイト全体の基本背景色 */
  --color-bg-main: #f2f0e4; /* サイトメイン背景色 */
  --color-bg-sub: #f7f7f7; /* このサイトについて他サブ要素背景色 */
  --color-bg-header: #993a07; /* ヘッダー背景色 */
  --color-bg-footer: #993a07; /* フッター背景色 */
  --color-bg-footer-sub: #f2f0e4; /* フッターサブ背景色 */
  --color-bg-PreserviceGr: #daeded; /*学卒院生の背景色*/
  --color-bg-InServiceGr: #e1e1f0; /*現職院生の背景色*/
  --color-bg-deco-redbrown: #f6f2f1; /*メインカラー淡色*/
  --color-bg-deco-orange: #ffe1c7;
  --color-bg-deco-lightorange: #fff4e8;
  --color-bg-deco-lightgray: #f5f5f4;
  --color-bg-deco-lightpurple: #f5f6ff;
  --color-bg-deco-lightpink: #ffeff4;

  /* デザイン色以外の共通パーツ */
  --radius-normal: 8px; /* 角丸 */
  --radius-large: 18px;
  --radius-max: 9999px;
  --transition-speed: 0.3s; /* アニメーションの共通速度 */

  /* headerの高さ */
  --margin-header-hight: 64px;
  --margin-header-hight-pc: 84px;

  /* レイアウト・幅の設定 */
  --width-container: 960px;
  --width-container-wide: 1080px;
  --width-container-max: 1200px; /* コンテンツ最大横幅 */
  --width-bg-container-max: 1600px; /* 背景の最大横幅 */
  --space-container-padding: 24px; /* スマホ左右にできる最低限の余白 */
  --space-container-padding-tab: 7.8%; /* タブレット左右余白 */
  --space-container-padding-hftab: 5%; /* タブレット パン屑-bottomNav-footer左右余白 */
  --space-container-padding-pc: 5%; /* PC左右min余白 */

  /* ブロック間の基本スペース */
  --space-c-section: 64px; /* セクション間の余白 */
  --space-c-section-pc: 120px;
  --space-c-bg-section: 54px; /* 背景ありのセクション間の余白 */
  --space-c-bg-section-pc: 100px;

  /* 見出しと文章まわりの隙間 */
  --space-lettersp-heading: 0.05em;
  --space-lh-heading: 1.5;
  --space-lh-list: 1.6;
  --space-subheading-btm: 24px;
  --space-subheading-btm-pc: 32px;
  --space-component: 24px;

  /* 余白 */
  /* px */
  --cont-pd-px16: 16px;
  --cont-pd-px24: 24px;
  --cont-pd-px32: 32px;
  --cont-pd-px40: 40px;
  --cont-pd-px48: 48px;
  --cont-pd-px54: 54px;
  --cont-pd-px62: 62px;
  --cont-pd-px70: 70px;
  --cont-pd-px80: 80px;
  --cont-pd-px96: 96px;
  /* em */
  --space-0p5em: 0.5em; /* 8px */
  --space-1em: 1em; /* 16px */
  --space-1p5em: 1.5em; /* 24px */
  --space-2em: 2em; /* 32px */
  --space-3em: 3em; /* 48px */
  /* テキスト太さ */
  --font-weight-bold: 700;
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.9;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere; /*単語折り返し*/
  -webkit-font-smoothing: antialiased; /* 文字アンチエイリアス */
  min-height: 100vh;
}
/* PC用指定 */
@media (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
/* 英文字 */
.en {
  font-family: "Lato", sans-serif !important;
  letter-spacing: 0.05em;
}

/* target アンカースクロール先にマージン追加 */
:target {
  scroll-margin-block: var(--margin-header-hight);
}
@media (min-width: 1024px) {
  :target {
    scroll-margin-block: var(--margin-header-hight-pc);
  }
}

/* ==========================================
   3. 共通のパーツ・レイアウト
   ========================================== */
/* -------------------------------------------
   ヘッダー
-------------------------------------------- */
.c-bg_visible {
  color: transparent;
  font-size: 1px;

  & a {
    color: transparent;
  }
}
.header {
  position: relative;
  left: 0;
  width: 100%;
  height: var(--margin-header-hight);
  z-index: 1000;
  transition:
    transform var(--transition-speed) ease,
    opacity var(--transition-speed) ease;
}
.main-header {
  position: fixed;
  top: 0;
  background-color: var(--color-bg-header);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: var(--margin-header-hight); /* 64px */
}

.header__inner {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__inner {
    padding-left: var(--space-container-padding);
    padding-right: var(--space-container-padding);
  }
}
.header__logo {
  width: 275.5px;
  padding-top: 13px;
  padding-left: 4px;
}
.header__logo a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.header__logo a:hover,
.header__logo a:focus-visible,
.header__logo a:active {
  transform: scale(1.01);
  opacity: 0.9;
}
.header__logo h1 {
  /* 290-40 */
  /* 261-36 */
  width: 275.5px;
  height: 38px;
  background-image:
    url(../images/common/trsprt.png), url(../images/common/logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 275.5px 38px;
}

@media (min-width: 1024px) {
  .header {
    padding-left: 0;
    padding-right: 0;
  }
  .main-header {
    height: var(--margin-header-hight-pc);
  }
  .header__inner {
    padding-left: var(--space-container-padding-pc);
    padding-right: var(--space-container-padding-pc);
    max-width: var(--width-container-max);
    margin-left: auto;
    margin-right: auto;
  }
  .header__logo {
    width: 350px;
    padding-top: 10px;
    padding-left: 0px;
  }
  .header__logo h1 {
    width: 350px;
    height: auto;
    background-size: 350px auto;
  }
}
@media (min-width: 1500px) {
  .header__inner {
    max-width: 1280px;
  }
}

/* -------------------------------------------
   フッター
-------------------------------------------- */
/* ページ下部ナビリンク */
.bottom-sitenav {
  width: 100%;
  height: auto;
  background-color: var(--color-bg-main);
}
.bottom-sitenav__inner {
  width: 100%;
}
@media (min-width: 1024px) {
  .bottom-sitenav__inner {
    padding-top: calc(var(--cont-pd-px62) - 3px); /* 上ほか余白-3px */
    padding-left: var(--space-container-padding);
    padding-right: var(--space-container-padding);
    max-width: var(--width-container);
    /* box-sizing: content-box; */
    margin-left: auto;
    margin-right: auto;
  }
}
.bottom-sitenav___list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: calc(var(--cont-pd-px54) - 2px); /* 上余白-2px */
  & li:nth-of-type(2) {
    border-top: none;
  }
}
@media (min-width: 1024px) {
  .bottom-sitenav___list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: calc(var(--cont-pd-px62) - 2px); /* 上ほか余白-2px */
    & li:nth-of-type(2) {
      border-top: 1px solid var(--color-main);
    }
  }
  .top .bottom-sitenav___list {
    justify-content: space-around;
    gap: 60px;
  }
}
.bottom-sitenav__item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  cursor: pointer;
  transition: background-color var(--transition-speed);
}
@media (min-width: 1024px) {
  .bottom-sitenav__item {
    width: 427px;
  }
}
a.bottom-sitenav__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-text-main);
  padding-left: var(--space-container-padding);
  padding-right: var(--space-container-padding);
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  width: 100%;
  transition:
    background 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}
a.bottom-sitenav__link:hover {
  background-color: var(--color-main);
  color: #ffffff;
}
a.bottom-sitenav__link.move-link:hover,
a.bottom-sitenav__link.move-link:focus-visible,
a.bottom-sitenav__link.move-link:active {
  transform: scale(1);
}
@media (min-width: 768px) and (max-width: 1023px) {
  a.bottom-sitenav__link {
    padding-left: calc(var(--space-container-padding-hftab) - 4px);
    padding-right: calc(var(--space-container-padding-hftab) - 4px);
  }
}
@media (min-width: 1024px) {
  a.bottom-sitenav__link {
    font-size: 1.8rem;
    height: 72px;
    padding-left: var(--cont-pd-px40);
    padding-right: var(--cont-pd-px32);
  }
  a.bottom-sitenav__link.move-link:hover,
  a.bottom-sitenav__link.move-link:focus-visible,
  a.bottom-sitenav__link.move-link:active {
    transform: scale(1.04);
  }
}

/* フッター */
.footer {
  width: 100%;
  color: #ffffff;
  background-color: var(--color-bg-footer);
  padding-top: 22px; /*ページTOPボタンのサイズ 44px*/
}
@media (min-width: 1024px) {
  .footer {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__inner {
  padding-top: calc(50px - 44px);
  padding-right: var(--space-container-padding);
  padding-bottom: 32px;
  padding-left: var(--space-container-padding);
  & p {
    line-height: 1.7;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__inner {
    padding-left: var(--space-container-padding-hftab);
    padding-right: var(--space-container-padding-hftab);
  }
}
@media (min-width: 1024px) {
  .footer__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--width-container);
  }
}

.footer__ad {
  display: block;
  font-size: 1.4rem;
}
.footer__course {
  font-size: 1.4rem;
}
.footer__major {
  font-size: 1.8rem;
}
.footer__links {
  border-top: 0.5px dashed var(--color-parts-accent-beige-light);
}
.footer__linkitem {
  font-size: 1.4rem;
}
.footer__linkitem a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-right: 1.5em;
  transition:
    background 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}
.footer__linkitem a[target="_blank"]::after {
  display: inline-block;
  align-items: center;
  width: 16px;
  height: 16px;
  position: absolute;
  content: "";
  background-image:
    url(../images/common/trsprt.png), url(../images/common/blank-mark.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
  transition: transform 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}
/* アニメ反応 */
.footer__linkitem a:hover,
.footer__linkitem a:focus-visible,
.footer__linkitem a:active {
  transform: scale(1.04);
  color: var(--color-text-link);
  opacity: 0.97;
}
.footer__linkitem a:hover::after,
.footer__linkitem a:focus-visible::after,
.footer__linkitem a:active::after {
  transform: scale(1.15);
}
.footer__linkbanner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-start;
}
.footer__banner {
  width: 150px;
  height: 52px;
  background-color: #fff;
  display: grid;
  align-items: center;
  justify-content: center;
  & img {
    height: 34px;
    object-fit: contain;
  }
}
.footer__banner.--thers {
  & img {
    width: 124px;
  }
}
.footer__banner.--gifu-u {
  & img {
    width: 149px;
  }
}
.footer__copyright {
  font-size: 1rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* -------------------------------------------
   ページ冒頭部分
-------------------------------------------- */
.pageintro {
  font-weight: var(--font-weight-bold);
  line-height: 2.1;
}

/* -------------------------------------------
   コンテンツ 余白 レイアウト
-------------------------------------------- */
.l-wrapper {
  margin: 64px auto 48px auto; /* 上はヘッダー分 */
}
@media (min-width: 1024px) {
  .top .l-wrapper {
    margin: 84px auto 62px auto;
  }
  .l-wrapper {
    margin: 84px auto 58px auto;
  }
}
.l-container {
  padding-left: var(--space-container-padding);
  padding-right: var(--space-container-padding);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-container {
    padding-left: var(--space-container-padding-tab);
    padding-right: var(--space-container-padding-tab);
  }
}
@media (min-width: 1024px) {
  .l-container {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--width-container);
  }
  .l-container.--narrow {
    max-width: 784px; /* 768 780 */
  }
}
@media (min-width: 1024px) {
  .l-container--reducespace {
    padding-left: calc(var(--space-container-padding) + 48px);
    padding-right: calc(var(--space-container-padding) + 48px);
  }
}

.l-container__button {
  padding-left: 40px;
  padding-bottom: var(--cont-pd-px32);
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
@media (min-width: 1024px) {
  .l-container__button {
    padding-bottom: var(--cont-pd-px62);
    box-sizing: content-box;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 70px;
  }
}
.l-container__fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .l-container--fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: var(--width-container-max);
  }
}
.l-diagram {
  margin-top: var(--cont-pd-px24);
  margin-left: var(--cont-pd-px32);
  margin-bottom: var(--cont-pd-px32);
}
@media (min-width: 1024px) {
  .l-diagram {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--cont-pd-px40);
  }
}
/* 段落＋図表の場合 */
.c-paragraph + .l-diagram {
  margin-top: var(--cont-pd-px16);
}
.l-picture__center {
  display: grid;
  justify-content: center;
}

/* PC 3段組 */
/* PC 2段組 */
p + .l-fl-2column {
  margin-top: var(--cont-pd-px16);
}
.l-fl-2column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.l-fl-2column.column--normal {
  gap: 0px;
}
.l-fl-2column.column--wide {
  gap: var(--cont-pd-px32);
}
.l-fl-2column.--topspace {
  margin-top: 2em;
}
@media (min-width: 1024px) {
  .l-fl-2column.--topspace {
    margin-top: 3em;
  }
}

.l-fl-2column__block {
  width: 100%;
}
@media (min-width: 1024px) {
  .l-fl-2column {
    display: flex;
    justify-content: center;
    flex-direction: row;
  }
  .l-fl-2column.column--normal {
    gap: 96px;
  }
  .l-fl-2column.column--wide {
    gap: 48px;
  }
  .l-fl-2column__block {
    max-width: 440px;
  }
}

/* -------------------------------------------
   共通セクションの基本上下余白 c-
-------------------------------------------- */
.c-section {
  margin-top: var(--space-c-section);
}
.daytime .c-section,
.night .c-section {
  margin-top: calc(var(--space-c-section) + 16px);
}
.c-section.--intro {
  margin-top: 72px;
}
.c-section.--bgadj {
  margin-top: var(--cont-pd-px48);
}

@media (min-width: 1024px) {
  .c-section {
    margin-top: var(--space-c-section-pc);
  }
  .daytime .c-section,
  .night .c-section {
    margin-top: calc(var(--space-c-section-pc) + 24px);
  }
  .c-section.--intro {
    margin-top: 140px;
  }
  .daytime .c-section.--intro,
  .night .c-section.--intro {
    margin-top: 156px;
  }
  .c-section.--bgadj {
    margin-top: var(--cont-pd-px62);
  }
}

/* 背景あり・背景後のsection余白 */
.c-bg-section {
  margin-top: var(--space-c-bg-section);
}
.daytime .c-bg-section,
.night .c-bg-section {
  margin-top: 54px;
}
@media (min-width: 1024px) {
  .c-bg-section {
    margin-top: var(--space-c-bg-section-pc);
  }
  .daytime .c-bg-section,
  .night .c-bg-section {
    margin-top: 100px;
  }
}

/* -------------------------------------------
   共通の段組コンテンツ c-
-------------------------------------------- */
.c-paragraph {
  & p {
    padding-bottom: 0.8em;
  }
  & p + dl {
    margin-top: 1.6em;
  }
  & dl + p {
    margin-top: 1.6em;
  }
  & dd + dt {
    margin-top: 1.6em;
  }
  & dl + dl {
    margin-top: 1.6em;
  }
}
@media (min-width: 1024px) {
  .c-paragraph {
    & p {
      padding-bottom: 1em;
    }
    & dl + p {
      margin-top: 2em;
    }
    & dd + dt {
      margin-top: 2em;
    }
    & dl + dl {
      margin-top: 2em;
    }
  }
}

/* -------------------------------------------
   共通の囲みコンテンツボックス c-
-------------------------------------------- */
.c-cont__box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-cont__box.--grayline {
  border: 1px solid var(--color-parts-accent-gray-light);
}

/* 囲みbox内 h4・dt相当 見出し */
.c-cont__boxttl {
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  line-height: var(--space-lh-heading);
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: var(--cont-pd-px24);
  padding-left: var(--cont-pd-px24);
}
@media (min-width: 1024px) {
  .c-cont__boxttl {
    font-size: 1.9rem;
    padding-right: var(--cont-pd-px32);
    padding-left: var(--cont-pd-px32);
  }
}
.c-cont__boxttl span {
  display: block;
  font-weight: normal;
}
.c-cont__boxsubttl {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: var(--space-lh-heading);
  padding-top: 0.2em;
  padding-bottom: 0.8em;
}
@media (min-width: 1024px) {
  .c-cont__boxsubttl {
    font-size: 1.9rem;
  }
}
/* 囲みタイトル下 区切りライン */
.c-cont__boxttl.--btmline {
  border-bottom: 1px solid transparent;
}
.c-cont__boxttl.--btmgrayline {
  border-bottom: 1px solid var(--color-parts-accent-gray-light);
}

/* 学卒・現職色の囲みタイトル色 */
.c-cont__boxttl.--preservicegr {
  color: var(--color-heading-parts-PreserviceGr);
  background-color: var(--color-bg-PreserviceGr);
}
.c-cont__boxttl.--inservicegr {
  color: var(--color-heading-parts-InServiceGr);
  background-color: var(--color-bg-InServiceGr);
}

/* 囲み 本文box */
.c-cont__boxcont {
  flex: 1;
  color: inherit;
  background-color: #ffffff;
  padding-top: var(--cont-pd-px24);
  padding-bottom: var(--cont-pd-px40);
  padding-right: var(--cont-pd-px24);
  padding-left: var(--cont-pd-px24);
}
.c-cont__boxcont li:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .c-cont__boxcont {
    padding-right: var(--cont-pd-px32);
    padding-left: var(--cont-pd-px32);
  }
}
.c-cont__boxcontitem {
  & dl {
    margin-bottom: var(--cont-pd-px24);
  }
  & dl:first-child {
    margin-top: 7px;
  }
  & dl:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .c-cont__boxcontitem {
    & dl {
      margin-bottom: var(--cont-pd-px32);
    }
  }
}

/* -------------------------------------------
   共通の見出し c-
-------------------------------------------- */
.c-section-ttl {
  width: 100%;
  padding-bottom: var(--space-subheading-btm);
  & span {
    display: block;
  }
}
@media (min-width: 1024px) {
  .c-section-ttl {
    padding-bottom: var(--space-subheading-btm-pc);
  }
}

.c-section-ttl__en {
  position: relative;
  font-family: "Lato", sans-serif;
  letter-spacing: var(--space-lettersp-heading);
  font-weight: 900;
  font-style: normal;
  font-size: 3.6rem;
  line-height: 0.9;
  color: #ffffff;
  -webkit-text-stroke: 2px var(--color-accent);
  paint-order: stroke fill;
  z-index: 2;
}
.c-section-ttl__en::before {
  width: 100%;
  position: absolute;
  display: block;
  content: "";
  border-bottom: 6px solid var(--color-heading-parts-line);
  left: 0;
  bottom: -2px;
  z-index: -1;
}
.c-section-ttl__jp {
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  line-height: var(--space-lh-heading);
  padding-top: 0.8em;
}
@media (min-width: 1024px) {
  .c-section-ttl__en {
    font-size: 4.4rem;
  }
  .c-section-ttl__en::before {
    border-bottom: 7px solid var(--color-heading-parts-line);
  }
  .c-section-ttl__jp {
    font-size: 2.8rem;
  }
}

/* h4・dt相当 見出し */
.c-cont__subttl {
  position: relative;
  font-size: 1.6rem;
  line-height: var(--space-lh-heading);
  font-weight: var(--font-weight-bold);
  padding-left: 1.3em;
  padding-bottom: 0.5em;
}
.c-cont__subttl::before {
  position: absolute;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border: 3px solid var(--color-heading-parts-accent);
  top: 0.3em;
  left: 0;
}

/* -------------------------------------------
   共通の図表 c-
-------------------------------------------- */
.c-diagram {
  max-width: 600px;
  display: flex;
  overflow-x: auto;
  scrollbar-color: #a8a8a8 #e6e6e6; /* スクロールバーつまみの色 / 背景（溝）の色 */
  scrollbar-width: thin;
  & img {
    min-width: 460px;
    padding-right: var(--cont-pd-px24);
    padding-bottom: var(--cont-pd-px24);
  }
}
/* 768px to 1023px ============================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .c-diagram {
    max-width: calc(100% - 15% - 15%);
    display: flex;
    overflow-x: auto;
    margin-left: 15%;
    & img {
      padding-right: 0;
    }
  }
}
/* 1024px to ============================ */
@media (min-width: 1024px) {
  .c-diagram {
    max-width: 700px;
    overflow-x: hidden;
    margin-left: auto;
    margin-right: auto;
    & img {
      padding-right: 0;
      padding-bottom: 0;
    }
  }
}
/* スクロールバー設定================== */
.c-diagram::-webkit-scrollbar {
  height: 8px;
  border-radius: 20px;
}
/* スクロールバーの背景（溝） */
.c-diagram::-webkit-scrollbar-track {
  background-color: #e6e6e6;
  border-radius: 20px;
}
/* スクロールバーのつまみ */
.c-diagram::-webkit-scrollbar-thumb {
  background: #a8a8a8;
  border-radius: 20px;
}

/* -------------------------------------------
   共通のボタン
-------------------------------------------- */
.c-button {
  display: inline-flex; /* inline-flex aタグでも横幅や余白有効 */
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  height: 60px;
  padding-right: var(--cont-pd-px24);
  padding-left: var(--cont-pd-px24);
  background-color: var(--color-main);
  color: #ffffff;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}
a.c-button {
  transition:
    background 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}
a.c-button:hover,
a.c-button:focus-visible,
a.c-button:active {
  transform: scale(1.04);
  opacity: 0.97;
}
@media (min-width: 1024px) {
  .c-button {
    height: 72px;
  }
}
.c-button__text {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 8px;
}
@media (min-width: 1024px) {
  .c-button__text {
    font-size: 1.9rem;
    margin-left: var(--cont-pd-px16);
  }
}
.c-button__icon {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 24px;
  svg {
    display: block;
  }
}

.c-button--primary {
  background-color: #ffffff;
  color: var(--color-main); /* SVG（mask）にも適用 */
  border: 1.5px solid var(--color-main);
  width: 100%;
  max-width: 360px;
}
@media (min-width: 1024px) {
  .c-button--primary {
    width: 47%;
    max-width: 380px;
  }
}
.c-button--primary:hover {
  background-color: var(--color-main);
  color: #ffffff;
}

/* -------------------------------------------
   共通のボタンicon リンクicon
-------------------------------------------- */
/* 昼夜icon */
.link-icon {
  display: inline-flex;
  align-items: center;
}
.link-icon::before {
  content: "";
  display: block; /* SVG */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 34px;
  height: 34px;
  margin-right: 0.5em;
}
@media (min-width: 1024px) {
  .link-icon::before {
    width: 40px;
    height: 40px;
    margin-right: 0.7em;
  }
}
.link-icon.--daytime::before {
  background-image:
    url(../images/common/trsprt.png), url(../images/common/day.svg);
}
.link-icon.--night::before {
  background-image:
    url(../images/common/trsprt.png), url(../images/common/night.svg);
}

/* 右上のみ矢印直書きSVGの場合 span */
.link-arrow {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 24px;
  svg {
    display: block;
  }
}

/* -------------------------------------------
   パン屑リスト
-------------------------------------------- */
.breadcrumb {
  width: 100%;
  padding-left: var(--space-container-padding);
  padding-right: var(--space-container-padding);
  background-color: transparent;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .breadcrumb {
    padding-left: var(--space-container-padding-hftab);
    padding-right: var(--space-container-padding-hftab);
  }
}
.breadcrumb__list {
  display: flex;
  align-items: flex-start;
  line-height: var(--space-lh-heading);
}
.breadcrumb__item {
  font-size: 1.3rem;
}
@media (min-width: 1024px) {
  .breadcrumb__item {
    font-size: 1.5rem;
  }
}
.breadcrumb__item:not(:last-child)::after {
  content: "\00a0＞\00a0";
  font-size: inherit;
  color: var(--color-text-base);
}
.breadcrumb__item:last-child {
  color: #808080;
}
a.breadcrumb__link {
  display: inline-block;
  text-decoration: none;
  transition:
    background 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}
a.breadcrumb__link:hover,
a.breadcrumb__link:focus-visible,
a.breadcrumb__link:active {
  transform: scale(1.04);
  color: var(--color-text-link);
  opacity: 0.8;
}

a.breadcrumb__link.--home {
  position: relative;
  padding-left: 1.5em;
}
a.breadcrumb__link.--home::before {
  display: block; /* SVG */
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-image:
    url(../images/common/trsprt.png), url(../images/common/home-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  transition: transform 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 1024px) {
  a.breadcrumb__link.--home::before {
    width: 15px;
    height: 15px;
  }
}
.breadcrumb--top {
  padding-top: 24px;
}
.breadcrumb--bottom {
  padding-top: 0px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .breadcrumb--top {
    padding-top: 24px;
    padding-bottom: 22px;
  }
  .breadcrumb--bottom {
    padding-bottom: 16px;
  }
}

/* -------------------------------------------
   共通のUI ページトップへ戻るボタン
-------------------------------------------- */
.pagetop__button {
  a {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--transition-speed) ease,
      visibility var(--transition-speed) linear,
      background-color var(--transition-speed) ease,
      top var(--transition-speed) ease-out,
      bottom var(--transition-speed) ease-out;
    position: fixed;
    bottom: 32px;
    right: 0;
    transform: translateX(-14px);
    width: 44px;
    height: 44px;
    color: var(--color-main);
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-main);
    cursor: pointer;
    display: grid;
    place-items: center; /* 上下左右の中央揃え */
    z-index: 1000;

    span.pagetop__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      svg {
        display: block;
        width: 36px;
        height: 36px;
        transition: transform var(--transition-speed) ease;
        /* svgの線（stroke）を文字色と連動 */
        stroke: currentColor;
      }
      &.is-stuck {
        position: absolute !important; /* transition が効いた状態で切り替え */
      }
    }
    @media (hover: hover) {
      /* ボタンにマウスが乗ったら矢印だけを3px上に移動 */
      span.pagetop__icon:hover {
        svg {
          transform: translateY(-3px);
        }
      }
    }
    span.pagetop__text {
      display: none;
    }
    &.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    &.is-stuck {
      position: absolute !important;
    }
  }
}

@media (min-width: 1024px) {
  .pagetop__button {
    a {
      width: 48px;
      height: 48px;
      transform: translateX(-32px);
      span.pagetop__icon {
        svg {
          width: 40px;
          height: 40px;
        }
      }
    }
  }
}
@media (min-width: 1280px) {
  .pagetop__button {
    a {
      transform: translateX(-120px);
    }
  }
}

/* -------------------------------------------
   アニメーション メニュー・リンク共通
-------------------------------------------- */
.move-link {
  transition:
    transform 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    background 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.18s cubic-bezier(0.33, 1, 0.68, 1);
}
.move-link:hover,
.move-link:focus-visible,
.move-link:active {
  transform: scale(1.04);
  color: var(--color-text-link);
  opacity: 0.97;
}

/* -------------------------------------------
   共通の改行
-------------------------------------------- */
span.u-br-sp-only {
  content: "\A";
  display: block;
}
.pc-only {
  display: none; /* PC専用の改行を非表示にする */
}
@media (min-width: 1024px) {
  span.u-br-sp-only {
    display: none;
  }
  .pc-only {
    display: inline; /* PC専用の改行を表示する */
  }
  .sp-only {
    display: none; /* スマホ専用の改行を非表示にする */
  }
}

/* ==========================================
   文字・リスト・リスト装飾
   ========================================== */
/* リスト共通 [.c-list-base] */
.c-list-base li {
  line-height: var(--space-lh-list);
  margin-top: 0.2em;
  margin-bottom: 0.8em;
}
.c-list-base li:last-child {
  margin-bottom: 0;
}
/* リスト共通 dt */
.c-list-base dt {
  font-weight: var(--font-weight-bold);
  line-height: var(--space-lh-list);
  padding-bottom: 1em;
}
.c-list-base dt.c-list-dtsquare {
  position: relative;
  padding-left: 1.3em;
  padding-bottom: 0.25em;
}
.c-list-base dt.c-list-dtsquare::before {
  width: 14px;
  height: 14px;
  position: absolute;
  content: "";
  background-image:
    url(../images/common/trsprt.png), url(../images/common/square-base.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left center;
  top: 0.3em;
  left: 0;
}
/* 学卒・現職用 */
.c-list-base dt.c-list-dtsquare.--preservicegr::before {
  background-image:
    url(../images/common/trsprt.png),
    url(../images/common/square-preservicegr.svg);
}
.c-list-base dt.c-list-dtsquare.--inservicegr::before {
  background-image:
    url(../images/common/trsprt.png),
    url(../images/common/square-inservicegr.svg);
}

/* 文字色 装飾 */
.u-txtcol-preservicegr {
  color: var(--color-heading-parts-PreserviceGr); /* 学卒院生カラー */
}
.u-txtcol-inservicegr {
  color: var(--color-heading-parts-InServiceGr); /* 現職院生カラー */
}

/* リスト装飾 */
.u-listmarker-circle li {
  position: relative;
  padding-left: 1.1em;
}
.u-listmarker-circle li::before {
  width: 0.9em;
  height: 0.9em;
  position: absolute;
  content: "";
  background-image:
    url(../images/common/trsprt.png), url(../images/common/circle-base.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left center;
  top: 0.4em;
  left: 0;
}
.u-listmarker-circle.--preservicegr li::before {
  background-image:
    url(../images/common/trsprt.png),
    url(../images/common/circle-PreserviceGr.svg);
}
.u-listmarker-circle.--inservicegr li::before {
  background-image:
    url(../images/common/trsprt.png),
    url(../images/common/circle-InServiceGr.svg);
}
.u-listmarker-smallcircle li {
  position: relative;
  margin-left: 1.1em;
  list-style-type: disc;
}

.u-listmarker-square li {
  position: relative;
  padding-left: 1.1em;
}
.u-listmarker-square li::before {
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  content: "";
  background-color: var(--color-parts-accent-gray-medium);
  top: 0.5em;
  left: 0;
}

/* ==========================================
   変更・上書き用ユーティリティ
   ========================================== */
/* 文字基本へ上書き */
.u-text-basic {
  color: var(--color-text-base);
  font-weight: normal;
}
/* 文字サイズの微調整 */
.u-text-xxxs {
  font-size: 1.1rem;
}
.u-text-xxs {
  font-size: 1.2rem;
}
.u-text-xs {
  font-size: 1.3rem;
}
.u-text-sm {
  font-size: 1.4rem;
}
.u-text-lg {
  font-size: 1.7rem;
}
.u-text-note {
  /*注釈*/
  font-size: 1.2rem;
}
/* 余白の微調整 */
/* padding */
.u-pt-em0 {
  padding-top: 0 !important;
}
.u-pt-em0p5 {
  padding-top: 0.5em !important;
}
.u-pt-em1 {
  padding-top: 1em !important;
}
.u-pt-em2 {
  padding-top: 2em !important;
}
.u-pb-em0 {
  padding-bottom: 0 !important;
}
/* margin */
.u-mb-em0 {
  margin-bottom: 0 !important;
}
.u-mt-em0p5 {
  margin-top: 0.5em !important;
}
.u-mt-em1 {
  margin-top: 1em !important;
}
.u-mt-em1p5 {
  margin-top: 1.5em !important;
}
.u-mt-em2 {
  margin-top: 2em !important;
}
.u-mt-em2p5 {
  margin-top: 2.5em !important;
}
.u-mt-em3 {
  margin-top: 3em !important;
}
.u-mt-em4 {
  margin-top: 4em !important;
}
.u-mtem1-mbem1p5 {
  margin-top: 1em !important;
  margin-bottom: 1.5em !important;
}
.u-mb-em0p5 {
  margin-bottom: 0.5em !important;
}
.u-mb-em1 {
  margin-bottom: 1em !important;
}
.u-mb-em1p5 {
  margin-bottom: 1.5em !important;
}
.u-mb-em2 {
  margin-bottom: 2em !important;
}
.u-mb-em2p5 {
  margin-bottom: 2.5em !important;
}
.u-mb-em3 {
  margin-bottom: 3em !important;
}
