/* =============================================
   Design tokens (Figma: 滋賀DCキャンペーン)
   ============================================= */
:root {
  --color-primary: #000;
  --text-blue: #005bac;
  --main: #00aae8;
  --accent: #ed6d00;
  --accent2: #1eac4b;
  --yellow: #fff000;
  --white: #ffffff;
  --black: #000000;
  --bg-light-blue: #e2f3f9;
  /* サポーター募集カード本文（Figma: bg-orange / bg-green, node 6201:3207） */
  --bg-supporter-kanko: #f9eee2;
  --bg-supporter-kanko-accent: var(--accent);
  --bg-supporter-omotenashi: #ecf9e2;
  --bg-supporter-omotenashi-accent: var(--accent2);
  --text-grey: #595757;
  --font-zen: "Zen Maru Gothic", sans-serif;
  --line-height-tight: 1.2;
  --line-height-body: 1.8;
  --shadow-card: 0 0 10px rgba(0, 0, 0, 0.25);
  --shadow-section: 0 4px 4px rgba(0, 0, 0, 0.25);
  --radius-pill: 1000px;
  --radius-md: 8px;
  --radius-lg: 40px;

  /* ヘッダー実高（padding 8+8 + ナビ高 40 + border 1）— SP の MV 高さ 256px 指定時に減算 */
  --header-height: 57px;
  /* タブレット時 .header は padding 12+12 + ナビ 40 + border 1 — MV 512px 指定時に減算 */
  --header-height-md: 65px;

  /* Fluid typography base (SP〜小さめのPC想定) */
  --font-size-min: 14px; /* 最小ベースフォントサイズ */
  --font-size-max: 18px; /* 最大ベースフォントサイズ */
  --font-size-root: clamp(
    var(--font-size-min),
    4.1vw,
    var(--font-size-max)
  );

  --font-size-heading-min: 26px;   /* 最小 Heading フォントサイズ */
  --font-size-heading-max: 30px;   /* 最大 Heading フォントサイズ */
  --font-size-heading: clamp(
    var(--font-size-heading-min),
    7.1vw,
    var(--font-size-heading-max)
  );

}

/* =============================================
   Base
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-blue);
  background: var(--white);
  margin: 0;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

p {
  margin: 0 0 0.5em;
}
p:last-child {
  margin-bottom: 0;
}

br.br-pc {
  display: none;
}

button {
  font-family: var(--font-zen);
}

@media (min-width: 768px) {
  br.br-pc {
    display: inline;
  }
  br.br-sp {
    display: none;
  }
}

/* =============================================
   Layout (SP first, 390px base)
   ============================================= */
.page-top {
  position: relative;
  margin: 0 auto;
  min-height: 100vh;
}

/* =============================================
   Header
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 500; /* コンテンツより上・ドロワー(1000)より下 */
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
}

/* ヘッダー内コンテンツ幅（MV と揃えて最大 1920px） */
.header__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}

.logo-header {
  width: min(332px, 60vw);
  height: 30px;
  display: flex;
  align-items: center;
}
.logo-header__link {
  display: inline-flex;
  width: 100%;
  height: 100%;
}
.logo-header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-menu {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.btn-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--main);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-menu.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.btn-menu.is-open span:nth-child(2) {
  opacity: 0;
}
.btn-menu.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Figma: header / 6015:1288 — タブレット以上で表示（SP は非表示） */
.header-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px 32px;
  flex: 1;
  min-width: 0;
}

.header-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav__links a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--main);
  text-decoration: none;
  white-space: nowrap;
}

.header-nav__links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-nav__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-nav__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.header-nav__btn--kanko {
  background: var(--accent);
}

.header-nav__btn--omotenashi {
  background: var(--accent2);
}

