/* =========================================================
   共立リーダーシップ?募金  デザインカンプ準拠スタイル
   - 見出しは明朝、本文はゴシック
   - 学園マルーン/ブルーをキーカラー
   - カンプの余白感?セクション配色?カード表現を再現
   ========================================================= */

/* -------- CSS Reset (最小) -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

a {
  color: inherit;
}

/* -------- 基本設定 -------- */
:root {
  --max: 1080px;
  /* カンプの読み幅に合わせてタイトに */
  --gutter: 24px;
  --brand-maroon: #8a1d3f;
  /* 学園マルーン（見出しバー/ボタン） */
  --brand-blue: #0b5aa6;
  /* 学園ブルー（リンク/下線） */
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e7e7e7;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  /* うすいブルーグレー */
  --bg-panel: #f2f2f7;
  /* ライトグレーのパネル */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  background: var(--bg);
  line-height: 1.95;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

/* タイポ（明朝系は見出しのみ） */
.h-mincho,
h1,
h2,
h3,
h4 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  letter-spacing: .02em;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1003;
}



/* 小道具 */
.sr-only {
  position: absolute;
  inset-inline-start: -9999px;
}

.muted {
  color: var(--muted);
  font-size: 14px;
  list-style-type: circle;
  text-align: right;
}

.u-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ===================================================
   ハンバーガーメニュー
   =================================================== */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2.625rem;
  height: 2.625rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 0.125rem;
  background: var(--brand-maroon);
  border-radius: 0.0625rem;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガーメニューがアクティブな時の線の変化 */
.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.15rem, 0.25rem);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.3rem, -0.55rem);
}

/* スマホ?タブレット用ハンバーガーメニュー */
@media (max-width: 1199px) {
  .hamburger-menu {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
  }

  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    position: fixed;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
  }

  .global-nav a {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .global-nav a:hover {
    background: var(--bg-soft);
    transform: translateY(-2px);
  }

  /* ボディスクロールロック */
  body.menu-open {
    overflow: hidden;
  }
}

/* ---------------------------------------------------------
   ヘッダー
--------------------------------------------------------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  aspect-ratio: 1400 / 192;
  /* background: url(/univ/bokin/img/ss/ss01.png);
  background-size:cover; */
  position: relative;
  z-index: 1000;

}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 8px 0 0;
}

.topbar__link {
  position: relative;
  color: #3e3a39;
  text-decoration: none;
  font-size: 10px;
  top: 13px;
  right: 18px;
  letter-spacing: 0.9px;

}


.header-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 12px 0 10px;
  align-items: normal;
}

.brand__logo {
  height: 50px;
  width: auto;
  position: relative;
  left: 47px;
  top: 75px;
}

nav.global-nav {
  position: relative;
  bottom: -95px;
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-start;
}

.global-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 400;
}

.global-nav a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.global-nav a[rel~="external"]::after {
  content: " ↗";
  font-size: .9em;
}

br.spbr {
  display: none;
}

/* ---------------------------------------------------------
   ヒーロー
--------------------------------------------------------- */
#hero .hero__content {
  text-align: center;
}

.hero {
  position: relative;
  background: var(--brand-maroon);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
}

.hero__content {
  position: relative;
  color: #fff;
  padding: 64px 0 68px;
  z-index: 1003;
}

.hero__content h1 {
  font-size: 21px;
  margin: 0 0 10px;
}

.hero__content p {
  margin: 0 0 20px;
}

.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 4px;
  background: #fff;
  color: var(--brand-maroon);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
}


.btn:hover {
  background: transparent;
  color: #fff;
}

.btn.btn-maroon {
  border: 2px solid var(--brand-maroon);
}

span.minchofont.signature {
  font-size: 1.3em;
}


/* ---------------------------------------------------------
   セクション共通
--------------------------------------------------------- */
.section {
  padding: 0px 0 68px;
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}

section#appeal {
  padding-top: 68px;
}

.section h2 {
  font-size: clamp(22px, 3.4vw, 32px);
  margin: 0 0 18px;
}

.section h3 {
  font-size: clamp(18px, 2.6vw, 24px);
  margin: 8px 0 12px;
}

.section h4 {
  font-size: 20px;
  margin: 10px 0 8px;
}

.section p {
  text-align: justify;
}


/* 段組み */
.cols {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 960px) {
  .cols {
    grid-template-columns: 1.12fr .88fr;
  }
}

/* ---------------------------------------------------------
   学園長挨拶（余白と顔写真寄せ）
--------------------------------------------------------- */

