/* Built: 2026-03-05 14:17:32 */
/* ========================================
   styles.css - 全ページのベースとなるファイル
   ======================================== */

/* 1. 順序が大事なもの（手動） */

/**********
** variables
***********************************/

:root {
  /* ------------------------------------------------
     1. 変数定義 (基本設定)
     ------------------------------------------------ */
  /* 基準となるフォントサイズ */
  --base-fs: 16;

  /* インナー幅と余白 */
  --inner-width: 1480;
  --inner-width-min: 390;
  --padding-pc: 25;
  --padding-sp: 22;

  /* ------------------------------------------------
     2. 変数定義 (基本設定)
     ------------------------------------------------ */
  /* カラー */
  --black: #000;
  --white: #fff;

  /* ブルー */
  --blue-100: #e2efff;
  --blue-300: #00c0fa;
  --blue-500: #1161bc;
  --blue-600: #01449b;
  --blue-700: #06346f;
  --blue-800: #002d61;

  /* グレー */
  --gray-200: #f6f6f6;
  --gray-300: #cccccc;
  --gray-400: #ededed;
  --gray-500: #eeeeee;

  /* イエロー */
  --yellow-500: #ffd113;

  /* フォント */

  /* メイン（ゴシック体）: 日本語はNoto Sans */
  --font-main: "Noto Sans JP", sans-serif;

  /* 日本語はNoto Serif */
  --font-serif: "Noto Serif JP", serif;

  /* 英語アクセント（見出し等） */
  --font-en: "Libre Baskerville", serif;

  --fs-xs: clamp(
    calc(12 * var(--r)),
    calc(12 * var(--r)) + ((14 - 12) * var(--fluid-rate)),
    calc(14 * var(--r))
  );

  --fs-sm: clamp(
    calc(12 * var(--r)),
    calc(12 * var(--r)) + ((16 - 12) * var(--fluid-rate)),
    calc(16 * var(--r))
  );

  --fs-base: clamp(
    calc(14 * var(--r)),
    calc(14 * var(--r)) + ((16 - 14) * var(--fluid-rate)),
    calc(16 * var(--r))
  );

  --fs-md: clamp(
    calc(16 * var(--r)),
    calc(16 * var(--r)) + ((18 - 16) * var(--fluid-rate)),
    calc(18 * var(--r))
  );

  --fs-lg: clamp(
    calc(16 * var(--r)),
    calc(16 * var(--r)) + ((20 - 16) * var(--fluid-rate)),
    calc(20 * var(--r))
  );

  /* ------------------------------------------------
     3. レスポンシブ可変範囲の設定
     ------------------------------------------------ */
  /* 画面幅がここから... */
  --vp-min: var(--inner-width-min);
  /* ここまで広がる間に、値を滑らかに変化させる */
  --vp-max: var(--inner-width);


  /* ------------------------------------------------
     4. 計算用係数・ロジック
     ------------------------------------------------ */
  /* rem変換係数 (1px = 0.0625rem) */
  --r: calc(1rem / var(--base-fs));

  /* vw変換係数 (従来の使い方用) */
  --v: calc(100vw / var(--vp-max));

  /* 進捗率 (Fluid Rate): 0 〜 1 で推移する係数 */
  --fluid-rate: calc(
    (100vw - (var(--vp-min) * 1px)) / (var(--vp-max) - var(--vp-min))
  );
}

html {
  /* ------------------------------------------------
     5. デフォルト設定 (376px ~ 767px)
     ------------------------------------------------ */
  font-size: 100%; /* 一般的に16px */


  /* ------------------------------------------------
     6. スマホ用 (~ 375px)
     ロジック: vw(375, 16)
     ------------------------------------------------ */
}

@media (max-width: 390px) {

html {
    /* 16 / 375 * 100vw */
    font-size: calc(var(--base-fs) / var(--inner-width-min) * 100vw);
}
  }

/* ------------------------------------------------
     7. PC可変エリア (768px ~ インナー幅限界)
     ロジック: vw($breakpointInner, 16)
     ------------------------------------------------ */

/* 【重要】
     ここの 1040px (1000 + 20*2) だけは手計算して記述する必要があります。
  */

@media (min-width: 768px) and (max-width: 1530px) {

html {
    /* 計算式: 16 / (インナー幅 + 余白*2) * 100vw
       変数はプロパティ値の中なら使えるので、計算式は維持できます。
    */
    font-size: calc(var(--base-fs) / (var(--inner-width) + var(--padding-pc) * 2) * 100vw);
}
  }

/* ------------------------------------------------
     8. PC固定エリア (インナー幅限界 ~)
     ------------------------------------------------ */

/* ここも数値は手書きする必要があります */

@media (min-width: 1531px) {

html {
    font-size: 100%;
}
  }

/**********
** reset
***********************************/

/* Box sizing rules */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */

:where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol, li) {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

/* In Safari, using `list-style: none` prevents screen readers from announcing lists. */

/* `list-style-type: ""` is used to hide markers without affecting accessibility. */

:where(ul, ol, menu) {
  list-style-type: "";
  padding: 0;
}

/* Set core root defaults */

:where(:root) {
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
}

/* Set core body defaults */

:where(body) {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  overflow-wrap: anywhere;
}

/* Japanese typography optimization (only for Japanese pages) */

:where(:root:lang(ja)) {
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;

  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
}

/* A elements that don't have a class get default styles */

:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(a) {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */

:where(img, picture) {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */

::-webkit-file-upload-button {
  font: inherit;
  /* These elements are often styled with a border, so a `1px` border is applied by default for consistency. */
  border-width: 1px;
  border-style: solid;
  /* Use transparent instead of none to account for forced color modes. */
  border-color: transparent;
  border-radius: unset;
  color: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input, button, textarea, select),
::file-selector-button {
  font: inherit;
  /* These elements are often styled with a border, so a `1px` border is applied by default for consistency. */
  border-width: 1px;
  border-style: solid;
  /* Use transparent instead of none to account for forced color modes. */
  border-color: transparent;
  border-radius: unset;
  color: unset;
  letter-spacing: unset;
  text-align: unset;
}

::-webkit-file-upload-button {
  padding: 0;
  background-color: initial;
}

:where(button),
::file-selector-button {
  padding: 0;
  background-color: initial;
}

/* On iOS, double-tapping a button can cause zooming, which harms usability. */

::-webkit-file-upload-button {
  touch-action: manipulation;
}

:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i]),
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/* Adjusts user agent (UA) styles for h1 elements within sectioning content. */

:where(h1) {
  font-size: 2em;
}

/* Prevents the last line of text from ending with a single word, which can look awkward. */

:where(h1, h2, h3, h4, h5, h6) {
  text-wrap: pretty;
}

/* Since `text-spacing-trim` can affect spacing in `<pre>` elements, ensure consistent alignment. */

:where(pre) {
  text-spacing-trim: space-all;
}

/* Set to `no-autospace` because date notations in typography do not include spaces. */

:where(time:lang(ja)) {
  text-autospace: no-autospace;
}

/* Set to `no-autospace` because `text-autospace` can insert spaces during input. */

:where(
    input:not([type="button" i], [type="submit" i], [type="reset" i]),
    textarea,
    [contenteditable]
  ) {
  text-autospace: no-autospace;
}

:where(pre:lang(ja)) {
  text-autospace: no-autospace;
}

/* In Japanese, emphasis is commonly represented by bold text. */

:where(em:lang(ja)) {
  font-weight: bolder;
}

/* Italic style is not common in Japanese, so the `font-style` is reset. */

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  font-style: unset;
}