.header-nav__btn--dc {
  background: var(--main);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header-nav__actions {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .logo-header {
    width: 332px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .logo-header {
    width: 332px;
    height: 40px;
  }
}

/* =============================================
   Follow Menu (追従メニュー)
   ============================================= */
.follow-menu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 600;
}

.follow-menu__btn {
  box-sizing: border-box;
  padding: 24px 16px;
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-root);
  text-align: center;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: 'vrt2';
  border-radius: 8px 0 0 8px; /* rounded TL/BL only */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.follow-menu__btn--kanko {
  background: var(--accent); /* #ED6D00 */
}

.follow-menu__btn--omotenashi {
  background: var(--accent2); /* #1EAC4B */
}

/* =============================================
   MV (Hero)
   ============================================= */
.mv {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.mv-img-wrap {
  position: relative;
  width: 100%;
}

/* SP: カンプ上の 256px はヘッダー込み想定のため、画像は 256 − ヘッダー高（タブレット・ワイドは下記） */
.mv-img {
  display: block;
  width: 100%;
  height: calc(256px - var(--header-height));
  aspect-ratio: unset;
  object-fit: cover;
  object-position: bottom;
  background: var(--bg-light-blue);
}
.mv-img[src*="images/"] {
  min-height: 0;
}

/* Figma: MV テキスト text / 6201:3090 — 黄は background-color、装飾は透過 SVG のみ（多層だと環境によっては不具合になりやすい） */
.mv-text {
  background-color: #fefac5;
  background-image: url("../images/bg-repeat-sp.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  /* Figma: テキスト 6201:3091 直上の余白（旧 80px から詰め） */
  padding: 56px 16px 40px;
  text-align: center;
}

.mv-text .lead {
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.714285);
  line-height: 2.4;
  color: var(--text-blue);
  margin: 0;
}

.mv-logo {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 40vw, 200px);
  height: clamp(120px, 40vw, 200px);
}
.mv-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Figma: ImgMv 6004:1067 — img-mv 1（6004:1066）3840×1024。picture で mv-wide.png を使用 */
@media (min-width: 768px) {
  .mv-img {
    height: auto;
    aspect-ratio: 3840 / 1024;
    object-position: bottom;
  }

  .mv-img[src*="images/"] {
    min-height: 0;
  }

  .mv-logo {
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
  }
}

/* Figma: BgRepeat（6056:12665）— 透過 SVG の装飾のみを縦リピート。下地は各セクションの background-color */
/* section-role（6201:3120）・section-qa（6201:3469）は繰り返し背景なし */
.section-intro,
.section-about {
  background-image: url("../images/bg-repeat-sp.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
}

.section-intro,
.section-about {
  background-color: var(--white);
}

.section-role,
.section-qa {
  background-color: var(--bg-light-blue);
}

/* =============================================
   Section: Intro（Figma: section-intro / 6201:3100）
   ============================================= */
.section-intro {
  padding: 24px 16px 40px;
  text-align: center;
}

.section-intro .title {
  font-weight: 700;
  font-size: var(--font-size-heading);
  line-height: var(--line-height-body);
  color: var(--text-blue);
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}

.section-intro .desc {
  font-weight: 500;
  font-size: calc(var(--font-size-root) + 2px);
  line-height: 2.4;
  color: var(--text-blue);
}

/* =============================================
   Section: Role (役割)
   ============================================= */
.section-role {
  padding: 40px 16px;
}

.section-role .section-title {
  font-weight: 700;
  font-size: var(--font-size-heading);
  line-height: var(--line-height-body);
  color: var(--main);
  text-align: center;
  margin-bottom: 32px;
}

.cards-role {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.card-role {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  max-width: 352px;
  width: 100%;
  text-align: center;
}

.card-role .thumb {
  width: 100%;
  max-width: 304px;
  aspect-ratio: 1;
  margin: 0 auto 16px;
  object-fit: cover;
}
.card-role .thumb:not([src]),
.card-role .thumb[src=""] {
  background: var(--bg-light-blue);
}
.cmp-supporter .head .img-wrap img {
  background: transparent;
}

.card-role .role-title {
  margin-bottom: 8px;
}

.card-role .role-title img {
  display: block;
  width: 100%;
  max-width: 256px;
  height: auto;
  margin: 0 auto;
}

/* Figma: card-role 説明（6201:3146 ほか）— 見出し画像は中央、本文は左寄せ */
.card-role .role-desc {
  font-weight: 500;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-blue);
  text-align: left;
}

/* =============================================
   Section: 登録数 (Subs)（Figma: section-subs / 6201:3173）
   ============================================= */
.section-subs {
  display: none;
  background-color: #fefac5;
  background-image: url("../images/bg-repeat-sp.svg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  padding: 40px 16px;
  box-shadow: var(--shadow-section);
  text-align: center;
}

.section-subs .lead {
  font-weight: 700;
  font-size: var(--font-size-heading);
  line-height: var(--line-height-body);
  color: var(--main);
  margin-bottom: 16px;
}

/* Figma: bubble / 6201:3175（SP: 幅358 / ピル＋ Polygon 40×23） */
.section-subs .subs-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 358px;
  margin: 0 auto 8px;
}

.section-subs .subs-bubble__text {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding: calc(var(--font-size-heading) * 1.4285714 - 32px) 32px;
  background: var(--main);
  color: var(--white);
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 1.4285714);
  line-height: 1;
  letter-spacing: 3.2px;
  border-radius: var(--radius-pill);
  text-align: center;
}

.section-subs .subs-bubble__tail {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 23px solid var(--main);
  margin-top: -1px;
}

.section-subs .number {
  font-weight: 900;
  font-size: calc(var(--font-size-heading) * 3.571429);
  line-height: 1;
  color: var(--main);
}

.section-subs .unit {
  font-weight: 900;
  font-size: calc(var(--font-size-heading) * 2);
  color: var(--main);
  vertical-align: bottom;
  margin-left: 4px;
}

/* Figma: Line 1 / 6201:3183 — 358×2 main */
.section-subs .subs-divider {
  display: block;
  width: 100%;
  max-width: 358px;
  height: 2px;
  margin: 16px auto;
  border: 0;
  background: var(--main);
}

.section-subs .note {
  font-weight: 500;
  font-size: var(--font-size-root);
  color: var(--main);
  margin-top: 0;
}

/* =============================================
   Section: 大募集！ / 観光・おもてなし
   ============================================= */
.section-wanted {
  background: var(--white);
  padding: 40px 16px 0;
  overflow-x: hidden;
}

.cmp-supporter-title {
  text-align: center;
  margin-bottom: 24px;
}

.cmp-supporter-title .label {
  font-weight: 700;
  font-size: var(--font-size-heading);
  line-height: var(--line-height-body);
  color: var(--main);
}

.cmp-supporter-title .catch {
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 2);
  line-height: 1.4;
  color: var(--main);
}

