@charset "UTF-8";
/* =========================================================
  2026 SCSS 再構成（おすすめ）
  ---------------------------------------------------------
  src/scss/
    foundation/
      _tokens.scss        // CSS変数（色・余白・角・影・zなど）＝設計の核
      _breakpoints.scss   // mq() mixin（min-width only）
      _reset.scss         // グローバル最小限リセット（やりすぎない）
      _base.scss          // body/a/button等の“基礎挙動”
      _typography.scss    // 文字組（ただしグローバルp paddingは禁止）
      _prose.scss         // 記事本文用（.prose / .contents にだけ効かせる）
      _container.scss     // .inner / section / headerスペーサー等
      _index.scss         // @forward まとめ
    layout/
      _header.scss
      _nav.scss
      _footer.scss
      _breadcrumb.scss
      _index.scss
    components/
      _button.scss
      _form.scss
      _accordion.scss
      _details.scss
      _card.scss
      _video.scss
      _index.scss
    utilities/
      _a11y.scss          // sr-only 等
      _helpers.scss       // t-center, lh-tight 等（本当に必要な物だけ）
      _index.scss
    style.scss            // エントリ（@use だけ）
========================================================= */
/* =========================================================
  style.scss
  2026 SCSS Entry Point
  ---------------------------------------------------------
  役割：
  ・このファイルには「設計ロジックを書かない」
  ・@use / @forward で読み込む順番だけを管理
  ・実体のスタイルは各レイヤーに閉じ込める
========================================================= */
/* =========================================================
  foundation
  ・変数 / リセット / タイポ / レイアウト基礎
  ・ここが全体の“物理法則”
========================================================= */
/* =========================================================
  foundation/_index.scss
========================================================= */
/* =========================================================
  foundation/_typography.scss
  グローバルは“余白を持ち込まない”が正義
========================================================= */
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400&family=Montserrat:wght@500&family=Noto+Sans+JP:wght@300;400;500&display=swap");
/* =========================================================
  foundation/_tokens.scss（追記・整理）
========================================================= */
/* project tokens */
/* utility */
:root {
  /* z-index */
  --z-base: 1;
  --z-header: 900;
  --z-overlay: 950;
  --z-drawer: 1000;
  --z-modal: 1100;
  /* header */
  --header-bg: #fff;
  --header-border: rgba(0, 0, 0, 0.14);
  --header-measured-h: 64px; /* JSが更新してもOKな受け皿 */
  --header-h: 0px; /* body::before 等のスペーサー用（JS上書き想定） */
  /* nav */
  --nav-fg: #222;
  --nav-muted: rgba(0, 0, 0, 0.55);
  --nav-font: 14px;
  --nav-weight: 600;
  /* CTA */
  --cta-bg: #008CCA;
  --cta-fg: #fff;
  --c-main: #008CCA;
  --c-light: #E9F5FF;
  --c-light-a: rgba(233, 245, 255, 0.95);
  --cta-bg-a: rgba(219, 244, 255, 0.9);
  --box-bg-a: rgba(33, 41, 53, 0.56);
  /* color role */
  --c-brand: #1277ff;
  --c-brand-2: #008CCA;
  --c-ink: #111111;
  --c-ink-wh: #ffffff;
  --c-bg: #ffffff;
  --c-surface: #f7f7f7;
  --c-surface-2: #f2f2f2;
  --c-border: #e5e5e5;
  --c-border-strong: #d0d0d0;
  --c-muted: rgb(183.6, 183.6, 183.6);
  --c-ring: rgba(18, 119, 255, 0.35);
  /* state */
  --c-danger: #d92d20;
  --c-success: #16a34a;
  --c-warning: #f59e0b;
  /* layout（ここが今回の肝） */
  --inner-rate: 0.8; /* ← クライアント要望。最終的に 0.9 にする */
  --inner-max: 1024px; /* 暴走防止（必要なら 1120 / 1200 へ調整） */
  --inner-pad-x: clamp(16px, 4vw, 40px);
  --inner-pad-y: clamp(32px, 6vw, 88px);
  /* spacing scale */
  --s-0: 0px;
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 28px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-14: 56px;
  --s-16: 64px;
  /* radius */
  --r-1: 6px;
  --r-2: 10px;
  --r-3: 16px;
  --r-pill: 999px;
  /* shadow */
  --sh-0: 0 0 0 rgba(0,0,0,0);
  --sh-1: 0 10px 24px rgba(0,0,0,.08);
  --sh-2: 0 16px 32px rgba(0,0,0,.12);
  /* tap / button */
  --tap-min: 44px;
  --btn-radius: var(--r-pill);
  --btn-font: 16px;
  --btn-gap: 10px;
}

/* =========================================================
  foundation/_breakpoints.scss
  Mobile First / min-width only
  ---------------------------------------------------------
  方針：
  - ブレイクポイントは px で統一（% や vw は入れない）
  - mq() は min-width only（上書きしやすく事故が少ない）
========================================================= */
/* ---------------------------------------------------------
  Breakpoints
--------------------------------------------------------- */
/* ---------------------------------------------------------
  Mixin: mq()
  使い方：
    .foo {
      font-size: 14px;
      @include mq(md) { font-size: 16px; }
      @include mq(lg) { font-size: 18px; }
    }
--------------------------------------------------------- */
/* =========================================================
  foundation/_reset.scss
  Modern CSS Reset 2026（最小限・壊しにくい）
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--c-bg);
  color: var(--c-ink);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* a は base で設計するので reset では触らない */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
  foundation/_base.scss
  “全ページ共通”の安全な基礎挙動
========================================================= */
html {
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover {
  opacity: 0.85;
}

hr {
  border: 0;
  border-top: 1px solid var(--c-border);
}

::-moz-selection {
  background: rgba(221, 136, 215, 0.25);
}

::selection {
  background: rgba(221, 136, 215, 0.25);
}

/* フォーム要素のズーム事故対策（iOS） */
input,
select,
textarea {
  font-size: 16px;
}

:root {
  --font-sans: "Noto Sans JP";
  --font-serif: "Noto Serif JP";
  /* 英数字用 */
  --font-en: "Inter";
  /* 英字見出し用 */
  --font-en-heading: "Montserrat";
  --fw-base: 400;
  --fw-bold: 500;
  --fw-black: 400;
}

/* =========================================================
  Base
========================================================= */
body {
  font-family: var(--font-en), var(--font-sans), system-ui, -apple-system, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--fw-base);
  font-style: normal;
}

/* paragraph */
p {
  letter-spacing: 0.05em;
}

/* =========================================================
  Headings
========================================================= */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: var(--fw-bold);
  margin-block: 0 var(--s-5);
}

h1 {
  font-size: clamp(28px, 3.2vw, 40px);
}

h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

h3 {
  font-size: clamp(20px, 2.1vw, 26px);
}

h4 {
  font-size: clamp(18px, 1.8vw, 22px);
}

h5 {
  font-size: clamp(16px, 1.6vw, 18px);
}

h6 {
  font-size: clamp(14px, 1.4vw, 16px);
}

/* =========================================================
  Utility fonts
========================================================= */
.font-sans {
  font-family: var(--font-sans), system-ui, sans-serif;
}

.font-serif {
  font-family: var(--font-serif), serif;
}

/* 英字汎用（Inter 明示） */
.font-en {
  font-family: var(--font-en), system-ui, sans-serif;
  letter-spacing: 0.04em;
  font-weight: var(--fw-base);
}

/* 英字見出し専用（Montserrat） */
.font-en-heading {
  font-family: var(--font-en-heading), system-ui, sans-serif;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* =========================================================
  Text + Image rhythm
========================================================= */
p + img,
p + picture,
p + figure {
  margin-top: 8px;
  margin-bottom: clamp(20px, 4vw, 32px);
}

img + p,
picture + p,
figure + p {
  margin-top: clamp(16px, 3.5vw, 28px);
}

figure {
  margin: 0;
}

p + figure {
  margin-top: 8px;
  margin-bottom: clamp(24px, 5vw, 40px);
}

figure + p {
  margin-top: clamp(16px, 3.5vw, 28px);
}

figure figcaption {
  margin-top: 8px;
  font-size: 0.85em;
  line-height: 1.5;
  opacity: 0.75;
}

hr {
  width: 100%;
  margin: 100px 0;
  border-color: #CACACA;
}

/* =========================================================
  Single Post Navigation
========================================================= */
.post-navigation {
  margin: 60px 0 0;
  padding-top: 20px;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.post-navigation a {
  text-decoration: none;
  color: #333;
  display: block;
  max-width: 420px;
}
.post-navigation .nav-subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #008CCA;
  margin-bottom: 6px;
}
.post-navigation .nav-en {
  font-weight: 600;
}
.post-navigation .nav-ja {
  font-size: 12px;
  color: var(--c-ink) !important;
}
.post-navigation .nav-arrow {
  font-size: 16px;
  line-height: 1;
}
.post-navigation .nav-title {
  font-size: 14px;
  line-height: 1.6;
}
.post-navigation {
  /* 左：前の記事 */
}
.post-navigation .nav-previous {
  text-align: left;
}
.post-navigation {
  /* 右：次の記事 */
}
.post-navigation .nav-next {
  text-align: right;
}
.post-navigation .nav-next .nav-subtitle {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
    gap: 24px;
  }
  .post-navigation a {
    max-width: none;
  }
}
/* =========================================================
  foundation/_prose.scss
  本文ブロック（WP .contents / .entry-content 等）だけに効かせる
========================================================= */
.prose > *,
.contents > *,
.entry-content > * {
  margin-block: 0 var(--s-5);
}
.prose p,
.contents p,
.entry-content p {
  line-height: 1.7;
}
.prose,
.contents,
.entry-content {
  /* 見出しの詰め方 */
}
.prose p + h1,
.prose p + h2,
.prose p + h3,
.prose p + h4,
.prose p + h5,
.prose p + h6,
.contents p + h1,
.contents p + h2,
.contents p + h3,
.contents p + h4,
.contents p + h5,
.contents p + h6,
.entry-content p + h1,
.entry-content p + h2,
.entry-content p + h3,
.entry-content p + h4,
.entry-content p + h5,
.entry-content p + h6 {
  margin-top: var(--s-6);
  margin-bottom: clamp(32px, 3.6vw, 50px);
}
.prose,
.contents,
.entry-content {
  /* リストは本文内だけ整える */
}
.prose ul,
.prose ol,
.contents ul,
.contents ol,
.entry-content ul,
.entry-content ol {
  padding-left: 1.2em;
  list-style: revert;
}
.prose li,
.contents li,
.entry-content li {
  margin-block: 0.4em;
}
.prose,
.contents,
.entry-content {
  /* 画像は“余白の揺れ”が出るのでブロック化 */
}
.prose img,
.prose picture,
.prose video,
.contents img,
.contents picture,
.contents video,
.entry-content img,
.entry-content picture,
.entry-content video {
  margin-block: var(--s-4);
}
.prose,
.contents,
.entry-content {
  /* 長いURL対策 */
}
.prose a,
.contents a,
.entry-content a {
  overflow-wrap: anywhere;
}

