@charset "UTF-8";
/* =========================================
  Imports（@use ではなく @import で統一）
========================================= */
/* =========================
  Color Variables
========================= */
/* =========================
  Base Colors
========================= */
/* =========================
  Breakpoints（max-width）
========================= */
/* =========================
  Layout
========================= */
/* =========================
  Container
========================= */
/* reset.css - 2025 モダンバージョン */
/* ===========================
   ボックスサイズを全体に適用
============================= */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ===========================
   マージン・パディングをゼロ
============================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* ===========================
   HTML5 display
============================= */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* ===========================
   リストのスタイルをリセット
============================= */
ol, ul {
  list-style: none;
}

/* ===========================
   引用タグのデフォルトをリセット
============================= */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
}

/* ===========================
   テーブル
============================= */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===========================
   フォーム要素
============================= */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ===========================
   画像
============================= */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: 100%;
}

/* ===========================
   強調タグ
============================= */
strong {
  font-weight: bold;
}

/* ===========================
   リンク
============================= */
a {
  color: inherit;
  text-decoration: none;
}

/* =========================================
  Base
========================================= */
html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #323232;
  background-color: #fff;
}

main {
  background-color: #fff;
}

.sectionBg {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .sectionBg {
    padding: 40px 0;
  }
}
@media (max-width: 468px) {
  .sectionBg {
    padding: 20px 0;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

.font-mincho {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝", serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================================
  Opening states
========================================= */
/* 初期：ロゴ表示 */
body.is-opening .site-header {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}
body.is-opening .hero__title,
body.is-opening .hero__lead {
  opacity: 0;
  transform: translateY(18px);
}

/* ロゴフェードアウト中 */
body.is-logo-out .hero__logo-layer {
  opacity: 0;
}

/* メインビジュアル表示（300px） */
body.is-visual-in .hero__bg-img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ★ここで全画面スケール */
body.is-scaling .hero__bg-img {
  transform: translate(-50%, -50%) scale(var(--hero-scale));
}

/* 完了状態 */
body.is-opened .site-header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: auto;
}
body.is-opened .hero__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
body.is-opened .hero__lead {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

/* =========================================
  Header
========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }
}
@media (max-width: 468px) {
  .site-header {
    height: 52px;
  }
}
.site-header__inner {
  max-width: 1240px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}
.site-header__logo {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  .site-header__logo {
    height: 34px;
  }
}
@media (max-width: 468px) {
  .site-header__logo {
    height: 28px;
  }
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__list {
  display: flex;
  gap: 18px;
}
.site-header__list li.is-active {
  border-bottom: 1px solid #030065;
}
.site-header__link {
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
.site-header__link:hover {
  opacity: 0.75;
}
.site-header__link--cta {
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #030065;
  color: #fff;
  font-weight: 700;
}
.site-header__toggle {
  display: none;
}
@media (max-width: 768px) {
  .site-header__toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
  }
}
.site-header__toggle-line {
  width: 22px;
  height: 2px;
  background: #323232;
  border-radius: 2px;
}

/* =========================================
  Hero
========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  padding-top: 72px;
  overflow: hidden;
  /* ---------- ロゴレイヤー ---------- */
  /* ---------- メイン画像 ---------- */
}
@media (max-width: 768px) {
  .hero {
    padding-top: 64px;
    min-height: 540px;
  }
}
.hero__logo-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.8s ease;
}
.hero__logo {
  width: 180px;
}
.hero__bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  opacity: 0;
  /* 初期は scale(1) */
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  will-change: transform;
  transition: opacity 0.8s ease, transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
}
.hero__inner {
  position: relative;
  z-index: 5;
  height: calc(100% - 24px);
  display: flex;
  align-items: flex-end;
}
.hero__content {
  max-width: 1240px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
}
@media (max-width: 1112px) {
  .hero__content {
    grid-template-columns: 1fr 1.35fr;
  }
}
@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
}
.hero__title {
  font-size: clamp(1.875rem, 1.266rem + 1.27vw, 2.375rem);
  line-height: clamp(3.125rem, 1.982rem + 2.38vw, 4.063rem);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.hero__lead {
  font-size: 14px;
  line-height: 1.9;
  padding: 0 clamp(0.313rem, -0.83rem + 2.38vw, 1.25rem);
}
.hero__lead p {
  margin: 0;
  font-size: clamp(0.875rem, 0.723rem + 0.32vw, 1rem);
}
@media (max-width: 468px) {
  .hero__lead p br {
    display: none;
  }
}

/* =========================================
  Utility
========================================= */
.u-bg-gray {
  background: #F8F8F8;
}

.u-bg-lightblue {
  background: #F2F2F7;
}

.u-color-main {
  color: #030065;
}

/* =========================================
  Reduced motion
========================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
/* =========================================
  Banner Section
========================================= */
.banner-section__inner {
  max-width: 1240px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.banner-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .banner-section__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================================
  Banner Card
========================================= */
.banner-card {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  /* 好みで影は調整OK */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.6s;
  /* 画像の上に載せるテキスト */
  /* 右下の Read more */
  /* ホバー */
}
.banner-card:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.banner-card__img {
  width: 100%;
  height: 18vw;
  display: block;
  max-height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .banner-card__img {
    height: clamp(7.5rem, 5.539rem + 6.69vw, 8.75rem);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.banner-card__content {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  color: #0b0b0b;
  max-width: 70%;
}
.banner-card__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #030065;
}
.banner-card__title {
  display: block;
  font-size: clamp(1rem, 0.695rem + 0.63vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 6px;
  /* 文字の白帯っぽさ（画像に合わせて） */
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .banner-card__title {
    font-size: clamp(0.875rem, 0.679rem + 0.67vw, 1rem);
    padding: 0 8px;
  }
}
.banner-card__text {
  display: block;
  font-size: clamp(1rem, 0.695rem + 0.63vw, 1.25rem);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .banner-card__text {
    font-size: clamp(0.875rem, 0.679rem + 0.67vw, 1rem);
    padding: 0 8px;
  }
}
.banner-card__more {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.banner-card:hover {
  opacity: 0.92;
}
@media (max-width: 468px) {
  .banner-card__content {
    left: 14px;
    top: 12px;
    max-width: 82%;
  }
  .banner-card__title {
    font-size: 18px;
  }
}
@media (max-width: 468px) and (max-width: 768px) {
  .banner-card__title {
    font-size: clamp(0.75rem, 0.162rem + 2.01vw, 1.125rem);
  }
}
@media (max-width: 468px) {
  .banner-card__text {
    font-size: 14px;
  }
}
@media (max-width: 468px) and (max-width: 768px) {
  .banner-card__text {
    font-size: clamp(0.75rem, 0.162rem + 2.01vw, 1.125rem);
  }
}

/* =========================================
  Opening fullscreen (hero can be anywhere)
========================================= */
body.is-opening {
  /* オープニング中はスクロール禁止 */
  overflow: hidden;
  /* フッターなどが透けないようにする場合 */
}
body.is-opening .hero {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  padding-top: 0; /* header分不要（headerは非表示） */
  z-index: 9999;
}
body.is-opening .hero__logo-layer {
  background: #fff;
}

/* オープニング終了後は通常レイアウトに戻す */
body.is-opened {
  overflow: auto;
}
body.is-opened .hero {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  padding-top: 72px;
}
@media (max-width: 768px) {
  body.is-opened .hero {
    padding-top: 64px;
    min-height: 540px;
  }
}

/* =========================================
  Opening White Cover
========================================= */
.opening-cover {
  position: fixed;
  inset: 0;
  z-index: 10000; /* heroより上 */
  background: #fff;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* オープニング中は必ず表示 */
body.is-opening .opening-cover {
  opacity: 1;
}

/* オープニング開始と同時に消す */
body.is-opening-started .opening-cover {
  opacity: 0;
}

/* 完全終了後はDOM的にも見えない */
body.is-opened .opening-cover {
  opacity: 0;
  visibility: hidden;
}

/* ロゴ→画像切替の瞬間に下が透けないようにする */
body.is-opening .hero {
  background: #fff; /* ここが重要 */
}

/* =========================================
  Scroll Fade In
========================================= */
/* 初期状態（共通） */
.js-fade {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* 下から上 */
.fade-up {
  transform: translateY(24px);
}

/* 右から左 */
.fade-right {
  transform: translateX(24px);
}

/* 左から右 */
.fade-left {
  transform: translateX(-24px);
}

/* 表示状態 */
.js-fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* 低モーション設定 */
@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* =========================================
  News
========================================= */
.news {
  padding: 72px 0;
  /* 両端の角（画像のような装飾） */
  /* 白いカード */
}
.news__inner {
  max-width: 969px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.news__head {
  position: relative;
  text-align: center;
  margin-bottom: 26px;
  padding: 18px 0 10px;
}
.news__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.036rem + 0.63vw, 1.625rem);
  letter-spacing: 0.08em;
  color: #323232;
}
.news__corner {
  position: absolute;
  top: 0;
  width: 40px;
  height: 28px;
  /* L字：横線 */
  /* L字：縦線 */
}
.news__corner::before, .news__corner::after {
  content: "";
  position: absolute;
  background: #030065;
}
.news__corner::before {
  width: 28px;
  height: 2px;
  top: 0;
  left: 0;
}
.news__corner::after {
  width: 2px;
  height: 28px;
  top: 0;
  left: 0;
}
.news__corner--left {
  left: 0;
  transform: translateY(2px);
}
.news__corner--right {
  right: 0;
  transform: translateY(2px) scaleX(-1);
}
.news__box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  padding: 20px 26px;
}
.news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news__item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.news__item:first-child {
  border-top: 0;
}
.news__link {
  display: grid;
  grid-template-columns: 110px 110px 1fr;
  align-items: center;
  -moz-column-gap: 18px;
       column-gap: 18px;
  padding: 18px 6px;
  color: #323232;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.news__link:hover {
  opacity: 0.78;
}
.news__date {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.news__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  background: #030065;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.news__text {
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .news {
    padding: 56px 0;
  }
  .news__box {
    padding: 14px 14px;
    border-radius: 16px;
  }
  .news__link {
    grid-template-columns: 92px 96px 1fr;
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding: 14px 4px;
  }
  .news__text {
    font-size: 14px;
  }
}
@media (max-width: 468px) {
  .news__link {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 10px;
    padding: 14px 4px;
  }
  .news__badge {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
  }
  .news__text {
    grid-column: 1/-1;
  }
}

/* =========================================
  Fade-up stagger（連続表示）
  ※ .js-fade / .fade-up / .is-show の基本CSSは既存を使用
========================================= */
.news__item.js-fade:nth-child(1) {
  transition-delay: 0s;
}
.news__item.js-fade:nth-child(2) {
  transition-delay: 0.08s;
}
.news__item.js-fade:nth-child(3) {
  transition-delay: 0.16s;
}
.news__item.js-fade:nth-child(4) {
  transition-delay: 0.24s;
}
.news__item.js-fade:nth-child(5) {
  transition-delay: 0.32s;
}

/* =========================================
  Footer
========================================= */
.site-footer {
  background: #F8F8F8; /* #F8F8F8 */
  padding: 34px 0 28px;
  color: #323232;
}
.site-footer__inner {
  max-width: 1240px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: flex-end;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-footer__logo {
  height: 40px;
  width: auto;
  display: block;
}
.site-footer__address {
  margin: 14px 0 0;
  font-style: normal;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(50, 50, 50, 0.92);
}
.site-footer__org {
  font-weight: 700;
}
.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  min-width: min(44vw, 520px);
}
.site-footer__cta {
  width: 100%;
  max-width: 330px;
  height: 64px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  color: #323232;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.25s ease, opacity 0.25s ease;
}
.site-footer__cta:hover {
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.9;
}
.site-footer__cta-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.site-footer__cta-arrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}
.site-footer__copy {
  font-size: 12px;
  color: rgba(50, 50, 50, 0.7);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 58px 0 24px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer__right {
    align-items: flex-start;
    min-width: 0;
  }
  .site-footer__cta {
    width: 100%;
    height: 58px;
  }
}

/* =========================================
  Page Head
========================================= */
.page-head {
  padding: 142px 0 62px;
  text-align: center;
}
.page-head__inner {
  max-width: 1240px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.page-head__title {
  margin: 0;
  font-size: clamp(1.625rem, 1.345rem + 0.82vw, 2.125rem);
  letter-spacing: 0.08em;
  color: #323232;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-head__title {
    font-size: clamp(1.375rem, 0.983rem + 1.34vw, 1.625rem);
  }
}
.page-head__sub {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(50, 50, 50, 0.7);
}
.page-head__rule {
  border: 0;
  border-top: 1px solid rgba(3, 0, 101, 0.7);
  margin: 0;
}
@media (max-width: 768px) {
  .page-head {
    padding: 52px 0 28px;
  }
}
@media (max-width: 468px) {
  .page-head {
    padding: 82px 0 28px;
  }
}

/* =========================================
  Grant
========================================= */
.grant {
  padding: 64px 0 84px;
  /* 角付きの見出し枠 */
}
.grant__inner {
  max-width: 1087px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.grant__head {
  text-align: center;
  margin-bottom: 52px;
}
.grant__catch {
  margin: 0 0 18px;
  font-size: clamp(1.625rem, 1.168rem + 0.95vw, 2rem);
  letter-spacing: 0.06em;
  color: #323232;
}
@media (max-width: 768px) {
  .grant__catch {
    font-size: clamp(1.25rem, 0.662rem + 2.01vw, 1.625rem);
  }
}
.grant__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 32px;
  padding: 10px 0;
  width: 100%;
}
.grant__frame-title {
  font-size: clamp(1.25rem, 1.036rem + 0.63vw, 1.625rem);
  letter-spacing: 0.12em;
  color: #323232;
}
@media (max-width: 768px) {
  .grant__frame-title {
    font-size: clamp(1.125rem, 0.929rem + 0.67vw, 1.25rem);
  }
}
.grant__corner {
  width: 46px;
  height: 26px;
  position: relative;
  /* 横線 */
  /* 縦線 */
}
.grant__corner::before, .grant__corner::after {
  content: "";
  position: absolute;
  background: #030065;
}
.grant__corner::before {
  width: 28px;
  height: 2px;
  top: 0;
  left: 0;
}
.grant__corner::after {
  width: 2px;
  height: 26px;
  top: 0;
  left: 0;
}
.grant__corner--right {
  transform: scaleX(-1);
}
.grant__lead {
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  line-height: 2;
  color: rgba(50, 50, 50, 0.88);
}
.grant__divider {
  border: 0;
  border-top: 1px solid rgba(3, 0, 101, 0.55);
  margin: 28px 0;
}
@media (max-width: 768px) {
  .grant {
    padding: 52px 0 72px;
  }
  .grant__lead {
    text-align: left;
    line-height: 1.9;
  }
  .grant__divider {
    margin: 22px 0;
  }
}

/* =========================================
  Grant Block
========================================= */
.grant-block__title {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #323232;
}
.grant-block__num {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: #030065;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  transform: translateY(-1px);
}
.grant-block__list {
  margin: 0;
  padding: 0;
  color: rgba(50, 50, 50, 0.9);
  font-size: 16px;
  line-height: 1.95;
  padding-left: 15px;
}
.grant-block__item {
  margin: 0;
  list-style: disc;
}
.grant-block__subhead {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #323232;
}
.grant-block__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(50, 50, 50, 0.9);
}
.grant-block__text + .grant-block__text {
  margin-top: 10px;
}
.grant-block__link {
  color: #030065;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.grant-block__link:hover {
  opacity: 0.75;
}

/* =========================================
  Scholarship
  ※ page-head は grant と共通（既存を利用）
========================================= */
.scholar {
  padding: 64px 0 84px;
  /* 角付きの見出し枠（grantと同じ思想） */
}
.scholar__inner {
  max-width: 1087px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.scholar__head {
  text-align: center;
  margin-bottom: 52px;
}
.scholar__catch {
  margin: 0 0 18px;
  font-size: clamp(1.625rem, 1.168rem + 0.95vw, 2rem);
  letter-spacing: 0.06em;
  color: #323232;
}
@media (max-width: 768px) {
  .scholar__catch {
    font-size: clamp(1.25rem, 0.662rem + 2.01vw, 1.625rem);
  }
}
.scholar__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 32px;
  padding: 10px 0;
  width: 100%;
}
.scholar__frame-title {
  font-size: clamp(1.25rem, 1.036rem + 0.63vw, 1.625rem);
  letter-spacing: 0.08em;
  color: #323232;
}
@media (max-width: 768px) {
  .scholar__frame-title {
    font-size: clamp(1.125rem, 0.929rem + 0.67vw, 1.25rem);
  }
}
.scholar__corner {
  width: 46px;
  height: 26px;
  position: relative;
}
.scholar__corner::before, .scholar__corner::after {
  content: "";
  position: absolute;
  background: #030065;
}
.scholar__corner::before {
  width: 28px;
  height: 2px;
  top: 0;
  left: 0;
}
.scholar__corner::after {
  width: 2px;
  height: 26px;
  top: 0;
  left: 0;
}
.scholar__corner--right {
  transform: scaleX(-1);
}
.scholar__lead {
  margin: 0 auto 14px;
  text-align: left;
  font-size: 16px;
  line-height: 2;
  color: rgba(50, 50, 50, 0.88);
}
.scholar__intro {
  margin: 0 auto;
  text-align: left;
}
.scholar__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: rgba(50, 50, 50, 0.88);
}
.scholar__divider {
  border: 0;
  border-top: 1px solid #030065;
  margin: 28px 0;
}
@media (max-width: 768px) {
  .scholar {
    padding: 52px 0 72px;
  }
  .scholar__divider {
    margin: 22px 0;
  }
}

/* =========================================
  Scholarship Block
========================================= */
.scholar-block__title {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #323232;
}
.scholar-block__num {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: #030065;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  transform: translateY(-1px);
}
.scholar-block__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: rgba(50, 50, 50, 0.9);
}
.scholar-block__small {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(50, 50, 50, 0.72);
}
.scholar-block__small a {
  color: #030065;
  text-decoration: underline;
}
.scholar-block__note {
  margin: 12px 0 0;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: rgba(50, 50, 50, 0.75);
}

/* =========================================
  Scholarship Table（左カラム薄い青）
========================================= */
.scholar-table {
  margin-top: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.scholar-table__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.scholar-table__row:first-child {
  border-top: 0;
}
.scholar-table__th {
  background: #F2F2F7; /* #F2F2F7 */
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(50, 50, 50, 0.86);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.scholar-table__td {
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(50, 50, 50, 0.9);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .scholar-table__row {
    grid-template-columns: 140px 1fr;
  }
}
@media (max-width: 468px) {
  .scholar-table__row {
    grid-template-columns: 1fr;
  }
  .scholar-table__th {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* =========================================
  About Page Wrapper
========================================= */
.about {
  padding: 0 0 90px;
}
.about__inner {
  max-width: 1087px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .about {
    padding: 44px 0 72px;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: auto;
  }
}

/* =========================================
  設立趣旨（上：画像 + 右に枠付きボックス）
========================================= */
.about-aim {
  background-color: #F2F2F7;
}
.about-aim__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 0;
}
.about-aim__media {
  background: #fff;
  padding: 0;
}
.about-aim__img {
  width: 100%;
  height: auto;
  display: block;
}
.about-aim__panel {
  background: #fff;
  border: 2px solid #030065; /* #030065 */
  padding: 34px 34px;
  margin-left: -70px; /* 画像に被せる */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.about-aim__title {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: #323232;
}
@media (max-width: 768px) {
  .about-aim__title {
    font-size: 20px;
  }
}
.about-aim__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: rgba(50, 50, 50, 0.86);
}
@media (max-width: 1112px) {
  .about-aim__panel {
    margin-left: -54px;
  }
}
@media (max-width: 768px) {
  .about-aim {
    margin-bottom: 54px;
  }
  .about-aim__grid {
    grid-template-columns: 1fr;
  }
  .about-aim__panel {
    margin-left: 0;
    margin-top: -28px; /* 下で少し重ねる */
    padding: 26px 20px;
  }
}

/* =========================================
  事業内容（3カラムカード）
========================================= */
.about-business {
  background-color: #F2F2F7;
  /* 角飾り */
}
.about-business__head {
  position: relative;
  text-align: center;
  margin-bottom: 26px;
  padding: 18px 0 10px;
}
.about-business__title {
  color: #323232;
  font-size: clamp(1.25rem, 1.036rem + 0.63vw, 1.625rem);
  letter-spacing: 0.12em;
}
.about-business__corner {
  position: absolute;
  top: 0;
  width: 44px;
  height: 28px;
}
.about-business__corner::before, .about-business__corner::after {
  content: "";
  position: absolute;
  background: #030065;
}
.about-business__corner::before {
  width: 28px;
  height: 2px;
  top: 0;
  left: 0;
}
.about-business__corner::after {
  width: 2px;
  height: 28px;
  top: 0;
  left: 0;
}
.about-business__corner--left {
  left: 0;
  transform: translateY(2px);
}
.about-business__corner--right {
  right: 0;
  transform: translateY(2px) scaleX(-1);
}
.about-business__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
@media (max-width: 768px) {
  .about-business {
    margin-bottom: 60px;
  }
  .about-business__list {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* 事業カード */
.biz-card {
  background: transparent;
}
.biz-card__media {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}
.biz-card__img {
  width: 100%;
  aspect-ratio: 7/8;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.biz-card__body {
  padding-top: 14px;
}
.biz-card__num {
  margin: 0;
  font-size: 52px;
  line-height: 1;
  position: relative;
}
.biz-card__num::before {
  height: 1px;
  width: 75%;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #000;
}
.biz-card__line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(50, 50, 50, 0.22);
  margin: 12px 0 10px;
}
.biz-card__text {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

/* =========================================
  財団概要（タイトル + 表）
========================================= */
.about-profile {
  /* 角括弧っぽい見出し */
}
.about-profile__head {
  position: relative;
  margin-bottom: 18px;
}
.about-profile__title {
  position: relative;
  text-align: center;
  margin-bottom: 26px;
  padding: 18px 0 10px;
}
.about-profile__title::before, .about-profile__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid #030065;
  border-left: 1px solid #030065;
  transform: translateY(-50%);
}
.about-profile__title::before {
  left: -8px;
}
.about-profile__title::after {
  right: -8px;
  transform: translateY(-50%) rotate(180deg);
}
.about-profile__table-wrap {
  background: #fff;
  border-radius: 0;
}

/* 概要テーブル */
.about-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.about-table__th, .about-table__td {
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.85;
  vertical-align: middle;
  color: rgba(50, 50, 50, 0.9);
}
.about-table__th {
  width: 180px;
  background: #F2F2F7; /* #F2F2F7 */
  font-weight: 700;
  white-space: nowrap;
  text-align: left;
  font-weight: 400;
}
.about-table__link {
  color: #030065;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-table__link:hover {
  opacity: 0.75;
}
.about-table__org {
  display: grid;
  gap: 6px;
}
.about-table__org-row {
  margin: 0;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
}
.about-table__org-row span.post {
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-align: left;
}
.about-table__map {
  display: grid;
  gap: 10px;
  align-items: start;
}
.about-table__map-img {
  width: 100%;
  height: auto;
  display: block;
}
.about-table__map-link {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #030065;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-table__map-link:hover {
  opacity: 0.75;
}
@media (max-width: 768px) {
  .about-table__th {
    width: 140px;
  }
}
@media (max-width: 468px) {
  .about-table__th, .about-table__td {
    display: block;
    width: 100%;
  }
  .about-table__th {
    border-bottom: 0;
  }
  .about-table__td {
    border-top: 0;
  }
}

.contact-form {
  padding: 80px 0;
  background: #fff;
}
.contact-form__inner {
  max-width: 969px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form__title {
  text-align: center;
  margin-bottom: 32px;
}

.faq {
  padding: 64px 0;
  background-color: #F2F2F7;
}
.faq__inner {
  max-width: 969px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.faq__title {
  text-align: center;
  margin-bottom: 32px;
}
.faq__list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
@media (max-width: 768px) {
  .faq {
    padding: 56px 0 72px;
  }
  .faq__list {
    margin-top: 18px;
    gap: 12px;
  }
}

/* =========================================
  FAQ Item（details/summary）
========================================= */
.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
  /* summaryのデフォルトマーカーを消す */
  /* 右端の＋/－アイコン（CSSだけで） */
  /* open時（＋ → －） */
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}
.faq-item__q {
  list-style: none;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-item__q:focus-visible {
  outline: 2px solid rgba(3, 0, 101, 0.4);
  outline-offset: 2px;
}
.faq-item__q-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #030065;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.faq-item__q-text {
  font-size: 14px;
  font-weight: 700;
  color: #323232;
  line-height: 1.6;
}
.faq-item__icon {
  width: 18px;
  height: 18px;
  position: relative;
  justify-self: end;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #030065;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__a {
  padding: 0 18px 18px;
}
.faq-item__a-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item__a-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(3, 0, 101, 0.12);
  color: #030065;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.faq-item__a-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(50, 50, 50, 0.88);
}
.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}
@media (max-width: 468px) {
  .faq-item__q {
    padding: 16px 14px;
    grid-template-columns: 32px 1fr 18px;
    gap: 10px;
  }
  .faq-item__a {
    padding: 0 14px 16px;
  }
  .faq-item__a-row {
    grid-template-columns: 32px 1fr;
    gap: 10px;
  }
}

/* =========================================
  News Categories
========================================= */
.news__categories {
  margin-bottom: 20px;
}
.news__categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news__categories-link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #323232;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.news__categories-link:hover {
  background: #030065;
  color: #fff;
  border-color: #030065;
}
.news__categories-link.is-active {
  background: #030065;
  color: #fff;
  border-color: #030065;
  pointer-events: none;
}
@media (max-width: 468px) {
  .news__categories {
    margin-bottom: 16px;
  }
  .news__categories-link {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }
}
.news__pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.news__pagination-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news__pagination-link {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: #323232;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.news__pagination-link:hover {
  background: #030065;
  color: #fff;
  border-color: #030065;
}
.news__pagination-link.is-active {
  background: #030065;
  color: #fff;
  border-color: #030065;
  pointer-events: none;
}
.news__pagination-link--prev, .news__pagination-link--next {
  padding: 0 14px;
  font-weight: 600;
}
@media (max-width: 468px) {
  .news__pagination {
    margin-top: 22px;
  }
  .news__pagination-link {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* =========================================
  News Detail
========================================= */
.news-detail {
  background: #F2F2F7;
  padding: 60px 0 90px;
  /* breadcrumb */
  /* prev/next pager */
}
.news-detail__inner {
  max-width: 1240px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}
.news-detail__breadcrumb {
  margin-bottom: 16px;
}
.news-detail__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(50, 50, 50, 0.7);
}
.news-detail__breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.news-detail__breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: rgba(50, 50, 50, 0.35);
}
.news-detail__breadcrumb-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-detail__breadcrumb-link:hover {
  opacity: 0.75;
}
.news-detail__pager {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.news-detail__pager-link {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 16px 16px;
  display: grid;
  gap: 8px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.news-detail__pager-link:hover {
  border-color: rgba(3, 0, 101, 0.45);
  transform: translateY(-1px);
}
.news-detail__pager-link--prev {
  text-align: left;
}
.news-detail__pager-link--next {
  text-align: left;
}
.news-detail__pager-label {
  font-size: 12px;
  font-weight: 700;
  color: #030065;
  letter-spacing: 0.08em;
}
.news-detail__pager-title {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(50, 50, 50, 0.9);
}
@media (max-width: 768px) {
  .news-detail {
    padding: 46px 0 72px;
  }
  .news-detail__pager {
    grid-template-columns: 1fr;
  }
}

/* =========================================
  News Article
========================================= */
.news-article {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.news-article__head {
  padding: 26px 26px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.news-article__date {
  font-size: 12px;
  color: rgba(50, 50, 50, 0.7);
}
.news-article__badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(3, 0, 101, 0.1);
  color: #030065;
}
.news-article__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.05rem + 0.55vw, 1.6rem);
  line-height: 1.6;
  color: #323232;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .news-article__title {
    font-size: clamp(1.125rem, 0.929rem + 0.67vw, 1.25rem);
  }
}
.news-article__figure {
  margin: 0;
}
.news-article__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-article__content {
  padding: 22px 26px 26px;
  color: rgba(50, 50, 50, 0.88);
  font-size: 14px;
  line-height: 2;
}
.news-article__content p {
  margin: 0;
}
.news-article__content p + p {
  margin-top: 14px;
}
.news-article__content h2 {
  margin: 26px 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: #323232;
  border-left: 3px solid #030065;
  padding-left: 10px;
  line-height: 1.4;
}
.news-article__content ul {
  margin: 10px 0 0;
  padding-left: 18px;
  list-style: disc;
}
.news-article__content ul li {
  margin-top: 6px;
}
.news-article__content a {
  color: #030065;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-article__content a.news-article__btn {
  color: white;
  text-decoration: none;
}
.news-article__content a:hover {
  opacity: 0.75;
}
.news-article__cta {
  margin-top: 18px;
  padding: 14px 14px;
  background: #F2F2F7;
  border-radius: 10px;
}
.news-article__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #030065;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease;
}
.news-article__btn:hover {
  opacity: 0.85;
}
.news-article__foot {
  padding: 0 26px 24px;
}
.news-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #030065;
  font-weight: 700;
}
.news-article__back::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid #030065;
  border-bottom: 2px solid #030065;
  transform: rotate(45deg);
  margin-top: 1px;
}
.news-article__back:hover {
  opacity: 0.75;
}
@media (max-width: 468px) {
  .news-article__head {
    padding: 20px 16px 12px;
  }
  .news-article__content {
    padding: 18px 16px 20px;
    font-size: 13px;
  }
  .news-article__foot {
    padding: 0 16px 18px;
  }
}

/* =========================================
  Breadcrumb（共通）
========================================= */
.breadcrumb {
  margin-bottom: 16px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(50, 50, 50, 0.7);
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: rgba(50, 50, 50, 0.35);
}
.breadcrumb__item[aria-current=page] {
  color: #323232;
  font-weight: 500;
}
.breadcrumb__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}
@media (max-width: 468px) {
  .breadcrumb {
    margin-bottom: 12px;
  }
  .breadcrumb__list {
    font-size: 11px;
  }
}