:where(address:lang(ja)) {
  font-style: unset;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/**********
** base
***********************************/

/* フォント、カラー設定 */

:where(body) {
  font-family: var(--font-main);
  color: var(--black);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-wrap: anywhere;
}

:where(body.is-menu-open) {
  overflow: hidden;
}

/* ホバー */

@media (min-width: 768px) {

:where(a, button) {
    -webkit-transition: .3s;
    transition: .3s;
}
  }

@media (min-width: 768px) {

:where(a, button):hover {
    opacity: 0.7;
    cursor: pointer;
}
  }

/* pcでリンク無効 */

@media (min-width: 768px) {

:where(a[href*="tel:"]) {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
  }

:where(
    :-moz-any-link,
    button,
    [type='button'],
    [type='reset'],
    [type='submit'],
    label[for],
    select,
    summary,
    [role='tab'],
    [role='button']
  ) {
  cursor: pointer;
}

:where(
    :any-link,
    button,
    [type='button'],
    [type='reset'],
    [type='submit'],
    label[for],
    select,
    summary,
    [role='tab'],
    [role='button']
  ) {
  cursor: pointer;
}

/* ============================================
   Libre Baskerville (英語用)
   ============================================ */

/* Regular */

@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/LibreBaskerville/LibreBaskerville-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */

@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/LibreBaskerville/LibreBaskerville-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Noto Sans JP (日本語ゴシック)
   ※必要なウェイトのみ記述推奨（例: Regular, Bold）
   ============================================ */

/* Regular (400) */

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium (500) - 必要な場合 */

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* SemiBold (600) - 必要な場合 */

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Black (900) */

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../fonts/NotoSansJP/NotoSansJP-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Noto Serif JP (日本語明朝)
   ============================================ */

/* Regular (400) */

@font-face {
  font-family: 'Noto Serif JP';
  src: url('../fonts/NotoSerifJP/NotoSerifJP-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */

@font-face {
  font-family: 'Noto Serif JP';
  src: url('../fonts/NotoSerifJP/NotoSerifJP-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2. 順序を気にしなくていいもの（ワイルドカード） */

.footer {
  position: relative;
  z-index: 2;
}

.footer__wrap {
  background: url('/common/img/footer_bg.webp') no-repeat center center / cover;
  padding-block: clamp(
    calc(40 * var(--r)),
    calc(40 * var(--r)) + ((60 - 40) * var(--fluid-rate)),
    calc(60 * var(--r))
  );
}

.footer__nav-box {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 768px) {

.footer__nav-box {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
    "nav1 nav2 nav3 nav4"
    "nav1 nav2 nav3 nav4"
    "nav1 nav2 note note"
    ;
}
  }

@media (min-width: 768px) {

.footer__nav:nth-child(1) {
      grid-area: nav1;
  }
    }

@media (min-width: 768px) {

.footer__nav:nth-child(2) {
      grid-area: nav2;
  }
    }

@media (min-width: 768px) {

.footer__nav:nth-child(3) {
      grid-area: nav3;
  }
    }

@media (min-width: 768px) {

.footer__nav:nth-child(4) {
      grid-area: nav4;
  }
    }

@media (min-width: 768px) {

.footer__nav:nth-child(5) {
      grid-area: note;
  }
    }

@media (min-width: 768px) {

.footer__nav:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
}

.footer__nav:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 2;
}

.footer__nav:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
}

.footer__nav:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
}

.footer__nav:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
}
}

.footer__company-box {
  padding-block: clamp(
    calc(30 * var(--r)),
    calc(30 * var(--r)) + ((40 - 30) * var(--fluid-rate)),
    calc(40 * var(--r))
  );
}

.footer__copyright {
  background-color: var(--blue-700);
  padding-block: calc(23 * var(--r));
  text-align: center;
}

.footer__copyright-text {
  font-size: var(--fs-xs);
  line-height: 1;
  color: var(--white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  background-color: transparent;
}

.header.is-active {
  background-color: var(--white);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.is-active .header__wrap {
    background: transparent;
  }

.header.is-active .header__logo-link {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

@media(min-width: 768px) {

.header.is-active .header-nav__link {
      color: var(--black);
  }
      .header.is-active .header-nav__link::before {
        background-color: var(--black);
      }
    }

@media(min-width: 768px) {

.header.is-active .header__btn._recruit {
      color: var(--white);
      background-color: var(--blue-500);
  }
    }

@media(min-width: 768px) {

.header.is-active .header__hamburger span {
    background-color: var(--blue-500);
}
  }

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: calc(14 * var(--r));
  background: linear-gradient(var(--blue-500), transparent);
}

@media (min-width: 768px) {

.header__wrap {
    padding-right: calc(100 * var(--r));
}
  }

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-block: 0;
  width: clamp(
    calc(195 * var(--r)),
    calc(195 * var(--r)) + ((454 - 195) * var(--fluid-rate)),
    calc(454 * var(--r))
  );
}

.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white);
  padding: calc(23 * var(--r)) calc(15 * var(--r));
  border-radius: 0 0 calc(10 * var(--r)) 0;
  -webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
          box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.header__logo img {
  width: clamp(calc(160 * var(--r)), calc(160 * var(--r)) + (248 - 160) * var(--fluid-rate), calc(248 * var(--r)));
  height: auto;
}

.header__nav-box {
  display: none;
}

@media (min-width: 768px) {

.header__nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(40 * var(--r));
}
  }

.header__nav-box.is-open {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  background: linear-gradient(to right, var(--blue-500), var(--blue-300));
  padding-block: calc(74 * var(--r)) calc(40 * var(--r));
  padding-inline: calc(30 * var(--r));
  overflow-y: auto;
}

@media(min-width: 768px) {

.header-nav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(54 * var(--r));
    list-style: none;
}
  }

.is-open .header-nav__lists {
    display: block;
  }

.header-nav__list {
  position: relative;
  border-bottom: 1px solid var(--white);
}

@media (min-width: 768px) {

.header-nav__list {
    border-bottom: none;
}
  }

.header-nav__list::before {
  content: '';
  position: absolute;
  top: 1.3em;
  left: calc(15 * var(--r));
  width: 3px;
  height: 1.2em;
  background-color: var(--white);
}

@media (min-width: 768px) {

.header-nav__list::before {
    display: none;
}
  }

.header-nav__link {
  text-decoration: none;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--white);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: block;
  padding-block: calc(20 * var(--r));
  padding-inline: calc(25 * var(--r));
  position: relative;
}

@media (min-width: 768px) {

.header-nav__link {
    padding-block: calc(35 * var(--r));
    padding-inline: 0;
    display: inline-block;
}
  }

@media(min-width: 768px) {

.header-nav__link::before {
    content: '';
    position: absolute;
    bottom: calc(20 * var(--r));
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}
  }

@media(min-width: 768px) {

.header-nav__link:hover::before {
    width: 100%;
}
  }

.header-nav__link._accordion-btn.is-open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

@media(min-width: 768px) {

.header-nav__link._accordion-btn.is-open::before {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
}
  }