section#appeal {
  /* background: url(/univ/bokin/img/ss/ss04.png);
  background-size: cover; */
  padding-bottom: 0;
  ;
}


.donation-btn {
  color: #003770;
  border: 2px solid #003770;
  width: 145px;
  border-radius: 9px;
  padding: 8px 9px;
  text-align: center;
  position: relative;
  background: #fff;
  left: calc(50vw + 210px);
  top: -32px;
  font-size: 13px;
  letter-spacing: 1px;

  a {
    text-decoration: none;
    font-weight: 600;
    position: relative;
    left: 4px;
    letter-spacing: 2px;
  }
}

.donation-btn:before {
  font-size: 18px;
  font-weight: 100;
  content: "→";
  margin-right: 7px;
  position: absolute;
  top: 3px;
  left: 12px;
}

#appeal .col--text p {
  margin-bottom: 18px;
  margin-top: 0;
  letter-spacing: 1.6px;
  line-height: 2rem;
  ;
}


#appeal .col--text p:nth-of-type(5) {
  position: relative;
  right: 12px;
  font-size: 17px;
  letter-spacing: 1px;
}

#appeal .figure {
  margin: 0;
}

#appeal .figure img {
  width: 260px;
  max-width: 100%;
  margin-inline: auto;
}

img.shimizukiyoshi.signiture__img {
  width: 150px;
  display: inline-block;
  position: relative;
  top: 10px;
  user-select: none;
}

/* ---------------------------------------------------------
   ご寄付の趣旨（本文幅をやや狭める）
--------------------------------------------------------- */
section#purpose {
  padding-top: 40px;
  /* background:url(/univ/bokin/img/ss/ss05.png);
  background-size:cover; */
}

#purpose .inner {
  max-width: 1260px;
}

#purpose h2 {
  color: var(--ink);
}

#purpose .h3-sub {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  color: var(--ink-2);
  display: inline-block;
  padding-bottom: 4px;
  letter-spacing: 1px;
}

/* ---------------------------------------------------------
   募金メニュー（見出しと小見出し）
--------------------------------------------------------- */

section#programs {
  /* background:url(/univ/bokin/img/ss/ss07.png);
  background-size:contain; */
}

#programs h2 {
  padding: 10px 14px;
  background: var(--brand-maroon);
  color: #fff;
  display: inline-block;
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
}

#programs h3 {
  color: var(--brand-maroon);
  letter-spacing: 3px;

  .donationtitle {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    ;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
      "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;

  }


  .donationnote {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    margin-left: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
      "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;


  }

  .donationnote-small {
    font-size: 11px;
    position: relative;
    top: -7px;
    margin-left: 1px;
  }



  donationpurpose {
    font-size: 22px;
    font-weight: 400;
    margin-left: 10px;
    letter-spacing: 2px;
  }
}


#programs h4 {
  display: none;
  margin-top: 40px;
  margin-bottom: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 400;
}

#programs p {
  margin-top: 0;
  letter-spacing: 0.1vw;
}

#programs p.minchofont {
  margin-bottom: 0;
  /* font-weight: 600; */
  -webkit-text-stroke: 0.5px #000;
}

#programs .muted {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 14px;
}

#programs .muted.font-red {
  color: #8a1e40;
}

#programs ul.list {
  margin-top: 17px;
  list-style-type: circle;
  margin-bottom: 45px;
  font-size: 14px;
}

.gothicfont {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif !important;
}

.minchofont {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif !important;
}

/* 箇条書き */
ul.list {
  padding-left: 1.2em;
}

ul.list li {
  margin: .35em 0;
}

#programs .inner {
  /* border-bottom: 1px solid #3e3a39;
  padding-bottom: 50px; */
}

/* ---------------------------------------------------------
   キャンパス再構築（デザインカンプ準拠）
--------------------------------------------------------- */
#campus-rebuild {
  /* background: #fff;  */
  /* background: url(/univ/bokin/img/ss/ss09.png); */
  background-size: cover;
}

#campus-rebuild .cols {
  grid-template-columns: 50% 50%;
}

/* 濃い青のバナーセクション */
#campus-rebuild .campus-banner {
  background: #113c78;
  padding: 0.8rem 0;
  margin-bottom: 0;
}

#campus-rebuild .campus-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  text-align: center;
  letter-spacing: 0.2em;
}

/* 白い背景のコンテンツセクション */
#campus-rebuild .campus-content {
  /* background: #fff; */
  padding: 4rem 0;
}