/* =========================================================
  foundation/_container.scss
  section/inner + fixed header spacer
========================================================= */
/* =========================================================
  foundation/_container.scss（オフセットを1本化）
  body::before をやめて main padding-top に統一する案
========================================================= */
section {
  margin: 0;
  padding: 0;
}

/* 旧：body::before スペーサーは無効化（これが二重余白の主犯） */
body::before {
  content: none;
  display: none;
  height: 0;
}

/* 全ページ共通：固定ヘッダーぶん main を下げる */
main {
  padding-top: var(--header-measured-h);
}

/* homeはFVを上から見せたいなら 0 */
body.is-home main {
  padding-top: 0;
}

/* =========================================================
  Container rule
  - .inner       : 既存どおり max 幅ベース（必要なら tokens で調整）
  - .inner--80/90: ～1439px は %、1440px～ は 1440px 固定
========================================================= */
/* tokens保険（tokens側にあるならここは消してOK） */
:root {
  --inner-max: 1024px;
}

/* 通常コンテナ（全ページで使う想定） */
.inner {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
  padding-inline: var(--inner-pad-x);
  padding-block: var(--inner-pad-y);
}

/* =========================================================
  80% / 90% layout container
  - ～1439px : 80% / 90%
  - 1440px～ : 1440px 固定
========================================================= */
.inner--70,
.inner--80,
.inner--90 {
  margin-inline: auto;
  padding-inline: var(--inner-pad-x);
  padding-block: var(--inner-pad-y);
}

/* ～1439px */
.inner--70 {
  width: 70%;
}

.inner--80 {
  width: 80%;
}

.inner--90 {
  width: 90%;
}

/* SP：安全にフル幅へ */
@media (max-width: 767px) {
  .inner--70,
  .inner--80,
  .inner--90 {
    width: 100%;
  }
}
/* 1440px～：固定幅 */
/* =========================================================
  nested container
  - 親に対しての入れ子幅を固定（勝手に細くしない）
========================================================= */
.inner-inner {
  width: 100%;
  max-width: 80%;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .inner-inner {
    max-width: 100%;
  }
}
/* =========================================================
  foundation/_list.scss
  リストは “opt-in” に統一（resetでは触らない）
========================================================= */
/* opt-in reset：class/id が付いてる時だけ */
ul[class],
ul[id],
ol[class],
ol[id],
dl[class],
dl[id] {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul[class] li,
ul[id] li,
ol[class] li,
ol[id] li,
dl[class] dt,
dl[class] dd,
dl[id] dt,
dl[id] dd {
  margin: 0;
  padding: 0;
}

/* dl layout（opt-in） */
dl[class] dt, dl[class] dd,
dl[id] dt,
dl[id] dd {
  width: 100%;
}
dl[class] dt,
dl[id] dt {
  margin-bottom: 0;
}
dl[class] dd,
dl[id] dd {
  margin-bottom: var(--s-5);
}
dl[class] dd:last-child,
dl[id] dd:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  dl[class],
  dl[id] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  dl[class] dt,
  dl[class] dd,
  dl[id] dt,
  dl[id] dd {
    margin: 0 0 var(--s-5);
  }
  dl[class] dt,
  dl[id] dt {
    width: 30%;
  }
  dl[class] dd,
  dl[id] dd {
    width: 70%;
  }
  dl[class] dt:last-child,
  dl[class] dd:last-child,
  dl[id] dt:last-child,
  dl[id] dd:last-child {
    margin-bottom: 0;
  }
}
/* =========================================================
  foundation/_flex.scss
  fwrap / con-* / fgrid（ユーティリティ配置）
  ※ 既存思想を維持しつつ tokens に寄せる
========================================================= */
.fwrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* 最終行の margin-bottom を内側で受ける */
  padding-bottom: 2%;
}
.fwrap > [class^=con-],
.fwrap > [class*=" con-"] {
  flex: 0 0 auto;
  margin-bottom: 2%;
}
.fwrap > [class^=con-] img,
.fwrap > [class*=" con-"] img {
  display: block;
  width: 100%;
  height: auto;
}

/* justify */
.start {
  justify-content: flex-start;
}

.center {
  justify-content: center;
}

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

.between {
  justify-content: space-between;
}

.around {
  justify-content: space-around;
}

.evenly {
  justify-content: space-evenly;
}

/* align */
.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.a-stretch {
  align-items: stretch;
}

.a-baseline {
  align-items: baseline;
}

/* helpers */
.minw0 {
  min-width: 0;
}

.grow {
  flex-grow: 1;
}

.nogrow {
  flex-grow: 0;
}

.shrink0 {
  flex-shrink: 0;
}

/* width: fraction (mobile first) */
.con-1 {
  width: 100%;
  max-width: 100%;
}

.con-2 {
  width: 50%;
  max-width: 50%;
}

.con-3,
.con-4,
.con-5,
.con-6,
.con-7,
.con-8,
.con-12 {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .con-3 {
    width: 33.3333%;
    max-width: 33.3333%;
  }
  .con-4 {
    width: 25%;
    max-width: 25%;
  }
  .con-5 {
    width: 20%;
    max-width: 20%;
  }
  .con-6 {
    width: 16.6667%;
    max-width: 16.6667%;
  }
  .con-7 {
    width: 14.2857%;
    max-width: 14.2857%;
  }
  .con-8 {
    width: 12.5%;
    max-width: 12.5%;
  }
  .con-12 {
    width: 8.3333%;
    max-width: 8.3333%;
  }
}
/* width: percentage (no responsive) */
.con-10 {
  width: 10%;
  max-width: 10%;
}

.con-20 {
  width: 20%;
  max-width: 20%;
}

.con-30 {
  width: 30%;
  max-width: 30%;
}

.con-40 {
  width: 40%;
  max-width: 40%;
}

.con-50 {
  width: 50%;
  max-width: 50%;
}

.con-60 {
  width: 60%;
  max-width: 60%;
}

.con-70 {
  width: 70%;
  max-width: 70%;
}

.con-80 {
  width: 80%;
  max-width: 80%;
}

.con-90 {
  width: 90%;
  max-width: 90%;
}

.con-100 {
  width: 100%;
  max-width: 100%;
}

/* between spacing（fractionのみ / md以上） */
@media (min-width: 768px) {
  .between > .con-1,
  .between > .con-2,
  .between > .con-3,
  .between > .con-4,
  .between > .con-5,
  .between > .con-6,
  .between > .con-7,
  .between > .con-8,
  .between > .con-12 {
    flex-shrink: 0;
  }
  .between > .con-1 {
    width: calc(100% - 2%);
    max-width: calc(100% - 2%);
  }
  .between > .con-2 {
    width: calc(50% - 2%);
    max-width: calc(50% - 2%);
  }
  .between > .con-3 {
    width: calc(33.3333% - 2%);
    max-width: calc(33.3333% - 2%);
  }
  .between > .con-4 {
    width: calc(25% - 2%);
    max-width: calc(25% - 2%);
  }
  .between > .con-5 {
    width: calc(20% - 2%);
    max-width: calc(20% - 2%);
  }
  .between > .con-6 {
    width: calc(16.6667% - 2%);
    max-width: calc(16.6667% - 2%);
  }
  .between > .con-7 {
    width: calc(14.2857% - 2%);
    max-width: calc(14.2857% - 2%);
  }
  .between > .con-8 {
    width: calc(12.5% - 2%);
    max-width: calc(12.5% - 2%);
  }
  .between > .con-12 {
    width: calc(8.3333% - 2%);
    max-width: calc(8.3333% - 2%);
  }
}
/* 縦余白を消す */
.fwrap.nogapv {
  padding-bottom: 0;
}
.fwrap.nogapv > [class^=con-],
.fwrap.nogapv > [class*=" con-"] {
  margin-bottom: 0;
}

