@charset "UTF-8";
/* scss/main.scss */
/* ブレークポイント（必要に応じて上書き可） */
/* min-width: 指定BP以上 */
/* max-width: 指定BP以下（含む） */
/* min ～ max の間 */
/* エイリアス */
/* <= 1024px */
/* >= 1024px */
/* 補助：hoverが効く環境のみ */
/* scss/_tokens.scss */
/* サイト共通トークン（CSS変数＋SCSS変数の両方定義） */
/* =========================================================
   SCSS Variables（計算用）
   ========================================================= */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}
@font-face {
  font-family: "Local Noto Serif JP";
  src: local("Noto Serif JP"), local("Noto Serif CJK JP Regular");
}
/* =========================================================
   Mixin
   ========================================================= */
/* =========================================================
   CSS Custom Properties（ランタイム参照用）
   ========================================================= */
:root {
  /* color */
  --color-primary: #303a58;
  --color-secondary: #4d5775;
  --color-teal: #096974;
  --color-accent: #913030;
  --color-text: #000000;
  --color-text-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-gray: #e5e5e5;
  --color-bg-blue: #E6E9F3;
  --color-bg-teal: #096974;
  --color-bg-lightteal: #dbeef0;
  --color-bg-icon: #6e7898;
  --color-surface: #F0F0F0;
  --color-muted: #6b7280;
  --color-border: #C0C4CF;
  --color-table-border: #a1a1a1;
  --color-focus: #303a58;
  --color-error: #ec0000;
  /* btn */
  --btn-primary: #303a58;
  --btn-primary-hover: #46547e;
  --btn-secondary: #4d5775;
  --btn-secondary-hover: #4d5775;
  --btn-teal: #096974;
  --btn-teal-hover: #167781;
  --btn-purple: #5e4178;
  --btn-purple-hover: #785397;
  --btn--maroon: #803c3c;
  --btn--maroon-hover: #9e5050;
  --btn-blue: #325788;
  --btn-blue-hover: #3f6ba3;
  --btn-green: #3c6b39;
  --btn-green-hover: #498345;
  --btn-fuchsia: #884067;
  --btn-fuchsia-hover: #9c4a76;
  --btn-surface: #F0F0F0;
  /* space / radius / shadow */
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --radius-md: 8px;
  --radius-xl: 16px;
  --shadow-card: 0 8px 24px rgba(0, 0, 0, .08);
  /* type scale & container */
  --font-family: Local Noto Sans JP, Noto Sans JP, Hiragino Sans, Yu Gothic, Meiryo, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: Local Noto Serif JP, Noto Serif JP, Hiragino Mincho ProN, Yu Mincho, HGS明朝E, MS PMincho, serif;
  --font-size-base: 1.125rem;
  --line-height: 1.6;
  --container-narrow: min(100% - 32px, 880px);
  --container-default: min(100% - 32px, 1120px);
  --container-wide: min(100% - 32px, 1600px);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* scss/main.scss */
/* scss/main.scss */
/* scss/_base.scss */
/* ベース: タイポグラフィ / 画像 / ユーティリティ */
/* ========================================
   Base / 基本設定
   ======================================== */
html,
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font: 1rem/1.6 var(--font-family);
  font-weight: 400;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

a {
  color: var(--color-primary);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

strong {
  font-weight: 500;
}

.c-article p,
.c-article ul,
.c-article ul li {
  margin-inline: 0.25em;
}
.c-article ul li ul {
  margin-top: 0.25em;
}
.c-article ul li:not:last-child {
  margin-bottom: 0.5em;
}

@media (max-width: 992px) {
  main {
    font-size: 0.875rem;
  }
}
/* 視覚的に非表示（スクリーンリーダー向け） */
.u-visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* ========================================
   コンテナ
   ======================================== */
.l-container--narrow {
  width: var(--container-narrow);
  margin-inline: auto;
}

.l-container--default {
  width: var(--container-default);
  margin-inline: auto;
}

.l-container--wide {
  width: var(--container-wide);
  margin-inline: auto;
}

/* ========================================
   ボタン（サイト共通 最小スタイル）
   ======================================== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border: 1px solid var(--color-border);
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  max-width: 540px;
}
.c-btn--primary {
  background: var(--btn-primary);
  border-color: var(--btn-primary);
  color: #fff;
}
@media (hover: hover) {
  .c-btn--primary:hover {
    background: var(--btn-primary-hover);
  }
}
.c-btn--blue {
  background: var(--btn-blue);
  border-color: var(--btn-blue);
  color: #fff;
}
@media (hover: hover) {
  .c-btn--blue:hover {
    background: var(--btn-blue-hover);
  }
}
.c-btn--search {
  border: none;
  color: var(--color-text-white);
  text-indent: -99999px;
  background: url("/img/common/icon-search.svg") no-repeat var(--btn-primary) center center;
  background-size: 26px;
  width: 40px;
  height: 40px;
  gap: 0;
}
@media (hover: hover) {
  .c-btn--search:hover {
    background-color: var(--btn-primary-hover);
  }
}
.c-btn--member {
  border-color: var(--btn-teal);
  color: var(--color-text-white);
  background: url("/img/common/icon-member.svg") no-repeat var(--btn-teal) 0.5em center;
  background-size: 22px 15px;
  padding: 0.4em 0.5em 0.4em 36px;
}
@media (hover: hover) {
  .c-btn--member:hover {
    background-color: var(--btn-teal-hover);
  }
}
.c-btn--logout {
  min-height: clamp(3.5rem, 6vw, 5rem);
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
  font-size: clamp(0.875rem, 1.3vw, 1.125rem);
}
@media (hover: hover) {
  .c-btn--logout:hover {
    background-color: var(--btn-primary-hover);
  }
}
.c-btn--lang {
  background: var(--btn-surface);
  border: none;
  color: var(--color-text);
  padding: 0.5em 1.2em;
  gap: 0;
}
@media (hover: hover) {
  .c-btn--lang:hover {
    background: var(--btn-primary-hover);
    color: var(--color-text-white);
  }
}
@media (max-width: 992px) {
  .c-btn--lang {
    padding: 0.7em;
    min-width: 36px;
  }
}
.c-btn--lang.is-current {
  background: var(--btn-primary);
  color: var(--color-text-white);
}
.c-btn--teal {
  background: var(--btn-teal);
  border-color: var(--btn-teal);
  color: #fff;
}
@media (hover: hover) {
  .c-btn--teal:hover {
    background: var(--btn-teal-hover);
  }
}
.c-btn--green {
  background: var(--btn-green);
  border-color: var(--btn-green);
  color: #fff;
}
@media (hover: hover) {
  .c-btn--green:hover {
    background: var(--btn-green-hover);
  }
}
.c-btn--fuchsia {
  background: var(--btn-fuchsia);
  border-color: var(--btn-fuchsia);
  color: #fff;
}
@media (hover: hover) {
  .c-btn--fuchsia:hover {
    background: var(--btn-fuchsia-hover);
  }
}
.c-btn--outline {
  background: #fff;
  color: var(--color-text);
}
@media (hover: hover) {
  .c-btn--outline:hover {
    background: var(--color-surface);
  }
}
.c-btn--arrow {
  position: relative;
  padding-right: 40px;
}
.c-btn--arrow::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  inline-size: 0.8em;
  block-size: 0.8em;
  border-inline-end: 0.12em solid currentColor;
  border-block-end: 0.12em solid currentColor;
  transform: rotate(-45deg) translate(var(--tx, 0.1em), var(--ty, 0));
  /* 右向きデフォ */
  transition: transform 0.15s ease;
}
.c-btn--back {
  position: relative;
  padding-left: 40px;
}
.c-btn--back::after {
  content: "";
  display: block;
  position: absolute;
  left: 1em;
  inline-size: 0.8em;
  block-size: 0.8em;
  border-inline-end: 0.12em solid currentColor;
  border-block-end: 0.12em solid currentColor;
  transform: rotate(135deg) translate(var(--tx, 0.1em), var(--ty, 0));
  /* 右向きデフォ */
  transition: transform 0.15s ease;
}
.c-btn--block {
  display: flex;
  width: 100%;
}
.c-btn--sm {
  padding: clamp(0.75rem, 2.2vw, 1rem);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
.c-btn--md {
  padding: clamp(0.875rem, 3vw, 1.25rem);
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
}
.c-btn--lg {
  padding: clamp(1rem, 3.5vw, 1.5rem);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}
.c-btn--largeicon img {
  width: 50px;
  height: auto;
}
@media (max-width: 992px) {
  .c-btn--largeicon img {
    width: 32px;
  }
}
.c-btn--middleicon img {
  width: 26px;
  height: auto;
}
@media (max-width: 992px) {
  .c-btn--middleicon img {
    width: 23px;
  }
}
.c-btn--smallicon img {
  width: 18px;
  height: auto;
}
@media (max-width: 992px) {
  .c-btn--smallicon img {
    width: 13px;
  }
}

/* ========================================
   リンクアイコン
   ======================================== */
.c-icon--chenviron {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* アイコンとテキストの間隔 */
  text-decoration: none;
  color: inherit;
}
.c-icon--chenviron::before {
  content: "";
  display: inline-block;
  inline-size: 18px;
  block-size: 18px;
  background: no-repeat center/contain url("/img/common/icon-chenviron.svg");
  vertical-align: -0.2em;
  margin-right: 0.5em;
}
@media (max-width: 992px) {
  .c-icon--chenviron::before {
    inline-size: 13px;
    block-size: 13px;
  }
}

/* pagenation用 */
.c-icon--prev::before {
  content: "";
  display: block;
  position: absolute;
  right: 0.7em;
  inline-size: 0.6em;
  block-size: 0.6em;
  border-inline-end: 0.1em solid currentColor;
  border-block-end: 0.1em solid currentColor;
  transform: rotate(135deg);
  /* 右向きデフォ */
  transition: transform 0.15s ease;
}

.c-icon--next::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.7em;
  inline-size: 0.6em;
  block-size: 0.6em;
  border-inline-end: 0.1em solid currentColor;
  border-block-end: 0.1em solid currentColor;
  transform: rotate(-45deg);
  /* 右向きデフォ */
  transition: transform 0.15s ease;
}

/* ========================================
   ファイルアイコン/外部リンクアイコン
   ======================================== */
.c-filelink {
  display: inline;
}

.c-filelink::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background-color: currentColor;
  -webkit-mask: no-repeat center/contain var(--fileicon);
  mask: no-repeat center/contain var(--fileicon);
  /* ベースライン調整（好みで微調整）*/
  transform: translateY(0.25em);
  text-decoration: none;
}