#campus-rebuild .campus-content h3 {
  color: #103d78;
  display: inline-block;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 0.2rem 0px;
  letter-spacing: 0.23rem;
  line-height: 1.5rem;
}

#campus-rebuild .campus-content h3.rebuildtitle {
  font-size: 22px;
}

#campus-rebuild .col.col--media {
  padding-left: 27px;
}



#campus-rebuild .campus-content .subtitle {
  display: inline-block;
  color: #103d78;
  font-size: 16px;
  letter-spacing: 0.8px;
  margin: 0 0 1.0rem 0px;
}



#campus-rebuild .campus-content p.quotedesc {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  margin: 0px 0 0.5rem 0;
  line-height: 1.7;
  letter-spacing: 0.1rem;
  padding-right: 15px;
}

#campus-rebuild .campus-content p {
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
}

#campus-rebuild .campus-content .list {
  margin: 0rem 0;
}

#campus-rebuild .campus-content .list li {
  margin: 1.5rem 0;
  margin-top: 12px;
  margin-bottom: 18px;
  list-style-type: "●";
  list-style-position: inside;
}

#campus-rebuild .campus-content .list li::marker {
  font-size: 11px;

}


#campus-rebuild .campus-content .list li a {
  font-size: 16px;
  letter-spacing: 3px;
  text-underline-offset: 5px;
  font-weight: 400;
  text-decoration-thickness: 1px;
}

#campus-rebuild .campus-content .list li a:hover {
  color: var(--brand-blue);
}

#campus-rebuild .campus-content .list strong {
  color: #1a1a1a;
  font-size: 1rem;
  margin-right: 10px;
}


#campus-rebuild .campus-content .list li span {
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-left: 15px;
}

#campus-rebuild .campus-content .list .highlight {
  color: var(--brand-blue);
  font-weight: 400;
  /* display: inline-block; */
  display: none;
  margin: 0.5rem 0;
  margin-left: 17px;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

#campus-rebuild .campus-content .list .highlight:nth-of-type(3) {
  margin-left: -3px;
}

#campus-rebuild .campus-content .list li span.list_desc {
  position: relative;
  left: -17px;
  top: -6px;
  font-size: 14px;
  letter-spacing: 1.7px;
  display: inline-block;
}

/* グレーの四角い背景 */
#campus-rebuild .campus-content .gray_square {
  background: #efefef;
  padding: 2rem;
  padding-top: 2.6rem;
  margin: 2rem 0;
  margin-top: 8.3rem;

  /* background:url(/univ/bokin/img/ss/ss10.png) no-repeat center center;
   background-size: cover; */
  aspect-ratio: 652 /290;
}

.gray-square-header {
  display: flex;
  flex-direction: row;

}

#campus-rebuild .campus-content .gray_square h3 {
  color: var(--ink);
  display: inline-block;
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 0.2rem 18.2px;
  letter-spacing: 0.14em;
  line-height: 1.5rem;
}



#campus-rebuild .campus-content .gray_square .subtitle {
  display: inline-block;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.6px;
  margin: 0 0 0.2rem 18px;
}

#campus-rebuild .figure {
  margin: 0;
  height: 230px;
  overflow: hidden;
}

#campus-rebuild .figure img {}

/* ---------------------------------------------------------
   卒業生インタビュー（桜の背景）
--------------------------------------------------------- */
section#alumni {
  padding-left: 0;
  padding-right: 0;
}

section#alumni .inner {
  padding: 0 160px
}

#alumni .banner {
  background: url('/univ/bokin/img/campus-sakura.webp') center center;
  background-size: cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position-y: -3px;
}

#alumni .banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.3); */
  z-index: 1;
}

#alumni .banner h2 {
  color: #3e3a39;
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 400;
  letter-spacing: 0.125rem;
  margin: 0;
  margin-left: 160px;
  margin-right: auto;
  position: relative;
  z-index: 2;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
}

.comingsoon {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
}

/* ---------------------------------------------------------
   記念品（カード＋サムネイル）
--------------------------------------------------------- */


#keepsakes {
  /* background:url(/univ/bokin/img/ss/ss11.png) no-repeat center center; */
  /* background-size: cover; */
  /* aspect-ratio: 841 / 1243; */
}

#keepsakes h2 {
  margin-bottom: 8px;
}

#keepsakes .h3-sub {
  font-size: 22px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  color: var(--ink-2);
  font-weight: 400;
}

#keepsakes p {
  font-size: 14px;
  letter-spacing: 1.2px;
  margin-top: 0;
  text-align: justify;
}


