@charset "UTF-8";
/* ==========================================================================
Base
========================================================================== */
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap";
/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  padding: 0; /* パディングも常に0に */
  margin: 0; /* マージンは0に */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  block-size: 0;
  overflow: visible;
  color: inherit;
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  border-block-start: 1px solid;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
}

:root {
  --header-height-sp: calc(72 * 100vw / 375);
  --header-height-pc: clamp(57.6px, 7.5vw, 108px);
  --black-100: #242424;
  --beige-100: #faf0da;
  --beige-10: #fffaef;
  --yellow-120: #d5a000;
  --yellow-100: #f8b933;
  --yellow-90: #ffca58;
  --yellow-30: #ffde99;
  --blue-100: #6981a9;
  --orange-100: #ec7d24;
  --gray-100: #646464;
  --gray-50: #c6c7c7;
  --gray-30: #dbdcdc;
  --gray-10: #f9f9f9;
  --white: #fff;
  --color-primary-01: #0566d4;
  --color-primary-02: #6bb1eb;
  --color-secondary-01: #f9e31e;
  --color-secondary-02: #f7ee9c;
  --color-text-01: #242424;
  --color-text-02: #fd7500;
  --color-text-03: #fff;
  --color-background-01: #fff;
  --color-background-02: #242424;
  --color-background-03: #fd7500;
  --color-border-01: #bdbdbd;
  --color-border-02: #737373;
  --color-table-cell-01: #fff;
  --color-table-cell-02: #f0f6ff;
  --color-disabled-01: #ccc;
  --color-button-primary: #0566d4;
  --color-button-secondary: #2e2e2e;
  --color-button-tertiary: #fff;
  --font-family-primary: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto", jcocustomfont, "游ゴシック体", yugothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --line-height-l: 1.85;
  --line-height-m: 1.5;
  --line-height-s: 1.3;
  --letter-spacing-l: 0.08em;
  --letter-spacing-m: 0.04em;
  --letter-spacing-s: 0;
  --leading-trim: calc((1em - 1lh) / 2);
}

/* ここに追加：OSごとのウェイト指定を定義 */
@font-face {
  font-family: JCOCustomFont;
  font-weight: 400;
  src: local("Yu Gothic Medium"), local("Hiragino Sans W3"), local("Noto Sans JP Regular");
}
@font-face {
  font-family: JCOCustomFont;
  font-weight: 700;
  src: local("Yu Gothic Bold"), local("Hiragino Sans W6"), local("Noto Sans JP Bold");
}
/* Base
----------------------------------------------------------------- */
html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-padding-top: var(--header-height-sp);
  scroll-behavior: smooth;
}
@media print, screen and (min-width:768px) {
  html {
    scroll-padding-top: var(--header-height-pc);
  }
}
html:has(dialog[open]) {
  overflow: hidden;
}

body {
  font-family: JCOCustomFont, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-optical-sizing: auto;
  font-feature-settings: "palt" on, "pkna" on;
  line-height: var(--line-height-l);
  color: var(--black-100);
  letter-spacing: var(--letter-spacing-l);
  background: var(--white);
  background: #000;
  -webkit-font-smoothing: antialiased;
}
:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a):hover {
  text-decoration: none;
}
:where(ol),
:where(ul),
:where(li),
:where(dl),
:where(dt),
:where(dd) {
  list-style: none;
}

:where(em),
:where(i) {
  font-style: normal;
}

:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  font-size: 2rem;
  font-weight: normal;
}

:where(p) {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: var(--line-height-l);
}

:where(em),
:where(strong) {
  font-style: normal;
  font-weight: bold;
}

:where(img) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