.header-nav__link._accordion-btn::before {
  content: '';
  position: absolute;
  top: 52%;
  right: calc(20 * var(--r));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 1em;
  background-color: var(--white);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (min-width: 768px) {

.header-nav__link._accordion-btn::before {
    bottom: calc(20 * var(--r));
    top: unset;
    right: unset;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    -webkit-transform: unset;
            transform: unset;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}
  }

@media(min-width: 768px) {

.header-nav__link._accordion-btn:hover::before {
    width: 100%;
}
  }

.header-nav__link._accordion-btn::after {
  content: '';
  position: absolute;
  top: 52%;
  right: calc(14 * var(--r));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  height: 3px;
  background-color: var(--white);
}

@media (min-width: 768px) {

.header-nav__link._accordion-btn::after {
    display: none;
}
  }

.header__util {
  margin-top: calc(40 * var(--r));
  display: -ms-grid;
  display: grid;
  gap: calc(30 * var(--r));
}

@media (min-width: 768px) {

.header__util {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(15 * var(--r));
    margin-top: 0;
}
  }

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(40 * var(--r));
  padding-block: calc(32 * var(--r));
  padding-inline: calc(25 * var(--r));
  border-radius: 9999px;
  text-decoration: none;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {

.header__btn {
    width: calc(180 * var(--r));
    padding-block: 0;
}
  }

.header__btn._recruit {
  position: relative;
  z-index: 2;
  background-color: var(--yellow-500);
  color: var(--blue-500);
}

.header__btn._recruit::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(30 * var(--r));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 1em;
  background-color: var(--blue-500);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (min-width: 768px) {

.header__btn._recruit::before {
    display: none;
}
  }

.header__btn._recruit.is-open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.header__btn._recruit::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(24 * var(--r));
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  height: 3px;
  background-color: var(--blue-500);
}

@media (min-width: 768px) {

.header__btn._recruit::after {
    display: none;
}
  }

.header__btn-sub-content {
  height: 0;
  overflow: hidden;
  translate: 0 calc(-38 * var(--r));
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}

@media(min-width: 768px) {

.header__btn-sub-content {
    display: none;
}
  }

.header__btn-sub-lists {
  display: -ms-grid;
  display: grid;
  gap: 1em;
  background-color: var(--blue-500);
  color: var(--white);
  padding: calc(58 * var(--r)) calc(20 * var(--r)) calc(28 * var(--r));
}

.header__btn-sub-link {
  font-size: calc(14 * var(--r));
  color: var(--white);
  line-height: calc(22 / 18);
  text-decoration: none;
  text-transform: uppercase;
}

.header__btn._lang {
  gap: calc(10 * var(--r));
  background-color: var(--white);
  color: #666;
  border: 1px solid #ccc;
}

.header__btn-icon {
  width: calc(20 * var(--r));
  height: calc(20 * var(--r));
  background: url('/common/img/icon_earth.webp') no-repeat center center / contain;
}

.header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  width: calc(48 * var(--r));
  height: calc(48 * var(--r));
  background-color: var(--blue-500);
}

@media (min-width: 768px) {

.header__hamburger {
    display: none;
}
  }

.header__hamburger-box {
  width: calc(30 * var(--r));
  height: calc(20 * var(--r));
  display: block;
  position: relative;
}

.header__hamburger-line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__hamburger-line:nth-child(1) { top: 0; }

.header__hamburger-line:nth-child(2) { top: 50%; -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); }

.header__hamburger-line:nth-child(3) { bottom: 0; }

.header__hamburger.is-active .header__hamburger-line:nth-child(1) { top: 50%; -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); transform: translateX(-50%) translateY(-50%) rotate(45deg); }

.header__hamburger.is-active .header__hamburger-line:nth-child(2) { opacity: 0; }

.header__hamburger.is-active .header__hamburger-line:nth-child(3) { bottom: 42%; -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg); transform: translateX(-50%) translateY(-50%) rotate(-45deg); }

/**********
** sub-menu
***********************************/

.sub-menu {
  position: relative;
}

@media (min-width: 768px) {

.sub-menu {
    position: static;
}
      .sub-menu:hover .sub-menu__wrap {
        opacity: 1;
        visibility: visible;
      }
  }

.sub-menu__wrap {
  /* SP: アコーディオン */
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
  background: color-mix(in srgb, var(--blue-500) 95%, transparent);

  /* PC: ドロップダウン */
}

@media (min-width: 768px) {

.sub-menu__wrap {
    height: auto;
    overflow: visible;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: color-mix(in srgb, var(--blue-500) 85%, transparent);
    padding-block: calc(60 * var(--r));
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}
  }

.sub-menu__contents {
  padding: calc(20 * var(--r));
  color: var(--white);
}

@media (min-width: 768px) {

.sub-menu__contents {
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(320 * var(--r)) calc(120 * var(--r)) 1fr;
    grid-template-columns: calc(320 * var(--r)) 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: calc(120 * var(--r));
    width: min(100%, calc(1290 * var(--r)));
    margin-inline: auto;
}
  }

.sub-menu__page-top-link {
  font-size: calc(14 * var(--r));
  color: var(--white);
  line-height: calc(22 / 18);
  text-decoration: none;
  text-transform: uppercase;
}

@media (min-width: 768px) {

.sub-menu__page-top-link {
    font-size: calc(18 * var(--r));
    font-weight: 700;
    border: 1px solid var(--white);
    border-radius: calc(infinity * 1px);
    padding-inline: calc(44 * var(--r)) calc(25 * var(--r));
    padding-block: calc(21 * var(--r));
    position: relative;
}
  }

@media (min-width: 768px) {

.sub-menu__page-top-link::before {
    content: '';
    position: absolute;
    top: 52%;
    left: calc(25 * var(--r));
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3px;
    height: calc(100% - calc(42 * var(--r)));
    background-color: var(--white);
}
  }

@media (min-width: 768px) {

.sub-menu__page-top-link::after {
    content: '';
    position: absolute;
    top: 52%;
    right: calc(25 * var(--r));
    width: calc(10 * var(--r));
    height: calc(10 * var(--r));
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
}
  }

.sub-menu__content {
  display: -ms-grid;
  display: grid;
  margin-top: calc(20 * var(--r));
}

@media (min-width: 768px) {

.sub-menu__content {
    -ms-grid-columns: 1fr calc(145 * var(--r)) 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(145 * var(--r));
}
  }

.sub-menu__lists {
  display: -ms-grid;
  display: grid;
  gap: calc(20 * var(--r));
}

.sub-menu__lists + .sub-menu__lists {
  margin-top: calc(20 * var(--r));
}

@media (min-width: 768px) {

.sub-menu__lists + .sub-menu__lists {
    margin-top: 0;
}
  }

.sub-menu__link {
  font-size: var(--fs-base);
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  display: block;
  position: relative;
}

@media (min-width: 768px) {

.sub-menu__link::before {
    content: '';
    position: absolute;
    top: 52%;
    right: 0;
    width: calc(10 * var(--r));
    height: calc(10 * var(--r));
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
}
  }

/**********
** layout
***********************************/

.inner {
  width: 100%;
  max-width: calc(var(--inner-width) * 1px);
  margin-inline: auto;

  /* SP(20px) 〜 PC(25px) まで滑らかに可変する余白 */
  padding-inline: clamp(
    calc(var(--padding-sp) * 1px),
    calc(var(--padding-sp) * 1px) + ((var(--padding-pc) - var(--padding-sp)) * var(--fluid-rate)),
    calc(var(--padding-pc) * 1px)
  );
}

.inner._sm {
    max-width: calc(1400 * var(--r));
  }

/**********
** anchor-nav
***********************************/

.anchor-nav {
  padding-block: clamp(
    calc(40 * var(--r)),
    calc(40 * var(--r)) + ((60 - 40) * var(--fluid-rate)),
    calc(60 * var(--r))
  );
  background-color: var(--gray-200);
  position: relative;
}

.anchor-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(1400 * var(--r));
  background: url('/common/img/bg.webp') no-repeat center center / cover;
}

.anchor__inner {
  position: relative;
  z-index: 2;
}

.anchor-nav__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(
    calc(8 * var(--r)),
    calc(8 * var(--r)) + ((16 - 8) * var(--fluid-rate)),
    calc(16 * var(--r))
  ) 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(
    calc(8 * var(--r)),
    calc(8 * var(--r)) + ((16 - 8) * var(--fluid-rate)),
    calc(16 * var(--r))
  );
}

@media (min-width: 768px) {

.anchor-nav__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}
  }

