/* reset css */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

/* base */
:root {
  /* color（--color-* はプロパティ名の辞書順） */
  --color-background-ex-light-gray: var(--color-white-light);
  --color-background-light-gray: var(--color-primary-light);
  --color-background-lightred: #fef3f5;
  --color-background-subdued: var(--color-gray);
  --color-background-subdued-red: #fcdce1;
  --color-base-black: var(--color-base-black-full);
  --color-base-black-full: #222222;
  --color-base-dark: var(--color-footer-bg);
  --color-base-light: #444444;
  --color-base-white: var(--color-white);
  --color-black: #222;
  --color-chart-red-level-1: #f8a3b6;
  --color-chart-red-level-1-deep: #f57f99;
  --color-chart-red-level-2: #f35a7c;
  --color-chart-red-level-2-deep: #ee2f59;
  --color-chart-red-level-3: #d60331;
  --color-chart-red-level-3-deep: #c4022d;
  --color-chart-red-level-4: #b20128;
  --color-chart-red-level-4-deep: #a00023;
  --color-corporate-color: var(--color-red);
  --color-elevation-modal: #001432;
  --color-error-corporate: var(--color-red);
  --color-error-light-background: var(--color-background-lightred);
  --color-footer-bg: #333;
  --color-foreground: var(--color-gray-dark);
  --color-foreground-high: #555555;
  --color-foreground-low: #a0a0a0;
  --color-gray: #cbcbcb;
  --color-gray-dark: #6f6f6f;
  --color-gray-light: #ddd;
  --color-gray-light-2: #d8d8db;
  --color-green-dark: #1e666c;
  --color-green-light: #277a80;
  --color-local-background: #e8f0fe;
  --color-local-outline: #007f5f;
  --color-outline-light: var(--color-gray-light-2);
  --color-outline-light-gray: var(--color-gray-light);
  --color-primary-light: #f3f3f3;
  --color-red: #ea0437;
  --color-red-dark: #C6002A;
  --color-role-disabled: var(--color-gray);
  --color-role-price-inquiry: var(--color-green-light);
  --color-slate-dark: #2e3133;
  --color-slate-deep-gray: #717682;
  --color-slate-gray: #8d919b;
  --color-success-background: var(--color-local-background);
  --color-success-outline: var(--color-local-outline);
  --color-white: #fff;
  --color-white-light: #fafafa;
  
  /* spacing（デザインスタイルガイド：Space-XXS〜XXXL / Margin-Side。PC 既定・969px 以下で SP） */
  --space-xxs: 8px;
  --space-xs: 16px;
  --space-s: 24px;
  --space-m: 32px;
  --space-l: 40px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --space-xxxl: 80px;
  --space-margin-side: 40px;
  
  --base-size: 16;
  --max-width: 1220px;
  
  --font-secondary: "Source Han Sans JP", sans-serif;
}


/* --------------------------------------------------------------------------
c-media-list（メディア一覧）・リンク行（FLOCSS: Component / Utility）
-------------------------------------------------------------------------- */

.c-media-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-media-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 969px) {
  .c-media-list__item {
    align-items: flex-start;
  }
}

.c-media-list__date {
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-gray-dark);
  letter-spacing: 1.4px;
  text-box-trim: trim-both;
}

.c-media-list__content {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-black);
  font-family: var(--font-secondary);
  font-size: calc(16 / var(--base-size) * 1rem);
  line-height: 1.5;
}
.c-media-list__title {
  font-size: calc(16 / var(--base-size) * 1rem);
  color: var(--color-black);
  font-weight: 700;
  font-family: var(--font-secondary);
  line-height: 1.5;
  transition: color 0.2s ease;
  text-box-trim: trim-both;
}
td .c-media-list__title{
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: normal;
}
@media (hover: hover) {
  a.c-media-list__content:hover .c-media-list__title {
    color: var(--color-red);
  }
}

.c-nav-list {margin: 0;padding: 0;}

.c-nav-list__item {
  position: relative;
  border-top: 1px solid var(--color-gray-light);
  list-style: none;
}

.c-nav-list__item::before {
  content: "";
  position: absolute;
  background-color: var(--color-red);
  width: 8px;
  height: 2px;
  top: -1px;
  left: 0;
}

.c-nav-list__link{
  width: 100%;
  height: 100%;
  padding: 20px 16px;
}

/* Utility */
.u-icon--front::before,
.u-icon--lead::before,
.u-icon--tail::after,
.u-icon--end::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-top: -3px;
}
.u-icon--tail::after,
.u-icon--end::after {
  margin-left: 4px;
}
.u-icon--tail::after {
  background-size: 10px 10px;
}
.u-icon--front::before,
.u-icon--end::after {
  background-size: 16px 16px;
}
.u-icon--pdf::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12.6551 11.6008V0.800781H3.05508C2.17508 0.800781 1.45508 1.52078 1.45508 2.40078V12.7368L3.05508 15.1688L5.39108 11.6008H12.6551ZM4.09508 3.92078H9.99908L9.21508 5.12078H4.09508V3.92078ZM4.09508 6.80078H9.99908L9.21508 8.00078H4.09508V6.80078ZM14.5431 12.8008L12.9591 15.2008H4.46308L6.03108 12.8008H12.6391H14.5431Z' fill='%23EA0437'/%3E%3C/svg%3E");
}

.u-icon--self::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 4L10 8L6 12' stroke='%23ea0437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  width: 1em;
  height: 1em;
}

.u-icon--target::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M8.88889 8.88889H1.11111V1.11111H5V0H1.11111C0.5 0 0 0.5 0 1.11111V8.88889C0 9.5 0.5 10 1.11111 10H8.88889C9.5 10 10 9.5 10 8.88889V5H8.88889V8.88889ZM6.11111 0V1.11111H8.11111L2.66667 6.55556L3.44444 7.33333L8.88889 1.88889V3.88889H10V0H6.11111Z' fill='%23EA0437'/%3E%3C/svg%3E");
}
.u-icon--download::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.00005 11.136L4.16005 7.29605L5.18405 6.27205L7.20005 8.28805V2.40005C7.20005 1.52005 7.92005 0.800049 8.80005 0.800049V8.30405L10.832 6.27205L11.856 7.29605L8.00005 11.136ZM13.6 8.00005V13.6H2.40005V8.00005H0.800049V13.6C0.800049 14.48 1.52005 15.2 2.40005 15.2H13.6C14.48 15.2 15.2 14.48 15.2 13.6V8.00005H13.6Z' fill='%23EA0437'/%3E%3C/svg%3E");
}

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

.u-elevation-item {
  border-radius: 4px;
  background: var(--color-white);
}
.u-elevation-level--0 {
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 0 0 0 rgba(0, 20, 50, 0.00);
}
.u-elevation-level--1 {
  box-shadow: 0 3px 8px 0 rgba(0, 20, 50, 0.18);
}
.u-elevation-level--2 {
  box-shadow: 0 3px 8px 0 rgba(0, 20, 50, 0.18);
}
.u-elevation-level--3 {
  box-shadow: 0 6px 10px 0 rgba(0, 20, 50, 0.20);
}
.u-elevation-level--4 {
  box-shadow: 0 12px 24px 0 rgba(0, 20, 50, 0.25);
}

/* --------------------------------------------------------------------------
utility：余白（デザインスタイルガイド Space-* / Margin-Side）
・u-mt--* / u-mb--* / u-ml--* / u-mr--* … margin 辺別
・u-pt--* / u-pb--* / u-pl--* / u-pr--* … padding 辺別
・u-m--* / u-mx--* / u-my--* … margin 一括（全辺 / 左右 / 上下）
・u-p--* / u-px--* / u-py--* … padding 一括（全辺 / 左右 / 上下）
・*-side … Margin-Side トークン（u-m--side / u-p--side は左右のみ＝ガイド相当）
-------------------------------------------------------------------------- */

/* margin 一括：全辺 / 横 / 縦（--space-xxs） */
.u-m--xxs { margin: var(--space-xxs); }
.u-mx--xxs { margin-left: var(--space-xxs); margin-right: var(--space-xxs); }
.u-my--xxs { margin-top: var(--space-xxs); margin-bottom: var(--space-xxs); }
/* margin 辺別 */
.u-mt--xxs { margin-top: var(--space-xxs); }
.u-mb--xxs { margin-bottom: var(--space-xxs); }
.u-ml--xxs { margin-left: var(--space-xxs); }
.u-mr--xxs { margin-right: var(--space-xxs); }
/* padding 一括 */
.u-p--xxs { padding: var(--space-xxs); }
.u-px--xxs { padding-left: var(--space-xxs); padding-right: var(--space-xxs); }
.u-py--xxs { padding-top: var(--space-xxs); padding-bottom: var(--space-xxs); }
/* padding 辺別 */
.u-pt--xxs { padding-top: var(--space-xxs); }
.u-pb--xxs { padding-bottom: var(--space-xxs); }
.u-pl--xxs { padding-left: var(--space-xxs); }
.u-pr--xxs { padding-right: var(--space-xxs); }