/* card list grid（components側にも置けるが、既存運用に合わせてここでも提供） */
.fgrid {
  --cols: 1;
  --gap: 16px;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gap);
}
@media (min-width: 480px) {
  .fgrid {
    --cols: 2;
  }
}
@media (min-width: 768px) {
  .fgrid {
    --cols: 3;
  }
}
.fgrid.is-auto {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.fgrid > * {
  min-width: 0;
}

/* =========================================================
  layout
  ・ページ構造（header / footer / nav / breadcrumb）
  ・大枠の配置のみ
========================================================= */
/* =========================================================
  layout/_index.scss
========================================================= */
/* =========================================================
  main offset
========================================================= */
body:not(.is-home) main {
  padding-top: 0;
}

/* =========================================================
  Header
========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  background: var(--header-bg);
  border-bottom: 1px solid var(--c-main);
  display: flex;
  align-items: center;
}
.header .header-inner {
  display: flex;
  align-items: center;
  min-height: 64px;
  height: 100%;
  padding: 0 0 0 20px;
  flex: 1;
}

/* =========================================================
  Logo
========================================================= */
.site-title {
  margin: 0;
}
.site-title .logo {
  display: flex;
  align-items: center;
  height: 40px;
  text-decoration: none;
}
.site-title .logo img {
  display: block;
  height: 100%;
  width: auto;
}

/* =========================================================
  Hamburger
========================================================= */
.hamburger {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  inline-size: 44px;
  block-size: 44px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger .hamburger-lines {
  position: relative;
  inline-size: 22px;
  block-size: 2px;
  background: #222;
  margin: 0 auto;
}
.hamburger .hamburger-lines::before, .hamburger .hamburger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  inline-size: 22px;
  block-size: 2px;
  background: #222;
}
.hamburger .hamburger-lines::before {
  top: -7px;
}
.hamburger .hamburger-lines::after {
  top: 7px;
}

/* =========================================================
  Overlay
========================================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: var(--z-overlay);
}

/* =========================================================
  Global Nav core
========================================================= */
.global-nav .global-nav-inner {
  min-height: 64px;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.global-nav .global-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 64px;
  height: 64px;
  display: flex;
  align-items: center;
}
.global-nav .global-nav-list > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.global-nav .global-nav-list a {
  text-decoration: none;
  color: inherit;
}

/* =========================================================
  PC: inline nav + dropdown animation
========================================================= */
@media (min-width: 1024px) {
  .drawer-overlay {
    display: none !important;
  }
  .hamburger {
    display: none;
  }
  .global-nav {
    margin-left: auto;
    height: 100%;
    color: var(--nav-fg);
  }
  .global-nav .global-nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .global-nav .global-nav-inner .drawer-close {
    display: none;
  }
  .global-nav .global-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .global-nav .global-nav-list > li {
    height: 100%;
  }
  .global-nav .global-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    font-size: var(--nav-font);
    letter-spacing: 0.02em;
  }
  .global-nav .global-nav-list > li > a:hover {
    background: rgba(0, 0, 0, 0.04);
  }
  .global-nav .global-nav-list {
    /* ▼ 矢印（submenuがある時だけ・回転アニメーション） */
  }
  .global-nav .global-nav-list > li:has(.submenu) > a {
    position: relative;
    padding-right: 34px;
  }
  .global-nav .global-nav-list > li:has(.submenu) > a::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center;
    font-size: 12px;
    color: #008CCA;
    transition: transform 200ms ease;
  }
  .global-nav .global-nav-list > li:hover > a::after,
  .global-nav .global-nav-list > li:focus-within > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .global-nav .global-nav-list {
    /* =========================
      submenu animation
    ========================= */
  }
  .global-nav .global-nav-list .submenu {
    list-style: none;
    margin: 0;
    padding: 16px 10px;
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    min-width: 180px;
    background: var(--c-light-a);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .global-nav .global-nav-list .submenu > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  .global-nav .global-nav-list .submenu > li > a:hover {
    background: rgba(18, 119, 255, 0.08);
  }
  .global-nav .global-nav-list {
    /* open */
  }
  .global-nav .global-nav-list > li:hover > .submenu,
  .global-nav .global-nav-list > li:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .global-nav .global-nav-list {
    /* 右端補正 */
  }
  .global-nav .global-nav-list > li:last-child > .submenu {
    left: auto;
    right: 0;
  }
  .global-nav .global-nav-list {
    /* CTA */
  }
  .global-nav .global-nav-list > li#contact > a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    background: var(--cta-bg);
    color: var(--cta-fg);
  }
  .global-nav .global-nav-list > li#contact > a img {
    height: 1em;
    margin-right: 6px;
  }
  .global-nav .global-nav-list > li#contact > a:hover {
    background: #0f6cf0;
  }
}
/* =========================================================
  SP: drawer nav
========================================================= */
@media (max-width: 1023px) {
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .global-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 85vw;
    max-width: 420px;
    background: var(--cta-bg-a);
    color: var(--nav-fg);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: var(--z-drawer);
  }
  .global-nav.is-open, .global-nav[aria-hidden=false] {
    transform: translateX(0);
  }
  .global-nav .global-nav-inner {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  .global-nav .drawer-close {
    display: inline-flex;
    margin-left: auto;
    font-size: 28px;
    background: none;
    border: 0;
    color: #008CCA;
  }
  .global-nav .global-nav-list {
    display: flex;
    flex-direction: column;
    align-items: self-start;
  }
  .global-nav .global-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .global-nav .global-nav-list li#contact {
    margin-top: 50px;
  }
  .global-nav .global-nav-list li#contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #008CCA;
    color: white;
    padding: 10px 20px;
  }
  .global-nav .global-nav-list li#contact a img {
    margin-right: 10px;
  }
  .global-nav .global-nav-list a {
    display: block;
    padding: 12px 0;
  }
  .global-nav .global-nav-list {
    /* SPでは submenu は常時表示 */
  }
  .global-nav .global-nav-list .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .global-nav .global-nav-list .submenu > li > a {
    font-size: 90%;
    padding: 6px 0;
  }
  .global-nav .global-nav-list > li:last-child {
    border-bottom: 0;
    margin-top: 12px;
  }
  .global-nav .global-nav-list > li:last-child > a {
    color: var(--cta-fg);
    padding: 14px;
    border-radius: 14px;
    text-align: center;
  }
}
#contact {
  order: 4;
}

ul.global-nav-list li:nth-child(5) {
  order: 5;
}
@media (min-width: 1024px) {
  ul.global-nav-list li:nth-child(5) {
    order: 5;
  }
}

.sp-title:nth-child(1) {
  order: 1;
}
@media (min-width: 1024px) {
  .sp-title:nth-child(1) {
    order: 1;
  }
}
.sp-title:nth-child(2) {
  order: 3;
}
@media (min-width: 1024px) {
  .sp-title:nth-child(2) {
    order: 2;
  }
}
.sp-title:nth-child(3) {
  order: 2;
}
@media (min-width: 1024px) {
  .sp-title:nth-child(3) {
    order: 3;
  }
}
.sp-title > a {
  font-family: var(--font-en-heading);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 50%;
  border-bottom: #007BB1 solid 1px;
}
@media (min-width: 1024px) {
  .sp-title > a {
    border-bottom: 0;
  }
}
.sp-title > a span {
  font-size: 7vw;
  display: block;
  color: #008CCA;
}
@media (min-width: 1024px) {
  .sp-title > a span {
    display: none !important;
  }
}

.pp a {
  color: var(--nav-fg) !important;
  padding-left: 20px !important;
  position: relative;
}
.pp a::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 17px;
  color: var(--c-main);
  font-size: 10px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .pp {
    display: none !important;
  }
}