.anchor-nav__list._page-link {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

@media (min-width: 768px) {

.anchor-nav__list._page-link {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  }
    }

.anchor-nav__list._page-link2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

@media (min-width: 768px) {

.anchor-nav__list._page-link2 {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  }
    }

.anchor-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(10 * var(--r));
  width: 100%;
  padding-block: clamp(
    calc(14 * var(--r)),
    calc(14 * var(--r)) + ((20 - 14) * var(--fluid-rate)),
    calc(20 * var(--r))
  );
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  background-color: var(--blue-500);
  background-image: linear-gradient(to right, transparent 47%, color-mix(in srgb, var(--blue-300) 55%, transparent) 100%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
}

.anchor-nav__link:hover {
  opacity: 0.8;
}

.anchor-nav__link::after {
  content: '';
  position: absolute;
  top: 52%;
  right: calc(20 * var(--r));
  translate: 0 -50%;
  width: calc(18 * var(--r));
  height: calc(20 * var(--r));
  -webkit-mask-image: url('/common/img/icon_arrow_down.webp');
          mask-image: url('/common/img/icon_arrow_down.webp');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.anchor-nav__list._page-link .anchor-nav__link::after,
.anchor-nav__list._page-link2 .anchor-nav__link::after {
  rotate: 0deg;
}

.border-left-title {
  font-size: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((32 - 20) * var(--fluid-rate)),
    calc(32 * var(--r))
  );
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--blue-500);
  padding-left: calc(40 * var(--r));
  position: relative;
}

@media (min-width: 768px) {

.border-left-title {
    padding-left: calc(70 * var(--r));
}
  }

.border-left-title::before {
  content: '';
  position: absolute;
  top: calc(16 * var(--r));
  left: 0;
  width: calc(30 * var(--r));
  height: 1px;
  background-color: var(--blue-500);
}

@media (min-width: 768px) {

.border-left-title::before {
    top: calc(26 * var(--r));
    width: calc(60 * var(--r));
}
  }

.border-list {
  position: relative;
}

.border-list__items {
  padding-block: calc(40 * var(--r));
  padding-inline: calc(40 * var(--r));
  background-color: var(--white);
}

.border-list__link {
  display: -ms-grid;
  display: grid;
  gap: calc(20 * var(--r));
  padding-block: calc(20 * var(--r));
  position: relative;
}

@media (min-width: 768px) {

.border-list__link {
    -ms-grid-columns: calc(330 * var(--r)) calc(40 * var(--r)) 1fr;
    grid-template-columns: calc(330 * var(--r)) 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(40 * var(--r));
    padding-block: calc(40 * var(--r));
}
  }

.border-list__link:hover {
    background-color: var(--gray-200);
    opacity: 1;
  }

.border-list__item:not(:last-child) .border-list__link {
  border-bottom: 1px solid var(--gray-300);
}

@media (min-width: 768px) {

.border-list__link:has(.border-list__content)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(310 * var(--r));
    translate: 0 -50%;
    width: 1px;
    height: calc(100% - calc(40 * var(--r)));
    background-color: var(--gray-300);
}
  }

.border-list__content {
  display: -ms-grid;
  display: grid;
  font-size: var(--fs-md);
}

@media (min-width: 768px) {

.border-list__content {
    -ms-grid-columns: auto calc(40 * var(--r)) 1fr;
    grid-template-columns: auto 1fr;
    gap: calc(40 * var(--r));
}
  }

.border-list__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  margin-inline: auto;
}

.border-list__btn {
  text-align: center;
}

.border-list__btn--hidden {
  display: none;
}

/* ロード more で表示する隠れ項目 */

.border-list__item--hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition:
    max-height 0.5s ease-out,
    opacity 0.4s ease 0.1s;
  transition:
    max-height 0.5s ease-out,
    opacity 0.4s ease 0.1s;
}

.border-list__item--hidden.border-list__item--revealed {
  max-height: 500px;
  opacity: 1;
}

.border-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: calc(36 / 20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(10 * var(--r));
}

.border-title::before {
  content: '';
  width: 2px;
  height: 1.2em;
  background-color: var(--blue-500);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.border-title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(20 * var(--r)) calc(40 * var(--r));
  position: relative;
  padding-left: calc(20 * var(--r));
  text-align: center;
}

@media (min-width: 768px) {

.border-title2 {
    gap: calc(40 * var(--r)) calc(100 * var(--r));
    padding-left: calc(40 * var(--r));
}
  }

.border-title2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(4 * var(--r));
  height: 100%;
  background-color: var(--blue-500);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 768px) {

.border-title2::before {
    width: calc(8 * var(--r));
}
  }

.border-title2__tag {
  font-size: clamp(
    calc(14 * var(--r)),
    calc(14 * var(--r)) + ((28 - 14) * var(--fluid-rate)),
    calc(28 * var(--r))
  );
  font-weight: 700;
  line-height: calc(32 / 24);
  color: var(--blue-500);
  display: inline-block;
  min-width: calc(120 * var(--r));
  padding-block: calc(5 * var(--r)) calc(6 * var(--r));
  background-color: var(--blue-100);
  border-radius: calc(infinity * 1px);
  position: relative;
}

@media (min-width: 768px) {

.border-title2__tag {
    min-width: calc(320 * var(--r));
    padding-block: calc(14 * var(--r)) calc(15 * var(--r));
}
  }

.border-title2__tag:not(:first-child)::before {
  content: '×';
  position: absolute;
  top: 50%;
  left: calc(-30 * var(--r));
  translate: 0 -50%;
  font-size: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((40 - 20) * var(--fluid-rate)),
    calc(40 * var(--r))
  );
  font-weight: 400;
}

@media (min-width: 768px) {

.border-title2__tag:not(:first-child)::before {
    left: calc(-60 * var(--r));
}
  }

.border-title2__main {
  font-size: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((48 - 20) * var(--fluid-rate)),
    calc(48 * var(--r))
  );
  font-weight: 700;
  line-height: calc(56 / 48);
  color: var(--blue-500);
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: left;
}

.breadcrumbs__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(10 * var(--r)) calc(30 * var(--r));
}

@media (min-width: 768px) {

.breadcrumbs__lists {
    gap: calc(56 * var(--r));
}
  }

.breadcrumbs__list {
  position: relative;
}

.breadcrumbs__list:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(-20 * var(--r));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(10 * var(--r));
  height: 1px;
  background-color: var(--white);
}

@media (min-width: 768px) {

.breadcrumbs__list:not(:first-child)::before {
    left: calc(-34 * var(--r));
}
  }

.breadcrumbs__link,
.breadcrumbs__current {
  font-size: clamp(
    calc(12 * var(--r)),
    calc(12 * var(--r)) + ((20 - 12) * var(--fluid-rate)),
    calc(20 * var(--r))
  );
  color: var(--white);
  text-transform: uppercase;
}

.breadcrumbs__link {
  display: block;
  text-decoration: underline;
}

.btn {
  font-size: calc(18 * var(--r));
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  padding-block: calc(28 * var(--r));
  padding-inline: calc(20 * var(--r)) calc(40 * var(--r));
  display: inline-block;
  width: 100%;
  background-color: var(--blue-500);
  background-image: linear-gradient(to right, transparent 47%, color-mix(in srgb, var(--blue-300) 55%, transparent) 100%);
  position: relative;
}

@media (min-width: 768px) {

.btn {
    font-size: calc(16 * var(--r));
    min-width: calc(500 * var(--r));
    width: auto;
    padding-block: calc(28 * var(--r));
    padding-inline: calc(56 * var(--r)) calc(40 * var(--r));
}
  }

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(20 * var(--r));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(44 * var(--r));
  height: calc(16 * var(--r));
  background: url('/common/img/icon_arrow_white.webp') no-repeat center center / contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media(min-width: 768px) {

.btn::after {
    right: calc(40 * var(--r));
    width: calc(54 * var(--r));
    height: calc(20 * var(--r));
}
  }