/* margin 一括：全辺 / 横 / 縦（--space-xs） */
.u-m--xs { margin: var(--space-xs); }
.u-mx--xs { margin-left: var(--space-xs); margin-right: var(--space-xs); }
.u-my--xs { margin-top: var(--space-xs); margin-bottom: var(--space-xs); }
/* margin 辺別 */
.u-mt--xs { margin-top: var(--space-xs); }
.u-mb--xs { margin-bottom: var(--space-xs); }
.u-ml--xs { margin-left: var(--space-xs); }
.u-mr--xs { margin-right: var(--space-xs); }
/* padding 一括 */
.u-p--xs { padding: var(--space-xs); }
.u-px--xs { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.u-py--xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
/* padding 辺別 */
.u-pt--xs { padding-top: var(--space-xs); }
.u-pb--xs { padding-bottom: var(--space-xs); }
.u-pl--xs { padding-left: var(--space-xs); }
.u-pr--xs { padding-right: var(--space-xs); }

/* margin 一括：全辺 / 横 / 縦（--space-s） */
.u-m--s { margin: var(--space-s); }
.u-mx--s { margin-left: var(--space-s); margin-right: var(--space-s); }
.u-my--s { margin-top: var(--space-s); margin-bottom: var(--space-s); }
/* margin 辺別 */
.u-mt--s { margin-top: var(--space-s); }
.u-mb--s { margin-bottom: var(--space-s); }
.u-ml--s { margin-left: var(--space-s); }
.u-mr--s { margin-right: var(--space-s); }
/* padding 一括 */
.u-p--s { padding: var(--space-s); }
.u-px--s { padding-left: var(--space-s); padding-right: var(--space-s); }
.u-py--s { padding-top: var(--space-s); padding-bottom: var(--space-s); }
/* padding 辺別 */
.u-pt--s { padding-top: var(--space-s); }
.u-pb--s { padding-bottom: var(--space-s); }
.u-pl--s { padding-left: var(--space-s); }
.u-pr--s { padding-right: var(--space-s); }

/* margin 一括：全辺 / 横 / 縦（--space-m） */
.u-m--m { margin: var(--space-m); }
.u-mx--m { margin-left: var(--space-m); margin-right: var(--space-m); }
.u-my--m { margin-top: var(--space-m); margin-bottom: var(--space-m); }
/* margin 辺別 */
.u-mt--m { margin-top: var(--space-m); }
.u-mb--m { margin-bottom: var(--space-m); }
.u-ml--m { margin-left: var(--space-m); }
.u-mr--m { margin-right: var(--space-m); }
/* padding 一括 */
.u-p--m { padding: var(--space-m); }
.u-px--m { padding-left: var(--space-m); padding-right: var(--space-m); }
.u-py--m { padding-top: var(--space-m); padding-bottom: var(--space-m); }
/* padding 辺別 */
.u-pt--m { padding-top: var(--space-m); }
.u-pb--m { padding-bottom: var(--space-m); }
.u-pl--m { padding-left: var(--space-m); }
.u-pr--m { padding-right: var(--space-m); }

/* margin 一括：全辺 / 横 / 縦（--space-l） */
.u-m--l { margin: var(--space-l); }
.u-mx--l { margin-left: var(--space-l); margin-right: var(--space-l); }
.u-my--l { margin-top: var(--space-l); margin-bottom: var(--space-l); }
/* margin 辺別 */
.u-mt--l { margin-top: var(--space-l); }
.u-mb--l { margin-bottom: var(--space-l); }
.u-ml--l { margin-left: var(--space-l); }
.u-mr--l { margin-right: var(--space-l); }
/* padding 一括 */
.u-p--l { padding: var(--space-l); }
.u-px--l { padding-left: var(--space-l); padding-right: var(--space-l); }
.u-py--l { padding-top: var(--space-l); padding-bottom: var(--space-l); }
/* padding 辺別 */
.u-pt--l { padding-top: var(--space-l); }
.u-pb--l { padding-bottom: var(--space-l); }
.u-pl--l { padding-left: var(--space-l); }
.u-pr--l { padding-right: var(--space-l); }

/* margin 一括：全辺 / 横 / 縦（--space-xl） */
.u-m--xl { margin: var(--space-xl); }
.u-mx--xl { margin-left: var(--space-xl); margin-right: var(--space-xl); }
.u-my--xl { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }
/* margin 辺別 */
.u-mt--xl { margin-top: var(--space-xl); }
.u-mb--xl { margin-bottom: var(--space-xl); }
.u-ml--xl { margin-left: var(--space-xl); }
.u-mr--xl { margin-right: var(--space-xl); }
/* padding 一括 */
.u-p--xl { padding: var(--space-xl); }
.u-px--xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }
.u-py--xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
/* padding 辺別 */
.u-pt--xl { padding-top: var(--space-xl); }
.u-pb--xl { padding-bottom: var(--space-xl); }
.u-pl--xl { padding-left: var(--space-xl); }
.u-pr--xl { padding-right: var(--space-xl); }

/* margin 一括：全辺 / 横 / 縦（--space-xxl） */
.u-m--xxl { margin: var(--space-xxl); }
.u-mx--xxl { margin-left: var(--space-xxl); margin-right: var(--space-xxl); }
.u-my--xxl { margin-top: var(--space-xxl); margin-bottom: var(--space-xxl); }
/* margin 辺別 */
.u-mt--xxl { margin-top: var(--space-xxl); }
.u-mb--xxl { margin-bottom: var(--space-xxl); }
.u-ml--xxl { margin-left: var(--space-xxl); }
.u-mr--xxl { margin-right: var(--space-xxl); }
/* padding 一括 */
.u-p--xxl { padding: var(--space-xxl); }
.u-px--xxl { padding-left: var(--space-xxl); padding-right: var(--space-xxl); }
.u-py--xxl { padding-top: var(--space-xxl); padding-bottom: var(--space-xxl); }
/* padding 辺別 */
.u-pt--xxl { padding-top: var(--space-xxl); }
.u-pb--xxl { padding-bottom: var(--space-xxl); }
.u-pl--xxl { padding-left: var(--space-xxl); }
.u-pr--xxl { padding-right: var(--space-xxl); }

/* margin 一括：全辺 / 横 / 縦（--space-xxxl） */
.u-m--xxxl { margin: var(--space-xxxl); }
.u-mx--xxxl { margin-left: var(--space-xxxl); margin-right: var(--space-xxxl); }
.u-my--xxxl { margin-top: var(--space-xxxl); margin-bottom: var(--space-xxxl); }
/* margin 辺別 */
.u-mt--xxxl { margin-top: var(--space-xxxl); }
.u-mb--xxxl { margin-bottom: var(--space-xxxl); }
.u-ml--xxxl { margin-left: var(--space-xxxl); }
.u-mr--xxxl { margin-right: var(--space-xxxl); }
/* padding 一括 */
.u-p--xxxl { padding: var(--space-xxxl); }
.u-px--xxxl { padding-left: var(--space-xxxl); padding-right: var(--space-xxxl); }
.u-py--xxxl { padding-top: var(--space-xxxl); padding-bottom: var(--space-xxxl); }
/* padding 辺別 */
.u-pt--xxxl { padding-top: var(--space-xxxl); }
.u-pb--xxxl { padding-bottom: var(--space-xxxl); }
.u-pl--xxxl { padding-left: var(--space-xxxl); }
.u-pr--xxxl { padding-right: var(--space-xxxl); }

/* Margin-Side（u-m--side / u-p--side / u-px--side は左右のみ。他は同トークンで辺指定用） */
.u-m--side { margin-left: var(--space-margin-side); margin-right: var(--space-margin-side); }
.u-mx--side { margin-left: var(--space-margin-side); margin-right: var(--space-margin-side); }
.u-my--side { margin-top: var(--space-margin-side); margin-bottom: var(--space-margin-side); }
.u-mt--side { margin-top: var(--space-margin-side); }
.u-mb--side { margin-bottom: var(--space-margin-side); }
.u-ml--side { margin-left: var(--space-margin-side); }
.u-mr--side { margin-right: var(--space-margin-side); }
.u-p--side { padding-left: var(--space-margin-side); padding-right: var(--space-margin-side); }
.u-px--side { padding-left: var(--space-margin-side); padding-right: var(--space-margin-side); }
.u-py--side { padding-top: var(--space-margin-side); padding-bottom: var(--space-margin-side); }
.u-pt--side { padding-top: var(--space-margin-side); }
.u-pb--side { padding-bottom: var(--space-margin-side); }
.u-pl--side { padding-left: var(--space-margin-side); }
.u-pr--side { padding-right: var(--space-margin-side); }


@media (max-width: 969px) {
  :root {
    --space-xs: 12px;
    --space-s: 16px;
    --space-m: 24px;
    --space-l: 32px;
    --space-xl: 40px;
    --space-xxl: 48px;
    --space-xxxl: 64px;
    --space-margin-side: 20px;
  }
}

html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  color: var(--color-black);
  font-family: source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
  background-color: var(--color-white);
  overflow-x: hidden;
}

*:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--color-red);
}

/* body scroll lock */
.body-scroll-lock {
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}

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

.sp-only {
  display: none;
}

@media (max-width: 969px) {
  .sp-only {
    display: block;
  }
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
}

.header.is-hidden {
  transform: translateY(-100%);
}

.header__wrapper {
  position: relative;
  z-index: 100;
  background-color: var(--color-white);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
}

.header__inner {
  padding: 32px 10px;
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 969px) {
  .header__inner {
    padding: 0;
    padding-left: 20px;
  }
}

.header__logo img{
  min-width: 160px;
  line-height: 1;
  display: block;
}

@media (max-width: 969px) {
  .header__logo img{
    min-width: 113px;
  }
}

.header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 969px) {
  .header__nav-wrap {
    display: none;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  list-style: none;
}

.header__nav-link {
  color: var(--color-black);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .header__nav-link:hover {
    color: var(--color-red);
  }
}

.content-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.content-lang--left {
  justify-content: flex-end;
}

.content-lang__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-family: var(--font-secondary);
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  background-color: #f3f3f3;
  box-shadow: -2px -2px 4px 0 rgba(255, 255, 255, 0.25) inset, 2px 2px 4px 0 rgba(0, 0, 0, 0.08) inset;
}

.content-lang__link::before {
  display: inline-block;
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%236f6f6f%22%3e%3cpath%20d%3d%22M50%2d0%2e4C22%2e4%2d0%2e4,0%2e1,21%2e9,0%2e1,49%2e5S22%2e4,99%2e4,50,99%2e4s49%2e9%2d22%2e3,49%2e9%2d49%2e9S77%2e6%2d0%2e4,50%2d0%2e4z%20M32%2e8,13c%2d2%2e9,3%2e4%2d5%2e4,7%2e3%2d7%2e4,11%2e6h%2d7C22%2e2,19%2e7,27%2e1,15%2e7,32%2e8,13z%20M13%2e6,32%2e5h8%2e8c%2d1%2e2,4%2e1%2d2,8%2e5%2d2%2e2,13h%2d10C10%2e6,40%2e9,11%2e8,36%2e6,13%2e6,32%2e5z%20M14%2e1,66%2e5c%2d2%2d4%2d3%2e3%2d8%2e4%2d3%2e8%2d13h9%2e9c0%2e3,4%2e5,1%2e1,8%2e9,2%2e2,13H14%2e1z%20M19%2e2,74%2e5h6%2e2c1%2e7,3%2e6,3%2e7,6%2e9,6,9%2e9C26%2e7,81%2e9,22%2e6,78%2e5,19%2e2,74%2e5z%20M46,87%2e1c%2d4%2e5%2d2%2e9%2d8%2e6%2d7%2e2%2d11%2e7%2d12%2e6H46V87%2e1z%20M46,66%2e5H30%2e7c%2d1%2e3%2d4%2d2%2e2%2d8%2e3%2d2%2e6%2d13H46V66%2e5z%20M46,45%2e5H28%2e2c0%2e3%2d4%2e7,1%2e2%2d9,2%2e6%2d13H46V45%2e5z%20M46,24%2e6H34%2e3c3%2e1%2d5%2e4,7%2e2%2d9%2e7,11%2e7%2d12%2e6V24%2e6z%20M86%2e4,32%2e5c1%2e8,4,3,8%2e4,3%2e4,13h%2d10c%2d0%2e3%2d4%2e5%2d1%2e1%2d8%2e9%2d2%2e2%2d13H86%2e4z%20M81%2e6,24%2e6h%2d7c%2d2%2d4%2e3%2d4%2e5%2d8%2e2%2d7%2e4%2d11%2e6C72%2e9,15%2e7,77%2e8,19%2e7,81%2e6,24%2e6z%20M54,11%2e9c4%2e5,2%2e9,8%2e6,7%2e2,11%2e7,12%2e6H54V11%2e9z%20M54,32%2e5h15%2e3c1%2e3,4,2%2e2,8%2e3,2%2e6,13H54V32%2e5z%20M54,53%2e5h17%2e8c%2d0%2e3,4%2e7%2d1%2e2,9%2d2%2e6,13H54V53%2e5z%20M54,87%2e1V74%2e5h11%2e7C62%2e6,79%2e9,58%2e5,84%2e2,54,87%2e1z%20M68%2e6,84%2e4c2%2e3%2d3,4%2e3%2d6%2e3,6%2d9%2e9h6%2e2C77%2e4,78%2e5,73%2e3,81%2e9,68%2e6,84%2e4z%20M85%2e9,66%2e5h%2d8%2e3c1%2e2%2d4%2e1,2%2d8%2e5,2%2e2%2d13h9%2e9C89%2e2,58%2e1,87%2e9,62%2e5,85%2e9,66%2e5z%22%2f%3e%3c%2fsvg%3e");
  background-position: center;
  background-size: cover;
  content: "";
  margin-top: 1px;
  line-height: 1.5;
  height: 10px;
  width: 10px
}