/* 塗りは画面幅いっぱい、本文は .cmp-supporter__inner で max-width: 350px */
.cmp-supporter {
  border-radius: 0;
  overflow: hidden;
  width: calc(100% + 32px);
  max-width: none;
  margin-left: -16px;
  margin-right: -16px;
}

.cmp-supporter--after-sibling {
  margin-top: 0;
}

.cmp-supporter__inner {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.cmp-supporter .head {
  color: var(--white);
  padding: 40px 0 32px;
}

.cmp-supporter .head .cmp-supporter__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "media"
    "pill"
    "sub";
}

/* SP: DOM は左カラム用ラッパーだが、見た目は「見出し→画像→対象→本文」（Figma 通り） */
.cmp-supporter .head__text {
  display: contents;
}

.cmp-supporter .head__media {
  grid-area: media;
  width: 100%;
}

.cmp-supporter--kanko .head {
  background: var(--bg-supporter-kanko-accent);
}

.cmp-supporter--omotenashi .head {
  background: var(--bg-supporter-omotenashi-accent);
}

.cmp-supporter .head .title {
  grid-area: title;
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 1.4285714);
  line-height: var(--line-height-tight);
  text-align: center;
  margin-bottom: 24px;
}

.cmp-supporter .head .img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light-blue);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.cmp-supporter--kanko .head .img-wrap {
  background: var(--bg-supporter-kanko);
}

.cmp-supporter--omotenashi .head .img-wrap {
  background: var(--bg-supporter-omotenashi);
}

.cmp-supporter .head .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-subtitle-pill {
  background: var(--white);
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.6428571);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  text-align: center;
  margin-bottom: 16px;
}

.cmp-supporter--kanko .cmp-subtitle-pill {
  color: var(--accent);
}

.cmp-supporter--omotenashi .cmp-subtitle-pill {
  color: var(--accent2);
}

.cmp-supporter .head .cmp-subtitle-pill {
  grid-area: pill;
}

.cmp-supporter .head .sub {
  grid-area: sub;
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.9285714);
  line-height: 1.4;
  text-align: center;
  color: var(--white);
}

/* head → body の境（波形 SVG） */
.cmp-supporter--kanko .cmp-supporter__wave,
.cmp-supporter--omotenashi .cmp-supporter__wave {
  display: block;
  margin: 0;
  line-height: 0;
}

/* Figma: img-supporter-wabe-sp — body 色の下地（6201:3384 の bg-green 相当） */
.cmp-supporter--omotenashi .cmp-supporter__wave {
  background: var(--bg-supporter-omotenashi);
}

/* Figma: img-supporter-wabe-sp — body 色の下地（観光サポーター: bg-orange 相当） */
.cmp-supporter--kanko .cmp-supporter__wave {
  background: var(--bg-supporter-kanko);
}

.cmp-supporter--kanko .cmp-supporter__wave img,
.cmp-supporter--omotenashi .cmp-supporter__wave img {
  display: block;
  width: 100%;
  height: 68px;
}

.cmp-supporter .body {
  padding: 40px 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.cmp-supporter--kanko .body {
  background: var(--bg-supporter-kanko);
}

.cmp-supporter--omotenashi .body {
  background: var(--bg-supporter-omotenashi);
}

.cmp-supporter .body .subtitle {
  color: var(--white);
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.7857143);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  text-align: center;
  margin-bottom: 24px;
}

.cmp-supporter--kanko .body .subtitle {
  background: var(--accent);
}

.cmp-supporter--omotenashi .body .subtitle {
  background: var(--accent2);
}

.cmp-supporter .body .check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.cmp-supporter .body .check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.8571429);
  line-height: 1.4;
  color: var(--text-blue);
}

.cmp-supporter .body .check-list__text {
  flex: 1;
  min-width: 0;
}

.cmp-supporter .body .check-list__lead {
  margin: 0;
  font-weight: 700;
  font-size: calc(var(--font-size-root) + 8px);
  line-height: 1.4;
  color: var(--text-blue);
}

.cmp-supporter .body .check-list__note {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: calc(var(--font-size-root) - 2px);
  line-height: var(--line-height-body);
  color: var(--text-blue);
}

/* 活動内容の注釈（ブロック下・レガシー） */
.cmp-supporter .body .check-note {
  font-weight: 700;
  font-size: calc(var(--font-size-root) - 2px);
  line-height: var(--line-height-body);
  color: var(--text-blue);
  margin: 0 0 24px;
}

