@charset "utf-8";

html {}

body {
  background: #fff;
  font-family: "BIZ UDPGothic", sans-serif;
  color: #333;
  font-weight: 400;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

@media (max-width: 600px) {
  body {
    -webkit-font-smoothing: auto;
    /* or: subpixel-antialiased */
    text-rendering: auto;
    /* optimizeLegibility が悪さする場合もある */
  }
}

.background-img {
  background-attachment: fixed;
  background-image: url(../img/background.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

* {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

img {
  width: 100%;
}

.btn {
  transition: .3s;
}

.btn:hover {
  opacity: 0.7;
}

/*====================================================================================================
BASE SETTINGS
====================================================================================================*/
:root {
  --ffEn: "Roboto", sans-serif;
  --ffEn_02: "Oswald", sans-serif;
}

:root {
  /* color */
  --color-black: #3B3939;
  --color-white: #ffffff;
  --color-red: #AE2116;
  --color-red--font: #DA291C;
  --color-yellow: #ffb200;
  --color-green: #009CA6;
  --color-green--font: #2db9c6;
}

@media all and (min-width: 413px) {

  /* //    |- PC  */
  .elmSP {
    display: none !important;
  }
}

@media all and (max-width: 412px) {

  /* //    |- SP  */
  .elmPC {
    display: none !important;
  }
}

.cvWrap {
  text-align: center;
  padding: 10px 0 0;
}

.cvWrap__lead {
  margin: 0;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 18px;
  color: #222;
}

.cvWrap__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #333;
  letter-spacing: .02em;
}

/* ===== ボタン本体（可変幅） ===== */
.cvPill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 33px 18px 55px;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;

  color: #fff;
  text-decoration: none;
  font-weight: 800;

  background: linear-gradient(#e50000, #b00000);
  box-shadow:
    0 16px 26px rgba(0, 0, 0, .10),
    inset 0 1px 0 rgba(255, 255, 255, .30),
    inset 0 -14px 18px rgba(0, 0, 0, .22);

  position: relative;
  overflow: hidden;
  width: fit-content;
  max-width: min(24rem, 100%);
}

/* 上側のハイライト */
.cvPill::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 9px;
  height: 45%;
  border-radius: 999px;
  background: linear-gradient(rgba(255, 255, 255, .7), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cvPill__text {
  font-size: 20px;
  letter-spacing: .09em;
  line-height: 1;
  white-space: nowrap;
  /* 1行固定で安定 */
}

/* 右の白丸 */
.cvPill__icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  box-shadow:
    0 10px 18px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(0, 0, 0, .06);
}

/* ▶ */
.cvPill__icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid #d40000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 4px;
}

.cvPill:hover {
  filter: brightness(1.22);
}

.cvPill:active {
  transform: translateY(1px);
}

/* ===== サイドメニュー1380px以下調整 ===== */
@media (max-width: 1628px) {
  .side {
    padding: 18px 33px 18px 34px;
  }
}

@media (max-width: 1628px) {
  .side {
    padding: 18px 33px 18px 20px;
    font-size: 12px;
  }
}

/* ===== SP調整 ===== */
@media (max-width: 600px) {
  .cvWrap__lead {
    font-size: 14px;
  }

  .cvWrap__note {
    font-size: 12px;
  }

  /* 画面内に必ず収める＋文字サイズを可変に */
  .cvPill {
    width: min(92vw, 72%);
    /* 可変＋上限 */
    justify-content: center;
  }

  .cvPill__text {
    font-size: 18px;
  }

  .cvPill__icon {
    width: 30px;
    height: 30px;
  }

  .cvPill__icon::before {
    border-left-width: 12px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
}

/*SP版のみ表示*/
/* まずは非表示（PCでは出さない） */
.sp-bottomnav {
  display: none;
}

/* スマホだけ表示 */
@media (max-width: 600px) {
  .sp-bottomnav {
    left: 0;
    right: 0;

    bottom: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: fixed;

    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.25fr;
    /* 右だけ少し広め */
    align-items: stretch;

    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .12);
    z-index: 9999;

    /* iPhoneのホームバー分を確保 */
    padding-bottom: env(safe-area-inset-bottom);
  }

  .sp-bottomnav__item {
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 10px 6px 12px;

    text-decoration: none;
    color: #222;
    font-size: 10px;
    line-height: 1.6em;
    text-align: center;
  }

  .sp-bottomnav__icon {
    font-size: 18px;
    line-height: 1;
  }

  /* 右のCTA */
  .sp-bottomnav__cta {
    background: #da291c;
    color: #fff;
    text-decoration: none;

    display: grid;
    place-items: center;
    gap: 2px;

    padding: 14px 8px 14px;
    font-weight: 800;
  }

  .sp-bottomnav__item.is-active {
    color: #da291c;
    font-weight: 800;
  }

  .sp-bottomnav__ctaTop {
    font-size: 8px;
    opacity: .95;
    letter-spacing: .04em;
  }

  .sp-bottomnav__ctaMain {
    font-size: 10px;
    letter-spacing: .06em;
    text-align: center;
  }

  /* タップ時のハイライトを控えめに */
  .sp-bottomnav__item,
  .sp-bottomnav__cta {
    -webkit-tap-highlight-color: transparent;
  }

  /* メニュー分、ページ下の余白を確保（隠れ防止） */
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

}


/*PC版のみの表示*/
.PC_side {
  display: none;
}

@media screen and (min-width: 1387px) {
  .PC_side {
    display: none;
  }
}

@media screen and (min-width: 1430px) {
  .PC_side {
    z-index: 1;
    position: fixed;
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 400px 1fr;
    justify-items: center;
    gap: 20px;
    align-items: flex-start;
  }

  .pc_cta {
    background-repeat: no-repeat;
    background-color: #fff;
    width: 19vw;
    height: auto;
    border-radius: 20px;
    padding: 20px 0 0;
    box-shadow: 0px 0px 2px 1px rgba(163, 163, 163, 0.2);
  }

  .costsample_cta_side {
    width: 90%;
    margin: 0 auto;
    display: flex;
  }

  .costsample_cta_side img {
    width: 50px;
  }

  .pc_cta .bn_title {
    background-color: #ffe9e7;
    font-size: 18px;
    font-weight: 700;
    color: #DA291C;
    text-align: center;
    letter-spacing: 1px;
    line-height: 28px;
    padding: 10px 0;
  }

  .pc_cta .bn_text {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-align: left;
    letter-spacing: 0.2px;
    padding: 20px 5px 0;
  }

  .pc_right {
    top: 8%;
    right: 2%;
    padding: 20px 1% 20px;
    position: absolute;
  }
}

@media (max-width: 1280px) {
  .pc_cta .bn_title {
    font-size: 14px;
    line-height: 20px;
  }

  .pc_cta .bn_text {
    font-size: 10px;
  }
}

/* area */
#container {
  overflow-x: clip;
  z-index: 1;
  position: relative;
}

#main-area {
  margin-top: 70px;
}