.c-filelink[href*=".pdf" i]::after {
  background-color: #d61f26;
  --fileicon: url("/img/common/file-earmark-pdf.svg");
}

.c-filelink[href*=".doc" i]::after,
.c-filelink[href*=".docx" i]::after {
  background-color: #2b579a;
  --fileicon: url("/img/common/file-earmark-word.svg");
}

.c-filelink[href*=".xls" i]::after,
.c-filelink[href*=".xlsx" i]::after {
  background-color: #217346;
  --fileicon: url("/img/common/file-earmark-x.svg");
}

.c-filelink[href*=".zip" i]::after {
  background-color: #dd7d00;
  --fileicon: url("/img/common/file-earmark-zip.svg");
}

.c-extlink {
  display: inline;
}

.c-extlink::after {
  content: "";
  display: inline-block;
  /* ←重要：inline で折り返し可能に */
  width: 0.95em;
  height: 0.95em;
  margin-left: 0.25em;
  vertical-align: -0.1em;
  /* ベースライン微調整 */
  background-color: currentColor;
  -webkit-mask: no-repeat center/contain url("/img/common/copy.svg");
  mask: no-repeat center/contain url("/img/common/copy.svg");
}

/* ========================================
   セクション余白ヘルパー
   ======================================== */
.section-pad-sm {
  padding-block: var(--space-md);
}

.section-pad-lg {
  padding-block: var(--space-xl);
}

/* ========================================
   スキップリンク（通常は非表示、フォーカス時に表示）
   ======================================== */
.c-skiplink {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  padding: 0.6rem 0.9rem;
  color: #000;
  text-decoration: none;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  z-index: 2000;
}

.c-skiplink:focus,
.c-skiplink:focus-visible {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ========================================
   固定ヘッダー対策（SPのみ）
   ======================================== */
@media (max-width: 992px) {
  #main-content {
    scroll-margin-top: var(--header-height, 64px);
    outline: none;
  }
}
/* ========================================
   with-sidebar レイアウト（汎用）
   - pc: メイン | サイド（右）
   - sp: 縦積み（サイドは下）
   ======================================== */