.content-lang__ja {
  font-size: calc(12 / var(--base-size) * 1rem);
  line-height: 1;
  color: var(--color-gray);
}

.content-lang__separator {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: var(--color-gray);
}

.content-lang__text {
  font-size: calc(14 / var(--base-size) * 1rem);
  line-height: 1;
  color: var(--color-gray-dark);
}

@media (min-width: 970px) {
  .header__menu-button-wrap {
    display: none;
  }
}

.header__menu-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border: none;
  padding: 0;
  min-width: 68px;
  min-height: 68px;
}

.header__menu-button:before,
.header__menu-button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.25s ease;
}

.header__menu-button:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M18.3474 4.5L19.9871 2H2C0.895431 2 0 2.89543 0 4V4.5H18.3474Z' fill='%23EA0437'/%3E%3Cpath d='M18.3474 11.1992L19.9871 8.69922H2C0.895431 8.69922 0 9.59465 0 10.6992V11.1992H18.3474Z' fill='%23EA0437'/%3E%3Cpath d='M19.9871 15.5L18.3474 18H0V17.5C0 16.3954 0.895431 15.5 2 15.5H19.9871Z' fill='%23EA0437'/%3E%3C/svg%3E");
}

.header__menu-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M19.9743 1.82519L18.1491 0L10 8.17481L2.72494 0.92545C2.2365 0.437018 1.41388 0.437018 0.899743 0.92545L0 1.82519L8.17481 10L0.92545 17.2494C0.437018 17.7378 0.437018 18.5604 0.92545 19.0746L1.8509 19.9743L10 11.8252L18.1748 20L20 18.1748L11.8252 10L19.9743 1.82519Z' fill='%23EA0437'/%3E%3C/svg%3E");
  opacity: 0;
}

.header.is-open .header__menu-button:before {
  opacity: 0;
}

.header.is-open .header__menu-button:after {
  opacity: 1;
}

.header__menu-button-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* mega-menu */
.mega-menu {
  position: relative;
  z-index: 100;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}

@media (max-width: 969px) {
  .mega-menu {
    display: none;
  }
}

.mega-menu__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 10px;
}

.mega-menu__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
}

.mega-menu__item {
  list-style: none;
}

.mega-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  font-size: clamp(13px, 11.981px + 0.105vw, 14px);
  font-weight: 400;
  font-family: var(--font-secondary);
  line-height: 1;
  color: var(--color-black);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .mega-menu__link:hover {
    color: var(--color-red);
  }
}

.mega-menu__item.is-active .mega-menu__link {
  border-bottom: 2px solid var(--color-gray-dark);
}

.mega-menu__sub-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background: rgba(250, 250, 250, 0.80);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mega-menu__item.is-active .mega-menu__sub-wrap {
  opacity: 1;
  visibility: visible;
}

.mega-menu__sub-content { 
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 32px 10px;
}

.mega-menu__sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-menu__sub-title-circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
}

.mega-menu__sub-title-circle-icon::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-red);
}


.mega-menu__sub-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
}

.mega-menu__sub-item {
  position: relative;
  border-top: 1px solid var(--color-gray-light);
  list-style: none;
}

.mega-menu__sub-item::before {
  content: "";
  position: absolute;
  background-color: var(--color-red);
  width: 8px;
  height: 2px;
  top: -1px;
  left: 0;
}

.mega-menu__sub-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
}

/* hamburger-menu */
.hamburger-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100svh;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header.is-open .hamburger-menu {
  opacity: 1;
  visibility: visible;
}

.hamburger-menu__inner {
  max-width: calc(100% - max(10.67%, 40px));
  margin-left: auto;
  background-color: var(--color-white-light);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hamburger-menu__body {
  height: calc(100svh - 68px);
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 20px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}

.hamburger-menu__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 8px 0 16px;
  padding: 0;
}

.hamburger-menu__item {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.5s ease;
}
.hamburger-menu__item.is-open {
  gap: 8px;
}
.hamburger-menu__link {
  display: block;
  width: 100%;
  padding: 0 0 8px;
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  color: var(--color-black);
  transition: color 0.2s ease;
}

.hamburger-menu__item.is-open .hamburger-menu__link {
  color: var(--color-gray-dark);
}

.hamburger-menu__item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-gray-light);
}

.hamburger-menu__item-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.80011 7.19963H12.4001L11.3441 8.79963H8.80011V11.9996H7.20011V8.79963H4.00011V7.99963C4.00011 7.55163 4.35211 7.19963 4.80011 7.19963H7.20011V4.79962C7.20011 4.35162 7.55211 3.99962 8.00011 3.99962H8.80011V7.19963ZM15.9841 7.99963C15.9841 12.4156 12.4161 15.9836 8.00011 15.9836C3.58411 15.9836 0.0161133 12.4156 0.0161133 7.99963C0.0161133 3.58363 3.58411 0.015625 8.00011 0.015625C12.4161 0.015625 15.9841 3.58363 15.9841 7.99963ZM14.3841 7.91963C14.3841 4.38363 11.5201 1.53562 8.00011 1.53562C4.48011 1.53562 1.61611 4.38363 1.61611 7.91963C1.61611 11.4556 4.48011 14.3036 8.00011 14.3036C11.5201 14.3036 14.3841 11.4556 14.3841 7.91963Z' fill='%23EA0437'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hamburger-menu__item.is-open .hamburger-menu__item-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.784 7.184H12.368L11.312 8.784H3.984V7.984C3.984 7.536 4.352 7.184 4.784 7.184ZM15.968 7.984C15.968 12.4 12.4 15.968 7.984 15.968C3.568 15.968 0 12.4 0 7.984C0 3.568 3.568 0 7.984 0C12.4 0 15.968 3.568 15.968 7.984ZM14.368 7.904C14.368 4.368 11.504 1.52 7.984 1.52C4.464 1.52 1.6 4.368 1.6 7.904C1.6 11.44 4.464 14.288 7.984 14.288C11.504 14.288 14.368 11.44 14.368 7.904Z' fill='%236F6F6F'/%3E%3C/svg%3E");
}

.hamburger-menu__accordion {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
  overflow: hidden;
}

.hamburger-menu__item.is-open .hamburger-menu__accordion {
  grid-template-rows: 1fr;
}

.accordion-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hamburger-menu__accordion-item {
  list-style: none;
}

.hamburger-menu__accordion-link {
  display: block;
  margin: 0 0 0 16px;
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  color: var(--color-black);
}

.hamburger-menu__accordion-title {
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 500;
}

@media (hover: hover) {
  a.hamburger-menu__accordion-link:hover .hamburger-menu__accordion-title{
    color: var(--color-black);
  }
}

.hamburger-menu__sub-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hamburger-menu__sub-item {
  list-style: none;
}

.hamburger-menu__sub-link {
  display: block;
  padding: 0 0 0 16px;
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-dark);
  text-decoration: none;
}
.hamburger-menu__sub-link .hamburger-menu__accordion-title{
  font-weight: 700;
  font-size: calc(16 / var(--base-size) * 1rem);
}
@media (hover: hover) {
  a.hamburger-menu__sub-link:hover .hamburger-menu__accordion-title{
    color: var(--color-black);
  }
}

/* footer */
.footer {
  background-color: var(--color-white-light);
}

.footer-site-map {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 64px 10px;
}

@media (max-width: 969px) {
  .footer-site-map {
    padding: 48px 20px 64px;
  }
}

.footer-site-map__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 969px) {
  .footer-site-map__top {
    margin-bottom: 48px;
  }
}

.footer-site-map__logo img {
  min-width: 180px;
}

.footer-site-map__main {
  margin-bottom: 40px;
}

.footer-site-map__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 969px) {
  .footer-site-map__columns {
    grid-template-columns: auto;
    gap: 24px;
  }
}

.footer-site-map__column {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (max-width: 969px) {
  .footer-site-map__column {
    gap: 24px;
  }
}

.footer-site-map__column--narrow {
  gap: 40px;
}

.footer-site-map__contact-text {
  font-size: calc(12 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-gray-dark);
  margin-bottom: 16px;
}

.footer-site-map__heading {
  display: flex;
  align-items: center;
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--color-black);
  transition: color 0.2s ease;
}

@media (max-width: 969px) {
  .footer-site-map__column-inner{
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.5s ease;
  }
  .footer-site-map__column-inner.is-open{
    gap: 8px;
  }
  .footer-site-map__column-inner.is-open .footer-site-map__heading {
    color: var(--color-gray-dark);
  }
}

@media (hover: hover) {
  a.footer-site-map__heading:hover {
    color: var(--color-red);
  }
}

@media (max-width: 969px) {
  .footer-site-map__heading {
    justify-content: space-between;
    border-bottom: 1px solid var(--color-gray-light);
    cursor: pointer;
    margin-bottom: 0;
  }
}

.footer-site-map__heading::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  margin-bottom: 2px;
  background-color: var(--color-red);
  border-radius: 50%;
  transition: opacity 0.2s ease;
  opacity: 0;
}

@media (max-width: 969px) {
  .footer-site-map__heading::before {
    content: none;
  }
}

@media (hover: hover) {
  a.footer-site-map__heading:hover::before {
    opacity: 1;
  }
}

.footer-site-map__heading-icon {
  display: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.80011 7.19963H12.4001L11.3441 8.79963H8.80011V11.9996H7.20011V8.79963H4.00011V7.99963C4.00011 7.55163 4.35211 7.19963 4.80011 7.19963H7.20011V4.79962C7.20011 4.35162 7.55211 3.99962 8.00011 3.99962H8.80011V7.19963ZM15.9841 7.99963C15.9841 12.4156 12.4161 15.9836 8.00011 15.9836C3.58411 15.9836 0.0161133 12.4156 0.0161133 7.99963C0.0161133 3.58363 3.58411 0.015625 8.00011 0.015625C12.4161 0.015625 15.9841 3.58363 15.9841 7.99963ZM14.3841 7.91963C14.3841 4.38363 11.5201 1.53562 8.00011 1.53562C4.48011 1.53562 1.61611 4.38363 1.61611 7.91963C1.61611 11.4556 4.48011 14.3036 8.00011 14.3036C11.5201 14.3036 14.3841 11.4556 14.3841 7.91963Z' fill='%23EA0437'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 969px) {
  .footer-site-map__heading-icon {
    display: block;
  }
}

.footer-site-map__column-inner.is-open .footer-site-map__heading-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.784 7.184H12.368L11.312 8.784H3.984V7.984C3.984 7.536 4.352 7.184 4.784 7.184ZM15.968 7.984C15.968 12.4 12.4 15.968 7.984 15.968C3.568 15.968 0 12.4 0 7.984C0 3.568 3.568 0 7.984 0C12.4 0 15.968 3.568 15.968 7.984ZM14.368 7.904C14.368 4.368 11.504 1.52 7.984 1.52C4.464 1.52 1.6 4.368 1.6 7.904C1.6 11.44 4.464 14.288 7.984 14.288C11.504 14.288 14.368 11.44 14.368 7.904Z' fill='%236F6F6F'/%3E%3C/svg%3E");
}