/* 登録のメリット（カード） */
.cmp-supporter .body .merit-cards {
  margin-bottom: 24px;
}

.cmp-supporter .body .merit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 32px;
  margin-bottom: 24px;
  text-align: center;
}

/* Figma: merit / 6201:3297 — img-wanted-merit 278×185.33（300:200） */
.cmp-supporter .body .merit-card__img {
  width: 100%;
  aspect-ratio: 300 / 200;
  margin: 0 0 8px;
  overflow: hidden;
  border-radius: 4px;
}

.cmp-supporter .body .merit-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-supporter .body .merit-card__img--benefit-kanko {
  background: var(--white);
}

.cmp-supporter .body .merit-card__img--benefit-kanko img {
  object-fit: contain;
}

.cmp-supporter .body .merit-card--split {
  padding: 24px;
}

.cmp-supporter .body .merit-title {
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 1.1428571);
  line-height: 1.4;
  color: var(--text-blue);
  margin-bottom: 8px;
}

.cmp-supporter .body .merit-desc {
  font-weight: 500;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-blue);
}

.cmp-supporter .body .merit-divider {
  height: 2px;
  background: var(--main);
  margin: 24px 0;
}

.cmp-supporter .body .merit-note {
  font-weight: 500;
  font-size: calc(var(--font-size-root) - 4px);
  color: var(--text-blue);
  margin: 8px 0 0;
}

/* Figma: icon-check / 6201:3284 — 塗りチェック。枠は 32x32 を維持してリスト行の崩れを防ぐ */
.icon-check {
  display: inline-block;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: url("../images/icon-check.svg") no-repeat center / contain;
}

.btn-about-site,
.btn-offer {
  display: flex;
  position: relative;

  width: 100%;
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.714285);
  line-height: var(--line-height-tight);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  justify-content: center;
  align-items: center;

  outline: 5px solid transparent;
  border: 5px solid var(--accent);
}

.btn-offer .icon-arrow-right {
  border-color: var(--accent);
  border-width: 5px;

}

.btn-about-site .cta__arrow,
.btn-offer .cta__arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: block;
}

.btn-offer:hover {
  background: var(--accent);
  color: var(--white);
  outline-color: var(--accent);
  border-color: var(--white);
}

.cmp-supporter--omotenashi .btn-offer {
  border-color: var(--accent2);
  color: var(--accent2);
}

.cmp-supporter--omotenashi .btn-offer:hover {
  background: var(--accent2);
  color: var(--white);
  outline-color: var(--accent2);
  border-color: var(--white);
}

.btn-about-site:hover {
  background: var(--main);
  color: var(--white);
  outline-color: var(--main);
  border-color: var(--white);
}

.section-wanted .note-image {
  margin: 24px 0 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-blue);
  text-align: left;
}

/* =============================================
   Section: 募集要領・プライバシー（rule）
   ============================================= */
.section-rule {
  margin-top: 40px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 40px;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-blue);
  text-align: left;
}

.section-rule .rule-line {
  margin: 0;
}

.section-rule .rule-line + .rule-line {
  margin-top: 1em; /* カンプの空行相当 */
}

.section-rule .rule-link {
  font-weight: 700;
  color: var(--text-blue);
  text-decoration: none;
}

.section-rule .rule-link__mark {
  text-decoration: none;
}

.section-rule .rule-link__text {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   Section: サポーター紹介 / About DC（Figma: section-introduction / 6201:3428）
   ============================================= */
.section-introduction {
  position: relative;
  padding: 40px 16px 64px;
  text-align: center;
  background-color: var(--bg-light-blue);
  background-image: url("../images/section-introduction-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* Figma: section-introduction / 6201:3428 — ブロック下の影 */
  box-shadow: var(--shadow-section);
}

/* Figma: title / 6201:3429 — 帯は画面幅いっぱい、文面のみ px 16 */
.section-introduction .title {
  background: var(--main);
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-heading);
  line-height: var(--line-height-body);
  padding: 16px 16px 24px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: -40px -16px 32px -16px;
}

.section-introduction .btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn-intro {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 352px;
  background: var(--white);
  color: var(--main);
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.714285);
  padding: 16px 20px 16px 67px;
  border-radius: var(--radius-pill);
  min-width: 200px;
  box-shadow: var(--shadow-card);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-intro__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.btn-intro__label {
  line-height: var(--line-height-tight);
}

.btn-intro__sub {
  font-weight: 500;
  font-size: calc(var(--font-size-root) - 2px);
  line-height: 1.4;
  opacity: 0.95;
}

.btn-intro--omotenashi {
  background: var(--accent);
  color: var(--white);
}

.btn-intro--kanko {
  background: var(--accent2);
  color: var(--white);
}

.btn-intro--omotenashi .icon-arrow-right,
.btn-intro--kanko .icon-arrow-right {
  border-right-color: var(--white);
  border-bottom-color: var(--white);
}

.icon-arrow-right {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--main);
  border-bottom: 2px solid var(--main);
  transform: rotate(-45deg);
  margin-top: -4px;
}