.btn._sm {
  width: min(calc(380 * var(--r)), calc(285 / 390 * 100vw));
  padding-block: calc(15 * var(--r));
}

@media(min-width: 768px) {

.btn._sm {
    width: auto;
    min-width: calc(380 * var(--r));
    padding-block: calc(28 * var(--r));
    padding-left: calc(117 * var(--r));
}
  }

.btn:hover::after {
  -webkit-transform: translateX(calc(10 * var(--r))) translateY(-50%);
          transform: translateX(calc(10 * var(--r))) translateY(-50%);
}

.btn._flat-color {
  padding-block: calc(21 * var(--r));
  background-color: var(--blue-500);
  background-image: none;
  color: var(--white);
  -webkit-box-shadow: calc(5 * var(--r)) 0 calc(10 * var(--r)) color-mix(in srgb, var(--black) 10%, transparent);
          box-shadow: calc(5 * var(--r)) 0 calc(10 * var(--r)) color-mix(in srgb, var(--black) 10%, transparent);
}

@media (min-width: 768px) {

.btn._flat-color {
    min-width: calc(640 * var(--r));
    padding-block: calc(42 * var(--r));
}
  }

.btn._flat-white-color {
  padding-block: calc(21 * var(--r));
  background-color: var(--white);
  background-image: none;
  color: var(--blue-500);
  -webkit-box-shadow: calc(5 * var(--r)) 0 calc(10 * var(--r)) color-mix(in srgb, var(--black) 10%, transparent);
          box-shadow: calc(5 * var(--r)) 0 calc(10 * var(--r)) color-mix(in srgb, var(--black) 10%, transparent);
}

@media (min-width: 768px) {

.btn._flat-white-color {
    min-width: calc(640 * var(--r));
    padding-block: calc(42 * var(--r));
}
  }

.btn._flat-white-color::after {
  background: url('/common/img/icon_arrow_blue.webp') no-repeat center center / contain;
}

.btn._bg-none-side-line {
  font-size: clamp(
    calc(26 * var(--r)),
    calc(26 * var(--r)) + ((48 - 26) * var(--fluid-rate)),
    calc(48 * var(--r))
  );
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(80 * var(--r));
  min-width: auto;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn._bg-none-side-line:hover {
    opacity: 1;
  }

.btn._bg-none-side-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(2 * var(--r));
  height: 1.2em;
  background-color: var(--yellow-500);
}

.btn._bg-none-side-line::after {
  position: static;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn._bg-none-side-line:hover::after {
  -webkit-transform: translateX(calc(10 * var(--r))) translateY(0);
          transform: translateX(calc(10 * var(--r))) translateY(0);
}

.btn._more::after {
  rotate: 90deg;
}

@media (min-width: 768px) {

.btn._more::after {
    top: 40%;
    width: calc(34 * var(--r));
    height: calc(16 * var(--r));
}
  }

.card__contents {
  display: -ms-grid;
  display: grid;
  gap: calc(10 * var(--r));
  padding-inline: clamp(
    calc(18.5 * var(--r)),
    calc(18.5 * var(--r)) + ((27 - 18.5) * var(--fluid-rate)),
    calc(27 * var(--r))
  );
  background-color: var(--white);
  padding-block: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((35 - 20) * var(--fluid-rate)),
    calc(35 * var(--r))
  );
  border: 1px solid var(--black);
}

@media (min-width: 768px) {

.card__contents {
    -ms-grid-columns: calc(258 * var(--r)) calc(48 * var(--r)) 1fr;
    grid-template-columns: calc(258 * var(--r)) 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(48 * var(--r));
    height: 100%;
}
  }

.card__img {
  width: calc(181 * var(--r));
  margin-inline: auto;
}

@media (min-width: 768px) {

.card__img {
    width: calc(258 * var(--r));
    margin-inline: 0;
}
  }

.card__img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card__head {
  border-bottom: 1px solid var(--black);
  padding-bottom: calc(10 * var(--r));
}

.card__time {
  font-size: clamp(
    calc(14 * var(--r)),
    calc(14 * var(--r)) + ((16 - 14) * var(--fluid-rate)),
    calc(16 * var(--r))
  );
  font-weight: 700;
}

.card__text {
  font-size: var(--fs-md);
  line-height: calc(32 / 18);
  margin-top: calc(10 * var(--r));
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.card__tag-box {
  margin-top: calc(16 * var(--r));
}

.card__tag {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--blue-500);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(
    calc(135 * var(--r)),
    calc(135 * var(--r)) + ((220 - 135) * var(--fluid-rate)),
    calc(220 * var(--r))
  );
  background-color: var(--blue-100);
  padding-block: calc(11 * var(--r));
  border-radius: calc(infinity * 1px);
}

.cards {
  display: -ms-grid;
  display: grid;
  gap: clamp(calc(50 * var(--r)), calc(50 * var(--r)) + ((58 - 50) * var(--fluid-rate)), calc(58 * var(--r)));
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {

.cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}
  }

@media (min-width: 768px) {

.cards._col-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}
  }

.circle-btn {
  width: calc(60 * var(--r));
  height: calc(60 * var(--r));
  background-color: var(--blue-500);
  background-image: linear-gradient(to right, transparent 47%, color-mix(in srgb, var(--blue-300) 55%, transparent) 100%);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {

.circle-btn {
    width: calc(120 * var(--r));
    height: calc(120 * var(--r));
}
  }

.circle-btn img {
  -o-object-fit: contain;
     object-fit: contain;
  width: calc(28 * var(--r));
  height: calc(10 * var(--r));
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (min-width: 768px) {

.circle-btn img {
    width: calc(44 * var(--r));
    height: calc(16 * var(--r));
}
  }

.circle-btn:hover :is(.circle-btn img) {
    -webkit-transform: translateX(calc(10 * var(--r)));
            transform: translateX(calc(10 * var(--r)));
  }

.common-section {
  position: relative;
}

.common-section__wrap {
  padding-block: calc(60 * var(--r)) calc(50 * var(--r));
  overflow-x: clip;
}

@media (min-width: 768px) {

.common-section__wrap {
    padding-block: calc(140 * var(--r)) calc(100 * var(--r));
}
  }

._organization .common-section__wrap,
._access .common-section__wrap {
  background-color: var(--gray-200);
}

._news .common-section__wrap {
  background-color: var(--gray-200);
}

._news .common-section__wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(978 * var(--r));
  background: url('/news/img/news_bg.webp') no-repeat top center / contain;
}

._kessan .common-section__wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, var(--gray-200) 50%);
}

._disclosure .common-section__wrap {
  padding-top: calc(60 * var(--r));
}

@media (min-width: 768px) {

._disclosure .common-section__wrap {
    padding-top: calc(100 * var(--r));
}
  }

.common-section__wrap {
  padding-block: calc(60 * var(--r)) calc(50 * var(--r));
}

@media (min-width: 768px) {

.common-section__wrap {
    padding-block: calc(60 * var(--r)) calc(100 * var(--r));
}
  }

.common-section__inner {
  position: relative;
  z-index: 2;
}

.common-section__img,
.common-section__img-access-wrap,
.common-section__img-organization {
  position: relative;
  z-index: 2;
}

.common-section__img::before,
.common-section__img-access-wrap::before,
.common-section__img-organization::before {
  content: '';
  position: absolute;
  bottom: calc(-30 * var(--r));
  left: calc(50% - 50vw);
  width: calc(1480 / 1920 * 100vw);
  height: calc(80 * var(--r));
  background-color: var(--blue-500);
  background-image: linear-gradient(to left, transparent 47%, color-mix(in srgb, var(--blue-300) 55%, transparent) 100%);
}