#keepsakes p.muted {
  font-size: 14px;
  position: relative;
  margin-bottom: 1px;
}

#keepsakes p:nth-of-type(2) {
  margin-top: 50px;
}

#keepsakes .font-red {
  font-size: 16px;
  color: #8a1e40;
}


.gift-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 20px;

  h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
      "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 18px;
    background: #f4e8ed;
    color: #94204d;
    padding-left: 10px;
  }

}

.gift-item {
  padding: 16px 16px 10px;
  padding-left: 0;
}

.gift_a {}

.gift_b {}

.gift_c {}

.gift_d {}

.gift_e {}

.gift_f {}

.giftcaption {
  position: absolute;
  font-size: 14px;
  font-weight: 200;
}

.thumbs {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
}

.thumbs img {
  background: #fff;
  padding: 6px;
  height: 110px;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  overscroll-behavior: contain;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.lightbox__content {
  position: relative;
  background: #fff;
  max-width: min(90vw, 640px);
  width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  padding: 24px 24px 32px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox__figure {
  margin: 0;
  width: 100%;
  text-align: center;
}

.lightbox__image {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  padding: 4px;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  color: #94003a;
  outline: none;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
}

.lightbox__arrow span {
  font-size: 28px;
  line-height: 1;
}

.lightbox__arrow--prev {
  left: 12px;
}

.lightbox__arrow--next {
  right: 12px;
}

.lightbox__arrow:hover,
.lightbox__arrow:focus-visible {
  background: rgba(148, 0, 58, 0.8);
  outline: none;
}

.lightbox__arrow[hidden] {
  display: none;
}

.lightbox.is-open .lightbox__content {
  animation: lightboxFadeIn 0.25s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .lightbox__content {
    max-width: 92vw;
    padding: 20px 20px 28px;
    border-radius: 6px;
  }

  .lightbox__caption {
    font-size: 13px;
  }

  .lightbox__arrow {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 900px) {
  .gift-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gift-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
  }

  .gift-item.gift_a,
  .gift-item.gift_f {
    min-width: 600px;
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}

/* ---------------------------------------------------------
   報告
--------------------------------------------------------- */

section#report {
  background: rgb(0 55 112 / 15%);
  padding-top: 28px;
  padding-bottom: 28px;
  margin-bottom: 50px;
}

section#report ul {
  padding-left: 0;
}

section#report li {
  color: #003770;
  font-size: 18px;
  line-height: 42px;
  list-style: none;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  letter-spacing: 1px;
}

/* ---------------------------------------------------------
   税制優遇（青下線の見出しリンク、薄青背景ボックス）
--------------------------------------------------------- */
#tax .h3-link a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
}

#tax .h3-link {
  margin-bottom: 40px;

}

#tax p {
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-align: justify;
}

#tax .inner p:nth-of-type(n+2) {
  font-size: 14px;
}

#tax h3.faq {
  color: #1a1a1a;
  letter-spacing: 1px;
  font-weight: 400;
}

#tax h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
}

#tax h3 {
  font-size: 18px;
}

#tax h3.panphlet {
  font-size: 16px;
  border: 1px solid #231815;
  color: #3e3a39;
  text-align: center;
  width: 450px;
  margin: 90px auto 50px;
  padding: 10px 40px;
  font-weight: 400;
}

#tax a:has(.panphlet) {
  text-decoration: none;
}


#tax h3.panphlet::after {
  content: "";
  display: inline-block;
  position: relative;
  left: 20px;
  bottom: 2px;
  border-bottom: 2px solid #94214d;
  border-right: 2px solid #94214d;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
}

#tax h4 {
  color: #003770;
  margin-top: 35px;
}

img.shuisho {
  width: 200px;
  margin: 0 auto;
}

hr.spacer {
  margin-top: 80px;
  margin-bottom: 80px;
}

dd {
  margin-left: 0;
  margin-bottom: 40px;
}

img.taxgraph {
  user-select: none;
}

img.taxgraph_sp {
  display: none;
}

.yuji-mai-regular {
  font-family: "Yuji Mai", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
}


@media (max-width: 767px) {

  img.taxgraph {
    display: none;
  }
  img.taxgraph_sp {
    display: block;
  }

  .yuji-mai-regular {
    font-size: 1.2em;
  }
}


/* ---------------------------------------------------------
   お問合せ（ライトグレーのカード）
--------------------------------------------------------- */
#contact {
  background: rgb(0 55 112 / 15%);
  padding-top: 60px;
}

#contact h2 {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 22px;
  letter-spacing: 2px;
}

#contact p {
  margin-top: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