/* =============================================
   Section: デスティネーションキャンペーンとは
   ============================================= */
.section-about {
  padding: 40px 16px 60px;
  text-align: center;
}

.section-about .title {
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 1.1428571);
  line-height: var(--line-height-body);
  color: var(--main);
  margin-bottom: 24px;
}

/* section-about 内のマーカー（Figma 6201:3451 付近）— .title / .body どちらでも .title-label--yellow */
.section-about .title-label--yellow {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
}

.section-about .title-label--yellow::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0.13em;
  height: 36%;
  background: var(--yellow);
}

.section-about .body {
  font-weight: 500;
  font-size: calc(var(--font-size-root) + 2px);
  line-height: 2.4;
  color: var(--text-grey);
  text-align: center;
}

.section-about .body p {
  margin: 0;
}

/* 空行（&nbsp;）— font-size:0 だと行高が 0 になるので本文に合わせる */
.section-about .body .section-about__spacer {
  margin: 0;
  font-size: inherit;
  line-height: 2.4;
  min-height: calc(1em * 2.4);
}

.section-about .body .highlight {
  color: var(--main);
  font-weight: 700;
}

.section-about .body .highlight.highlight--medium {
  font-weight: 500;
}

.section-about .body .large {
  font-size: var(--font-size-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-about .body .section-about__date-line {
  margin: 0.15em 0;
}

.btn-about-site {
  display: block;
  width: 100%;
  max-width: 352px;
  margin: 32px auto 0;
  padding: 16px;
  background: var(--white);
  color: var(--main);
  border-color: var(--main);
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.714285);
  line-height: var(--line-height-tight);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}

/* =============================================
   Section: FAQ（Figma: section-qa / 6201:3469 — BgRepeat なし・水色のみ）
   ============================================= */
.section-qa {
  padding: 40px 16px;
  box-shadow: var(--shadow-section);
}

.section-qa .section-title {
  font-weight: 700;
  font-size: var(--font-size-heading);
  line-height: var(--line-height-body);
  color: var(--main);
  text-align: center;
  margin-bottom: 24px;
}

.cmp-qa {
  border: none;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 16px;
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.cmp-qa .q {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  cursor: pointer;
  list-style: none;
}

.cmp-qa .q::-webkit-details-marker {
  display: none;
}

.cmp-qa[open] .icon-arrow-right {
  transform: rotate(45deg);
}

.icon-qa {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--main);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-root);
}

.cmp-qa .q .text {
  flex: 1;
  font-weight: 500;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-blue);
}

.cmp-qa .a {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 16px;
  border-top: 1px solid var(--bg-light-blue);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 280ms ease, opacity 200ms ease, transform 200ms ease, padding-top 200ms ease, border-top-width 200ms ease;
}

.cmp-qa[open] .a {
  max-height: 520px; /* FAQ 1項目の最大想定高さ */
  opacity: 1;
  transform: translateY(0);
}

.cmp-qa:not([open]) .a {
  padding-top: 0;
  border-top-width: 0;
}

.icon-arrow-right {
  transition: transform 200ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .cmp-qa .a,
  .icon-arrow-right {
    transition: none;
  }
}

.cmp-qa .a .icon-qa {
  background: var(--white);
  color: var(--main);
  border: 2px solid var(--main);
}

.cmp-qa .a .text {
  flex: 1;
  font-weight: 500;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-blue);
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background: var(--white);
  padding: 40px 16px 80px;
  text-align: center;
}

.site-footer .divider {
  height: 2px;
  background: var(--main);
  margin: 0 0 24px;
}

.site-footer .contact-info + .divider {
  margin-top: 24px;
}

.site-footer .btn-contact {
  display: inline-block;
  background: var(--main);
  color: var(--white);
  font-weight: 700;
  font-size: calc(var(--font-size-root) + 4px);
  line-height: var(--line-height-tight);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  margin: 0 0 24px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.site-footer .contact-info {
  font-weight: 500;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-grey);
  margin: 0 0 24px;
}

.site-footer .copyright {
  font-weight: 500;
  font-size: var(--font-size-root);
  line-height: var(--line-height-body);
  color: var(--text-grey);
  margin: 0;
}

.btn-pagetop {
  position: fixed;
  right: 16px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--main);
  border: 2px solid var(--main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.btn-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop:hover {
  opacity: 1 !important;
}
.btn-pagetop .arrow {
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--main);
  border-right: 2px solid var(--main);
  border-left: none;
  border-bottom: none;
  transform: rotate(-45deg);
  margin-top: 4px;
}