/* =========================================================
  Home Header Control（layout/_header.scss の末尾に追加）
  トップだけ：スクロールするまでヘッダーを隠す
========================================================= */
@media (min-width: 1024px) {
  body.is-home:not(.is-scrolled) .header {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
  }
  /* ドロワーが開いている間は必ずヘッダー表示 */
  body.is-drawer-open .header {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
  }
  body.is-home.is-scrolled .header {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
/* 既存transitionに足りなければ保険 */
body.is-home .header {
  transition: opacity 240ms ease, transform 240ms ease, background-color 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

/* ================================
  SP Drawer Accordion（submenu）
================================ */
@media (max-width: 1023px) {
  /* 親 */
  .sp-title {
    width: 100%;
  }
  .sp-title > a {
    position: relative;
    display: block;
    padding-right: 32px;
  }
  .sp-title {
    /* 初期：閉じる */
  }
  .sp-title .submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
  }
  .sp-title {
    /* open */
  }
  .sp-title.is-open .submenu {
    max-height: 600px; /* 十分大きければOK */
    opacity: 1;
  }
  /* 三角 */
  .sp-title:has(.submenu) > a::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #008CCA;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .sp-title.is-open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.cover {
  padding-top: var(--header-measured-h, 64px);
}

@media (min-width: 1024px) {
  body.is-home:not(.is-scrolled) {
    --header-measured-h: 0px;
  }
}
/* =========================================================
  layout/_breadcrumb.scss
  nav[aria-label="breadcrumbs"]
========================================================= */
nav[aria-label=breadcrumbs] ol {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
  padding-inline: var(--inner-pad-x);
  padding-block: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.5;
}
nav[aria-label=breadcrumbs] li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
nav[aria-label=breadcrumbs] li + li::before {
  content: "/";
  margin-inline: 6px;
  opacity: 0.5;
}
nav[aria-label=breadcrumbs] a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}
nav[aria-label=breadcrumbs] a:hover {
  opacity: 1;
  text-decoration: underline;
}
nav[aria-label=breadcrumbs] [aria-current=page] {
  font-weight: 700;
  opacity: 1;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
nav[aria-label=breadcrumbs] li:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

/* =========================================================
  Footer
========================================================= */
.site-footer {
  background: #fff;
  border-top: 1px solid #007BB1;
  font-size: 14px;
  color: var(--c-ink);
}

.site-footer__inner {
  max-width: 95%;
  margin-inline: auto;
  padding: 60px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 1024px) {
  .site-footer__inner {
    padding: 20px;
  }
}

/* -------------------------
  Brand
------------------------- */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__logo {
  width: 140px;
  height: auto;
  margin-bottom: 0;
}

.site-footer__company {
  font-size: 13px;
  line-height: 1.4;
}

/* -------------------------
  Navigation
------------------------- */
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer__nav > li {
  font-size: 70%;
  font-weight: 500;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  line-height: 1.6;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav__title {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px !important;
}
.footer-nav__title a {
  font-size: 120%;
}
.footer-nav__title::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--c-main);
  font-size: 10px;
  line-height: 1.6;
}

/* -------------------------
  Bottom
------------------------- */
.site-footer__bottom {
  width: 95%;
  margin: auto;
  padding: 50px var(--inner-pad-x) 30px;
  display: flex;
  justify-content: flex-end;
}
.site-footer__bottom small {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* -------------------------
  Responsive
------------------------- */
@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__bottom {
    justify-content: center;
  }
}
/* =========================================================
  components
  ・再利用可能なUI部品
  ・button / form / card / accordion / details / video
========================================================= */
/* =========================================================
  components/_index.scss
========================================================= */
.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  min-height: var(--tap-min);
  padding: 0 18px;
  font-size: var(--btn-font);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
  text-decoration: none;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring);
}
.btn:active {
  transform: scale(0.98);
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn--arrow::after {
  content: "→";
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: grid;
  gap: var(--btn-gap);
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .btn-row {
    grid-template-columns: 1fr 1fr;
  }
}

.btn--primary {
  background: var(--c-brand);
  color: #111;
  box-shadow: var(--sh-1);
}
@media (hover: hover) {
  .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--sh-2);
  }
  .btn--primary:active {
    transform: translateY(0) scale(0.99);
  }
}

.btn--outline {
  background: transparent;
  color: #008CCA;
  border-color: #008CCA;
}
@media (hover: hover) {
  .btn--outline:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
  }
}

/* =========================================================
  Button : pill outline (image style)
  「アスマッチプロジェクトについて」
========================================================= */
.btn--pill-outline {
  background: transparent;
  color: #008CCA;
  border-color: #008CCA;
  border-width: 1.5px;
  border-radius: 9999px;
  background: var(--c-bg);
  padding: 0 28px;
  min-height: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: none;
}
@media (hover: hover) {
  .btn--pill-outline:hover {
    background: rgba(31, 111, 214, 0.06);
    transform: translateY(-1px);
  }
}
.btn--pill-outline:active {
  transform: scale(0.98);
}

.btn-image img {
  width: 33.3333333333%;
}
@media (max-width: 1024px) {
  .btn-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================================================
  components/_form.scss
========================================================= */
form {
  width: 100%;
}

label {
  display: block;
  width: 100%;
  font-weight: var(--fw-bold);
}

label > input,
label > textarea,
label > select {
  margin-top: var(--s-2);
}

/* Text / Email / Select / Textarea */
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-1);
  background: #fff;
  line-height: 1.5;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--c-ink);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
input[type=search]:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.7;
  background: var(--c-surface);
  cursor: not-allowed;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

::-moz-placeholder {
  color: #999;
  opacity: 1;
}

::placeholder {
  color: #999;
  opacity: 1;
}

/* Checkbox / Radio */
input[type=checkbox],
input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  vertical-align: middle;
  accent-color: var(--c-ink);
}

/* :has が使える環境は label 内パターンも綺麗に */
@supports selector(label:has(> input)) {
  label:has(> input[type=checkbox]),
  label:has(> input[type=radio]) {
    display: flex;
    align-items: center;
    gap: var(--s-3);
  }
  label:has(> input[type=checkbox]) > input,
  label:has(> input[type=radio]) > input {
    margin-top: 0;
  }
}
/* 隣接パターン（保険） */
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-weight: var(--fw-bold);
}

/* Submit */
button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: var(--r-1);
  min-height: var(--tap-min);
  padding: 0 18px;
  font-size: var(--btn-font);
  font-weight: var(--fw-bold);
  background: var(--c-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}
button[type=submit]:hover {
  opacity: 0.9;
}
button[type=submit]:active {
  transform: scale(0.99);
}
button[type=submit]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring);
}
button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Error state (.is-error) */
.is-error {
  background: #fff5f7;
  border-left: 3px solid #b00020;
  padding: var(--s-4);
}
.is-error input[type=text],
.is-error input[type=email],
.is-error input[type=tel],
.is-error input[type=url],
.is-error input[type=search],
.is-error select,
.is-error textarea {
  border-color: #b00020;
}
.is-error .error-msg {
  display: block;
  margin-top: var(--s-2);
  font-size: 14px;
  line-height: 1.4;
  color: #b00020;
}

/* Confirm view (.is-confirm) */
.is-confirm {
  padding: var(--s-4);
  border-bottom: 1px solid var(--c-border);
}
.is-confirm label {
  margin-bottom: var(--s-2);
}
.is-confirm .confirm-value {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-1);
  background: var(--c-surface);
  line-height: 1.5;
}
.is-confirm input,
.is-confirm select,
.is-confirm textarea {
  pointer-events: none;
  background: var(--c-surface);
  border-color: var(--c-border);
}

/* Optional: actions */
.form-actions {
  display: flex;
  gap: var(--s-3);
  align-items: center;
}

/* PC */
@media (min-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=url],
  input[type=search],
  select,
  textarea {
    padding: 10px 12px;
  }
  button[type=submit] {
    min-height: 42px;
  }
}
/* =========================================================
  components/_accordion.scss
  対象：dl.js-accordion（JS制御前提）
========================================================= */
dl.js-accordion {
  width: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--r-1);
  background: #fff;
  overflow: clip;
}
dl.js-accordion dt {
  width: 100%;
  padding: 14px var(--s-5);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.1em;
  font-weight: var(--fw-black);
  line-height: 1.4;
  position: relative;
}
dl.js-accordion dt::after {
  content: "+";
  position: absolute;
  right: var(--s-5);
  top: 50%;
  transform: translateY(-50%);
  font-weight: var(--fw-bold);
}
dl.js-accordion dt.is-open::after {
  content: "−";
}
dl.js-accordion dt + dd + dt {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
dl.js-accordion dd {
  padding: 0 var(--s-5) var(--s-4);
  display: none;
  line-height: 1.7;
  margin: 0;
}
dl.js-accordion dd.is-open, dt.is-open + dl.js-accordion dd {
  display: block;
}
dl.js-accordion dd p {
  margin: 0;
}
@media (min-width: 1024px) {
  dl.js-accordion dt {
    padding: 12px var(--s-5);
  }
  dl.js-accordion dd {
    padding-bottom: 14px;
  }
}

details {
  width: 100%;
  margin: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}
details:not(:last-child) {
  margin-bottom: 10px;
}

/* summary */
summary {
  list-style: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 14px 20px;
  margin: 0;
  font-size: 120%;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

details[open] summary::after {
  content: "−";
}

details[open] summary {
  border-bottom: 1px solid #eee;
}

/* アニメーション本体 */
details > .js-details-panel {
  overflow: hidden;
  max-height: 0px;
  transition: max-height 280ms ease;
  padding: 0 20px;
}

/* 中身の縦余白 */
details > .js-details-panel > * {
  margin-top: 12px;
}

details > .js-details-panel > *:last-child {
  margin-bottom: 16px;
}

/* PC */
@media (min-width: 1024px) {
  summary {
    padding: 12px 20px;
  }
}
/* =========================================================
  components/_card.scss
  ・一覧は .fgrid
  ・中身は .card
========================================================= */
.fgrid {
  --cols: 1;
  --gap: 16px;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gap);
}
@media (min-width: 480px) {
  .fgrid {
    --cols: 2;
  }
}
@media (min-width: 768px) {
  .fgrid {
    --cols: 3;
  }
}
.fgrid.is-auto {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.fgrid > * {
  min-width: 0;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-3);
  overflow: clip;
  box-shadow: var(--sh-1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-2);
  }
}

.card-title {
  margin: 0;
  padding: var(--s-4) var(--s-4) 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: var(--fw-bold);
}