.l-container--with-sidebar {
  display: grid;
  /* 既存: clamp(16px, 3vw, 2.5rem) → remで安定化 */
  gap: clamp(1rem, 3vw, 2rem);
}
@media (min-width: 992px) {
  .l-container--with-sidebar {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

.l-container__main {
  min-width: 0;
}

.l-container__side {
  min-width: 0;
}

@media (min-width: 992px) {
  .l-container__main {
    min-height: 500px;
  }
}
/* scss/main.scss */
/* scss/components/_header.scss */
/* ========================================
   Header (PC: ロゴ左肩・2段グリッド)
   ======================================== */
.c-header {
  background: #fff;
  padding-top: 2.5rem;
}

.c-header__bar {
  padding: 0 0 0.5rem;
}

.c-header__grid {
  display: grid;
  grid-template-columns: 24% 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 16px;
  align-items: end;
}

.c-header__logo {
  grid-column: 1/2;
  grid-row: 1/3;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

.c-header__logo img {
  width: 100%;
  max-width: 383px;
}

.c-header__utility {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: flex-end;
  gap: 1rem;
}

.c-header__nav {
  grid-column: 2/3;
  grid-row: 2/3;
}

/* public-home 以外のボーダー */
body:not(.public-home) .c-header {
  border-bottom: 10px solid var(--color-primary);
}

@media (max-width: 992px) {
  body:not(.public-home) .c-header {
    border-bottom-width: 5px;
  }
}
/* ========================================
   Utility
   ======================================== */
.c-topbar__lang-list {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  font-family: var(--font-serif);
}

.c-topbar__search input[type=search] {
  padding: 0.4em 0.75em;
  border: 1px solid var(--color-surface);
  background: var(--color-surface);
  margin-left: -2px;
}

/* SP用会員ボタン（初期は非表示） */
.c-topbar__member--sp {
  display: none;
  width: 45px;
  height: 45px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .c-topbar__lang-list {
    font-size: 0.625rem;
  }
  .c-btn__member--sp {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 45px;
    height: 45px;
    background: url("/img/common/icon-member.svg") no-repeat var(--btn-teal) center 8px;
    background-size: 24px 17px;
    padding-block: 7px;
  }
}
@media (max-width: 992px) and (min-width: 576px) {
  .c-btn__member--sp {
    background-position: center 30%;
    background-size: 28px 20px;
    padding-bottom: 12px;
  }
}
@media (min-width: 576px) {
  .c-topbar__lang-list {
    font-size: 0.875rem;
  }
  .c-btn--lang {
    padding: 0.5em;
    min-width: 40px;
  }
  .c-topbar__member--sp {
    width: 65px;
    height: 65px;
  }
  .c-btn__member--sp {
    width: 65px;
    height: 65px;
  }
  .c-btn__member--sp img {
    width: 55px;
    height: auto;
  }
}
/* ========================================
   Global Nav Toggle（PC非表示 / SP表示）
   ======================================== */
.c-globalnav__toggle {
  display: none;
  /* PCは隠す */
  width: 45px;
  height: 45px;
  padding-block: 7px;
  text-align: center;
  line-height: 1;
  background: var(--color-primary);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

@media (min-width: 576px) {
  .c-globalnav__toggle {
    width: 65px;
    height: 65px;
  }
}
/* glyph */
.c-globalnav__glyph {
  position: relative;
  width: 20px;
  height: 15px;
  margin-top: 1px;
}
@media (min-width: 576px) {
  .c-globalnav__glyph {
    margin-top: 13%;
  }
}

.c-globalnav__glyph .line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-text-white);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.c-globalnav__glyph .l1 {
  top: 0;
}

.c-globalnav__glyph .l2 {
  top: 7px;
}

.c-globalnav__glyph .l3 {
  top: 14px;
}

/* label */
.c-globalnav__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1;
}

.c-globalnav__label img {
  width: 25px;
  height: auto;
}

@media (min-width: 576px) and (max-width: 992px) {
  .c-globalnav__label {
    padding-bottom: 5px;
  }
  .c-globalnav__label img {
    width: 40px;
  }
}
.c-globalnav__label .is-open[hidden] {
  display: none;
}

.c-globalnav__label .is-closed[hidden] {
  display: none;
}

/* 開状態の見た目切り替え（variationをネスト維持） */
.c-globalnav__toggle[aria-expanded=true] .c-globalnav__glyph .l1 {
  transform: translateY(7px) rotate(45deg);
}
.c-globalnav__toggle[aria-expanded=true] .c-globalnav__glyph .l2 {
  opacity: 0;
}
.c-globalnav__toggle[aria-expanded=true] .c-globalnav__glyph .l3 {
  transform: translateY(-7px) rotate(-45deg);
}
.c-globalnav__toggle[aria-expanded=true] .c-globalnav__label .is-closed {
  display: none !important;
}
.c-globalnav__toggle[aria-expanded=true] .c-globalnav__label .is-open {
  display: block !important;
}

/* ========================================
   Global Nav（PC）
   ======================================== */
.c-globalnav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-globalnav__item {
  position: relative;
}

/* 区切り線（擬要素はネスト維持OKだが、読みやすくフラット化も可） */
.c-globalnav__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.5em;
  background: var(--color-border);
  opacity: 0.3;
  position: absolute;
  top: calc(50% - 12px);
  left: -0.5em;
}

.c-globalnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5em;
  padding: 1rem;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color 0.15s ease;
  font-size: clamp(0.85rem, 1.2vw, 1.1875rem);
  line-height: 1.6;
}

.c-globalnav__link br {
  display: none;
}

/* current */
.c-globalnav__link.is-current {
  background: var(--color-primary);
  color: #fff;
}

/* open 状態 */
.c-globalnav__item.is-open > .c-globalnav__link {
  background: var(--color-surface);
}

/* current 最優先（開/ホバー中でも維持） */
.c-globalnav__item.is-open > .c-globalnav__link.is-current {
  background: var(--color-primary);
  color: #fff;
}

@media (min-width: 992px) {
  /* hover/focus 時に子リンクを反転（擬クラスネスト維持） */
}
@media (min-width: 992px) and (hover: hover) {
  .c-globalnav__item:hover .c-globalnav__link, .c-globalnav__item:focus .c-globalnav__link {
    background: var(--color-primary);
    color: #fff;
  }
  .c-globalnav__item:hover > .c-globalnav__link.is-current {
    background: var(--color-primary);
    color: #fff;
  }
}
/* アクセシビリティ用エクスパンドトグル（視覚的には隠す） */
.c-globalnav__expand {
  position: absolute;
  inset: 0 0 auto auto;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

/* Submenu（PC） */
.c-globalnav__submenu {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  display: none;
  min-width: 340px;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow-card);
  z-index: 1000;
}

/* 末尾アイテムのサブメニューは右寄せ（variation） */
.c-globalnav__item.is-last .c-globalnav__submenu {
  left: auto;
  right: 0;
}

/* submenu items */
.c-submenu__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-submenu__link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* アイコンとテキストの間隔 */
  text-decoration: none;
  color: inherit;
}
.c-submenu__link::before {
  content: "";
  display: inline-block;
  inline-size: 18px;
  block-size: 18px;
  background: no-repeat center/contain url("/img/common/icon-chenviron.svg");
  vertical-align: -0.2em;
  margin-right: 0.5em;
}
@media (max-width: 992px) {
  .c-submenu__link::before {
    inline-size: 13px;
    block-size: 13px;
  }
}
.c-submenu__link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color 0.15s ease;
  text-indent: -1.5em;
}

/* 罫線（PC時、2件目以降） */
@media (min-width: 992px) {
  .c-submenu__list li:not(:first-child) .c-submenu__link {
    border-top: 1px solid var(--color-border);
  }
}
/* hover可環境の反転 */
@media (min-width: 992px) and (hover: hover) {
  .c-submenu__link:hover,
  .c-submenu__link:focus {
    background: var(--color-secondary);
    color: var(--color-text-white);
  }
}
@media (min-width: 992px) {
  /* current */
  .c-submenu__link.is-current {
    background: var(--color-primary);
    color: #fff;
  }
  /* クリック固定（PC） */
}
@media (min-width: 992px) and (hover: hover) {
  .c-globalnav__item:hover > .c-globalnav__submenu,
  .c-globalnav__item:focus-within > .c-globalnav__submenu {
    display: block;
  }
}
@media (min-width: 992px) {
  .c-globalnav__item.is-open > .c-globalnav__submenu {
    display: block;
  }
}
/* PCでは非表示のSP用要素 */
.c-globalnav__search--sp,
.c-globalnav__aux--sp,
.c-globalnav__siteinfo--sp {
  display: none;
}