/* =============================================
   Drawer (Menu overlay) - Design 2
   ============================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 390px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer-overlay.is-open .drawer {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--bg-light-blue);
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer-logo__link {
  display: inline-flex;
  width: min(260px, 60vw);
  height: 30px;
}
.drawer-logo img {
  width: min(260px, 60vw);
  height: 30px;
  object-fit: contain;
}
.drawer-logo .text {
  font-weight: 700;
  font-size: calc(var(--font-size-root) - 2px);
  line-height: 1.4;
  color: var(--text-blue);
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text-blue);
  transform: rotate(45deg);
}
.drawer-close::after {
  transform: rotate(-45deg);
}

.drawer-nav {
  padding: 0 16px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 500;
  font-size: var(--font-size-root);
  color: var(--text-blue);
  border-bottom: 1px solid var(--bg-light-blue);
}
.drawer-nav a .icon-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--main);
  border-bottom: 2px solid var(--main);
  transform: rotate(-45deg);
}

.drawer-buttons {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: calc(var(--font-size-heading) * 0.6428571);
  text-align: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.drawer-btn--orange {
  background: var(--accent);
}
.drawer-btn--green {
  background: var(--accent2);
}
.drawer-btn--blue {
  background: var(--main);
}

.drawer-promo {
  margin-top: auto;
  background: var(--bg-light-blue);
  padding: 24px 16px 40px;
}

.drawer-promo .block {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: calc(var(--font-size-root) - 2px);
  color: var(--text-blue);
  line-height: 1.6;
}
.drawer-promo .block .sub {
  display: block;
  padding-left: 1em;
  margin-top: 4px;
  color: var(--accent2);
  font-weight: 700;
}

/* =============================================
   Tablet (768px)
   ============================================= */