/* =========================================
  Reports (Section)
========================================= */
.reports {
  padding: 64px 0 96px;
  background: #fff;
}
.reports__inner {
  max-width: 1087px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.reports__table-wrap {
  margin-top: 26px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  /* 横スクロール時に角が欠けないように */
  background: #fff;
}

/* =========================================
  Reports Table
========================================= */
.reports-table {
  width: 100%;
  min-width: 980px; /* 1112px以下で横スクロールさせたい場合はここを調整 */
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  --rt-border: rgba(0, 0, 0, 0.28);
  --rt-head: #030065;
  /* head */
  /* column widths（添付の比率感に寄せる） */
  /* body rows */
  /* pdf button */
}
.reports-table__th, .reports-table__td {
  border: 1px solid var(--rt-border);
  padding: 18px 18px;
  vertical-align: middle;
  font-size: 14px;
  color: #323232;
  background: #fff;
}
.reports-table__th {
  background: var(--rt-head);
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}
.reports-table__head-row:first-child .reports-table__th:first-child {
  border-top-left-radius: 10px;
}
.reports-table__head-row:first-child .reports-table__th:last-child {
  border-top-right-radius: 10px;
}
.reports-table__th--year, .reports-table__td--year {
  width: 18%;
  text-align: center;
  font-weight: 700;
}
.reports-table__th--year {
  border-bottom: 1px solid white;
}
.reports-table__th--org, .reports-table__td--org {
  width: 52%;
  text-align: center;
  font-weight: 600;
}
.reports-table__th--org {
  border-left: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.reports-table__th--name, .reports-table__td--name {
  width: 22%;
  text-align: center;
  font-weight: 700;
}
.reports-table__th--name {
  border-bottom: 1px solid white;
}
.reports-table__th--pdf, .reports-table__td--pdf {
  width: 8%;
  text-align: center;
}
.reports-table__th--pdf {
  border-left: 1px solid white;
}
.reports-table__th--topic {
  text-align: center;
}
.reports-table__row--meta .reports-table__td {
  background: #fafafd; /* うっすら色味 */
}
.reports-table__row--topic .reports-table__td--topic {
  background: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.9;
  padding: 34px 26px;
}
.reports-table__pdf {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  height: 92px;
  border-radius: 10px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.reports-table__pdf:hover {
  background: #F2F2F7;
  transform: translateY(-1px);
}
.reports-table__pdf-icon {
  width: 30px;
  height: 30px;
  display: block;
}
.reports-table__pdf-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(50, 50, 50, 0.7);
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .reports-table {
    min-width: 920px;
  }
  .reports-table__row--topic .reports-table__td--topic {
    font-size: 15px;
    padding: 28px 18px;
  }
}
@media (max-width: 468px) {
  .reports-table {
    min-width: 860px;
  }
  .reports-table__th, .reports-table__td {
    padding: 14px 12px;
    font-size: 13px;
  }
  .reports-table__row--topic .reports-table__td--topic {
    font-size: 14px;
    padding: 22px 14px;
  }
  .reports-table__pdf {
    width: 66px;
    height: 86px;
  }
}

/* =========================================
  Disclosure
========================================= */
.disclosure {
  background: #F8F8F8; /* #F8F8F8 */
  padding: 64px 0 96px;
}
.disclosure__inner {
  max-width: 1087px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
.disclosure__title {
  margin: 0 0 34px;
  font-size: clamp(1.625rem, 1.321rem + 0.63vw, 1.875rem);
  letter-spacing: 0.06em;
  color: #323232;
}
.disclosure__blocks {
  display: grid;
  gap: 64px;
}
@media (max-width: 768px) {
  .disclosure__blocks {
    gap: 48px;
  }
}
@media (max-width: 468px) {
  .disclosure__blocks {
    gap: 40px;
  }
}

/* =========================================
  Disclosure block (title + list)
========================================= */
.disclosure-block__title {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 1.022rem + 0.48vw, 1.375rem);
  letter-spacing: 0.06em;
  color: #323232;
}

/* =========================================
  PDF list
========================================= */
.pdf-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(50, 50, 50, 0.25);
  /* 右矢印（SVG不要でCSSで作る） */
}
.pdf-list__item {
  border-bottom: 1px solid rgba(50, 50, 50, 0.25);
}
.pdf-list__link {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 14px;
  padding: 18px 12px;
  color: #323232;
  background: transparent;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.pdf-list__link:hover {
  background: #F2F2F7; /* #F2F2F7 */
}
.pdf-list__link:active {
  transform: translateY(1px);
}
.pdf-list__icon {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdf-list__icon img {
  width: 44px;
  height: 44px;
  display: block;
}
.pdf-list__text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.pdf-list__arrow {
  width: 40px;
  height: 40px;
  justify-self: end;
  position: relative;
}
.pdf-list__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #030065; /* #030065 */
  border-right: 2px solid #030065; /* #030065 */
  transform: rotate(45deg);
}
@media (max-width: 468px) {
  .pdf-list__link {
    grid-template-columns: 50px 1fr 36px;
    gap: 12px;
    padding: 16px 10px;
  }
  .pdf-list__text {
    font-size: 15px;
  }
  .pdf-list__icon {
    width: 50px;
  }
  .pdf-list__icon img {
    width: 40px;
    height: 40px;
  }
}

/* =========================================
  Header Drawer (SP)
========================================= */
.site-header {
  /* 既存のまま */
}
.site-header__drawer {
  display: none;
}
@media (max-width: 768px) {
  .site-header__drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200; /* header(100)より上 */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
}
@media (max-width: 768px) {
  .site-header__drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 768px) {
  .site-header__drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(86vw, 360px);
    height: 100svh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.12);
    padding: 16px 16px 22px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.site-header__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-header__drawer-brand {
  display: inline-flex;
  align-items: center;
}
.site-header__drawer-brand img {
  display: block;
  height: 32px;
  width: auto;
}
.site-header__drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.site-header__drawer-close-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #323232;
  border-radius: 2px;
  transform-origin: center;
}
.site-header__drawer-close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header__drawer-close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.site-header__drawer-nav {
  padding-top: 14px;
}
.site-header__drawer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.site-header__drawer-item.is-active .site-header__drawer-link {
  color: #030065;
}
.site-header__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 10px;
  color: #323232;
  font-size: 15px;
  letter-spacing: 0.03em;
  background: #F8F8F8; /* #F8F8F8 */
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.site-header__drawer-link:hover {
  background: #F2F2F7; /* #F2F2F7 */
}
.site-header__drawer-link:active {
  transform: translateY(1px);
}
.site-header__drawer-link--cta {
  background: #030065;
  color: #fff;
  font-weight: 700;
  justify-content: center;
}
.site-header__drawer-link--cta:hover {
  background: #030065;
  opacity: 0.9;
}

/* OPEN状態 */
body.is-menu-open {
  overflow: hidden; /* スクロール固定 */
}
body.is-menu-open .site-header__drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.is-menu-open .site-header__drawer-panel {
  transform: translateX(0);
}

/* 低モーション */
@media (prefers-reduced-motion: reduce) {
  .site-header__drawer,
  .site-header__drawer-panel {
    transition: none !important;
  }
}
.contact {
  padding: 72px 0;
}
.contact__inner {
  max-width: 969px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ サブタイトル（カテゴリ見出し） ===== */
.faq {
  /* サブタイトル直後のリストは上の余白を詰める */
}
.faq__subtitle {
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 4px solid #111;
  font-weight: 700;
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.4;
}
.faq__subtitle + .faq__list {
  margin-top: 0;
}

/* ===== FAQ 回答内の箇条書き（ul/li） ===== */
.faq-item__list {
  margin: 10px 0 0;
  padding-left: 1.2em;
}
.faq-item__list-item {
  margin: 6px 0 0;
  line-height: 1.7;
  font-size: 13px;
  list-style: disc;
}/*# sourceMappingURL=style.css.map */