.area {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
}

/* font-family */
h2,
h3,
h4,
h5 {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1px;
}

p {
  font-family: "BIZ UDGothic", sans-serif;
}

@media screen and (max-width:960px) {
  #main-area {
    margin-top: inherit;
  }
}


/*タイトルエフェクト*/
.sub_title {
  display: block;
  position: relative;
  padding-bottom: 12px;
  font-size: 22px;
  text-align: center;
  padding: 0 0 10px;
}

.sub_title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 4px;
  transform: translateX(-50%);
  background: #e53935;
}

/*br*/
.br-sp {
  display: none;
}

@media (max-width: 600px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
}


/*==========================KV箇所=============================*/
#kv,
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: auto;
  background: #fff;
  align-items: stretch;
}

#kv .kv__copy,
.hero .kv__copy {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#kv .mosaic img,
.hero .mosaic img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

/* PC用：3×3 */
#kv .mosaic--pc,
.hero .mosaic--pc {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-self: start;
  align-content: start;
}


/* PC非表示 */
#kv .mosaic--sp,
.hero .mosaic--sp {
  display: none;
}


#kv .fv_title {
  font-weight: 700;
  padding: 30px 20px 0 40px;
}

#kv .fv_title h1 {
  width: 200px;
}

#kv .fv_title h2 {
  padding: 0 0 0 5px;
  font-size: 32px;
  margin: 30px 0 10px;
  line-height: 1.5;
  color: #000000;
}

#kv .fv_title p {
  font-size: 16px;
  padding: 0 0 0 5px;
  ;
  font-weight: 700;
}

#kv p.cvWrap__note {
  font-size: 10px;
}


/* =========================
   SP：上4 → コピー → 下4
========================= */
@media (max-width: 768px) {

  #kv,
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    grid-template-areas:
      "top"
      "copy"
      "bottom";
  }

  #kv .mosaic--pc,
  .hero .mosaic--pc {
    display: none;
  }

  #kv .mosaic--sp,
  .hero .mosaic--sp {
    display: contents;
  }

  /* コピー中央 */
  #kv .kv__copy,
  .hero .kv__copy {
    grid-area: copy;
    padding: 34px 18px 28px;
    text-align: center;
  }

  /* 上下の帯 */
  #kv .mosaic__row,
  .hero .mosaic__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: auto;
    overflow: hidden;
  }

  #kv .mosaic__row--top,
  .hero .mosaic__row--top {
    grid-area: top;
  }

  #kv .mosaic__row--bottom,
  .hero .mosaic__row--bottom {
    grid-area: bottom;
  }

  #kv .mosaic__row img,
  .hero .mosaic__row img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    display: block;

  }

  #kv .fv_title {
    text-align: center;
    font-weight: 700;
    padding: 30px 0 40px;
  }

  #kv .fv_title h1 {
    width: 220px;
    margin: 0 auto;
  }

  #kv .fv_title h2 {
    padding: 10px 0 0;
    font-size: 34px;
    margin: 20px 0;
    color: #000000;
  }

  #kv .fv_title p {
    font-size: 18px;
    font-weight: 700;
  }

  #kv p.cvWrap__note {
    font-size: 10px;
  }

}

/**/
/*CTA デザイン*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 10rem;
}

.btn-wrap {
  text-align: center;
  margin: 20px auto;
}

.action_wrap {
  width: 100%;
  margin: 60px auto;
  -webkit-appearance: none;
}

a.btn-c {
  width: 85%;
  position: relative;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 1rem 1.7rem;
  color: #fff;
  background: #DA291C;
  -webkit-box-shadow: 0 2px 5px #d3d3d3;
  box-shadow: 0 2px 5px #d3d3d3;
}

a.btn-c:hover {
  color: #fff;
  background: #b81c10;
  -webkit-box-shadow: 0 2px 5px #d3d3d3;
  box-shadow: 0 2px 5px #d3d3d3;
}

a.btn-c:hover:before {
  right: 20px;
}

a.btn-c::after {
  content: url(../img/icon_donation.svg);
  padding-left: 5%;
  position: absolute;
  top: 15px;
}

a.btn-c br {
  line-height: 24px;
}

.about {
  margin: 0 0 50px;
}

.btn-wrap p {
  font-size: 10px;
  padding: 5px 0 10px;
}

@media (max-width: 1280px) {

  .btn,
  a.btn,
  button.btn {
    font-size: 1.0rem;
  }

  .btn-wrap p {
    font-size: 8px;
    padding: 5px 0 10px;
  }
}

@media (max-width: 390px) {
  a.btn-c span {
    left: calc(50% - 130px);
    width: 260px;
  }
}

/*セーブ・ザ・チルドレンについて*/
#about {
  width: 100%;
}

#about .inner {
  padding: 30px 0 30px;
  background-image: url(../img/world.webp);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position-y: 130px;
  background-position-x: 50px;
  background-color: #FFF7F6;
  height: 430px;
}

#about .inner h3 {
  text-align: center;
  font-size: 20px;
}

#about .inner h3 span {
  color: #DA291C;
  text-decoration: underline #DA291C;
  text-underline-offset: 3px;
}

.about_detail {
  background-color: #FFFFFF;
  border-radius: 20px;
  display: block;
  width: 250px;
  padding: 10px 0;
  margin: 40px 0 0;
  border: solid 3px #DA291C;
  right: 30px;
  position: absolute;
}