@media (min-width: 768px) {
  .mv-text,
  .section-intro,
  .section-about,
  .section-subs {
    background-image: url("../images/bg-repeat-pc.svg");
    background-size: auto;
    background-repeat: repeat-y;
    background-position: top;
  }

  :root {

    --font-size-min: 14px;
    --font-size-max: 18px;
    --font-size-root: clamp(var(--font-size-min), 2.1vw, var(--font-size-max));
    --font-size-heading-min: 28px;
    --font-size-heading-max: 40px;
    --font-size-heading: clamp(var(--font-size-heading-min), 3.571428vw, var(--font-size-heading-max));
  }

  .header__inner {
    padding: 24px 40px;
  }

  .header-nav {
    display: flex;
  }

  .btn-menu {
    display: none;
  }

  .mv {
    max-width: unset;
  }

  .mv-img {
    height: 411px;
    width: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: bottom;
  }

  .mv-img-wrap {
    max-width: 1920px;
    margin-inline: auto;
  }

  .mv-text {
    padding: 150px 24px 48px;
  }

  .mv-text .lead {
    font-size: calc(var(--font-size-heading) * 0.8);
  }

  /* Figma: MV リード / 6201:4056 — カンプの3行に固定（幅に依存しない改行） */
  .mv-text .lead .mv-lead--sp {
    display: none;
  }

  .mv-text .lead .mv-lead--tablet {
    display: block;
  }

  .section-intro,
  .section-role,
  .section-subs,
  .section-wanted,
  .section-introduction,
  .section-about,
  .section-qa {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-rule {
    margin: 80px auto;
    padding-left: 24px;
    padding-right: 24px;
    padding: 0;
    max-width: 1024px;
  }

  .section-intro {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .section-role {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-subs {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-introduction {
    padding-top: 40px;
    padding-bottom: 80px;
    background-position: center;
  }

  .section-about {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .section-qa {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* Figma: cmp-qa / 6201:4292 — タブレット以上は幅 1120・余白 py32 px24 */
  .section-qa .section-title {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .cmp-qa {
    max-width: 1120px;
    padding: 32px 24px;
  }

  .section-introduction .title {
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 120px;
    padding: 20px 24px 28px;
  }

  .cmp-supporter {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }

  .cmp-supporter__wave {
    display: none !important;
  }

  .cmp-supporter-title .catch{
    font-size: calc(var(--font-size-heading) * 2.2);
  }

  /* section-wanted: インナー幅を広げ、merit-cards を 3 カラム（タブレット以上） */
  .cmp-supporter__inner {
    max-width: 1120px;
    padding: 0 48px;
    box-sizing: border-box;
  }

  /* Figma: head / 6201:4140 — タブレット以上は左テキスト・右画像の横並び */
  .cmp-supporter .head {
    padding: 80px 0 40px;
  }

  /* Figma: ImgSupporterBg / 6003:461 — 書き出し SVG をそのまま（加工なし）。ベージュは下地 */
  .cmp-supporter--kanko .head {
    background-color: var(--bg-supporter-kanko);
    background-image: url("../images/supporter-kanko-head-bg.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
  }

  .cmp-supporter--omotenashi .head {
    background-color: var(--bg-supporter-omotenashi);
    background-image: url("../images/supporter-omotenashi-head-bg.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
  }

  .cmp-supporter .head .title {
    font-size: calc(var(--font-size-heading) * 1.6428571);
  }

  .cmp-supporter .head .cmp-supporter__inner {
    display: flex;
    gap: 24px;
  }

  .cmp-supporter .head .cmp-supporter__inner > * {
    flex: 1;
  }

  .cmp-supporter .head__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cmp-supporter .head__text .title {
    margin-block-start: 0;
  }


  .cmp-supporter .head .img-wrap {
    margin-bottom: 0;
  }

  .cmp-supporter .body {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cmp-supporter .body .merit-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-bottom: 80px;
  }

  .cmp-supporter .body .merit-title {
    font-size: calc(var(--font-size-heading) * 0.8);
  }

  .cmp-supporter .body .merit-card {
    margin-bottom: 0;
    padding: 32px 16px 40px;
  }

  .cmp-subtitle-pill {
    font-size: calc(var(--font-size-heading) * 0.8);
    padding: calc(var(--font-size-heading) * 0.8 - 16px) 24px;
    width: 100%;
    line-height: 1;
  }

  .cmp-supporter .body .subtitle {
    font-size: calc(var(--font-size-heading) * 0.7857143);
    padding: calc(var(--font-size-heading) * 0.7857143 - 16px) 24px;
    line-height: 1;
  }

  .cmp-supporter .body .check-list li,
  .cmp-supporter .body .check-list li .check-list__lead {
    font-size: calc(var(--font-size-heading) * 0.8);
  }

  .section-subs .subs-bubble,
  .section-subs .subs-divider {
    max-width: 520px;
  }

  .btn-intro,
  .btn-about-site {
    max-width: 1120px;
  }

  .section-introduction .btns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-introduction .btn-intro {
    max-width: none;
  }

  .cards-role {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
  }

  .cards-role .card-role {
    max-width: none;
    padding: 24px 16px;
  }
}


/* =============================================
   下層ページ
   ============================================= */
/* ページヘッダー */
.page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  /* height: auto; */
  aspect-ratio: 1080 / 443;
  background-image: url("../images/supporter/img-kv-sp.jpg");
  background-image: image-set(
    url("../images/supporter/img-kv-sp.jpg") 1x,
    url("../images/supporter/img-kv-sp@2x.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title {
  width: 90%;
  max-width: 1020px;
  /* height: auto; */
  margin-inline: auto;
  font-size: 0;
  aspect-ratio: 1020 / 134;
  background-image: url("../images/supporter/img-kv-title_tourism-supporter.png");
  background-image: image-set(
    url("../images/supporter/img-kv-title_tourism-supporter.png") 1x,
    url("../images/supporter/img-kv-title_tourism-supporter@2x.png") 2x
  );
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.page-title.tourism-supporter {
  background-image: url("../images/supporter/img-kv-title_tourism-supporter.png");
  background-image: image-set(
    url("../images/supporter/img-kv-title_tourism-supporter.png") 1x,
    url("../images/supporter/img-kv-title_tourism-supporter@2x.png") 2x
  );
}

.page-title.hospitality-supporter {
  background-image: url("../images/supporter/img-kv-title_hospitality-supporter.png");
  background-image: image-set(
    url("../images/supporter/img-kv-title_hospitality-supporter.png") 1x,
    url("../images/supporter/img-kv-title_hospitality-supporter@2x.png") 2x
  );
}

/* コンテンツ幅 */
.inner-1120 {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

/* メインエリア */
main.page-content.inner-1120 {
  width: 100%;
  max-width: calc(1120px + 16px + 16px);
  margin-inline: auto;
  padding: 40px 16px;
}

/* アーカイブ */
.supporter-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  margin-bottom: 32px;
}

.supporter-card__link {
  padding: 0;
  background: inherit;
  border: none;
  cursor: pointer;
}

.supporter-card__thumb {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.supporter-card__thumb img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.supporter-card__name {
  /* margin-top: clamp(8px, -11.692px + 2.564vw, 16px); */
  /* margin-bottom: clamp(8px, -11.692px + 2.564vw, 16px); */
  padding-top: clamp(6px, -6.000px + 1.563vw, 10px);
  padding-bottom: clamp(6px, -6.000px + 1.563vw, 10px);;
  color: var(--main, #00AAE8);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-size: clamp(20px, 10.154px + 1.282vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  border-bottom: 1px solid var(--main, #00AAE8);
}

.supporter-card__area {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--main, #00AAE8);
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  text-align: left;
  border-top: 1px solid #00AAE8;
  border-bottom: 1px solid #00AAE8;
}

.supporter-card__area::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/supporter/icon-pin.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  z-index: 2;
}

/* ページネーション */
.pagination {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 40px 0;
  gap: 8px;
}

.pagination__num,
.pagination__prev,
.pagination__next {
  display: flex;
  padding-bottom: 2px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  width: 50px;
  height: 50px;
  color: var(--main, #00AAE8);
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  background: var(--white, #FFF);
  transition: all 0.8s ease;
}

.pagination__num {
  border-radius: 8px;
  border: 1px solid var(--main, #00AAE8);
}

.pagination__prev,
.pagination__next {
  position: relative;
}

.pagination__prev::before,
.pagination__next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid #00aae8;
  border-right: 3px solid #00aae8;
}

.pagination__prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.pagination__next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.pagination__num.is-current,
.pagination__num:hover {
  color: var(--white, #FFF);
  background: var(--main, #00AAE8);
}

/* モーダル */
/* 開くボタン */
.button-open {
  display: block;
  /* margin: 0 auto; */
  /* width: 20rem; */
  padding: 0;
  background-color: #ffffff;
  /* color: #eaeaea; */
  border: none;
  /* border-radius: 20rem; */
  cursor: pointer;
}
/* モーダルウィンドウ */
.modal-window {
  /* display: none; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: calc(100% - 14px - 14px);
  max-width: 544px;
  height: auto;
  max-height: 90vh;
  z-index: 2000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

/* モーダルだけ少し動かす */
.modal-window.is-active {
  transform: translate(-50%, -50%);
}

.modal__box {
  margin-top: 16px;
  /* margin-bottom: 32px; */
  border-radius: 16px;
  background: var(--white, #fff);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal__scroll {
  width: 100%;
  /* max-height: calc(90vh - 152px); */
  max-height: calc(90vh - 64px);
  /* padding: 24px; */
  padding: 0 24px 24px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.supporter-modal__thumb {
  width: 100%;
  height: auto;
  /* margin: 0; */
  margin: 24px 0 0;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.supporter-modal__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.supporter-modal__name {
  position: sticky;
  top: 0;
  /* margin-top: 16px; */
  /* margin-bottom: 16px; */
  padding: 16px 0;
  color: var(--main, #00AAE8);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 10;
}

.supporter-modal__name.is-sticky {
  margin-inline: -24px;
  padding-inline: 24px;
  border-bottom-color: #fefefe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.supporter-modal__area {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--main, #00AAE8);
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  border-top: 1px solid #00AAE8;
  border-bottom: 1px solid #00AAE8;
}

.supporter-modal__area::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/supporter/icon-pin.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  z-index: 2;
}

.supporter-modal__title {
  width: 212px;
  display: flex;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 4px 16px 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--white, #FFF);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  border-radius: 1000px;
  background: var(--main, #00AAE8);
}

.supporter-modal__text {
  color: var(--main, #00AAE8);
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.supporter-modal__address {
  position: relative;
  padding-left: 32px;
  color: var(--main, #00AAE8);
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.supporter-modal__address::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/supporter/icon-home.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.supporter-modal__tel {
  position: relative;
  padding-left: 32px;
  color: var(--main, #00AAE8);
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.supporter-modal__tel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/supporter/icon-tel.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 閉じるボタン */
button.js-close.button-close-top {
  display: flex;
  position: relative;
  right: 0;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: 0;
  padding: 8px;
  align-items: center;
  color: var(--main, #00AAE8);
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border: 0;
  border-radius: 8px;
  background: var(--white, #FFF);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  justify-content: center;
  cursor: pointer;
}

/* オーバーレイ */
.overlay {
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 170, 232, 0.50);
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: opacity 0.3s;
}

#overlay,
.modal-window {
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition: opacity 0.3s; */
}

#overlay.is-active,
.modal-window.is-active {
  /* display: block; */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* モーダル内SNS */
.supporter-sns-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 12px;
}

.supporter-sns-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc((100% - 12px) / 2);
}

.supporter-sns-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
    transition:
      transform 0.3s,
      opacity 0.3s;
}

.supporter-sns-item a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.supporter-sns-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: #00AAE8;
}

.supporter-sns-account {
    color: var(--main, #00AAE8);
    text-align: center;

    /* p */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
}

/* タブレット */
@media (min-width: 768px) {
  /* アーカイブ */
  .supporter-archive {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
    margin-bottom: 48px;
  }

  /* ページネーション */
  .pagination {
    padding: 60px 0;
  }

  .supporter-sns-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 4px 13px;
  }

  .supporter-sns-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc((100% - 26px) / 3);
  }
}

/* PC */
@media (min-width: 1081px) {
  /* ページヘッダー */
  .page-header {
    width: 100%;
    height: 250px;
    aspect-ratio: auto;
    background-image: url("../images/supporter/img-kv-pc.jpg");
    background-image: image-set(
      url("../images/supporter/img-kv-pc.jpg") 1x,
      url("../images/supporter/img-kv-pc@2x.jpg") 2x
    );
  }

  /* メインエリア */
  main.page-content.inner-1120 {
    padding: 80px 16px;
  }

  /* アーカイブ */
  .supporter-archive {
    grid-template-columns: repeat(4, 1fr);
    gap: 64px 32px;
    margin-bottom: 64px;
  }

  /* ページネーション */
  .pagination {
    padding: 80px 0;
  }

  .pagination::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 251px;
    height: 92px;
    background-image: url("../images/supporter/bg_pagenation-left.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }

  .pagination::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 255px;
    height: 82px;
    background-image: url("../images/supporter/bg_pagenation-right.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
}

/* 404 */
.error404 .entry-title.page-header {
  font-size: 28px;
  font-size: clamp(24px, -0.615px + 3.205vw, 34px);
}

p.content-404 {
  margin: 80px auto 80px;
}