.c-topbar__member {
  margin-bottom: 0;
}

@media screen and (min-width: 993px) and (max-width: 1350px) {
  .c-header {
    padding-top: 1rem;
  }
  .c-globalnav__item:not(:first-child)::before {
    height: 4em;
    top: calc(50% - 32px);
  }
  .c-globalnav__link br {
    display: inline-block;
  }
  .c-globalnav__item {
    flex: 1;
  }
  .c-globalnav__link {
    width: 100%;
    height: 3.5em;
    text-align: center;
  }
}
/* ========================================
   SP 版
   ======================================== */
@media (max-width: 992px) {
  :root {
    --header-height: 55px;
  }
  /* ヘッダー分の余白 */
  main {
    padding-top: var(--header-height);
  }
  .c-header {
    padding-top: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
  }
  .c-header__bar {
    height: var(--header-height);
    padding: 0;
  }
  /* 上段：フレックス1行 */
  .c-header__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* 折返し禁止 */
    gap: 0;
    min-width: 0;
  }
  .c-header__logo {
    width: 50%;
    min-width: 0;
    display: flex;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 0;
  }
  .c-header__logo img {
    max-width: 160px;
    max-height: 44px;
    height: auto;
  }
  .c-header__utility {
    width: 50%;
    min-width: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0;
    flex-wrap: nowrap;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  /* 子要素は横幅を主張しない（縮む） */
  .c-topbar__lang,
  .c-topbar__member--sp,
  .c-globalnav__toggle {
    flex: 0 0 auto;
  }
  .c-topbar__member {
    display: none;
  }
  .c-topbar__member--sp {
    display: inline-flex;
  }
  /* PC検索はSPで隠す／トグルは表示 */
  .c-topbar__search {
    display: none;
  }
  .c-globalnav__toggle {
    display: inline-flex;
  }
  /* メニュー本体（固定） */
  .c-globalnav__list {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - var(--header-height));
    padding: 1rem 1rem 5rem;
    background: #fff;
    overflow: auto;
    z-index: 1000;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: flex-start;
  }
  .c-globalnav__list[aria-hidden=false] {
    display: flex !important;
  }
  .c-globalnav__link {
    padding: 0.5rem 0;
    font-size: 1.125rem;
  }
  .c-globalnav__item {
    position: static;
    width: 100%;
    max-width: 700px;
  }
  .c-globalnav__submenu {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    box-shadow: none;
    min-width: unset;
  }
  .c-submenu__list {
    gap: 0;
    padding-left: 0.5rem;
  }
  .c-submenu__link {
    padding: 0.3rem 1rem;
    vertical-align: middle;
    font-size: 0.875rem;
  }
  .c-globalnav__expand {
    display: none;
  }
  .c-globalnav__aux--sp {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px dashed var(--color-border);
    max-width: 700px;
  }
  .c-globalnav__aux--sp .c-topbar__lang-list {
    margin-right: 0.5rem;
  }
  .c-globalnav__aux--sp .c-btn--lang {
    font-size: 0.75rem;
    width: 40px;
    height: 30px;
  }
  .c-globalnav__aux--sp .c-btn--member {
    font-size: 0.75rem;
    height: 30px;
  }
  .c-globalnav__aux-member {
    margin-bottom: 0;
  }
  .c-globalnav__search--sp {
    display: flex;
    padding-block: 0.25rem 1rem;
    width: 100%;
    max-width: 700px;
    border-bottom: 1px dashed var(--color-border);
  }
  .c-globalnav__search--sp form {
    display: flex;
    align-items: center;
    gap: 0;
    /* 余白はお好みで */
    width: 100%;
  }
  .c-globalnav__search--sp .c-btn--search {
    flex: 0 0 auto;
  }
  .c-globalnav__search--sp input[type=search] {
    display: flex;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-surface);
    background: var(--color-surface);
    font-size: 0.875rem;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }
  .c-globalnav__siteinfo--sp {
    display: block;
    width: 100%;
    max-width: 700px;
  }
  .c-globalnav__siteinfo--list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .c-globalnav__siteinfo--link {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.75rem;
  }
  /* メニュー開中のヘッダー表示調整（variation） */
  html.is-menu-open .c-topbar__lang,
  html.is-menu-open .c-topbar__member,
  html.is-menu-open .c-topbar__member--sp {
    display: none;
  }
  /* トグルを前面に（SP時） */
  .c-globalnav__toggle {
    position: relative;
    z-index: 1100;
  }
  /* CLOSE 表示のCSS切替（JS不動時の保険） */
  .c-globalnav__toggle[aria-expanded=true] .c-globalnav__label .is-closed {
    display: none !important;
  }
  .c-globalnav__toggle[aria-expanded=true] .c-globalnav__label .is-open {
    display: block !important;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  :root {
    --header-height: 80px;
  }
  .c-header__logo img {
    max-width: 223px;
    max-height: 61px;
  }
  .c-header__logo {
    padding-top: 1rem;
  }
}
/* ========================================
   Scroll Lock（メニュー開時）
   ======================================== */
html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

/* scss/main.scss */
/* ========================================
   Footer
   ======================================== */
.c-footer {
  background: var(--color-primary);
  color: var(--color-text-white);
  margin-top: clamp(2rem, 4.5vw, 4rem);
}

/* 内側 */
.c-footer__inner {
  max-width: 1400px;
  display: grid;
  gap: clamp(1.875rem, 6vw, 3.75rem);
  padding-block: clamp(1.5rem, 3.5vw, 3rem) clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 992px) {
  .c-footer__inner {
    gap: 0;
  }
}

/* ① メニュー（グループナビ） */
.c-footer__navgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}
@media (max-width: 992px) {
  .c-footer__navgrid {
    gap: 0;
  }
}
@media (min-width: 768px) {
  .c-footer__navgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .c-footer__navgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* group */
.c-footer__group-title {
  margin: 0 0 clamp(0.5rem, 1.2vw, 0.875rem);
  color: var(--color-text-white);
  font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.c-footer__group-title-link {
  color: var(--color-text-white);
  text-decoration: none;
}
@media (hover: hover) {
  .c-footer__group-title-link:hover, .c-footer__group-title-link:focus {
    text-decoration: underline;
  }
}

.c-footer__group-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
}

.c-footer__group-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* アイコンとテキストの間隔 */
  text-decoration: none;
  color: inherit;
}
.c-footer__group-link::before {
  content: "";
  display: inline-block;
  inline-size: 18px;
  block-size: 18px;
  background: no-repeat center/contain url("/img/common/icon-chenviron.svg");
  vertical-align: -0.2em;
  margin-right: 0.5em;
}
@media (max-width: 992px) {
  .c-footer__group-link::before {
    inline-size: 13px;
    block-size: 13px;
  }
}
.c-footer__group-link {
  display: inline-block;
  padding: 0.2rem 0.25rem;
  color: var(--color-text-white);
  text-decoration: none;
  transition: background-color 0.15s ease;
}
@media (hover: hover) {
  .c-footer__group-link:hover, .c-footer__group-link:focus {
    text-decoration: underline;
  }
}