.footer-site-map__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 969px) {
  .footer-site-map__list-wrap {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
}

.footer-site-map__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  padding-left: 16px;
  list-style: none;
}

@media (max-width: 969px) {
  .footer-site-map__list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
    overflow: hidden;
  }
  
  .footer-site-map__column-inner.is-open .footer-site-map__list {
    grid-template-rows: 1fr;
  }
}

.footer-site-map__list li {
  line-height: 1;
}

.footer-site-map__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: calc(12 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  color: var(--color-black);
  transition: color 0.2s ease;
  width: fit-content;
}

@media (hover: hover) {
  .footer-site-map__list a:hover {
    color: var(--color-red);
  }
}
@media (max-width: 969px) {
  .footer-site-map__list a{
    font-size: calc(14 / var(--base-size) * 1rem);
    margin: 0 0 0 16px;
  }
}

.footer-site-map__list--emphasis {
  padding-left: 0;
}

.footer-site-map__list--emphasis a {
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
}

.footer-site-map__list--emphasis a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cg clip-path='url(%23clip0_3877_3568)'%3E%3Cpath d='M8.88889 8.88889H1.11111V1.11111H5V0H1.11111C0.5 0 0 0.5 0 1.11111V8.88889C0 9.5 0.5 10 1.11111 10H8.88889C9.5 10 10 9.5 10 8.88889V5H8.88889V8.88889ZM6.11111 0V1.11111H8.11111L2.66667 6.55556L3.44444 7.33333L8.88889 1.88889V3.88889H10V0H6.11111Z' fill='%23EA0437'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3877_3568'%3E%3Crect width='10' height='10' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-site-map__list a:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-red);
  border-radius: 50%;
  transition: opacity 0.2s ease;
  opacity: 0;
}
@media (hover: hover) {
  .footer-site-map__list a:hover:before {
    opacity: 1;
  }
}
@media (max-width: 969px) {
  .footer-site-map__list a:before {
    content: none;
  }
}

.footer-site-map_buttons {
  border-top: 1px solid var(--color-gray-light);
  padding-top: 40px;
}

@media (max-width: 969px) {
  .footer-site-map_buttons {
    padding-top: 32px;
  }
}

.footer-wrapper {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
}

.footer__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 40px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 969px) {
  .footer__inner {
    padding: 28px 20px;
  }
}

.footer__nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 969px) {
  .footer__nav-list {
    gap: 16px;
  }
}

.footer__nav-item {
  list-style: none;
}

.footer__nav-link {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  font-size: calc(12 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}

.footer__nav-link::before {
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%23fff%22%3e%3cpath%20d%3d%22M77%2e5,50L30%2e8,96%2e8l%2d4%2e6%2d4%2e6c%2d2%2e1%2d2%2d2%2e1%2d5%2e3,0%2d7%2e4L61,50L22%2e5,11%2e5l8%2e3%2d8%2e3L77%2e5,50z%22%2f%3e%3c%2fsvg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  margin-right: 8px;
}

@media (hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.8;
  }
}

.footer__copyright {
  margin: 0;
  font-size: calc(12 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-white);
}

@media (max-width: 969px) {
  .footer__copyright {
    font-size: calc(10 / var(--base-size) * 1rem);
  }
}

/* targetTop */
.targetTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

@media (min-width: 1920px) {
  .targetTop {
    right: max(20px, calc((100vw - 1920px) / 2));
  }
}

.targetTop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 969px) {
  .targetTop {
    bottom: 8px;
    right: 8px;
  }
}


.targetTop__button {
  position: relative;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  background: rgba(113, 118, 130, 0.80);
  box-shadow: 0 1px 4px 0 rgba(0, 20, 50, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.2s ease;
}

@media (hover: hover) {
  .targetTop__button:hover {
    background: rgba(113, 118, 130, 1);
  }
}

@media (max-width: 969px) {
  .targetTop__button {
    width: 44px;
    height: 44px;
  }
}

.targetTop__button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cg clip-path='url(%23clip0_2007_49571)'%3E%3Cpath d='M2.34636 -3.06353e-08L6.35491 4L2.34636 8L1.9532 7.60684C1.78226 7.42735 1.78226 7.15385 1.9532 6.97436L4.93611 4L1.64551 0.709402L2.34636 -3.06353e-08Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2007_49571'%3E%3Crect width='8' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 969px) {
  .targetTop__button::after {
    width: 16px;
    height: 16px;
  }
}

/* container */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 10px;
}

@media (max-width: 969px) {
  .container {
    padding: 0 20px;
  }
}

/* container-inner */
.container-inner {
  padding-bottom: 16px;
}

@media (max-width: 969px) {
  .container-inner {
    padding-bottom: 8px;
  }
}

/* layout-2-col */
.layout-2-col {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(270px, 1fr);
  gap: 40px;
}

@media (max-width: 969px) {
  .layout-2-col {
    grid-template-columns: auto;
    gap: 24px;
  }
}

/* content-section */
.content-section {
  margin-bottom: 64px;
}

@media (max-width: 969px) {
  .content-section {
    margin-bottom: 48px;
  }
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section>:last-child {
  margin-bottom: 0;
}

.content-section .content-section {
  margin-top: 64px;
}

@media (max-width: 969px) {
  .content-section .content-section {
    margin-top: 48px;
  }
}

.content-section__body {
  padding-left: 40px;
  margin-bottom: 40px;
}

@media (max-width: 969px) {
  .content-section__body {
    padding-left: 0;
  }
}

.content-section__body > *:last-child {
  margin-bottom: 0;
}

/* contact-section */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
  border-radius: 8px;
  border: 1px solid var(--color-gray-light);
  padding: 32px;
  max-width: 787px;
  margin-inline: auto;
}

@media (max-width: 969px) {
  .contact-section {
    padding: 24px;
    gap: 24px;
    margin-bottom: 64px;
  }
}

.contact-section__heading {
  font-size: calc(20 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
}

/* breadcrumb */

.footer-breadcrumb {
  background: var(--color-primary-light);
  padding: 24px 0;
}

.footer-breadcrumb__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 10px;
}

@media (max-width: 969px) {
  .footer-breadcrumb__inner {
    padding: 0 20px;
  }
}

.footer-breadcrumb .breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
}

.breadcrumb {
  margin-top: 32px;
  margin-bottom: 64px;
}

@media (max-width: 969px) {
  .breadcrumb {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  font-size: calc(12 / var(--base-size) * 1rem);
  font-family: var(--font-secondary);
  list-style: none;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='6' viewBox='0 0 4 6' fill='none'%3E%3Cpath d='M0.525641%20-5.65996e-08L3.53205%203L0.525641%206L0.230769%205.70513C0.102564%205.57051%200.102564%205.36538%200.230769%205.23077L2.46795%203L-2.39012e-07%200.532051L0.525641%20-5.65996e-08Z' fill='%236F6F6F'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.breadcrumb__link {
  text-decoration: underline;
  color: var(--color-red);
}

@media (hover: hover) {
  .breadcrumb__link:hover {
    text-decoration: none;
  }
}

/* page heading */
.page-heading {
  display: flex;
  flex-direction: column;
  gap: calc(8 / var(--base-size) * 1rem);
  margin-bottom: 48px;
  line-height: 1.5;
}

@media (max-width: 969px) {
  .page-heading {
    margin-bottom: 48px;
  }
}

.page-heading__title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: calc(44 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

@media (max-width: 969px) {
  .page-heading__title {
    font-size: calc(32 / var(--base-size) * 1rem);
  }
}

.page-heading__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(18 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-red);
}

@media (max-width: 969px) {
  .page-heading__subtitle {
    font-size: calc(16 / var(--base-size) * 1rem);
  }
}

/* section heading (h2) */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
  gap: 16px;
}

.section-heading::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--color-red);
  margin-bottom: 25px;
}

.section-heading__title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: calc(32 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

@media (max-width: 969px) {
  .section-heading__title {
    font-size: calc(28 / var(--base-size) * 1rem);
  }
}

.section-heading__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.section-heading__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(16 / var(--base-size) * 1rem);
  line-height: 1.75;
  color: var(--color-black);
}

/* content heading (h3) */
.content-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: calc(24 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

@media (max-width: 969px) {
  .content-heading {
    margin-bottom: 24px;
  }
}

.content-heading::before {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Ccircle cx='4' cy='4' r='4' fill='%23CBCBCB'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.content-heading--compact::before {
  content: none;
}

/* sub heading (h4) */
.sub-heading {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: calc(20 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
  margin-bottom: 24px;
}

@media (max-width: 969px) {
  .sub-heading {
    font-size: calc(18 / var(--base-size) * 1rem);
  }
}

.sub-heading--small {
  font-size: calc(18 / var(--base-size) * 1rem);
  margin-bottom: 16px;
}

@media (max-width: 969px) {
  .sub-heading--small {
    font-size: calc(16 / var(--base-size) * 1rem);
  }
}

.sub-heading--narrow {
  margin-bottom: 16px;
}

.text-heading {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}

.text-heading--xl {
  font-size: calc(44 / var(--base-size) * 1rem);
}

@media (max-width: 969px) {
  .text-heading--xl {
    font-size: calc(32 / var(--base-size) * 1rem);
  }
}

.text-heading--lg {
  font-size: calc(32 / var(--base-size) * 1rem);
}

@media (max-width: 969px) {
  .text-heading--lg {
    font-size: calc(28 / var(--base-size) * 1rem);
  }
}

.text-heading--md {
  font-size: calc(24 / var(--base-size) * 1rem);
}

.text-heading--sm {
  font-size: calc(20 / var(--base-size) * 1rem);
  margin-bottom: 24px;
}

@media (max-width: 969px) {
  .text-heading--sm {
    font-size: calc(18 / var(--base-size) * 1rem);
  }
}

.text-body {
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 32px;
}

@media (max-width: 969px) {
  .text-body {
    margin-bottom: 16px;
  }
}

.text-body--lg {
  font-size: calc(18 / var(--base-size) * 1rem);
}

@media (max-width: 969px) {
  .text-heading--md {
    font-size: calc(16 / var(--base-size) * 1rem);
  }
}

.text-body--md {
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 400;
}

.text-body--sm {
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 400;
}

.text-body--bold {
  font-weight: 700;
}

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

.table__note {
  font-size: calc(12 / var(--base-size) * 1rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 12px;
}

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

.text-caption {
  font-size: calc(12 / var(--base-size) * 1rem);
  font-weight: 400;
  line-height: 1.5;
}

/* list ordered */
.list-ordered {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
  margin: 0;
  margin-bottom: 32px;
}

@media (max-width: 969px) {
  .list-ordered {
    margin-bottom: 24px;
  }
}

.list-ordered__item {
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 400;
  line-height: 1.75;
}

.list-ordered__item--bold {
  font-weight: 700;
}

.list-ordered__text {
  display: block;
  font-weight: 400;
}

/* list unordered */
.list-unordered {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  gap: 8px;
  margin: 0;
  margin-bottom: 32px;
}

@media (max-width: 969px) {
  .list-unordered {
    margin-bottom: 24px;
  }
}

.list-unordered__item {
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 400;
  line-height: 1.75;
}

.list-unordered__item--bold {
  font-weight: 700;
}

/* anchor link list */
.anchor-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  padding: 24px 16px;
  margin: 0;
  border-radius: 4px;
  background: var(--color-white-light);
  margin-bottom: 64px;
}
@media (max-width: 969px) {
  .anchor-link-list {
    margin-bottom: 48px;
    gap: 8px 24px;
  }
}

.anchor-link-list--with-border {
  position: relative;
  margin-bottom: 80px;
}

@media (max-width: 969px) {
  .anchor-link-list--with-border {
    margin-bottom: 64px;
  }
}

.anchor-link-list--with-border:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  height: 1px;
  background-color: var(--color-gray-light);
}

@media (max-width: 969px) {
  .anchor-link-list--with-border:after {
    bottom: -32px;
  }
}

.anchor-link-list__link {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--color-black);
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.anchor-link-list__link::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--color-red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1.13137L1.13137 0L3.76569 2.63432L6.4 0L7.53137 1.13137L3.76569 4.89706L0 1.13137Z' fill='%23EA0437'/%3E%3C/svg%3E");
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
}

/* sitemap hub content */
.sitemap_hub-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, -4.416px + 2.313vw, 40px);
  margin: 80px 0;
}

