@charset "UTF-8";

/* ==================================== */
/* 0. 変数とリセット */
/* ==================================== */
:root {
  --main-color: #2a8c4a;
  /* メインカラー（緑） */
  --accent-color: #f7a700;
  /* アクセントカラー（オレンジ系） */
  --light-green-bg: #e8f5e9;
  /* 薄い緑の背景 */
  --text-color: #333;
  /* 標準テキスト色 */
  --heading-color: #222;
  /* 見出し色 */
  --white-color: #ffffff;
  /* 白 */
  --gray-bg: #f4f7f6;
  /* 薄いグレーの背景 */
  --border-color: #ddd;
  /* ボーダー色 */
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* カードの標準シャドウ */
  --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  /* ホバー時のシャドウ */
}

/* box-sizingと余白のリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* スムーズスクロール */
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.8;
  color: var(--text-color);
  background-color: var(--white-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: all 0.3s ease;
  /* ホバーエフェクトを滑らかに */
}

a:hover {
  opacity: 0.8;
}

/* ==================================== */
/* 1. ユーティリティ・コンテナ */
/* ==================================== */
.container {
  width: 90%;
  max-width: 68.75rem;
  /* 1100px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  /* 16px */
  padding-right: 1rem;
  /* 16px */
}

section {
  padding: 5rem 0;
  /* 80px */
  overflow: hidden;
  /* アニメーションなどのはみ出しを隠す */
}

@media (max-width: 768px) {
  section {
    padding: 3.125rem 0;
    /* 50px */
  }
}

.section-title {
  font-size: 2.5rem;
  /* 見出しサイズを少し大きく */
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 3.75rem;
  /* 60px */
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* section-titleの下線装飾 */
.section-title::after {
  content: "";
  display: block;
  width: 5rem;
  /* 80px */
  height: 4px;
  /* pxのまま */
  background-color: var(--main-color);
  margin: 1.25rem auto 0;
  /* 20px */
  border-radius: 2px;
  /* pxのまま */
}

.section-title span {
  color: var(--main-color);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    /* 40px */
  }
}

.ul-list {
  background: var(--gray-bg);
  border-radius: 0.75rem;
  /* 12px */
  text-align: left;
  list-style-position: inside;
  margin: 1.5rem 0;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.ul-list-item {
  list-style-type: disc;
  font-size: 1.1rem;
}

.ul-list .ul-list-item:not(:last-child) {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* 背景色が付いたセクション用 */
.gray-bg-section {
  background-color: var(--gray-bg);
}

/* ==================================== */
/* 2. CTAボタン */
/* ==================================== */
.cta-button {
  display: inline-flex;
  /* アイコンとテキストを中央揃えに */
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  /* 16px 32px */
  border-radius: 3.125rem;
  /* 50px */
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  min-width: 15rem;
  /* 240px */
  gap: 0.5rem;
  /* 8px */
}

.cta-button:hover {
  opacity: 1;
  transform: translateY(-0.3125rem);
  /* -5px */
  box-shadow: 0 10px 25px rgba(42, 140, 74, 0.3);
  background-color: #247a40;
}

.cta-button.inverted {
  background-color: var(--white-color);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  /* pxのまま */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-button.inverted:hover {
  opacity: 1;
  transform: translateY(-0.3125rem);
  /* -5px */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--light-green-bg);
  color: var(--main-color);
}

/* ==================================== */
/* 3. ヘッダー */
/* ==================================== */
.header {
  background-color: var(--white-color);
  padding: 0.9375rem 0;
  /* 15px */
  border-bottom: 1px solid #eee;
  /* pxのまま */
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: 7.5rem;
  /* 120px */
  height: auto;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

/* ==================================== */
/* 4. ヒーローセクション (FV) */
/* ==================================== */
.hero {
  background-color: var(--white-color);
  padding-top: 5rem;
  /* 80px */
  padding-bottom: 5rem;
  /* 80px */
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  /* 40px */
}

.hero__content {
  flex: 1;
}

.hero__image {
  flex: 1;
}

.hero__image img {
  border-radius: 0.75rem;
  /* 12px */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 0.625rem;
  /* 10px */
  display: inline-block;
}

.hero__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  /* 20px */
}

.hero__description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  /* 40px */
}

.hero__buttons {
  display: flex;
  gap: 1.25rem;
  /* 20px */
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2.5rem;
    /* 40px */
  }

  .hero .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==================================== */
/* 5. 課題提起セクション */
/* ==================================== */
.problem {
  background-color: var(--gray-bg);
}

.problem__content {
  max-width: 50rem;
  /* 800px */
  margin: 0 auto;
  text-align: center;
}

.problem__content p {
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: left;
}

.problem__content p+p {
  margin-top: 1.25rem;
  /* 20px */
}

/* ==================================== */
/* 6. プログラムのご紹介 */
/* ==================================== */
.introduce__content {
  max-width: 50rem;
  /* 800px */
  margin: 0 auto;
  text-align: center;
}

.introduce__content>p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.introduce__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  /* 20px */
  margin: 2.5rem 0;
  /* 40px */
  text-align: left;
}