.about_detail p {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  text-align: center;
}

.about_detail p span {
  color: #DA291C;
}

.about_detail .hr {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #959595;
  width: 95%;
  margin: 0 auto;
}

/*SP用*/
@media (max-width: 600px) {
  #about {
    width: 100%;
  }

  #about .inner {
    padding: 30px 0 30px;
    background-image: url(../img/world.webp);
    background-repeat: no-repeat;
    background-size: 120%;
    background-position-y: 42%;
    background-position-x: -5px;
    background-color: #FFF7F6;
    height: auto;
  }

  #about .inner h3 {
    text-align: center;
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
  }

  .about_detail {
    display: block;
    width: 80%;
    padding: 10px 0;
    margin: 180px auto 0;
    border: solid 3px #DA291C;
    position: relative;
    right: auto;
  }

  .about_detail p {
    font-size: 18px;
    padding: 10px 0;
    text-align: center;
  }
}

/*about_SCJ おわり*/
/*ご支援をいただいております*/
#fundraise h4 {
  background: url(../img/title_border.svg);
  background-size: cover;
  height: 40px;
  text-align: center;
  font-size: 16px;
  padding: 5px 0;
}

.fundraise_box {
  width: 80%;
  margin: 20px auto 0;
  display: flex;
  gap: 16px;
}

.fundraise_box .individual {
  text-align: center;
  font-size: 16px;
  border-radius: 20px;
  border: solid 3px #DA291C;
  width: 50%;
}

.fundraise_box h5 span {
  color: #DA291C;
}

.fundraise_box .individual h5 {
  height: 80px;
  padding: 20px 0;
}

.fundraise_box .individual img {
  width: 90%;
}

.fundraise_box .corporation {
  text-align: center;
  font-size: 16px;
  border-radius: 20px;
  border: solid 3px #DA291C;
  width: 50%;
}

.fundraise_box .corporation h5 {
  height: 80px;
  padding: 30px 0;
}

.fundraise_box .corporation p {
  text-align: right;
  padding: 2px 25px 0 0;
  font-size: 8px;
}

.corporation_list {
  display: grid;
  grid-template-columns: repeat(3, 85px);
  gap: 2px;
  justify-content: center;
}

@media (max-width: 727px) {
  .corporation_list {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    gap: 2px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  #fundraise h4 {
    background-size: cover;
    background-position: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0 20px;
  }

  .fundraise_box {
    width: 80%;
    margin: 20px auto 0;
    display: block;
  }

  .fundraise_box .individual {
    width: 100%;
    height: auto;
    margin: 10px 0;
    font-size: 22px;
  }

  .fundraise_box .individual img {
    width: 90%;
    bottom: 0;
  }

  .fundraise_box .corporation {
    width: 100%;
    height: auto;
    margin: 10px 0;
    font-size: 22px;
  }

  .corporation_list {
    padding: 0;
  }

  .fundraise_box .corporation h5 {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }

  .fundraise_box .corporation p {
    text-align: right;
    padding: 5px 25px 6px 0;
  }
}

/**/
/*証明書・報告書*/
#documents {
  margin: 40px 0 0;
}

#documents .inner {
  width: 80%;
  margin: 0 auto;
  background-color: #FFF7F6;
  display: flex;
  border-radius: 20px;
  padding: 30px 30px;
  position: relative;
}

#documents .inner h4 {
  width: 50%;
  font-size: 16px;
  padding: 0 20px 0 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#documents .inner img {
  width: 45%;
  margin: 0 0 0 auto;
}

@media (max-width: 600px) {
  #documents .inner {
    width: 90%;
    margin: 0 auto;
    background-color: #FFF7F6;
    display: block;
    border-radius: 20px;
    padding: 30px 30px;
    position: relative;
  }

  #documents .inner h4 {
    width: 100%;
    font-size: 18px;
    text-align: center;
    padding: 0;
    position: relative;
    top: auto;
    transform: none;
    margin: 0 auto 20px;
  }

  #documents .inner img {
    width: 100%;
    margin: 0 auto;
  }
}

/*証明書・報告書おわり*/
/*寄付の使い道*/
#donation-usage {
  margin: 20px 0 0;
}

#donation-usage .inner {
  width: 80%;
  margin: 0 auto 20px;
  background-color: #DA291C;
  display: flex;
  border-radius: 20px;
  padding: 20px 20px 20px 50px;
  position: relative;
}

#donation-usage .inner .usage_detail {
  width: 55%;
  color: #ffffff;
  padding: 0 77px 0 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#donation-usage .inner .usage_detail h4 {
  font-size: 16px;
  padding: 0 0 10px 0;
}

#donation-usage .inner .usage_detail p {
  font-size: 14px;
}

#donation-usage .inner .usage_image {
  width: 45%;
  background-color: #ffffff;
  padding: 15px;
  margin: 0 0 0 auto;
  border-radius: 20px;
}

#donation-usage .inner .usage_image p {
  font-size: 8px;
  line-height: 1.1em;
  padding: 10px 0 0;
}

@media (max-width: 600px) {
  #donation-usage .inner {
    width: 90%;
    display: block;
    padding: 30px;
  }


  #donation-usage .inner .usage_detail h4 {
    font-size: 18px;

  }

  #donation-usage .inner .usage_image p {
    font-size: 16px;
  }

  #donation-usage .inner .usage_image p.note {
    font-size: 8px;
    line-height: 1.1em;
    padding: 10px 0 0;
  }

  #donation-usage .inner .usage_detail {
    width: 90%;
    font-size: 18px;
    text-align: center;
    padding: 0;
    position: relative;
    top: auto;
    transform: none;
    margin: 0 auto 20px;
  }

  #donation-usage .inner .usage_image {
    width: 100%;
    margin: 0 auto;
  }

}

/**/
#our-activities .inner {
  width: 85%;
  margin: 0 auto;
}

#our-activities h3 {
  padding: 50px 0 10px;
  text-align: center;
  font-family: "BIZ UDPMincho", serif;
  font-size: 24px;
}