@media (max-width: 969px) {
  .sitemap_hub-content {
    grid-template-columns: auto;
    gap: 24px;
    margin: 64px 0;
  }
}

.sitemap_hub-content__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 969px) {
  .sitemap_hub-content__item {
    gap: 0;
    transition: gap 0.5s ease;
  }
  
  .sitemap_hub-content__item.is-open {
    gap: 8px;
  }
}

.sitemap_hub-content__link-header {
  text-decoration: none;
}

.sitemap_hub-content__image {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 969px) {
  .sitemap_hub-content__image {
    display: none;
  }
}

.sitemap_hub-content__image img {
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .sitemap_hub-content__link-header:hover .sitemap_hub-content__image img {
    transform: scale(1.05);
  }
}

.sitemap_hub-content__title {
  font-weight: 700;
  font-size: calc(16 / var(--base-size) * 1rem);
  line-height: 1.5;
  transition: color 0.5s ease;
}

.sitemap_hub-content__title-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.5s ease;
  margin-top: 16px;
}

@media (hover: hover) {
  .sitemap_hub-content__link-header:hover .sitemap_hub-content__title-link {
    color: var(--color-red);
  }
}

.sitemap_hub-content__item.is-open .sitemap_hub-content__title-link {
  color: var(--color-gray-dark);
}

@media (max-width: 969px) {
  .sitemap_hub-content__title-link {
    margin-top: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-gray-light);
    justify-content: space-between;
  }
}

@media (max-width: 969px) {
  .sitemap_hub-content__title-link::after {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.80011 7.19963H12.4001L11.3441 8.79963H8.80011V11.9996H7.20011V8.79963H4.00011V7.99963C4.00011 7.55163 4.35211 7.19963 4.80011 7.19963H7.20011V4.79962C7.20011 4.35162 7.55211 3.99962 8.00011 3.99962H8.80011V7.19963ZM15.9841 7.99963C15.9841 12.4156 12.4161 15.9836 8.00011 15.9836C3.58411 15.9836 0.0161133 12.4156 0.0161133 7.99963C0.0161133 3.58363 3.58411 0.015625 8.00011 0.015625C12.4161 0.015625 15.9841 3.58363 15.9841 7.99963ZM14.3841 7.91963C14.3841 4.38363 11.5201 1.53562 8.00011 1.53562C4.48011 1.53562 1.61611 4.38363 1.61611 7.91963C1.61611 11.4556 4.48011 14.3036 8.00011 14.3036C11.5201 14.3036 14.3841 11.4556 14.3841 7.91963Z' fill='%23EA0437'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
  }
  
  .sitemap_hub-content__item.is-open .sitemap_hub-content__title-link::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.784 7.184H12.368L11.312 8.784H3.984V7.984C3.984 7.536 4.352 7.184 4.784 7.184ZM15.968 7.984C15.968 12.4 12.4 15.968 7.984 15.968C3.568 15.968 0 12.4 0 7.984C0 3.568 3.568 0 7.984 0C12.4 0 15.968 3.568 15.968 7.984ZM14.368 7.904C14.368 4.368 11.504 1.52 7.984 1.52C4.464 1.52 1.6 4.368 1.6 7.904C1.6 11.44 4.464 14.288 7.984 14.288C11.504 14.288 14.368 11.44 14.368 7.904Z' fill='%236F6F6F'/%3E%3C/svg%3E");
  }
}

.sitemap_hub-content__title-link-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  transition: background-color 0.5s ease;
}

@media (max-width: 969px) {
  .sitemap_hub-content__title-link-icon {
    display: none;
  }
}

.sitemap_hub-content__title-link-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cg clip-path='url(%23clip0_2007_49571)'%3E%3Cpath d='M2.34636 -3.06353e-08L6.35491 4L2.34636 8L1.9532 7.60684C1.78226 7.42735 1.78226 7.15385 1.9532 6.97436L4.93611 4L1.64551 0.709402L2.34636 -3.06353e-08Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2007_49571'%3E%3Crect width='8' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

@media (hover: hover) {
  .sitemap_hub-content__link-header:hover .sitemap_hub-content__title-link-icon::before {
    opacity: 1;
  }
}

.sitemap_hub-content__title-link-icon::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-red);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  z-index: 5;
}

@media (hover: hover) {
  .sitemap_hub-content__link-header:hover .sitemap_hub-content__title-link-icon::after {
    width: 100%;
    height: 100%;
  }
}

.sitemap_hub-content__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 969px) {
  .sitemap_hub-content__list {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
    overflow: hidden;
  }
  
  .sitemap_hub-content__item.is-open .sitemap_hub-content__list {
    grid-template-rows: 1fr;
  }
}

.sitemap_hub-content__list-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 969px) {
  .sitemap_hub-content__list-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
  }
}

.sitemap_hub-content__list-link {
  display: flex;
  color: var(--color-black);
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

@media (hover: hover) {
  .sitemap_hub-content__list-link:hover {
    color: var(--color-red);
  }
}

.date-label {
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
  letter-spacing: 1.4px;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  font-size: calc(12 / var(--base-size) * 1rem);
  font-weight: 400;
  line-height: 1;
  border-radius: 2px;
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-gray-dark);
}

.tag--disclosure {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
}

.card-button-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
  list-style: none;
}

.card-button-list  .card-button {
  width: 100%;
}

.card-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  color: var(--color-black);
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  text-decoration: none;
  padding: 16px 0;
  min-width: 270px;
  width: fit-content;
  transition: color 0.2s ease;
  border-top: 1px solid var(--color-gray-light);
  transition: color 0.2s ease;
  
}

@media (hover: hover) {
  .card-button:hover {
    color: var(--color-red);
  }
}

.card-button__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 4L10 8L6 12' stroke='%23ea0437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.card-button:before {
  content: "";
  position: absolute;
  inset: 0;
  top: -1px;
  width: 8px;
  height: 2px;
  background-color: var(--color-red);
}

/* button */
.buttons-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

@media (max-width: 969px) {
  .buttons-wrap {
    grid-template-columns: auto;
    gap: 20px;
    margin-bottom: 64px;
  }
}

.buttons-wrap-no-space {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.75;
  background-color: var(--color-white);
  color: var(--color-black);
  min-width: 270px;
  transition: color 0.2s ease;
}

@media (max-width: 969px) {
  .btn {
    padding: 10px 12px;
  }
}

@media (hover: hover) {
  .btn:hover {
    color: var(--color-red);
  }
  
  .btn--green:hover {
    color: var(--color-white);
  }
  
  .btn--red:hover {
    background: var(--color-red-dark);
    color: var(--color-white);
  }
}

.btn--green {
  background-color: var(--color-green-light);
  color: var(--color-white);
}

.btn--red {
  background-color: var(--color-red);
  color: var(--color-white);
  transition: background-color 0.2s ease;
}

.btn--wide {
  min-width: 100%;
}

.btn__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary-light);
  transition: background-color 0.2s ease;
}

.btn__icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cg clip-path='url(%23clip0_2007_49571)'%3E%3Cpath d='M2.34636 -3.06353e-08L6.35491 4L2.34636 8L1.9532 7.60684C1.78226 7.42735 1.78226 7.15385 1.9532 6.97436L4.93611 4L1.64551 0.709402L2.34636 -3.06353e-08Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2007_49571'%3E%3Crect width='8' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.btn__icon::after {
  content: "";
  position: absolute;
  display: inline-block;
  inset: 0;
  margin: auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-red);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  z-index: 5;
}


@media (hover: hover) {
  .btn:hover .btn__icon::before {
    opacity: 1;
  }
  .btn:hover .btn__icon::after {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 969px) {
  .btn .btn__icon::before {
    opacity: 1;
  }
  .btn .btn__icon::after {
    width: 100%;
    height: 100%;
  }
}

.btn__icon--green {
  background-color: var(--color-green-dark);
}

.btn__icon--green::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cg clip-path='url(%23clip0_3244_61688)'%3E%3Cpath d='M2.34636 -3.06353e-08L6.35491 4L2.34636 8L1.9532 7.60684C1.78226 7.42735 1.78226 7.15385 1.9532 6.97436L4.93611 4L1.64551 0.709402L2.34636 -3.06353e-08Z' fill='%236F6F6F'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3244_61688'%3E%3Crect width='8' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.btn__icon--green::after {
  background-color: var(--color-white);
}

@media (hover: hover) {
  .btn:hover .btn__icon--green {
    background-color: var(--color-white);
  }
}

.btn__icon-arrow {
  display: inline-block;
  width: 29px;
  height: 29px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.3155%2011.118L15.803%208.60547L14.9191%209.48935L16.8054%2011.3757H4.8007V12.6257H16.8079L14.9227%2014.5109L15.8066%2015.3948L19.2007%2012.0007L18.3168%2011.1168L18.3155%2011.118Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* btn-select */
.btn-select-wrap {
  position: relative;
  display: inline-block;
}

.btn-select {
  display: inline-block;
  padding: 16px 48px 16px 16px;
  min-width: 270px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-white);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.2s ease;
}

.btn-select:disabled {
  color: var(--color-gray);
  cursor: not-allowed;
}

.btn-select:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

@media (hover: hover) {
  .btn-select:hover {
    color: var(--color-red);
  }
}

.btn-select:disabled + .btn-select__icon {
  background-color: var(--color-gray);
}

.btn-select__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  pointer-events: none;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  padding: 4px 8px;
  background-color: var(--color-primary-light);
  transition: background-color 0.2s ease;
}

.btn-select__icon::after {
  content: "";
  position: absolute;
  display: inline-block;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-red);
  transition: width 0.2s ease, height 0.2s ease;
  z-index: 5;
}

@media (hover: hover) {
  .btn-select-wrap:hover .btn-select__icon::after {
    width: 100%;
    height: 100%;
  }
}