@media (min-width: 768px) {

.common-section__img::before,
.common-section__img-access-wrap::before,
.common-section__img-organization::before {
    bottom: calc(-40 * var(--r));
    height: calc(126 * var(--r));
}
  }

.common-section__img-access-wrap::before,
.common-section__img-organization::before,
.common-section__img._rev::before {
  left: unset;
  right: calc(50% - 50vw);
  background-image: linear-gradient(to right, transparent 47%, color-mix(in srgb, var(--blue-300) 55%, transparent) 100%);
  z-index: 0;
}

.common-section__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  position: relative;
}

.common-section__table-area {
  margin-top: clamp(
    calc(30 * var(--r)),
    calc(30 * var(--r)) + ((60 - 30) * var(--fluid-rate)),
    calc(60 * var(--r))
  );
}

.common-section__grid {
  display: -ms-grid;
  display: grid;
}

.common-section__grid._access {
  gap: calc(20 * var(--r));
}

@media (min-width: 768px) {

.common-section__grid._access {
    -ms-grid-columns: 1fr calc(740 * var(--r));
    grid-template-columns: 1fr calc(740 * var(--r));
}
  }

.common-section__img-access-wrap {
  padding-block: calc(40 * var(--r));
  padding-inline: calc(55 * var(--r));
}

.common-section__img-access-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--white);
  z-index: 1;
  pointer-events: none;
}

.common-section__img-access-wrap .common-section__img-access,
.common-section__img-access-wrap .common-section__access-link {
  position: relative;
  z-index: 2;
}

.common-section__img-access-inner {
  position: relative;
  z-index: 3;
}

.common-section__img-access img,
.common-section__img-organization img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* 画像拡大モーダル用ズームアイコン（SPのみ表示） */

.common-section__img-zoom {
  position: absolute;
  bottom: calc(10 * var(--r));
  right: calc(10 * var(--r));
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  width: calc(30 * var(--r));
  height: calc(30 * var(--r));
}

@media (min-width: 768px) {

.common-section__img-zoom {
    display: none;
}
  }

.common-section__img-zoom:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/**********
** dl-table
***********************************/

.dl-table {
  border-top: 1px solid var(--gray-300);
}

.dl-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid var(--gray-300);
}

@media (min-width: 768px) {

.dl-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
  }

.dl-table__head {
  font-size: var(--fs-md);
  font-weight: 700;
  padding: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((30 - 20) * var(--fluid-rate)),
    calc(30 * var(--r))
  );
  background-color: var(--blue-100);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}

@media (min-width: 768px) {

.dl-table__head {
    width: calc(260 * var(--r));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
  }

.dl-table__data {
  font-size: var(--fs-base);
  line-height: 2;
  padding-block: calc(20 * var(--r));
  padding-inline: calc(10 * var(--r));
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 768px) {

.dl-table__data {
    padding-inline: calc(60 * var(--r));
}
  }

.dl-table__data-note {
  font-size: var(--fs-xs);
  display: block;
}

.dl-table__data-items {
  display: -ms-grid;
  display: grid;
  gap: calc(20 * var(--r));
}

.dl-table__data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20 * var(--r));
}

.dl-table__data-item._row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0;
}

.dl-table__data-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(80 * var(--r));
}

.dl-table._en .dl-table__data-label {
  width: calc(160 * var(--r));
}

.dl-table__data-item._row .dl-table__data-label {
  width: 100%;
  font-size: clamp(
    calc(16 * var(--r)),
    calc(16 * var(--r)) + ((20 - 16) * var(--fluid-rate)),
    calc(20 * var(--r))
  );
  line-height: 1.2;
}

.dl-table__data-item._row .dl-table__data-value {
  width: 100%;
  font-size: var(--fs-xs);
}

.footer-company__contents {
  display: -ms-grid;
  display: grid;
  gap: calc(20 * var(--r));
}

@media (min-width: 768px) {

.footer-company__contents {
    -ms-grid-columns: 1fr calc(570 * var(--r));
    grid-template-columns: 1fr calc(570 * var(--r));
}
  }

.footer-company__license-box {
  display: -ms-grid;
  display: grid;
  gap: calc(40 * var(--r));
}

@media (min-width: 768px) {

.footer-company__license-box {
    -ms-grid-columns: calc(370 * var(--r)) calc(52 * var(--r)) 1fr;
    grid-template-columns: calc(370 * var(--r)) 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(52 * var(--r));
}
  }

.footer-company__logo {
  height: calc(56 * var(--r));
}

@media (min-width: 768px) {

.footer-company__logo {
    height: calc(75 * var(--r));
}
  }

.footer-company__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 100%;
}

.footer-company__license {
  position: relative;
}

@media (min-width: 768px) {

.footer-company__license {
    padding-block: calc(16 * var(--r));
}
  }

.footer-company__license::before {
  content: '';
  position: absolute;
  top: calc(-20 * var(--r));
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}

@media (min-width: 768px) {

.footer-company__license::before {
    top: 0;
    left: calc(-26 * var(--r));
    width: calc(1 * var(--r));
    height: 100%;
}
  }

.footer-company__license-info {
  font-size: var(--fs-base);
}

.footer-company__partner-box {
  display: -ms-grid;
  display: grid;
  gap: calc(10 * var(--r));
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: calc(10 * var(--r));
  padding: calc(20 * var(--r));
}

@media (min-width: 768px) {

.footer-company__partner-box {
    padding: calc(27 * var(--r)) calc(37 * var(--r)) calc(20 * var(--r));
}
  }

.footer-company__partner-logo {
  height: calc(40 * var(--r));
}

.footer-company__partner-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 100%;
}

.footer-company__capital-relation {
  font-size: var(--fs-base);
}

.footer-nav__lists {
  display: -ms-grid;
  display: grid;
  gap: calc(10 * var(--r));
}

@media(min-width: 768px) {

.footer-nav__lists {
    gap: 0;
}
  }

.footer-nav__list {
  border-bottom: 1px solid var(--white);
  padding-inline: 1em;
  position: relative;
}

@media(min-width: 768px) {

.footer-nav__list {
    border-bottom: none;
    padding-inline: 0;
}
  }

.footer-nav__list::before {
  content: '';
  position: absolute;
  top: 1.8em;
  left: 0;
  translate: 0 -50%;
  width: 3px;
  height: 1em;
  background-color: var(--white);
}

@media(min-width: 768px) {

.footer-nav__list::before {
    top: 1.3em;
}
  }

.footer-nav__link {
  font-size: var(--fs-md);
  font-weight: 700;
  line-height: calc(40 / 18);
  color: var(--white);
  padding-inline: 1em;
  position: relative;
  display: block;
  padding-block: calc(10 * var(--r));
}

@media (min-width: 768px) {

.footer-nav__link {
    padding-block: 0;
}
  }

.footer-nav__link._accordion::before,
.footer-nav__link._accordion::after {
  content: '';
  position: absolute;
  top: 1.8em;
  translate: 0 -50%;
  background-color: var(--white);
}

@media (min-width: 768px) {

.footer-nav__link._accordion::before,
.footer-nav__link._accordion::after {
    display: none;
}
  }

.footer-nav__link._accordion::before {
  right: calc(10 * var(--r));
  width: 1em;
  height: 3px;
}

.footer-nav__link._accordion::after {
  right: calc(16 * var(--r));
  width: 3px;
  height: 1em;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}

.footer-nav__link._accordion.is-open::after {
  rotate: 90deg;
}

.footer-nav__sub-lists {
  display: -ms-grid;
  display: grid;
  gap: calc(10 * var(--r));
  margin-top: calc(6 * var(--r));
  padding-left: 1em;
  padding-block: calc(16 * var(--r));
  background-color: color-mix(in srgb, var(--blue-600) 50%, transparent);
}

