/* assets/css/common.css */
/* =======================================================================
   Design Tokens
   ======================================================================= */
   
:root {
  /* Layout */
  --container-width: 1000px;
  --bp-sp: 768px;
  --global-header-height: 72px;

  /* Colors */
  --color-brand-1: #22067C;
  /* メインカラー1 */
  --color-accent-2: #1A6EAA;
  /* アクセントカラー2 */
  --color-text: #2F3639;
  /* メインフォントカラー */
  --color-text-sub: #1A6EAA;
  /* サブフォントカラー2 */

  /* Typography */
  --font-base: "BIZ UDPGothic", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", Meiryo, sans-serif;

  /* Spacing */
  --section-pt-pc: 100px;
  --section-pb-pc: 70px;
  --section-pt-sp: 70px;
  --section-pb-sp: 70px;

  /* Headings (h2: セクションタイトル) */
  --h2-size-pc: 40px;
  --h2-size-sp: 30px;
  --h2-weight: 700;
  --h2-color: #1A6EAA;
  --h2-decor-color: #1A6EAA;

  /* Body text (p) */
  --p-size-pc: 18px;
  --p-size-sp: 13px;
  --p-line-height: 1.5;
  --p-color: #2F3639;

  /* Buttons */
  --btn-radius: 14px;
  --btn-bg: #FFFFFF;
  --btn-bg-hover: linear-gradient(120deg, #134e8f 0%, #2493e5 100%);
  --btn-fg: #1A6EAA;
  --btn-fg-hover: #FFFFFF;
  --btn-py: 20px;
  --btn-px: 30px;
  --btn-font-size: 30px;

  /* Links */
  --link-color: #2F3639;
  --link-hover: #1A6EAA;

  /* Etc */
  --breadcrumb-size: 14px;
  --breadcrumb-color: #2F3639;

  /* Borders */
  --border-weak: 1px solid #2F3639;
}

/* =======================================================================
   Base
   ======================================================================= */

/* Skip link is visually hidden until focused, so it stays accessible without overlapping the hero. */
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 16px;
  background: #ffffff;
  color: #1A6EAA;
  border-radius: 6px;
  font-weight: 700;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--p-color);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .header-nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .header-nav {
    top: 46px;
  }
}

html.is-lock-scroll {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: contain;
}

body.is-lock-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  overscroll-behavior: contain;
}


/* Container */
.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 16px;
  /* 端末幅に合わせて少し余白確保 */
}

/* Sections */
.section {
  padding-top: var(--section-pt-pc);
  padding-bottom: var(--section-pb-pc);
}

.placeholder-page {
  background: #f4f8fc;
}

.placeholder-page__header {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(20px, 4vw, 32px);
}

.placeholder-page__title {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: var(--color-accent-2, #1A6EAA);
  letter-spacing: .02em;
}

.placeholder-page__lead {
  margin: 0;
  color: color-mix(in srgb, var(--color-text) 86%, white 14%);
  font-size: clamp(15px, 3.4vw, 18px);
  line-height: 1.8;
}

.placeholder-page__content {
  background: #fff;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 18px 40px rgba(26, 110, 170, 0.08);
  color: color-mix(in srgb, var(--color-text) 88%, white 12%);
  line-height: 1.9;
  font-size: clamp(15px, 3.2vw, 17px);
}

.placeholder-page__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .section {
    padding-top: var(--section-pt-sp);
    padding-bottom: var(--section-pb-sp);
  }
}

/* Section divider: セクション間の境界線 */
.section--with-divider {
  border-bottom: var(--border-weak);
}

/* =======================================================================
   Typography
   ======================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

/* セクションタイトル（h2） */
.section-title {
  color: var(--h2-color);
  font-weight: var(--h2-weight);
  font-size: var(--h2-size-pc);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--h2-decor-color);
  /* 装飾ライン */
}

@media (max-width: 1000px) {
  .section-title {
    font-size: var(--h2-size-sp);
  }
}

/* 本文（p） */
.body-text {
  font-size: var(--p-size-pc);
  line-height: var(--p-line-height);
  color: var(--p-color);
}