/* groupのレイアウト調整（媒体別） */
@media (min-width: 992px) {
  .c-footer__group section:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 992px) {
  .c-footer__group section {
    margin-bottom: 0;
  }
  .c-footer__group-list {
    margin-bottom: 1.5rem;
  }
}
/* ② ロゴ */
.c-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px dashed #A4A9B8;
  padding: 2.5rem 0 0;
}
@media (max-width: 992px) {
  .c-footer__logo {
    align-items: flex-start;
  }
}

.c-footer__logo img {
  max-width: 448px;
  height: auto;
}
@media (max-width: 992px) {
  .c-footer__logo img {
    max-width: 195px;
  }
}

/* ③ 住所 */
.c-footer__address {
  color: var(--color-text-white);
  font-style: normal;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .c-footer__address {
    margin-top: 0.75rem;
    text-align: left;
  }
}

/* ④ 補助リンク（個人情報ほか） */
.c-footer__util {
  width: var(--container-wide);
}

.c-footer__util-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .c-footer__util-list {
    gap: 10px;
    margin-bottom: 0;
  }
}

.c-footer__util-list li {
  position: relative;
}
@media (min-width: 992px) {
  .c-footer__util-list li:not(:first-child)::before {
    content: "";
    display: block;
    width: 1px;
    height: 1.2em;
    background: var(--color-text-white);
    opacity: 0.3;
    position: absolute;
    top: calc(50% - 9px);
    left: -9px;
  }
}
@media (max-width: 992px) {
  .c-footer__util-list li {
    flex-basis: calc(50% - 5px);
  }
}

.c-footer__util-link {
  padding: 0.2rem 0.4rem;
  color: var(--color-text-white);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  text-decoration: none;
}
@media (hover: hover) {
  .c-footer__util-link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 992px) {
  .c-footer__util-link {
    padding: 0;
  }
}

/* ⑤ コピーライト + ページトップ（最後） */
.c-footer__bottom {
  background-color: #242C44;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.25rem 0;
}
@media (max-width: 992px) {
  .c-footer__bottom {
    padding: 1rem 0 0;
  }
}

.c-footer__copy {
  color: var(--color-muted);
  font-size: 0.75rem;
  border-top: 1px dashed #A4A9B8;
  width: 100%;
  max-width: 1400px;
  text-align: center;
  padding-top: 2.25rem;
}
@media (max-width: 992px) {
  .c-footer__copy {
    padding-block: 1rem 4rem;
  }
}

/* ページトップ */
.c-footer__pagetop {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 1200;
}
@media (max-width: 992px) {
  .c-footer__pagetop {
    right: auto;
    left: 0;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.c-footer__pagetop {
  /* 初期は非表示 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  /* variation: 表示状態（ネスト維持） */
}
.c-footer__pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.c-footer__pagetop {
  /* 子リンク */
}
.c-footer__pagetop a {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 80px;
  height: 60px;
  text-decoration: none;
  background: #485375;
  color: var(--color-text-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding-top: 1.75rem;
  position: relative;
}
@media (max-width: 992px) {
  .c-footer__pagetop a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 46px;
    padding-top: 0.25rem;
    padding-bottom: 0.6rem;
    gap: 5px;
  }
}
.c-footer__pagetop a {
  /* 擬要素（ネスト維持） */
}
.c-footer__pagetop a::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.2rem;
  left: center;
  inline-size: 0.6em;
  block-size: 0.6em;
  border-inline-end: 0.12em solid currentColor;
  border-block-end: 0.12em solid currentColor;
  transform: rotate(-135deg) translate(var(--tx, 0.1em), var(--ty, 0));
  transition: transform 0.15s ease;
}
@media (max-width: 992px) {
  .c-footer__pagetop a::after {
    position: relative;
    top: 4px;
    left: auto;
  }
}

/* スクロールスムース（未設定なら） */
html {
  scroll-behavior: smooth;
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .c-footer__pagetop {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
/* scss/main.scss */
/* ========================================
   Hero / KV
   ======================================== */
.c-hero {
  position: relative;
  color: var(--color-text);
  height: clamp(420px, 95svh, 750px);
}

/* 背景：親の高さいっぱい。height 指定は削除でOK */
.c-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.c-hero__bgimg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* コンテンツ：親の高さを継承して中央寄せ。height 指定はしない */
.c-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  /* ← 中央寄せ */
  gap: var(--space-xl);
  /* ← 親の min-height を受ける */
  max-width: 1400px;
  min-height: inherit;
  max-height: inherit;
  padding-block: clamp(30px, 6vw, 100px);
}

.c-hero__title {
  margin: 0 0 0.5em;
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  line-height: 1.2;
  font-family: var(--font-serif);
  font-weight: 500;
  /*font-feature-settings: "palt";*/
}

.c-hero__lead {
  display: inline;
  margin: 0 0 1rem;
  padding: 0.15em 0;
  font-size: clamp(0.875rem, 1.8vw, 1.5rem);
  line-height: 1.8;
  box-decoration-break: clone;
}

/* ========== Base（PC想定の既定値） ========== */
.c-hero__banner {
  /* 5:3 を維持。高さ主導でサイズ決定 */
  --banner-h: clamp(180px, 50svh, 320px);
  height: var(--banner-h);
  width: min(90%, 500px, var(--banner-h) * 5 / 3);
  aspect-ratio: 5/3;
  position: relative;
  display: block;
  margin: 0.75rem 0 1.25rem;
  overflow: clip;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}

.c-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ラベルはそのまま */
.c-hero__bannerlabel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 0.6rem;
  color: #fff;
  font-weight: 500;
  font-size: clamp(0.8125rem, 1.3vw, 1.125rem);
  letter-spacing: 0.02em;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
}

.c-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .c-hero {
    min-height: 620px;
    max-height: 720px;
  }
  .c-hero__inner {
    min-height: 620px;
    max-height: 720px;
  }
  .c-hero__bgimg {
    min-height: 620px;
    max-height: 720px;
  }
}
@media (max-width: 992px) {
  .c-hero {
    min-height: 500px;
    max-height: 520px;
    height: clamp(420px, 68svh, 520px);
  }
  .c-hero__inner {
    min-height: 500px;
    max-height: 520px;
    height: clamp(420px, 68svh, 520px);
  }
  .c-hero__bgimg {
    min-height: 500px;
    max-height: 520px;
  }
}
@media (max-width: 992px) {
  .c-hero__banner {
    --banner-h: clamp(200px, 20svh, 320px);
  }
}
/* ========== SP：200 x 200 に固定 ========== */
@media (max-width: 576px) {
  .c-hero__banner {
    --banner-h: initial;
    /* 既定の計算を無効化 */
    width: 200px;
    height: 200px;
    max-width: none;
    aspect-ratio: 1/1;
    /* 念のため */
    /* 中央寄せしたければ：
    margin-left: auto; margin-right: auto; */
  }
}
/* ========================================
   Split (2 Columns)
   ======================================== */
.c-split {
  background: var(--color-primary);
  /* セクション背景 */
  padding-block: clamp(1rem, 3vw, 3.75rem);
}

.c-split__inner {
  max-width: 1400px;
  margin-inline: auto;
}