@media (min-width: 768px) {

.footer-nav__sub-lists {
    padding-block: 0;
    background-color: transparent;
}
  }

.footer-nav__accordion-content {
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  overflow: hidden;
}

@media (min-width: 768px) {

.footer-nav__accordion-content {
    height: auto !important;
    overflow: visible !important;
}
  }

.footer-nav__sub-link {
  color: var(--white);
}

.footer-nav__accessibility-box {
  background-color: var(--gray-400);
  padding: clamp(
    calc(30 * var(--r)),
    calc(30 * var(--r)) + ((40 - 30) * var(--fluid-rate)),
    calc(40 * var(--r))
  );
  border-radius: calc(10 * var(--r));
}

.footer-nav__accessibility-note {
  font-size: var(--fs-base);
  line-height: 2;
}

.gray-disc-list {
  display: -ms-grid;
  display: grid;
  row-gap: calc(10 * var(--r));
}

.gray-disc-list__item {
  font-size: var(--fs-md);
  line-height: 2;
  padding-left: calc(20 * var(--r));
  position: relative;
}

._en .gray-disc-list__item {
    line-height: 1.3;
  }

.gray-disc-list__item::before {
  content: '';
  position: absolute;
  top: calc(10 * var(--r));
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background-color: var(--gray-300);
  border-radius: 50%;
}

@media (min-width: 768px) {

.gray-disc-list__item::before {
    top: calc(12 * var(--r));
}
  }

.gray-disc-list._en .gray-disc-list__item::before {
  top: calc(6 * var(--r));
}

.lead {
  font-size: var(--fs-md);
  line-height: 2;
}

.list-box {
  position: relative;
  z-index: 2;
}

.list-box__list {
  border-top: 1px solid var(--gray-300);
}

.list-box__list:last-child {
  border-bottom: 1px solid var(--gray-300);
}

.list-box__link {
  font-size: var(--fs-lg);
  display: -ms-grid;
  display: grid;
  gap: calc(20 * var(--r));
  padding-block: calc(30 * var(--r));
  padding-inline: calc(10 * var(--r));
}

@media (min-width: 768px) {

.list-box__link {
    gap: 0;
    padding-block: calc(40 * var(--r));
    padding-inline: calc(40 * var(--r));
}
  }

.list-box__link:hover {
    background-color: var(--gray-200);
    opacity: 1;
  }

@media (min-width: 768px) {

.list-box__link:has(.list-box__detail) {
    -ms-grid-columns: calc(258 * var(--r)) calc(50 * var(--r)) 1fr;
    grid-template-columns: calc(258 * var(--r)) 1fr;
    gap: calc(50 * var(--r));
}
  }

.list-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20 * var(--r));
}

.list-box__detail {
  position: relative;
}

.list-box__detail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(-50 * var(--r));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: calc(100% + calc(30 * var(--r)));
  background-color: var(--gray-300);
}

/**********
** modal - 画像拡大モーダル（共通コンポーネント）
***********************************/

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.4s,
    visibility 0.4s;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.modal__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: calc(1000 * var(--r));
  max-height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.modal.is-active .modal__content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.modal__content img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 calc(30 * var(--r)) rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 calc(30 * var(--r)) rgba(0, 0, 0, 0.5);
}

.modal__close {
  position: absolute;
  top: calc(20 * var(--r));
  right: calc(20 * var(--r));
  width: calc(44 * var(--r));
  height: calc(44 * var(--r));
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(30 * var(--r));
  height: calc(2 * var(--r));
  background-color: var(--white);
}

.modal__close span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.normal-title {
  font-size: clamp(
    calc(24 * var(--r)),
    calc(24 * var(--r)) + ((36 - 24) * var(--fluid-rate)),
    calc(36 * var(--r))
  );
  font-weight: 700;
  line-height: calc(45 / 36);
}

.page-header {
  overflow-x: clip;
}

.page-header__wrap {
  padding-block: calc(120 * var(--r)) calc(140 * var(--r));
  position: relative;
}

@media (min-width: 768px) {

.page-header__wrap {
    padding-block:
      min(calc(200 * var(--r)), calc(200 / 1920 * 100vw))
      min(calc(150 * var(--r)), calc(150 / 1920 * 100vw));
}
  }

.page-header__wrap::before {
  content: '';
  position: absolute;
  bottom: calc(20 * var(--r));
  left: 24%;
  z-index: 2;
  width: calc(300 / 390 * 100vw);
  height: calc(100 * var(--r));
  background: url('/common/img/page-header_bg.webp') no-repeat top left / cover;
  background-position: right bottom;
}

@media (min-width: 768px) {

.page-header__wrap::before {
    top: calc(90 * var(--r));
    bottom: unset;
    left: 54%;
    width: calc(1031 / 1920 * 100vw);
    height: min(calc(330 * var(--r)), calc(330 / 1920 * 100vw));
    background-position: right top;
}
  }

.page-header__wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14%;
  width: calc(340 / 390 * 100vw);
  height: calc(80 * var(--r));
  background-color: var(--blue-500);
  background-image: linear-gradient(to right, transparent 47%, color-mix(in srgb, var(--blue-300) 55%, transparent) 100%);
  -webkit-clip-path: polygon(calc(48 * var(--r)) 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(calc(48 * var(--r)) 0%, 100% 0, 100% 100%, 0% 100%);
}

@media (min-width: 768px) {

.page-header__wrap::after {
    top: calc(50% - calc(30 * var(--r)));
    top: calc(180 * var(--r));
    bottom: unset;
    left: 47%;
    width: calc(1231 / 1920 * 100vw);
    height: calc(298 * var(--r));
    -webkit-clip-path: polygon(calc(189 * var(--r)) 0%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(calc(189 * var(--r)) 0%, 100% 0, 100% 100%, 0% 100%);
}
  }

.page-header__breadcrumb {
  margin-top: clamp(
    calc(16 * var(--r)),
    calc(16 * var(--r)) + ((24 - 16) * var(--fluid-rate)),
    calc(24 * var(--r))
  );
}

.page-header__breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(8 * var(--r));
  font-size: var(--fs-xs);
  position: relative;
  z-index: 2;
}

.page-header__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(8 * var(--r));
}

.page-header__breadcrumb-item + .page-header__breadcrumb-item::before {
  content: '';
  width: calc(6 * var(--r));
  height: calc(6 * var(--r));
  border-top: 1px solid var(--blue-500);
  border-right: 1px solid var(--blue-500);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.page-header__breadcrumb-item a {
  color: var(--blue-500);
}

.page-header__breadcrumb-item a:hover {
  text-decoration: underline;
}

.page-header__breadcrumb-item[aria-current="page"] {
  color: var(--black);
}

.side-bar-title {
  position: relative;
  padding-left: clamp(calc(20 * var(--r)), calc(20 * var(--r)) + ((30 - 20) * var(--fluid-rate)), calc(30 * var(--r)));
  font-size: clamp(calc(23 * var(--r)), calc(23 * var(--r)) + ((32 - 23) * var(--fluid-rate)), calc(32 * var(--r)));
  font-weight: 700;
  line-height: calc(56 / 32);
  color: var(--blue-500);
}

.side-bar-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--blue-300) 50%, var(--blue-500) 50%);
}

.square-list__items {
  display: -ms-grid;
  display: grid;
}

.square-list__item {
  font-size: var(--fs-md);
  line-height: 2;
  padding-left: 1.4em;
  position: relative;
}

.square-list__item::before {
  content: '';
  position: absolute;
  top: calc(10 * var(--r));
  left: 0;
  width: calc(18 * var(--r));
  height: calc(18 * var(--r));
  background-color: var(--gray-300);
}