@media (max-width: 1000px) {
  .body-text {
    font-size: var(--p-size-sp);
    /* 実運用は16px推奨 */
  }
}

/* =======================================================================
   Links
   ======================================================================= */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

a:hover,
a:focus {
  color: var(--link-hover);
  text-decoration: none;
  text-decoration-color: var(--link-hover);
}

/* =======================================================================
   Buttons
   ======================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--btn-radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--btn-font-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--btn-fg);
  box-shadow: 0 4px 12px rgba(19, 87, 150, 0.14);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--btn-bg-hover);
  color: var(--btn-fg-hover);
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(18, 86, 148, 0.32);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(33, 121, 204, 0.35);
  outline-offset: 4px;
}

/* バリエーション（必要なら） */
/* .btn--outline { background: #fff; color: var(--color-accent-2); border-color: var(--color-accent-2); } */

/* =======================================================================
   Breadcrumbs
   ======================================================================= */
.breadcrumb {
  font-size: var(--breadcrumb-size);
  color: var(--breadcrumb-color);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--breadcrumb-color);
}

.breadcrumb a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.breadcrumb__sep {
  opacity: 0.5;
}

/* =======================================================================
   Utilities
   ======================================================================= */
/* テキスト色ユーティリティ（必要に応じて拡張） */
.text-brand {
  color: var(--color-brand-1) !important;
}

.text-accent {
  color: var(--color-accent-2) !important;
}

.text-sub {
  color: var(--color-text-sub) !important;
}

/* 背景ユーティリティ */
.bg-brand {
  background-color: var(--color-brand-1) !important;
}

.bg-accent {
  background-color: var(--color-accent-2) !important;
}

/* 間隔ユーティリティの例 */
.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* =======================================================================
   Responsive Helpers
   ======================================================================= */
@media (max-width: 1000px) {
  .only-pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

/* ===== Header (desktop first) ==================================== */
:root {
  --header-blue: #1A6EAA;
  /* ナビ帯の色 */
  --brand-navy: #22067C;
  /* ロゴ横コピーの色 */
  --text-base: #2F3639;
  --container: 1000px;
}

/* 全体帯: 背景は青、左だけ白いロゴパネルを差し込む */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* コンテンツより前面に出す */
  /* background: linear-gradient(135deg, rgba(26, 110, 170, 0.82) 0%, rgba(27, 125, 184, 0.65) 100%); */
  background: linear-gradient(135deg, rgba(34, 6, 124, 0.65) 0%, rgba(26, 110, 170, 0.65) 100%);
  color: #fff;
  font-family: "BIZ UDPGothic", sans-serif;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background 0.3s ease, backdrop-filter 0.1s ease;
}

.header-nav.is-menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}



/* 中身レイアウト */
.header-nav__inner {
  max-width: var(--container-width);
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 24px;
}

/* 左ロゴ枠（白背景・固定幅） */
.header-nav__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  padding: 0;
  border-radius: 4px;
}

.header-nav__branding {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  flex: 0 0 auto;
  min-width: 0;
  height: 100%;
}

.header-nav__branding > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

/* 右ナビ */
.header-nav__menu {
  flex: 1 1 auto;
  min-width: 0;
  padding-inline: 12px;
}

.header-nav__menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__item {
  position: relative;
}

.header-nav__link,
.header-nav__contact-link,
.header-nav__login-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 1;
  padding-block: 10px;
  transition: opacity .15s ease, color .15s ease, background-color .15s ease, border-color .15s ease;
}

.header-nav__label {
  display: inline;
  line-height: 1;
}

.header-nav__label--en {
  display: none;
}

.header-nav__link:hover,
.header-nav__link:focus,
.header-nav__contact-link:hover,
.header-nav__contact-link:focus,
.header-nav__login-link:hover,
.header-nav__login-link:focus {
  opacity: .85;
}



/* ログインボタン（白背景・角丸） */
.header-nav__item--login .header-nav__login-link {
  background: #fff;
  color: var(--header-blue);
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid #fff;
}

