@charset "UTF-8";

/* ========================================
   寄付額
======================================== */

.donation-total {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 3px solid #f2a65a;
  border-radius: 20px;
  text-align: center;
  background: #fff;
}

.donation-total__label {
  font-size: 1.4rem;
  color: #6d5a50;
}

.donation-total__amount {
  font-size: 4rem;
  font-weight: bold;
  color: #d95f3d;
}

/* ========================================
   履歴リスト
======================================== */

.donation-list {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.donation-list a {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.donation-list span {
  font-size: 1.4rem;
  color: #6d5a50;
}

.donation-list strong {
  font-size: 1.8rem;
  color: #2f7f95;
}

/* ========================================
   募金方法カード
======================================== */

.support-list {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.support-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* スマホ：画像を上、文章を下 */
.support-card__image {
  width: 100%;
  min-height: 18rem;
  padding: 2.4rem;
  background: #fff2df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card__image img {
  width: auto;
  max-width: 72%;
  max-height: 13rem;
  object-fit: contain;
  margin: 0 auto;
}

.support-card__body {
  padding: 2.4rem;
}

.support-card h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #d9793d;
}

.support-card p {
  font-size: 1.6rem;
  line-height: 1.9;
}

/* PC：画像左、文章右 */
@media (min-width: 768px) {
  .support-card {
    display: grid;
    grid-template-columns: 20rem 1fr;
  }

  .support-card__image {
    min-height: 100%;
    padding: 2rem;
  }

  .support-card__image img {
    max-width: 16rem;
    max-height: 12rem;
  }

  .support-card__body {
    padding: 2.8rem 3.2rem;
  }
}

/* ========================================
   タブレット以上
======================================== */

@media (min-width: 768px) {

  .donation-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-card {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
}

/* ========================================
   年ごとの寄付履歴
======================================== */

.donation-history {
  margin-top: 3.2rem;
}

.donation-year-block {
  margin-top: 3.2rem;
}

.donation-year-block:first-child {
  margin-top: 0;
}

.donation-year {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  color: #d9793d;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
}

.donation-year::after {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: #f2a65a;
  opacity: 0.45;
}