.btn-select__icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.btn-select__icon-item--up::before,
.btn-select__icon-item--up::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 10;
}

.btn-select__icon-item--up::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M3.8147e-06%204.2559L4.24683%200L8.49365%204.2559L8.07623%204.67332C7.88567%204.85481%207.59529%204.85481%207.40472%204.67332L4.24683%201.50635L0.753181%205L3.8147e-06%204.2559Z' fill='%23DE0435'/%3E%3C/svg%3E");
}

.btn-select:disabled + .btn-select__icon .btn-select__icon-item--up::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M3.8147e-06%204.2559L4.24683%200L8.49365%204.2559L8.07623%204.67332C7.88567%204.85481%207.59529%204.85481%207.40472%204.67332L4.24683%201.50635L0.753181%205L3.8147e-06%204.2559Z' fill='%23fff'/%3E%3C/svg%3E");
}

.btn-select__icon-item--up::after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M3.8147e-06%204.2559L4.24683%200L8.49365%204.2559L8.07623%204.67332C7.88567%204.85481%207.59529%204.85481%207.40472%204.67332L4.24683%201.50635L0.753181%205L3.8147e-06%204.2559Z' fill='%23fff'/%3E%3C/svg%3E");
}

@media (hover: hover) {
  .btn-select-wrap:hover .btn-select__icon-item--up::before {
    opacity: 0;
  }
  
  .btn-select-wrap:hover .btn-select__icon-item--up::after {
    opacity: 1;
  }
}

.btn-select__icon-item--down::before,
.btn-select__icon-item--down::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 10;
}

.btn-select__icon-item--down::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M8.49365%200.744102L4.24682%205L0%200.744102L0.417423%200.326679C0.607985%200.145191%200.898367%200.145191%201.08893%200.326679L4.24682%203.49365L7.74047%200L8.49365%200.744102Z' fill='%23DE0435'/%3E%3C/svg%3E");
}

.btn-select:disabled + .btn-select__icon .btn-select__icon-item--down::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M8.49365%200.744102L4.24682%205L0%200.744102L0.417423%200.326679C0.607985%200.145191%200.898367%200.145191%201.08893%200.326679L4.24682%203.49365L7.74047%200L8.49365%200.744102Z' fill='%23fff'/%3E%3C/svg%3E");
}

.btn-select__icon-item--down::after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M8.49365%200.744102L4.24682%205L0%200.744102L0.417423%200.326679C0.607985%200.145191%200.898367%200.145191%201.08893%200.326679L4.24682%203.49365L7.74047%200L8.49365%200.744102Z' fill='%23fff'/%3E%3C/svg%3E");
}

@media (hover: hover) {
  .btn-select-wrap:hover .btn-select__icon-item--down::before {
    opacity: 0;
  }
  
  .btn-select-wrap:hover .btn-select__icon-item--down::after {
    opacity: 1;
  }
}


/* title-link */
.title-link-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.title-link {
  display: inline-block;
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 700;
  text-decoration: none;
  color: var(--color-black);
  transition: color 0.2s ease;
}

@media (max-width: 969px) {
  .title-link {
    display: inline-block;
  }
}

@media (hover: hover) {
  .title-link:hover {
    color: var(--color-red);
  }
  
  .title-link--white:hover {
    color: var(--color-white);
  }
}

.title-link[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cg clip-path='url(%23clip0_3877_3568)'%3E%3Cpath d='M8.88889 8.88889H1.11111V1.11111H5V0H1.11111C0.5 0 0 0.5 0 1.11111V8.88889C0 9.5 0.5 10 1.11111 10H8.88889C9.5 10 10 9.5 10 8.88889V5H8.88889V8.88889ZM6.11111 0V1.11111H8.11111L2.66667 6.55556L3.44444 7.33333L8.88889 1.88889V3.88889H10V0H6.11111Z' fill='%23EA0437'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3877_3568'%3E%3Crect width='10' height='10' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.title-link:has(.title-link-icon)::after {
  content: none;
}

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

.title-link--small {
  font-size: calc(14 / var(--base-size) * 1rem);
}

.title-link-icon {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  transition: background-color 0.2s ease;
}

.title-link-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cg clip-path='url(%23clip0_2007_49571)'%3E%3Cpath d='M2.34636 -3.06353e-08L6.35491 4L2.34636 8L1.9532 7.60684C1.78226 7.42735 1.78226 7.15385 1.9532 6.97436L4.93611 4L1.64551 0.709402L2.34636 -3.06353e-08Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2007_49571'%3E%3Crect width='8' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.title-link-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-red);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  z-index: 5;
}

@media (hover: hover) {
  a:hover .title-link-icon::before {
    opacity: 1;
  }
  a:hover .title-link-icon::after {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 969px) {
  a .title-link-icon::before {
    opacity: 1;
  }
  a .title-link-icon::after {
    width: 100%;
    height: 100%;
  }
}

.title-link-icon-download {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%23ea0437%22%3e%3cpath%20d%3d%22M50,69%2e6l%2d24%2d24l6%2e4%2d6%2e4L45,51%2e8V15c0%2d5%2e5,4%2e5%2d10,10%2d10v46%2e9l12%2e7%2d12%2e7l6%2e4,6%2e4L50,69%2e6z%20M85,50v35H15V50H5v35c0,5%2e5,4%2e5,10,10,10h70c5%2e5,0,10%2d4%2e5,10%2d10V50H85z%22%2f%3e%3c%2fsvg%3e")
}

/* jumbotron */
.jumbotron {
  margin-top: -46px;
  padding-top: 92px;
  background-image: url("/img/corporate/investor_bg_01.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media (max-width: 969px) {
  .jumbotron {
    margin-top: 0;
    padding-top: 48px;
    background-image: url("/img/corporate/investor_bg_01_sp.jpg");
  }
}

.jumbotron__inner {
  max-width: 1220px;
  margin-inline: auto;
  padding: 0 10px;
}

@media (max-width: 969px) {
  .jumbotron__inner {
    padding: 0;
    overflow: hidden;
  }
}

.jumbotron__heading {
  font-size: calc(44 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 24px;
}

@media (max-width: 969px) {
  .jumbotron__heading {
    padding: 0 20px;
    font-size: clamp(32px, 26.949px + 1.347vw, 40px);
  }
}

.jumbotron__heading-sub {
  display: block;
  margin-top: 6px;
  font-size: calc(18 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
}

@media (max-width: 969px) {
  .jumbotron__heading-sub {
    font-size: calc(16 / var(--base-size) * 1rem);  
  }
}

.jumbotron__list {
  margin-bottom: 40px;
}

.jumbotron__list.splide {
  visibility: visible;
}

.jumbotron__list-wrapper {
  display: flex;
  gap: 40px;
}

@media (max-width: 969px) {
  .jumbotron__list-wrapper {
    gap: 0;
  }
}

.jumbotron__list-controls {
  display: flex;
  text-align: center;
}

.jumbotron__list-controls.is-hidden {
  display: none;
}

.jumbotron__list-controls .splide__toggle {
  width: 26px;
  height: 26px;
  border: none;
  background: #f3f3f3;
  box-shadow: -2px -2px 4px 0 rgba(255, 255, 255, 0.25) inset, 2px 2px 4px 0 rgba(0, 20, 50, 0.08) inset;
  cursor: pointer;
}

.jumbotron__list-controls .splide__toggle.is-active .splide__toggle__pause{
  display: flex;
  align-items: center;
  justify-content: center;
}

.jumbotron__list-controls .splide__toggle__pause::before,
.jumbotron__list-controls .splide__toggle__play::before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.jumbotron__list-controls .splide__toggle__pause::before {
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Crect x='1' width='2' height='10' fill='%23EA0437'/%3E%3Crect x='7' width='2' height='10' fill='%23EA0437'/%3E%3C/svg%3E");
}

.jumbotron__list-controls .splide__toggle__play::before {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M9 5L1 9L1 1L9 5Z' fill='%23EA0437'/%3E%3C/svg%3E");
}

@media (min-width: 970px) {
  .jumbotron__list-controls {
    display: none;
  }
  
  .jumbotron__list.splide .splide__track {
    overflow: visible;
  }
  
  .jumbotron__list.splide.is-initialized:not(.is-active) .splide__list {
    display: flex !important;
    gap: 40px;
  }
  
  .jumbotron__list.splide .splide__pagination {
    display: none;
  }
}

.jumbotron__list-controls-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  margin-top: 16px;
}

.jumbotron__list-controls-wrapper .splide__pagination {
  position: relative;
  inset: 0;
  flex-grow: 1;
  gap: 2px;
}

.jumbotron__list.splide .jumbotron__list-controls-inner {
  display: none;
}

@media (max-width: 969px) {
  .jumbotron__list.splide .jumbotron__list-controls-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: flex-end;
    padding-right: 20px;
  }
}

.jumbotron__list.splide .splide__arrow {
  position: relative;
  inset: 0;
  transform: none;
  background: #F3F3F3;
  opacity: 1;
  border-radius: 0;
  width: 26px;
  height: 26px;
  box-shadow: -2px -2px 4px 0 rgba(255, 255, 255, 0.25) inset, 2px 2px 4px 0 rgba(0, 20, 50, 0.08) inset;
}

.jumbotron__list-controls-inner .splide__arrow-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: text-top;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 4L10 8L6 12' stroke='%23ea0437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.jumbotron__list-controls-inner .splide__arrow--prev .splide__arrow-icon {
  transform: rotate(180deg);
}

.jumbotron__list-controls-inner .splide__arrow--next .splide__arrow-icon {
  transform: rotate(0deg);
}

.jumbotron__pagination li {
  flex: 1;
}

.jumbotron__pagination .splide__pagination__page {
  position: relative;
  opacity: 1;
  border-radius: 0;
  width: 100%;
  height: 2px;
  transform: none;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.20);
  z-index: 1;
}

.jumbotron__pagination .splide__pagination__page.is-active {
  background: var(--color-white);
}

.jumbotron__pagination .splide__pagination__page.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--progress-rate, 0) * 100%);
  height: 100%;
  background: var(--color-red);
  z-index: 2;
}

.jumbotron__pagination .splide__pagination__page {
  position: relative;
  overflow: hidden;
}

.jumbotron__pagination .splide__pagination__page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.20);
  transform: scaleX(var(--color-red, 0));
  transform-origin: left;
  transition: transform 0.05s linear;
}

.jumbotron__list-item {
  flex-shrink: 1;
  max-width: 373px;
}

@media (max-width: 969px) {
  .jumbotron__list-item {
    max-width: clamp(335px, 167.702px + 44.613vw, 600px);
    flex-shrink: 0;
  }
}

.jumbotron__list-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
}

@media (hover: hover) {
  .jumbotron__list-link:hover .title-link-icon::before {
    opacity: 1;
  }
  
  .jumbotron__list-link:hover .title-link-icon::after {
    width: 100%;
    height: 100%;
  }
}

.jumbotron__list-image {
  width: 100%;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .jumbotron__list-link:hover .jumbotron__list-image {
    transform: scale(1.05);
  }
}

.jumbotron__list-text {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px 16px 16px;
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .jumbotron__list-link:hover .jumbotron__list-text {
    color: var(--color-red);
  }
}