.header-nav__item--login .header-nav__login-link:hover,
.header-nav__item--login .header-nav__login-link:focus {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.header-nav__item--contact .header-nav__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.header-nav__item--contact .header-nav__contact-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transition: transform .15s ease;
}

.header-nav__item--contact .header-nav__contact-link:hover,
.header-nav__item--contact .header-nav__contact-link:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

@media (min-width: 1001px) {
  .header-nav__link--has-sub {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    min-height: 40px;
    min-width: 120px;
    overflow: hidden;
  }

  .header-nav__link--has-sub .header-nav__label {
    display: block;
    transition: opacity .28s ease, transform .28s ease;
    will-change: opacity, transform;
  }

  .header-nav__link--has-sub .header-nav__label--en {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 40%);
    opacity: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #76eaff;
    pointer-events: none;
    white-space: nowrap;
    max-width: calc(100% - 10px);
    text-align: center;
  }

  .header-nav__link--has-sub::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 28px;
    height: 2px;
    background: #76eaff;
    border-radius: 999px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform .24s ease, opacity .24s ease;
  }

  .header-nav__link--has-sub:is(:hover, :focus-visible) .header-nav__label--ja {
    opacity: 0;
    transform: translateY(-30%);
  }

  .header-nav__link--has-sub:is(:hover, :focus-visible) .header-nav__label--en {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .header-nav__link--has-sub:is(:hover, :focus-visible)::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }

  .header-nav__link--has-sub:focus-visible {
    outline-offset: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-nav__link--has-sub::after,
  .header-nav__link--has-sub .header-nav__label {
    transition-duration: 0.01ms;
  }
}

.header-nav__item--contact .header-nav__contact-link:hover::after,
.header-nav__item--contact .header-nav__contact-link:focus::after {
  transform: translateX(3px) rotate(45deg);
}

.header-nav__home-link {
  display: none;
}

.header-nav__toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0;
  cursor: pointer;
  transition: background .2s ease;
}



.header-nav__toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.header-nav__toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-nav__toggle-line {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease;
}

.header-nav__toggle-line:nth-child(1) {
  top: 15px;
}

.header-nav__toggle-line:nth-child(2) {
  top: 22px;
}

.header-nav__toggle-line:nth-child(3) {
  top: 29px;
}

.header-nav.is-menu-open .header-nav__toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header-nav.is-menu-open .header-nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.header-nav.is-menu-open .header-nav__toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


.header-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 58, 99, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  display: none;
  z-index: 900;
}

.header-nav.is-menu-open .header-nav__backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Responsive (≤1000px) ====================================== */
@media (max-width: 1000px) {
  .header-nav__backdrop {
    display: none;
  }

  .header-nav.is-menu-open .header-nav__backdrop {
    display: block;
  }

  .header-nav__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
  }

  .header-nav__branding {
    display: flex;
    align-items: center;
    padding-left: 5px;
    position: relative;
    z-index: 1101;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .header-nav__logo {
    height: 35px;
    padding: 0;
    border-radius: 4px;
  }

  .header-nav__toggle {
    display: block;
    z-index: 1101;
    background: transparent;
    justify-self: end;
    align-self: start;
    grid-column: 2;
    grid-row: 1;
    border-radius: 0;
    border: 0;
    pointer-events: auto;
  }

  .header-nav__menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    /* background: #1A6EAA; */
    background: linear-gradient(135deg, rgba(34, 6, 124, 0.65) 0%, rgba(26, 110, 170, 0.65) 100%);
    backdrop-filter: blur(6px);
    padding: calc(72px + 32px) 20px 56px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 100vh;
    will-change: transform;
    z-index: 1100;
    transform: translateY(-100%);
    transition: transform .35s ease;
    overflow-y: auto;
    pointer-events: none;
    grid-column: 1 / -1;
  }

  .header-nav.is-menu-open .header-nav__menu {
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-nav__menu-list {
    flex-direction: column;
    gap: 0;
  }

  .header-nav__menu-list > .header-nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    display: flex;
  }

  .header-nav__menu-list > .header-nav__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.45);
  }

  .header-nav__link,
  .header-nav__contact-link,
  .header-nav__login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: clamp(17px, 5vw, 20px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.4;
    padding: clamp(20px, 4.8vw, 24px) 24px;
  }

  .header-nav__link:focus-visible,
  .header-nav__contact-link:focus-visible,
  .header-nav__login-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
  }

  .header-nav__link:hover,
  .header-nav__link:focus,
  .header-nav__contact-link:hover,
  .header-nav__contact-link:focus,
  .header-nav__login-link:hover,
  .header-nav__login-link:focus {
    background: rgba(255, 255, 255, 0.08);
  }

  .header-nav__item--login .header-nav__login-link {
    background: transparent;
    border: 0;
    padding: 18px 0;
    border-radius: 0;
    font-size: clamp(17px, 5vw, 20px);
    color: #fff;
  }

  .header-nav__item--login {
    width: 100%;
  }

  .header-nav__home-link {
    display: block;
  }

  .header-nav__backdrop {
    background: rgba(6, 47, 85, 0.6);
    z-index: 1005;
  }

  .header-nav__toggle-line {
    left: 10px;
    right: 10px;
    height: 3px;
  }

  .header-nav.is-menu-open .header-nav__toggle {
    background: transparent;
  }

  .header-nav.is-menu-open .header-nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header-nav.is-menu-open .header-nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 1001px) {
  .header-nav__toggle,
  .header-nav__backdrop {
    display: none !important;
    pointer-events: none !important;
  }
}