.text-large {
  font-size: var(--fs-lg);
  line-height: 2;
}

.text {
  font-size: var(--fs-md);
  line-height: 2;
}

/**********
** timeline
***********************************/

.timeline {
  border-top: 1px solid var(--gray-300);
}

.timeline__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid var(--gray-300);
}

@media (min-width: 768px) {

.timeline__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}
  }

.timeline__head {
  font-size: var(--fs-md);
  font-weight: 700;
  padding: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((36 - 20) * var(--fluid-rate)),
    calc(36 * var(--r))
  );
  padding-bottom: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 768px) {

.timeline__head {
    width: calc(260 * var(--r));
    padding-bottom: clamp(
      calc(20 * var(--r)),
      calc(20 * var(--r)) + ((36 - 20) * var(--fluid-rate)),
      calc(36 * var(--r))
    );
}
  }

.timeline__content {
  font-size: var(--fs-base);
  line-height: 2;
  padding: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((36 - 20) * var(--fluid-rate)),
    calc(36 * var(--r))
  );
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.title {
  position: relative;
}

.title::before {
  content: '';
  position: absolute;
  top: calc(18 * var(--r));
  left: 0;
  translate: 0 calc(-22 * var(--r));
  width: clamp(
    calc(36 * var(--r)),
    calc(36 * var(--r)) + ((48 - 36) * var(--fluid-rate)),
    calc(48 * var(--r))
  );
  height: calc(3 * var(--r));
  background-color: var(--blue-500);
}

@media (min-width: 768px) {

.title::before {
    top: 0;
}
  }

.title._white::before {
  background-color: var(--yellow-500);
}

.title._white2::before {
  background-color: var(--white);
}

.title._white .title__en {
  color: var(--white);
}

.title._white .title__ja,
.title._white2 .title__ja-lg {
  color: var(--white);
}

.title__en,
.title__ja-lg,
.title__ja-lg2 {
  font-size: clamp(
    calc(36 * var(--r)),
    calc(36 * var(--r)) + ((72 - 36) * var(--fluid-rate)),
    calc(72 * var(--r))
  );
  font-weight: 400;
  letter-spacing: 0.035em;
  font-family: var(--font-en);
  color: var(--blue-500);
  text-transform: capitalize;
}

.title__ja-lg {
  font-size: clamp(
    calc(36 * var(--r)),
    calc(36 * var(--r)) + ((64 - 36) * var(--fluid-rate)),
    calc(64 * var(--r))
  );
  font-family: var(--font-main);
}

.title__ja-lg2 {
  font-size: clamp(
    calc(28 * var(--r)),
    calc(28 * var(--r)) + ((64 - 28) * var(--fluid-rate)),
    calc(64 * var(--r))
  );
  line-height: 1.4;
  font-family: var(--font-main);
  color: var(--white);
}

.title__ja {
  font-size: clamp(
    calc(18 * var(--r)),
    calc(18 * var(--r)) + ((24 - 18) * var(--fluid-rate)),
    calc(24 * var(--r))
  );
  font-weight: 700;
  color: var(--blue-500);
}

/* @import-glob "object/project/*.css"; */

/**********
** utility
***********************************/

.mt-1 {
  margin-top: clamp(
    calc(8 * var(--r)),
    calc(8 * var(--r)) + ((16 - 8) * var(--fluid-rate)),
    calc(16 * var(--r))
  );
}

.mt-2 {
  margin-top: clamp(
    calc(12 * var(--r)),
    calc(12 * var(--r)) + ((24 - 12) * var(--fluid-rate)),
    calc(24 * var(--r))
  );
}

.mt-2 {
  margin-top: clamp(
    calc(16 * var(--r)),
    calc(16 * var(--r)) + ((32 - 16) * var(--fluid-rate)),
    calc(32 * var(--r))
  );
}

.mt-3 {
  margin-top: clamp(
    calc(20 * var(--r)),
    calc(20 * var(--r)) + ((40 - 20) * var(--fluid-rate)),
    calc(40 * var(--r))
  );
}

.mt-4 {
  margin-top: clamp(
    calc(40 * var(--r)),
    calc(40 * var(--r)) + ((60 - 40) * var(--fluid-rate)),
    calc(60 * var(--r))
  );
}

.mt-5 {
  margin-top: clamp(
    calc(60 * var(--r)),
    calc(60 * var(--r)) + ((80 - 60) * var(--fluid-rate)),
    calc(80 * var(--r))
  );
}

.mt-6 {
  margin-top: clamp(
    calc(80 * var(--r)),
    calc(80 * var(--r)) + ((100 - 80) * var(--fluid-rate)),
    calc(100 * var(--r))
  );
}

.mt-7 {
  margin-top: clamp(
    calc(100 * var(--r)),
    calc(100 * var(--r)) + ((120 - 100) * var(--fluid-rate)),
    calc(120 * var(--r))
  );
}

.mt-8 {
  margin-top: clamp(
    calc(120 * var(--r)),
    calc(120 * var(--r)) + ((140 - 120) * var(--fluid-rate)),
    calc(140 * var(--r))
  );
}

/* 表示 */

.u-hidden {
  display: none;
}

@media (max-width: 767px) {

.u-hidden-sp {
    display: none;
}
  }

@media (min-width: 768px) {

.u-hidden-pc {
    display: none;
}
  }

.u-page-top {
  position: fixed;
  bottom: 20px;
  right: calc(20 * var(--r));
  width: calc(60 * var(--r));
  height: calc(60 * var(--r));
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {

.u-page-top {
    width: calc(80 * var(--r));
    height: calc(80 * var(--r));
}
  }

.u-page-top.is-visible {
    opacity: 1;
    visibility: visible;
  }

.u-page-top img {
    width: 100%;
    height: 100%;
  }

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

.u-bold {
  font-weight: 700;
}

.u-underline-link {
  text-decoration: underline;
}

.u-external-link,
.u-external-link-blue {
  position: relative;
}

.u-external-link::after,
.u-external-link-blue::after {
  content: '';
  position: absolute;
  top: calc(6 * var(--r));
  right: calc(-24 * var(--r));
  width: calc(13 * var(--r));
  height: calc(13 * var(--r));
  background: url('/common/img/icon_external.webp') no-repeat center center / contain;
}

.u-external-link-blue::after {
  background: url('/common/img/icon_external_blue.webp') no-repeat center center / contain;
}

.u-external-link::before {
  display: none;
}

.u-external-link::after {
  left: calc(50% + calc(10 * var(--r)));
}

@media (min-width: 768px) {

.u-external-link::after {
    right: calc(-3 * var(--r));
    left: unset;
}
  }

.u-external-link._footer::after {
  right: calc(-24 * var(--r));
  left: unset;
}

.u-external-link2::after {
  background: url('/common/img/icon_external.webp') no-repeat center center / contain;
  -webkit-mask-image: none;
          mask-image: none;
}

.u-blue-link {
  color: var(--blue-500);
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.u-blue-link:hover {
    opacity: 0.8;
  }

.u-pdf {
  position: relative;
}

.u-pdf::before {
  content: '';
  position: absolute;
  top: calc(2 * var(--r));
  right: calc(-24 * var(--r));
  width: calc(16 * var(--r));
  height: calc(18 * var(--r));
  background: url('/common/img/icon_pdf.webp') no-repeat center center / contain;
}

@media (min-width: 768px) {

.u-pdf::before {
    top: 0;
    right: calc(-32 * var(--r));
    width: calc(26 * var(--r));
    height: calc(28 * var(--r));
}
  }

.u-text-right {
  text-align: right;
}

/* Page: ページごとの固有スタイル */

/* 各ページのスタイルは個別のCSSファイルで読み込む */