.card-media {
  margin: var(--s-4) var(--s-4) 0;
  aspect-ratio: 4/3;
  overflow: clip;
  border-radius: calc(var(--r-3) - 6px);
}
.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-caption {
  padding: 10px var(--s-4) 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

.card-text {
  margin: 0;
  padding: 12px var(--s-4) 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}

.card-action {
  margin-top: auto;
  padding: var(--s-4);
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
}
/* =========================================================
  components/_video.scss
========================================================= */
.video-block {
  max-width: 960px;
  margin-inline: auto;
  padding: 16px;
}
.video-block .video-figure {
  margin: 0;
  position: relative;
}
.video-block .video-figure .video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.video-block .video-figure .video-toggle {
  position: absolute;
  inset: auto 12px 12px auto;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}
.video-block .video-figure .video-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.video-block .video-caption {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 動きが苦手な人は演出を抑制 */
@media (prefers-reduced-motion: reduce) {
  .video-block * {
    animation: none !important;
    transition: none !important;
  }
}
/* ================================
  Scroll Fade In
================================ */
/* ================================
  Scroll Fade In（最終）
================================ */
.fade-up,
.fade-in,
.fade-left,
.fade-right {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

/* 表示状態 */
.fade-up.is-inview,
.fade-in.is-inview,
.fade-left.is-inview,
.fade-right.is-inview {
  opacity: 1;
}

.fade-up {
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .fade-up.is-inview,
  .fade-left.is-inview,
  .fade-right.is-inview {
    transform: translate(0, 0);
  }
}
/* =========================================================
  Modal Popup (vanilla JS + SCSS)
  - .popup-base クリックで同じ .popup 内の .popup-modal をモーダル表示
  - 背景クリック / × / ESC で閉じる
  - bodyスクロール固定（body lock）
  - 複数 .popup 対応
  - 重要：ページ内では .popup > .popup-modal を隠すが
           モーダル内（.modal-body配下）では必ず表示する
========================================================= */
/* =========================
  Base (カード)
========================= */
.popup {
  position: relative;
}
.popup.con-5 {
  width: 18%;
  max-width: 18%;
}
@media (max-width: 1024px) {
  .popup.con-5 {
    width: 47%;
    max-width: 47%;
  }
}
.popup .popup-base {
  cursor: pointer;
  overflow: hidden;
}
.popup .popup-base--item {
  padding: 5px 0;
  margin: 0;
  font-size: 14px !important;
  text-align: center;
  color: #FFFFFF;
}
.popup .popup-base--item.bg-blue {
  background: var(--c-brand-2);
}
.popup .popup-base--item.bg-orange {
  background: #FF7264;
}
.popup .popup-base--media {
  display: block;
  overflow: hidden;
}
.popup .popup-base--media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms ease;
  display: block;
}
@media (hover: hover) {
  .popup .popup-base--media:hover img {
    transform: scale(1.1);
  }
}
.popup .popup-base--text {
  padding: 12px 16px 16px;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
.popup .popup-base--text small {
  display: block;
  margin-top: 6px;
  opacity: 0.75;
  font-size: 12px;
}

/* =========================
  ページ内では隠す（重要）
========================= */
.popup > .popup-modal {
  display: none;
}

/* =========================
  Overlay (全体の土台)
  ふわっと：display切替じゃなく opacity/visibility で制御
========================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  padding: 24px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ここが "ふわっと" の肝 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0ms linear 240ms;
}
.modal-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* 暗転もふわっと */
  opacity: 0;
  transition: opacity 240ms ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease, visibility 0ms;
}
.modal-overlay.is-open::before {
  opacity: 1;
}

/* =========================
  Modal Panel
  ふわっと：少し下＋わずかに縮小 → ふわっと出現
========================= */
.modal-panel {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: min(980px, 100%);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
}
.modal-overlay.is-open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-width: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* =========================
  Modal Content
  重要：モーダル内の .popup-modal は必ず表示する
========================= */
.modal-overlay.is-open .modal-body .popup-modal {
  display: block !important;
}

.popup-modal {
  padding: 40px 40px;
  background: #EEF4F9;
  max-height: 80vh;
}
.popup-modal .fwrap {
  overflow: hidden;
  height: 70vh;
}
@media (max-width: 1024px) {
  .popup-modal .fwrap {
    display: block;
  }
}
.popup-modal .fwrap .con-30 {
  width: 30%;
  max-width: 30%;
}
@media (max-width: 1024px) {
  .popup-modal .fwrap .con-30 {
    width: 100%;
    max-width: 100%;
  }
}
.popup-modal .fwrap .con-70 {
  width: 70%;
  max-width: 70%;
  padding-inline: 20px 40px;
  overflow: auto;
  height: 70vh;
}
@media (max-width: 1024px) {
  .popup-modal .fwrap .con-70 {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    height: 38vh;
  }
}
.popup-modal--media {
  overflow: hidden;
  text-align: center;
}
.popup-modal--media img {
  width: 70%;
  max-width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
  padding-bottom: 30px;
}
.popup-modal--name {
  font-size: 22px;
  margin: 20px 0;
}
.popup-modal--name small {
  margin-left: 5px;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.75;
}
.popup-modal--text {
  line-height: 1.85;
  margin: 0;
  font-size: 14px;
}

h3.popup-base--item {
  margin: 0 !important;
}

p.popup-base--item {
  font-weight: 700;
}
p.popup-base--item:not(:first-child) {
  margin-top: 40px;
}

.popup-modal--text {
  margin: 20px 0 0;
}

/* SP */
@media (max-width: 767px) {
  .modal-overlay {
    padding: 14px;
  }
  .popup-modal {
    padding: 18px;
    padding-top: 20px;
  }
  .popup-modal .fwrap {
    flex-direction: column;
    gap: 14px;
  }
  .popup-modal .con-30,
  .popup-modal .con-70 {
    width: 100%;
    padding-left: 0;
  }
  .popup-modal--title {
    font-size: 20px;
  }
}
/* bodyスクロール固定 */
body.is-modal-open {
  overflow: hidden;
}

/* 動きが苦手な人用（OS設定に従う） */
@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal-overlay::before,
  .modal-panel {
    transition: none !important;
  }
}
/* =========================================================
  utilities
  ・最後に上書きしてOKな小道具
  ・a11y / helpers
========================================================= */
/* utilities/_index.scss */
/* =========================================================
  utilities/_a11y.scss
  アクセシビリティ系ユーティリティ
========================================================= */
/* スクリーンリーダー専用（見た目に出さない） */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* フォーカスリングを視認性強めで出したい時 */
.focus-ring:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--c-ring);
}

/* タップハイライト抑制（必要な要素にだけ付ける） */
.no-tap-highlight {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
  utilities/_helpers.scss
  “本当に必要なやつだけ”の汎用ユーティリティ
  ※ 余白系は増やしすぎると設計が崩れるので最小に
========================================================= */
/* =========================================================
  text align
========================================================= */
.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

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

.t-big {
  font-size: 140%;
}

/* =========================================================
  font weight
========================================================= */
.t-light {
  font-weight: 300;
}

.t-normal {
  font-weight: 400;
}

.t-bold {
  font-weight: var(--fw-bold);
}

.t-black {
  font-weight: var(--fw-black);
}

/* =========================================================
  line-height
========================================================= */
.lh-tight {
  line-height: 1.3;
}

.lh-base {
  line-height: 1.6;
}

.lh-loose {
  line-height: 1.8;
}

/* =========================================================
  display helpers
========================================================= */
.d-block {
  display: block;
}

.d-none {
  display: none;
}

@media (min-width: 1024px) {
  .d-lg-block {
    display: block;
  }
  .d-lg-none {
    display: none;
  }
}
/* =========================================================
  responsive br
========================================================= */
.br-sp {
  display: inline;
}

.br-pc {
  display: none;
}

@media (min-width: 1024px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: inline;
  }
}
/* =========================================================
  spacing helpers（最小限）
========================================================= */
.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

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

.mt-0 {
  margin-top: 0 !important;
}

/* =========================================================
  margin-top / margin-bottom utilities
  10px ～ 100px（10刻み）
  ※ レイアウト破壊を防ぐため y軸のみ
========================================================= */
.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

/* =========================================================
  overflow
========================================================= */
.minw0 {
  min-width: 0 !important;
}

.oh {
  overflow: hidden !important;
}

/* =========================================================
  media helpers
========================================================= */
.media-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================================
  tap area
========================================================= */
.tap-area {
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
}

/* =========================================================
  Button alignment helpers
========================================================= */
/* 左寄せ（デフォルトだけど明示用） */
.btn-align-left {
  margin-right: auto;
}

/* 中央寄せ */
.btn-align-center {
  margin-left: auto;
  margin-right: auto;
}

/* 右寄せ */
.btn-align-right {
  margin-left: auto;
}

/* =========================================================
  Button row alignment
========================================================= */
.btn-row.is-left {
  justify-content: flex-start;
}
.btn-row.is-center {
  justify-content: center;
}
.btn-row.is-right {
  justify-content: flex-end;
}