/* ===== Footer =============================================== */
.FOOTER {
  background: #3F3F41;
  /* ダークグレーに変更 */
  color: #fff;
  font-family: "BIZ UDPGothic", sans-serif;
  padding: 40px 0 20px;
}

.footer-main {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

/* ロゴ */
.footer-info img.logo {
  width: 120px;
  height: auto;
  display: block;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
}

/* ナビ */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__list--secondary {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-nav__item {
  display: flex;
}

.footer-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-nav__link:hover,
.footer-nav__link:focus {
  opacity: 0.75;
}

.footer-nav__link--external::after,
.footer-nav__link--login::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-nav__link--external::after {
  background-image: url('../img/global/icons/outlink.svg');
}

.footer-nav__link--login::after {
  background-image: url('../img/global/icons/inlink.svg');
}


/* コピーライト */
.COPYRIGHT {
  background: #3F3F41;
  /* 同じ色で統一 */
  text-align: center;
  padding: 12px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /* 仕切り代わりに薄いライン */
}

.COPYRIGHT .p {
  margin: 0;
  font-size: 12px;
  color: #fff;
}

/* ===== Responsive =========================================== */
@media (max-width: 1000px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav__list {
    justify-content: center;
  }

  .footer-info img.logo {
    margin-bottom: 12px;
  }
}

/* ===== Section Head (共通) ==================================== */
/* コンテナ内で使うタイトル塊：h2 + 英字サブ + リード */
.section-head {
  margin-bottom: 56px;
}

.section-head .section-title {
  margin-bottom: 12px;
}

/* h2 と英字の間 */
.head-en {
  margin: 0 0 20px;
  color: var(--color-accent-2);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: clamp(14px, 2.2vw, 18px);
}

.head-lead {
  margin: 0 0 40px;
  font-size: var(--p-size-pc);
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
}

/* ===== Component: Detail Definition (Outline) ================= */
.info-block {
  background: #f3f3f3;
  padding-top: var(--section-pt-pc);
  padding-bottom: var(--section-pb-pc);
}

@media (max-width: 768px) {
  .info-block {
    padding-top: var(--section-pt-sp);
    padding-bottom: var(--section-pb-sp);
  }
}

.info-block__head {
  margin-bottom: 48px;
}

.info-block__head .section-title {
  margin-bottom: 12px;
}

.info-block__headEn {
  margin: 0 0 20px;
  color: var(--color-accent-2);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: clamp(14px, 2.2vw, 18px);
}

.info-block__lead {
  margin: 0 0 40px;
  font-size: var(--p-size-pc);
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
}

.info-block__list {
  margin: 0;
}

.info-block__row {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  align-items: start;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 18%, transparent);
}

.info-block__row:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 18%, transparent);
}