.point-item {
  background: var(--white-color);
  border-radius: 0.75rem;
  /* 12px */
  padding: 1.5625rem;
  /* 25px */
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
  /* 15px */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-item:hover {
  transform: translateY(-0.3125rem);
  /* -5px */
  box-shadow: var(--hover-shadow);
}

.point-item i.fas {
  font-size: 1.8rem;
  color: var(--main-color);
  margin-top: 0.3125rem;
  /* 5px */
  width: 1.875rem;
  /* 30px */
  text-align: center;
}

.point-item p {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
}

.introduce__banner {
  margin-top: 2.5rem;
  /* 40px */
  border-radius: 0.75rem;
  /* 12px */
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.introduce__banner:hover {
  transform: scale(1.02);
  box-shadow: var(--hover-shadow);
}

.introduce__banner img {
  display: block;
}

@media (max-width: 768px) {
  .introduce__points {
    grid-template-columns: 1fr;
  }
}

/* ==================================== */
/* 7. 満足度調査 */
/* ==================================== */
.satisfaction {
  background-color: var(--light-green-bg);
}

.satisfaction__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  /* 20px */
}

.satisfaction-card {
  background: var(--white-color);
  border-radius: 0.75rem;
  /* 12px */
  padding: 1.875rem 1.25rem;
  /* 30px 20px */
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.satisfaction-card:hover {
  transform: translateY(-0.3125rem);
  /* -5px */
  box-shadow: var(--hover-shadow);
}

.satisfaction-card i.fas {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 1.25rem;
  /* 20px */
}

.satisfaction-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.6;
}

.satisfaction__message {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 3.125rem;
  /* 50px */
  color: var(--heading-color);
}

@media (max-width: 900px) {
  .satisfaction__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .satisfaction__grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================== */
/* 8. 参加者からの声 */
/* ==================================== */
.voices {
  background-color: var(--white-color);
}

.voices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
  /* 25px */
}

.voice-card {
  background: var(--gray-bg);
  border-radius: 0.75rem;
  /* 12px */
  padding: 1.875rem 1.875rem 1.875rem 3rem;
  /* 30px */
  border-left: 5px solid var(--main-color);
  /* pxのまま */
  position: relative;
  box-shadow: var(--card-shadow);
}

.voice-card::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: var(--main-color);
  opacity: 0.2;
  position: absolute;
  top: 1.25rem;
  /* 20px */
  left: 1.25rem;
  /* 20px */
}

.voice-card__text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.voice-card__meta {
  font-size: 0.9rem;
  text-align: right;
  color: #555;
  font-weight: 700;
}

.voice-card__meta span {
  font-weight: 400;
  margin-left: 0.3125rem;
  /* 5px */
}

@media (max-width: 768px) {
  .voices__grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================== */
/* 9. プログラム修了者 */
/* ==================================== */
.graduates {
  background-color: var(--gray-bg);
}

.graduates__intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 50rem;
  /* 800px */
  margin: -1.875rem auto 2.5rem;
  /* -30px auto 40px */
}

.graduates__list {
  max-width: 56.25rem;
  /* 900px */
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  /* 20px */
}

.graduate-item {
  background: var(--white-color);
  border-radius: 0.75rem;
  /* 12px */
  padding: 1.5625rem;
  /* 25px */
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  /* 20px */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.graduate-item:hover {
  transform: translateY(-0.3125rem);
  /* -5px */
  box-shadow: var(--hover-shadow);
}

.graduate-item i.fas {
  font-size: 2rem;
  color: var(--main-color);
  background-color: var(--light-green-bg);
  border-radius: 50%;
  width: 3.75rem;
  /* 60px */
  height: 3.75rem;
  /* 60px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.graduate-item p {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.7;
}

/* ==================================== */
/* 10. 活動報告 */
/* ==================================== */
.reports {
  background-color: var(--white-color);
}

.reports__grid {
  max-width: 56.25rem;
  /* 900px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9375rem;
  /* 15px */
}

.report-item {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  /* pxのまま */
  border-radius: 0.5rem;
  /* 8px */
  padding: 1.25rem;
  /* 20px */
  display: flex;
  align-items: center;
  gap: 1.25rem;
  /* 20px */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.report-date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--main-color);
  background: var(--light-green-bg);
  padding: 0.3125rem 0.9375rem;
  /* 5px 15px */
  border-radius: 1.25rem;
  /* 20px */
  white-space: nowrap;
}

.report-item p {
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 500px) {
  .report-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==================================== */
/* 11. お申込み方法 */
/* ==================================== */
.apply {
  background-color: var(--light-green-bg);
}

.apply .section-title::after {
  background-color: var(--main-color);
}

.apply__card {
  max-width: 50rem;
  /* 800px */
  margin: 0 auto;
  background: var(--white-color);
  border-radius: 0.75rem;
  /* 12px */
  border: 2px solid var(--main-color);
  /* pxのまま */
  box-shadow: var(--card-shadow);
  padding: 2.5rem;
  /* 40px */
  text-align: center;
}

.apply__card>p {
  font-size: 1.1rem;
  margin-bottom: 1.5625rem;
  /* 25px */
}

.contact-info {
  background: var(--gray-bg);
  border-radius: 0.5rem;
  /* 8px */
  padding: 1.25rem;
  /* 20px */
  margin-bottom: 1.5625rem;
  /* 25px */
}

.contact-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  /* 10px */
}

.contact-phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-color);
}