.full-image {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* =========================================================
  Municipality list block
  携わっていただいた自治体名
========================================================= */
/* ================================
  Home Header Control
================================ */
.wrap-bl {
  background: #f1f6fb;
  border-radius: 12px;
  padding: 30px 24px;
  font-size: 15px;
  line-height: 1.9;
  color: #111;
  letter-spacing: 0.02em;
  /* 長文でも読みやすく */
  word-break: break-word;
  white-space: normal;
  /* 仕切り記号の視認性を少し上げる */
}
.wrap-bl::-moz-selection {
  background: rgba(0, 140, 202, 0.15);
}
.wrap-bl::selection {
  background: rgba(0, 140, 202, 0.15);
}
@media (max-width: 767px) {
  .wrap-bl {
    font-size: 14px;
    line-height: 1.8;
    padding: 20px 18px;
  }
}
.wrap-bl.c--green {
  margin-bottom: 50px;
  background: #F2F8F7;
}
.wrap-bl.c--green p {
  margin: 0;
  padding: 0;
}

.bg-alph-bk {
  background: var(--box-bg-a);
  padding: 100px;
  color: var(--c-ink-wh);
}
@media (max-width: 1024px) {
  .bg-alph-bk {
    padding: 40px 20px;
  }
}
.bg-alph-bk h3 {
  margin-bottom: 50px;
}
.bg-alph-bk p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

figure {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
figure img, figure picture {
  width: 100%;
  max-width: 100%;
  display: block;
}

h1.title-sec--article {
  font-size: clamp(20px, 3vw, 26px);
}

main#main.sec--privacy-policy h2, main#main.single h2 {
  color: #007BB1;
  font-size: clamp(18px, 3vw, 24px);
}
main#main.sec--privacy-policy a, main#main.single a {
  color: var(--c-main);
}
main#main.sec--privacy-policy p, main#main.single p {
  font-size: clamp(14px, 3vw, 16px);
}
main#main.sec--privacy-policy ul li:not(:last-child), main#main.sec--privacy-policy ol li:not(:last-child), main#main.single ul li:not(:last-child), main#main.single ol li:not(:last-child) {
  margin-bottom: 16px;
}
main#main.sec--privacy-policy ul, main#main.single ul {
  margin: 50px auto;
  padding: 0 0 0 50px;
  list-style: disc;
}
@media (max-width: 1024px) {
  main#main.sec--privacy-policy ul, main#main.single ul {
    margin: 30px auto;
    padding: 0 0 0 30px;
  }
}
main#main.sec--privacy-policy ol, main#main.single ol {
  margin: 50px auto;
  padding: 0 0 0 50px;
  list-style: decimal;
}
@media (max-width: 1024px) {
  main#main.sec--privacy-policy ol, main#main.single ol {
    margin: 30px auto;
    padding: 0 0 0 30px;
  }
}
main#main.main--about h2, main#main.main--about h3 {
  margin: 50px auto 100px;
}
@media (max-width: 1024px) {
  main#main.main--about h2, main#main.main--about h3 {
    margin: 20px auto 50px;
  }
}
main#main.main--about h4 {
  margin: 50px auto;
}
main#main h2 {
  line-height: 1.6em;
  margin: 0 0 50px;
}
@media (max-width: 1024px) {
  main#main h2 {
    margin: 0 0 30px;
  }
}
main#main h2.title-en {
  font-family: var(--font-en-heading);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: clamp(30px, 4vw, 50px);
}
main#main h2.title-en small {
  display: block;
  font-size: 40%;
}
@media (min-width: 1024px) {
  main#main h2.title-en small {
    margin-top: 0;
  }
}
main#main h2.title {
  font-size: clamp(24px, 4vw, 40px);
}
main#main h2.title-b {
  font-weight: 900;
  text-align: center;
  letter-spacing: 5px;
}
main#main h2.title-l-wh {
  text-align: left;
  color: var(--c-ink-wh);
}
main#main h3 {
  /* =========================================================
    Title : Map heading
    携わっていただいた自治体名
  ========================================================= */
}
main#main h3.title-map {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-en), system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #000;
  padding-left: 32px;
  margin: 50px 0 30px;
  /* map pin icon */
}
main#main h3.title-map::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../image/pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
main#main h3 {
  /* =========================================================
    Title : Label style
    最新の活動
  ========================================================= */
}
main#main h3.title-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: #0b8fd3;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  /* 位置調整（カード上に乗せる想定） */
  position: relative;
  z-index: 2;
  /* 日本語でも詰まらないように */
  white-space: nowrap;
}
main#main h3 {
  /* PCで少し大きく */
}
@media (min-width: 768px) {
  main#main h3 h3.title-label {
    font-size: 18px;
    padding: 12px 26px;
  }
}
main#main h3.title-about {
  position: relative;
  margin: 0 0 20px;
  padding: 5px 20px 5px 40px;
  font-size: clamp(16px, 3vw, 20px);
  color: var(--c-ink-wh);
  line-height: 1.4;
  overflow: hidden;
  z-index: -1;
}
main#main h3.title-about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  width: 60px;
  height: 100%;
  transform: skewX(-30deg);
  z-index: 1;
}
main#main h3.title-about.ti-color-01 {
  background: #008CCA;
}
main#main h3.title-about.ti-color-01::before {
  background: #008CCA;
}
main#main h3.title-about.ti-color-02 {
  background: #326EBA;
}
main#main h3.title-about.ti-color-02::before {
  background: #326EBA;
}
main#main h3.title-about.ti-color-03 {
  background: #3EA597;
}
main#main h3.title-about.ti-color-03::before {
  background: #3EA597;
}
main#main h4.title-step span {
  color: #3EA597 !important;
  font-family: var(--font-en) !important;
  font-size: clamp(28px, 4vw, 32px);
  margin-right: 20px;
}

.box-bg-bl {
  width: 100%;
  background: #EEF4F9;
  padding: 40px;
}

.bg-green {
  width: 100%;
  background: #F2F8F7;
  padding: 40px;
}

@media (max-width: 1024px) {
  .box-bg-bl,
  .bg-green {
    padding: 40px 20px;
  }
}

section p {
  margin: 0 0 50px;
}
section#section-02, section#section-04 {
  background: #F6FBFF;
}
section#section-first {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
section#section-first img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
section#section-first img.img-01 {
  position: relative;
}
section#section-first img.img-01, section#section-first img.img-02 {
  top: 0;
}
section#section-first img.img-03 {
  top: 16%;
}
@media (max-width: 1024px) {
  section#section-first img.img-03 {
    top: 23%;
  }
}
section#section-first img.img-04 {
  top: 25%;
}
@media (max-width: 1024px) {
  section#section-first img.img-04 {
    top: 34%;
  }
}
section#section-first img.img-05 {
  top: 6%;
}
@media (max-width: 1024px) {
  section#section-first img.img-05 {
    top: 25%;
  }
}
section#section-first img.img-06 {
  top: 40%;
}
@media (max-width: 1024px) {
  section#section-first img.img-06 {
    top: 38%;
  }
}
@media (max-width: 1024px) {
  section#section-first img.img-07 {
    top: 6%;
  }
}
section#section-first img.img-09 {
  width: 38%;
  margin: auto;
  top: -30%;
}
@media (max-width: 1024px) {
  section#section-first img.img-09 {
    width: 58%;
    top: -1%;
  }
}
section#section-first img.img-10 {
  margin: auto auto 0;
  bottom: 0;
  right: 0;
}
section#section-01 {
  padding-bottom: 100px;
}
section#section-01 .inner--80 {
  padding-top: 0;
  padding-bottom: 0;
}
section#section-01 figure#titleimage {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}
@media (max-width: 1024px) {
  section#section-01 figure#titleimage {
    width: 70%;
    max-width: 70%;
  }
}
section#section-01 h2 {
  text-align: center;
  margin: 70px 0 150px;
}
@media (max-width: 1024px) {
  section#section-01 h2 {
    text-align: left;
    margin: 30px 0 50px;
  }
}
section#section-01 p {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  section#section-01 p {
    text-align: left;
    margin-bottom: 50px;
  }
}
section#section-01 .fwrap .col {
  width: 45%;
  max-width: 45%;
}
@media (max-width: 1024px) {
  section#section-01 .fwrap .col {
    width: 100%;
    max-width: 100%;
  }
}
section#section-01 .btn--pill-outline {
  margin-top: 50px;
  margin-bottom: 50px;
}
section#section-02 {
  background: #f1f6fb;
}
section#section-02 .inner--80 {
  padding: 80px 20px;
}
section#section-02 .fwrap {
  align-items: flex-start;
}
section#section-02 .con-2 {
  position: relative;
}
section#section-02 img.position {
  width: 38%;
  position: absolute;
  left: -6%;
  bottom: -6%;
}
@media (max-width: 767px) {
  section#section-02 img.position {
    left: -1%;
  }
}
section#section-02 .sec-2-btn {
  text-align: right;
}
@media (max-width: 767px) {
  section#section-02 .sec-2-btn {
    text-align: center;
  }
}
section#sec-about-02 {
  background: url(../image/about-bg.png) no-repeat center center;
  background-size: cover;
}
section#sec--Advisor-introduction .list--Advisor-introduction {
  background: #F6FBFF;
}
section.sec--article {
  padding-top: 64px;
}
section.sec--article figure + p {
  margin-top: 50px;
  margin-bottom: 50px;
}
section#nav--single .inner {
  padding-top: 0;
}
@media (max-width: 1024px) {
  section#sec--certification .fwrap .con-50 {
    width: 100%;
    max-width: 100%;
  }
}
section#sec--certification .fwrap .con-50 a img {
  width: 300px;
}
@media (max-width: 1024px) {
  section#sec--certification .fwrap .con-40 {
    width: 100%;
    max-width: 100%;
  }
}
section#sec-service--04 .box-bg-bl {
  padding: 0;
}

/* ================================
  Header layout
================================ */
.header-inner {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #fff;
}

.site-title img {
  height: 40px;
  width: auto;
}

/* ================================
  FV section
================================ */
#section-first {
  position: relative;
  overflow: hidden;
}

#section-first img {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

#section-first .img-01 {
  position: relative;
}

/* 初期位置 */
#section-first .img-01,
#section-first .img-10,
#section-first .img-02,
#section-first .img-03,
#section-first .img-04,
#section-first .img-05,
#section-first .img-06 {
  transform: translateY(20px);
}

#section-first .img-07 {
  transform: translate(120px, -80px);
}

#section-first .img-09 {
  transform: translateY(40px);
}

/* アニメ後 */
#section-first.is-animated img {
  opacity: 1;
}

#section-first.is-animated .img-01 {
  transition-delay: 0s;
}

#section-first.is-animated .img-10 {
  transition-delay: 0.2s;
}