#contact p:nth-of-type(2) {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif
}

#contact address {
  padding: 16px 18px;
  line-height: 1.6;
  font-size: 12px;
  font-style: normal !important;
  padding-left: 0;
  font-weight: 400;
  letter-spacing: 1px;


}

#contact a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.1px;
}



/* ---------------------------------------------------------
   フッター
--------------------------------------------------------- */
.site-footer {
  border-bottom: 5px solid var(--brand-maroon);
  background: #fff;
}

.site-footer .columns {
  display: grid;
  gap: 12px 28px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 10px 0 28px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a {
  color: #2d2d2d;
  text-decoration: none;
  line-height: 2;
  font-size: 12px;
}

.site-footer a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------------------
   レスポンシブ微調整
--------------------------------------------------------- */
@media (max-width: 599px) {
  .brand__logo {
    height: 42px;
  }

  .global-nav ul {
    gap: 10px 14px;
  }

  .hero__content {
    padding: 52px 0 56px;
  }

  .section {
    padding: 0px 0 68px;
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
  }

  section#appeal {
    padding-top: 68px;
  }

  #appeal .figure img {
    width: 200px;
  }


}

/* =========================================================
   ご寄付の方法 (#donation-methods)
   ========================================================= */

/* セクション全体 */
#donation-methods {
  /* padding: 52px 0 64px; */
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
}

#donation-methods h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 26px;
  margin: 0 0 8px;
  font-weight: 400;
}

#donation-methods h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
}

#donation-methods h3.font-red {
  color: #94214d;
}

#donation-methods p {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
}


#donation-methods>p {
  margin: 0 0 18px;
  color: #333;
  line-height: 1.9;
}


#donation-methods .inner {
  border-top: 1px solid #cfd3da;
  padding-top: 70px;
}

/* ---- 募集概要（左：表風DL、右：写真） ---- */
#donation-methods .donation-summary {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
  background: #fff;
  border-radius: 8px;
  padding: 18px 18px 16px;
  margin: 16px 0 36px;
}

/* ラベル行 */
#donation-methods .donation-summary dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 32px;
  align-content: start;
  margin: 0;
}

#donation-methods .donation-summary dt {
  justify-self: start;
  align-self: center;
  min-width: 120px;
  text-align: center;
  color: #134b96;
  /* 学園ブルー寄り */
  border: 1px solid #134b96;
  border-radius: 6px;
  padding: 6px 8px 5px;
  font-weight: 400;
  line-height: 1;
  background: #fff;
  letter-spacing: 2px;
  font-size: 14px;
}

#donation-methods .donation-summary dt.alignjustify {
  text-align: left;
  padding-left: 26px;

  &:nth-of-type(2) {
    letter-spacing: 10px;
  }

  &:nth-of-type(3) {
    letter-spacing: 10px;
  }
}

#donation-methods .donation-summary dd {
  margin: 0;
  align-self: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .02em;

  .note {
    font-size: 10px;
    margin-left: 20px;
  }
}

#donation-methods .donation-summary figure {
  margin: 0;
  overflow: hidden;
  visibility: hidden;
}

#donation-methods .donation-summary figure img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* ---- 方式ブロック（①②③…） ---- */
#donation-methods .donation-box {
  background: #fff;
  padding: 18px 0px 16px;
  margin: 0 0 28px;
}

#donation-methods .donation-box h3 {
  color: #94214d;
  /* 学園マルーン */
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 400;
}

#donation-methods .donation-box h4 {
  color: #222;
  font-size: 15px;
  margin: 14px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
}

#donation-methods .donation-box p {
  margin: 0 0 10px;
  line-height: 1.9;
}

#donation-methods .donation-box.donation-box--panel p a {
  color: #003770;
  font-size: 16px;

}

#donation-methods .donation-box p.link a {
  color: #003770;
}

#donation-methods .donation-box ol {
  margin: 4px 0 10px 1.3em;
  padding: 0 0 15px;
}

#donation-methods .donation-box ul {
  margin: 6px 0 6px 1.2em;
  padding: 0;
}

#donation-methods .donation-box .note {
  font-size: 14px;
  font-weight: 400;
  margin-left: 20px;
}

#donation-methods .donation-box ul li {
  font-size: 14px;
  list-style-position: inside;

}

#donation-methods .donation-box ul li:marker {
  font-size: 10px;
}

/* 詳細リンク（▼詳細はこちら） */
#donation-methods .link-detail {
  color: #94214d;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
}

#donation-methods .link-detail:hover {
  color: #6a1a32;
}