.contact-phone i.fas {
  margin-right: 0.625rem;
  /* 10px */
  font-size: 1.8rem;
}

.contact-form {
  a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--main-color);
    border-radius: 50px;
    color: var(--white-color);
    text-align: center;
    padding: 0.5rem;
    width: 100%;
    max-width: 400px;
  }
}

.contact-qr {
  margin-top: 1rem;
  text-align: center;
}

.apply__note {
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .apply__card {
    padding: 1.5625rem;
    /* 25px */
  }

  .contact-phone {
    font-size: 1.5rem;
  }

  .contact-form {
    a {
      font-size: 1.1rem;
    }
  }
}

/* ==================================== */
/* 12. FAQ */
/* ==================================== */
.faq {
  background-color: var(--white-color);
}

.faq__list {
  max-width: 50rem;
  /* 800px */
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  /* pxのまま */
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.5625rem 0;
  /* 25px */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--main-color);
}

.faq-question i.fas {
  font-size: 1.1rem;
  color: var(--main-color);
  transition: transform 0.3s ease;
}

.faq-question.active {
  color: var(--main-color);
}

.faq-question.active i.fas {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding: 0 0.625rem 1.5625rem 1.875rem;
  /* 0 10px 25px 30px */
  font-size: 1rem;
  line-height: 1.8;
}

/* ==================================== */
/* 13. 事業背景（休眠預金） */
/* ==================================== */
.scheme {
  background-color: var(--gray-bg);
}

.scheme__image {
  display: flex;
  justify-content: center;
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 3rem;
}

.scheme__image img {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 0.5rem;
  /* 8px */
  border: 1px solid #ccc;
  /* pxのまま */
  box-shadow: var(--card-shadow);
  height: 300px;
  margin-inline: 1rem;
}

.scheme__content p {
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
}

.scheme__content p+p {
  margin-top: 0.9375rem;
  /* 15px */
}

.scheme__note {
  margin-top: 1.25rem;
  /* 20px */
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  /* 15px */
  background: var(--white-color);
  padding: 0.625rem;
  /* 10px */
  border-radius: 0.5rem;
  /* 8px */
  border: 1px solid var(--border-color);
  /* pxのまま */
}

.janpia-logo {
  width: 6.25rem;
  /* 100px */
}

@media (max-width: 768px) {
  .scheme .container {
    flex-direction: column-reverse;
  }

  .scheme__content .section-title {
    text-align: center;
  }

  .scheme__content .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==================================== */
/* 14. グラミン日本 */
/* ==================================== */
#gramin.gray-bg-section {
  background-color: var(--gray-bg);
}

#gramin .about__content {
  max-width: 50rem;
  /* 800px */
  margin: 0 auto;
  text-align: center;
}

#gramin .section-title {
  font-size: 2.2rem;
}

#gramin .gramin__link-text {
  font-size: 1.1rem;
  margin-bottom: 1.5625rem;
  /* 25px */
}

.gramin__link .cta-button i.fas {
  font-size: 0.9em;
}

/* ==================================== */
/* 15. 運営団体（キズキ） */
/* ==================================== */
.about {
  background-color: var(--white-color);
}

.about__content {
  max-width: 50rem;
  /* 800px */
  margin: 0 auto;
  text-align: center;
}

.about__content .logo {
  width: 9.375rem;
  /* 150px */
  margin-bottom: 1.875rem;
  /* 30px */
}

.about__content p {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ==================================== */
/* 16. フッター */
/* ==================================== */
.footer {
  background-color: #333;
  color: #eee;
  padding: 3.75rem 0 1.875rem;
  /* 60px 0 30px */
  font-size: 0.9rem;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
  /* 30px */
}

.footer__info {
  flex: 2;
}

.footer__info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0.9375rem;
  /* 15px */
}

.footer__info p {
  margin-bottom: 0.3125rem;
  /* 5px */
  line-height: 1.6;
}

.footer__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__links a {
  color: #eee;
  margin-bottom: 0.625rem;
  /* 10px */
  font-size: 0.9rem;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--white-color);
  text-decoration: underline;
}

.footer__copy {
  text-align: center;
  margin-top: 2.5rem;
  /* 40px */
  padding-top: 1.875rem;
  /* 30px */
  border-top: 1px solid #555;
  /* pxのまま */
  font-size: 0.8rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
  }

  .footer__links {
    margin-top: 1.25rem;
    /* 20px */
  }
}