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

/* -------- 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; }

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); }

/* 小道具 */
.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;
  }
  
  .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; */
}
.topbar{ display: flex; justify-content: flex-end; gap: 16px; padding: 8px 0 0; }
.topbar__link{ position: relative;
  color: #3e3a39;
  text-decoration: none;
  font-size: 9px;
  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; }

/* ---------------------------------------------------------
   ヒーロー
--------------------------------------------------------- */
#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; }
.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; }

/* ---------------------------------------------------------
   セクション共通
--------------------------------------------------------- */
.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(2) {
  margin-bottom: 5px;
}

#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; }

/* ---------------------------------------------------------
   ご寄付の趣旨（本文幅をやや狭める）
--------------------------------------------------------- */
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;

  }

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


  #programs h4 {
    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;
}

#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 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;
  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.jpg') 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:100px;
  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;
  left:16px;
}

.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: 0;
    font-size:18px;
  }

}
.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;
}
@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 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 h4 {
    color: #003770;
    margin-top: 35px;
  }


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

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

/* ---------------------------------------------------------
   お問合せ（ライトグレーのカード）
--------------------------------------------------------- */
#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 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 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;
}
#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;}
#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;
}

#keepsakes .keepsakesmatome{
  margin-top:50px;
  margin-bottom: 20px;
}

/* レイアウトのブレークポイント（デザイン幅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: 80px;
}







/* ===================================================
   トップに戻るボタン
   =================================================== */
.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;
}
/* ===================================================
   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: 9px;              /* ご指定値 */
  }
  
  /* 外部リンクの ↗ を非表示 */
  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;
  }
}