#donation-methods .detail-desc-note {
  font-size: 14px;

}


/* 申込ボタン（ATM?ネット／インターネット） */
#donation-methods .btn-maroon {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 6px;
  background: #8a1d3f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #8a1d3f;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

#donation-methods .btn-maroon:hover {
  /* background:#fff; */
  /* color:#8a1d3f; */
  opacity: 0.8;
}

/* 重要なご案内ボックス（薄いパープルの枠） */
#donation-methods .notice-box {
  margin-top: 16px;
  border: 1px solid #8A1C3F;
  /* パープル系 */
  background: #fff;
  padding: 14px 26px 12px;
  color: #8A1C3F;
}

#donation-methods .notice-box strong {
  display: block;
  color: #8a1d3f;
  margin-bottom: 4px;
  font-weight: 600;
}


/* 法人向けパネル */
#donation-methods .donation-box--panel {
  background: #eef2fb;
  /* 灰がかった淡ブルー */
  padding: 18px 28px 16px;
  /* width: calc(100% + 20px);
  position: relative;
  left: -10px; */

  h3 {
    color: var(--ink);
  }

  p {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  }
}


#keepsakes section.gift-item.gift_d .thumbs img {
  margin-top: 30px;
}

#keepsakes section.gift-item.gift_d .thumbs .giftcaption {
  position: absolute;
}


#keepsakes section.gift-item.gift_e .thumbs img {
  margin-top: 30px;
}

#keepsakes section.gift-item.gift_e .thumbs .giftcaption {
  position: absolute;
}


/* レイアウトのブレークポイント（デザイン幅840px基準） */
@media (max-width: 920px) {
  #donation-methods .donation-summary {
    grid-template-columns: 1fr 280px;
  }
}

@media (max-width: 720px) {
  #donation-methods .donation-summary {
    grid-template-columns: 1fr;
  }

  #donation-methods .donation-summary figure img {
    height: 140px;
  }
}

/* 寄付方法バナーのレイアウト */
section.donation-banner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 40px;
}

section.donation-banner .icon {
  width: 200px;
}









/* ===================================================
   トップに戻るボタン
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--brand-maroon);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(138, 29, 63, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  background: #6a1a32;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(138, 29, 63, 0.4);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
  }

  .back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* ===================================================
   寄付方法の詳細表示制御
   =================================================== */
#donation-methods .donation-box .detail-desc {
  display: none;
  margin-top: 1rem;
  padding: 0;
  font-size: 14px;
}

#donation-methods .donation-box .detail-desc.show {
  display: block;
}

#donation-methods .inner {
  padding-left: 0;
  padding-right: 0;
}

/* =========================================================
   タッチナビゲーション
   ========================================================= */

/* タッチナビラッパー */
.touch-nav-wrapper {
  position: fixed;
  bottom: 0;
  background: #fff;
  /* border-radius: 30px 30px 0 0; */
  left: calc(100vw - 230px)  ;
  transform: translateX(-50%) translateY(0);
  z-index: 10001;
  max-width: 600px;
  width: 250px;
}

.touch-nav-wrapper.is-open {
  transform: translateX(-50%) translateY(0);
}

/* 開閉ボタン */
.touch-nav-toggle {
  position: relative;
  bottom: 0;
  left: 0;
  transform: none;
  z-index: 1001;
  width: 100%;
  height: 60px;
  border: none;
  /* border-radius: 30px 30px 0 0; */
  background: #103d78;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.touch-nav-toggle:hover {
  background: #103e78;
  transform: translateY(-2px);
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.25);
}