/* 2カラム：カードを等高に並べる */
.c-split__cols {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

@media (min-width: 992px) {
  .c-split__cols {
    grid-template-columns: 1fr 1fr;
  }
}
/* カード本体（左右共通） */
.c-split__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: clamp(1.125rem, 3vw, 2.5rem) clamp(1.125rem, 3vw, 2.5rem);
  background: #fff;
  /* 白カード */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* タイポ（見出しは明朝指定） */
.c-split__title {
  margin: 0.5rem 0 clamp(1rem, 3vw, 2rem);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.25;
  text-align: center;
}

.c-split__text {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: clamp(0.875rem, 1.6vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.025rem;
}

.c-split__subtitle {
  margin: 0 0 0.5rem;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  text-align: center;
  line-height: 1.6;
  min-height: 1.8em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 992px) {
  .c-split__text {
    height: 5.5em;
  }
  .c-split__subtitle {
    height: 3em;
    display: flex;
    align-items: end;
  }
}
/* ボタン行：幅いっぱい指定のものはそのまま100%表示 */
.c-split__actions {
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .c-split__actions {
    gap: 0.75rem;
  }
}
/* ========================================
   News (list)
   ======================================== */
.c-topics {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}

.c-topics__inner {
  max-width: 1400px;
  margin-inline: auto;
}

.c-topics__title {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1rem, 3.2vw, 1.5rem);
}

.c-topics__eyebrow {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: clamp(1.25rem, 3vw, 3.125rem);
  font-size: clamp(0.6875rem, 1vw, 1.125rem);
}

.c-topics__more {
  text-align: right;
  margin-bottom: 0;
}

.c-topics__morebtn {
  margin-left: auto;
  max-width: 140px;
  font-size: clamp(0.75rem, 1vw, 1rem);
  padding: clamp(0.5rem, 1vw, 0.75rem);
}

@media (max-width: 992px) {
  .c-topics {
    padding-bottom: 1.875rem;
  }
}
/* ========================================
   Pickup
   ======================================== */
.c-pickup {
  padding-block: clamp(1.25rem, 6vw, 3.75rem);
  background: var(--color-bg-gray);
  /* セクション背景 */
}

.c-pickup__inner {
  max-width: 1400px;
  margin-inline: auto;
}

/* カードグリッド：SP=2, md=3, PC=4 */
.c-pickup__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(16px, 3vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .c-pickup__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .c-pickup__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* カード本体 */
.c-pickup__card {
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  /* hoverはコメントアウトのまま維持 */
}

/* リンク */
.c-pickup__link {
  display: block;
  padding: clamp(18px, 3.2vw, 40px) 10px;
  color: inherit;
  text-decoration: none;
}

/* アイコン四角（背景色で差し替え） */
.c-pickup__icon {
  --icon-bg: #333;
  /* default */
  --icon-size: clamp(98px, 12vw, 180px);
  display: grid;
  place-items: center;
  width: var(--icon-size);
  height: var(--icon-size);
  margin: 0 auto clamp(14px, 2.4vw, 18px);
  color: #fff;
  /* SVGは白 */
  background: var(--icon-bg);
}

.c-pickup__icon img {
  width: auto;
  height: clamp(37px, 6vw, 65px);
}

/* ========= バリエーション（ここだけネストを維持） ========= */
.c-pickup__icon--navy {
  --icon-bg: var(--btn-primary);
}
@media (hover: hover) {
  .c-pickup__icon--navy:hover {
    --icon-bg: var(--btn-primary-hover);
  }
}
.c-pickup__icon--teal {
  --icon-bg: var(--btn-teal);
}
@media (hover: hover) {
  .c-pickup__icon--teal:hover {
    --icon-bg: var(--btn-teal-hover);
  }
}
.c-pickup__icon--purple {
  --icon-bg: var(--btn-purple);
}
@media (hover: hover) {
  .c-pickup__icon--purple:hover {
    --icon-bg: var(--btn-purple-hover);
  }
}
.c-pickup__icon--maroon {
  --icon-bg: var(--btn--maroon);
}
@media (hover: hover) {
  .c-pickup__icon--maroon:hover {
    --icon-bg: var(--btn--maroon-hover);
  }
}

/* ========= バリエーション ここまで ========= */
.c-pickup__body {
  text-align: center;
}

.c-pickup__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(0.875rem, 2.6vw, 1.625rem);
}

.c-pickup__desc {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-muted);
  font-size: clamp(0.5rem, 2.6vw, 0.875rem);
}

/* scss/main.scss */
/* ========================================
   Page Head
   ======================================== */
.c-page__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(100px, 12vw, 140px);
  padding: clamp(1.5rem, 1.5vw, 3rem);
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

/* variation: page member */
.c-page--member .c-page__title {
  background-color: var(--color-teal);
}

/* ========================================
   aside
   ======================================== */
.c-aside {
  text-align: center;
}

.c-aside__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(60px, 8vw, 90px);
  margin: 0;
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  text-align: center;
}

.c-aside__title a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  color: var(--color-text-white);
  text-decoration: none;
}

.c-aside__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0;
  text-align: left;
}

.c-aside__item {
  border-bottom: 1px solid var(--color-border);
}