#section-first.is-animated .img-02 {
  transition-delay: 0.4s;
}

#section-first.is-animated .img-03 {
  transition-delay: 0.6s;
}

#section-first.is-animated .img-04 {
  transition-delay: 0.8s;
}

#section-first.is-animated .img-05 {
  transition-delay: 1s;
}

#section-first.is-animated .img-06 {
  transition-delay: 1.2s;
}

#section-first.is-animated .img-01,
#section-first.is-animated .img-10,
#section-first.is-animated .img-02,
#section-first.is-animated .img-03,
#section-first.is-animated .img-04,
#section-first.is-animated .img-05,
#section-first.is-animated .img-06 {
  transform: translateY(0);
}

#section-first.is-animated .img-07 {
  transform: translate(0, 40px);
  transition-delay: 1.5s;
}

#section-first.is-animated .img-09 {
  transform: translateY(0);
  transition-delay: 2.1s;
}

/* =========================================================
  Activity list
========================================================= */
.activityBox .con-2 a {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .activityBox .con-2 {
    width: 100%;
    max-width: 100%;
  }
}
.activityBox .con-2.contenaer-01 {
  order: 1;
}
@media (max-width: 1024px) {
  .activityBox .con-2.contenaer-01 {
    order: 1;
  }
}
.activityBox .con-2.contenaer-02 {
  order: 2;
}
@media (max-width: 1024px) {
  .activityBox .con-2.contenaer-02 {
    order: 3;
  }
}
.activityBox .con-2.contenaer-03 {
  order: 3;
}
@media (max-width: 1024px) {
  .activityBox .con-2.contenaer-03 {
    order: 2;
  }
}
.activityBox .activity-leftimage {
  position: relative;
  height: 100%;
}
.activityBox .wrap--leftimage {
  position: relative;
  margin-bottom: 70px;
  order: 1;
}
@media (max-width: 767px) {
  .activityBox .wrap--leftimage {
    order: 1;
  }
}
.activityBox .activity-news {
  order: 2;
}
@media (max-width: 767px) {
  .activityBox .activity-news {
    order: 3;
  }
}
.activityBox .activity-text {
  order: 3;
}
@media (max-width: 767px) {
  .activityBox .activity-text {
    order: 2;
  }
}
.activityBox .sec-2-btn {
  order: 4;
}
.activityBox .activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media (max-width: 767px) {
  .activityBox .activity-list {
    margin-bottom: 50px;
  }
}
.activityBox .activity-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  padding: 0;
  align-items: center;
}
@media (max-width: 767px) {
  .activityBox .activity-item {
    grid-template-columns: 1fr;
  }
}
.activityBox .activity-item .activity-thumb {
  overflow: hidden;
  width: 35%;
  max-width: 35%;
}
@media (max-width: 1024px) {
  .activityBox .activity-item .activity-thumb {
    width: 30%;
    max-width: 30%;
  }
}
@media (hover: hover) {
  .activityBox .activity-item .activity-thumb a:hover img {
    transform: scale(1.1);
    transition: transform 500ms ease;
  }
}
.activityBox .activity-item .activity-thumb a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.activityBox .activity-item .activity-body {
  min-width: 0;
  width: 65%;
  max-width: 65%;
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .activityBox .activity-item .activity-body {
    width: 70%;
    max-width: 70%;
    padding: 0 5px 0 10px;
  }
}
.activityBox .activity-item .activity-body h3.activity-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 10px 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .activityBox .activity-item .activity-body h3.activity-title {
    font-size: 14px;
    margin: 0;
  }
}
.activityBox .activity-item .activity-body p {
  margin: 0;
}
.activityBox .activity-item .activity-body p.activity-date {
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .activityBox .activity-item .activity-body p.activity-date {
    font-size: 2.5vw;
  }
}
.activityBox .activity-item .activity-body p.activity-meta {
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1024px) {
  .activityBox .activity-item .activity-body p.activity-meta {
    font-size: 3vw;
  }
}

/* =========================================================
  Athlete Card
========================================================= */
.athlete-card {
  overflow: hidden;
  text-align: center;
  transition: transform 500ms ease, box-shadow 200ms ease;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .athlete-card {
    width: 47%;
    max-width: 47%;
  }
}
/* =========================
  Category label
========================= */
.athlete-card__category {
  margin: 0 !important;
  padding: 5px 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.athlete-card__category.bg-blue {
  background: var(--c-brand-2);
}
.athlete-card__category.bg-orange {
  background: #FF7264;
}

/* =========================
  Image
========================= */
.athlete-card__media {
  display: block;
  overflow: hidden;
}
.athlete-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms ease;
}
@media (hover: hover) {
  .athlete-card__media:hover img {
    transform: scale(1.1);
  }
}

/* =========================
  Name & role
========================= */
.athlete-card__name {
  margin: 0;
  padding: 16px 12px 18px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--c-ink);
}
.athlete-card__name small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

/* =========================================================
  Service Card（link label / no shadow）
========================================================= */
.service-card {
  padding: 28px 0 32px;
  /* シャドウなし */
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
  Label（左寄せ・リンク）
========================= */
.service-card__label {
  align-self: flex-start;
  display: inline-block;
  padding: 14px;
  background: #326EBA;
  color: #fff;
  font-size: 13px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
  transition: opacity 160ms ease, transform 160ms ease;
}
.service-card__label.general {
  background: #FF7264;
}

/* =========================
  Image（中央）
========================= */
.service-card__media {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: 1s ease;
}
@media (hover: hover) {
  .service-card__media:hover img {
    transform: scale(1.1);
    transition: 1s ease;
  }
}

/* =========================
  Text（中央）
========================= */
.service-card__text {
  margin: 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-ink);
}
.service-card__text a {
  text-decoration: none;
}

/* =========================
  Button（中央）
========================= */
.service-card .btn {
  margin-top: 10px;
}

/* =========================================================
  Quick Links
========================================================= */
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .quick-links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
  Card
========================================================= */
.quick-link {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #B3B3B3;
  border-radius: 7px;
  padding: 0;
  text-decoration: none;
  color: var(--c-ink);
  font-size: 15px;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
@media (hover: hover) {
  .quick-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-1);
  }
}

/* =========================================================
  Icon area
========================================================= */
.quick-link__icon {
  width: 70px;
  height: 70px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-link__icon img {
  width: auto;
  height: 60%;
  display: block;
}

/* =========================================================
  Text
========================================================= */
.quick-link__text {
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

/* =========================================================
  Color variations
========================================================= */
.quick-link.is-blue .quick-link__icon {
  background: #89ADDC;
}

.quick-link.is-sky .quick-link__icon {
  background: #76CBE2;
}

.quick-link.is-green .quick-link__icon {
  background: #75CABE;
}

.cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1280/346;
  display: flex;
  align-items: center;
}
.cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.cover .cover-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-en-heading);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: clamp(30px, 4vw, 50px);
  margin-left: 10%;
  color: white;
}
@media (max-width: 1024px) {
  .cover .cover-title {
    margin-bottom: 16%;
  }
}
.cover .cover-title small {
  display: block;
  font-size: 40%;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .cover .cover-title small {
    margin-top: 30px;
  }
}
.cover .cover-title.cover-title-bk {
  color: var(--nav-fg);
}

.title-image {
  text-align: center;
  width: 100%;
  padding: 40px 0;
}
.title-image.ti-about {
  background: url(../image/about-title-02.png) no-repeat center center;
  background-size: 100%;
}
@media (max-width: 1024px) {
  .title-image.ti-about {
    display: none;
  }
}