.activity {
  background: #f2f2ef;
  border-radius: 18px;
  padding: 28px;
}

.activity__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* 左 */
.activity__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: #007b83;
  text-align: center;
}

.tablist {
  display: grid;
  gap: 8px;
}

.tab {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: #888;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
  transition: transform .15s ease, background-color .2s ease, color .2s ease;
}

.tab__arrow {
  opacity: .5;
}

.tab:hover {
  transform: translateY(-1px);
}

.tab.is-active {
  background: #007b83;
  color: #fff;
}

.tab.is-active .tab__arrow {
  opacity: 1;
}

/* 右：枠 */
.panel {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

/* 上：画像＋バッジ */
.panel__media {
  position: relative;
  aspect-ratio: 15 / 10;
  overflow: hidden;
}

.panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel__badge {
  position: absolute;
  left: 12px;
  bottom: 12px;

  background: #fff;
  color: #007b83;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  padding: 6px 10px;
  border-radius: 4px;
}

/* 本文 */
.panel__text {
  margin: 0;
  padding: 18px 18px 22px;
  line-height: 1.9;
  font-size: 14px;
  color: var(--color-black);
}

/* 切り替えの“ぬるっ” */
.panel.is-fading {
  opacity: .3;
  transform: translateY(2px);
  transition: opacity .18s ease, transform .18s ease;
}

@media (max-width: 728px) {
  #our-activities .inner {
    width: 90%;
  }

  /* どのバリエーションでも1カラムに強制 */
  .activity__inner,
  .activity--orange .activity__inner,
  .activity__inner--reverse {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* 子要素を“1列目”に固定して縦積み */
  .activity__left,
  .activity__right {
    grid-column: 1 / -1;
    /* 1列しかないけど念のため */
  }

  /* ✅ 上：タブ / 下：パネル */
  .activity__left {
    grid-row: 1;
  }

  .activity__right {
    grid-row: 2;
  }

  .tab__arrow,
  .tab__arrow--left {
    display: block;
  }

  /* タブを2列に */
  .tablist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* ボタンの中身（テキスト＋矢印） */
  .tab {
    justify-content: space-between;
    /* 矢印を右へ */
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 12px;
    white-space: normal;
    text-align: left;
    gap: 5px;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  /* 長い文言を折り返したいならこっち */
  /* .tab{ white-space: normal; } */

  .tab__arrow {
    margin-left: 12px;
    opacity: .6;
  }

  .activity--orange .tab__arrow--left {
    display: none;
  }

  /* 右端に「＞」を出す */
  .activity--orange .tab::after {
    content: "›";
    margin-left: auto;
    opacity: .6;
  }

  /* SPは矢印を右に寄せたいので */
  .activity--orange .tab {
    justify-content: space-between;
  }
}

.our-activities_tag {
  padding: 5px 20px;
  width: 130px;
  max-width: 100%;
  border-radius: 20px;
  background-color: #DFDCD0;
  color: #DA291C;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
}

.our-activities_tag2 {
  padding: 5px 20px;
  margin: 0 0 0 75px;
  width: 70px;
  max-width: 100%;
  border-radius: 20px;
  background-color: #DFDCD0;
  color: #DA291C;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
}

.our-activities_tag3 {
  padding: 5px 20px;
  width: 240px;
  max-width: 100%;
  border-radius: 20px;
  background-color: #DFDCD0;
  color: #DA291C;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
}

/* ===== 共通テーマ変数 ===== */
.activity {
  --accent: #007b83;
  /* デフォ水色 */
  --bg: #f2f2ef;
  margin: 20px 0;
}

.activity--orange {
  --accent: #f26a3a;
  /* オレンジ */
}

/* 左タイトル色 */
.activity__title {
  color: var(--accent);
}

/* タブのアクティブ */
.tab.is-active {
  background: var(--accent);
}

/* パネルの見出しバッジ */
.panel__badge {
  color: var(--accent);
}

/* ===== 国内の並び（右にボタン） ===== */
.activity__left--right {
  order: 2;
  /* タブを右側へ */
}

.activity--orange .activity__inner {
  grid-template-columns: 1fr 252px;
  /* パネル / タブ */
}

/* 矢印を左向きに */
.tab__arrow--left {
  margin: 0 10px 0 0;
  opacity: 0.6;
}

.activity__inner--reverse {
  grid-template-columns: 1fr 320px;
}

.activity__inner {
  align-items: stretch;
  /* これ大事 */

}

/* 右側（タイトル＋ボタン）を縦中央へ */
.activity__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* ← 縦中央 */
  height: 100%;
}

/* 国内：左パネル 右タブ */
.activity__inner--reverse {
  grid-template-columns: 1fr 320px;
}

.advocacy__inner {
  width: 100%;
  background: #f2f2ef;
  border-radius: 20px;
  margin: 0 auto;
  padding: 1px 30px 30px;
  text-align: center;
}

.advocacy__title {
  margin: 50px 0 12px;
  color: #F2A900;
  font-weight: 800;
  font-size: 24px;
}

.advocacy__lead {
  margin: 0 auto 28px;
  max-width: 95%;
  line-height: 2.1;
  font-size: 12px;
  color: #111;
}

/* 下の3枚 */
.advocacy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.mini-card {
  display: grid;
  gap: 12px;
}

.mini-card__img {
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16/9;
}

.mini-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3枚目の画像無し（グレーの箱） */
.mini-card__img.is-placeholder {
  background: #cfcfcf;
}

/* キャプション */
.mini-card__text {
  margin: 0;
  color: #F2A900;
  font-weight: 800;
  line-height: 1.5;
  font-size: 16px;
}

/* ✅スマホは縦積み */
@media (max-width: 600px) {
  .advocacy__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {}


/*子どもたちの声*/
#child_voice .inner {
  width: 85%;
  margin: 0 auto;
  padding: 60px 0 0;
}

#child_voice .inner h3 {
  text-align: center;
  margin: 0 0 40px;
}

.story {
  padding: 24px 16px;
  background: #fff;
}