.touch-nav-toggle:active {
  transform: translateY(0);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.touch-nav-toggle.is-open {
  background: #103e78;
  transform: translateY(0);
}

.touch-nav-toggle.is-open:hover {
  background: #103d78;
  /* transform: translateY(-2px); */
}

.touch-nav-toggle i {
  font-size: 16px;
  margin-bottom: 4px;
}

.touch-nav-toggle.is-open i {
  transform: rotate(180deg);
}

/* タッチナビコンテナ */
.touch-nav-container {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  /* border-top: 1px solid var(--line); */
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  will-change: transform;
}

.touch-nav-container.show {
  transform: translateY(0);
}

.touch-nav {
  max-width: 250px;
  height: 110px;
  /* margin: 5px auto; */
}

.touch-nav-main,
.touch-nav-donate {
  display: flex;
  /* gap: 8px; */
  align-items: center;
  flex-wrap: nowrap;
}

.touch-nav-main{
  justify-content: space-between;
}

.touch-nav-btn {
  height:110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: none;
  /* border-radius: 12px; */
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-height: 60px;
  flex: 1;
  min-width: 0;
  aspect-ratio: 1/1;
}

.touch-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.touch-nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.touch-nav-btn--primary {
  background:  #1261c5;
  color: white;
}

.touch-nav-btn--primary:hover {
  background: #103e78;
}

.touch-nav-btn--secondary {
  background: var(--brand-blue);
  color: white;
}

.touch-nav-btn--secondary:hover {
  background: #0a4d8f;
}

.touch-nav-btn--small {
  flex: 0 0 auto;
  min-width: 50px;
  padding: 8px 6px;
  min-height: 50px;
  background: var(--bg-soft);
  color: var(--ink-2);
  aspect-ratio: 1/1;
}

.touch-nav-btn--small:hover {
  background: var(--line);
}

.touch-nav-btn i {
  font-size: 20px;
  margin-bottom: 6px;
}

.touch-nav-btn--small i {
  font-size: 16px;
  margin-bottom: 4px;
}

.touch-nav-btn span {
  font-size: 12px;
  text-align: center;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.touch-nav-btn--small span {
  font-size: 11px;
}

img.touchnavi_donation{
  width:70px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .touch-nav-wrapper {
    max-width: calc(100% - 32px);
  }
  
  .touch-nav-toggle {
    height: 50px;
    font-size: 14px;
  }
  
  .touch-nav-toggle i {
    font-size: 14px;
  }
  
  .touch-nav {
    padding: 10px 16px 16px;
    height:100px;
  }
  
  .touch-nav-main,
  .touch-nav-donate {
    gap: 6px;
  }
  
  .touch-nav-btn {
    padding: 10px 6px;
    min-height: 55px;
    font-size: 13px;
  }
  
  .touch-nav-btn--small {
    min-width: 45px;
    padding: 6px 4px;
    min-height: 45px;
  }
  
  .touch-nav-btn i {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .touch-nav-btn--small i {
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .touch-nav-btn span {
    font-size: 11px;
  }
  
  .touch-nav-btn--small span {
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {

  .touch-nav-wrapper{
    width:100vw;
    max-width:100vw;
    left:50%;
  }

  .touch-nav-toggle{
border-radius: 0;
margin-bottom:0;
  }

  .touch-nav {
    height:120px;
    padding:0;
    width:100vw;
  }

  .touch-nav-main,
  .touch-nav-donate {
    gap: 0px;
  }
  .touch-nav-main{
    width:100vw;
    justify-content: space-between;
  }  
  .touch-nav-btn {
    width: 100vw;
    height: 28vw;
    flex-direction: row;
    min-height: 50px;
    padding: 12px 16px;
    /* left: -92px; */
    position: relative;
}


  .touch-nav-btn--small{
    width:10px;
    border-radius:50%;
  }
  
  .touch-nav-btn i {
    margin-right: 8px;
    margin-bottom: 0;
  }
  
  .touch-nav-btn span {
    -webkit-line-clamp: 1;
  }
}




/* ===================================================
   PC 専用スタイル (≥ 840px)
   - コンテンツ幅は 1260px 固定、画面が広いほど左右余白が広がる
   - 指定はpxで管理
   =================================================== */

@media (min-width: 840px) {
  :root {
    --container: 1260px;
  }

  /* コンテナ */
  .inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10px;
  }

  /* -----------------------------------------------
     Header / Navigation
  ----------------------------------------------- */
  .topbar {
    display: flex;
    justify-content: flex-end;
    /* 交通アクセスを右上寄せ */
    align-items: center;
  }

  .topbar__link:hover {
    color: #103d78;
  }

  .site-header {
    aspect-ratio: auto;
    height: 172.8px;
    max-height: 172.8px;
  }

  .site-header .global-nav ul {
    display: flex;
    /* 念のため */
    justify-content: flex-end;
    /* グローバルメニュー右寄せ */
    gap: 12px 22px;
  }

  .site-header .global-nav ul li {
    font-size: 10px;
    /* ご指定値 */
  }

  /* 外部リンクの ↗ を非表示 */
  a[rel~="external"]::after {
    display: none !important;
    content: none !important;
  }

  .ham_visible {
    position: absolute;
    display: none;
  }

  /* -----------------------------------------------
     Hero
  ----------------------------------------------- */
  #hero {
    height: 315px;
    /* 高さ固定 */
    display: flex;
    align-items: center;
    /* 縦中央 */
    justify-content: center;
    /* 横中央 */
    position: relative;
    overflow: hidden;
  }

  #hero .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #hero h1 {
    font-size: 31.5px;
    letter-spacing: 7px;
    font-weight: 600;
    position: relative;
    top: 5px;
  }

  #hero p {
    font-size: 16.5px;
    letter-spacing: 3.5px;
    position: relative;
    top: -6px;
    text-align: center;
  }

  /* -----------------------------------------------
     Sections 共通
  ----------------------------------------------- */
  .section {
    padding: 0px 140px 68px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1260px;
  }

  section#appeal {
    padding-top: 68px;
  }

  /* 2カラム（PCで横並び） */
  .cols {
    display: grid;
    grid-template-columns: 80% 20%;
    gap: 10px;
    align-items: start;
  }

  /* -----------------------------------------------
     Appeal / Purpose
  ----------------------------------------------- */
  /* h2：全幅?センター?上下細ボーダー＋1.2行余白 */
  #appeal h2,
  #purpose h2,
  #keepsakes h2 {
    width: 100%;
    text-align: center;
    border-top: 1px solid #cfd3da;
    border-bottom: 1px solid #cfd3da;
    padding: 1.6em 0;
    margin: 70px 0 80px;
  }

  /* 見出し/本文サイズ */
  #appeal h2,
  #purpose h2,
  #keepsakes h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
  }

  #appeal h3,
  #purpose h3 {
    font-size: 22px;
    position: relative;
    top: -10px;
    letter-spacing: 1px;
    font-weight: 400;
  }

  #appeal p,
  #purpose p {
    font-size: 16px;
    margin-top: 0;
    padding-top: 0;
    letter-spacing: 1px;
  }

  /* 写真：小さめ、180px、角丸なし */
  #appeal .figure img,
  #purpose .figure img {
    width: 180px;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 75px 0px 0 0px;
  }

  /* メディアカラム：幅と余白 */
  #appeal .col--media {
    margin-left: 24px;
    /* ご指定：24px */
    width: 230px;
    /* ご指定：230px */
  }

  /* 本文フォントを明朝（PCのみ） */
  body p {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    letter-spacing: 2px;
    text-align: justify
  }

  /* -----------------------------------------------
     Programs
  ----------------------------------------------- */
  /* 背景ラベル：幅650px?中央寄せ?文字センター */
  #programs h2 {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
    padding: 10px 14px;
    background: #8a1d3f;
    color: #fff;
    font-size: 28px;
  }

  #programs h3 {
    font-size: 16px;
  }

  #programs h3 .donationporpose {
    font-size: 24px;
  }

  /* -----------------------------------------------
     Donation Methods（主要サイズ）
  ----------------------------------------------- */
  #donation-methods h2 {
    font-size: 24px;
  }

  #donation-methods h3 {
    font-size: 18px;
  }

  #donation-methods h4 {
    font-size: 16px;
  }

  #donation-methods p {
    font-size: 14px;
    letter-spacing: 1px;
  }

  #donation-methods p.muted {
    text-align: left;
    font-size: 12px;
  }

  #donation-methods .donation-summary {
    gap: 32px;
    padding: 24px 0;
  }

  #donation-methods .donation-summary figure img {
    width: 210px;
  }

  /* -----------------------------------------------
     Keepsakes（PCの見た目）
  ----------------------------------------------- */
  #keepsakes .thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  #keepsakes .thumbs img {
    height: 120px;
    padding: 8px;
    object-fit: contain;
    background: #fff;
  }

  #keepsakes section.gift-item.gift_b .thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 280px;
    margin: 0 auto;
  }

  #keepsakes section.gift-item.gift_c .thumbs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 140px;
    margin: 0 auto;
  }

  #keepsakes section.gift-item.gift_d .thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: 0 auto;
    width: 420px;
  }

  #keepsakes section.gift-item.gift_d .thumbs img {
    margin-top: 30px;
  }

  #keepsakes section.gift-item.gift_d .thumbs .giftcaption {
    position: absolute;
  }

  #keepsakes section.gift-item.gift_e .thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: 0 auto;
    width: 420px;
  }

  #keepsakes section.gift-item.gift_e .thumbs img {
    margin-top: 30px;
  }

  #keepsakes section.gift-item.gift_e .thumbs .giftcaption {
    position: absolute;
  }



  /* フッター */
  .site-footer .inner {
    display: grid;
    grid-template-columns: 1fr 5fr;
    align-items: baseline;
    padding: 90px 50px 0;
  }

  .site-footer .brand__logo {
    top: 30px;
  }
}