.c-aside__item > a {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.c-aside__list a {
  color: var(--color-text);
  text-decoration: none;
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* アイコンとテキストの間隔 */
  text-decoration: none;
  color: inherit;
}
.c-aside__list a::before {
  content: "";
  display: inline-block;
  inline-size: 18px;
  block-size: 18px;
  background: no-repeat center/contain url("/img/common/icon-chenviron.svg");
  vertical-align: -0.2em;
  margin-right: 0.5em;
}
@media (max-width: 992px) {
  .c-aside__list a::before {
    inline-size: 13px;
    block-size: 13px;
  }
}
.c-aside__list a {
  width: 100%;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  display: inline-flex;
  /* pseudo element (nest) */
}
.c-aside__list a::before {
  flex: 0 0 18px;
}
@media (max-width: 992px) {
  .c-aside__list a::before {
    flex: 0 0 13px;
  }
}

.c-aside__item.is-current > a {
  background-color: var(--color-secondary);
  color: var(--color-text-white);
  border-left: 1px solid var(--color-secondary);
  border-right: 1px solid var(--color-secondary);
}

/* hover (nest) */
@media (hover: hover) {
  .c-aside__item:not(.is-current) a:hover {
    background-color: var(--color-bg-blue);
  }
}
/* variation: 会員専用（nest維持） */
.c-aside--member .c-aside__title {
  background-color: var(--color-teal);
}
.c-aside--member .c-aside__list a::before {
  background: no-repeat center/contain url("/img/common/icon-chenviron-teal.svg");
}
.c-aside--member .c-aside__item.is-current > a {
  background-color: #33868F;
  border-left: 1px solid #33868F;
  border-right: 1px solid #33868F;
}
@media (hover: hover) {
  .c-aside--member .c-aside__item:not(.is-current) a:hover {
    background-color: var(--color-bg-lightteal);
  }
}

/* variation: ネストリスト（nest維持） */
.c-aside__list--nested {
  padding: 0.8rem 1rem;
  background-color: var(--color-surface);
  list-style: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.c-aside__list--nested .c-aside__item {
  border-bottom: none;
}
.c-aside__list--nested .c-aside__item + .c-aside__item {
  margin-top: 10px;
}
.c-aside__list--nested .c-aside__item a {
  background-color: #fff;
  border-left: none;
  border-right: none;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  padding: 0.75rem;
}
.c-aside__list--nested .c-aside__item a::before {
  width: 14px;
  height: 14px;
  background: no-repeat center/contain url("/img/common/icon-chenviron-gray.svg");
}

.c-page--member .c-aside__list--nested .c-aside__item.is-current > a {
  background-color: #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  color: var(--color-text);
}

/* ========================================
   パンくず
   ======================================== */
.c-breadcrumb {
  margin: clamp(1rem, 2vw, 1.875rem) auto clamp(0.75rem, 2.2vw, 1.25rem);
  padding-left: 0;
}

.c-breadcrumb__list {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.c-breadcrumb__item {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.875rem;
  /* sibling + pseudo (nest) */
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "";
  display: inline-block;
  inline-size: 0.6em;
  block-size: 0.6em;
  border-inline-end: 0.1em solid currentColor;
  border-block-end: 0.1em solid currentColor;
  transform: rotate(-45deg) translate(var(--tx, 0.1em), var(--ty, 0));
  transition: transform 0.15s ease;
  margin-right: 0.5rem;
}
.c-breadcrumb__item a {
  color: var(--color-primary);
  /* hover (nest) */
}
@media (hover: hover) {
  .c-breadcrumb__item a:hover {
    text-decoration: underline;
  }
}

/* ========================================
   Pagenation
   ======================================== */
/* Bootstrap 上書き */
.pagination {
  --bs-pagination-bg: var(--color-bg-blue);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
  --bs-pagination-hover-color: var(--color-text-white);
  --bs-pagination-hover-bg: #586384;
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: var(--color-primary);
  --bs-pagination-active-border-color: var(--color-primary);
  --bs-pagination-disabled-color: #888;
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-link {
  color: var(--color-text);
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25em;
}
@media (max-width: 992px) {
  .page-link {
    font-size: 0.75rem;
    width: 30px;
    height: 30px;
  }
}

.page-item.disabled {
  opacity: 0.6;
}

/* ========================================
   下層　インデックスページ
   ======================================== */
.c-index {
  max-width: 1100px;
  margin-inline: auto;
}

.c-index__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.c-article .c-index__list,
.c-article .c-index__item {
  margin-inline: 0;
}

.c-index__link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* アイコンとテキストの間隔 */
  text-decoration: none;
  color: inherit;
}
.c-index__link::before {
  content: "";
  display: inline-block;
  inline-size: 18px;
  block-size: 18px;
  background: no-repeat center/contain url("/img/common/icon-chenviron.svg");
  vertical-align: -0.2em;
  margin-right: 0.5em;
}
@media (max-width: 992px) {
  .c-index__link::before {
    inline-size: 13px;
    block-size: 13px;
  }
}
.c-index__link {
  width: 100%;
  min-height: clamp(60px, 3vw, 80px);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  background-color: var(--color-surface);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  /* hover (nest) */
}
@media (hover: hover) {
  .c-index__link:hover {
    text-decoration: underline;
  }
}

/* variation: ネスト化されたインデックス（nest維持） */
.c-index__list--nested {
  list-style: none;
  margin: 0 0 1rem;
  padding-left: 0;
  margin-bottom: 2rem;
  padding-inline: 1.25rem;
}
.c-index__list--nested .c-index__item {
  border-bottom: 1px solid var(--color-border);
}
.c-index__list--nested .c-index__link {
  min-height: clamp(48px, 3vw, 68px);
  background-color: #fff;
  padding: 0.5rem 0.5rem 0.5rem 0;
  margin-bottom: 0;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}
.c-index__list--nested .c-index__link::before {
  background: no-repeat center/contain url("/img/common/icon-chenviron-gray.svg");
}

/* variation: 会員インデックス（nest維持） */
.c-index--member .c-index__link::before {
  background: no-repeat center/contain url("/img/common/icon-chenviron-teal.svg");
}
.c-index--member .c-index__list--nested .c-index__link::before {
  background: no-repeat center/contain url("/img/common/icon-chenviron-gray.svg");
}

/* ========================================
   下層　詳細ページ
   ======================================== */
.c-article {
  max-width: 1100px;
  margin-inline: auto;
}

/* 見出し */
.c-h2,
.c-article h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90px;
  background-color: var(--color-bg-blue);
  padding: 0.8rem 3rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  line-height: 1.6;
}
@media (max-width: 992px) {
  .c-h2,
  .c-article h2 {
    min-height: 60px;
    padding-inline: 0.8rem;
  }
}

.c-page--member .c-h2,
.c-page--member .c-article h2 {
  background-color: var(--color-bg-lightteal);
}

.c-h3,
.c-article h3:not(.c-h3--withlabel) {
  padding: 0.8rem 1.5rem;
  background-color: var(--color-surface);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  margin-bottom: 0.75rem;
}
@media (max-width: 992px) {
  .c-h3,
  .c-article h3:not(.c-h3--withlabel) {
    padding-inline: 0.8rem;
  }
}

.c-h3--withlabel {
  display: flex;
  align-items: center;
  background-color: var(--color-text-white);
  border: 1px solid var(--color-surface);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  margin-bottom: 1.5rem;
}
.c-h3--withlabel span {
  padding: 0.8rem 1.5rem;
}
@media (max-width: 992px) {
  .c-h3--withlabel span {
    padding: 0.8rem 0.5rem;
  }
}

.c-h3__label {
  background-color: var(--color-primary);
  color: var(--color-text-white);
}
@media (max-width: 992px) {
  .c-h3__label {
    font-size: 0.8125rem;
  }
}

.c-h4,
.c-article h4 {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--color-primary);
  padding-inline: 0.25em;
}

.c-notes {
  font-size: 0.75rem;
}

.c-marker {
  padding-left: 1.1em;
}

.c-marker li {
  margin-bottom: 0.5em;
  list-style-position: outside;
}

.c-marker li::marker {
  color: #C5B6AA;
}

/* table */
/* Bootstrap 上書き */
.table {
  border-color: var(--color-table-border);
}

.c-table:not(.table-bordered) {
  border-top: 1px dashed var(--color-table-border);
}
.c-table:not(.table-bordered) tr {
  border-bottom: 1px dashed var(--color-table-border);
}
.c-table:not(.table-bordered) td,
.c-table:not(.table-bordered) th {
  border-bottom: none;
}

.c-table__th {
  background-color: #bac3e0 !important;
  font-weight: 400;
}

.c-table__th--sub {
  background-color: var(--color-bg-blue) !important;
  font-weight: 400;
}

.c-table__th--vertical {
  background-color: var(--color-bg-blue) !important;
  font-weight: 400;
}

@media (max-width: 992px) {
  .c-table__th--vertical {
    width: 3em;
  }
}
.c-table__th--vertical span {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  white-space: nowrap;
}

.c-table--floors {
  table-layout: fixed;
}

.c-table--floors tr {
  height: 5em;
}

.c-table--floors .c-table__th {
  width: 8em;
}

@media (max-width: 992px) {
  .c-table--floors .c-table__th {
    width: 5em;
  }
}
.c-table--tenant {
  table-layout: fixed;
}

.c-table--tenant tr th {
  font-weight: 400;
  background-color: #bac3e0;
}

@media (max-width: 576px) {
  .c-table--tenant {
    border-top: none !important;
  }
  .c-table--tenant tr {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    border-width: 0;
    border-bottom: 1px dashed var(--color-border);
  }
  .c-table--tenant tr th {
    background-color: #fff;
  }
  .c-table--tenant tr td,
  .c-table--tenant tr th {
    display: block;
    width: 100% !important;
    box-shadow: none;
    border-width: 0;
  }
}
.c-table--fixed {
  table-layout: fixed;
  width: 100%;
}

/* bootstrap modal 部品 */
.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  background-size: contain;
  --bs-btn-close-opacity: 0.8;
  width: 2em;
  height: 2em;
  padding: 0.25em 0 0.25em 0.25em;
  margin-bottom: 0.5em;
}