.story__list {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.voices {
  padding: 24px 16px;
}

.voices__list {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

/* ===== カード共通 ===== */
.voiceCard {
  background: #fdecee;
  border-radius: 18px;
  padding: 22px 24px;
  position: relative;
  overflow: visible;
  /* SPで“はみ出し”させるため */
}

/* タグ（pill） */
.voiceCard__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  width: fit-content;
}

.voiceCard__tag.is-red {
  background: #f6c9c9;
  color: #b03030;
}

.voiceCard__tag.is-beige {
  background: #f7c7cf;
  color: #b03030;
  left: 120px;
}

.voiceCard__tag.is-pink {
  background: #f7c7cf;
  color: #b03030;
}

.voiceCard__body {
  margin-top: 10px;
}

.voiceCard__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 800;
  padding: 20px 0 0;
  font-family: "BIZ UDPMincho", serif;
  color: #111;
}

.voiceCard__meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: #666;
}

.voiceCard__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}

.voiceCard__media {
  margin: 0;
}

.voiceCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   PC：本文/写真の2カラム + 縦中央（重要）
========================= */
@media (min-width: 577px) {
  .voiceCard {
    display: grid;
    grid-template-columns: 1fr 200px;
    /* 右に写真 */
    column-gap: 20px;
    align-items: center;
    /* ←写真も本文も縦中央 */
    padding-right: 24px;
  }

  /* タグは上に残す（grid外に置かれてるのでOK） */
  .voiceCard__tag {
    position: absolute;
    top: 18px;
    left: 24px;
  }

  .voiceCard__body {
    margin-top: 0;
    padding-top: 20px;
    /* タグの分の余白 */
  }

  .voiceCard__media {
    width: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    justify-self: end;
  }

  /* 交互：左に写真 */
  .voiceCard.is-left {
    grid-template-columns: 200px 1fr;
  }

  .voiceCard.is-left .voiceCard__media {
    order: -1;
    /* 左側へ */
    justify-self: start;
  }

  .voiceCard.is-left .voiceCard__tag {
    left: 242px;
  }

  /* イラストはcontainに */
  .voiceCard__media.is-illust img {
    object-fit: contain;
  }
}

/* =========================
   SP：写真は右固定で“上にはみ出し”
========================= */
@media (max-width: 578px) {
  .voices {
    padding: 24px 0;
  }

  #child_voice .inner {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0 0;
  }


  /* カードを縦積み＆並び順を指定 */
  .voiceCard {
    display: grid;
    grid-template-areas:
      "tag"
      "title"
      "media"
      "meta"
      "text";
    gap: 10px;
    padding: 50px 9% 44px;
  }

  .voiceCard__tag {
    grid-area: tag;
  }

  /* タイトル/本文ブロックを分けて順番を確実に */
  .voiceCard__body {
    display: contents;
    /* bodyのラッパーを消して中身をareasに割り当て */
    padding-right: 0;
    /* 以前の右余白は不要 */
    margin-top: 0;
  }

  .voiceCard__title {
    grid-area: title;
    margin: 0;
    font-size: 24px;
    line-height: 1.5em;
    letter-spacing: 0.07em;
    padding: 10px 0;
  }

  .voiceCard__meta {
    grid-area: meta;
    margin: 0;
  }

  .voiceCard__text {
    grid-area: text;
    margin: 0;
    font-size: 16px;
  }

  /* 画像：absoluteを解除してカード内へ */
  .voiceCard__media {
    grid-area: media;
    position: static;
    width: 100%;
    aspect-ratio: 9 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
  }

  .voiceCard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* “交互”指定はSPでは無視（右固定なども解除） */
  .voiceCard.is-left .voiceCard__media {
    margin: 0;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/* カード */
.storyCard {
  --card-bg: #fdecee;
  --tag-bg: #f6c9c9;

  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  padding: 22px 24px;
  overflow: visible;
  /* 画像のはみ出しを見せる */
}

/* PC：本文+画像の領域を作る（画像分の余白を右に確保） */
@media (min-width: 769px) {
  .storyCard {
    padding-right: 220px;
    /* 右画像のとき：画像分のスペース */
    min-height: 160px;
  }

  .storyCard.storyCard--reverse {
    padding-right: 24px;
    padding-left: 220px;
    /* 左画像のとき */
  }
}

.storyCard__body {
  display: grid;
  gap: 8px;
}

.storyCard__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: #b03030;
  font-weight: 700;
  font-size: 12px;
  width: fit-content;
}

.storyCard__tag--gray {
  background: #efe7e0;
  color: #7a5a3a;
}

.storyCard__tag--pink {
  background: #f7c7cf;
  color: #b03030;
}

.storyCard__title {
  margin: 0;
  font-size: clamp(16px, 2.3vw, 22px);
  line-height: 1.35;
  font-weight: 800;
  color: #111;
}

.storyCard__meta {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.storyCard__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}

/* 画像（PCは右上にabsoluteではみ出し） */
.storyCard__media {
  margin: 0;
}

@media (min-width: 769px) {
  .storyCard__media {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 180px;
    aspect-ratio: 1 / 1;
    /* 正方形 */
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
    background: #fff;
    display: grid;
    place-items: center;
  }

  .storyCard--reverse .storyCard__media {
    left: 16px;
    right: auto;
  }
}

.storyCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* イラストは“余白を持って置く”場合 */
@media (min-width: 769px) {
  .storyCard__media--illust {
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .storyCard__media--illust img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

/* SP：縦積み（画像→本文） */
@media (max-width: 768px) {
  .storyCard {
    padding: 18px 16px;
  }

  .storyCard__media {
    width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 0 10px auto;
    /* 右上っぽく寄せる */
    box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
    background: #fff;
  }

  /* 反転カードでもSPは同じ（必要なら左寄せに変えられる） */
  .storyCard--reverse .storyCard__media {
    margin-left: 0;
    margin-right: auto;
    /* 左寄せにしたい場合 */
  }
}




/*子どもたちの声　おわり*/

/*継続ブリッジ*/
#sustained-support .inner h3 {
  font-size: 22px;
  padding: 40px 0 20px;
}

#sustained-support .inner {
  text-align: center;
}

#sustained-support .inner span {
  color: #DA291C;
}