.fwrap.fwrap-about .con-30 {
  padding-right: 40px;
  position: relative;
  height: 100%;
}
@media (max-width: 1024px) {
  .fwrap.fwrap-about .con-30 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding-right: 0;
  }
}
.fwrap.fwrap-about .con-30 img {
  width: 120%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1024px) {
  .fwrap.fwrap-about .con-30 img {
    width: 100%;
    position: relative;
    margin: 0 auto 20px;
    top: auto;
    left: auto;
    bottom: auto;
  }
}
@media (max-width: 1024px) {
  .fwrap.fwrap-about .con-70 {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}
.fwrap.fwrap-about .con-70 h3 {
  width: 80%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .fwrap.fwrap-about .con-70 h3 {
    width: 100%;
  }
}
.fwrap.fwrap-about .con-70 h3.ti-color-02 {
  margin-left: 50px !important;
}
@media (max-width: 1024px) {
  .fwrap.fwrap-about .con-70 h3.ti-color-02 {
    margin-left: 0 !important;
  }
}
.fwrap.fwrap-about .con-70 p {
  width: 80%;
}
@media (max-width: 1024px) {
  .fwrap.fwrap-about .con-70 p {
    width: 100%;
  }
}
.fwrap.fwrap-about .con-70 p.p-position {
  margin-left: 50px !important;
}
@media (max-width: 1024px) {
  .fwrap.fwrap-about .con-70 p.p-position {
    margin-left: 0 !important;
  }
}
.fwrap.fwrap-about .con-70 p:last-child {
  margin-bottom: 0;
}

.about-photo {
  display: grid;
  grid-template-columns: 1fr 25% 25% 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .about-photo {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.about-photo .col {
  text-align: center;
}
.about-photo .col img {
  display: block;
  width: 100%;
  margin: 0;
}
.about-photo .col h3 {
  margin: 10px 0 0 !important;
}
.about-photo .col h3 small {
  font-size: clamp(12px, 3vw, 14px);
  display: block;
  margin-bottom: 10px;
}
.about-photo .col h3 span {
  font-size: clamp(12px, 3vw, 14px);
}
.about-photo .col.col-left {
  grid-column: 2/3;
}
@media (max-width: 1024px) {
  .about-photo .col.col-left {
    grid-column: 1/2;
  }
}
.about-photo .col.col-right {
  grid-column: 3/4;
}
@media (max-width: 1024px) {
  .about-photo .col.col-right {
    grid-column: 2/3;
  }
}

.Advisor--inner {
  display: grid;
  grid-template-columns: 1fr 30% 30% 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .Advisor--inner {
    display: block;
    grid-template-columns: inherit;
    gap: none;
  }
}
.Advisor--inner .col:first-child {
  grid-column: 2/3;
}
@media (max-width: 1024px) {
  .Advisor--inner .col:first-child {
    grid-column: 1/2;
    margin-bottom: 20px;
  }
}
.Advisor--inner .col:last-child {
  grid-column: 3/4;
}
@media (max-width: 1024px) {
  .Advisor--inner .col:last-child {
    grid-column: 2/3;
  }
}

.wrap--pointgreen {
  padding: 40px 0;
  background: url(../image/pointgreen--bg.png) no-repeat center center;
  background-size: auto 100%;
}
@media (max-width: 1024px) {
  .wrap--pointgreen {
    background-position: center bottom 30%;
    background-size: 80%;
  }
}
@media (max-width: 1024px) {
  .wrap--pointgreen .con-2 {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .wrap--pointgreen .con-2 h4 {
    line-height: 2;
  }
}
.wrap--pointgreen .con-2 img {
  width: 80%;
  margin: 0 auto 0 0;
}

@media (max-width: 1024px) {
  .pointgreen--image .con-4 {
    width: 48%;
    max-width: 48%;
    margin-bottom: 20px;
  }
}

.text--grid {
  display: grid;
  grid-template-columns: 15% auto;
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .text--grid {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .text--grid .thumb {
    width: 60%;
    margin: 20px auto 0;
  }
}

.Organization dl {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 30% 70%;
}
.Organization dl:nth-child(odd) {
  background: #F2F8F7;
}
.Organization dl dt, .Organization dl dd {
  padding: 20px;
}

.blog--card .con-3 {
  margin-bottom: 50px;
}
.blog--card .con-3 h3 {
  color: var(--c-main);
  margin: 20px 0;
  padding: 0;
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.6;
}
.blog--card .con-3 a {
  text-decoration: none;
  overflow: hidden;
}
.blog--card .con-3 a figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog--card .con-3 a figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms ease;
}
@media (hover: hover) {
  .blog--card .con-3 a figure:hover img {
    transform: scale(1.1);
  }
}
.blog--card .con-3 p {
  margin: 10px 0 0;
}
.blog--card .con-3 p.cast {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
  min-width: 0;
}

/* =========================================================
  WordPress Pagination
  single / archive 両対応
========================================================= */
.pagination,
.navigation.pagination {
  margin: 40px 0;
  text-align: center;
}
.pagination .nav-links,
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.pagination .page-numbers,
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: #008CCA;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pagination .page-numbers:hover,
.navigation.pagination .page-numbers:hover {
  opacity: 0.7;
}
.pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
  border: 1px solid #008CCA;
  font-weight: 600;
  pointer-events: none;
}
.pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
  pointer-events: none;
}
.pagination,
.navigation.pagination {
  /* 前へ・次へ */
}
.pagination .prev,
.pagination .next,
.navigation.pagination .prev,
.navigation.pagination .next {
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 22px;
  padding: 4px 6px;
}
.pagination,
.navigation.pagination {
  /* WPのアクセシビリティ見出し */
}
.pagination .screen-reader-text,
.navigation.pagination .screen-reader-text {
  display: none;
}

@media (max-width: 768px) {
  .pagination .page-numbers,
  .navigation.pagination .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .pagination .prev,
  .pagination .next,
  .navigation.pagination .prev,
  .navigation.pagination .next {
    font-size: 20px;
  }
}
/* =========================================================
  Info Box
========================================================= */
.info-box {
  padding: 12px 0;
  background: #fff;
}

.info-list {
  display: flex;
  flex-direction: column;
}

.info-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}
.info-item dt, .info-item dd {
  margin-bottom: 10px !important;
}
.info-item dt {
  width: 48px !important;
  padding: 2px 6px;
  background: #E9F5FF;
  color: #333;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.info-item dd {
  padding-left: 20px !important;
  margin: 0;
  color: #333;
}

.fwrap.a-center.input-contact a {
  color: var(--c-main);
  text-decoration: underline;
}
.fwrap.a-center.input-contact .con-30,
.fwrap.a-center.input-contact .con-70 {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .fwrap.a-center.input-contact .con-30,
  .fwrap.a-center.input-contact .con-70 {
    width: 100%;
    max-width: 100%;
  }
}
.fwrap.a-center.input-contact .con-30 p,
.fwrap.a-center.input-contact .con-70 p {
  margin: 0;
  padding: 0;
}
.fwrap.a-center.input-contact .con-30 {
  position: relative;
  padding-left: 50px;
}
@media (max-width: 1024px) {
  .fwrap.a-center.input-contact .con-30 {
    margin-bottom: 20px;
  }
}
.fwrap.a-center.input-contact .con-30.input-check::before {
  content: "必須";
  display: block;
  padding: 3px 5px;
  background: #FF7264;
  color: var(--c-ink-wh);
  font-size: clamp(10px, 2vw, 12px);
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* =========================================================
  Contact Form 7 Submit Button
========================================================= */
.form-submit,
p:has(.wpcf7-submit) {
  text-align: center;
  margin-top: 40px;
}

.wpcf7-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #008CCA;
  background: #fff;
  color: #008CCA;
  padding: 14px 40px;
  min-width: 280px;
  font-size: 16px;
  line-height: 1;
  border-radius: 9999px;
  cursor: pointer;
  transition: 0.25s ease;
}
.wpcf7-submit:hover {
  background: #008CCA;
  color: #fff;
}
.wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.layout--service {
  display: grid;
  grid-template-columns: 1fr 46% 40%;
  gap: 5%;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .layout--service {
    display: block;
    grid-template-columns: none;
    gap: 0;
    padding: 50px 20px;
  }
}
.layout--service .service--text {
  grid-column: 2/3;
}
@media (max-width: 1024px) {
  .layout--service .service--text {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .layout--service .fwrap .con-2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .fwrap.transfer .con-2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.fwrap.transfer .con-2 h4 {
  font-size: clamp(14px, 3vw, 16px);
}
.fwrap.transfer .con-2 h4 img {
  display: inline-block;
  width: 11px;
  margin-right: 5px;
}
@media (max-width: 1024px) {
  .fwrap.transfer.con-60 {
    width: 100%;
    max-width: 100%;
  }
}

.service--event {
  width: 100%;
  margin: 50px auto;
}
.service--event.box--green h3.service--event-title {
  background: #3E8092;
}
.service--event.box--green dl.service--event-list {
  background: var(--c-ink-wh);
}
.service--event.box--dgreen h3.service--event-title {
  background: #2D786D;
}
.service--event.box--dgreen dl.service--event-list {
  background: #F2F8F7;
}
.service--event h3.service--event-title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  display: flex;
  background: #415B7C;
  color: var(--c-ink-wh);
  padding: 15px 50px;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.service--event dl.service--event-list {
  position: relative;
  background: #F4FAFF;
  padding: 50px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: grid;
  grid-template-columns: 30% 1fr;
}
@media (max-width: 1024px) {
  .service--event dl.service--event-list {
    padding: 40px 20px;
  }
}
.service--event dl.service--event-list dt,
.service--event dl.service--event-list dd {
  align-self: stretch;
  margin: 0;
}
.service--event dl.service--event-list dt {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}
.service--event dl.service--event-list dt:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #989898;
  z-index: 0;
}
.service--event dl.service--event-list dt img {
  width: 35%;
  margin: 0 auto auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .service--event dl.service--event-list dt img {
    width: 85%;
    margin-left: 0;
  }
}
.service--event dl.service--event-list dd {
  width: 100%;
  padding: 20px 0;
}
.service--event dl.service--event-list dd:not(:last-child) {
  border-bottom: #9D9D9D dotted 2px;
}
.service--event dl.service--event-list dd h4 img {
  display: inline-block;
  height: 1rem;
  width: auto;
  margin-right: 5px;
  margin-top: 2px;
}
.service--event dl.service--event-list dd p {
  margin: 0 0 10px;
}
.service--event dl.service--event-list dd a img {
  width: 300px;
}
@media (max-width: 1024px) {
  .service--event dl.service--event-list dd .fwrap .con-2 {
    width: 100%;
    max-width: 100%;
  }
  .service--event dl.service--event-list dd .fwrap .con-2:first-child {
    margin-bottom: 20px;
  }
}

ol.point--list {
  width: 75%;
  margin: 30px auto 50px;
}
@media (max-width: 1024px) {
  ol.point--list {
    width: 100%;
    margin: 20px auto;
  }
}
ol.point--list li {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 130%;
}
ol.point--list li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  ol.point--list li:not(:last-child) {
    margin-bottom: 50px;
  }
}
ol.point--list li img {
  width: 150px;
  margin-right: 50px;
}
@media (max-width: 1024px) {
  ol.point--list li img {
    width: 30%;
    margin-right: 20px;
  }
}

.wrap--Appointment .con-3 {
  margin-bottom: 20px;
}