/*  カラムレイアウト　*/
.c-column .row {
  padding: 1.2em 0.6em;
}

.c-column--gray {
  background-color: var(--color-surface);
  background-image: linear-gradient(-15deg, #e8e8e8 200px, transparent 0);
}

@media (max-width: 992px) {
  .c-column--gray {
    background-image: linear-gradient(-15deg, #e8e8e8 100px, transparent 0);
  }
}
/* 画像キャプション */
.c-figure {
  background-color: var(--color-bg);
  padding: 10px;
}

.c-figure img {
  margin-bottom: 10px;
  margin-inline: auto;
  width: 95%;
  height: auto;
}

.c-figure figcaption {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: clamp(0.6875rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  min-height: 4.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   下層　検索結果
   ======================================== */
.c-result {
  max-width: 1100px;
  margin-inline: auto;
  border-bottom: 1px dashed var(--color-border);
}

.c-result__item {
  padding-block: 1.5rem;
  padding-inline: 0.5em;
  border-top: 1px dashed var(--color-border);
}

.c-result:last-child {
  border-bottom: 1px dashed var(--color-border);
}

.c-result__number {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  padding-left: 0.5em;
}

.c-result__number strong {
  color: var(--color-primary);
}

.c-result__title {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
}

.c-result__details {
  margin-block: 1rem;
}

.c-result__details::after {
  display: block;
  clear: both;
  content: "";
}

.c-result__thumb {
  float: left;
  width: 20%;
  min-width: 80px;
  margin-right: 1rem;
  margin-bottom: 0;
}

.c-result__thumb img {
  border: 1px solid var(--color-border);
  margin-bottom: 0.5em;
}

.c-result__excerpt {
  width: 100%;
  margin-bottom: 0;
}

.c-result__meta {
  margin-bottom: 0.5rem;
}

.c-result__url {
  margin-bottom: 0;
  color: var(--bs-blue);
}

/* ========================================
   下層　サイトマップ
   ======================================== */
.c-sitemap {
  max-width: 1100px;
  margin-inline: auto;
}

.c-sitemap__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  border-bottom: 1px dashed var(--color-border);
}

.c-sitemap__link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* アイコンとテキストの間隔 */
  text-decoration: none;
  color: inherit;
}
.c-sitemap__link::before {
  content: "";
  display: inline-block;
  inline-size: 18px;
  block-size: 18px;
  background: no-repeat center/contain url("/img/common/icon-chenviron.svg");
  vertical-align: -0.2em;
  margin-right: 0.5em;
}
@media (max-width: 992px) {
  .c-sitemap__link::before {
    inline-size: 13px;
    block-size: 13px;
  }
}
.c-sitemap__link {
  width: 100%;
  min-height: clamp(60px, 3vw, 80px);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  text-decoration: none;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  border-top: 1px dashed var(--color-border);
  /* hover (nest) */
}
@media (hover: hover) {
  .c-sitemap__link:hover {
    text-decoration: underline;
  }
}

/* ========================================
   下層　ログイン
   ======================================== */
.c-card {
  max-width: 700px;
  margin-inline: auto;
  padding: 2em 1em 1.5em;
  border: 3px solid var(--color-surface);
}

.c-card__body {
  text-align: center;
}

.c-card__title {
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  margin-bottom: 1em;
}

/* scss/main.scss */
/* ========================================
   News list
   ======================================== */
.c-news__head {
  margin-bottom: clamp(0.625rem, 1.6vw, 1rem);
}

.c-news__list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px dashed var(--color-primary);
  max-width: 1100px;
  margin-inline: auto;
}

.c-topics .c-news__list {
  max-width: inherit;
}

.c-news__item {
  display: grid;
  gap: 0.5rem 1rem;
  padding: 1.5rem 0;
  align-items: center;
  border-top: 1px dashed var(--color-secondary);
  font-size: clamp(0.875rem, 1.3vw, 1rem);
}
.c-news__item > * {
  min-width: 0;
}

@media (max-width: 992px) {
  .c-news__item {
    grid-template-columns: auto 1fr;
    grid-template-areas: "cat  meta" "main main";
  }
  .c-news__cat {
    grid-area: cat;
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  }
  .c-news__meta {
    grid-area: meta;
  }
  .c-news__main {
    grid-area: main;
  }
}
@media (min-width: 992px) {
  .c-news__item {
    grid-template-columns: max-content max-content 1fr;
    column-gap: 2rem;
    align-items: center;
  }
  .c-news__cat,
  .c-news__meta,
  .c-news__main {
    grid-area: auto;
  }
}
.c-news__cat {
  width: 7.4em;
  height: clamp(1.8em, 4vw, 2.4em);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  background: var(--color-primary);
}

.c-news__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.c-news__date {
  color: #6b7280;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.c-news__main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
@media (min-width: 992px) {
  .c-news__main {
    display: block;
  }
}

.c-news__link {
  min-width: 0;
  overflow: hidden;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 992px) {
  .c-news__link {
    white-space: normal;
  }
}
@media (min-width: 992px) {
  .c-news__link {
    display: inline;
  }
}
@media (hover: hover) {
  .c-news__link:hover {
    opacity: 0.85;
  }
}

.c-news__badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  color: #fff;
  font-size: 0.6875rem;
  line-height: 1.1;
  white-space: nowrap;
  background: var(--color-accent);
  text-decoration: none;
}
@media (min-width: 992px) {
  .c-news__badge {
    display: inline;
  }
}

/* ========================================
   News detail
   ======================================== */
.c-newsdetail__title {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: clamp(1rem, 2.2vw, 1.75rem);
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
}

.c-newsdetail__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 2.2vw, 2.5rem);
}

@media print {
  html {
    margin: 0 auto;
    width: 900px;
  }
  body {
    width: 900px;
  }
  .c-header,
  .c-aside,
  .c-footer__inner,
  .c-footer__util {
    display: none;
  }
  .l-container--with-sidebar {
    display: block;
  }
  .c-footer__bottom {
    background-color: #fff;
  }
  .c-footer__copy {
    color: #000;
    border-top: none;
  }
}

/*# sourceMappingURL=main.css.map */