#sustained-support .message {
  background: url(../img/bridge.webp);
  background-color: #ffffff;
  background-position: bottom;
  background-size: cover;
  height: 330px;
  position: relative;
}

#sustained-support .message p {
  font-size: 18px;
  font-weight: 700;
  width: 40%;
  text-align: left;
  margin: 0 auto;
  padding: 71px 0;
  letter-spacing: 1px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  #sustained-support .inner h3 {
    font-size: 18px;
    padding: 40px 5% 20px;
  }

  #sustained-support .message {
    height: 211px;
    background-size: cover;
    background-position: left;
  }

  #sustained-support .message p {

    font-size: 12px;
  }

}

/*継続ブリッジおわり*/

/*SCサポートについて*/
#sc-support .donation_need {
  width: 90%;
  margin: 0 auto;
}

#sc-support .donation_need h3 {
  text-align: center;
  font-size: 22px;
  padding: 60px 0 10px;

}

#sc-support span {
  color: #DA291C;

}

#sc-support p {
  font-size: 12px;
  text-align: center;
}

/*コストサンプルについて*/
#sc-support h4 {
  text-align: center;
  font-size: 20px;
  padding: 40px 0 20px;
}

.sc_support_container {
  display: flex;
  width: 90%;
  height: auto;
  padding: 20px 20px;
  margin: 0 auto;
}

#sc-support .donation_costsample p.note {
  font-size: 10px;
  width: 80%;
  margin: 0 auto 60px;
  text-align: left;

}




.sc_support_item {
  width: 33%;
  margin: 0 10px;
  box-shadow: 0px 0px 15px -5px #b3b3b3;
  background-color: #ffffff;
  border-radius: 20px;
}

#sc-support .costsample_title {
  padding: .2em .4em;
  width: 80%;
  margin: -15px auto 0;
  border-radius: 20px;
  background-color: #DA291C;
}

#sc-support .costsample_title p {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
}

#sc-support .costsample_text p {
  padding: 0 20px 20px;
  margin: 0 auto;
  text-align: left;
}

.costsample_text h5 {
  display: flex;
  align-items: center;
  /* 縦方向の中央揃え */
  justify-content: center;
  color: #DA291C;
  font-size: 16px;
  text-align: center;
  height: 70px;
}

.costsample_text img {
  display: block;
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

.costsample_text p {
  font-size: 12px;
}

/*SP用*/
@media (max-width: 739px) {
  #sc-support h4 {
    font-size: 22px;
    padding: 40px 0 5px;
  }

  .sc_support_container {
    display: flex;
    width: 100%;
  }
}

@media (max-width: 611px) {
  .sc_support_container {
    display: block;
    height: auto;
    padding: 0 10%;
    margin: 0 auto;
  }

  #sc-support .costsample_title p {
    font-size: 20px;
  }

  .sc_support_item {
    width: 100%;
    margin: 48px 0;
  }

  #sc-support .costsample_title {
    padding: .2em .4em;
    text-align: center;
    width: 60%;
    margin: -15px auto 0;
    border-radius: 20px;
    background-color: #DA291C;
    position: absolute;
    display: grid;
    justify-items: center;
    left: 0;
    right: 0;
  }

  .costsample_text img {
    display: flex;
    width: 45%;
    margin: 0 auto;
    padding: 40px 0 0;
    text-align: center;
  }

  #sc-support .costsample_text h5 {
    font-size: 22px;
  }

  #sc-support .costsample_text p {
    font-size: 16px;
    padding: 19px 40px 20px;
  }
}

/*コストサンプルおわり*/
/*SCサポートに参加いただくと*/
.donation_benefits {
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

/* ==== ベースレイアウト ==== */
.support-benefits {
  --circle-size: 140px;
  /* 丸の直径 */
  --line-thickness: 8px;
  /* つなぎ線の太さ */
  --line-color: #f2a3a3;
  /* つなぎ線の色（お好みで） */
  --circle-color: #f26b6b;
  /* 丸の色（参考：赤系） */
  --gap: 48px;
  /* ノード間の余白 */
  --title-color: #d63a3a;
  /* タイトルの色 */
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --radius: 9999px;
  /* 丸角 */
}

.support-benefits__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: var(--gap);
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 16px 8px;
}

/* ==== 横方向のコネクタ線（親の ::before で一本引く） ==== */
.support-benefits__list::before {
  content: "";
  position: absolute;
  top: calc(var(--circle-size) / 2 + 40px);
  /* padding-top分 + 丸半分 */
  left: calc((-50px / 2) * -1 + 16px);
  right: calc((-50px / 2) * -1 + 16px);
  height: 6px;
  background: #f26b6b;
  z-index: 0;
  transform: translateY(0);

}

/* ==== 各ノード（丸） ==== */
.benefit {
  text-align: center;
  position: relative;
}

.benefit__node {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  background: #f26b6b;
  border-radius: 500px;
  z-index: 1;
  /* 線より前面 */
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.benefit__node2 {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  background: #f26b6b;
  border-radius: 500px;
  z-index: 1;
  /* 線より前面 */
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

/* ==== 画像を丸の上に重ねる（少しはみ出して存在感を） ==== */
.benefit__node img {
  width: 110%;
  max-width: none;
  height: auto;
  display: block;
  transform: translateY(-3%) rotate(0deg);
  filter: drop-shadow 0 10px 30px rgba(0, 0, 0, .12);
}

.benefit__node2 img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  transform: translateY(-10%) rotate(0deg);
}

/* ==== タイトル ==== */
#sc-support p.benefit__title {
  margin: 8px 0 0;
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.4;
  color: #da291c;
  font-weight: 700;
}