.jumbotron__news {
  background: rgba(113, 118, 130, 0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.jumbotron__news-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 1220px;
  margin-inline: auto;
  padding: 16px 10px;
}

@media (max-width: 969px) {
  .jumbotron__news-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px 24px;
  }
}

.jumbotron__news-heading {
  font-size: calc(20 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
}

@media (max-width: 969px) {
  .jumbotron__news-heading {
    font-size: calc(18 / var(--base-size) * 1rem);
  }
}

.jumbotron__news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jumbotron__news-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--FONT-text-XS-12, 12px);
  font-weight: 400;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 24px;
  border: 1px solid var(--color-white);
  text-box-trim: trim-both;
  min-width: 76px;
}

.jumbotron__news-text-wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-decoration: none;
  color: var(--color-white);
}

a.jumbotron__news-text-wrapper {
  transition: all 0.2s ease;
}

@media (hover: hover) {
  a.jumbotron__news-text-wrapper:hover {
  color: var(--color-red);

    .jumbotron__news-text.u-icon--self::after{
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 4L10 8L6 12' stroke='%23ea0437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
  }
}

@media (max-width: 969px) {
  .jumbotron__news-text-wrapper{
    flex-direction: column;
  }
}

.jumbotron__news-time {
  font-size: calc(20 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.4px;
}

.jumbotron__news-text {
  font-size: calc(20 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 150%;
}
.jumbotron__news-text.u-icon--self::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 4L10 8L6 12' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

@media (max-width: 969px) {
  .jumbotron__news-text {
    font-size: calc(18 / var(--base-size) * 1rem)
  }
}


/* content-list (IRニュース) */
.content-list {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 80px;
}

@media (max-width: 969px) {
  .content-list {
    padding: 24px;
    margin-bottom: 48px;
  }
}

.content-list--narrow {
  margin-bottom: 40px;
}

.content-list:has(+ .content-list),
.content-list + .content-list {
  margin-bottom: 48px;
}

@media (max-width: 969px) {
  .content-list:has(+ .content-list),
  .content-list + .content-list {
    margin-bottom: 40px;
  }
}

.content-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-gray-light);
  padding-bottom: 24px;
}

@media (max-width: 969px) {
  .content-list__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.content-list__header+.news-list {
  border-top: none;
}

.content-list__header--narrow {
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 969px) {
  .content-list__header--narrow {
    margin-bottom: 24px;
  }
}

.content-list__heading {
  margin: 0;
  font-weight: 700;
  font-size: calc(20 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

.content-list__image {
  margin-bottom: 32px;
}

/* news-list */
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-gray-light);
}

.news-list--wide {
  margin-top: 48px;
}

@media (max-width: 969px) {
  .news-list--wide {
    margin-top: 40px;
  }
}

.news-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

@media (max-width: 969px) {
  .news-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.news-list__item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

/* download-list */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 32px;
}

@media (max-width: 969px) {
  .download-list {
    margin-top: 24px;
  }
}

/* media-list */
.media-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

@media (max-width: 969px) {
  .media-list {
    grid-template-columns: auto;
    gap: 20px;
    margin-bottom: 48px;
  }
}

.media-list__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

@media (max-width: 969px) {
  .media-list__link {
    gap: 12px;
  }
}

@media (hover: hover) {
  .media-list__link:hover .title-link {
    color: var(--color-red);
  }
  
  .media-list__link:hover .title-link-icon::before {
    opacity: 1;
  }
  
  .media-list__link:hover .title-link-icon::after {
    width: 100%;
    height: 100%;
  }
}

.media-list__image {
  overflow: hidden;
}

.media-list__image img {
  transition: transform 0.2s ease;
}

@media (max-width: 969px) {
  .media-list__image img {
    width: 100%;
  }
}

@media (hover: hover) {
  .media-list__link:hover .media-list__image img {
    transform: scale(1.05);
  }
}

/* disclaimer */
.disclaimer {
  margin-bottom: 64px;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-gray-light);
}

@media (max-width: 969px) {
  .disclaimer {
    padding: 24px;
    margin-bottom: 48px;
  }
}

.disclaimer__heading {
  font-size: calc(20 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (max-width: 969px) {
  .disclaimer__heading {
    font-size: calc(18 / var(--base-size) * 1rem);
    margin-bottom: 16px;
  }
}

.disclaimer__text {
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 969px) {
  .disclaimer__text {
    font-size: calc(14 / var(--base-size) * 1rem);
  }
}

/* content-image */
.content-image {
  margin-bottom: 32px;
}

@media (max-width: 969px) {
  .content-image {
    margin-bottom: 24px;
  }
}

.content-image img {
  width: 100%;
}

.content-image__figure {
  display: flex;
  justify-content: center;
}

.content-image--medium img {
  max-width: 787px;
}

.content-image--wide img {
  max-width: 900px;
}

/* content-video */
.content-video {
  margin-bottom: 32px;
  max-width: 1200px;
}

@media (max-width: 969px) {
  .content-video {
    margin-bottom: 24px;
  }
}

/* media */
.media {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 64px;
}

@media (max-width: 969px) {
  .media {
    flex-direction: column;
    margin-bottom: 48px;
  }
}

.media--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 969px) {
  .media--reverse {
    flex-direction: column;
  }
}

@media (max-width: 969px) {
  .media--sp-column-reverse {
    flex-direction: column-reverse;
  }
}

.media__title {
  margin-bottom: 64px;
  font-size: calc(36 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 969px) {
  .media__title {
    margin-bottom: 40px;
    font-size: calc(24 / var(--base-size) * 1rem);
  }
}

.media__content {
  flex: 1;
}

.media__content > *:last-child {
  margin-bottom: 0;
}

.media__image {
  flex-shrink: 0;
  max-width: clamp(400px, 216.211px + 18.947vw, 580px);
}

@media (max-width: 969px) {
  .media__image {
    max-width: 100%;
    margin-inline: auto;
  }
}

.media__image--small {
  max-width: 373px;
}

@media (max-width: 969px) {
  .media__image--small {
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 969px) {
  .has-modal-icon {
    position: relative;
  }
  
  .has-modal-icon::before {
    position: absolute;
    bottom: 8px;
    right: 8px;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_3820_40193)'%3E%3Cpath d='M11.6161 10.192L15.3121 13.888C15.4561 14.016 15.4721 14.224 15.3761 14.384L14.7041 15.408C14.5601 15.616 14.2561 15.648 14.0801 15.472L10.1761 11.568L11.6161 10.192Z' fill='white'/%3E%3Cpath d='M7.1513 5.8487H10.0822L9.22244 7.1513H7.1513V9.75651H5.8487V7.1513H3.24349V6.5C3.24349 6.13527 3.53006 5.8487 3.89479 5.8487H5.8487V3.89479C5.8487 3.53006 6.13527 3.24349 6.5 3.24349H7.1513V5.8487ZM13 6.5C13 10.0952 10.0952 13 6.5 13C2.90481 13 0 10.0952 0 6.5C0 2.90481 2.90481 0 6.5 0C10.0952 0 13 2.90481 13 6.5ZM11 6.43487C11 3.94239 8.9812 1.93487 6.5 1.93487C4.0188 1.93487 2 3.94239 2 6.43487C2 8.92735 4.0188 10.9349 6.5 10.9349C8.9812 10.9349 11 8.92735 11 6.43487Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3820_40193'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
  }
  
  .has-modal-icon::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: rgba(113, 118, 130, 0.80);
    z-index: 1;
  }
}

/* 画像拡大モーダル（SPのみ） */
@media (min-width: 970px) {
  .image-modal {
    display: none !important;
  }
}

@media (max-width: 969px) {
  .image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  
  .image-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  
  .image-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.90);
  }
  
  .image-modal__inner {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-modal__img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .image-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0;
  }
  
  .image-modal__close::before,
  .image-modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .image-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* split */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

@media (max-width: 969px) {
  .split {
    grid-template-columns: auto;
    justify-content: center;
  }
}

.split__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 969px) {
  .split__item {
    gap: 24px;
  }
}