.info-block__term {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-text);
}

.info-block__termMark {
  width: 10px;
  height: 18px;
  background: var(--color-accent-2);
  border-radius: 2px;
  flex: 0 0 auto;
}

.info-block__desc {
  margin: 0;
  font-size: var(--p-size-pc);
  line-height: var(--p-line-height);
  color: var(--color-text);
  white-space: normal;
}

@media (max-width: 768px) {
  .info-block__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .info-block__desc {
    font-size: max(16px, var(--p-size-sp));
  }
}

/* 互換エイリアス（既存のco-head/re-headなども統一） */
.co-head,
.re-head {
  margin-bottom: 48px;
}

.co-head .section-title,
.re-head .section-title {
  margin-bottom: 12px;
}

.co-head__en,
.re-head__en {
  margin: 0 0 20px;
  color: var(--color-accent-2);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: clamp(14px, 2.2vw, 18px);
}

.co-lead {
  margin: 0 0 40px;
  font-size: var(--p-size-pc);
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
}

/* ===== Field Label (表/説明ブロックのラベル) =================== */
.field-label {
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-accent-2);
}

/* 互換エイリアス（既存のloc-labelなども吸収） */
.loc-label {
  font: inherit;
}

/* リセットしてから */
.loc-label,
.co-term>span,
.info-block__term>span {
  /* 住所/アクセスなどの見出しにも適用 */
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 700;
  color: var(--color-accent-2);
}

/* ===========================
   Component: Contact CTA
   =========================== */

.contact-cta {
  padding: 100px 0;
  text-align: center;
}

/* 背景バリエーション */
.contact-cta--white {
  background: #fff;
}

.contact-cta--gray {
  background: #f3f3f3;
}

/* 幅・レイアウト */
.contact-cta__inner {
  max-width: min(1000px, 92vw);
  margin-inline: auto;
}

.contact-cta__title {
  margin-bottom: 50px;
  font-size: 40px;
}

.contact-cta__lead {
  margin: 0;
  color: var(--color-text);
  max-width: 800px;
  margin-inline: auto;
}

/* ボタン */
.contact-cta__actions {
  margin-top: 50px;
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 25px 50px;
  border-radius: 999px;
  letter-spacing: .18em;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  background: var(--color-accent-2, #1A6EAA);
  color: #fff;
  border: 2px solid var(--color-accent-2, #1A6EAA);
  transition: transform .08s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}

.contact-cta__btn:hover,
.contact-cta__btn:focus {
  background: #fff;
  color: var(--color-accent-2, #1A6EAA);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  text-decoration: none;
}

.contact-cta__icon {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .contact-cta__actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }

  .contact-cta__btn {
    gap: 18px;
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  .contact-cta__icon {
    width: 36px;
    height: 36px;
  }
}


/* 追加バリエーション */
.contact-cta--compact {
  padding-top: 32px;
  padding-bottom: 40px;
}

/* 余白小さめ */
.contact-cta--left {
  text-align: left;
}

/* 左寄せ版 */

.local-tabs {
  margin: 24px 0;
}

.local-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.local-tabs__link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #1A6EAA;
  border-radius: 999px;
  color: #1A6EAA;
  text-decoration: none;
}

.local-tabs__link:hover,
.local-tabs__link[aria-current="true"] {
  background: #1A6EAA;
  color: #fff;
}

/*パンくずリスト*/

.breadcrumb {
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.breadcrumb__list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__list li::after {
  content: "›";
  margin-left: 0.5rem;
}
.breadcrumb__list li:last-child::after {
  content: "";
}

.subhero__inner {
  padding-top: calc(var(--subhero-inner-padding-top, 0px) + var(--global-header-height, 72px));
  padding-bottom: var(--subhero-inner-padding-bottom, 0px);
}

.subhero.subhero--has-image {
  padding-bottom: 0;
}

.subhero__title-ja {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.15;
  color: var(--color-text);
}

.subhero__title-en {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 24px);
  letter-spacing: .18em;
  color: var(--color-accent-2);
  font-weight: 700;
  text-transform: uppercase;
}