/* ==== レスポンシブ（スマホは縦積み & 縦方向の線） ==== */
/* =========================
   SP：縦タイムラインをきれいにする
========================= */
@media (max-width: 600px) {
  .support-benefits__list {
    grid-template-columns: 1fr;
    gap: 44px;
    /* 縦の間隔 */
    padding: 20px 12px 10px;
    align-items: start;
  }

  /* 縦線：丸の中心位置に合わせる */
  .support-benefits__list::before {
    top: 20px;
    bottom: 20px;
    left: calc(12px + (140px / 2));
    /* padding-left(=12px) + 丸の半径 */
    right: auto;
    width: var(--line-thickness);
    height: auto;
    transform: none;
  }

  /* 1アイテムを「丸｜テキスト」の2カラムに */
  .benefit {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 16px;
    align-items: center;
    text-align: left;
    /* タイトルは左寄せに */
  }

  /* 丸：左カラムに固定（中央線の上に乗る） */
  .benefit__node,
  .benefit__node2 {
    margin: 0;
    /* autoを解除 */
    justify-self: start;
  }

  #sc-support p.benefit__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
  }

  #sc-support p {
    font-size: 14px;
    text-align: center;
  }

  .benefit__node img {
    width: 105%;
    transform: translateY(-3%);
  }

  .benefit__node2 img {
    width: 100%;
    transform: translateY(-10%);
  }

}


/*SCサポートに参加いただくと おわり*/
/*寄付金控除*/

.donation_deduction {
  background-color: #F1F0EF;
  margin: 20px 0 40px;
  padding: 0 0 20px;
}

.donation_deduction .flow {
  background-color: #FFFFFF;
  width: 80%;
  margin: 20px auto;
  border-radius: 20px;
  padding: 30px 40px;
}

.donation_deduction .flow h5 {
  font-size: 14px;
  text-align: center;
}

#sc-support .donation_deduction .flow p {
  font-size: 8px;
  text-align: left;
  line-height: 1.5em;
  padding: 10px 0 0;
}

/*SP用*/
@media (max-width: 600px) {
  .donation_deduction {
    padding: 0 10% 20px;
  }

  .donation_deduction h4 {
    font-size: 18px;
    text-align: center;
  }

  .donation_deduction .flow {
    padding: 30px 20px 20px;
    width: 100%;
  }

  #sc-support .donation_deduction .flow p {
    font-size: 10px;
    padding: 15px 0 0;
  }
}

/*寄付金控除 おわり*/
/*トナーの声*/
#donation-voice {
  text-align: center;
  padding: 60px 0 0;
  font-size: 16px;
}

.voice {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 30px;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 24px 0;
  background: #fff;
}

/* 文字（引用） */
.voice__quote {
  position: relative;
  margin: 0;
  padding: 18px 40px 18px 40px;
  /* “ ” の分だけ余白を確保 */
  line-height: 1.6;
  color: #111;
}

.voice__quote h4 {
  font-size: 22px;
  font-weight: 700;
  font-family: "BIZ UDPMincho", serif;
  text-align: left;
}

/* 左上の “ */
.voice__quote::before {
  content: url(../img/left.svg);
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  color: #111;
}

/* 右下の ” */
.voice__quote::after {
  content: url("../img/right.svg");
  position: absolute;
  right: 6px;
  bottom: -10px;
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  color: #111;
}

/* 右側カード */
.voice__card {
  background: #f2f2f2;
  border-radius: 22px;
  padding: 18px 16px;
  text-align: center;
}

.voice__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
}

.voice__meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}

.voice__role {
  font-weight: 700;
}

.voice__name {
  font-weight: 500;
}

/* ✅ スマホ対応：縦積み */
@media (max-width: 640px) {

  .voice {
    grid-template-columns: 1fr;
  }

  .voice__quote {
    padding: 39px 27px;
  }

  .voice__quote::before {
    top: -17px;
  }

  .voice__quote::after {
    right: -25px;
    bottom: -25px;
  }


  .voice__card {
    justify-self: start;
    width: 100%;
  }

}

.reason {
  background: #fceeef;
  border-radius: 20px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 165px 1fr;
  /* 左見出し + 本文 */
  gap: 24px;
  align-items: start;
  width: 80%;
  margin: 0 auto 20px;
}

/* 左タイトル（赤） */
.reason__title {
  margin: 0;
  color: var(--color-red);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

/* 右本文 */
.reason__content {
  color: var(--color-black);
  font-size: 12px;
  line-height: 2.1;
  font-weight: 500;
  text-align: left;
}

/* 段落の間隔 */
.reason__content p {
  margin: 0 0 18px;
  font-size: 12px;
}

.reason__content p:last-child {
  margin-bottom: 0;
}

/* 赤い下線強調 */
.em {
  color: var(--color-red--font);
  font-weight: 700;
}

/* ✅スマホ：縦並び */
@media (max-width: 768px) {
  .reason {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 14px;
    width: 85%;
  }

  .reason__title {
    margin: 0;
    color: var(--color-red--font);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.9;
    text-align: left;
  }

  .reason__content p {
    margin: 0 0 16px;
    font-size: 16px;
  }


}

/*donorvoiceおわり*/
/*faq*/
#faq {
  margin: 0 auto;
  padding: 40px 16px;
}

#faq .inner {
  width: 80%;
  margin: 0 auto;
}

.faq__list {
  padding: 40px 0;
  display: grid;
  gap: 14px;
}

/* 1項目カード */
.faq__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  will-change: height;
}

/* summaryのデフォルト矢印を消す */
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 28px 1fr 44px;
  /* Q / 文章 / ボタン */
  gap: 14px;
  align-items: center;
  position: relative;
}

/* Chrome/Safari */
.faq__q::-webkit-details-marker {
  display: none;
}

/* Q */
.faq__qmark {
  color: #e53935;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

/* 質問文 */
.faq__qtext {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
}

/* 区切り線（開いてるときは答えの上に線が出る感じに） */
.faq__item[open] .faq__q {
  border-bottom: 1px solid #ddd;
}

/* 右端の丸アイコン */
.faq__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  justify-self: end;
  background: #e53935;
  position: relative;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), background-color .2s ease;

}

/* 開いたらクルッと回す */
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}


/* + の横線 */
.faq__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}

/* + の縦線（open の時は消して「－」に） */
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 14px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon {
  background: #bdbdbd;
  /* 開いてる時はグレーっぽい */
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
  /* 縦線消す＝「－」になる */
}