.split__title {
  font-size: calc(24 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
}

/* table */
.table-wrapper {
  margin-bottom: 64px;
}

@media (max-width: 969px) {
  .table-wrapper {
    margin-bottom: 48px;
    overflow-x: auto;
    width: auto;
  }
  .table-wrapper:has(.table) {
    min-width: fit-content;
  }
  .table-wrapper.table-wrapper--not-scroll {
    min-width: auto;
  }
  .table-wrapper .table {
    margin-bottom: 0;
  }
}

.table-wrapper--narrow {
  margin-bottom: 10px;
}

.table-footer {
  margin-bottom: 48px;
}

.table-wrapper--not-scroll .table {
  min-width: auto;
}

.table {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
  word-break: keep-all;
}

@media (max-width: 969px) {
  .table {
    min-width: 1200px;
  }
}

.table--data-grid {
  table-layout: fixed;
}

.table th,
.table td {
  border: 1px solid var(--color-gray-light);
  padding: 16px 24px;
  vertical-align: middle;
  text-align: left;
}

@media (max-width: 969px) {
  .table-wrapper--not-scroll .table th,
  .table-wrapper--not-scroll .table td {
    padding: 14px 10px;
  }
}

.table--data-grid th,
.table--data-grid td {
  text-align: center;
  padding: 10px;
}

.table th {
  background-color: var(--color-white-light);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: calc(14 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

.table th:first-child {
  width: 373px;
}

.table--narrow th:first-child {
  width: 270px;
}

.table--data-grid th:first-child {
  width: 180px;
}

.table--first-col-auto th:first-child {
  width: auto;
}

.table .table__row--header th {
  background-color: var(--color-primary-light);
}

.table__head--nowrap th {
  white-space: nowrap;
}

@media (min-width: 970px) {
  .table--column-auto {
    table-layout: auto;
    width: 100%;
  }
  
  .table--column-auto th:first-child {
    width: auto;
  }
  
  .table__cell--nowrap {
    white-space: nowrap;
  }
  
  .table__cell--wrap {
    white-space: normal;
  }
}

@media (max-width: 969px) {
  .table-wrapper--column-auto .table--column-auto {
    min-width: auto;
    width: max-content;
    max-width: none;
  }
  
  .table--column-auto th:first-child {
    width: auto;
  }
}

.table td {
  background-color: var(--color-white);
  font-weight: 400;
  font-size: calc(14 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

.table td p:last-child {
  margin-bottom: 0;
}

.table__note {
  font-size: calc(12 / var(--base-size) * 1rem);
}


.table .table__cell--emphasize,
.table .table__cell--emphasize p {
  font-weight: 700;
}

.table .table__cell--gray {
  background-color: var(--color-white-light);
}

.table .table__cell--center {
  text-align: center;
}

.table__link {
  color: var(--color-red);
  text-decoration: underline;
}

.table__icon {
  min-width: 16px;
  margin-inline: auto;
}

/* results-table */
.results-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.results-table__year-header th {
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-gray-light);
  padding: 24px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: calc(16 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
  text-align: left;
}

@media (max-width: 969px) {
  .results-table__year-header th {
    display: block;
    padding: 16px;
  }
}

.results-table__period-cell {
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-gray-light);
  padding: 24px;
  vertical-align: middle;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: calc(16 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

@media (max-width: 969px) {
  .results-table__period-cell {
    display: block;
    border-top: none;
    padding: 16px;
  }
}

.results-table__period-text {
  display: inline-block;
}

.results-table__new-badge {
  display: inline-block;
  padding: 4px;
  margin-left: 8px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: calc(12 / var(--base-size) * 1rem);
  line-height: 1;
  white-space: nowrap;
}

.results-table__doc-type-cell {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  padding: 24px;
  vertical-align: middle;
  font-weight: 500;
  font-family: var(--font-secondary);
  font-size: calc(16 / var(--base-size) * 1rem);
  line-height: 1.5;
  color: var(--color-black);
}

@media (max-width: 969px) {
  .results-table__doc-type-cell {
    display: block;
    border-bottom: none;
    border-top: none;
    padding: 16px;
  }
}

.results-table__doc-detail-cell {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  padding: 24px;
}

@media (max-width: 969px) {
  .results-table__doc-detail-cell {
    display: block;
    border-bottom: none;
    padding: 16px;
  }
}


@media (max-width: 969px) {
  .results-table__row {
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-gray-light);
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--color-gray-light-2);
}

@media (max-width: 969px) {
  .feature {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
  }
}

.feature--column {
  flex-direction: column;
  align-items: flex-start;
}

.feature--column .feature__supplement {
  flex-basis: auto;
  width: 100%;
}

.feature:last-child {
  border-bottom: 1px solid var(--color-gray-light-2);
}

.feature--border-bottom-none {
  border-bottom: none;
}

.feature--border-bottom-none:last-child {
  border-bottom: none;
}

.feature__intro {
  flex: 1;
}

.feature__supplement {
  flex-basis: 373px;
  border-radius: 8px;
  border: 1px solid var(--color-gray-light-2);
  padding: 32px;
}

@media (max-width: 969px) {
  .feature__supplement {
    flex-basis: auto;
    padding: 24px 18px;
  }
}

.feature__supplement-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.feature__supplement-title {
  font-weight: 700;
  font-size: calc(20 / var(--base-size) * 1rem);
  line-height: 1.5;
}

@media (max-width: 969px) {
  .feature__supplement-title {
    font-size: calc(18 / var(--base-size) * 1rem);
  }
}

.feature__supplement-date {
  color: var(--color-gray-dark);
  font-size: calc(12 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
}


/* ceo-sign */
.ceo-sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 60px;
}

.ceo-sign__text {
  font-weight: 700;
  font-size: calc(18 / var(--base-size) * 1rem);
  line-height: 1.5;
  text-align: right;
}

/* definition-list（dl 定義リストの共通スタイル） */
.definition-list {
  margin-bottom: 60px;
}

.definition-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 48px;
  margin-top: 60px;
}

@media (max-width: 969px) {
  .definition-list__list {
    flex-direction: column;
    gap: 0;
  }
}

.definition-list__item {
  display: flex;
  border-top: solid 2px rgba(43, 47, 56, 0.05);
  font-size: calc(18 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  padding: 30px 0;
  width: calc(50% - 48px / 2);
}

@media (max-width: 969px) {
  .definition-list__item {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    font-size: calc(14 / var(--base-size) * 1rem);
    padding: 22px 0;
  }
}

.definition-list__item--full {
  width: 100%;
}

.definition-list__item dt {
  color: var(--color-gray-dark);
  flex-basis: 190px;
}

@media (max-width: 969px) {
  .definition-list__item dt {
    flex-basis: auto;
  }
}

/* card-list */
.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 969px) {
  .card-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 969px) {
  .card {
    flex-direction: row;
    gap: 30px;
  }
}

@media (max-width: 969px) {
  .card--column {
    flex-direction: column;
  }
}

.card__img img{
  width: 100%;
}

@media (max-width: 969px) {
  .card__img {
    flex: 1;
    min-width: 140px;
  }
}

.card__title {
  font-size: calc(18 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
}

@media (max-width: 969px) {
  .card__title {
    margin-bottom: 12px;
    font-size: calc(16 / var(--base-size) * 1rem);
  }
}

.card__text {
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-gray-dark);
}

.card__text:last-of-type {
  margin-bottom: 32px;
}

@media (max-width: 969px) {
  .card__text:last-of-type {
    margin-bottom: 16px;
  }
}

.card__body {
  flex: 1;
}

@media (max-width: 969px) {
  .card__body {
    flex: 2;
  }
}

/* financial-checkbox-group */
.financial-checkbox-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.financial-checkbox-group__item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.financial-checkbox-group__item-text {
  position: relative;
  display: flex;
  align-items: center;
  font-size: calc(16 / var(--base-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-gray-dark);
}

.financial-checkbox-group__item-text::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  vertical-align: text-bottom;
  background-color: var(--financial-checkbox-color, #999);
}

.financial-checkbox-group__item--color-pink .financial-checkbox-group__item-text::before {
  background-color: #f8a3b6;
}

.financial-checkbox-group__item--color-rose .financial-checkbox-group__item-text::before {
  background-color: #f35a7c;
}

.financial-checkbox-group__item--color-red .financial-checkbox-group__item-text::before {
  background-color: #ea0437;
}

.financial-checkbox-group__item--color-dark-red .financial-checkbox-group__item-text::before {
  background-color: #b20028;
}

.financial-checkbox-group__item--line .financial-checkbox-group__item-text::before {
  width: 16px;
  height: 2px;
}

.financial-checkbox-group__item--line .financial-checkbox-group__item-text::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
}

.financial-checkbox-group__item--line.financial-checkbox-group__item--color-pink .financial-checkbox-group__item-text::after {
  background-color: #f8a3b6;
}

.financial-checkbox-group__item--line.financial-checkbox-group__item--color-rose .financial-checkbox-group__item-text::after {
  background-color: #f35a7c;
}

.financial-checkbox-group__item--line.financial-checkbox-group__item--color-red .financial-checkbox-group__item-text::after {
  background-color: #ea0437;
}

.financial-checkbox-group__item--line.financial-checkbox-group__item--color-dark-red .financial-checkbox-group__item-text::after {
  background-color: #b20028;
}

.financial-chart-data-table--wide {
  margin-top: 56px;
}

@media (max-width: 969px) {
  .financial-chart-data-table--wide {
    margin-top: 0;
  }
}


/* number-heading */
.number-heading {
  display: flex;
  align-items: center;
  font-size: calc(18 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-red);
  margin-top: 100px;
  margin-bottom: 40px;
}

@media (max-width: 969px) {
  .number-heading {
    font-size: calc(16 / var(--base-size) * 1rem);
    margin-top: 80px;
    margin-bottom: 30px;
  }
}

.number-heading__number {
  display: flex;
  align-items: center;
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
}

.number-heading__number::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 2px;
  margin: 0 16px;
  background-color: var(--color-red);
}

@media (max-width: 969px) {
  .number-heading__number::after {
    margin: 0 8px;
  }
}

/* carousel */

.carousel {
  position: relative;
  padding-bottom: 80px;
}

.carousel:before {
  content: "";
  position: absolute;
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  height: 100%;
  background-color: var(--color-primary-light);
  z-index: -1;
}

.carousel-item {
  display: flex;
  gap: 48px;
}

@media (max-width: 969px) {
  .carousel-item {
    flex-direction: column;
    gap: 36px;
  }
}

.carousel-item__image {
  flex-shrink: 0;
  max-width: clamp(400px, 216.211px + 18.947vw, 580px);
}

@media (max-width: 969px) {
  .carousel-item__image {
    max-width: 100%;
  }
}

.carousel-item__content {
  padding-top: 140px;
}

@media (max-width: 969px) {
  .carousel-item__content {
    padding-top: 0;
  }
}

.carousel-item__title {
  font-size: calc(22 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (max-width: 969px) {
  .carousel-item__title {
    font-size: calc(16 / var(--base-size) * 1rem);
    margin-bottom: 16px;
  }
}

.carousel-item__text {
  font-size: calc(14 / var(--base-size) * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-gray-dark);
}

.carousel__footer {
  position: absolute;
  top: 30px;
  display: flex;
  gap: 48px;
  width: 100%;
  align-items: center;
}

@media (max-width: 969px) {
  .carousel__footer {
    position: static;
    margin-top: 32px;
  }
}

.carousel__footer-spacer {
  flex-shrink: 0;
  width: clamp(400px, 216.211px + 18.947vw, 580px);
  max-width: 100%;
}

@media (max-width: 969px) {
  .carousel__footer-spacer {
    display: none;
  }
}

.carousel__footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.carousel-progress-container {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 240px;
  height: 4px;
  background-color: var(--color-white);
  border-radius: 2px;
  overflow: hidden;
}

.carousel-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background-color: var(--color-red);
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: left;
}

.carousel .splide__pagination {
  position: static;
  margin: 0;
  flex-shrink: 0;
}

.carousel .splide__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.carousel .splide__arrow {
  position: static;
  transform: none;
  width: 60px;
  height: 60px;
  background-color: var(--color-white);
  opacity: 1;
  transition: background-color 0.2s ease;
}

@media (hover: hover) {
  .carousel .splide__arrow:hover {
    background-color: var(--color-red);
  }
}

@media (max-width: 969px) {
  .carousel .splide__arrow {
    width: 40px;
    height: 40px;
  }
}

.carousel .splide__arrow-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: text-top;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 4L10 8L6 12' stroke='%23ea0437' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.carousel .splide__arrow-icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cg clip-path='url(%23clip0_2007_49571)'%3E%3Cpath d='M2.34636 -3.06353e-08L6.35491 4L2.34636 8L1.9532 7.60684C1.78226 7.42735 1.78226 7.15385 1.9532 6.97436L4.93611 4L1.64551 0.709402L2.34636 -3.06353e-08Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2007_49571'%3E%3Crect width='8' height='8' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

@media (hover: hover) {
  .carousel .splide__arrow:hover .splide__arrow-icon::before {
    opacity: 1;
  }
}

.carousel .splide__arrow--prev .splide__arrow-icon {
  transform: rotate(180deg);
}

.carousel .splide__arrow--next .splide__arrow-icon {
  transform: rotate(0deg);
}

/* history-list */
.history-list {
  margin-bottom: 60px;
}

.history-list__container {
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-list__item {
  position: relative;
  display: flex;
}

.history-list__item:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: rgba(43, 47, 56, 0.05);
  left: 0;
  top: 0;
}

.history-list__year {
  position: relative;
  padding: 24px 0 40px;
  padding-left: 20px;
  font-size: calc(24 / var(--base-size) * 1rem);
  color: var(--color-red);
  font-weight: 700;
  line-height: 1.5;
  flex-basis: 190px;
}

@media (max-width: 969px) {
  .history-list__year {
    padding-bottom: 30px;
    flex-basis: 90px;
    font-size: calc(16 / var(--base-size) * 1rem);
  }
}

.history-list__year:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 0;
  top: 50%;
  background-color: var(--color-red);
  margin-top: -1px;
}

.history-list__description {
  flex: 1;
  padding: 22px 0 40px;
  border-top: solid 2px rgba(43, 47, 56, 0.05);
  font-size: calc(18 / var(--base-size) * 1rem);
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 969px) {
  .history-list__description {
    padding-bottom: 30px;
    font-size: calc(12 / var(--base-size) * 1rem);
  }
}
