/* トップページ専用スタイル */

.hero {
  position: relative;
}

/* 四葉のモチーフ */
.hero::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 15%;
  width: 140px;
  height: 140px;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 35% 35%, #ffffff 20%, transparent 50%),
    radial-gradient(circle at 65% 35%, #ffffff 20%, transparent 50%),
    radial-gradient(circle at 35% 65%, #ffffff 20%, transparent 50%),
    radial-gradient(circle at 65% 65%, #ffffff 20%, transparent 50%),
    radial-gradient(circle at 50% 50%, #ffffff 25%, transparent 45%);
  background-size: 100% 100%;
  background-position: 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 120px;
  height: 120px;
  opacity: 0.08;
  border-radius: 50%;
  background: #ffffff;
}

.label {
  display: inline-block;
  margin: 0 0 16px 0;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.65);
  border-left: 3px solid #0f3c78;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #0f3c78;
}

.hero-content h1 {
  color: #0f3c78;
}

.hero-content .lead {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
  color: #334155;
  opacity: 0.95;
}

@media (max-width: 600px) {
  .hero {
    background-image:
      linear-gradient(
        rgba(255,255,255,0.45),
        rgba(255,255,255,0.72)
      ),
      url("../../images/home/sp-hero.png");

    background-size: cover;
    background-position: center top;
    min-height: auto;
    padding: 120px 5% 80px;
  }

  .hero-content {
    width: 100%;
    max-width: 88%;
    margin-top: 220px;
    padding: 24px 20px;
    border-radius: 28px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(10px);
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero-content .lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-content .button {
    width: 100%;
    text-align: center;
  }
}

.sns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
/*SNS表示*/

.sns-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(11, 102, 195, 0.08);

  display: grid;
  grid-template-rows: 90px 150px 64px auto;
  align-items: center;
}

.sns-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.sns-logo {
  max-height: 72px;
  max-width: 260px;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.sns-card p {
  margin: 0;
  line-height: 1.9;
}

.sns-link {
  justify-self: center;
}

.sns-qr {
  width: 170px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}


/*活動報告*/


.top-report-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}



.top-report-link {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 60, 120, 0.16);
  text-decoration: none;
  color: #24415d;
  font-size: 0.95rem;
}

.top-report-link:hover {
  opacity: 0.7;
}


.top-report-date {
  min-width: 110px;
  color: #6b87a5;
  font-size: 0.9rem;
}

.top-report-title {
  font-weight: 500;
  font-size: 1rem;
}




.report-title {
  font-weight: 500;
}

.top-report-button-wrap {
  margin-top: 42px;
  text-align: center;
}

/*スマホ調整*/
@media (max-width: 768px) {
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero::before,
  .hero::after {
    opacity: 0.04;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .sns-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sns-card {
    width: 100%;
    padding: 28px 22px;
  }

  .sns-logo {
    max-width: 230px;
    max-height: 84px;
  }

  .sns-card p {
    min-height: auto;
    font-size: 1rem;
    line-height: 1.8;
  }

  .sns-link {
    margin-top: 18px;
  }

  .sns-qr {
    width: 140px;
  }
}

@media (max-width: 768px) {

  .top-report-date,
  .top-report-status {
    align-self: center;
  }

  .top-report-title {
    padding-left: 0;
  }

}