:where(button) {
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

:where(input) {
  appearance: none;
  background-color: var(--color-background-01);
  border: 1px solid var(--color-border-01);
}

:where(textarea) {
  appearance: none;
  background-color: var(--color-background-01);
  border: 1px solid var(--color-border-01);
}

/* ==========================================================================
Vender
========================================================================== */
/* ==========================================================================
Layout
========================================================================== */
.l-page {
  position: relative;
  z-index: 1;
  color: var(--color-text-01);
  background: var(--color-background-01);
}
@media print, screen and (min-width:768px) {
  .l-page--slim .l-page__content .l-page__inner {
    max-width: 820px;
  }
}
.l-page--home {
  overflow: hidden;
}
.l-page__content {
  padding: 0 calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .l-page__content {
    padding: 0 clamp(26.6666666667px, 3.4722222222vw, 50px);
  }
}
.l-page__content--common {
  background: url("../images/common/bg_contents_sp2.png") no-repeat center top;
  background-size: calc(470 * 100vw / 375) auto;
}
@media print, screen and (min-width:768px) {
  .l-page__content--common {
    background: url("../images/common/bg_contents.png") no-repeat left 50% top clamp(31.4666666667px, 4.0972222222vw, 59px);
    background-size: clamp(781.3333333333px, 101.7361111111vw, 1465px) auto;
  }
}
.l-page__content--common .l-page__inner {
  padding-block: calc(50 * 100vw / 375) calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .l-page__content--common .l-page__inner {
    max-width: 1282px;
    padding: clamp(40px, 5.2083333333vw, 75px) clamp(40px, 5.2083333333vw, 75px) clamp(53.3333333333px, 6.9444444444vw, 100px);
    margin-inline: auto;
    border-inline: 1px solid var(--black-100);
  }
}
.l-page__inner {
  width: 100%;
  margin: 0 auto;
}
@media print, screen and (min-width:768px) {
  .l-page__inner {
    max-width: 1120px;
  }
}
.l-page__inner > *:first-child {
  padding-top: 0;
  margin-top: 0;
}
.l-page__inner2 {
  padding-top: calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .l-page__inner2 {
    display: flex;
    column-gap: clamp(44.8px, 5.8333333333vw, 84px);
    max-width: clamp(642.1333333333px, 83.6111111111vw, 1204px);
    padding-top: clamp(53.3333333333px, 6.9444444444vw, 100px);
    margin: 0 auto;
  }
}
.l-page__inner2-main > *:first-child {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
@media print, screen and (min-width:768px) {
  .l-page__inner2-main {
    width: clamp(466.1333333333px, 60.6944444444vw, 874px);
    padding-left: clamp(29.8666666667px, 3.8888888889vw, 56px);
  }
}
@media print, screen and (min-width:768px) {
  .l-page__inner2-side {
    width: clamp(131.2px, 17.0833333333vw, 246px);
  }
  .l-page__inner2-side ul {
    position: sticky;
    top: var(--header-height-pc);
  }
  .l-page__inner2-side ul li {
    padding-left: clamp(8.5333333333px, 1.1111111111vw, 16px);
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    line-height: 1.3em;
  }
  .l-page__inner2-side ul li:not(:first-child) {
    margin-top: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
  .l-page__inner2-side ul li:first-child {
    padding-top: 0;
    margin-top: 0;
  }
  .l-page__inner2-side ul li a {
    position: relative;
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: var(--letter-spacing-m);
    transition: color 0.3s;
  }
  .l-page__inner2-side ul li a.is-current {
    text-decoration: underline;
    text-underline-offset: clamp(2.6666666667px, 0.3472222222vw, 5px);
  }
  .l-page__inner2-side ul li a.is-current::before {
    position: absolute;
    top: clamp(3.2px, 0.4166666667vw, 6px);
    left: clamp(-16px, -1.1111111111vw, -8.5333333333px);
    display: block;
    width: clamp(4.2666666667px, 0.5555555556vw, 8px);
    height: clamp(4.2666666667px, 0.5555555556vw, 8px);
    content: "";
    background: #f8b933;
    border-radius: 50%;
  }
}
@media print and (hover: hover), screen and (min-width:768px) and (hover: hover) {
  .l-page__inner2-side ul li a:hover {
    color: #df9d00;
  }
}

body.post-type-archive-people .l-page__content--common,
body.jobs .l-page__content--common {
  background: url("../images/common/bg_contents_sp.png") no-repeat center top;
  background-size: calc(470 * 100vw / 375) auto;
}
@media print, screen and (min-width:768px) {
  body.post-type-archive-people .l-page__content--common,
  body.jobs .l-page__content--common {
    background: url("../images/common/bg_contents.png") no-repeat left 50% top clamp(31.4666666667px, 4.0972222222vw, 59px);
    background-size: clamp(781.3333333333px, 101.7361111111vw, 1465px) auto;
  }
}

/* ==========================================================================
Component（カスタムブロック以外）
========================================================================== */
.c-header {
  position: fixed;
  top: calc(10 * 100vw / 375);
  right: calc(10 * 100vw / 375);
  left: calc(10 * 100vw / 375);
  z-index: 1000;
  max-width: 1380px;
  height: calc(52 * 100vw / 375);
  margin: auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: calc(10 * 100vw / 375);
  transition: background-color 400ms ease;
}
.l-page--home .c-header {
  opacity: 0;
}
@media print, screen and (min-width:768px) {
  .c-header {
    top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    right: clamp(10.6666666667px, 1.3888888889vw, 20px);
    left: clamp(10.6666666667px, 1.3888888889vw, 20px);
    height: clamp(36.2666666667px, 4.7222222222vw, 68px);
    border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 calc(10 * 100vw / 375);
  margin: 0 auto;
}
@media print, screen and (min-width:768px) {
  .c-header__inner {
    padding: clamp(10.1333333333px, 1.3194444444vw, 19px) clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-header__logo {
  position: relative;
  z-index: 200;
  flex: 0 0 auto;
  height: auto;
}
.c-header__logo a {
  display: flex;
  column-gap: calc(10 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-header__logo a {
    column-gap: clamp(8px, 1.0416666667vw, 15px);
  }
}
.c-header__logo a img {
  display: block;
  width: auto;
  height: calc(21 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-header__logo a img {
    height: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-header__logo a span {
  font-size: calc(13 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .c-header__logo a span {
    font-size: clamp(8px, 1.0416666667vw, 15px);
  }
}
.c-header__content {
  height: 100%;
}
.c-header__navigation {
  height: 100%;
}
@media print, screen and (min-width:768px) {
  .c-header__navigation {
    display: flex;
    column-gap: clamp(12.8px, 1.6666666667vw, 24px);
    align-items: center;
  }
}
@media print, screen and (min-width:768px) {
  .c-header__navigation-list {
    display: flex;
    column-gap: clamp(10.6666666667px, 1.3888888889vw, 20px);
    align-items: stretch;
    height: 100%;
  }
  .c-header__navigation-list > li {
    position: relative;
    anchor-name: --tooltip-anchor;
  }
  .c-header__navigation-list > li:hover .c-header__navigation-sub {
    display: block;
    opacity: 1;
  }
  @starting-style {
    .c-header__navigation-list > li:hover .c-header__navigation-sub {
      opacity: 0;
    }
  }
  .c-header__navigation-list > li > a {
    display: flex;
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    align-items: center;
    height: 100%;
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-weight: 700;
  }
}
@media print and (hover: hover), screen and (min-width:768px) and (hover: hover) {
  .c-header__navigation-list > li > a {
    transition: color 200ms ease;
  }
  .c-header__navigation-list > li > a:hover {
    color: var(--yellow-100);
    text-decoration: underline;
  }
}
@media print, screen and (min-width:768px) {
  .c-header__navigation-list > li > a[aria-current=page] {
    color: var(--yellow-100);
  }
}
.c-header__navigation-sub {
  position: absolute;
  bottom: anchor(bottom);
  left: anchor(left);
  display: none;
  padding-top: clamp(17.0666666667px, 2.2222222222vw, 32px);
  position-anchor: --tooltip-anchor;
  opacity: 0;
  transition: opacity 300ms ease;
}
.c-header__navigation-sub dl {
  width: clamp(148.2666666667px, 19.3055555556vw, 278px);
  padding: clamp(12.8px, 1.6666666667vw, 24px);
  background: var(--white);
  border: 1px solid #000;
  border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
}
.c-header__navigation-sub dl dt {
  display: flex;
  column-gap: clamp(6.4px, 0.8333333333vw, 12px);
  align-items: center;
  font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  font-weight: 600;
  line-height: var(--line-height-m);
  letter-spacing: var(--letter-spacing-m);
}
.c-header__navigation-sub dl dt::before {
  display: block;
  flex-shrink: 0;
  width: clamp(4.2666666667px, 0.5555555556vw, 8px);
  height: clamp(4.2666666667px, 0.5555555556vw, 8px);
  content: "";
  background: var(--orange-100);
  border-radius: 50%;
}
.c-header__navigation-sub dl dd {
  margin-top: clamp(12.8px, 1.6666666667vw, 24px);
}
.c-header__navigation-sub dl dd ul li:not(:first-child) {
  margin-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
}
.c-header__navigation-sub dl dd ul li a {
  display: flex;
  column-gap: clamp(6.4px, 0.8333333333vw, 12px);
  font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  font-weight: 600;
  line-height: var(--line-height-m);
  letter-spacing: var(--letter-spacing-m);
}
.c-header__navigation-sub dl dd ul li a::before {
  display: block;
  flex-shrink: 0;
  width: clamp(4.2666666667px, 0.5555555556vw, 8px);
  height: 1px;
  margin-top: clamp(5.8666666667px, 0.7638888889vw, 11px);
  content: "";
  background: var(--black-100);
}
.c-header__navigation-btns {
  display: flex;
  column-gap: clamp(3.2px, 0.4166666667vw, 6px);
}
.c-header__navigation-btns a {
  position: relative;
  z-index: 1;
  display: flex;
  column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
  align-items: center;
  padding: clamp(5.3333333333px, 0.6944444444vw, 10px) clamp(8.5333333333px, 1.1111111111vw, 16px);
  overflow: hidden;
  font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: var(--black-100);
  border: 1px solid var(--black-100);
  border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
}
.c-header__navigation-btns a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.c-header__navigation-btns a svg {
  width: clamp(8px, 1.0416666667vw, 15px);
  height: clamp(4.8px, 0.625vw, 9px);
}
@media (hover: hover) {
  .c-header__navigation-btns a:hover {
    color: var(--black-100);
    border: 1px solid var(--yellow-100);
  }
  .c-header__navigation-btns a:hover::after {
    transform: scale(1, 1);
  }
  .c-header__navigation-btns a:hover svg {
    color: var(--black-100);
  }
}
.c-header__burger {
  position: relative;
  z-index: 200;
  display: flex;
  flex: 0 0 calc(40 * 100vw / 375);
  align-items: center;
  justify-content: center;
  width: calc(44 * 100vw / 375);
  height: calc(32 * 100vw / 375);
  padding: 0;
  margin: 0;
  background: var(--black-100);
  border-radius: 6px;
}
@media print, screen and (min-width:768px) {
  .c-header__burger {
    display: none;
  }
}
.c-header__burger[aria-expanded=true] .c-header__burger-icon > span:nth-child(1) {
  transform: translateY(0) rotate(-20deg);
}
.c-header__burger[aria-expanded=true] .c-header__burger-icon > span:nth-child(2) {
  transform: translateY(0) rotate(20deg);
}
.c-header__burger-icon {
  position: relative;
  display: block;
  width: calc(44 * 100vw / 375);
  height: calc(32 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-header__burger-icon {
    width: clamp(16px, 2.0833333333vw, 30px);
    height: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-header__burger-icon span {
  position: absolute;
  top: calc(15 * 100vw / 375);
  left: calc(10 * 100vw / 375);
  display: block;
  width: calc(24 * 100vw / 375);
  height: calc(1 * 100vw / 375);
  background-color: var(--color-background-01);
  transition: transform 200ms;
}
@media print, screen and (min-width:768px) {
  .c-header__burger-icon span {
    top: clamp(7.4666666667px, 0.9722222222vw, 14px);
    width: clamp(16px, 2.0833333333vw, 30px);
    height: clamp(1.0666666667px, 0.1388888889vw, 2px);
  }
}
.c-header__burger-icon span:nth-child(1) {
  transform: translateY(calc(-3 * 100vw / 375));
}
@media print, screen and (min-width:768px) {
  .c-header__burger-icon span:nth-child(1) {
    transform: translateY(clamp(-8px, -0.5555555556vw, -4.2666666667px));
  }
}
.c-header__burger-icon span:nth-child(2) {
  transform: translateY(calc(3 * 100vw / 375));
}
@media print, screen and (min-width:768px) {
  .c-header__burger-icon span:nth-child(2) {
    transform: translateY(clamp(4.2666666667px, 0.5555555556vw, 8px));
  }
}

.c-footer {
  padding: calc(64 * 100vw / 375) calc(20 * 100vw / 375) calc(12 * 100vw / 375);
  background: var(--white);
}
@media print, screen and (min-width:768px) {
  .c-footer {
    padding: clamp(38.4px, 5vw, 72px) clamp(10.6666666667px, 1.3888888889vw, 20px) 0;
  }
}
@media print, screen and (min-width:768px) {
  .c-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
  }
}
.c-footer__logo a {
  display: flex;
  column-gap: calc(16 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-footer__logo a {
    column-gap: clamp(8px, 1.0416666667vw, 15px);
  }
}
.c-footer__logo a img {
  display: block;
  width: auto;
  height: calc(28 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-footer__logo a img {
    height: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-footer__logo a span {
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .c-footer__logo a span {
    font-size: clamp(8px, 1.0416666667vw, 15px);
  }
}
.c-footer__navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(32 * 100vw / 375) calc(25 * 100vw / 375);
  margin-top: calc(48 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation {
    display: flex;
    column-gap: 0;
    justify-content: space-between;
    margin-top: clamp(27.2px, 3.5416666667vw, 51px);
  }
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation-block {
    width: auto;
  }
}
.c-footer__navigation-block:nth-child(4) {
  grid-column: 2;
  grid-row: 2/span 2;
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation-block:nth-child(4) {
    grid-column: unset;
    grid-row: unset;
  }
}
.c-footer__navigation-block:last-child {
  grid-column: 1;
  grid-row: 3;
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation-block:last-child {
    grid-column: unset;
    grid-row: unset;
    width: auto;
  }
}
.c-footer__navigation-title {
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation-title {
    font-size: clamp(9.0666666667px, 1.1805555556vw, 17px);
  }
}
.c-footer__navigation-title + .c-footer__navigation-title {
  margin-top: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation-title + .c-footer__navigation-title {
    margin-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-footer__navigation ul {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation ul {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-footer__navigation ul li {
  margin-top: calc(8 * 100vw / 375);
  line-height: var(--line-height-s);
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation ul li {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-footer__navigation ul li a {
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation ul li a {
    font-size: clamp(8px, 1.0416666667vw, 15px);
  }
}
.c-footer__navigation ul li a[target=_blank]::after {
  display: inline-block;
  width: calc(10 * 100vw / 375);
  height: calc(10 * 100vw / 375);
  margin-left: calc(4 * 100vw / 375);
  content: "";
  background: url("../images/common/icon_newwin.svg") no-repeat center/contain;
}
@media print, screen and (min-width:768px) {
  .c-footer__navigation ul li a[target=_blank]::after {
    width: clamp(5.3333333333px, 0.6944444444vw, 10px);
    height: clamp(5.3333333333px, 0.6944444444vw, 10px);
    margin-left: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.c-footer__navigation a {
  display: inline;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0 1px;
  transition: background-size 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-footer__navigation a:hover {
  background-position: 0% 100%;
  background-size: 100% 1px;
}
.c-footer__extra {
  padding: calc(20 * 100vw / 375);
  margin: calc(24 * 100vw / 375) calc(-20 * 100vw / 375) 0;
  border-top: 1px solid var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .c-footer__extra {
    padding: clamp(8.5333333333px, 1.1111111111vw, 16px) 0;
    margin: clamp(42.6666666667px, 5.5555555556vw, 80px) clamp(-20px, -1.3888888889vw, -10.6666666667px) 0;
  }
}
@media print, screen and (min-width:768px) {
  .c-footer__extra-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width:768px) {
  .c-footer__extra ul {
    display: flex;
    column-gap: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-footer__extra ul li {
  margin-top: calc(8 * 100vw / 375);
  line-height: var(--line-height-s);
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .c-footer__extra ul li {
    margin-top: 0;
  }
}
.c-footer__extra ul li a {
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-footer__extra ul li a {
    font-size: clamp(6.9333333333px, 0.9027777778vw, 13px);
  }
}
.c-footer__extra ul li a[target=_blank]::after {
  display: inline-block;
  width: calc(10 * 100vw / 375);
  height: calc(10 * 100vw / 375);
  margin-left: calc(4 * 100vw / 375);
  content: "";
  background: url("../images/common/icon_newwin.svg") no-repeat center/contain;
}
@media print, screen and (min-width:768px) {
  .c-footer__extra ul li a[target=_blank]::after {
    width: clamp(5.3333333333px, 0.6944444444vw, 10px);
    height: clamp(5.3333333333px, 0.6944444444vw, 10px);
    margin-left: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.c-footer__extra ul a {
  display: inline;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0 1px;
  transition: background-size 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-footer__extra ul a:hover {
  background-position: 0% 100%;
  background-size: 100% 1px;
}
.c-footer__copy {
  margin-top: calc(20 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  line-height: 1.8;
  letter-spacing: var(--letter-spacing-m);
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .c-footer__copy {
    margin-top: 0;
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
    text-align: left;
  }
}

.c-burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  overflow-y: scroll;
  overscroll-behavior: none;
  pointer-events: none;
  border: 0;
  opacity: 0;
  transition: opacity 300ms;
}
@media print, screen and (min-width:768px) {
  .c-burger-menu {
    top: clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.c-burger-menu[open] {
  pointer-events: auto;
  opacity: 1;
}
@starting-style {
  .c-burger-menu[open] {
    opacity: 0;
  }
}
.c-burger-menu__body {
  padding: calc(76 * 100vw / 375) calc(20 * 100vw / 375);
  color: var(--black-100);
  background: var(--white) url("../images/common/bg_burger.svg") no-repeat right bottom;
}
.c-burger-menu__btns {
  padding: 0 calc(20 * 100vw / 375) calc(40 * 100vw / 375);
  margin: 0 calc(-20 * 100vw / 375);
  border-bottom: 1px solid var(--gray-30);
}
.c-burger-menu__btns ul {
  display: flex;
  column-gap: calc(9 * 100vw / 375);
}
.c-burger-menu__btns ul li {
  width: calc((100% - 9 * 100vw / 375) / 2);
}
.c-burger-menu__btns ul li:last-child a {
  background-color: var(--blue-100);
}
.c-burger-menu__btns ul li a {
  padding: calc(16 * 100vw / 375) calc(20 * 100vw / 375);
  line-height: 1;
  background-color: var(--orange-100);
}
.c-burger-menu__btns ul li a::after {
  display: none;
}
.c-burger-menu__btns ul li a .c-button__text,
.c-burger-menu__btns ul li a .c-button__icon {
  color: var(--white);
}
.c-burger-menu__link {
  margin-top: calc(24 * 100vw / 375);
}
.c-burger-menu__link a {
  display: flex;
  column-gap: calc(7 * 100vw / 375);
  align-items: center;
  justify-content: center;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  color: var(--black-100);
}
.c-burger-menu__link a svg {
  flex-shrink: 0;
  width: calc(11 * 100vw / 375);
  height: calc(7 * 100vw / 375);
}
.c-burger-menu__navigation > li {
  margin-top: calc(30 * 100vw / 375);
}
.c-burger-menu__navigation > li:not(:first-child) {
  margin-top: calc(32 * 100vw / 375);
}
.c-burger-menu__navigation > li > a {
  display: block;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--black-100);
}
.c-burger-menu__navigation > li details[open] summary::after {
  transform: rotate(0);
}
.c-burger-menu__navigation > li details summary {
  position: relative;
  display: block;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  list-style-type: none;
  border-bottom: 1px solid var(--black-100);
}
.c-burger-menu__navigation > li details summary::before, .c-burger-menu__navigation > li details summary::after {
  position: absolute;
  top: calc(10 * 100vw / 375);
  right: calc(10 * 100vw / 375);
  display: block;
  width: calc(14 * 100vw / 375);
  height: calc(2 * 100vw / 375);
  content: "";
  background: var(--orange-100);
}
.c-burger-menu__navigation > li details summary::after {
  transform: rotate(90deg);
  transition: transform 300ms;
}
.c-burger-menu__navigation > li details summary::marker {
  display: none;
}
.c-burger-menu__navigation-inner ul {
  margin: calc(20 * 100vw / 375) calc(10 * 100vw / 375) 0;
}
.c-burger-menu__navigation-inner ul li {
  margin-top: calc(10 * 100vw / 375);
}
.c-burger-menu__navigation-inner ul li:first-child a {
  font-weight: 700;
}
.c-burger-menu__navigation-inner ul li:first-child a::before {
  display: block;
  width: calc(7 * 100vw / 375);
  height: calc(7 * 100vw / 375);
  content: "";
  background: var(--orange-100);
  border-radius: 50%;
}
.c-burger-menu__navigation-inner ul li a {
  display: block;
  display: flex;
  column-gap: calc(7 * 100vw / 375);
  align-items: center;
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: var(--letter-spacing-m);
}
.c-burger-menu__navigation-inner ul li a::before {
  display: block;
  width: calc(7 * 100vw / 375);
  height: 1px;
  content: "";
  background: var(--gray-50);
}

.c-page-title {
  padding: calc(75 * 100vw / 375) calc(29 * 100vw / 375) calc(40 * 100vw / 375);
  overflow-x: hidden;
  background: url("../images/common/bg_c_title_sp.png") no-repeat center/cover;
  border-bottom: none;
  box-shadow: 0 1px 0 0 var(--color-background-02);
}
@media print, screen and (min-width:768px) {
  .c-page-title {
    padding: clamp(55.4666666667px, 7.2222222222vw, 104px) clamp(10.6666666667px, 1.3888888889vw, 20px) clamp(42.6666666667px, 5.5555555556vw, 80px);
    overflow-x: visible;
    background: url("../images/common/bg_c_title.png") no-repeat center/cover;
    border-bottom: 1px solid var(--color-background-02);
    box-shadow: none;
  }
}
.c-page-title__text {
  margin-top: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-page-title__text {
    max-width: clamp(594.6666666667px, 77.4305555556vw, 1115px);
    margin: clamp(25.6px, 3.3333333333vw, 48px) auto 0;
  }
}
.c-page-title__sub {
  display: flex;
  column-gap: calc(6 * 100vw / 375);
  align-items: center;
  font-family: var(--font-family-en), var(--font-family-primary);
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width:768px) {
  .c-page-title__sub {
    column-gap: clamp(3.2px, 0.4166666667vw, 6px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.c-page-title__sub::before {
  display: block;
  width: calc(8 * 100vw / 375);
  height: calc(8 * 100vw / 375);
  content: "";
  background: var(--color-background-03);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-page-title__sub::before {
    width: clamp(4.2666666667px, 0.5555555556vw, 8px);
    height: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.c-page-title__title {
  margin-top: 6px;
  font-size: calc(28 * 100vw / 375);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width:768px) {
  .c-page-title__title {
    margin-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
    font-size: clamp(25.6px, 3.3333333333vw, 48px);
    font-weight: 500;
  }
}

.c-breadcrumbs-wrap {
  position: relative;
  padding-right: calc(20 * 100vw / 375);
  padding-left: calc(29 * 100vw / 375);
  margin-right: calc(-1 * 29 * 100vw / 375);
  margin-left: calc(-1 * 29 * 100vw / 375);
  overflow: hidden;
}
@media print, screen and (min-width:768px) {
  .c-breadcrumbs-wrap {
    position: static;
    padding-right: max(40px, (100vw - 1380px) / 2 + 20px);
    padding-left: max(40px, (100vw - 1380px) / 2 + 20px);
    margin-right: calc(-1 * clamp(10.6666666667px, 1.3888888889vw, 20px));
    margin-left: calc(-1 * clamp(10.6666666667px, 1.3888888889vw, 20px));
    overflow: visible;
  }
}

.l-page--about .c-breadcrumbs-wrap,
.page-slug-about .c-breadcrumbs-wrap {
  margin-top: -13px;
}
@media print, screen and (min-width:768px) {
  .l-page--about .c-breadcrumbs-wrap,
  .page-slug-about .c-breadcrumbs-wrap {
    margin-top: -16px;
  }
}

.c-breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  column-gap: calc(7 * 100vw / 375);
  align-items: center;
  min-width: 0;
  font-weight: 500;
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .c-breadcrumbs {
    flex-wrap: wrap;
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
    white-space: normal;
  }
}
.c-breadcrumbs li {
  display: flex;
  flex-shrink: 0;
  column-gap: calc(7 * 100vw / 375);
  align-items: center;
  min-width: 0;
  font-size: calc(12 * 100vw / 375);
}
.c-breadcrumbs li:last-child {
  flex-shrink: 1;
  overflow: hidden;
}
.c-breadcrumbs li:last-child a,
.c-breadcrumbs li:last-child span {
  overflow: hidden;
  text-overflow: ellipsis;
}
@media print, screen and (min-width:768px) {
  .c-breadcrumbs li {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-breadcrumbs li:not(:first-child)::before {
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: calc(14 * 100vw / 375);
  margin-inline: calc(3 * 100vw / 375);
  content: "";
  background: var(--color-background-02);
  transform: rotate(20deg);
}
@media print, screen and (min-width:768px) {
  .c-breadcrumbs li:not(:first-child)::before {
    width: 1px;
    height: clamp(7.4666666667px, 0.9722222222vw, 14px);
    margin-inline: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
@media print, screen and (min-width:768px) {
  .c-breadcrumbs li {
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.c-breadcrumbs li a:hover {
  text-decoration: underline;
}

@media print, screen and (min-width:768px) {
  .c-base-element p + .c-base-element__section:first-of-type {
    padding-top: clamp(25.6px, 3.3333333333vw, 48px);
  }
}
.c-base-element__section {
  position: relative;
  padding-top: calc(40 * 100vw / 375);
  padding-bottom: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element__section {
    padding-top: clamp(42.6666666667px, 5.5555555556vw, 80px);
    padding-bottom: clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.c-base-element__section--bg::after {
  background: var(--beige-100);
}
.c-base-element__section::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(100% + 40 * 100vw / 375);
  height: 100%;
  margin: 0 calc(-20 * 100vw / 375);
  content: "";
}
@media print, screen and (min-width:768px) {
  .c-base-element__section::after {
    position: absolute;
    left: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 0 calc(50% - 50vw + clamp(68.2666666667px, 8.8888888889vw, 128px));
  }
}
.c-base-element__section > *:first-child {
  margin-top: 0 !important;
}
.c-base-element :where(p) {
  margin-top: calc(20 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(p) {
    margin-top: clamp(12.8px, 1.6666666667vw, 24px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    line-height: var(--line-height-l);
    letter-spacing: var(--letter-spacing-l);
  }
}
.c-base-element :where(p) + p {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(p) + p {
    margin-top: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-base-element :where(p).has-text-align-center {
  text-align: center;
}
.c-base-element :where(p).has-text-align-right {
  text-align: right;
}
.c-base-element :where(p).has-small-font-size {
  font-size: calc(13 * 100vw / 375) !important;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(p).has-small-font-size {
    font-size: clamp(8px, 1.0416666667vw, 15px) !important;
  }
}
.c-base-element :where(p).has-medium-font-size {
  font-size: calc(14 * 100vw / 375) !important;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(p).has-medium-font-size {
    font-size: 100% !important;
  }
}
.c-base-element :where(p).has-large-font-size {
  font-size: 120% !important;
}
.c-base-element :where(p).has-x-large-font-size {
  font-size: 150% !important;
}
.c-base-element :where(strong) {
  display: inline;
  font-weight: bold;
  background: linear-gradient(transparent 50%, var(--yellow-30) 50%, var(--yellow-30) 90%, transparent 90%);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(strong) {
    background: linear-gradient(transparent 50%, var(--yellow-30) 50%, var(--yellow-30) 90%, transparent 90%);
  }
}
.c-base-element :where(em) {
  font-style: italic;
}
.c-base-element :where(s) {
  text-decoration: line-through;
}
.c-base-element :where(a) {
  font-weight: 700;
  color: var(--orange-100);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-base-element :where(a) {
    transition: 200ms text-decoration-color;
  }
  .c-base-element :where(a):hover {
    text-decoration-color: transparent;
  }
}
.c-base-element :where(a)[target=_blank]::after {
  display: inline-block;
  width: calc(12 * 100vw / 375);
  height: calc(12 * 100vw / 375);
  margin: 0 calc(4 * 100vw / 375);
  content: "";
  background: url("../images/common/icon_ext.svg") no-repeat center center;
  background-size: contain;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(a)[target=_blank]::after {
    width: clamp(6.4px, 0.8333333333vw, 12px);
    height: clamp(6.4px, 0.8333333333vw, 12px);
    margin: 0 clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.c-base-element :where(h2):not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled),
.c-base-element .is-style-h2:not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) {
  padding: calc(30 * 100vw / 375) 0 0 calc(20 * 100vw / 375);
  margin-top: calc(40 * 100vw / 375);
  margin-left: calc(-20 * 100vw / 375);
  font-size: calc(24 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h2):not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled),
  .c-base-element .is-style-h2:not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) {
    min-height: clamp(73.6px, 9.5833333333vw, 138px);
    padding: clamp(42.6666666667px, 5.5555555556vw, 80px) 0 0 clamp(51.7333333333px, 6.7361111111vw, 97px);
    margin-top: clamp(28.2666666667px, 3.6805555556vw, 53px);
    margin-left: clamp(-97px, -6.7361111111vw, -51.7333333333px);
    font-size: clamp(18.1333333333px, 2.3611111111vw, 34px);
  }
}
.c-base-element .is-style-h2--type01 {
  background: url("../images/common/headline01_sp.svg") no-repeat 0 0;
  background-size: 100% auto;
}
@media print, screen and (min-width:768px) {
  .c-base-element .is-style-h2--type01 {
    background: url("../images/common/headline01.svg") no-repeat 0 0;
    background-size: 100% auto;
  }
}
.c-base-element .is-style-h2--type02 {
  background: url("../images/common/headline02_sp.svg") no-repeat 0 0;
  background-size: 100% auto;
}
@media print, screen and (min-width:768px) {
  .c-base-element .is-style-h2--type02 {
    background: url("../images/common/headline02.svg") no-repeat 0 0;
    background-size: 100% auto;
  }
}
.c-base-element .is-style-h2--type03 {
  background: url("../images/common/headline03_sp.svg") no-repeat 0 0;
  background-size: 100% auto;
}
@media print, screen and (min-width:768px) {
  .c-base-element .is-style-h2--type03 {
    background: url("../images/common/headline03.svg") no-repeat 0 0;
    background-size: 100% auto;
  }
}
.c-base-element :where(h3):not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled),
.c-base-element .is-style-h3:not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) {
  position: relative;
  padding: calc(12 * 100vw / 375) calc(15 * 100vw / 375);
  margin-top: calc(30 * 100vw / 375);
  font-size: calc(20 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
  background: var(--gray-10);
  border-radius: calc(4 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h3):not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled),
  .c-base-element .is-style-h3:not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) {
    column-gap: clamp(9.0666666667px, 1.1805555556vw, 17px);
    padding: clamp(9.6px, 1.25vw, 18px) clamp(9.6px, 1.25vw, 18px) clamp(9.6px, 1.25vw, 18px) clamp(12.8px, 1.6666666667vw, 24px);
    margin-top: clamp(25.6px, 3.3333333333vw, 48px);
    font-size: clamp(13.8666666667px, 1.8055555556vw, 26px);
    border-radius: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.c-base-element :where(h3):not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled)::before,
.c-base-element .is-style-h3:not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled)::before {
  position: absolute;
  top: calc(15 * 100vw / 375);
  left: 0;
  display: block;
  width: calc(5 * 100vw / 375);
  height: calc(100% - 30 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h3):not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled)::before,
  .c-base-element .is-style-h3:not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled)::before {
    top: clamp(10.1333333333px, 1.3194444444vw, 19px);
    width: clamp(3.7333333333px, 0.4861111111vw, 7px);
    height: calc(100% - clamp(20.2666666667px, 2.6388888889vw, 38px));
  }
}
.c-base-element :where(h3):not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + p,
.c-base-element .is-style-h3:not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + p {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h3):not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + p,
  .c-base-element .is-style-h3:not(.is-style-h1, .is-style-h2, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + p {
    margin-top: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-base-element :where(h4):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled),
.c-base-element .is-style-h4:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled) {
  position: relative;
  padding-bottom: calc(10 * 100vw / 375);
  margin-top: calc(30 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
  border-bottom: 1px solid var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h4):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled),
  .c-base-element .is-style-h4:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled) {
    padding-bottom: clamp(9.0666666667px, 1.1805555556vw, 17px);
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.c-base-element :where(h4):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled)::after,
.c-base-element .is-style-h4:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled)::after {
  position: absolute;
  bottom: calc(-2 * 100vw / 375);
  left: 0;
  display: block;
  width: calc(40 * 100vw / 375);
  height: calc(3 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h4):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled)::after,
  .c-base-element .is-style-h4:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled)::after {
    bottom: clamp(-2px, -0.1388888889vw, -1.0666666667px);
    width: clamp(21.3333333333px, 2.7777777778vw, 40px);
    height: clamp(1.6px, 0.2083333333vw, 3px);
  }
}
.c-base-element :where(h4):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled) + p,
.c-base-element .is-style-h4:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled) + p {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h4):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled) + p,
  .c-base-element .is-style-h4:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h5, .is-style-h6, .-unstyled) + p {
    margin-top: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled),
.c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled) {
  position: relative;
  padding-left: calc(16 * 100vw / 375);
  margin-top: calc(24 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  font-weight: bold;
  line-height: var(--line-height-s);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled),
  .c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled) {
    padding-bottom: clamp(9.0666666667px, 1.1805555556vw, 17px);
    padding-left: clamp(8.5333333333px, 1.1111111111vw, 16px);
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::before,
.c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(3 * 100vw / 375);
  height: calc(100% - 17 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::before,
  .c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::before {
    width: clamp(2.1333333333px, 0.2777777778vw, 4px);
    height: calc(100% - clamp(18.1333333333px, 2.3611111111vw, 34px));
  }
}
.c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::after,
.c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::after {
  display: block;
  height: calc(1 * 100vw / 375);
  margin-top: calc(10 * 100vw / 375);
  margin-left: calc(-16 * 100vw / 375);
  content: "";
  background-image: repeating-linear-gradient(90deg, var(--gray-50), var(--gray-50) 3px, transparent 3px, transparent 6px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 100% 1px;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::after,
  .c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled)::after {
    height: clamp(0.5333333333px, 0.0694444444vw, 1px);
    margin-top: clamp(9.0666666667px, 1.1805555556vw, 17px);
    margin-left: clamp(-16px, -1.1111111111vw, -8.5333333333px);
  }
}
.c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled) + p,
.c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled) + p {
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h5):not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled) + p,
  .c-base-element .is-style-h5:not(.is-style-h1, .is-style-h2, .is-style-h3, .is-style-h4, .is-style-h6, .-unstyled) + p {
    margin-top: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-base-element :where(h6),
.c-base-element .is-style-h6 {
  margin-top: calc(24 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  font-weight: bold;
  line-height: var(--line-height-m);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(h6),
  .c-base-element .is-style-h6 {
    margin-top: clamp(12.8px, 1.6666666667vw, 24px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element :where(ul.wp-block-list) {
  margin-top: calc(30 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  line-height: var(--line-height-m);
  letter-spacing: 0.12em;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ul.wp-block-list) {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element :where(ul.wp-block-list) > li {
  position: relative;
  padding-left: calc(18 * 100vw / 375);
  font-weight: 500;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ul.wp-block-list) > li {
    padding-left: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element :where(ul.wp-block-list) > li:not(:first-child) {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ul.wp-block-list) > li:not(:first-child) {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-base-element :where(ul.wp-block-list) > li::before {
  position: absolute;
  top: calc(8 * 100vw / 375);
  left: 0;
  display: block;
  width: calc(8 * 100vw / 375);
  height: calc(8 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ul.wp-block-list) > li::before {
    top: clamp(4.2666666667px, 0.5555555556vw, 8px);
    width: clamp(4.2666666667px, 0.5555555556vw, 8px);
    height: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.c-base-element :where(ul.wp-block-list) > li :where(ul.wp-block-list),
.c-base-element :where(ul.wp-block-list) > li :where(ol.wp-block-list) {
  margin-top: 0;
}
.c-base-element :where(ul.wp-block-list) > li :where(ul.wp-block-list) > li::before {
  background: #fff;
  border: 1px solid var(--yellow-100);
}
.c-base-element :where(ul.wp-block-list) > li :where(ul.wp-block-list) > li :where(ul.wp-block-list) > li::before {
  top: calc(12 * 100vw / 375);
  width: calc(8 * 100vw / 375);
  height: calc(1 * 100vw / 375);
  background: var(--yellow-100);
  border-radius: unset;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ul.wp-block-list) > li :where(ul.wp-block-list) > li :where(ul.wp-block-list) > li::before {
    top: clamp(6.4px, 0.8333333333vw, 12px);
    width: clamp(4.2666666667px, 0.5555555556vw, 8px);
    height: clamp(1.0666666667px, 0.1388888889vw, 2px);
  }
}
.c-base-element :where(ol.wp-block-list) {
  margin-top: calc(30 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  line-height: 1.5;
  letter-spacing: 0.12em;
  counter-reset: num;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ol.wp-block-list) {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element :where(ol.wp-block-list) > li {
  position: relative;
  padding-left: calc(30 * 100vw / 375);
  counter-increment: num;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ol.wp-block-list) > li {
    padding-left: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-base-element :where(ol.wp-block-list) > li:not(:first-child) {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ol.wp-block-list) > li:not(:first-child) {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-base-element :where(ol.wp-block-list) > li::before {
  position: absolute;
  top: calc(-3 * 100vw / 375);
  left: 0;
  display: block;
  width: calc(8 * 100vw / 375);
  height: calc(8 * 100vw / 375);
  font-family: var(--font-family-en);
  font-size: calc(20 * 100vw / 375);
  font-weight: 700;
  color: var(--yellow-100);
  content: counter(num) ".";
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ol.wp-block-list) > li::before {
    top: clamp(-1px, -0.0694444444vw, -0.5333333333px);
    width: clamp(4.2666666667px, 0.5555555556vw, 8px);
    height: clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-base-element :where(ol.wp-block-list) > li :where(ul.wp-block-list),
.c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) {
  margin-top: 0;
}
.c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) {
  counter-reset: num2;
}
.c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) > li {
  padding-left: calc(45 * 100vw / 375);
  counter-increment: num2;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) > li {
    padding-left: clamp(24px, 3.125vw, 45px);
  }
}
.c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) > li::before {
  display: flex;
  content: counter(num) "-" counter(num2) ".";
}
.c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) :where(ol.wp-block-list) {
  counter-reset: num3;
}
.c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) :where(ol.wp-block-list) > li {
  padding-left: calc(65 * 100vw / 375);
  counter-increment: num3;
}
@media print, screen and (min-width:768px) {
  .c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) :where(ol.wp-block-list) > li {
    padding-left: clamp(34.6666666667px, 4.5138888889vw, 65px);
  }
}
.c-base-element :where(ol.wp-block-list) > li :where(ol.wp-block-list) :where(ol.wp-block-list) > li::before {
  display: flex;
  content: counter(num) "-" counter(num2) "-" counter(num3) ".";
}
.c-base-element .wp-block-image {
  margin: calc(15 * 100vw / 375) auto 0;
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-image {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-base-element .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.c-base-element .wp-block-image > figcaption {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  line-height: var(--line-height-s);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-image > figcaption {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-base-element .wp-block-image.is-style-large {
  width: 100%;
}
.c-base-element .wp-block-image.is-style-medium {
  width: 75%;
}
.c-base-element .wp-block-image.is-style-small {
  width: 50%;
}
.c-base-element .wp-block-image.has-sp-line img {
  border-right: 1px solid var(--black-100);
  border-left: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-image.has-sp-line img {
    border-right: none;
    border-left: none;
  }
}
.c-base-element .wp-block-image.-none-margin {
  margin-top: 0;
}
.c-base-element .wp-block-table,
.c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-table,
  .c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
    margin-top: clamp(34.1333333333px, 4.4444444444vw, 64px);
  }
}
.c-base-element .wp-block-table > table,
.c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gray-30);
  border-bottom: unset;
}
.c-base-element .wp-block-table > table tr th,
.c-base-element .wp-block-table > table tr td,
.c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  padding: calc(8 * 100vw / 375) calc(16 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  line-height: 2;
  text-align: left;
  letter-spacing: 0.12em;
  background-color: #fff;
  border: 1px solid var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-table > table tr th,
  .c-base-element .wp-block-table > table tr td,
  .c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-base-element .wp-block-table > table tr th,
.c-base-element .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: #f9f9f9;
}
.c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table {
  display: block;
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table {
    display: table;
  }
}
.c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tbody {
  display: block;
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tbody {
    display: table-row-group;
  }
}
.c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tr {
  display: block;
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tr {
    display: table-row;
  }
}
.c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tr th,
.c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tr td {
  display: block;
  border: unset;
  border-bottom: 1px solid var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tr th,
  .c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tr td {
    display: table-cell;
  }
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-flexible-table-block-table:not(.is-scroll-on-mobile, .is-scroll-on-pc) > table tr th {
    width: 1%;
    font-weight: bold;
    white-space: nowrap;
  }
}
@media print, screen and (max-width:767.98px) {
  .c-base-element .wp-block-flexible-table-block-table.is-scroll-on-mobile {
    overflow-x: scroll;
  }
  .c-base-element .wp-block-flexible-table-block-table.is-scroll-on-mobile th,
  .c-base-element .wp-block-flexible-table-block-table.is-scroll-on-mobile td {
    white-space: nowrap;
  }
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-flexible-table-block-table.is-scroll-on-pc {
    overflow-x: scroll;
  }
  .c-base-element .wp-block-flexible-table-block-table.is-scroll-on-pc th,
  .c-base-element .wp-block-flexible-table-block-table.is-scroll-on-pc td {
    white-space: nowrap;
  }
}
.c-base-element .wp-block-details__content {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-details__content {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-base-element .wp-block-details__content > *:first-child {
  margin-top: 0;
}
.c-base-element .wp-block-quote {
  padding: calc(50 * 100vw / 375) calc(30 * 100vw / 375) calc(30 * 100vw / 375);
  margin-top: calc(16 * 100vw / 375);
  background: var(--color-background-01) url("../images/common/icon_quote.svg") no-repeat calc(28 * 100vw / 375) calc(20 * 100vw / 375);
  background-size: calc(23 * 100vw / 375) calc(16 * 100vw / 375);
  border: 1px solid var(--gray-30);
  border-radius: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-quote {
    padding: clamp(26.6666666667px, 3.4722222222vw, 50px) clamp(16px, 2.0833333333vw, 30px) clamp(16px, 2.0833333333vw, 30px);
    margin-top: clamp(17.0666666667px, 2.2222222222vw, 32px);
    background-position: clamp(14.9333333333px, 1.9444444444vw, 28px) clamp(10.6666666667px, 1.3888888889vw, 20px);
    background-size: clamp(12.2666666667px, 1.5972222222vw, 23px) clamp(8.5333333333px, 1.1111111111vw, 16px);
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.c-base-element .wp-block-quote > *:first-child {
  margin-top: 0;
}
.c-base-element .wp-block-quote p {
  font-size: calc(14 * 100vw / 375);
  line-height: 2;
  letter-spacing: 0.12em;
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-quote p {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-base-element .wp-block-quote #wp-block-quote + p {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  line-height: 1.3;
  line-height: var(--line-height-l);
  color: var(--gray-100);
  text-align: right;
  letter-spacing: 0.12em;
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-quote #wp-block-quote + p {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.c-base-element .wp-block-code {
  padding: calc(24 * 100vw / 375);
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  line-height: var(--line-height-l);
  color: var(--color-text-03);
  background-color: var(--color-background-03);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-code {
    padding: clamp(17.0666666667px, 2.2222222222vw, 32px);
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element .wp-block-code > *:first-child {
  margin-top: 0;
}
.c-base-element .wp-block-preformatted {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  line-height: var(--line-height-l);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-preformatted {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element .wp-block-pullquote {
  padding: calc(24 * 100vw / 375);
  margin: 0;
  text-align: left;
  background-color: var(--color-background-02);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-pullquote {
    padding: clamp(17.0666666667px, 2.2222222222vw, 32px);
  }
}
.c-base-element .wp-block-pullquote blockquote {
  font-style: italic;
}
.c-base-element .wp-block-pullquote blockquote > *:first-child {
  margin-top: 0;
}
.c-base-element .wp-block-pullquote cite {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  line-height: var(--line-height-l);
  text-align: right;
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-pullquote cite {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element .wp-block-verse {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  line-height: var(--line-height-l);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-verse {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-base-element .wp-block-separator {
  margin-block: calc(40 * 100vw / 375);
  border-top: 1px solid var(--color-border-01);
}
@media print, screen and (min-width:768px) {
  .c-base-element .wp-block-separator {
    margin-block: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-base-element .wp-block-separator + * {
  margin-top: 0;
}

.page-slug-environment .c-base-element :where(h3)::before,
.page-slug-environment .c-base-element .is-style-h3::before {
  display: none;
}

.c-cta {
  padding: calc(48 * 100vw / 375) calc(20 * 100vw / 375) calc(48 * 100vw / 375);
  background: url("../images/common/bg_cta.svg") no-repeat right 0 top 0, url("../images/common/bg_cta.svg") no-repeat left 0 bottom 0;
  background-color: var(--color-background-02);
  background-size: calc(136 * 100vw / 375) calc(48 * 100vw / 375), calc(136 * 100vw / 375) calc(48 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta {
    padding: 80px clamp(10.6666666667px, 1.3888888889vw, 20px) 100px;
    background-size: clamp(151.4666666667px, 19.7222222222vw, 284px) clamp(53.3333333333px, 6.9444444444vw, 100px), clamp(151.4666666667px, 19.7222222222vw, 284px) clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
@media print, screen and (min-width:768px) {
  .c-cta .l-page__inner {
    display: grid;
    grid-template-columns: clamp(250.6666666667px, 32.6388888889vw, 470px) clamp(307.2px, 40vw, 576px);
    grid-template-rows: auto auto auto;
    row-gap: clamp(12.8px, 1.6666666667vw, 24px);
    justify-content: space-between;
  }
}
.c-cta__text {
  color: var(--color-text-03);
}
@media print, screen and (min-width:768px) {
  .c-cta__text {
    grid-column: 1;
    grid-row: 1/3;
    display: grid;
    grid-template-rows: subgrid;
  }
}
.c-cta__text h2 {
  font-size: calc(30 * 100vw / 375);
  font-weight: 700;
  line-height: 1.35;
  margin-top: calc(24 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta__text h2 {
    grid-row: 1;
    font-size: clamp(29.8666666667px, 3.8888888889vw, 56px);
    line-height: 1.25;
    letter-spacing: 0.04em;
    margin-top: 0;
    align-self: start;
  }
}
.c-cta__text p {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(17 * 100vw / 375);
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta__text p {
    grid-row: 2;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(9.6px, 1.25vw, 18px);
    align-self: center;
  }
}
@media print, screen and (min-width:768px) {
  .c-cta__links {
    display: contents;
  }
}
.c-cta__btns {
  display: flex;
  column-gap: calc(9 * 100vw / 375);
  margin-top: calc(24 * 100vw / 375);
  margin-bottom: calc(32 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta__btns {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    column-gap: clamp(8.5333333333px, 1.1111111111vw, 16px);
    padding-right: clamp(26.6666666667px, 3.4722222222vw, 50px);
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:768px) {
  .c-cta__btns .c-button {
    padding: clamp(10.1333333333px, 1.3194444444vw, 19px) clamp(16px, 2.0833333333vw, 30px);
    margin-top: 0;
    font-size: clamp(calc(8.5333333333px * 1px), calc(1.1111111111px * 1vw), calc(16px * 1px));
  }
}
.c-cta__link {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta__link {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
  }
}
.c-cta__link a {
  display: flex;
  column-gap: calc(10 * 100vw / 375);
  align-items: center;
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  color: #fff;
}
@media print, screen and (min-width:768px) {
  .c-cta__link a {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    transition: 0.2s color;
  }
}
@media (hover: hover) {
  .c-cta__link a:hover {
    color: var(--yellow-100);
  }
  .c-cta__link a:hover svg {
    color: var(--yellow-100);
  }
}
.c-cta__link a svg {
  width: calc(15 * 100vw / 375);
  height: calc(9 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta__link a svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
    margin-right: clamp(6.4px, 0.8333333333vw, 12px);
    transition: 0.2s color;
  }
}

@keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.c-footerSlide {
  position: relative;
  z-index: 3;
  display: flex;
  column-gap: 0;
  overflow: hidden;
  background: var(--color-background-02);
  border-top: 1px solid var(--black-100);
  border-bottom: 1px solid var(--black-100);
}
.c-footerSlide ul {
  display: flex;
  flex-shrink: 0;
  column-gap: calc(1 * 100vw / 375);
  width: max-content;
  margin-left: calc(1 * 100vw / 375);
  animation: slide 140s linear infinite;
  will-change: transform;
}
@media print, screen and (min-width:768px) {
  .c-footerSlide ul {
    column-gap: clamp(0.5333333333px, 0.0694444444vw, 1px);
    margin-left: clamp(0.5333333333px, 0.0694444444vw, 1px);
    animation: slide 80s linear infinite;
  }
}
.c-footerSlide ul li {
  flex-shrink: 0;
  width: calc(240 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-footerSlide ul li {
    width: clamp(192px, 25vw, 360px);
  }
}
.c-footerSlide ul li img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-links ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: calc(12 * 100vw / 375) calc(32 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-links ul {
    gap: clamp(6.4px, 0.8333333333vw, 12px) clamp(17.0666666667px, 2.2222222222vw, 32px);
  }
}
.c-links ul li a {
  display: flex;
  column-gap: calc(10 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-links ul li a {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-links ul li a:hover {
    border-color: var(--yellow-100);
  }
  .c-links ul li a:hover .c-links__text {
    color: var(--yellow-100);
  }
  .c-links ul li a:hover .c-links__icon {
    color: var(--black-100);
  }
  .c-links ul li a:hover .c-links__icon::before {
    transform: scale(1);
  }
}
.c-links__text {
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  transition: color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-links__text {
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-links__icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-links__icon {
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
  }
}
.c-links__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-links__icon::before {
    width: clamp(20.2666666667px, 2.6388888889vw, 38px);
    height: clamp(20.2666666667px, 2.6388888889vw, 38px);
  }
}
.c-links__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-links__icon svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

.c-interviews2 {
  margin-top: calc(20 * 100vw / 375);
  opacity: 1;
}
@media print, screen and (min-width:768px) {
  .c-interviews2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(29.8666666667px, 3.8888888889vw, 56px) clamp(42.6666666667px, 5.5555555556vw, 80px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-interviews2.hidden {
  opacity: 0;
  transition: opacity 500ms ease;
}
.c-interviews2__link {
  display: block;
  margin-top: calc(24 * 100vw / 375);
  color: var(--black-100);
  text-decoration: none;
}
.c-interviews2__link.hidden {
  display: none;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__link {
    margin-top: 0;
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-interviews2__link:hover .c-interviews2__img img {
    transform: scale(1.05);
  }
  .c-interviews2__link:hover .c-interviews2__title span {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
.c-interviews2__title {
  margin-top: calc(4 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-interviews2__title {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
  .c-interviews2__title span {
    background-image: linear-gradient(currentcolor, currentcolor);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 0 1px;
    transition: background-size 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
.c-interviews2__inner {
  position: relative;
  display: flex;
  column-gap: calc(20 * 100vw / 375);
  align-items: center;
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-interviews2__inner {
    display: block;
    margin-top: 0;
  }
}
.c-interviews2__img {
  flex-shrink: 0;
  width: calc(120 * 100vw / 375);
  height: calc(120 * 100vw / 375);
  overflow: hidden;
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__img {
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.c-interviews2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__block {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
@media print, screen and (min-width:768px) {
  .c-interviews2__info {
    display: flex;
    align-items: center;
  }
}
.c-interviews2__info-job {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__info-job {
    column-gap: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.c-interviews2__info-job.-white dt {
  font-weight: 700;
  color: var(--black-100);
  background: var(--beige-100);
  border: 1px solid var(--yellow-100);
}
.c-interviews2__info-job dt {
  padding: calc(5 * 100vw / 375) calc(6 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  line-height: 1;
  color: var(--white);
  letter-spacing: var(--letter-spacing-m);
  white-space: nowrap;
  background: var(--yellow-120);
  border-radius: calc(10 * 100vw / 375);
}
.c-interviews2__info-job dt.-white {
  color: var(--black-100);
  background: var(--white);
}
.c-interviews2__info-job dt.--blue {
  background-color: var(--blue-100);
}
.c-interviews2__info-job dt.--orange {
  background-color: var(--orange-100);
}
@media print, screen and (min-width:768px) {
  .c-interviews2__info-job dt {
    padding: clamp(2.1333333333px, 0.2777777778vw, 4px) clamp(3.2px, 0.4166666667vw, 6px) clamp(1.0666666667px, 0.1388888889vw, 2px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
    border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-interviews2__info-job dd {
  font-size: calc(12 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-interviews2__info-job dd {
    position: relative;
    top: clamp(0.5333333333px, 0.0694444444vw, 1px);
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.c-interviews2__info-sub.u-pc-only {
  margin-right: clamp(6.4px, 0.8333333333vw, 12px);
  font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  font-weight: 700;
}
.c-interviews2__text {
  display: flex;
  flex-wrap: wrap;
  column-gap: calc(8 * 100vw / 375);
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__text {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.c-interviews2__text li {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__text li {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.c-interviews2__text li:not(:first-child)::before {
  display: block;
  width: 1px;
  height: calc(18 * 100vw / 375);
  content: "";
  background: var(--beige-100);
}
@media print, screen and (min-width:768px) {
  .c-interviews2__text li:not(:first-child)::before {
    height: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-interviews2__text li:last-child {
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__text li:last-child {
    width: auto;
  }
}
.c-interviews2__text li:last-child::before {
  display: none;
}
@media print, screen and (min-width:768px) {
  .c-interviews2__text li:last-child::before {
    display: block;
  }
}
.c-interviews2__text2 {
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  line-heightz: 1.75;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-interviews2__text2 {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
@media print, screen and (min-width:768px) {
  .c-interviews2__icon {
    position: absolute;
    top: calc(50% - clamp(9.6px, 1.25vw, 18px));
    right: clamp(16px, 2.0833333333vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
    color: var(--white);
    background: var(--black-100);
    border-radius: 50%;
  }
  .c-interviews2__icon::before {
    position: absolute;
    z-index: 1;
    display: block;
    width: clamp(20.2666666667px, 2.6388888889vw, 38px);
    height: clamp(20.2666666667px, 2.6388888889vw, 38px);
    content: "";
    background: var(--yellow-100);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 200ms ease;
  }
  .c-interviews2__icon svg {
    position: relative;
    z-index: 2;
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

.c-discussions {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-discussions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(29.8666666667px, 3.8888888889vw, 56px) clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-discussions__link {
  display: block;
}
.c-discussions__link:not(:first-child) {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-discussions__link:not(:first-child) {
    margin-top: 0;
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-discussions__link:hover .c-discussions__img img {
    transform: scale(1.05);
  }
  .c-discussions__link:hover .c-discussions__title span {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
@media print, screen and (min-width:768px) {
  .c-discussions__block {
    margin: clamp(12.8px, 1.6666666667vw, 24px) clamp(32px, 4.1666666667vw, 60px) 0;
  }
}
.c-discussions__img {
  overflow: hidden;
  border-radius: calc(200 * 100vw / 375);
}
.c-discussions__img img {
  transition: transform 200ms ease;
}
.c-discussions__title {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-m);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-discussions__title {
    margin-top: 0;
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
  .c-discussions__title span {
    background-image: linear-gradient(currentcolor, currentcolor);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 0 1px;
    transition: background-size 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
.c-discussions__text {
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-discussions__text {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}

.c-list {
  margin-top: calc(40 * 100vw / 375);
  border: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(25.0666666667px, 3.2638888889vw, 47px);
  }
}
.c-list li {
  border-bottom: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-list li {
    border-right: 1px solid var(--black-100);
    border-bottom: none;
  }
}
.c-list li:last-child {
  border-bottom: none;
}
.c-list li a {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  column-gap: calc(24 * 100vw / 375);
  align-items: center;
  padding: calc(20 * 100vw / 375);
  color: var(--black-100);
  text-decoration: none;
  background: var(--white);
  transition: background 200ms ease;
}
.c-list li a[target=_blank]::after {
  content: none;
}
@media print, screen and (min-width:768px) {
  .c-list li a {
    display: block;
    padding: clamp(16px, 2.0833333333vw, 30px);
  }
}
@media (hover: hover) {
  .c-list li a:hover {
    background: #fef9ef;
  }
  .c-list li a:hover .c-list__title span {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
  .c-list li a:hover .c-list__icon {
    color: var(--black-100);
  }
  .c-list li a:hover .c-list__icon::before {
    transform: scale(1);
  }
}
.c-list li a figure {
  width: calc(100 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-list li a figure {
    width: clamp(128px, 16.6666666667vw, 240px);
    margin-top: clamp(29.8666666667px, 3.8888888889vw, 56px);
  }
}
.c-list__title {
  flex-grow: 1;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-m);
}
@media print, screen and (min-width:768px) {
  .c-list__title {
    display: block;
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-list__title span {
  display: inline;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0 1px;
  transition: background-size 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-list__icon {
  position: absolute;
  top: calc(50% - 12 * 100vw / 375);
  right: calc(20 * 100vw / 375);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-list__icon {
    top: clamp(12.8px, 1.6666666667vw, 24px);
    right: clamp(16px, 2.0833333333vw, 30px);
    display: flex !important;
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
  }
}
.c-list__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-list__icon::before {
    width: clamp(20.2666666667px, 2.6388888889vw, 38px);
    height: clamp(20.2666666667px, 2.6388888889vw, 38px);
  }
}
.c-list__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-list__icon svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

@media print, screen and (min-width:768px) {
  .l-page__content--common .l-page__inner .wp-block-lazyblock-c-list,
  .l-page__content .l-page__inner .c-base-element .wp-block-lazyblock-c-list {
    position: relative;
    width: 100%;
    margin-right: clamp(-80px, -5.5555555556vw, -42.6666666667px);
  }
  .l-page__content--common .l-page__inner .wp-block-lazyblock-c-list > .c-list,
  .l-page__content .l-page__inner .c-base-element .wp-block-lazyblock-c-list > .c-list {
    border-right: none;
  }
  .l-page__content--common .l-page__inner .wp-block-lazyblock-c-list::after,
  .l-page__content .l-page__inner .c-base-element .wp-block-lazyblock-c-list::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    pointer-events: none;
    content: "";
    background: var(--black-100);
  }
}

@media print, screen and (min-width:768px) {
  .l-page__content .l-page__inner .c-base-element .c-list,
  .l-page__content .c-list {
    border-right: none;
  }
  .l-page__content .l-page__inner .c-base-element .c-list li:last-child,
  .l-page__content .c-list li:last-child {
    border-right: none !important;
  }
}

.c-anchor {
  position: relative;
  z-index: 100;
  width: 100%;
  padding: calc(16 * 100vw / 375) calc(29 * 100vw / 375);
  margin-bottom: calc(-1 * 100vw / 375);
  background-color: #fffaef;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media print, screen and (min-width:768px) {
  .c-anchor {
    padding: clamp(12.8px, 1.6666666667vw, 24px) clamp(10.6666666667px, 1.3888888889vw, 20px);
    margin-top: clamp(-1px, -0.0694444444vw, -0.5333333333px);
  }
}
.c-anchor ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(32 * 100vw / 375);
  width: 100%;
  max-width: clamp(594.6666666667px, 77.4305555556vw, 1115px);
  margin-inline: auto;
}
@media print, screen and (min-width:768px) {
  .c-anchor ul {
    gap: clamp(17.0666666667px, 2.2222222222vw, 32px);
  }
}
@media print, screen and (min-width:768px) {
  .c-anchor ul li {
    width: auto;
  }
}
.c-anchor ul li a {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .c-anchor ul li a {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    transition: color 200ms ease;
  }
}
@media (hover: hover) {
  .c-anchor ul li a:hover {
    color: var(--yellow-100);
  }
  .c-anchor ul li a:hover .c-anchor__icon {
    color: var(--black-100);
  }
  .c-anchor ul li a:hover .c-anchor__icon::before {
    transform: scale(1);
  }
}
.c-anchor__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-anchor__icon {
    width: clamp(16px, 2.0833333333vw, 30px);
    height: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-anchor__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-anchor__icon::before {
    width: clamp(20.2666666667px, 2.6388888889vw, 38px);
    height: clamp(20.2666666667px, 2.6388888889vw, 38px);
  }
}
.c-anchor__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-anchor__icon svg {
    width: clamp(6.9333333333px, 0.9027777778vw, 13px);
    height: clamp(3.7333333333px, 0.4861111111vw, 7px);
  }
}

.c-filter {
  margin-bottom: calc(54 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-filter {
    padding: clamp(16px, 2.0833333333vw, 30px) clamp(21.3333333333px, 2.7777777778vw, 40px) clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin-top: clamp(8px, 1.0416666667vw, 15px);
    margin-bottom: clamp(19.2px, 2.5vw, 36px);
  }
}
@media print, screen and (min-width:768px) {
  .c-filter__list {
    display: grid;
    grid-template-columns: clamp(65.0666666667px, 8.4722222222vw, 122px) 1fr;
  }
}
.c-filter__list dt {
  padding-bottom: calc(16 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .c-filter__list dt {
    width: clamp(65.0666666667px, 8.4722222222vw, 122px);
    padding-bottom: clamp(8.5333333333px, 1.1111111111vw, 16px);
    margin-bottom: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    border-bottom: var(--gray-30) 1px solid;
  }
}
.c-filter__list dt:first-child {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-filter__list dt:last-of-type {
    margin-bottom: 0;
    border: none;
  }
}
.c-filter__list dd {
  padding-bottom: calc(20 * 100vw / 375);
  margin-bottom: calc(20 * 100vw / 375);
  border-bottom: var(--gray-30) 1px solid;
}
@media print, screen and (min-width:768px) {
  .c-filter__list dd {
    padding-bottom: clamp(8.5333333333px, 1.1111111111vw, 16px);
    margin-bottom: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-filter__list dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-filter__list dd ul {
    gap: clamp(6.4px, 0.8333333333vw, 12px) clamp(17.0666666667px, 2.2222222222vw, 32px);
    margin-top: clamp(0.5333333333px, 0.0694444444vw, 1px);
  }
}
.c-filter__list dd ul li label {
  display: flex;
  gap: calc(6 * 100vw / 375);
  align-items: center;
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}
@media print, screen and (min-width:768px) {
  .c-filter__list dd ul li label {
    gap: clamp(3.2px, 0.4166666667vw, 6px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
@media (hover: hover) {
  .c-filter__list dd ul li label:hover {
    text-decoration: underline;
  }
}
.c-filter__list dd ul li label input {
  flex-shrink: 0;
  width: calc(16 * 100vw / 375);
  height: calc(16 * 100vw / 375);
  appearance: none;
  cursor: pointer;
  background: var(--white);
  border: 2px solid #c6c7c7;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.c-filter__list dd ul li label input:checked {
  background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3 3 7-7'/%3E%3C/svg%3E") no-repeat center/10px 8px;
  border-color: var(--blue-100);
}
@media print, screen and (min-width:768px) {
  .c-filter__list dd ul li label input {
    width: clamp(8.5333333333px, 1.1111111111vw, 16px);
    height: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-filter__list dd:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
@media print, screen and (min-width:768px) {
  .c-filter__btns {
    display: flex;
    column-gap: clamp(8.5333333333px, 1.1111111111vw, 16px);
    justify-content: center;
    margin-top: clamp(14.9333333333px, 1.9444444444vw, 28px);
  }
}
.c-filter__btns li {
  text-align: center;
}
.c-filter__btns li:not(:first-child) {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-filter__btns li:not(:first-child) {
    width: clamp(96px, 12.5vw, 180px);
    margin-top: 0;
  }
}
.c-filter__btns li:last-child button {
  width: fit-content;
  padding: unset;
  font-size: calc(13 * 100vw / 375);
  color: var(--black-100);
  background: unset;
  border: unset;
  border-bottom: 1px solid var(--black-100);
  border-radius: unset;
}
@media print, screen and (min-width:768px) {
  .c-filter__btns li:last-child button {
    width: clamp(96px, 12.5vw, 180px);
    padding: clamp(6.4px, 0.8333333333vw, 12px) clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    color: var(--black-100);
    background: var(--white) url("../images/people/icon_clear.svg") no-repeat right clamp(8.5333333333px, 1.1111111111vw, 16px) top 50%;
    border: 1px solid var(--black-100);
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
    transition: background 200ms ease, color 200ms ease;
  }
  .c-filter__btns li:last-child button:hover {
    color: var(--white);
    background: var(--black-100) url("../images/people/icon_clear_W.svg") no-repeat right clamp(8.5333333333px, 1.1111111111vw, 16px) top 50%;
  }
}
.c-filter__btns button {
  width: calc(180 * 100vw / 375);
  padding: calc(10 * 100vw / 375) calc(20 * 100vw / 375);
  margin-inline: auto;
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  color: var(--white);
  text-align: left;
  background: var(--black-100) url("../images/people/icon_search.svg") no-repeat right calc(16 * 100vw / 375) top 50%;
  border: 1px solid var(--black-100);
  border-radius: calc(8 * 100vw / 375);
  transition: background 200ms ease, color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-filter__btns button {
    width: clamp(96px, 12.5vw, 180px);
    padding: clamp(6.4px, 0.8333333333vw, 12px) clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    background-position: right clamp(8.5333333333px, 1.1111111111vw, 16px) top 50%;
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.c-filter__btns button:hover {
  color: var(--black-100);
  background: var(--white) url("../images/people/icon_search_B.svg") no-repeat right calc(16 * 100vw / 375) top 50%;
}
@media print, screen and (min-width:768px) {
  .c-filter__btns button:hover {
    background-position: right clamp(8.5333333333px, 1.1111111111vw, 16px) top 50%;
  }
}

.c-pagenate {
  display: flex;
  column-gap: calc(4 * 100vw / 375);
  justify-content: center;
  margin: calc(40 * 100vw / 375) 0;
}
@media print, screen and (min-width:768px) {
  .c-pagenate {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    margin: clamp(32px, 4.1666666667vw, 60px) 0;
  }
}
.c-pagenate__num a,
.c-pagenate__num span {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30 * 100vw / 375);
  height: calc(30 * 100vw / 375);
  font-family: var(--font-family-en);
  font-size: calc(13 * 100vw / 375);
  font-weight: 700;
  color: var(--color-text-01);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: calc(3 * 100vw / 375);
  transition: background-color 0.3s, color 0.3s;
}
@media print, screen and (min-width:768px) {
  .c-pagenate__num a,
  .c-pagenate__num span {
    width: clamp(21.3333333333px, 2.7777777778vw, 40px);
    height: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    line-height: clamp(17.0666666667px, 2.2222222222vw, 32px);
    border-radius: clamp(1.6px, 0.2083333333vw, 3px);
  }
}
.c-pagenate__num a:hover {
  color: var(--color-white);
  background-color: var(--color-primary-01);
}
.c-pagenate__num--current span,
.c-pagenate__num--current a {
  font-weight: 700;
  color: var(--white);
  background-color: var(--black-100);
}
.c-pagenate__num--prev {
  margin-right: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-pagenate__num--prev {
    margin-right: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-pagenate__num--next {
  margin-left: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-pagenate__num--next {
    margin-left: clamp(12.8px, 1.6666666667vw, 24px);
  }
}

.c-visual {
  margin: 0 calc(-20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-visual {
    margin: 0 clamp(-50px, -3.4722222222vw, -26.6666666667px);
  }
}

.c-title {
  margin-top: calc(64 * 100vw / 375);
  font-size: calc(26 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-title {
    margin-top: clamp(53.3333333333px, 6.9444444444vw, 100px);
    font-size: clamp(23.4666666667px, 3.0555555556vw, 44px);
  }
}
@media print, screen and (min-width:768px) {
  .c-title--people {
    margin-top: clamp(70.9333333333px, 9.2361111111vw, 133px);
  }
}
.c-title span {
  display: block;
  margin-bottom: calc(12 * 100vw / 375);
  font-family: var(--font-family-en);
  font-size: calc(16 * 100vw / 375);
  color: var(--orange-100);
}
@media print, screen and (min-width:768px) {
  .c-title span {
    margin-bottom: clamp(5.3333333333px, 0.6944444444vw, 10px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    font-weight: 500;
  }
}

.c-link {
  margin-top: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-link {
    margin-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-link a {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
  color: var(--black-100);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-link a {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-link a:hover {
    color: var(--yellow-100);
    text-decoration: underline;
    border-color: var(--yellow-100);
  }
  .c-link a:hover .c-link__icon {
    color: var(--black-100);
  }
  .c-link a:hover .c-link__icon::before {
    transform: scale(1);
  }
}
.c-link__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-link__icon {
    width: clamp(12.8px, 1.6666666667vw, 24px);
    height: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-link__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-link__icon::before {
    width: clamp(13.8666666667px, 1.8055555556vw, 26px);
    height: clamp(13.8666666667px, 1.8055555556vw, 26px);
  }
}
.c-link__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-link__icon svg {
    width: clamp(5.3333333333px, 0.6944444444vw, 10px);
    height: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}

/* ==========================================================================
Component（カスタムブロック）
========================================================================== */
.c-column {
  margin: calc(48 * 100vw / 375) 0 0;
}
@media print, screen and (min-width:768px) {
  .c-column {
    margin: clamp(25.6px, 3.3333333333vw, 48px) 0 0;
  }
}
.c-column__child > *:first-child {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-column__child figure {
    margin-inline: auto;
  }
}
@media print, screen and (min-width:768px) {
  .c-column__child figure img {
    width: fit-content;
    margin: 0 auto;
  }
}
.c-column__child figure figcaption {
  margin-top: calc(12 * 100vw / 375);
  font-size: calc(11 * 100vw / 375);
  line-height: 1.5;
}
@media print, screen and (min-width:768px) {
  .c-column__child figure figcaption {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(5.8666666667px, 0.7638888889vw, 11px);
  }
}
.c-column__child h3,
.c-column__child h4 {
  margin-top: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-column__child h3,
  .c-column__child h4 {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-column__child h3::before,
.c-column__child h4::before {
  content: none;
}
.c-column__child h3 + *,
.c-column__child h4 + * {
  margin-top: calc(20 * 100vw / 375) !important;
}
@media print, screen and (min-width:768px) {
  .c-column__child h3 + *,
  .c-column__child h4 + * {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px) !important;
  }
}
.c-column.-column2 {
  margin: calc(48 * 100vw / 375) 0 0;
}
@media print, screen and (min-width:768px) {
  .c-column.-column2 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin: clamp(25.6px, 3.3333333333vw, 48px) 0 0;
  }
}
.c-column.-column2 .c-column__child {
  margin-top: calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-column.-column2 .c-column__child {
    width: calc((100% - clamp(21.3333333333px, 2.7777777778vw, 40px)) / 2);
    margin-top: 0;
  }
}
.c-column.-column2 .c-column__child figure {
  margin-inline: 0;
}
.c-column.-column2 .c-column__child figure figcaption {
  padding-inline: 0;
}
@media print, screen and (min-width:768px) {
  .c-column.-column3 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18.6666666667px, 2.4305555556vw, 35px);
  }
}
.c-column.-column3 .c-column__child {
  margin-top: calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-column.-column3 .c-column__child {
    width: calc((100% - clamp(37.3333333333px, 4.8611111111vw, 70px)) / 3);
    margin-top: 0;
  }
}
.c-column.-column3 figure {
  margin-inline: 0;
}
.c-column.-column3 figure figcaption {
  padding-inline: 0;
}
.c-column__title {
  margin-top: calc(24 * 100vw / 375);
  font-size: calc(22 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media print, screen and (min-width:768px) {
  .c-column__title {
    margin-top: clamp(17.0666666667px, 2.2222222222vw, 32px);
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}

.c-column2 {
  margin: calc(50 * 100vw / 375) 0 0;
}
@media print, screen and (min-width:768px) {
  .c-column2 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin: clamp(32px, 4.1666666667vw, 60px) 0 0;
  }
}
.c-column2__child {
  margin-top: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-column2__child {
    width: calc((100% - clamp(42.6666666667px, 5.5555555556vw, 80px)) / 3);
    margin-top: 0;
  }
}
.c-column2__child a {
  display: block;
  color: var(--clr-black);
  text-decoration: none;
}
@media print, screen and (min-width:768px) {
  .c-column2__child a {
    height: 100%;
  }
}
.c-column2__child a[target=_blank]::after {
  content: none;
}
@media (hover: hover) {
  .c-column2__child a:hover .c-column2__title {
    color: var(--clr-primary-100);
  }
}
.c-column2__title {
  margin-top: calc(24 * 100vw / 375);
  font-size: calc(22 * 100vw / 375);
  font-weight: 700;
  transition: color 0.2s ease;
}
@media print, screen and (min-width:768px) {
  .c-column2__title {
    margin-top: clamp(17.0666666667px, 2.2222222222vw, 32px);
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}

.c-box1 {
  margin-top: calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-box1 {
    display: flex;
    column-gap: clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin-top: clamp(32px, 4.1666666667vw, 60px);
  }
}
@media print, screen and (min-width:768px) {
  .c-box1.-small figure {
    flex-shrink: 0;
    width: 30%;
  }
}
@media print, screen and (min-width:768px) {
  .c-box1.-small .c-box1__inner {
    width: 70%;
  }
}
.c-box1 figure {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-box1 figure {
    flex-shrink: 0;
    width: 50%;
  }
}
.c-box1__inner {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-box1__inner {
    width: 50%;
    margin-top: var(--leading-trim);
  }
}
.c-box1__inner > *:first-child {
  margin-top: 0;
}
.c-box1__title {
  margin-top: calc(24 * 100vw / 375);
  font-size: calc(22 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .c-box1__title {
    margin-top: 0;
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-box1 p {
  margin-top: calc(15 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-box1 p {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}

.c-button-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(16 * 100vw / 375);
  margin-top: calc(32 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button-list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8.5333333333px, 1.1111111111vw, 16px);
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
  .c-button-list:has(.c-button:only-child) {
    grid-template-columns: 33.3333333333%;
    justify-content: center;
  }
  .c-button-list:has(.c-button:first-child:nth-last-child(2)) {
    grid-template-columns: repeat(2, 33.3333333333%);
    justify-content: center;
  }
  .c-button-list:has(.c-button:first-child:nth-last-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-button-list:has(.c-button:first-child:nth-last-child(4)) {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-button-list + .c-button-list {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button-list + .c-button-list {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}

.c-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: calc(14 * 100vw / 375) calc(16 * 100vw / 375);
  overflow: hidden;
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: 1.75;
  color: var(--black-100);
  text-decoration: none;
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: calc(10 * 100vw / 375);
  transition: 0.2s color, 0.2s border-color;
}
@media print, screen and (min-width:768px) {
  .c-button {
    padding: clamp(13.3333333333px, 1.7361111111vw, 25px) clamp(16px, 2.0833333333vw, 30px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.c-button::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--black-100);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (hover: hover) {
  .c-button:hover {
    color: var(--white);
  }
  .c-button:hover::after {
    transform: scale(1, 1);
  }
  .c-button:hover svg {
    color: var(--white);
  }
}
.c-button--center {
  gap: calc(16 * 100vw / 375);
  justify-content: center;
}
@media print, screen and (min-width:768px) {
  .c-button--center {
    gap: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-button--center .c-button__text {
  flex-grow: 0;
}
.c-button--center .c-button__icon {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none;
}
.c-button--left {
  justify-content: flex-start;
}
.c-button--left .c-button__icon {
  left: calc(24 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button--left .c-button__icon {
    left: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-button--primary {
  background-color: var(--color-button-primary);
}
.c-button--secondary {
  background-color: var(--color-button-secondary);
}
.c-button--tertiary {
  color: var(--color-button-primary);
  background-color: var(--color-button-tertiary);
  border-color: var(--color-button-primary);
}
.c-button--tertiary .c-button__icon {
  fill: var(--color-button-primary);
}
.c-button[disabled], .c-button--disabled {
  pointer-events: none !important;
  cursor: not-allowed !important;
  background-color: var(--color-disabled-01) !important;
}
@media (hover: hover) {
  .c-button[disabled], .c-button--disabled {
    transition: none;
  }
  .c-button[disabled]:hover, .c-button--disabled:hover {
    opacity: 1;
  }
}
.c-button--reverse {
  color: var(--white);
  background-color: var(--black-100);
  border: 1px solid var(--black-100);
}
.c-button--reverse .c-button__icon {
  color: var(--white);
}
.c-button__text {
  flex-grow: 1;
}
.c-button__icon {
  color: var(--color-text-01);
}
.c-button__icon svg {
  width: calc(17 * 100vw / 375);
  height: calc(10 * 100vw / 375);
  transition: fill 0.2s, stroke 0.2s;
}
@media print, screen and (min-width:768px) {
  .c-button__icon svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}
.c-button[disabled] {
  background: var(--gray-30);
}
.c-button[disabled] .c-button__text {
  color: var(--white);
}
.c-button[disabled] .c-button__icon {
  color: var(--white);
}

.c-button2 {
  position: relative;
  display: block;
  padding: calc(4 * 100vw / 375) calc(63 * 100vw / 375) calc(4 * 100vw / 375) calc(4 * 100vw / 375);
  margin-top: calc(12 * 100vw / 375);
  color: var(--black-100);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  transition: border-color 200ms ease, background-color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-button2 {
    padding: clamp(5.3333333333px, 0.6944444444vw, 10px) clamp(51.2px, 6.6666666667vw, 96px) clamp(5.3333333333px, 0.6944444444vw, 10px) clamp(5.3333333333px, 0.6944444444vw, 10px);
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-button2:hover {
    background-color: #fef9ef;
    border-color: var(--yellow-100);
  }
  .c-button2:hover .c-button2__icon {
    color: var(--black-100);
  }
  .c-button2:hover .c-button2__icon::before {
    transform: scale(1);
  }
}
.c-button2 dl {
  display: flex;
  column-gap: calc(12 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-button2 dl {
    column-gap: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-button2 dl dt {
  flex-shrink: 0;
  width: calc(93 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button2 dl dt {
    width: clamp(80px, 10.4166666667vw, 150px);
  }
}
.c-button2 dl dt img {
  border-radius: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button2 dl dt img {
    border-radius: clamp(3.2px, 0.4166666667vw, 6px);
  }
}
.c-button2 dl dd {
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-button2 dl dd {
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-button2__icon {
  position: absolute;
  top: calc(50% - 12 * 100vw / 375);
  right: calc(16 * 100vw / 375);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-button2__icon {
    position: absolute;
    top: calc(50% - clamp(9.6px, 1.25vw, 18px));
    right: clamp(16px, 2.0833333333vw, 30px);
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
  }
}
.c-button2__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(20.2666666667px, 2.6388888889vw, 38px);
  height: clamp(20.2666666667px, 2.6388888889vw, 38px);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
.c-button2__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button2__icon svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

:where(h2):not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + .c-button2,
.is-style-h2:not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + .c-button2 {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  :where(h2):not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + .c-button2,
  .is-style-h2:not(.is-style-h1, .is-style-h3, .is-style-h4, .is-style-h5, .is-style-h6, .-unstyled) + .c-button2 {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
  }
}

.c-button3 {
  position: relative;
  display: flex;
  column-gap: calc(14 * 100vw / 375);
  align-items: center;
  justify-content: space-between;
  padding: calc(16 * 100vw / 375);
  margin-top: calc(24 * 100vw / 375);
  color: var(--black-100);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  transition: border-color 200ms ease, background-color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-button3 {
    column-gap: clamp(8.5333333333px, 1.1111111111vw, 16px);
    width: fit-content;
    padding: clamp(10.1333333333px, 1.3194444444vw, 19px) clamp(10.6666666667px, 1.3888888889vw, 20px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-button3:hover {
    background-color: #fef9ef;
    border-color: var(--yellow-100);
  }
  .c-button3:hover .c-button3__icon {
    color: var(--black-100);
  }
  .c-button3:hover .c-button3__icon::before {
    transform: scale(1);
  }
}
.c-button3__text {
  margin-block: var(--leading-trim);
  font-size: calc(15 * 100vw / 375);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-button3__text {
    font-size: clamp(9.0666666667px, 1.1805555556vw, 17px);
  }
}
.c-button3__icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-button3__icon {
    width: clamp(12.8px, 1.6666666667vw, 24px);
    height: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-button3__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(13.8666666667px, 1.8055555556vw, 26px);
  height: clamp(13.8666666667px, 1.8055555556vw, 26px);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
.c-button3__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button3__icon svg {
    width: clamp(5.3333333333px, 0.6944444444vw, 10px);
    height: clamp(3.2px, 0.4166666667vw, 6px);
  }
}

.c-button4 {
  position: relative;
  display: flex;
  column-gap: calc(16 * 100vw / 375);
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  padding: calc(10 * 100vw / 375) calc(14 * 100vw / 375) calc(10 * 100vw / 375) calc(16 * 100vw / 375);
  margin-top: calc(24 * 100vw / 375);
  margin-left: auto;
  color: var(--black-100);
  text-decoration: none;
  border: 1px solid var(--black-100);
  border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  transition: border-color 200ms ease, background-color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-button4 {
    column-gap: clamp(8.5333333333px, 1.1111111111vw, 16px);
    padding: clamp(6.4px, 0.8333333333vw, 12px) clamp(6.4px, 0.8333333333vw, 12px) clamp(6.4px, 0.8333333333vw, 12px) clamp(10.6666666667px, 1.3888888889vw, 20px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-button4:hover {
    background-color: #fef9ef;
    border-color: var(--yellow-100);
  }
  .c-button4:hover .c-button4__icon {
    color: var(--black-100);
  }
  .c-button4:hover .c-button4__icon::before {
    transform: scale(1);
  }
}
.c-button4--center {
  margin-right: auto;
  margin-left: auto;
}
.c-button4__text {
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-button4__text {
    font-size: clamp(9.0666666667px, 1.1805555556vw, 17px);
  }
}
.c-button4__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(20 * 100vw / 375);
  height: calc(20 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-button4__icon {
    width: clamp(12.8px, 1.6666666667vw, 24px);
    height: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-button4__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(13.8666666667px, 1.8055555556vw, 26px);
  height: clamp(13.8666666667px, 1.8055555556vw, 26px);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
.c-button4__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-button4__icon svg {
    width: clamp(5.3333333333px, 0.6944444444vw, 10px);
    height: clamp(3.2px, 0.4166666667vw, 6px);
  }
}

.c-qa {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-qa {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-qa__block {
  margin-top: calc(32 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-qa__block {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-qa__question {
  position: relative;
  padding-left: calc(38 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .c-qa__question {
    padding-left: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-qa__question::before {
  position: absolute;
  top: calc(-3 * 100vw / 375);
  left: 0;
  margin-top: var(--leading-trim);
  font-family: var(--font-family-en);
  font-size: calc(28 * 100vw / 375);
  font-weight: 700;
  color: var(--yellow-100);
  content: "Q.";
}
@media print, screen and (min-width:768px) {
  .c-qa__question::before {
    top: 0;
    font-size: clamp(14.9333333333px, 1.9444444444vw, 28px);
  }
}
.c-qa__answer {
  position: relative;
  margin-top: calc(12 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 400;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-m);
}
.c-qa__answer p {
  font-size: inherit;
  line-height: inherit;
}
.c-qa__answer p:first-child {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-qa__answer {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    line-height: 2;
  }
}

.c-numbered-heading {
  display: flex;
  column-gap: calc(16 * 100vw / 375);
  align-items: center;
  margin-top: calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-numbered-heading {
    column-gap: clamp(16px, 2.0833333333vw, 30px);
    margin-top: clamp(32px, 4.1666666667vw, 60px);
  }
}
.c-numbered-heading__num {
  flex-shrink: 0;
  padding-right: calc(10 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-right: 1px solid var(--yellow-100);
}
@media print, screen and (min-width:768px) {
  .c-numbered-heading__num {
    padding-right: clamp(12.2666666667px, 1.5972222222vw, 23px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
    border-color: var(--black-100);
  }
}
.c-numbered-heading__num span {
  display: block;
  margin-top: calc(5 * 100vw / 375);
  font-family: var(--font-family-en);
  font-size: calc(44 * 100vw / 375);
  font-weight: 500;
  color: var(--yellow-100);
}
@media print, screen and (min-width:768px) {
  .c-numbered-heading__num span {
    margin-top: clamp(2.6666666667px, 0.3472222222vw, 5px);
    font-size: clamp(25.6px, 3.3333333333vw, 48px);
  }
}
.c-numbered-heading__title {
  flex-grow: 1;
  font-size: calc(19 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
}
@media print, screen and (min-width:768px) {
  .c-numbered-heading__title {
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}

.c-check-list {
  margin-top: calc(24 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-check-list {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-check-list li {
  position: relative;
  padding-left: calc(24 * 100vw / 375);
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-check-list li {
    padding-left: clamp(12.8px, 1.6666666667vw, 24px);
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-check-list li::before {
  position: absolute;
  top: calc(4 * 100vw / 375);
  left: 0;
  display: block;
  width: calc(16 * 100vw / 375);
  height: calc(18 * 100vw / 375);
  content: "";
  background: url("../images/common/icon_check.svg") no-repeat center/contain;
}
@media print, screen and (min-width:768px) {
  .c-check-list li::before {
    top: clamp(3.2px, 0.4166666667vw, 6px);
    width: clamp(8.5333333333px, 1.1111111111vw, 16px);
    height: clamp(9.6px, 1.25vw, 18px);
  }
}

.c-block {
  padding: calc(30 * 100vw / 375);
  margin-top: calc(30 * 100vw / 375);
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: calc(10 * 100vw / 375);
}
.c-block > *:first-child {
  margin-top: 0 !important;
}
.c-block > * {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-block > * {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
@media print, screen and (min-width:768px) {
  .c-block {
    padding: clamp(26.6666666667px, 3.4722222222vw, 50px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
    border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-block__title {
  font-size: calc(18 * 100vw / 375) !important;
}
@media print, screen and (min-width:768px) {
  .c-block__title {
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px) !important;
  }
}

.c-voices {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-voices {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-voices__item {
  display: flex;
  column-gap: calc(15 * 100vw / 375);
  margin-top: calc(24 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-voices__item {
    column-gap: clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
@media print, screen and (min-width:768px) {
  .c-voices__person {
    display: block;
    text-align: center;
  }
}
.c-voices__person dt {
  width: calc(50 * 100vw / 375);
  height: calc(50 * 100vw / 375);
  overflow: hidden;
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-voices__person dt {
    width: clamp(37.3333333333px, 4.8611111111vw, 70px);
    height: clamp(37.3333333333px, 4.8611111111vw, 70px);
  }
}
.c-voices__person dd {
  margin-top: calc(10 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  text-align: center;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-voices__person dd {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.c-voices__text {
  position: relative;
  padding: calc(20 * 100vw / 375) calc(24 * 100vw / 375);
  background: var(--gray-10);
  border: 1px solid var(--yellow-100);
  border-radius: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-voices__text {
    padding: clamp(17.0666666667px, 2.2222222222vw, 32px);
    border-radius: clamp(3.2px, 0.4166666667vw, 6px);
  }
}
.c-voices__text p {
  font-size: calc(14 * 100vw / 375);
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-voices__text p {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-voices__text::after {
  position: absolute;
  top: calc(18 * 100vw / 375);
  left: calc(-13 * 100vw / 375);
  display: block;
  width: calc(14 * 100vw / 375);
  height: calc(14 * 100vw / 375);
  margin-top: 0;
  content: "";
  background: url("../images/common/icon_voices.png") no-repeat;
  background-size: contain;
}
@media print, screen and (min-width:768px) {
  .c-voices__text::after {
    top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    left: clamp(-25px, -1.7361111111vw, -13.3333333333px);
    width: clamp(14.9333333333px, 1.9444444444vw, 28px);
    height: clamp(14.9333333333px, 1.9444444444vw, 28px);
    background: url("../images/common/icon_voice_pc.png") no-repeat;
    background-size: contain;
  }
}
.c-voices__text > *:first-child {
  margin-top: 0 !important;
}
.c-voices__title {
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-voices__title {
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-voices__title + p {
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-voices__title + p {
    margin-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-voices__label {
  width: fit-content;
  padding: calc(3 * 100vw / 375) calc(8 * 100vw / 375);
  font-size: calc(11 * 100vw / 375);
  line-height: var(--line-height-s);
  color: var(--white);
  letter-spacing: var(--letter-spacing-m);
  background: var(--black-100);
  border-radius: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-voices__label {
    padding: clamp(1.6px, 0.2083333333vw, 3px) clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(5.8666666667px, 0.7638888889vw, 11px);
    border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-voices__label + .c-voices__title {
  margin-top: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-voices__label + .c-voices__title {
    margin-top: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}

.c-interviews {
  margin-top: calc(24 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-interviews {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
.c-interviews__link {
  display: block;
  margin-top: calc(24 * 100vw / 375);
  color: var(--black-100);
  text-decoration: none;
}
@media print, screen and (min-width:768px) {
  .c-interviews__link {
    position: relative;
    padding: clamp(10.6666666667px, 1.3888888889vw, 20px) clamp(82.1333333333px, 10.6944444444vw, 154px) clamp(10.6666666667px, 1.3888888889vw, 20px) clamp(16px, 2.0833333333vw, 30px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
    background: var(--white);
    border: 1px solid var(--black-100);
    border-radius: clamp(2.1333333333px, 0.2777777778vw, 4px);
    transition: border-color 200ms ease, background-color 200ms ease;
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-interviews__link:hover {
    background-color: #fef9ef;
    border-color: var(--yellow-100);
  }
  .c-interviews__link:hover .c-interviews__icon {
    color: var(--black-100);
  }
  .c-interviews__link:hover .c-interviews__icon::before {
    transform: scale(1);
  }
}
.c-interviews__title {
  margin-top: calc(4 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-interviews__title {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-interviews__title-sub.u-sp-only {
  display: flex;
  column-gap: calc(20 * 100vw / 375);
  align-items: center;
  font-size: calc(11 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
.c-interviews__title-sub.u-sp-only::after {
  flex-grow: 1;
  height: 1px;
  content: "";
  background: #d8d8d8;
}
.c-interviews__inner {
  position: relative;
  display: flex;
  column-gap: calc(20 * 100vw / 375);
  align-items: center;
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-interviews__inner {
    column-gap: clamp(16px, 2.0833333333vw, 30px);
    margin-top: 0;
  }
}
.c-interviews__img {
  flex-shrink: 0;
  width: calc(120 * 100vw / 375);
  height: calc(120 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-interviews__img {
    width: clamp(85.3333333333px, 11.1111111111vw, 160px);
    height: clamp(85.3333333333px, 11.1111111111vw, 160px);
  }
}
.c-interviews__img img {
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-interviews__info {
    display: flex;
    align-items: center;
  }
}
.c-interviews__info-job {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-interviews__info-job {
    column-gap: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.c-interviews__info-job dt {
  padding: calc(5 * 100vw / 375) calc(6 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  line-height: 1;
  color: var(--white);
  letter-spacing: var(--letter-spacing-m);
  white-space: nowrap;
  background: var(--yellow-120);
  border-radius: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-interviews__info-job dt {
    padding: clamp(1.6px, 0.2083333333vw, 3px) clamp(3.2px, 0.4166666667vw, 6px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
    border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-interviews__info-job dd {
  font-size: calc(12 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-interviews__info-job dd {
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.c-interviews__info-sub.u-pc-only {
  margin-right: clamp(6.4px, 0.8333333333vw, 12px);
  font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  font-weight: 700;
}
.c-interviews__text {
  display: flex;
  flex-wrap: wrap;
  column-gap: calc(8 * 100vw / 375);
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
}
@media print, screen and (min-width:768px) {
  .c-interviews__text {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.c-interviews__text li {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .c-interviews__text li {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.c-interviews__text li:not(:first-child)::before {
  display: block;
  width: 1px;
  height: calc(18 * 100vw / 375);
  content: "";
  background: var(--beige-100);
}
@media print, screen and (min-width:768px) {
  .c-interviews__text li:not(:first-child)::before {
    height: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-interviews__text li:last-child {
  width: 100%;
}
.c-interviews__text li:last-child::before {
  content: none;
}
.c-interviews__text2 {
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  line-height: 1.75;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-interviews__text2 {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
@media print, screen and (min-width:768px) {
  .c-interviews__icon {
    position: absolute;
    top: calc(50% - clamp(9.6px, 1.25vw, 18px));
    right: clamp(16px, 2.0833333333vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
    color: var(--white);
    background: var(--black-100);
    border-radius: 50%;
  }
  .c-interviews__icon::before {
    position: absolute;
    z-index: 1;
    display: block;
    width: clamp(20.2666666667px, 2.6388888889vw, 38px);
    height: clamp(20.2666666667px, 2.6388888889vw, 38px);
    content: "";
    background: var(--yellow-100);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 200ms ease;
  }
  .c-interviews__icon svg {
    position: relative;
    z-index: 2;
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

.c-video {
  position: relative;
  margin: calc(24 * 100vw / 375) 0;
  cursor: pointer;
}
@media print, screen and (min-width:768px) {
  .c-video {
    margin: clamp(16px, 2.0833333333vw, 30px) 0;
  }
}
@media (hover: hover) {
  .c-video:hover .c-video__controls svg circle {
    fill: var(--yellow-100);
    stroke: var(--yellow-100);
  }
}
.c-video video {
  width: 100%;
  height: auto;
  border-radius: calc(5 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-video video {
    border-radius: clamp(2.6666666667px, 0.3472222222vw, 5px);
  }
}
.c-video__controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-video__controls svg {
  width: calc(40 * 100vw / 375);
  height: calc(40 * 100vw / 375);
}
.c-video__controls svg circle {
  transition: fill 200ms ease, stroke 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-video__controls svg {
    width: clamp(32px, 4.1666666667vw, 60px);
    height: clamp(32px, 4.1666666667vw, 60px);
  }
}

.c-step {
  margin: calc(30 * 100vw / 375) 0;
}
@media print, screen and (min-width:768px) {
  .c-step {
    margin: clamp(21.3333333333px, 2.7777777778vw, 40px) 0;
  }
}
.c-step__item {
  padding-bottom: calc(20 * 100vw / 375);
  margin-bottom: calc(20 * 100vw / 375);
  background-image: repeating-linear-gradient(90deg, var(--gray-100), var(--gray-100) 3px, transparent 3px, transparent 6px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 100% 1px;
}
@media print, screen and (min-width:768px) {
  .c-step__item {
    display: flex;
    column-gap: clamp(26.6666666667px, 3.4722222222vw, 50px);
    padding-bottom: clamp(10.6666666667px, 1.3888888889vw, 20px);
    margin-bottom: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-step__item dt {
  font-family: var(--font-family-en);
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  color: var(--yellow-100);
}
@media print, screen and (min-width:768px) {
  .c-step__item dt {
    width: clamp(64px, 8.3333333333vw, 120px);
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.c-step__item dd {
  margin-top: calc(12 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-m);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .c-step__item dd {
    margin-top: 0;
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
@media print, screen and (min-width:768px) {
  .c-step p {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}

.c-cta2 {
  padding: calc(30 * 100vw / 375) calc(32 * 100vw / 375) calc(20 * 100vw / 375);
  margin-top: calc(50 * 100vw / 375);
  background-color: var(--black-100);
  background-image: url("../images/common/bg_cta2.png");
  background-repeat: no-repeat;
  background-position: 50% 42%;
  background-size: cover;
  border-radius: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta2 {
    min-height: clamp(141.8666666667px, 18.4722222222vw, 266px);
    max-height: clamp(165.3333333333px, 21.5277777778vw, 310px);
    padding: clamp(24px, 3.125vw, 45px) clamp(21.3333333333px, 2.7777777778vw, 40px) clamp(18.6666666667px, 2.4305555556vw, 35px);
    margin-top: clamp(32px, 4.1666666667vw, 60px);
    background-image: url("../images/common/bg_cta2_pc.png");
    background-position: center center;
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px) clamp(4.2666666667px, 0.5555555556vw, 8px) clamp(2.1333333333px, 0.2777777778vw, 4px) clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.c-cta2__title {
  font-size: calc(22 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .c-cta2__title {
    margin-top: clamp(13.3333333333px, 1.7361111111vw, 25px);
    font-size: clamp(18.1333333333px, 2.3611111111vw, 34px);
    letter-spacing: 0;
  }
}
.c-cta2 .c-button {
  column-gap: calc(8 * 100vw / 375);
  justify-content: center;
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta2 .c-button {
    column-gap: clamp(7.4666666667px, 0.9722222222vw, 14px);
    max-width: clamp(288px, 37.5vw, 540px);
    padding-block: clamp(8px, 1.0416666667vw, 15px);
    margin: clamp(10.6666666667px, 1.3888888889vw, 20px) auto 0;
  }
}
.c-cta2 .c-button__text {
  flex-grow: unset;
}
@media print, screen and (min-width:768px) {
  .c-cta2 .c-button__text {
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-cta2__link {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta2__link {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-cta2__link a {
  display: flex;
  column-gap: calc(10 * 100vw / 375);
  align-items: center;
  justify-content: center;
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  text-decoration: none;
}
@media print, screen and (min-width:768px) {
  .c-cta2__link a {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-cta2__link a svg {
  width: calc(15 * 100vw / 375);
  height: calc(9 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta2__link a svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

.c-accordion {
  margin-top: calc(24 * 100vw / 375);
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--black-100);
  border-radius: calc(8 * 100vw / 375);
  transition: border-color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-accordion {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-accordion:hover {
    border-color: var(--yellow-100);
  }
}
@media (hover: hover) {
  .c-accordion:hover summary {
    background-color: var(--beige-10);
  }
  .c-accordion:hover .c-accordion__icon svg path {
    stroke: var(--yellow-100);
  }
  .c-accordion:hover .c-accordion__content {
    border-color: var(--yellow-100);
  }
}
.c-accordion[open=true] .c-accordion__icon {
  transform: rotate(0);
}
.c-accordion summary {
  position: relative;
  padding: calc(10 * 100vw / 375) calc(50 * 100vw / 375) calc(10 * 100vw / 375) calc(20 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-m);
  letter-spacing: var(--letter-spacing-l);
  list-style-type: none;
  background: var(--gray-10);
  transition: background-color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-accordion summary {
    padding: clamp(7.4666666667px, 0.9722222222vw, 14px) clamp(28.8px, 3.75vw, 54px) clamp(7.4666666667px, 0.9722222222vw, 14px) clamp(12.8px, 1.6666666667vw, 24px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-accordion summary::marker {
  content: "";
}
.c-accordion__icon {
  position: absolute;
  top: calc(12 * 100vw / 375);
  right: calc(20 * 100vw / 375);
  transform: rotate(180deg);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-accordion__icon {
    top: clamp(8px, 1.0416666667vw, 15px);
    right: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-accordion__icon svg {
  width: calc(20 * 100vw / 375);
  height: calc(20 * 100vw / 375);
}
.c-accordion__icon svg path {
  transition: stroke 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-accordion__icon svg {
    width: clamp(10.6666666667px, 1.3888888889vw, 20px);
    height: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-accordion .wp-block-details__content {
  margin-top: 0;
}
.c-accordion__content {
  padding: calc(12 * 100vw / 375) calc(20 * 100vw / 375) calc(14 * 100vw / 375);
  border-top: 1px solid var(--gray-50);
  transition: border-color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-accordion__content {
    padding: clamp(6.9333333333px, 0.9027777778vw, 13px) clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-accordion__content > *:first-child {
  margin-top: 0 !important;
}
.c-accordion__content p {
  font-size: calc(14 * 100vw / 375);
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media print, screen and (min-width:768px) {
  .c-accordion__content p {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}

.c-toc {
  padding: calc(30 * 100vw / 375);
  margin-top: calc(24 * 100vw / 375);
  background: var(--gray-10);
  border-radius: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-toc {
    padding: clamp(19.7333333333px, 2.5694444444vw, 37px) clamp(37.3333333333px, 4.8611111111vw, 70px) clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
    border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-toc dl dt {
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .c-toc dl dt {
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
@media print, screen and (min-width:768px) {
  .c-toc dl dd ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-toc dl dd ul li {
  background-image: repeating-linear-gradient(90deg, var(--gray-50), var(--gray-50) 3px, transparent 3px, transparent 6px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 100% 1px;
  transition: background-image 200ms ease, background-size 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-toc dl dd ul li {
    width: calc((100% - clamp(21.3333333333px, 2.7777777778vw, 40px)) / 2);
  }
}
@media (hover: hover) {
  .c-toc dl dd ul li:hover {
    background-image: repeating-linear-gradient(90deg, var(--orange-100), var(--orange-100) 3px, transparent 3px, transparent 6px);
  }
  .c-toc dl dd ul li:hover a {
    color: var(--orange-100);
  }
  .c-toc dl dd ul li:hover a svg path {
    fill: var(--orange-100);
  }
}
.c-toc dl dd ul li a {
  display: flex;
  column-gap: calc(10 * 100vw / 375);
  justify-content: space-between;
  padding: calc(13 * 100vw / 375) calc(22 * 100vw / 375) calc(13 * 100vw / 375) 0;
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  color: var(--black-100);
  text-decoration: none;
  transition: color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-toc dl dd ul li a {
    padding: clamp(8px, 1.0416666667vw, 15px) 0;
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-toc dl dd ul li a svg {
  position: relative;
  top: calc(8 * 100vw / 375);
  flex-shrink: 0;
  width: calc(11 * 100vw / 375);
  height: calc(11 * 100vw / 375);
}
.c-toc dl dd ul li a svg path {
  transition: fill 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-toc dl dd ul li a svg {
    top: clamp(3.2px, 0.4166666667vw, 6px);
    width: clamp(5.8666666667px, 0.7638888889vw, 11px);
    height: clamp(5.8666666667px, 0.7638888889vw, 11px);
  }
}

.c-timeline {
  margin-top: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-timeline {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-timeline__item {
  position: relative;
  display: flex;
  column-gap: calc(20 * 100vw / 375);
  align-items: flex-start;
}
@media print, screen and (min-width:768px) {
  .c-timeline__item {
    column-gap: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-timeline__item:not(:last-child) {
  padding-bottom: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-timeline__item:not(:last-child) {
    padding-bottom: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-timeline__item:not(:last-child)::before {
  position: absolute;
  top: 0;
  left: calc(25 * 100vw / 375);
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  background-image: repeating-linear-gradient(180deg, var(--gray-30), var(--gray-30) 4px, transparent 4px, transparent 6px);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: 1px 100%;
}
@media print, screen and (min-width:768px) {
  .c-timeline__item:not(:last-child)::before {
    left: clamp(22.9333333333px, 2.9861111111vw, 43px);
  }
}
.c-timeline__time {
  position: relative;
  z-index: 3;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: calc(50 * 100vw / 375);
  height: calc(50 * 100vw / 375);
  font-family: var(--font-family-en);
  font-size: calc(14 * 100vw / 375);
  background: var(--white);
  border: 1px solid var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .c-timeline__time {
    width: clamp(45.8666666667px, 5.9722222222vw, 86px);
    height: clamp(45.8666666667px, 5.9722222222vw, 86px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
@media print, screen and (min-width:768px) {
  .c-timeline__block:has(.c-timeline__fig) {
    display: flex;
    column-gap: clamp(16px, 2.0833333333vw, 30px);
  }
  .c-timeline__block:has(.c-timeline__fig) .c-timeline__text,
  .c-timeline__block:has(.c-timeline__fig) .c-timeline__fig {
    flex: 1 1 0;
  }
}
.c-timeline__text p {
  line-height: var(--line-height-l);
}
.c-timeline__title {
  width: fit-content;
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
  background: linear-gradient(transparent 50%, var(--yellow-30) 50%, var(--yellow-30) 90%, transparent 90%);
}
@media print, screen and (min-width:768px) {
  .c-timeline__title {
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.c-timeline__title + p {
  margin-top: calc(4 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-timeline__title + p {
    margin-top: clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-timeline__fig {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-timeline__fig {
    margin-top: 0;
  }
}

.c-requirements {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-requirements {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-requirements table {
  display: block;
  background-image: repeating-linear-gradient(90deg, var(--gray-50), var(--gray-50) 3px, transparent 3px, transparent 6px);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 100% 1px;
}
@media print, screen and (min-width:768px) {
  .c-requirements table {
    display: table;
    width: 100%;
  }
}
.c-requirements table tbody {
  display: block;
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody {
    display: table-row-group;
  }
}
.c-requirements table tbody tr {
  display: block;
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr {
    display: table-row;
    background-image: repeating-linear-gradient(90deg, var(--gray-50), var(--gray-50) 3px, transparent 3px, transparent 6px);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 100% 1px;
  }
}
.c-requirements table tbody tr th,
.c-requirements table tbody tr td {
  display: block;
  text-align: left;
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr th,
  .c-requirements table tbody tr td {
    display: table-cell;
    padding: clamp(12.8px, 1.6666666667vw, 24px) 0;
    vertical-align: top;
  }
}
.c-requirements table tbody tr th {
  padding-top: calc(20 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr th {
    width: 30%;
    padding: clamp(12.8px, 1.6666666667vw, 24px) 0;
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-requirements table tbody tr td {
  padding-top: calc(12 * 100vw / 375);
  padding-bottom: calc(20 * 100vw / 375);
  background-image: repeating-linear-gradient(90deg, var(--gray-50), var(--gray-50) 3px, transparent 3px, transparent 6px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 100% 1px;
}
.c-requirements table tbody tr td > *:first-child {
  margin-top: 0 !important;
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr td {
    padding: clamp(12.8px, 1.6666666667vw, 24px) 0;
    padding-left: clamp(12.8px, 1.6666666667vw, 24px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    background: none;
  }
}
.c-requirements table tbody tr td ul.wp-block-list {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr td ul.wp-block-list {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-requirements table tbody tr td ul.wp-block-list > li {
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  line-height: var(--line-height-m);
}
.c-requirements table tbody tr td ul.wp-block-list > li:first-child {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr td ul.wp-block-list > li {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-requirements table tbody tr td ul.wp-block-list > li ul.wp-block-list {
  margin-top: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr td ul.wp-block-list > li ul.wp-block-list {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.c-requirements table tbody tr td ul.wp-block-list > li ul.wp-block-list li {
  margin-top: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr td ul.wp-block-list > li ul.wp-block-list li {
    margin-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-requirements table tbody tr td p {
  margin-top: calc(20 * 100vw / 375);
  line-height: 1.75;
}
@media print, screen and (min-width:768px) {
  .c-requirements table tbody tr td p {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}

.c-list2 {
  margin-top: calc(40 * 100vw / 375);
  margin-right: 0;
  background: var(--white);
  border: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-list2 {
    margin-top: clamp(25.0666666667px, 3.2638888889vw, 47px);
    margin-right: 0;
    background-color: transparent;
    border-right: 1px solid var(--black-100);
  }
}
.c-list2 li {
  border-bottom: 1px solid var(--black-100);
}
.c-list2 li:last-child {
  border-bottom: none;
}
.c-list2 li a {
  position: relative;
  display: flex;
  column-gap: calc(16 * 100vw / 375);
  padding: calc(24 * 100vw / 375) calc(20 * 100vw / 375);
  color: var(--black-100);
  text-decoration: none;
  transition: background-color 200ms ease;
}
.c-list2 li a[target=_blank]::after {
  content: none;
}
@media print, screen and (min-width:768px) {
  .c-list2 li a {
    column-gap: clamp(34.1333333333px, 4.4444444444vw, 64px);
    padding: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
@media (hover: hover) {
  .c-list2 li a:hover {
    background: #fef9ef;
  }
  .c-list2 li a:hover .c-list2__line {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
  .c-list2 li a:hover .c-list2__icon {
    color: var(--black-100);
  }
  .c-list2 li a:hover .c-list2__icon::before {
    transform: scale(1);
  }
}
.c-list2 li a figure {
  flex-shrink: 0;
  width: calc(90 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-list2 li a figure {
    width: clamp(106.6666666667px, 13.8888888889vw, 200px);
  }
}
.c-list2__title {
  display: flex;
  flex-grow: 1;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-m);
}
@media print, screen and (min-width:768px) {
  .c-list2__title {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-list2__line {
  display: inline;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0 1px;
  transition: background-size 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-list2__text {
  margin-top: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-list2__text {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-list2__text > *:first-child {
  margin-top: 0;
}
.c-list2__text p {
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .c-list2__text p {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-list2__icon {
  position: absolute;
  top: calc(24 * 100vw / 375);
  right: calc(11 * 100vw / 375);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-list2__icon {
    position: relative;
    top: 0;
    right: 0;
    width: clamp(12.8px, 1.6666666667vw, 24px);
    height: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.c-list2__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-list2__icon::before {
    width: clamp(13.8666666667px, 1.8055555556vw, 26px);
    height: clamp(13.8666666667px, 1.8055555556vw, 26px);
  }
}
.c-list2__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width:768px) {
  .c-list2__icon svg {
    width: clamp(5.3333333333px, 0.6944444444vw, 10px);
    height: clamp(3.2px, 0.4166666667vw, 6px);
  }
}

.c-list3 {
  margin-top: calc(40 * 100vw / 375);
  margin-right: 0;
  border: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-list3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: clamp(25.0666666667px, 3.2638888889vw, 47px);
    margin-right: 0;
    border-right: 1px solid var(--black-100);
    border-bottom: unset;
  }
}
.c-list3 li {
  padding: calc(24 * 100vw / 375) calc(20 * 100vw / 375);
  background-color: var(--white);
  border-bottom: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-list3 li {
    padding: clamp(17.0666666667px, 2.2222222222vw, 32px) clamp(12.8px, 1.6666666667vw, 24px);
    background-color: transparent;
  }
}
@media print, screen and (min-width:768px) {
  .c-list3 li:nth-child(odd) {
    border-right: 1px solid var(--black-100);
  }
}
.c-list3 li:last-child {
  border-bottom: none;
}
@media print, screen and (min-width:768px) {
  .c-list3 li:last-child {
    border-bottom: 1px solid var(--black-100);
  }
}
.c-list3 li dl dt {
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-list3 li dl dt {
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.c-list3 li dl dd {
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .c-list3 li dl dd {
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}

@media print, screen and (min-width:768px) {
  .c-list4 {
    display: flex;
  }
}
.c-list4 li {
  border: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-list4 li {
    width: 25%;
  }
}
.c-list4 li:not(:first-child) {
  border-top: none;
}
@media print, screen and (min-width:768px) {
  .c-list4 li:not(:first-child) {
    border-top: 1px solid var(--black-100);
    border-left: none;
  }
}
.c-list4 li a {
  display: flex;
  justify-content: space-between;
  padding: calc(20 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  line-height: 1.6;
  color: var(--black-100);
  text-decoration: none;
  background-color: var(--white);
  transition: color 200ms ease, background-color 200ms ease;
}
.c-list4 li a[target=_blank]::after {
  content: none;
}
@media print, screen and (min-width:768px) {
  .c-list4 li a {
    align-items: center;
    height: 100%;
    padding: clamp(12.2666666667px, 1.5972222222vw, 23px) clamp(16px, 2.0833333333vw, 30px);
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-list4 li a:hover {
    color: var(--yellow-100);
    background-color: #fef9ef;
  }
  .c-list4 li a:hover .c-list4__icon {
    color: var(--black-100);
  }
  .c-list4 li a:hover .c-list4__icon::before {
    transform: scale(1);
  }
}
.c-list4__icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-list4__icon {
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
  }
}
.c-list4__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-list4__icon::before {
    width: clamp(20.2666666667px, 2.6388888889vw, 38px);
    height: clamp(20.2666666667px, 2.6388888889vw, 38px);
  }
}
.c-list4__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-list4__icon svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

.c-cta3 {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta3 {
    margin-top: clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
.c-cta3 a {
  display: block;
  height: calc(276 * 100vw / 375);
  padding: calc(87 * 100vw / 375) 0 0;
  overflow: hidden;
  color: var(--black-100);
  text-align: center;
  text-decoration: none;
  background: url("../images/common/bg_cta3.png") no-repeat 50% 50%/cover;
  border-radius: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta3 a {
    height: clamp(170.6666666667px, 22.2222222222vw, 320px);
    padding: clamp(32px, 4.1666666667vw, 60px) 0 0;
    background-image: url("../images/common/bg_cta3_pc.png");
    border: 1px solid transparent;
    border-radius: clamp(10.6666666667px, 1.3888888889vw, 20px);
    transform: border-color 200ms ease;
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width:768px) {
  .c-cta3 a:hover {
    background-color: #fef9ef;
    background-image: url("../images/common/bg_cta3_pc_hover.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    border-color: #f8b933;
  }
  .c-cta3 a:hover .c-cta3__text {
    color: var(--yellow-100);
  }
  .c-cta3 a:hover .c-cta3__icon {
    color: var(--black-100);
  }
  .c-cta3 a:hover .c-cta3__icon::before {
    transform: scale(1);
  }
}
.c-cta3 a dl {
  letter-spacing: 0;
}
.c-cta3 a dl dt {
  font-size: calc(13 * 100vw / 375);
  font-weight: 500;
  line-height: 1.8;
}
@media print, screen and (min-width:768px) {
  .c-cta3 a dl dt {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.c-cta3 a dl dd {
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(24 * 100vw / 375);
  font-weight: 600;
  line-height: 1.3;
}
@media print, screen and (min-width:768px) {
  .c-cta3 a dl dd {
    margin-top: clamp(3.7333333333px, 0.4861111111vw, 7px);
    font-size: clamp(23.4666666667px, 3.0555555556vw, 44px);
  }
}
.c-cta3 a dl dd span:nth-child(1) {
  color: #ec7d24;
}
.c-cta3 a dl dd span:nth-child(2) {
  color: #6981a9;
}
.c-cta3 a dl dd span:nth-child(3) {
  color: #f8b933;
}
@media print, screen and (min-width:768px) {
  .c-cta3 a dl dd span:nth-child(3) {
    display: block;
  }
}
.c-cta3__text {
  display: flex;
  flex-direction: row-reverse;
  column-gap: calc(10 * 100vw / 375);
  align-items: center;
  justify-content: center;
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  transition: color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-cta3__text {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
    margin-top: clamp(18.1333333333px, 2.3611111111vw, 34px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.c-cta3__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .c-cta3__icon {
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
  }
}
.c-cta3__icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .c-cta3__icon::before {
    width: clamp(20.2666666667px, 2.6388888889vw, 38px);
    height: clamp(20.2666666667px, 2.6388888889vw, 38px);
  }
}
.c-cta3__icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-cta3__icon svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}

.c-title-section {
  position: relative;
  margin-top: calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-title-section {
    margin-top: clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.c-title-section__title {
  padding: 0 !important;
  margin: 0 !important;
  font-size: calc(24 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .c-title-section__title {
    position: absolute;
    top: 0;
    left: 0;
    min-height: unset !important;
    font-size: clamp(17.0666666667px, 2.2222222222vw, 32px) !important;
  }
}
.c-title-section__title + .c-list2, .c-title-section__title + .c-list3 {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-title-section__title + .c-list2, .c-title-section__title + .c-list3 {
    margin-top: 0;
    margin-left: clamp(117.3333333333px, 15.2777777778vw, 220px);
  }
}

.c-people {
  margin-top: calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-people {
    margin-top: clamp(32px, 4.1666666667vw, 60px);
  }
}
.c-people__list {
  display: flex;
  column-gap: calc(20 * 100vw / 375);
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-people__list {
    column-gap: clamp(16px, 2.0833333333vw, 30px);
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.c-people__list figure {
  flex-shrink: 0;
  width: calc(80 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .c-people__list figure {
    width: clamp(137.0666666667px, 17.8472222222vw, 257px);
  }
}
.c-people__list dl {
  flex-grow: 1;
}
@media print, screen and (min-width:768px) {
  .c-people__list dl {
    width: clamp(274.1333333333px, 35.6944444444vw, 514px);
    margin-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.c-people__list dl dt {
  position: relative;
  padding-bottom: calc(15 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
  border-bottom: 1px solid var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .c-people__list dl dt {
    padding-bottom: clamp(9.0666666667px, 1.1805555556vw, 17px);
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.c-people__list dl dt::after {
  position: absolute;
  bottom: calc(-2 * 100vw / 375);
  left: 0;
  display: block;
  width: calc(40 * 100vw / 375);
  height: calc(3 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
}
@media print, screen and (min-width:768px) {
  .c-people__list dl dt::after {
    bottom: clamp(-2px, -0.1388888889vw, -1.0666666667px);
    width: clamp(21.3333333333px, 2.7777777778vw, 40px);
    height: clamp(1.6px, 0.2083333333vw, 3px);
  }
}
.c-people__list dl dd {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  line-height: var(--line-height-m);
  color: var(--black-100);
}
@media print, screen and (min-width:768px) {
  .c-people__list dl dd {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    line-height: var(--line-height-l);
    letter-spacing: var(--letter-spacing-l);
  }
}

/* ==========================================================================
Project
========================================================================== */
.p-home-object {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.p-home-object.-circle {
  aspect-ratio: 1/1;
  background-color: #d9a;
}
.p-home-object.-square {
  aspect-ratio: 1/1;
  background-color: var(--beige-100);
}
.p-home-object.-square2 {
  aspect-ratio: 1/1;
  background-color: var(--yellow-100);
}
.p-home-object.-rectangle {
  aspect-ratio: 107/135;
  background-color: var(--beige-100);
}
.p-home-object.-rectangle2 {
  aspect-ratio: 107/135;
  background-color: var(--yellow-100);
}
.p-home-object.-arch1 {
  aspect-ratio: 68/80;
  background: url("../images/home/arch.svg") no-repeat center/contain;
}
.p-home-object.-arch2 {
  aspect-ratio: 68/80;
  background: url("../images/home/arch2.svg") no-repeat center/contain;
}
.p-home-object.-pentagon {
  aspect-ratio: 129/131;
  background: url("../images/home/pentagon.svg") no-repeat center/contain;
}
.p-home-object.-pentagon2 {
  aspect-ratio: 129/131;
  background: url("../images/home/pentagon2.svg") no-repeat center/contain;
}
.p-home-object.-pentagon3 {
  aspect-ratio: 129/131;
  background: url("../images/home/pentagon3.svg") no-repeat center/contain;
}
.p-home-object.-photo {
  aspect-ratio: 1/1;
}
.p-home-object.-wire-rectangle {
  aspect-ratio: 1/1;
  background: url("../images/home/wire_rect.svg") no-repeat center/contain;
}
.p-home-object.-wire-circle {
  aspect-ratio: 1/1;
  background: url("../images/home/wire_circle.svg") no-repeat center/contain;
}
.p-home-object.-blur1 {
  filter: blur(1px);
}
.p-home-object.-blur2 {
  filter: blur(2px);
}
.p-home-object.-blur3 {
  filter: blur(3px);
}
.p-home-object.-blur4 {
  filter: blur(4px);
}
.p-home-object.-blur5 {
  filter: blur(5px);
}
.p-home-object.-blur6 {
  filter: blur(6px);
}
.p-home-object.-blur7 {
  filter: blur(7px);
}
.p-home-object.-blur8 {
  filter: blur(8px);
}
.p-home-object.-blur9 {
  filter: blur(9px);
}
.p-home-object.-blur10 {
  filter: blur(10px);
}
.p-home-object.-blur11 {
  filter: blur(11px);
}
.p-home-object.-blur12 {
  filter: blur(12px);
}
.p-home-object.-blur13 {
  filter: blur(13px);
}
.p-home-object.-blur14 {
  filter: blur(14px);
}
.p-home-object.-blur15 {
  filter: blur(15px);
}
.p-home-object.-blur16 {
  filter: blur(16px);
}
.p-home-object.-blur17 {
  filter: blur(17px);
}
.p-home-object.-blur18 {
  filter: blur(18px);
}
.p-home-object.-blur19 {
  filter: blur(19px);
}
.p-home-object.-blur20 {
  filter: blur(20px);
}

html:has(.home) {
  scroll-behavior: unset !important;
}

.p-home__title span {
  display: flex;
  column-gap: calc(4 * 100vw / 375);
  align-items: center;
  margin-bottom: calc(15 * 100vw / 375);
  font-family: var(--font-family-en);
  font-size: calc(13 * 100vw / 375);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width:768px) {
  .p-home__title span {
    column-gap: clamp(3.2px, 0.4166666667vw, 6px);
    margin-bottom: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-home__title span::before {
  display: block;
  flex-shrink: 0;
  width: calc(6 * 100vw / 375);
  height: calc(6 * 100vw / 375);
  content: "";
  background: var(--orange-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .p-home__title span::before {
    width: clamp(4.2666666667px, 0.5555555556vw, 8px);
    height: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.p-home__title {
  font-size: calc(24 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-l);
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .p-home__title {
    font-size: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}

.p-home-hero {
  position: relative;
  height: 100vh;
}
@media print, screen and (min-width:768px) {
  .p-home-hero {
    height: clamp(533.3333333333px, 69.4444444444vw, 100vh);
    max-height: 1000px;
  }
}
.p-home-hero__mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background-color: var(--yellow-100);
  opacity: 0;
  --mask-radius: 0%;
  --mask-center-x: 50%;
  --mask-center-y: 50%;
  mask-image: radial-gradient(circle at var(--mask-center-x) var(--mask-center-y), transparent 0%, transparent var(--mask-radius), black var(--mask-radius), black 100%);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}
.p-home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.p-home-hero__block {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__block {
    padding-top: 62px;
  }
}
.p-home-hero__title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  background: url("../images/home/hero_title_bg.svg") no-repeat 50% 50%/0 0, url("../images/home/hero_title_bg2.svg") no-repeat 50% 50%/0 0, url("../images/home/hero_title_bg3.svg") no-repeat 50% 50%/0 0;
  background-color: var(--black-100);
  background-clip: text;
  transition: background-position 2s linear, background-size 1s linear;
}
.p-home-hero__title.is-animated {
  background-position: calc(-30 * 100vw / 375) calc(-10 * 100vw / 375), left calc(110 * 100vw / 375) bottom calc(-13 * 100vw / 375), right calc(0 * 100vw / 375) top calc(44 * 100vw / 375);
  background-size: calc(60 * 100vw / 375) calc(60 * 100vw / 375), calc(60 * 100vw / 375) calc(60 * 100vw / 375), calc(60 * 100vw / 375) calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title {
    background: url("../images/home/hero_title_bg.svg") no-repeat 50% 50%/0 0, url("../images/home/hero_title_bg2.svg") no-repeat 50% 50%/0 0, url("../images/home/hero_title_bg3.svg") no-repeat 50% 50%/0 0;
    background-color: var(--black-100);
    background-clip: text;
  }
  .p-home-hero__title.is-animated {
    background-position: clamp(-57px, -3.9583333333vw, -30.4px) clamp(-25px, -1.7361111111vw, -13.3333333333px), left clamp(114.6666666667px, 14.9305555556vw, 215px) bottom clamp(-26px, -1.8055555556vw, -13.8666666667px), right clamp(-5px, -0.3472222222vw, -2.6666666667px) top clamp(24px, 3.125vw, 45px);
    background-size: clamp(60.8px, 7.9166666667vw, 114px) clamp(60.8px, 7.9166666667vw, 114px), clamp(54.9333333333px, 7.1527777778vw, 103px) clamp(54.9333333333px, 7.1527777778vw, 103px), clamp(65.0666666667px, 8.4722222222vw, 122px) clamp(65.0666666667px, 8.4722222222vw, 122px);
  }
}
.p-home-hero__title h2 {
  font-size: calc(57 * 100vw / 375);
  font-weight: 500;
  line-height: 1.2;
  color: transparent;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 {
    font-size: clamp(53.8666666667px, 7.0138888889vw, 101px);
  }
}
.p-home-hero__title h2 span {
  display: inline-block;
}
.p-home-hero__title h2 span.-letter1, .p-home-hero__title h2 span.-letter2, .p-home-hero__title h2 span.-letter3, .p-home-hero__title h2 span.-letter4, .p-home-hero__title h2 span.-letter5 {
  font-size: calc(58 * 100vw / 375);
  letter-spacing: -0.04em;
}
.p-home-hero__title h2 span.-letter6 {
  letter-spacing: 0.02em;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 span.-letter6 {
    font-size: clamp(50.1333333333px, 6.5277777778vw, 94px);
  }
}
.p-home-hero__title h2 span.-letter7, .p-home-hero__title h2 span.-letter8, .p-home-hero__title h2 span.-letter9 {
  letter-spacing: 0.01em;
}
.p-home-hero__title h2 span.-letter10, .p-home-hero__title h2 span.-letter11 {
  letter-spacing: -0.03em;
}
.p-home-hero__title h2 span.-letter12 {
  font-size: calc(42 * 100vw / 375);
  letter-spacing: 0.01em;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 span.-letter12 {
    font-size: clamp(38.9333333333px, 5.0694444444vw, 73px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 span.-letter1, .p-home-hero__title h2 span.-letter2, .p-home-hero__title h2 span.-letter3 {
    font-size: clamp(54.4px, 7.0833333333vw, 102px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 span.-letter4, .p-home-hero__title h2 span.-letter5 {
    font-size: clamp(53.8666666667px, 7.0138888889vw, 101px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 span.-letter7, .p-home-hero__title h2 span.-letter9 {
    font-size: clamp(52.8px, 6.875vw, 99px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 span.-letter8 {
    font-size: clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-hero__title h2 span.-letter10, .p-home-hero__title h2 span.-letter11 {
    font-size: clamp(53.3333333333px, 6.9444444444vw, 100px);
    letter-spacing: -0.03em;
  }
}
.p-home-hero__lead {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__lead {
    margin-top: clamp(14.4px, 1.875vw, 27px);
    margin-bottom: clamp(21.3333333333px, 2.7777777778vw, 40px);
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
}
.p-home-hero__btns {
  max-width: calc(280 * 100vw / 375);
  margin: 24px auto 32px;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__btns {
    display: flex;
    column-gap: clamp(10.6666666667px, 1.3888888889vw, 20px);
    align-items: center;
    justify-content: center;
    margin: clamp(34.1333333333px, 4.4444444444vw, 64px) auto 0;
  }
}
.p-home-hero__btns ul {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__btns ul {
    column-gap: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-home-hero__btns ul li {
  width: calc((100% - 8 * 100vw / 375) / 2);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__btns ul li {
    width: clamp(106.6666666667px, 13.8888888889vw, 200px);
  }
}
.p-home-hero__btns ul .c-button {
  padding: calc(8 * 100vw / 375) calc(16 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  letter-spacing: 0;
  border-radius: calc(6 * 100vw / 375);
}
.p-home-hero__btns ul .c-button svg {
  width: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__btns ul .c-button svg {
    width: clamp(8px, 1.0416666667vw, 15px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-hero__btns ul .c-button {
    padding: clamp(7.4666666667px, 0.9722222222vw, 14px) clamp(12.8px, 1.6666666667vw, 24px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
  .p-home-hero__btns ul .c-button::after {
    background: var(--white);
  }
  .p-home-hero__btns ul .c-button:hover {
    color: var(--black-100);
    border-color: var(--yellow-100);
  }
  .p-home-hero__btns ul .c-button:hover svg {
    color: var(--black-100);
  }
}
.p-home-hero__link a {
  display: flex;
  column-gap: calc(7 * 100vw / 375);
  align-items: center;
  justify-content: center;
  margin-top: calc(14 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  transition: color 0.2s;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__link a {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
    margin-top: 0;
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
  .p-home-hero__link a:hover {
    color: var(--yellow-100);
  }
}
.p-home-hero__link a svg {
  width: calc(11 * 100vw / 375);
  height: calc(7 * 100vw / 375);
  transition: fill 0.2s, stroke 0.2s;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__link a svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}
.p-home-hero__objects {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-home-hero__objects .p-home-object.js-hero-object {
  opacity: 0;
  transform: scale(0);
  transform-origin: center center;
  will-change: transform, opacity;
}
.p-home-hero__objects .p-home-object.-item1 {
  position: absolute;
  top: calc(50vh - 392 * 100vw / 375);
  left: calc(50vw + 97 * 100vw / 375);
  width: calc(96 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item1 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(221.8666666667px, 28.8888888889vw, 416px));
    left: calc(50vw + clamp(228.2666666667px, 29.7222222222vw, 428px));
    width: clamp(77.3333333333px, 10.0694444444vw, 145px);
  }
}
.p-home-hero__objects .p-home-object.-item2 {
  position: absolute;
  top: calc(50vh - 400 * 100vw / 375);
  left: calc(50vw + 14 * 100vw / 375);
  width: calc(51 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item2 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(227.2px, 29.5833333333vw, 426px));
    left: calc(50vw - clamp(54.4px, 7.0833333333vw, 102px));
    width: clamp(36.2666666667px, 4.7222222222vw, 68px);
  }
}
.p-home-hero__objects .p-home-object.-item3 {
  position: absolute;
  top: calc(50vh - 395 * 100vw / 375);
  left: calc(50vw - 229 * 100vw / 375);
  width: calc(156 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item3 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(160px, 20.8333333333vw, 300px));
    left: calc(50vw + clamp(27.2px, 3.5416666667vw, 51px));
    width: clamp(52.2666666667px, 6.8055555556vw, 98px);
    filter: blur(5px);
  }
}
.p-home-hero__objects .p-home-object.-item4 {
  position: absolute;
  top: calc(50vh - 265 * 100vw / 375);
  left: 50vw;
  width: calc(68 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item4 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(85.3333333333px, 11.1111111111vw, 160px));
    left: calc(50vw + clamp(153.0666666667px, 19.9305555556vw, 287px));
    width: clamp(57.0666666667px, 7.4305555556vw, 107px);
    filter: blur(2px);
  }
}
.p-home-hero__objects .p-home-object.-item5 {
  position: absolute;
  top: calc(50vh - 187 * 100vw / 375);
  left: calc(50vw + 122 * 100vw / 375);
  width: calc(65 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item5 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(165.8666666667px, 21.5972222222vw, 311px));
    left: calc(50vw + clamp(304px, 39.5833333333vw, 570px));
    width: clamp(178.6666666667px, 23.2638888889vw, 335px);
  }
}
.p-home-hero__objects .p-home-object.-item6 {
  position: absolute;
  top: calc(50vh - 153 * 100vw / 375);
  left: calc(50vw - 49 * 100vw / 375);
  width: calc(27 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item6 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(117.3333333333px, 15.2777777778vw, 220px));
    left: calc(50vw - clamp(77.3333333333px, 10.0694444444vw, 145px));
    width: clamp(25.0666666667px, 3.2638888889vw, 47px);
  }
}
.p-home-hero__objects .p-home-object.-item7 {
  position: absolute;
  top: calc(50vh - 46 * 100vw / 375);
  left: calc(50vw - 197 * 100vw / 375);
  width: calc(42 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item7 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(243.7333333333px, 31.7361111111vw, 457px));
    left: calc(50vw - clamp(377.6px, 49.1666666667vw, 708px));
    width: clamp(69.3333333333px, 9.0277777778vw, 130px);
  }
}
.p-home-hero__objects .p-home-object.-item8 {
  position: absolute;
  top: calc(50vh + 30 * 100vw / 375);
  left: calc(50vw + 133 * 100vw / 375);
  width: calc(35 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item8 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(65.0666666667px, 8.4722222222vw, 122px));
    left: calc(50vw + clamp(133.3333333333px, 17.3611111111vw, 250px));
    width: clamp(46.4px, 6.0416666667vw, 87px);
  }
}
.p-home-hero__objects .p-home-object.-item9 {
  position: absolute;
  top: calc(50vh + 100 * 100vw / 375);
  left: calc(50vw - 144 * 100vw / 375);
  width: calc(35 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item9 {
    display: none;
  }
}
.p-home-hero__objects .p-home-object.-item10 {
  position: absolute;
  top: calc(50vh + 164 * 100vw / 375);
  left: calc(50vw + 65 * 100vw / 375);
  width: calc(52 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item10 {
    display: none;
  }
}
.p-home-hero__objects .p-home-object.-item11 {
  position: absolute;
  top: calc(50vh + 234 * 100vw / 375);
  left: calc(50vw - 229 * 100vw / 375);
  width: calc(126 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item11 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(4.8px, 0.625vw, 9px));
    left: calc(50vw - clamp(497.0666666667px, 64.7222222222vw, 932px));
    width: clamp(196.8px, 25.625vw, 369px);
  }
}
.p-home-hero__objects .p-home-object.-item12 {
  position: absolute;
  top: calc(50vh + 251 * 100vw / 375);
  left: calc(50vw + 150 * 100vw / 375);
  width: calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item12 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(78.9333333333px, 10.2777777778vw, 148px));
    left: calc(50vw + clamp(324.8px, 42.2916666667vw, 609px));
    width: clamp(76.8px, 10vw, 144px);
  }
}
.p-home-hero__objects .p-home-object.-item13 {
  position: absolute;
  top: calc(50vh + 292 * 100vw / 375);
  left: calc(50vw + 47 * 100vw / 375);
  width: calc(109 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item13 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(175.4666666667px, 22.8472222222vw, 329px));
    left: calc(50vw - clamp(248px, 32.2916666667vw, 465px));
    width: clamp(57.6px, 7.5vw, 108px);
  }
}
.p-home-hero__objects .p-home-object.-item14 {
  position: absolute;
  top: calc(50vh - 303 * 100vw / 375);
  left: calc(50vw - 198 * 100vw / 375);
  width: calc(140 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item14 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(107.7333333333px, 14.0277777778vw, 202px));
    left: calc(50vw - clamp(344.5333333333px, 44.8611111111vw, 646px));
    width: clamp(141.3333333333px, 18.4027777778vw, 265px);
  }
}
@media print, screen and (max-width:375px) {
  .p-home-hero__objects .p-home-object.-item14 {
    top: calc(50vh - 275 * 100vw / 375);
    left: calc(50vw - 198 * 100vw / 375);
  }
}
.p-home-hero__objects .p-home-object.-item15 {
  position: absolute;
  top: calc(50vh - 303 * 100vw / 375);
  left: calc(50vw - 26 * 100vw / 375);
  width: calc(80 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item15 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(54.9333333333px, 7.1527777778vw, 103px));
    left: calc(50vw - clamp(263.4666666667px, 34.3055555556vw, 494px));
    width: clamp(105.0666666667px, 13.6805555556vw, 197px);
  }
}
@media print, screen and (max-width:375px) {
  .p-home-hero__objects .p-home-object.-item15 {
    top: calc(50vh - 275 * 100vw / 375);
    left: calc(50vw - 45 * 100vw / 375);
  }
}
.p-home-hero__objects .p-home-object.-item16 {
  position: absolute;
  top: calc(50vh - 224 * 100vw / 375);
  left: calc(50vw + 41 * 100vw / 375);
  width: calc(70 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item16 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(113.6px, 14.7916666667vw, 213px));
    left: calc(50vw - clamp(384px, 50vw, 720px));
    width: clamp(102.4px, 13.3333333333vw, 192px);
  }
}
.p-home-hero__objects .p-home-object.-item17 {
  position: absolute;
  top: calc(50vh - 287 * 100vw / 375);
  left: calc(50vw + 125 * 100vw / 375);
  width: calc(90 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item17 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(218.6666666667px, 28.4722222222vw, 410px));
    left: calc(50vw - clamp(285.3333333333px, 37.1527777778vw, 535px));
    width: clamp(89.0666666667px, 11.5972222222vw, 167px);
  }
}
.p-home-hero__objects .p-home-object.-item18 {
  position: absolute;
  top: calc(50vh + 185 * 100vw / 375);
  left: calc(50vw - 227 * 100vw / 375);
  width: calc(95 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item18 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(117.8666666667px, 15.3472222222vw, 221px));
    left: calc(50vw + clamp(292.2666666667px, 38.0555555556vw, 548px));
    width: clamp(90.1333333333px, 11.7361111111vw, 169px);
  }
}
.p-home-hero__objects .p-home-object.-item19 {
  position: absolute;
  top: calc(50vh + 305 * 100vw / 375);
  left: calc(50vw - 165 * 100vw / 375);
  width: calc(80 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item19 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(108.8px, 14.1666666667vw, 204px));
    left: calc(50vw + clamp(181.3333333333px, 23.6111111111vw, 340px));
    width: clamp(80px, 10.4166666667vw, 150px);
  }
}
@media print, screen and (max-width:375px) {
  .p-home-hero__objects .p-home-object.-item19 {
    top: calc(50vh + 280 * 100vw / 375);
    left: calc(50vw - 156 * 100vw / 375);
  }
}
.p-home-hero__objects .p-home-object.-item20 {
  position: absolute;
  top: calc(50vh + 202 * 100vw / 375);
  left: calc(50vw - 69 * 100vw / 375);
  width: calc(160 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item20 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(56px, 7.2916666667vw, 105px));
    left: calc(50vw + clamp(192.5333333333px, 25.0694444444vw, 361px));
    width: clamp(154.1333333333px, 20.0694444444vw, 289px);
  }
}
.p-home-hero__objects .p-home-object.-item21 {
  position: absolute;
  top: calc(50vh + 190 * 100vw / 375);
  left: calc(50vw + 107 * 100vw / 375);
  width: calc(80 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item21 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(181.3333333333px, 23.6111111111vw, 340px));
    left: calc(50vw + clamp(162.6666666667px, 21.1805555556vw, 305px));
    width: clamp(106.6666666667px, 13.8888888889vw, 200px);
  }
}
.p-home-hero__objects .p-home-object.-item22 {
  position: absolute;
  top: calc(50vh - 293 * 100vw / 375);
  left: calc(50vw - 188 * 100vw / 375);
  width: calc(140 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item22 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(101.8666666667px, 13.2638888889vw, 191px));
    left: calc(50vw - clamp(337.6px, 43.9583333333vw, 633px));
    width: clamp(148.2666666667px, 19.3055555556vw, 278px);
  }
}
.p-home-hero__objects .p-home-object.-item23 {
  position: absolute;
  top: calc(50vh - 279 * 100vw / 375);
  left: calc(50vw + 129 * 100vw / 375);
  width: calc(90 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item23 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(254.4px, 33.125vw, 477px));
    left: calc(50vw - clamp(385.0666666667px, 50.1388888889vw, 722px));
    width: clamp(106.1333333333px, 13.8194444444vw, 199px);
  }
}
.p-home-hero__objects .p-home-object.-item24 {
  position: absolute;
  top: calc(50vh + 191 * 100vw / 375);
  left: calc(50vw - 220 * 100vw / 375);
  width: calc(95 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item24 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(58.1333333333px, 7.5694444444vw, 109px));
    left: calc(50vw + clamp(168.5333333333px, 21.9444444444vw, 316px));
    width: clamp(163.2px, 21.25vw, 306px);
  }
}
.p-home-hero__objects .p-home-object.-item25 {
  position: absolute;
  top: calc(50vh + 193 * 100vw / 375);
  left: calc(50vw - 79 * 100vw / 375);
  width: calc(160 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item25 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(168.5333333333px, 21.9444444444vw, 316px));
    left: calc(50vw + clamp(257.6px, 33.5416666667vw, 483px));
    width: clamp(74.1333333333px, 9.6527777778vw, 139px);
  }
}
.p-home-hero__objects .p-home-object.-item26 {
  position: absolute;
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item26 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(148.2666666667px, 19.3055555556vw, 278px));
    left: calc(50vw - clamp(210.1333333333px, 27.3611111111vw, 394px));
    display: block;
    width: clamp(48px, 6.25vw, 90px);
  }
}
.p-home-hero__objects .p-home-object.-item27 {
  position: absolute;
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item27 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(126.4px, 16.4583333333vw, 237px));
    left: calc(50vw - clamp(402.6666666667px, 52.4305555556vw, 755px));
    display: block;
    width: clamp(91.2px, 11.875vw, 171px);
  }
}
.p-home-hero__objects .p-home-object.-item28 {
  position: absolute;
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item28 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) - clamp(131.7333333333px, 17.1527777778vw, 247px));
    left: calc(50vw - clamp(137.0666666667px, 17.8472222222vw, 257px));
    display: block;
    width: clamp(12.2666666667px, 1.5972222222vw, 23px);
  }
}
.p-home-hero__objects .p-home-object.-item29 {
  position: absolute;
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item29 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(41.6px, 5.4166666667vw, 78px));
    left: calc(50vw - clamp(189.3333333333px, 24.6527777778vw, 355px));
    display: block;
    width: clamp(4.8px, 0.625vw, 9px);
  }
}
.p-home-hero__objects .p-home-object.-item30 {
  position: absolute;
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item30 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(136px, 17.7083333333vw, 255px));
    left: calc(50vw - clamp(140.8px, 18.3333333333vw, 264px));
    display: block;
    width: clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.p-home-hero__objects .p-home-object.-item31 {
  position: absolute;
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item31 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(176.5333333333px, 22.9861111111vw, 331px));
    left: calc(50vw - clamp(19.7333333333px, 2.5694444444vw, 37px));
    display: block;
    width: clamp(46.4px, 6.0416666667vw, 87px);
  }
}
.p-home-hero__objects .p-home-object.-item32 {
  position: absolute;
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-hero__objects .p-home-object.-item32 {
    top: calc(clamp(253.3333333333px, 32.9861111111vw, 475px) + clamp(140.2666666667px, 18.2638888889vw, 263px));
    left: calc(50vw + clamp(199.4666666667px, 25.9722222222vw, 374px));
    display: block;
    width: clamp(90.6666666667px, 11.8055555556vw, 170px);
  }
}

.p-home-about {
  position: relative;
}
@media print, screen and (min-width:768px) {
  .p-home-about {
    padding-inline: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-home-about__inner {
  position: relative;
  z-index: 2;
  padding: calc(48 * 100vw / 375) calc(20 * 100vw / 375) calc(64 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-about__inner {
    max-width: 1280px;
    padding: clamp(42.6666666667px, 5.5555555556vw, 80px) clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin-inline: auto;
    border-inline: 1px solid var(--black-100);
  }
}
.p-home-about__inner::before, .p-home-about__inner::after {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 100vw;
  content: "";
  border-top: 1px solid var(--black-100);
  transform: translateX(-50%);
}
.p-home-about__inner::before {
  top: 0;
}
.p-home-about__inner::after {
  bottom: 0;
}
@media print, screen and (min-width:768px) {
  .p-home-about__block {
    width: clamp(266.6666666667px, 34.7222222222vw, 500px);
    margin-left: clamp(64px, 8.3333333333vw, 120px);
  }
}
.p-home-about__title {
  padding-bottom: calc(10 * 100vw / 375);
  font-size: calc(26 * 100vw / 375);
  line-height: 1.55;
  background: url("../images/home/home_title_bg.svg") no-repeat left calc(10 * 100vw / 375) top 100%;
  background-size: calc(140 * 100vw / 375) auto;
}
@media print, screen and (min-width:768px) {
  .p-home-about__title {
    padding-bottom: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(24px, 3.125vw, 45px);
    line-height: 1.6;
    background-position: 0 100%;
    background-size: clamp(160px, 20.8333333333vw, 300px) auto;
  }
}
.p-home-about__text {
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-about__text {
    margin-top: clamp(26.6666666667px, 3.4722222222vw, 50px);
  }
}
.p-home-about__text p {
  font-size: calc(15 * 100vw / 375);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .p-home-about__text p {
    font-size: clamp(9.6px, 1.25vw, 18px);
    white-space: unset;
  }
}
.p-home-about__text p:not(:first-child) {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-about__text p:not(:first-child) {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-about__links {
    margin-top: clamp(34.1333333333px, 4.4444444444vw, 64px);
  }
}
.p-home-about__objects {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width:767.98px) {
  .p-home-about__objects .p-home-object.-item1 {
    top: calc(340 * 100vw / 375);
    left: calc(50vw + 145 * 100vw / 375);
    width: calc(45 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item1 {
    top: clamp(96px, 12.5vw, 180px);
    left: calc(50vw + clamp(245.8666666667px, 32.0138888889vw, 461px));
    width: clamp(74.1333333333px, 9.6527777778vw, 139px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-about__objects .p-home-object.-item2 {
    top: calc(577 * 100vw / 375);
    left: calc(50vw + 106 * 100vw / 375);
    width: calc(20 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item2 {
    top: clamp(350.9333333333px, 45.6944444444vw, 658px);
    left: calc(50vw + clamp(238.4px, 31.0416666667vw, 447px));
    width: clamp(66.1333333333px, 8.6111111111vw, 124px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-about__objects .p-home-object.-item3 {
    top: calc(622 * 100vw / 375);
    left: calc(50vw + 145 * 100vw / 375);
    width: calc(34 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item3 {
    top: clamp(417.0666666667px, 54.3055555556vw, 782px);
    left: calc(50vw + clamp(132.8px, 17.2916666667vw, 249px));
    width: clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-about__objects .p-home-object.-item4 {
    top: calc(219 * 100vw / 375);
    left: calc(50vw + 73 * 100vw / 375);
    width: calc(100 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item4 {
    top: clamp(65.6px, 8.5416666667vw, 123px);
    left: calc(50vw + clamp(59.2px, 7.7083333333vw, 111px));
    width: clamp(222.9333333333px, 29.0277777778vw, 418px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-about__objects .p-home-object.-item5 {
    top: calc(558 * 100vw / 375);
    left: calc(50vw + 51 * 100vw / 375);
    width: calc(88 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item5 {
    top: clamp(227.2px, 29.5833333333vw, 426px);
    left: calc(50vw + clamp(78.9333333333px, 10.2777777778vw, 148px));
    width: clamp(112px, 14.5833333333vw, 210px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-about__objects .p-home-object.-item6 {
    top: calc(426 * 100vw / 375);
    left: calc(50vw + 113 * 100vw / 375);
    width: calc(64 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item6 {
    top: clamp(211.2px, 27.5vw, 396px);
    left: calc(50vw + clamp(213.3333333333px, 27.7777777778vw, 400px));
    width: clamp(106.6666666667px, 13.8888888889vw, 200px);
  }
}
.p-home-about__objects .p-home-object.-item7 {
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item7 {
    top: clamp(286.9333333333px, 37.3611111111vw, 538px);
    left: calc(50vw + clamp(-868px, -60.2777777778vw, -462.9333333333px));
    display: block;
    width: clamp(36.2666666667px, 4.7222222222vw, 68px);
  }
}
.p-home-about__objects .p-home-object.-item8 {
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item8 {
    top: clamp(403.7333333333px, 52.5694444444vw, 757px);
    left: calc(50vw + clamp(-992px, -68.8888888889vw, -529.0666666667px));
    display: block;
    width: clamp(74.1333333333px, 9.6527777778vw, 139px);
  }
}
.p-home-about__objects .p-home-object.-item9 {
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-about__objects .p-home-object.-item9 {
    top: clamp(476.8px, 62.0833333333vw, 894px);
    left: calc(50vw + clamp(450.1333333333px, 58.6111111111vw, 844px));
    display: block;
    width: clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}

.p-home-work {
  position: relative;
  margin-top: -1px;
}
@media print, screen and (min-width:768px) {
  .p-home-work {
    padding-inline: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-work__slide {
    position: absolute;
    top: 0;
    right: clamp(0px, 0vw, 0px);
    width: clamp(340.2666666667px, 44.3055555556vw, 638px);
    height: clamp(420.8px, 54.7916666667vw, 789px);
  }
}
.p-home-work__inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media print, screen and (min-width:768px) {
  .p-home-work__inner {
    max-width: 1280px;
    padding-inline: clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin-inline: auto;
    border-inline: 1px solid var(--black-100);
  }
}
.p-home-work__inner::before, .p-home-work__inner::after {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 100vw;
  content: "";
  border-top: 1px solid var(--black-100);
  transform: translateX(-50%);
}
.p-home-work__inner::before {
  top: 0;
}
.p-home-work__inner::after {
  bottom: 0;
}
.p-home-work__block {
  padding: calc(54 * 100vw / 375) calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-work__block {
    width: clamp(204.2666666667px, 26.5972222222vw, 383px);
    padding: clamp(74.6666666667px, 9.7222222222vw, 140px) 0 clamp(61.3333333333px, 7.9861111111vw, 115px);
    margin-left: clamp(64px, 8.3333333333vw, 120px);
  }
}
.p-home-work__list {
  margin-top: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-work__list {
    margin-top: clamp(34.1333333333px, 4.4444444444vw, 64px);
  }
}
.p-home-work__list + .p-home-work__list {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-work__list + .p-home-work__list {
    margin-top: clamp(28.8px, 3.75vw, 54px);
  }
}
.p-home-work__list dt {
  display: flex;
  column-gap: calc(16 * 100vw / 375);
  align-items: center;
  font-size: calc(15 * 100vw / 375);
  line-height: 1.8;
}
@media print, screen and (min-width:768px) {
  .p-home-work__list dt {
    column-gap: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.p-home-work__list dt span {
  white-space: nowrap;
}
.p-home-work__list dt::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--black-100);
}
.p-home-work__list dd {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-work__list dd {
    margin-top: clamp(5.8666666667px, 0.7638888889vw, 11px);
  }
}
.p-home-work__list .c-links ul {
  display: block;
}
.p-home-work__list .c-links ul li {
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-work__list .c-links ul li {
    margin-top: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-home-work__list .c-links ul li:first-child {
  margin-top: 0;
}
.p-home-work__btn {
  margin-top: calc(32 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-work__btn {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-home-work__btn a {
  width: fit-content;
  padding: calc(12 * 100vw / 375) calc(14 * 100vw / 375);
  margin-left: auto;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  border-radius: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-work__btn a {
    padding: clamp(6.4px, 0.8333333333vw, 12px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    border-radius: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.p-home-work__objects {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width:767.98px) {
  .p-home-work__objects .p-home-object.-item1 {
    top: calc(430 * 100vw / 375);
    left: calc(50vw + 86 * 100vw / 375);
    width: calc(40 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-work__objects .p-home-object.-item1 {
    top: clamp(18.1333333333px, 2.3611111111vw, 34px);
    left: calc(50vw + clamp(-602px, -41.8055555556vw, -321.0666666667px));
    width: clamp(36.2666666667px, 4.7222222222vw, 68px);
  }
}
.p-home-work__objects .p-home-object.-item2 {
  background: var(--yellow-100);
}
@media print, screen and (max-width:767.98px) {
  .p-home-work__objects .p-home-object.-item2 {
    top: calc(520 * 100vw / 375);
    left: calc(50vw + 121 * 100vw / 375);
    width: calc(80 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-work__objects .p-home-object.-item2 {
    top: clamp(309.3333333333px, 40.2777777778vw, 580px);
    left: calc(50vw - clamp(26.6666666667px, 3.4722222222vw, 50px));
    width: clamp(53.8666666667px, 7.0138888889vw, 101px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-work__objects .p-home-object.-item3 {
    display: none;
  }
}
@media print, screen and (min-width:768px) {
  .p-home-work__objects .p-home-object.-item3 {
    display: none;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-work__objects .p-home-object.-item4 {
    top: calc(900 * 100vw / 375);
    left: calc(50vw - 256 * 100vw / 375);
    width: calc(176 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-work__objects .p-home-object.-item4 {
    top: clamp(286.9333333333px, 37.3611111111vw, 538px);
    left: calc(50vw - clamp(409.6px, 53.3333333333vw, 768px));
    width: clamp(130.6666666667px, 17.0138888889vw, 245px);
  }
}
.p-home-work__objects .p-home-object.-item5 {
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-work__objects .p-home-object.-item5 {
    top: clamp(51.2px, 6.6666666667vw, 96px);
    left: calc(50vw + clamp(484.8px, 63.125vw, 909px));
    display: block;
    width: clamp(74.1333333333px, 9.6527777778vw, 139px);
  }
}
.p-home-work__objects .p-home-object.-item6 {
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-work__objects .p-home-object.-item6 {
    top: clamp(269.3333333333px, 35.0694444444vw, 505px);
    left: calc(50vw + clamp(458.6666666667px, 59.7222222222vw, 860px));
    display: block;
    width: clamp(36.2666666667px, 4.7222222222vw, 68px);
  }
}
.p-home-work__objects .p-home-object.-item7 {
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-work__objects .p-home-object.-item7 {
    top: clamp(155.7333333333px, 20.2777777778vw, 292px);
    left: calc(50vw + clamp(-968px, -67.2222222222vw, -516.2666666667px));
    display: block;
    width: clamp(80px, 10.4166666667vw, 150px);
    background: var(--yellow-100);
  }
}

.p-home-profile {
  position: relative;
  margin-top: -1px;
}
@media print, screen and (min-width:768px) {
  .p-home-profile {
    padding-inline: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-home-profile::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--yellow-90);
}
.p-home-profile__inner {
  position: relative;
  z-index: 2;
  padding: calc(64 * 100vw / 375) calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-profile__inner {
    max-width: 1280px;
    padding: clamp(53.3333333333px, 6.9444444444vw, 100px) clamp(21.3333333333px, 2.7777777778vw, 40px) clamp(64px, 8.3333333333vw, 120px) clamp(85.3333333333px, 11.1111111111vw, 160px);
    margin-inline: auto;
    border-inline: 1px solid var(--black-100);
  }
}
.p-home-profile__inner::before, .p-home-profile__inner::after {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 100vw;
  content: "";
  border-top: 1px solid var(--black-100);
  transform: translateX(-50%);
}
.p-home-profile__inner::before {
  top: 0;
}
.p-home-profile__inner::after {
  bottom: 0;
}
.p-home-profile__section {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-profile__section {
    position: relative;
    margin-top: clamp(32px, 4.1666666667vw, 60px);
  }
}
.p-home-profile__section-title {
  position: relative;
  padding-top: calc(8 * 100vw / 375);
  padding-left: calc(20 * 100vw / 375);
  margin-left: calc(-20 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .p-home-profile__section-title {
    position: absolute;
    top: 0;
    left: clamp(-160px, -11.1111111111vw, -85.3333333333px);
    width: clamp(69.3333333333px, 9.0277777778vw, 130px);
    padding-top: clamp(6.4px, 0.8333333333vw, 12px);
    padding-left: 0;
    margin-left: 0;
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
    text-align: center;
  }
}
.p-home-profile__section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100 * 100vw / 375);
  height: calc(1 * 100vw / 375);
  content: "";
  background-color: var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-home-profile__section-title::before {
    width: clamp(69.3333333333px, 9.0277777778vw, 130px);
    height: clamp(0.5333333333px, 0.0694444444vw, 1px);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__section-btn {
    margin-top: clamp(26.6666666667px, 3.4722222222vw, 50px);
  }
}
.p-home-profile__objects {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item1 {
    top: calc(44 * 100vw / 375);
    left: calc(50vw + clamp(60.2666666667px, 7.8472222222vw, 113px));
    width: calc(54 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item1 {
    top: clamp(6.9333333333px, 0.9027777778vw, 13px);
    left: calc(50vw + clamp(276.2666666667px, 35.9722222222vw, 518px));
    width: clamp(52.2666666667px, 6.8055555556vw, 98px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item2 {
    top: calc(350 * 100vw / 375);
    left: calc(50vw + 125 * 100vw / 375);
    width: calc(50 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item2 {
    top: clamp(53.8666666667px, 7.0138888889vw, 101px);
    left: calc(50vw + clamp(130.6666666667px, 17.0138888889vw, 245px));
    width: clamp(44.8px, 5.8333333333vw, 84px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item3 {
    display: none;
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item3 {
    top: clamp(121.6px, 15.8333333333vw, 228px);
    left: calc(50vw + clamp(-685px, -47.5694444444vw, -365.3333333333px));
    width: clamp(48px, 6.25vw, 90px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item4 {
    display: none;
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item4 {
    top: clamp(138.6666666667px, 18.0555555556vw, 260px);
    left: calc(50vw + clamp(341.3333333333px, 44.4444444444vw, 640px));
    width: clamp(153.6px, 20vw, 288px);
    filter: unset;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item5 {
    top: calc(622 * 100vw / 375);
    left: calc(50vw + -135 * 100vw / 375);
    width: calc(35 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item5 {
    top: clamp(388.8px, 50.625vw, 729px);
    left: calc(50vw + clamp(-592px, -41.1111111111vw, -315.7333333333px));
    width: clamp(33.6px, 4.375vw, 63px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item6 {
    top: calc(680 * 100vw / 375);
    left: calc(50vw + -222 * 100vw / 375);
    width: calc(68 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item6 {
    top: clamp(466.1333333333px, 60.6944444444vw, 874px);
    left: calc(50vw + clamp(-731px, -50.7638888889vw, -389.8666666667px));
    width: clamp(68.8px, 8.9583333333vw, 129px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item7 {
    top: calc(1039 * 100vw / 375);
    left: calc(50vw + 142 * 100vw / 375);
    width: calc(35 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item7 {
    display: none;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item8 {
    top: calc(1340 * 100vw / 375);
    left: calc(50vw + -213 * 100vw / 375);
    width: calc(50 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item8 {
    top: clamp(885.3333333333px, 115.2777777778vw, 1660px);
    left: calc(50vw + clamp(-701px, -48.6805555556vw, -373.8666666667px));
    width: clamp(36.2666666667px, 4.7222222222vw, 68px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item9 {
    top: calc(1627 * 100vw / 375);
    left: calc(50vw + 127 * 100vw / 375);
    width: calc(40 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item9 {
    top: clamp(-59px, -4.0972222222vw, -31.4666666667px);
    left: calc(50vw + clamp(-130px, -9.0277777778vw, -69.3333333333px));
    width: clamp(44.2666666667px, 5.7638888889vw, 83px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item10 {
    top: calc(2024 * 100vw / 375);
    left: calc(50vw + -188 * 100vw / 375);
    width: calc(100 * 100vw / 375);
    aspect-ratio: 1/1;
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item10 {
    top: clamp(960px, 125vw, 1800px);
    left: calc(50vw + clamp(297.0666666667px, 38.6805555556vw, 557px));
    width: clamp(113.0666666667px, 14.7222222222vw, 212px);
    aspect-ratio: 212/282;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item11 {
    top: calc(450 * 100vw / 375);
    left: calc(50vw + 73 * 100vw / 375);
    width: calc(54 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item11 {
    display: none;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item12 {
    top: calc(1500 * 100vw / 375);
    left: calc(50vw + 142 * 100vw / 375);
    width: calc(35 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item12 {
    display: none;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item13 {
    bottom: calc(-100 * 100vw / 375);
    left: calc(50vw + 167 * 100vw / 375);
    width: calc(40 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item13 {
    display: none;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-profile__objects .p-home-object.-item14 {
    bottom: calc(-580 * 100vw / 375);
    left: 0;
    width: calc(100 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-profile__objects .p-home-object.-item14 {
    display: none;
  }
}

.p-home-environment {
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
@media print, screen and (min-width:768px) {
  .p-home-environment {
    padding-inline: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-home-environment__inner {
  position: relative;
  z-index: 2;
  padding: calc(64 * 100vw / 375) calc(20 * 100vw / 375) calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__inner {
    max-width: 1280px;
    padding: clamp(58.6666666667px, 7.6388888889vw, 110px) clamp(21.3333333333px, 2.7777777778vw, 40px) clamp(64px, 8.3333333333vw, 120px);
    margin-inline: auto;
    border-inline: 1px solid var(--black-100);
  }
}
.p-home-environment__inner::before {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 100vw;
  content: "";
  border-top: 1px solid var(--black-100);
  transform: translateX(-50%);
}
.p-home-environment__inner::before {
  top: 0;
}
.p-home-environment__inner::after {
  bottom: 0;
}
@media print, screen and (min-width:768px) {
  .p-home-environment__block {
    margin-left: clamp(64px, 8.3333333333vw, 120px);
  }
}
.p-home-environment .p-home__title {
  margin-bottom: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment .p-home__title {
    margin-bottom: clamp(42.6666666667px, 5.5555555556vw, 80px);
    margin-left: clamp(64.5333333333px, 8.4027777778vw, 121px);
  }
}
.p-home-environment__list {
  margin-top: 0;
  margin-right: calc(-20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__list {
    margin-top: 0;
    margin-right: clamp(-40px, -2.7777777778vw, -21.3333333333px);
    border-right: none;
  }
  .p-home-environment__list li:last-child {
    border-right: none;
  }
}
.p-home-environment .c-list {
  margin-top: 0;
  margin-right: 0;
}
@media print, screen and (min-width:768px) {
  .p-home-environment .c-list {
    max-width: clamp(597.3333333333px, 77.7777777778vw, 1120px);
    margin-top: 0;
    margin-right: clamp(-40px, -2.7777777778vw, -21.3333333333px);
    margin-left: auto;
    border-right: none;
  }
  .p-home-environment .c-list li:last-child {
    border-right: none;
  }
}
.p-home-environment__link {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link {
    display: flex;
    column-gap: clamp(26.6666666667px, 3.4722222222vw, 50px);
    align-items: center;
    margin-top: clamp(36.8px, 4.7916666667vw, 69px);
    margin-left: clamp(-40px, -2.7777777778vw, -21.3333333333px);
  }
}
.p-home-environment__link figure {
  overflow: hidden;
  border-radius: calc(100 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link figure {
    width: clamp(376.5333333333px, 49.0277777778vw, 706px);
    border-radius: clamp(119.4666666667px, 15.5555555556vw, 224px);
  }
}
.p-home-environment__link-block {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link-block {
    margin-top: 0;
  }
}
.p-home-environment__link-block h3 {
  font-size: calc(20 * 100vw / 375);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  background: url("../images/home/home_title_bg.svg") no-repeat 0 100%;
  background-size: calc(120 * 100vw / 375) auto;
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link-block h3 {
    font-size: clamp(17.0666666667px, 2.2222222222vw, 32px);
    background-size: clamp(89.6px, 11.6666666667vw, 168px) auto;
  }
}
.p-home-environment__link-block h3::before {
  display: none;
}
.p-home-environment__link-block p {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link-block p {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    line-height: 1.8;
  }
}
.p-home-environment__link-link {
  margin-top: calc(16 * 100vw / 375);
  margin-bottom: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link-link {
    margin-top: clamp(18.1333333333px, 2.3611111111vw, 34px);
    margin-bottom: 0;
  }
}
.p-home-environment__link-link a {
  display: flex;
  column-gap: calc(10 * 100vw / 375);
  align-items: center;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  color: var(--black-100);
  text-decoration: none;
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link-link a {
    column-gap: clamp(5.3333333333px, 0.6944444444vw, 10px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    transition: color 200ms ease;
  }
}
@media (hover: hover) {
  .p-home-environment__link-link a:hover {
    color: var(--yellow-100);
  }
  .p-home-environment__link-link a:hover .p-home-environment__link-icon {
    color: var(--black-100);
  }
  .p-home-environment__link-link a:hover .p-home-environment__link-icon::before {
    transform: scale(1);
  }
}
.p-home-environment__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link-icon {
    width: clamp(19.2px, 2.5vw, 36px);
    height: clamp(19.2px, 2.5vw, 36px);
  }
}
.p-home-environment__link-icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(20.2666666667px, 2.6388888889vw, 38px);
  height: clamp(20.2666666667px, 2.6388888889vw, 38px);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
.p-home-environment__link-icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-home-environment__link-icon svg {
    width: clamp(8px, 1.0416666667vw, 15px);
    height: clamp(4.8px, 0.625vw, 9px);
  }
}
.p-home-environment__objects {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width:767.98px) {
  .p-home-environment__objects .p-home-object.-item1 {
    top: calc(700 * 100vw / 375);
    left: calc(50vw + 96 * 100vw / 375);
    width: calc(103 * 100vw / 375);
    background: url("../images/home/pentagon2.svg") no-repeat center/contain;
  }
}
@media print, screen and (min-width:768px) {
  .p-home-environment__objects .p-home-object.-item1 {
    top: clamp(373.3333333333px, 48.6111111111vw, 700px);
    left: calc(50vw + clamp(261.3333333333px, 34.0277777778vw, 490px));
    width: clamp(117.8666666667px, 15.3472222222vw, 221px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-environment__objects .p-home-object.-item2 {
    top: calc(83 * 100vw / 375);
    left: calc(50vw + 66 * 100vw / 375);
    width: calc(43 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-environment__objects .p-home-object.-item2 {
    top: clamp(480px, 62.5vw, 900px);
    left: calc(50vw + clamp(209.6px, 27.2916666667vw, 393px));
    width: clamp(33.6px, 4.375vw, 63px);
  }
}
.p-home-environment__objects .p-home-object.-item3 {
  background-color: var(--orange-100);
}
@media print, screen and (max-width:767.98px) {
  .p-home-environment__objects .p-home-object.-item3 {
    top: calc(824 * 100vw / 375);
    left: calc(50vw + 66 * 100vw / 375);
    width: calc(35 * 100vw / 375);
    background: var(--beige-100);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-environment__objects .p-home-object.-item3 {
    bottom: clamp(-700px, -48.6111111111vw, -373.3333333333px);
    left: calc(50vw + clamp(313.0666666667px, 40.7638888889vw, 587px));
    width: clamp(46.9333333333px, 6.1111111111vw, 88px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-environment__objects .p-home-object.-item4 {
    bottom: calc(-700 * 100vw / 375);
    left: calc(50vw + 170 * 100vw / 375);
    width: calc(12 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-environment__objects .p-home-object.-item4 {
    display: none;
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-environment__objects .p-home-object.-item5 {
    bottom: calc(-756 * 100vw / 375);
    left: calc(50vw + 119 * 100vw / 375);
    width: calc(42 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-environment__objects .p-home-object.-item5 {
    bottom: clamp(-890px, -61.8055555556vw, -474.6666666667px);
    left: calc(50vw + clamp(229.8666666667px, 29.9305555556vw, 431px));
    width: clamp(80.5333333333px, 10.4861111111vw, 151px);
  }
}
.p-home-environment__objects .p-home-object.-item6 {
  display: none;
}
@media print, screen and (min-width:768px) {
  .p-home-environment__objects .p-home-object.-item6 {
    top: clamp(572.2666666667px, 74.5138888889vw, 1073px);
    left: calc(50vw + clamp(-701px, -48.6805555556vw, -373.8666666667px));
    display: block;
    width: clamp(64.5333333333px, 8.4027777778vw, 121px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-home-environment__objects .p-home-object.-item7 {
    bottom: calc(-660 * 100vw / 375);
    left: calc(50vw + 144 * 100vw / 375);
    width: calc(46 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) {
  .p-home-environment__objects .p-home-object.-item7 {
    display: none;
  }
}

.c-base-element .p-home-environment__link-block h3::before {
  display: none;
}

.c-base-element .p-home-environment__link-link a {
  color: var(--black-100);
  text-decoration: none;
}

@media (hover: hover) {
  .c-base-element .p-home-environment__link-link a:hover {
    color: var(--yellow-100);
  }
}
body.page-slug-environment .p-home-environment .p-home-environment__link-block h3,
body.page-slug-environment .p-home-environment__link-block h3,
.l-page__content .p-home-environment .p-home-environment__link-block h3 {
  padding: 0;
  margin-top: calc(20 * 100vw / 375);
  line-height: 1.7;
  background: url("../images/home/home_title_bg.svg") no-repeat;
  background-color: transparent !important;
  background-position: 0 calc(100% + 5px);
  background-size: calc(140 * 100vw / 375) auto;
  border-radius: 0;
}
@media print, screen and (min-width:768px) {
  body.page-slug-environment .p-home-environment .p-home-environment__link-block h3,
  body.page-slug-environment .p-home-environment__link-block h3,
  .l-page__content .p-home-environment .p-home-environment__link-block h3 {
    margin-top: 0;
    background-position: 0 calc(100% + 4px);
    background-size: clamp(89.6px, 11.6666666667vw, 168px) auto;
  }
}

body.page-slug-environment .p-home-environment .p-home-environment__link-block.-position h3,
body.page-slug-environment .p-home-environment__link-block.-position h3,
.l-page__content .p-home-environment .p-home-environment__link-block.-position h3 {
  padding-bottom: clamp(3.7333333333px, 0.4861111111vw, 7px);
  background-position: 0 calc(100% - 1px);
  background-size: clamp(72px, 9.375vw, 135px) auto;
}

body.page-slug-environment .p-home-environment .p-home-environment__link-block.-position p,
body.page-slug-environment .p-home-environment__link-block.-position p,
.l-page__content .p-home-environment .p-home-environment__link-block.-position p {
  margin-top: clamp(9.0666666667px, 1.1805555556vw, 17px);
}

.p-people .l-page__inner {
  padding-block: calc(50 * 100vw / 375) calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-people .l-page__inner {
    padding: clamp(42.6666666667px, 5.5555555556vw, 80px) clamp(42.6666666667px, 5.5555555556vw, 80px) clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
.p-people__section {
  margin-top: calc(37 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-people__section {
    margin-top: clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
.p-people__section#anchor01 {
  margin-top: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-people__section#anchor01 {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.p-people__title {
  font-size: calc(24 * 100vw / 375);
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .p-people__title {
    font-size: clamp(17.0666666667px, 2.2222222222vw, 32px);
  }
}
.p-people__title + .c-interviews2, .p-people__title + .c-discussions {
  margin-top: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-people__title + .c-interviews2, .p-people__title + .c-discussions {
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
.p-people__btn {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-people__btn {
    margin-top: clamp(25.6px, 3.3333333333vw, 48px);
  }
}
.p-people__btn .c-button4--center {
  margin-right: 0;
}
@media print, screen and (min-width:768px) {
  .p-people__btn .c-button4--center {
    margin-right: auto;
  }
}

.p-404__block {
  padding-top: calc(54 * 100vw / 375);
  padding-bottom: calc(54 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-404__block {
    padding-top: clamp(58.6666666667px, 7.6388888889vw, 110px);
    padding-bottom: clamp(58.6666666667px, 7.6388888889vw, 110px);
  }
}
.p-404__btn .c-button4 {
  margin-left: 0;
}

.p-about {
  background: unset;
}
.p-about .c-cta3 {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-about .c-cta3 {
    margin-top: clamp(37.3333333333px, 4.8611111111vw, 70px);
  }
}

.c-header--entry {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  max-width: unset;
  height: auto;
  padding: calc(17 * 100vw / 375) calc(19 * 100vw / 375);
  background: unset;
}
@media print, screen and (min-width:768px) {
  .c-header--entry {
    position: absolute;
    padding: clamp(9.0666666667px, 1.1805555556vw, 17px) clamp(10.1333333333px, 1.3194444444vw, 19px);
  }
}
.c-header--entry .c-header__inner {
  max-width: unset;
  padding: 0;
}

.c-footer--entry {
  padding-top: 0;
  background: unset;
}
.c-footer--entry .c-footer__copy {
  margin-top: 0;
}

body.entry {
  background: var(--gray-10);
}
body.entry .l-page {
  background: unset;
}

@media print, screen and (max-width:767.98px) {
  body.thanks .l-page .l-page__content--common {
    background-image: none;
  }
}

.p-entry {
  padding: calc(20 * 100vw / 375) calc(20 * 100vw / 375) calc(80 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry {
    max-width: 800px;
    padding: clamp(53.3333333333px, 6.9444444444vw, 100px) 0 clamp(92.2666666667px, 12.0138888889vw, 173px);
    margin: 0 auto;
  }
}
.p-entry__title {
  font-size: calc(30 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
}
@media print, screen and (min-width:768px) {
  .p-entry__title {
    font-size: clamp(25.6px, 3.3333333333vw, 48px);
  }
}
.p-entry__lead {
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .p-entry__lead {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-entry .wpcf7-recaptcha,
.p-entry .g-recaptcha {
  position: relative;
  z-index: 9999;
}
.p-entry__form {
  margin-top: calc(40 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form {
    margin-top: clamp(41.6px, 5.4166666667vw, 78px);
  }
}
.p-entry__form .wpcf7 form.invalid .wpcf7-response-output,
.p-entry__form .wpcf7 form.unaccepted .wpcf7-response-output,
.p-entry__form .wpcf7 form.payment-required .wpcf7-response-output {
  margin-inline: 0;
  border: 1px solid #dc3232;
}
.p-entry__form .wpcf7-list-item label {
  transition: color 0.3s ease;
}
@media print, screen and (min-width:768px) {
  .p-entry__form .wpcf7-list-item label:hover {
    color: #ec7d24;
  }
}
.p-entry__form .wpcf7-spinner {
  z-index: 5;
  display: block;
  margin: calc(-37 * 100vw / 375) auto 0;
}
@media print, screen and (min-width:768px) {
  .p-entry__form .wpcf7-spinner {
    margin: clamp(-50px, -3.4722222222vw, -26.6666666667px) auto 0;
  }
}
.p-entry__form-item {
  margin-top: calc(32 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-item {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
@media print, screen and (max-width:767.98px) {
  .p-entry__form-item p {
    margin-top: calc(15 * 100vw / 375);
    font-size: calc(14 * 100vw / 375);
  }
}
.p-entry__form-title {
  display: flex;
  column-gap: calc(4 * 100vw / 375);
  align-items: center;
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-title {
    column-gap: clamp(2.1333333333px, 0.2777777778vw, 4px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.p-entry__form-title span {
  display: inline-block;
  align-self: start;
  padding: calc(4 * 100vw / 375) calc(8 * 100vw / 375);
  font-size: calc(11 * 100vw / 375);
  font-weight: 700;
  vertical-align: middle;
  color: var(--white);
  background: var(--orange-100);
  border-radius: calc(4 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-title span {
    padding: clamp(2.1333333333px, 0.2777777778vw, 4px) clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
    border-radius: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.p-entry__form-title2 {
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-title2 {
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-entry__form-title2 span {
  font-size: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-title2 span {
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.p-entry__form-content {
  margin-top: calc(10 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
}
.p-entry__form-content .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-content {
    margin-top: clamp(8px, 1.0416666667vw, 15px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-entry__form-content input[type=radio],
.p-entry__form-content input[type=checkbox] {
  margin-right: calc(8 * 100vw / 375);
  appearance: auto;
  accent-color: var(--blue-100);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-content input[type=radio],
  .p-entry__form-content input[type=checkbox] {
    margin-right: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.p-entry__form-content input[type=text],
.p-entry__form-content input[type=number],
.p-entry__form-content input[type=email],
.p-entry__form-content select,
.p-entry__form-content textarea {
  width: 100%;
  padding: calc(10 * 100vw / 375);
  appearance: none;
  background: var(--white);
  border: 1px solid var(--black-100);
  border-radius: calc(4 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-content input[type=text],
  .p-entry__form-content input[type=number],
  .p-entry__form-content input[type=email],
  .p-entry__form-content select,
  .p-entry__form-content textarea {
    padding: clamp(5.3333333333px, 0.6944444444vw, 10px);
    border-radius: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.p-entry__form-content input[type=text]::placeholder,
.p-entry__form-content input[type=number]::placeholder,
.p-entry__form-content input[type=email]::placeholder,
.p-entry__form-content select::placeholder,
.p-entry__form-content textarea::placeholder {
  color: var(--gray-50);
}
.p-entry__form-content input[type=text]::-webkit-outer-spin-button, .p-entry__form-content input[type=text]::-webkit-inner-spin-button,
.p-entry__form-content input[type=number]::-webkit-outer-spin-button,
.p-entry__form-content input[type=number]::-webkit-inner-spin-button,
.p-entry__form-content input[type=email]::-webkit-outer-spin-button,
.p-entry__form-content input[type=email]::-webkit-inner-spin-button,
.p-entry__form-content select::-webkit-outer-spin-button,
.p-entry__form-content select::-webkit-inner-spin-button,
.p-entry__form-content textarea::-webkit-outer-spin-button,
.p-entry__form-content textarea::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}
.p-entry__form-content select {
  background: var(--white) url("../images/entry/icon_select.svg") no-repeat right calc(10 * 100vw / 375) center;
  background-size: calc(20 * 100vw / 375) calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-content select {
    background-position: right clamp(5.3333333333px, 0.6944444444vw, 10px) center;
    background-size: clamp(10.6666666667px, 1.3888888889vw, 20px) clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.p-entry__form-content textarea {
  height: calc(150 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-content textarea {
    height: clamp(85.3333333333px, 11.1111111111vw, 160px);
  }
}
.p-entry__form-content input[type=file] {
  background: unset;
  border: unset;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-content .-width01 {
    width: clamp(213.3333333333px, 27.7777777778vw, 400px) !important;
  }
}
.p-entry__form-content .-width02 {
  width: calc(144 * 100vw / 375) !important;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-content .-width02 {
    width: clamp(76.8px, 10vw, 144px) !important;
  }
}
.p-entry__form-file {
  padding-top: calc(18 * 100vw / 375);
  margin-top: calc(18 * 100vw / 375);
  border-top: 1px solid var(--gray-50);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-file {
    padding-top: clamp(9.6px, 1.25vw, 18px);
    margin-top: clamp(9.6px, 1.25vw, 18px);
  }
}
.p-entry__form-file dl {
  display: block !important;
  padding-bottom: calc(18 * 100vw / 375);
  margin-bottom: calc(18 * 100vw / 375);
  border-bottom: 1px solid var(--gray-50);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-file dl {
    display: flex;
    align-items: center;
    padding-bottom: clamp(9.6px, 1.25vw, 18px);
    margin-bottom: clamp(9.6px, 1.25vw, 18px);
  }
}
.p-entry__form-file dt {
  display: flex;
  column-gap: calc(4 * 100vw / 375);
  align-items: center;
  margin-bottom: calc(15 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-file dt {
    column-gap: clamp(2.1333333333px, 0.2777777778vw, 4px);
    margin-bottom: clamp(5.3333333333px, 0.6944444444vw, 10px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-entry__form-file dt span {
  display: inline-block;
  padding: calc(4 * 100vw / 375) calc(8 * 100vw / 375);
  font-size: calc(11 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  vertical-align: middle;
  color: var(--white);
  background: var(--orange-100);
  border-radius: calc(4 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-file dt span {
    padding: clamp(2.1333333333px, 0.2777777778vw, 4px) clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
    border-radius: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.p-entry__form-file dd input {
  font-size: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-file dd input {
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-entry__form-file dd input::file-selector-button {
  font-size: calc(14 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-file dd input::file-selector-button {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-entry__form-note {
  margin-top: calc(20 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-note {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-entry__form-note li {
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-note li {
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-entry__form-privacy {
  margin-top: calc(50 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-privacy {
    margin-top: clamp(29.8666666667px, 3.8888888889vw, 56px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-entry__form-privacy a {
  display: inline-flex;
  align-items: center;
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  color: #ec7d24;
  text-decoration: underline;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-privacy a {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-entry__form-privacy a:hover {
  text-decoration: none;
}
.p-entry__form-privacy a::after {
  display: inline-block;
  flex-shrink: 0;
  width: calc(8 * 100vw / 375);
  height: calc(8 * 100vw / 375);
  margin: 0 calc(2 * 100vw / 375);
  content: "";
  background: url("../images/entry/icon_orange_ext.svg") no-repeat center center;
  background-size: contain;
}
@media print, screen and (min-width:768px) {
  .p-entry__form-privacy a::after {
    width: clamp(4.2666666667px, 0.5555555556vw, 8px);
    height: clamp(4.2666666667px, 0.5555555556vw, 8px);
    margin: 0 clamp(1.0666666667px, 0.1388888889vw, 2px);
  }
}
.p-entry__form-submit {
  padding-top: calc(40 * 100vw / 375);
  margin-top: calc(40 * 100vw / 375);
  border-top: 1px solid var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-submit {
    padding-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-entry__form-submit .c-button {
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: #242424 url("../images/common/icon_arrow_white.svg") no-repeat right calc(34 * 100vw / 375) top 50%;
  background-size: calc(15 * 100vw / 375) calc(9 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-submit .c-button {
    width: clamp(186.6666666667px, 24.3055555556vw, 350px);
    margin: 0 auto;
    background-position: right clamp(18.1333333333px, 2.3611111111vw, 34px) top 50%;
    background-size: clamp(8px, 1.0416666667vw, 15px) clamp(4.8px, 0.625vw, 9px);
  }
}
.p-entry__form-submit .c-button:hover {
  color: var(--white);
  opacity: 0.7;
}
.p-entry__form-submit .c-button:disabled, .p-entry__form-submit .c-button.is-disabled {
  color: var(--gray-100);
  pointer-events: none;
  cursor: not-allowed;
  background: var(--gray-30) url("../images/common/icon_arrow_gray.svg") no-repeat right calc(34 * 100vw / 375) top 50%;
  background-size: calc(15 * 100vw / 375) calc(9 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-entry__form-submit .c-button:disabled, .p-entry__form-submit .c-button.is-disabled {
    width: clamp(186.6666666667px, 24.3055555556vw, 350px);
    margin: 0 auto;
    background-position: right clamp(18.1333333333px, 2.3611111111vw, 34px) top 50%;
    background-size: clamp(8px, 1.0416666667vw, 15px) clamp(4.8px, 0.625vw, 9px);
  }
}

.entry .grecaptcha-badge {
  z-index: 10;
  display: block;
}

.grecaptcha-badge {
  display: none;
}

.p-requirements {
  background: unset;
}
.p-requirements + .c-footerSlide {
  border-top: 1px solid var(--black-100);
}
.p-requirements .l-page__inner {
  padding-block: calc(50 * 100vw / 375) calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements .l-page__inner {
    padding: clamp(42.6666666667px, 5.5555555556vw, 80px) 0 clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
.p-requirements__tabs {
  display: flex;
  border: 1px solid var(--black-100);
}
.p-requirements__tabs li {
  width: 50%;
}
.p-requirements__tabs li:first-child {
  border-right: 1px solid var(--black-100);
}
.p-requirements__tabs li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: calc(16 * 100vw / 375);
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  text-align: center;
  letter-spacing: 0.03em;
  transition: background-color 0.3s, color 0.3s;
}
@media print, screen and (min-width:768px) {
  .p-requirements__tabs li a {
    padding: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(9.6px, 1.25vw, 18px);
  }
}
.p-requirements__tabs li a:hover {
  color: var(--white);
  background: var(--black-100);
}
.p-requirements__tabs li a::after {
  position: absolute;
  bottom: calc(-14 * 100vw / 375);
  left: 50%;
  display: block;
  width: calc(24 * 100vw / 375);
  height: calc(14 * 100vw / 375);
  content: "";
  background: transparent;
  opacity: 0;
  clip-path: polygon(0% 0%, 100% 0, 50% 100%);
  transform: translateX(-50%);
  transition: opacity 0.3s, background-color 0.3s;
}
@media print, screen and (min-width:768px) {
  .p-requirements__tabs li a::after {
    bottom: clamp(-14px, -0.9722222222vw, -7.4666666667px);
    width: clamp(12.8px, 1.6666666667vw, 24px);
    height: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-requirements__tabs-item--current a {
  color: var(--white);
  background: var(--black-100);
}
.p-requirements__tabs-item--current a::after {
  background-color: var(--black-100) !important;
  opacity: 1 !important;
}
.p-requirements__filter {
  margin-top: calc(34 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter {
    margin-top: clamp(34.1333333333px, 4.4444444444vw, 64px);
  }
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list {
    display: grid;
    grid-template-columns: clamp(65.0666666667px, 8.4722222222vw, 122px) 1fr;
  }
}
.p-requirements__filter-list dt {
  font-size: calc(14 * 100vw / 375);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list dt {
    width: clamp(65.0666666667px, 8.4722222222vw, 122px);
    padding-bottom: clamp(12.8px, 1.6666666667vw, 24px);
    margin-bottom: clamp(12.8px, 1.6666666667vw, 24px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
  .p-requirements__filter-list dt:not(.-last) {
    border-bottom: var(--gray-30) 1px solid;
  }
}
.p-requirements__filter-list dd {
  padding-bottom: calc(20 * 100vw / 375);
  margin-bottom: calc(20 * 100vw / 375);
}
.p-requirements__filter-list dd:not(.-last) {
  border-bottom: var(--gray-30) 1px solid;
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list dd {
    padding-bottom: clamp(12.8px, 1.6666666667vw, 24px);
    margin-bottom: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.p-requirements__filter-list dd:not(.p-requirements__filter-location) ul {
  gap: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list dd:not(.p-requirements__filter-location) ul {
    gap: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.p-requirements__filter-list dd:not(.p-requirements__filter-location) ul li label {
  display: block;
  padding: calc(6 * 100vw / 375) calc(12 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: 1;
  border: 1px solid var(--gray-100);
  border-radius: calc(60 * 100vw / 375);
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list dd:not(.p-requirements__filter-location) ul li label {
    padding: clamp(4.2666666667px, 0.5555555556vw, 8px) clamp(12.8px, 1.6666666667vw, 24px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
    border-radius: clamp(32px, 4.1666666667vw, 60px);
  }
}
@media (hover: hover) {
  .p-requirements__filter-list dd:not(.p-requirements__filter-location) ul li label:hover {
    color: var(--white);
    text-decoration: none;
    background-color: var(--black-100);
    border-color: var(--black-100);
  }
}
.p-requirements__filter-list dd:not(.p-requirements__filter-location) ul li label.is-checked {
  color: var(--white);
  background-color: var(--black-100);
  border-color: var(--black-100);
}
@media (hover: hover) {
  .p-requirements__filter-list dd:not(.p-requirements__filter-location) ul li label.is-deselected {
    color: inherit !important;
    background-color: transparent !important;
    border-color: var(--gray-100) !important;
  }
}
.p-requirements__filter-list dd:not(.p-requirements__filter-location) ul li label input {
  display: none;
}
.p-requirements__filter-list dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16 * 100vw / 375);
  margin-top: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list dd ul {
    gap: clamp(6.4px, 0.8333333333vw, 12px) clamp(17.0666666667px, 2.2222222222vw, 32px);
    margin-top: 0;
  }
}
.p-requirements__filter-list dd ul li {
  line-height: 1;
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list dd ul li {
    line-height: 1.6;
  }
}
.p-requirements__filter-list dd ul li label {
  font-size: calc(14 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements__filter-list dd ul li label {
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
@media (hover: hover) {
  .p-requirements__filter-list dd ul li label:hover {
    text-decoration: underline;
  }
}
.p-requirements__filter-list dd ul li label input {
  appearance: auto;
  accent-color: var(--blue-100);
}
.p-requirements__list {
  margin-top: calc(34 * 100vw / 375);
  border: 1px solid var(--black-100);
  border-bottom: unset;
}
@media print, screen and (min-width:768px) {
  .p-requirements__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    border-top: unset;
    border-right: unset;
    border-bottom: unset;
    border-left: 1px solid var(--black-100);
  }
}
.p-requirements__list > li {
  border-bottom: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-requirements__list > li {
    border: unset;
    border-top: 1px solid var(--black-100);
    border-right: 1px solid var(--black-100);
    border-bottom: 1px solid var(--black-100);
  }
  .p-requirements__list > li:nth-child(n+4) {
    margin-top: -1px;
  }
}
.p-requirements__list > li a {
  display: block;
  padding: calc(20 * 100vw / 375);
  transition: background-color 200ms ease;
}
@media print, screen and (min-width:768px) {
  .p-requirements__list > li a {
    padding: clamp(19.2px, 2.5vw, 36px);
  }
}
@media (hover: hover) {
  .p-requirements__list > li a:hover {
    background: #fef9ef;
  }
  .p-requirements__list > li a:hover .p-requirements__list-icon {
    color: var(--black-100);
  }
  .p-requirements__list > li a:hover .p-requirements__list-icon::before {
    transform: scale(1);
  }
}
.p-requirements__list-label {
  width: fit-content;
  padding: calc(5 * 100vw / 375) calc(6 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--letter-spacing-m);
  background: var(--yellow-100);
  border-radius: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-label {
    padding: clamp(2.1333333333px, 0.2777777778vw, 4px) clamp(3.2px, 0.4166666667vw, 6px) clamp(1.0666666667px, 0.1388888889vw, 2px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-requirements__list-title {
  display: inline-flex;
  column-gap: calc(8 * 100vw / 375);
  margin-top: calc(8 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-title {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    margin-top: clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
.p-requirements__list-icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: calc(24 * 100vw / 375);
  height: calc(24 * 100vw / 375);
  color: var(--white);
  background: var(--black-100);
  border-radius: 50%;
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-icon {
    width: clamp(12.8px, 1.6666666667vw, 24px);
    height: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.p-requirements__list-icon::before {
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(26 * 100vw / 375);
  height: calc(26 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 200ms ease;
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-icon::before {
    width: clamp(13.8666666667px, 1.8055555556vw, 26px);
    height: clamp(13.8666666667px, 1.8055555556vw, 26px);
  }
}
.p-requirements__list-icon svg {
  position: relative;
  z-index: 2;
  width: calc(10 * 100vw / 375);
  height: calc(6 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-icon svg {
    width: clamp(5.3333333333px, 0.6944444444vw, 10px);
    height: clamp(3.2px, 0.4166666667vw, 6px);
  }
}
.p-requirements__list-area {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  margin-top: calc(12 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-area {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    margin-top: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.p-requirements__list-area::before {
  display: block;
  width: calc(10 * 100vw / 375);
  height: calc(16 * 100vw / 375);
  content: "";
  background: url("../images/requirements/icon_pin.svg") no-repeat center center;
  background-size: contain;
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-area::before {
    width: clamp(7.4666666667px, 0.9722222222vw, 14px);
    height: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.p-requirements__list-area li {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  line-height: 1.75;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-area li {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
    font-size: clamp(6.9333333333px, 0.9027777778vw, 13px);
  }
}
.p-requirements__list-area li:not(:first-child)::before {
  display: block;
  width: 1px;
  height: calc(18 * 100vw / 375);
  content: "";
  background: var(--gray-30);
}
@media print, screen and (min-width:768px) {
  .p-requirements__list-area li:not(:first-child)::before {
    height: clamp(9.6px, 1.25vw, 18px);
  }
}
.p-requirements__no-result {
  margin-top: calc(34 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  line-height: 1.8;
}
@media print, screen and (min-width:768px) {
  .p-requirements__no-result {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(9.6px, 1.25vw, 18px);
    text-align: center;
  }
}

.p-voice__box {
  margin-top: calc(25 * 100vw / 375);
  border: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-voice__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: clamp(17.0666666667px, 2.2222222222vw, 32px);
  }
}
.p-voice__box--reverse .p-voice__box-fig {
  background: #f1f6ff;
}
@media print, screen and (min-width:768px) {
  .p-voice__box--reverse .p-voice__box-fig {
    grid-column: 1/2;
    border-right: 1px solid var(--black-100);
    border-left: unset;
  }
}
@media print, screen and (min-width:768px) {
  .p-voice__box--reverse .p-voice__box-text {
    grid-column: 2/3;
  }
}
.p-voice__box-fig {
  background: var(--beige-10);
  border-bottom: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-fig {
    display: flex;
    grid-row: 1;
    grid-column: 2/3;
    align-items: center;
    border-left: 1px solid var(--black-100);
  }
}
.p-voice__box-text {
  padding: calc(30 * 100vw / 375);
  border-bottom: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-text {
    grid-row: 1;
    grid-column: 1/2;
    padding: clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.p-voice__box-text h3 {
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-text h3 {
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.p-voice__box-text p {
  margin-top: calc(20 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-text p {
    margin-top: clamp(13.8666666667px, 1.8055555556vw, 26px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-voice__box-text p span {
  display: inline;
  background: linear-gradient(transparent 50%, var(--yellow-30) 50%, var(--yellow-30) 90%, transparent 90%);
}
.p-voice__box-people {
  padding: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people {
    grid-row: 2;
    grid-column: 1/3;
    padding: clamp(32px, 4.1666666667vw, 60px) clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.p-voice__box-people ul {
  counter-reset: num;
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul {
    display: flex;
    gap: clamp(10.6666666667px, 1.3888888889vw, 20px);
    justify-content: space-between;
  }
}
.p-voice__box-people ul li {
  position: relative;
  padding: calc(20 * 100vw / 375);
  counter-increment: num;
  background: var(--yellow-100);
  border-radius: calc(10 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li {
    width: calc((100% - clamp(21.3333333333px, 2.7777777778vw, 40px)) / 3);
    padding: clamp(21.3333333333px, 2.7777777778vw, 40px);
    padding: clamp(10.6666666667px, 1.3888888889vw, 20px) clamp(10.6666666667px, 1.3888888889vw, 20px) clamp(12.8px, 1.6666666667vw, 24px);
    border-radius: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.p-voice__box-people ul li.-icon01 {
  background-image: url("../images/voice/icon01.svg");
  background-repeat: no-repeat;
  background-position: top calc(20 * 100vw / 375) right calc(23 * 100vw / 375);
  background-size: calc(49 * 100vw / 375) calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li.-icon01 {
    background-position: top clamp(10.6666666667px, 1.3888888889vw, 20px) right clamp(12.2666666667px, 1.5972222222vw, 23px);
    background-size: clamp(47.4666666667px, 6.1805555556vw, 89px) clamp(48px, 6.25vw, 90px);
  }
}
.p-voice__box-people ul li.-icon02 {
  background-image: url("../images/voice/icon02.svg");
  background-repeat: no-repeat;
  background-position: top calc(20 * 100vw / 375) right calc(23 * 100vw / 375);
  background-size: calc(49 * 100vw / 375) calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li.-icon02 {
    background-position: top clamp(10.6666666667px, 1.3888888889vw, 20px) right clamp(12.2666666667px, 1.5972222222vw, 23px);
    background-size: clamp(47.4666666667px, 6.1805555556vw, 89px) clamp(48px, 6.25vw, 90px);
  }
}
.p-voice__box-people ul li.-icon03 {
  background-image: url("../images/voice/icon03.svg");
  background-repeat: no-repeat;
  background-position: top calc(20 * 100vw / 375) right calc(23 * 100vw / 375);
  background-size: calc(49 * 100vw / 375) calc(50 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li.-icon03 {
    background-position: top clamp(10.6666666667px, 1.3888888889vw, 20px) right clamp(12.2666666667px, 1.5972222222vw, 23px);
    background-size: clamp(47.4666666667px, 6.1805555556vw, 89px) clamp(48px, 6.25vw, 90px);
  }
}
.p-voice__box-people ul li::after {
  position: absolute;
  bottom: calc(-22 * 100vw / 375);
  left: calc(19 * 100vw / 375);
  width: calc(24 * 100vw / 375);
  height: calc(27 * 100vw / 375);
  content: "";
  background: var(--yellow-100);
  border-radius: calc(4 * 100vw / 375);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li::after {
    bottom: clamp(-31px, -2.1527777778vw, -16.5333333333px);
    left: clamp(21.3333333333px, 2.7777777778vw, 40px);
    width: clamp(14.9333333333px, 1.9444444444vw, 28px);
    height: clamp(17.0666666667px, 2.2222222222vw, 32px);
    border-radius: clamp(2.1333333333px, 0.2777777778vw, 4px);
  }
}
.p-voice__box-people ul li::before {
  font-family: var(--font-family-en);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  letter-spacing: -0.03em;
  content: "Voice 0" counter(num);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li::before {
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-voice__box-people ul li:not(:first-child) {
  margin-top: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li:not(:first-child) {
    margin-top: 0;
  }
}
.p-voice__box-people ul li:nth-child(2) {
  background-color: var(--orange-100);
}
.p-voice__box-people ul li:nth-child(2)::after {
  left: calc(50% - clamp(7.4666666667px, 0.9722222222vw, 14px));
  background-color: var(--orange-100);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.p-voice__box-people ul li:nth-child(3) {
  background-color: var(--blue-100);
}
.p-voice__box-people ul li:nth-child(3)::after {
  background-color: var(--blue-100);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li:nth-child(3)::after {
    right: clamp(21.3333333333px, 2.7777777778vw, 40px);
    left: auto;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  }
}
.p-voice__box-people ul li dl {
  margin-top: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li dl {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-voice__box-people ul li dl dt,
.p-voice__box-people ul li dl dd {
  font-size: calc(16 * 100vw / 375);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li dl dt,
  .p-voice__box-people ul li dl dd {
    font-size: clamp(8px, 1.0416666667vw, 15px);
  }
}
.p-voice__box-people ul li p {
  margin-top: calc(12 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-voice__box-people ul li p {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8px, 1.0416666667vw, 15px);
    line-height: 1.6;
    letter-spacing: 0;
  }
}

@media print, screen and (min-width:768px) {
  .p-overview {
    padding: 0;
    background: url("../images/overview/bg.webp") no-repeat center clamp(58.1333333333px, 7.5694444444vw, 109px);
    background-size: clamp(989.3333333333px, 128.8194444444vw, 1855px);
  }
}
.p-overview .l-page__inner {
  padding-block: calc(50 * 100vw / 375) calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview .l-page__inner {
    max-width: 1320px;
    padding: clamp(42.6666666667px, 5.5555555556vw, 80px) clamp(10.6666666667px, 1.3888888889vw, 20px) clamp(64px, 8.3333333333vw, 120px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview > .l-page__inner > .c-title:first-child {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-overview .c-link a {
  text-decoration: underline;
}
.p-overview__block {
  margin-top: calc(30 * 100vw / 375);
  border: 1px solid var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-overview__block {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-overview__block-inner {
  padding: calc(40 * 100vw / 375) calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block-inner {
    padding: clamp(40px, 5.2083333333vw, 75px) 0 clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.p-overview__block-inner + .p-overview__block-inner {
  border-top: 1px solid var(--black-100);
}
.p-overview__block-inner--bottom + .p-overview__block-inner {
  padding-top: calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block-inner--bottom + .p-overview__block-inner {
    padding-top: clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
.p-overview__block-inner--bottom {
  padding-bottom: 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__block-inner--toppadding {
    padding-top: clamp(53.3333333333px, 6.9444444444vw, 100px);
  }
}
.p-overview__block-img-replace.u-sp-only {
  width: calc(100% + 2 * calc(30 * 100vw / 375));
  margin-right: calc(-1 * calc(30 * 100vw / 375));
  margin-left: calc(-1 * calc(30 * 100vw / 375));
}
.p-overview__block-img-replace.u-sp-only img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media print, screen and (min-width:768px) {
  .p-overview__block-text {
    width: clamp(469.3333333333px, 61.1111111111vw, 880px);
    margin: 0 auto;
  }
}
.p-overview__block-text h2 {
  font-size: calc(20 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  text-align: center;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block-text h2 {
    font-size: clamp(18.1333333333px, 2.3611111111vw, 34px);
  }
}
.p-overview__block-text h2 span {
  display: block;
  padding: calc(9 * 100vw / 375) 0;
  background: url("../images/overview/title-a.svg") no-repeat 0 0, url("../images/overview/title-b.svg") no-repeat 100% 0, url("../images/overview/title-c.svg") no-repeat 0 100%, url("../images/overview/title-d.svg") no-repeat 100% 100%;
}
@media print, screen and (min-width:768px) {
  .p-overview__block-text h2 span {
    width: fit-content;
    padding: clamp(2.1333333333px, 0.2777777778vw, 4px) clamp(17.6px, 2.2916666667vw, 33px);
    margin: 0 auto;
  }
}
.p-overview__block-text p {
  margin-top: calc(24 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-overview__block-text p {
    margin-top: clamp(13.3333333333px, 1.7361111111vw, 25px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-overview__block-text p strong {
  position: relative;
  display: inline;
  padding-bottom: 0.3em;
  font-weight: bold;
  background: linear-gradient(transparent 40%, var(--yellow-30) 40%, var(--yellow-30) 100%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-overview__block-fig {
  margin-top: calc(24 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block-fig {
    display: flex;
    column-gap: clamp(2.1333333333px, 0.2777777778vw, 4px);
    justify-content: center;
    margin: clamp(18.6666666667px, 2.4305555556vw, 35px) clamp(-120px, -8.3333333333vw, -64px) 0;
  }
}
.p-overview__block-fig li:not(:first-child) {
  margin-top: calc(4 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block-fig li:not(:first-child) {
    margin-top: 0;
  }
}
.p-overview__block-img-replace img {
  display: block;
  width: 100%;
}
.p-overview__block-img-replace.u-pc-only img {
  border-top: 1px solid var(--black-100);
  border-bottom: 1px solid var(--black-100);
}
.p-overview__block-img-replace.u-sp-only img {
  border-top: 1px solid var(--black-100);
  border-bottom: 1px solid var(--black-100);
}
.p-overview__list1 {
  display: grid;
  grid-template-columns: 1fr;
  margin: calc(40 * 100vw / 375) calc(-30 * 100vw / 375) 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media print, screen and (min-width:768px) {
  .p-overview__list1 {
    grid-template-columns: 1fr 2fr;
    max-width: clamp(512px, 66.6666666667vw, 960px);
    margin: clamp(32px, 4.1666666667vw, 60px) auto 0;
    border: 1px solid #000;
  }
}
.p-overview__list1-list {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .p-overview__list1-list {
    grid-template-columns: 1fr 1fr;
  }
}
.p-overview__list1-container {
  padding: 0;
  border-top: 1px solid #000;
}
@media print, screen and (min-width:768px) {
  .p-overview__list1-container {
    border-top: 0;
    border-left: 1px solid #000;
  }
}
.p-overview__list1-tag {
  color: var(--white);
  background-color: var(--blue-100);
}
.p-overview__list1-tag.-yellow {
  color: #000;
  background-color: #f8b933;
}
.p-overview__list1-tag p {
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .p-overview__list1-tag p {
    font-size: clamp(9.0666666667px, 1.1805555556vw, 17px);
  }
}
.p-overview__list1-content {
  position: relative;
  display: grid;
  grid-template-columns: calc(111 * 100vw / 375) 1fr;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
  padding: calc(24 * 100vw / 375);
  background: var(--beige-10);
}
@media print, screen and (max-width:767.98px) {
  .p-overview__list1-content figure {
    grid-row: 1/1;
    grid-column: 1/2;
  }
  .p-overview__list1-content figure img {
    width: 100%;
    height: auto;
  }
}
.p-overview__list1-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(1 * 100vw / 375);
  content: "";
  background-image: linear-gradient(to right, #000 calc(3 * 100vw / 375), transparent calc(3 * 100vw / 375));
  background-repeat: repeat-x;
  background-size: calc(6 * 100vw / 375) calc(1 * 100vw / 375);
}
.p-overview__list1-content:first-of-type::before {
  display: none;
}
.p-overview__list1-content.-blue {
  background: #f0f7ff;
}
.p-overview__list1 dl {
  display: contents;
  margin-top: calc(20 * 100vw / 375);
}
.p-overview__list1 dl dt {
  grid-row: 1/2;
  grid-column: 2/3;
  font-size: calc(17 * 100vw / 375);
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.08em;
}
.p-overview__list1 dl dd {
  grid-row: 2/3;
  grid-column: 1/3;
  padding-inline: calc(6 * 100vw / 375);
  margin-inline: auto;
  margin-top: calc(16 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-overview__list1-content {
    position: relative;
    display: block;
    width: 100%;
    padding: clamp(21.3333333333px, 2.7777777778vw, 40px) clamp(10.1333333333px, 1.3194444444vw, 19px) clamp(16px, 2.0833333333vw, 30px);
  }
  .p-overview__list1-content::before {
    width: clamp(0.5333333333px, 0.0694444444vw, 1px);
    height: 100%;
    background-image: linear-gradient(to bottom, #000 clamp(1.6px, 0.2083333333vw, 3px), transparent clamp(1.6px, 0.2083333333vw, 3px));
    background-repeat: repeat-y;
    background-size: clamp(0.5333333333px, 0.0694444444vw, 1px) clamp(3.2px, 0.4166666667vw, 6px);
  }
  .p-overview__list1-content:first-child {
    border: none;
  }
  .p-overview__list1-content figure {
    max-height: 276px;
  }
  .p-overview__list1-content figure img {
    margin-inline: auto;
  }
  .p-overview__list1 dl {
    margin-top: calc(20 * 100vw / 375);
  }
}
@media print, screen and (min-width:768px) and (min-width:768px) {
  .p-overview__list1 dl {
    margin-top: clamp(20.2666666667px, 2.6388888889vw, 38px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__list1 dl dt {
    width: 100%;
    padding: clamp(1.0666666667px, 0.1388888889vw, 2px) clamp(3.7333333333px, 0.4861111111vw, 7px);
    margin-top: clamp(3.2px, 0.4166666667vw, 6px);
    font-size: clamp(11.2px, 1.4583333333vw, 21px);
    font-weight: 700;
    line-height: var(--line-height-s);
    text-align: center;
    letter-spacing: var(--letter-spacing-m);
  }
  .p-overview__list1 dl dd {
    max-width: clamp(128px, 16.6666666667vw, 240px);
    padding-inline: 0;
    margin-inline: auto;
    margin-top: clamp(6.9333333333px, 0.9027777778vw, 13px);
    font-size: clamp(8px, 1.0416666667vw, 15px);
    font-weight: 500;
    line-height: var(--line-height-m);
    letter-spacing: var(--letter-spacing-m);
  }
  .p-overview__list1 .p-overview__item1,
  .p-overview__list1 .p-overview__list1-container {
    display: flex;
    flex-direction: column;
  }
  .p-overview__list1 .p-overview__list1-content {
    flex-grow: 1;
    height: auto;
  }
}
.p-overview__list1-tag + .p-overview__list1-content::before {
  display: none;
}
.p-overview__list2 {
  display: flex;
  flex-direction: column;
  gap: calc(4 * 100vw / 375);
  margin: calc(40 * 100vw / 375) calc(-30 * 100vw / 375) 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.1333333333px, 0.2777777778vw, 4px);
    margin: clamp(16px, 2.0833333333vw, 30px) 0 0;
  }
}
.p-overview__list2 li {
  position: relative;
  padding: calc(30 * 100vw / 375);
  background: var(--beige-10);
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li {
    grid-column: 1/3;
    padding: clamp(32px, 4.1666666667vw, 60px) clamp(32px, 4.1666666667vw, 60px) clamp(3.7333333333px, 0.4861111111vw, 7px);
  }
}
.p-overview__list2 li:first-child {
  padding-bottom: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:first-child {
    padding: clamp(32px, 4.1666666667vw, 60px) clamp(32px, 4.1666666667vw, 60px) clamp(3.7333333333px, 0.4861111111vw, 7px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:first-child figure.u-pc-only {
    width: clamp(469.3333333333px, 61.1111111111vw, 880px);
    max-width: 100%;
    padding-top: clamp(10.1333333333px, 1.3194444444vw, 19px);
    margin-inline: auto;
  }
  .p-overview__list2 li:first-child figure.u-pc-only img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.p-overview__list2 li:first-child figure.u-sp-only {
  width: 100%;
  margin-top: calc(20 * 100vw / 375);
}
.p-overview__list2 li:first-child figure.u-sp-only img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-overview__list2 li:first-child .u-sp-only:not(figure) {
  width: calc(124 * 100vw / 375);
  margin: calc(12 * 100vw / 375) auto 0;
  transition: opacity 0.3s ease;
}
.p-overview__list2 li:first-child .u-sp-only:not(figure).hidden {
  opacity: 0;
}
.p-overview__list2 li:first-child .p-overview__list2-caption {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:first-child .p-overview__list2-caption {
    margin-top: 0;
    margin-bottom: clamp(1.6px, 0.2083333333vw, 3px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:first-child .p-overview__list2-label {
    top: clamp(-11px, -0.7638888889vw, -5.8666666667px);
    left: clamp(0px, 0vw, 0px);
  }
}
.p-overview__list2 li:first-child .p-overview__list2-label2 {
  top: calc(39 * 100vw / 375);
  left: calc(-3 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:first-child .p-overview__list2-label2 {
    top: clamp(13.3333333333px, 1.7361111111vw, 25px);
    left: 0;
  }
}
.p-overview__list2 li:first-child .p-overview__list2-label2 span {
  color: #d5a000;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:first-child .p-overview__list2-label2 span {
    font-size: clamp(58.6666666667px, 7.6388888889vw, 110px);
  }
}
.p-overview__list2 li:first-child .p-overview__list2-inner {
  position: relative;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:first-child .p-overview__list2-inner {
    max-width: clamp(469.3333333333px, 61.1111111111vw, 880px);
    margin-inline: auto;
  }
}
.p-overview__list2 li:nth-child(2) {
  grid-row: 2;
  grid-column: 1;
  background: #fff5ec;
}
.p-overview__list2 li:nth-child(2) figure {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:nth-child(2) figure {
    margin-top: clamp(9.6px, 1.25vw, 18px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:nth-child(2) img {
    margin: 0 auto;
  }
}
.p-overview__list2 li:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
  background: #f0f7ff;
}
.p-overview__list2 li:nth-child(3) figure {
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:nth-child(3) figure {
    margin-top: clamp(9.6px, 1.25vw, 18px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 li:nth-child(3) img {
    margin: 0 auto;
  }
}
.p-overview__list2 li-inner {
  width: 100%;
  max-width: clamp(469.3333333333px, 61.1111111111vw, 880px);
  margin-inline: auto;
}
.p-overview__list2-label {
  width: fit-content;
  padding: calc(6 * 100vw / 375) calc(5 * 100vw / 375);
  margin: 0 auto;
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: var(--letter-spacing-m);
  background: var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-overview__list2-label {
    position: absolute;
    top: clamp(29.3333333333px, 3.8194444444vw, 55px);
    left: clamp(35.7333333333px, 4.6527777778vw, 67px);
    padding: clamp(1.6px, 0.2083333333vw, 3px) clamp(2.6666666667px, 0.3472222222vw, 5px);
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.p-overview__list2-label2 {
  position: absolute;
  top: calc(60 * 100vw / 375);
  left: calc(30 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2-label2 {
    top: clamp(51.7333333333px, 6.7361111111vw, 97px);
    left: clamp(34.1333333333px, 4.4444444444vw, 64px);
    font-size: clamp(13.8666666667px, 1.8055555556vw, 26px);
  }
}
.p-overview__list2-label2 span {
  display: inline-block;
  margin-top: var(--leading-trim);
  font-family: var(--font-family-en);
  font-size: calc(70 * 100vw / 375);
  font-weight: 500;
  color: var(--blue-100);
  letter-spacing: 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2-label2 span {
    font-size: clamp(48px, 6.25vw, 90px);
  }
}
.p-overview__list2 figure.-scroll {
  width: 100%;
  margin: calc(19 * 100vw / 375) auto 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 figure.-scroll {
    max-width: clamp(469.3333333333px, 61.1111111111vw, 880px);
    padding-top: 0;
    margin: 0 auto;
    margin-inline: auto;
  }
}
.p-overview__list2 figure.-scroll img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media print, screen and (min-width:768px) {
  .p-overview__list2 figure.-scroll img {
    width: auto;
    max-width: 100%;
  }
}
.p-overview__list2-caption {
  margin-top: calc(30 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  text-align: center;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__list2-caption {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.p-overview__btn {
  margin: calc(20 * 100vw / 375) 0 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__btn {
    margin-top: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
}
.p-overview__btn .c-button3 {
  width: fit-content;
  padding: calc(15 * 100vw / 375);
  margin-inline: auto;
  font-weight: 700;
}
@media print, screen and (min-width:768px) {
  .p-overview__btn .c-button3 {
    padding: clamp(8px, 1.0416666667vw, 15px) clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(9.0666666667px, 1.1805555556vw, 17px);
  }
}
.p-overview__btn .c-button3__text {
  font-size: calc(15 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__btn .c-button3__text {
    font-size: clamp(9.0666666667px, 1.1805555556vw, 17px);
  }
}
.p-overview__block2 {
  padding: calc(30 * 100vw / 375);
  margin: calc(30 * 100vw / 375) calc(-30 * 100vw / 375) 0;
  background: #f0f7ff;
}
@media print, screen and (min-width:768px) {
  .p-overview__block2 {
    padding: clamp(32px, 4.1666666667vw, 60px) clamp(42.6666666667px, 5.5555555556vw, 80px);
    margin: clamp(26.6666666667px, 3.4722222222vw, 50px) 0 0;
  }
}
.p-overview__block2 h3 {
  padding-bottom: calc(24 * 100vw / 375);
  margin-bottom: calc(24 * 100vw / 375);
  font-size: calc(20 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  text-align: center;
  letter-spacing: var(--letter-spacing-m);
  border-bottom: 1px dotted #000;
}
@media print, screen and (min-width:768px) {
  .p-overview__block2 h3 {
    padding-bottom: clamp(16px, 2.0833333333vw, 30px);
    margin-bottom: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(13.8666666667px, 1.8055555556vw, 26px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__block2 ul {
    padding-bottom: clamp(10.6666666667px, 1.3888888889vw, 20px);
    border-bottom: 1px dotted #000;
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__block2 ul li {
    display: flex;
    column-gap: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
  .p-overview__block2 ul li figure {
    width: clamp(189.3333333333px, 24.6527777778vw, 355px);
  }
}
.p-overview__block2 ul li:not(:first-child) {
  padding-top: calc(24 * 100vw / 375);
  margin-top: calc(24 * 100vw / 375);
  border-top: 1px dotted #000;
}
@media print, screen and (min-width:768px) {
  .p-overview__block2 ul li:not(:first-child) {
    padding-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__block2-content {
    width: clamp(386.6666666667px, 50.3472222222vw, 725px);
    padding-top: clamp(5.3333333333px, 0.6944444444vw, 10px);
  }
}
.p-overview__block2-case {
  margin-top: calc(15 * 100vw / 375);
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block2-case {
    margin-top: 0;
    font-size: clamp(8px, 1.0416666667vw, 15px);
  }
}
.p-overview__block2-case span {
  font-family: var(--font-family-en);
  font-size: calc(17 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block2-case span {
    font-size: clamp(9.0666666667px, 1.1805555556vw, 17px);
  }
}
.p-overview__block2 dl dt {
  width: fit-content;
  padding: calc(5 * 100vw / 375) calc(7 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  color: var(--white);
  letter-spacing: var(--letter-spacing-m);
  background: var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-overview__block2 dl dt {
    padding: clamp(2.6666666667px, 0.3472222222vw, 5px) clamp(3.7333333333px, 0.4861111111vw, 7px);
    margin-top: clamp(2.1333333333px, 0.2777777778vw, 4px);
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.p-overview__block2 dl dd {
  margin-top: calc(12 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-overview__block2 dl dd {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-overview__block3 {
  padding: calc(30 * 100vw / 375);
  margin: calc(4 * 100vw / 375) calc(-30 * 100vw / 375) 0;
  background: #fff5ec;
}
@media print, screen and (min-width:768px) {
  .p-overview__block3 {
    padding: clamp(32px, 4.1666666667vw, 60px) clamp(42.6666666667px, 5.5555555556vw, 80px);
    margin: clamp(2.1333333333px, 0.2777777778vw, 4px) 0 0;
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__block3 ul li {
    display: flex;
    column-gap: clamp(21.3333333333px, 2.7777777778vw, 40px);
  }
  .p-overview__block3 ul li figure {
    width: clamp(189.3333333333px, 24.6527777778vw, 355px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__block3-content {
    width: clamp(386.6666666667px, 50.3472222222vw, 725px);
    padding-top: clamp(8px, 1.0416666667vw, 15px);
  }
}
.p-overview__block3 dl {
  margin-top: calc(16 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block3 dl {
    margin-top: 0;
  }
}
.p-overview__block3 dl dt {
  width: fit-content;
  padding: calc(5 * 100vw / 375) calc(7 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block3 dl dt {
    padding: 0;
    margin-top: 0;
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.p-overview__block3 dl dd {
  margin-top: calc(12 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-overview__block3 dl dd {
    margin-top: clamp(8.5333333333px, 1.1111111111vw, 16px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-overview__block4 {
  margin: calc(30 * 100vw / 375) calc(-30 * 100vw / 375) 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4 {
    position: relative;
    margin: clamp(36.2666666667px, 4.7222222222vw, 68px) 0 0;
  }
  .p-overview__block4::before {
    position: absolute;
    top: clamp(29.3333333333px, 3.8194444444vw, 55px);
    left: 0;
    display: block;
    width: clamp(33.6px, 4.375vw, 63px);
    height: clamp(94.4px, 12.2916666667vw, 177px);
    content: "";
    background: url("../images/overview/block4_before.svg") no-repeat 0 0;
    background-size: contain;
  }
  .p-overview__block4::after {
    position: absolute;
    top: auto;
    right: clamp(5.3333333333px, 0.6944444444vw, 10px);
    bottom: clamp(5.3333333333px, 0.6944444444vw, 10px);
    display: block;
    width: clamp(41.6px, 5.4166666667vw, 78px);
    height: clamp(90.1333333333px, 11.7361111111vw, 169px);
    content: "";
    background: url("../images/overview/block4_after.svg") no-repeat 0 0;
    background-size: contain;
  }
}
.p-overview__block4-list {
  display: flex;
  flex-direction: column;
  gap: calc(5 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.p-overview__block4-list li {
  padding: calc(38 * 100vw / 375) 0 calc(16 * 100vw / 375);
  background: #fcf5e3;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li {
    padding: clamp(29.3333333333px, 3.8194444444vw, 55px) 0 clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.p-overview__block4-list li:nth-child(even) {
  background-color: #fff5ed;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li:first-child {
    display: flex;
    grid-row: 1;
    grid-column: 1/5;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 2.0833333333vw, 30px) 0;
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li:first-child .p-overview__block4-num {
    margin: 0;
    margin-left: clamp(14.9333333333px, 1.9444444444vw, 28px);
  }
}
.p-overview__block4-list li:first-child .p-overview__block4-note {
  width: fit-content;
  margin-inline: auto;
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  text-align: left;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li:first-child .p-overview__block4-note {
    margin: 0;
    margin-left: clamp(26.6666666667px, 3.4722222222vw, 50px);
    font-size: clamp(7.4666666667px, 0.9722222222vw, 14px);
  }
}
.p-overview__block4-list li:nth-child(5) {
  z-index: 1;
}
.p-overview__block4-list li dl {
  display: flex;
  column-gap: calc(8 * 100vw / 375);
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li dl {
    column-gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.p-overview__block4-list li dl dt {
  width: calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li dl dt {
    width: clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
.p-overview__block4-list li dl dd {
  font-size: calc(15 * 100vw / 375);
  font-weight: 700;
  letter-spacing: 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li dl dd {
    font-size: clamp(8px, 1.0416666667vw, 15px);
  }
}
.p-overview__block4-list li dl dd span {
  padding: calc(5 * 100vw / 375) calc(7 * 100vw / 375);
  font-size: calc(18 * 100vw / 375);
  line-height: 1;
  color: var(--white);
  letter-spacing: var(--letter-spacing-m);
  background: var(--black-100);
  border-radius: calc(1 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-list li dl dd span {
    padding: clamp(2.6666666667px, 0.3472222222vw, 5px) clamp(3.7333333333px, 0.4861111111vw, 7px);
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
    border-radius: unset;
  }
}
.p-overview__block4-num {
  font-size: calc(26 * 100vw / 375);
  font-weight: 700;
  text-align: center;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num {
    font-size: clamp(13.8666666667px, 1.8055555556vw, 26px);
  }
}
.p-overview__block4-num span {
  display: inline-block;
  margin-block: var(--leading-trim);
  font-family: var(--font-family-en);
  font-size: calc(90 * 100vw / 375);
  font-weight: 500;
  color: var(--orange-100);
  letter-spacing: 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num span {
    font-size: clamp(74.6666666667px, 9.7222222222vw, 140px);
  }
}
.p-overview__block4-num-column2 {
  display: flex;
  gap: calc(18 * 100vw / 375);
  justify-content: center;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num-column2 {
    gap: clamp(9.6px, 1.25vw, 18px);
  }
}
.p-overview__block4-num-column2-inner {
  position: relative;
  padding-top: calc(13 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num-column2-inner {
    padding-top: clamp(6.9333333333px, 0.9027777778vw, 13px);
  }
}
.p-overview__block4-num-column2-inner .p-overview__block4-num {
  font-size: calc(24 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num-column2-inner .p-overview__block4-num {
    padding-top: clamp(3.2px, 0.4166666667vw, 6px);
    font-size: clamp(13.8666666667px, 1.8055555556vw, 26px);
  }
}
.p-overview__block4-num-column2-inner .p-overview__block4-num span {
  font-size: calc(60 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num-column2-inner .p-overview__block4-num span {
    font-size: clamp(42.6666666667px, 5.5555555556vw, 80px);
  }
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num-column2 + .p-overview__block4-note {
    margin-top: clamp(19.2px, 2.5vw, 36px);
  }
}
.p-overview__block4-num-label {
  padding-right: calc(20 * 100vw / 375);
  font-size: calc(13 * 100vw / 375);
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-num-label {
    padding-right: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8px, 1.0416666667vw, 15px);
  }
}
.p-overview__block4-note {
  margin-top: calc(20 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  text-align: center;
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-overview__block4-note {
    margin-top: clamp(13.3333333333px, 1.7361111111vw, 25px);
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}
.p-overview__block4-img-replace {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}
.p-overview__block4-img-replace img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
@media print, screen and (min-width:768px) {
  .p-overview__block5 {
    position: relative;
  }
  .p-overview__block5::before {
    position: absolute;
    top: clamp(215.4666666667px, 28.0555555556vw, 404px);
    left: clamp(8px, 1.0416666667vw, 15px);
    display: block;
    width: clamp(33.0666666667px, 4.3055555556vw, 62px);
    height: clamp(53.8666666667px, 7.0138888889vw, 101px);
    content: "";
    background: url("../images/overview/block5_before.svg") no-repeat 0 0;
    background-size: contain;
  }
  .p-overview__block5::after {
    position: absolute;
    top: clamp(204.8px, 26.6666666667vw, 384px);
    right: clamp(4.2666666667px, 0.5555555556vw, 8px);
    display: block;
    width: clamp(38.4px, 5vw, 72px);
    height: clamp(64px, 8.3333333333vw, 120px);
    content: "";
    background: url("../images/overview/block5_after.svg") no-repeat 0 0;
    background-size: contain;
  }
}
.p-overview__block5-list {
  display: flex;
  flex-direction: column;
  gap: calc(5 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(4.2666666667px, 0.5555555556vw, 8px);
  }
}
.p-overview__block5-list li {
  padding: calc(30 * 100vw / 375) calc(30 * 100vw / 375) calc(12 * 100vw / 375);
  background: #fff5ed;
}
.p-overview__block5-list li:nth-child(1), .p-overview__block5-list li:nth-child(4) {
  background: #f1f6ff;
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-list li {
    padding: clamp(26.6666666667px, 3.4722222222vw, 50px) clamp(32px, 4.1666666667vw, 60px) clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
  .p-overview__block5-list li:nth-child(1), .p-overview__block5-list li:nth-child(2) {
    width: calc(50% - clamp(2.1333333333px, 0.2777777778vw, 4px));
  }
  .p-overview__block5-list li:nth-child(3) {
    width: calc(63% - clamp(2.1333333333px, 0.2777777778vw, 4px));
  }
  .p-overview__block5-list li:nth-child(4) {
    width: calc(37% - clamp(2.1333333333px, 0.2777777778vw, 4px));
  }
  .p-overview__block5-list li:nth-child(4) .p-overview__block5-note {
    margin-top: clamp(36.8px, 4.7916666667vw, 69px);
  }
}
.p-overview__block5-title {
  width: fit-content;
  padding: calc(5 * 100vw / 375) calc(7 * 100vw / 375);
  margin: 0 auto;
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: var(--letter-spacing-m);
  background: var(--black-100);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-title {
    padding: clamp(2.6666666667px, 0.3472222222vw, 5px) clamp(3.7333333333px, 0.4861111111vw, 7px);
    font-size: clamp(11.7333333333px, 1.5277777778vw, 22px);
  }
}
.p-overview__block5-block {
  display: flex;
  column-gap: calc(6 * 100vw / 375);
  align-items: center;
  justify-content: center;
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block {
    column-gap: clamp(6.4px, 0.8333333333vw, 12px);
    margin-top: clamp(16px, 2.0833333333vw, 30px);
  }
}
.p-overview__block5-block img {
  width: calc(74 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block img {
    width: clamp(74.6666666667px, 9.7222222222vw, 140px);
  }
}
.p-overview__block5-block dl {
  text-align: center;
}
.p-overview__block5-block dl:last-of-type dd span {
  color: var(--blue-100);
}
.p-overview__block5-block dl dt {
  font-size: calc(13 * 100vw / 375);
  font-weight: 700;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block dl dt {
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.p-overview__block5-block dl dd {
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block dl dd {
    font-size: clamp(18.1333333333px, 2.3611111111vw, 34px);
  }
}
.p-overview__block5-block dl dd span {
  font-family: var(--font-family-en);
  font-size: calc(68 * 100vw / 375);
  font-weight: 500;
  line-height: 1;
  color: var(--orange-100);
  letter-spacing: 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block dl dd span {
    font-size: clamp(69.3333333333px, 9.0277777778vw, 130px);
  }
}
.p-overview__block5-block2 {
  margin-top: calc(8 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block2 {
    padding: clamp(4.8px, 0.625vw, 9px);
    margin-top: clamp(26.1333333333px, 3.4027777778vw, 49px);
  }
}
.p-overview__block5-block3 {
  display: flex;
  column-gap: calc(30 * 100vw / 375);
  justify-content: center;
  margin-top: calc(20 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block3 {
    column-gap: clamp(23.4666666667px, 3.0555555556vw, 44px);
    margin-top: clamp(26.6666666667px, 3.4722222222vw, 50px);
  }
}
.p-overview__block5-block3 dl {
  text-align: center;
}
.p-overview__block5-block3 dl:last-of-type dd span {
  color: var(--blue-100);
}
.p-overview__block5-block3 dl dt {
  display: flex;
  column-gap: calc(9 * 100vw / 375);
  align-items: center;
  font-size: calc(20 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block3 dl dt {
    column-gap: clamp(4.8px, 0.625vw, 9px);
    font-size: clamp(12.8px, 1.6666666667vw, 24px);
  }
}
.p-overview__block5-block3 dl dt img {
  width: calc(30 * 100vw / 375);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block3 dl dt img {
    width: clamp(16px, 2.0833333333vw, 30px);
  }
}
.p-overview__block5-block3 dl dd {
  font-size: calc(18 * 100vw / 375);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block3 dl dd {
    font-size: clamp(18.1333333333px, 2.3611111111vw, 34px);
  }
}
.p-overview__block5-block3 dl dd span {
  font-family: var(--font-family-en);
  font-size: calc(90 * 100vw / 375);
  font-weight: 500;
  line-height: 1;
  color: var(--orange-100);
  letter-spacing: 0;
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-block3 dl dd span {
    font-size: clamp(58.6666666667px, 7.6388888889vw, 110px);
  }
}
.p-overview__block5-text {
  margin-top: calc(13 * 100vw / 375);
  font-size: calc(14 * 100vw / 375);
  font-weight: 500;
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing-l);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-text {
    margin-top: clamp(10.6666666667px, 1.3888888889vw, 20px);
    font-size: clamp(8.5333333333px, 1.1111111111vw, 16px);
  }
}
.p-overview__block5-note {
  margin-top: calc(38 * 100vw / 375);
  font-size: calc(12 * 100vw / 375);
  text-align: center;
  letter-spacing: var(--letter-spacing-m);
}
@media print, screen and (min-width:768px) {
  .p-overview__block5-note {
    margin-top: clamp(20.8px, 2.7083333333vw, 39px);
    font-size: clamp(6.4px, 0.8333333333vw, 12px);
  }
}

/* ==========================================================================
Utility
========================================================================== */
@media print, screen and (max-width:767.98px) {
  .u-pc-only {
    display: none !important;
  }
}
@media print, screen and (min-width:768px) {
  .u-sp-only {
    display: none !important;
  }
  br.u-br-sp {
    display: none;
  }
}