/* 回答 */
.faq__a {
  padding: 16px 18px 18px;
  color: #e53935;
  font-weight: 600;
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 528px) {
  #faq {
    padding: 40px 0;
  }

  #faq .inner {
    width: 90%;
  }

  .faq__qtext {
    font-size: 16px;
  }

  .faq__a {
    padding: 16px 18px 18px;
    color: #e53935;
    font-weight: 600;
    line-height: 1.8;
    font-size: 16px;
  }
}

/*faqおわり*/
/*adout scj*/
#about_scj .inner {
  width: 90%;
  margin: 60px auto 0;
  background: #f2f2f2;
  border-radius: 20px;
  padding: 30px 34px;

}

/* 上段：2カラム */
.about__top {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 30px;
  padding: 20px 0 0;
  align-items: start;
}

.about__title {
  margin: 0 0 12px;
  color: #e53935;
  font-size: 18px;
  font-weight: 700;
}

.about__text p {
  margin: 0 0 14px;
  line-height: 2;
  font-size: 12px;
  color: #111;
}

/* 右画像 */
.about__image {
  margin: 0;
  display: flex;
  justify-content: center;
}

.about__image img {
  width: 100%;
  max-width: 285px;
  height: auto;
  border-radius: 6px;
}

.about__circles {
  --circle: 285px;
  /* 円のサイズ */
  --overlap-x: clamp(30px, 6vw, 24px);
  /* PCの重なり量 */
  --overlap-y: 28px;
  /* SPの重なり量 */
  --red: #e53935;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 0;
}

/* 円カード本体 */
.circle-card {
  width: var(--circle);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  /* 真っ白すぎない感じ */
  text-align: center;

  display: grid;
  align-content: center;
  justify-items: center;

  padding: clamp(20px, 3vw, 34px);
  box-sizing: border-box;
  position: relative;
}

/* 横並びで重ねる（2個目を左に寄せる） */
.circle-card+.circle-card {
  margin-left: calc(var(--overlap-x) * -1);
}

.circle-card__inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  /* ←この数字で“開始位置”を揃える */
  width: min(78%, 320px);
  text-align: center;
}


/* どっちを手前にするか（好みで） */
.circle-card--vision {
  z-index: 2;
}

.circle-card--mission {
  z-index: 1;
}

.circle-card__en {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
}

.circle-card__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
}

.circle-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  color: #111;
  max-width: 22em;
  /* 文章幅を絞って読みやすく */
}

/* ✅ SP：縦並び＋ちょい重ね */
@media (max-width: 687px) {
  .about__circles {
    --circle: 85vw;
    flex-direction: column;
    padding: 30px 0 0;
  }

  .circle-card__inner {
    position: static;
    transform: none;
    width: auto;

  }

  .circle-card+.circle-card {
    margin-left: 0;
    margin-top: calc(var(--overlap-y) * -1);
    /* ちょい重ね */
  }

  /* SPで前後を逆にしたい場合はここ */
  .circle-card--vision {
    z-index: 1;
  }

  .circle-card--mission {
    z-index: 2;
  }

  .about__top {
    grid-template-columns: 1fr;
  }

  .about__image {
    order: 1;
    /* 画像を上にしたいなら */
  }

  .circle-card__text {
    margin: 0;
    font-size: 14px;
  }
}

@media (max-width: 528px) {
  .about__title {
    font-size: 22px;
    text-align: center;
  }

  .about__text p {
    font-size: 16px;
  }
}

/**/
/**/
#scj_message {
  max-width: 90%;
  margin: 0 auto;
  padding: 56px 18px 40px;
  background: var(--color-white);
  color: var(--color-black);
}

.message__quote {
  position: relative;
  margin: 20px 0 40px;
  padding: 18px 40px 18px 40px;
  line-height: 1.6;
  color: #111;
}

.message__quote h4 {
  font-size: 22px;
  font-weight: 700;
  font-family: "BIZ UDPMincho", serif;
  text-align: center;
  line-height: 2em;
}

/* 左上の “ */
.message__quote::before {
  content: url(../img/left.svg);
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  color: #111;
}

/* 右下の ” */
.message__quote::after {
  content: url("../img/right.svg");
  position: absolute;
  right: 6px;
  bottom: -30px;
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  color: #111;
}


/* 上のキャッチ */
.message__headline {
  text-align: center;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 28px;
}

/* 本文 */
.message__body {
  font-size: 14px;
  line-height: 2.1;
  color: #111;
}

.message__body p {
  margin: 0 0 16px;
  font-size: 12px;
}

.message__body p span {
  color: var(--color-red--font);
}


/* 署名ブロック */
.message__sign {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.message__signtext {
  text-align: right;
}

.message__org {
  margin: 0 0 6px;
  font-size: 12px;
  color: #333;
}

.message__pos {
  margin: 0;
  font-size: 12px;
  color: #333;
  font-weight: 600;
}

.message__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .message__headline {
    text-align: center;
    font-size: clamp(22px, 2vw, 20px);
  }

  .message__body p {
    margin: 0 0 16px;
    font-size: 16px;
  }

}

/*adout scj end*/
/**/

.site-footer {
  background: #fff;
  margin: 60px 0 0;
}

/* 上：画像 */
.site-footer__hero {
  width: 100%;
  aspect-ratio: 29 / 9;
  overflow: hidden;
}

.site-footer__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .site-footer__hero {
    height: 32vw;
  }

  .site-footer__hero img {
    height: auto;
  }
}

/* 中：情報 */
.site-footer__info {
  padding: 28px 60px;
  width: 80%;
  margin: 0 auto;
}

/* 表っぽい見せ方（dtとddを横に並べる） */
.footer-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  row-gap: 15px;
  column-gap: 16px;

  font-size: 12px;
  line-height: 1.8;
  color: #111;
  text-align: left;
}

.footer-dl dt {
  font-weight: 700;
  color: #111;
}

.footer-dl dd {
  margin: 0;
  color: #111;
}

/* 下：コピーライト帯 */
.site-footer__bottom {
  background: #4a4a4a;
  color: var(--color-white);
  text-align: center;
  font-size: 8px;
  padding: 14px 10px;
}

@media (max-width: 528px) {
  .site-footer__info {
    padding: 28px 0;
    width: 90%;
  }
}

footer {
  text-align: center;
}