/* CSS Document */
body {
  background-color: #ffffff;
}
@media(min-width: 1025px) {
  .mobile-only-display {
    display: none;
  }
}
/*--- 【セクション】トップ ---*/
.section-top {
  width: 100%;
}
.section-top__pc-mainvisual {
  display: none;
}
.section-top__mobile-mainvisual {
  width: 100%;
}
.top-image-overlay {
  position: absolute;
  top: 200px;
  left: 35%;
  width: 65%;
}
.volunteer-logo {
  width: 80%;
  max-width: 450px;
}
.boshu-string {
  width: 70%;
}
.top-image-overlay2 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.top-image-overlay2 p {
  font-weight: bold;
  line-height: 180%;
  font-size: 20px;
  margin-bottom: 20px;
}
.greenfont {
  color: #2ba464;
}
.top-image-overlay2 a {
  display: inline-block;
  margin: 0 auto 30px;
  padding-top: 14px;
  height: 50px;
  width: 300px;
  border-radius: 25px;
  background-color: #2ba464;
  color: white;
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
}
@media(min-width:1025px) {
  .section-top__mobile-mainvisual {
    /*max-height:800px;*/
    display: none;
  }
  .section-top__pc-mainvisual {
    display: block;
    width: 100%;
  }
  .volunteer-logo {
    width: 60%
  }
  .boshu-string {
    width: 50%;
  }
  .top-image-overlay svg {
    width: 70%;
  }
  .top-image-overlay-set {
    position: absolute;
    top: 10vw;
    left: 45%;
    width: 45%;
  }
  .top-image-overlay, .top-image-overlay2 {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
  }
  .top-image-overlay2 {
    margin-top: 0;
  }
  .top-image-overlay2 p {
    font-size: clamp(16px, 1.8vw, 32px);
    margin: 0.8vw auto 1.3vw;
  }
  .top-image-overlay2 a {
    width: 50%;
    height: 70px;
    border-radius: 35px;
    padding-top: 24px;
    font-size: clamp(22px, 2vw, 36px);
  }
}
/*--- 導入のメリット ---*/
.section-merits {
  background-color: rgba(193, 249, 222, 0.2);
  padding: 40px 0 40px;
}
.section-merits h2 {
  color: #2ba464;
  font-size: 32px;
}
.top-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  max-width: 1350px;
  margin: 0 auto;
}
.merit-circle {
  width: 350px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #feffe2;
  margin: 30px auto;
}
.merit-circle img {
  width: 50%;
  margin-top: 10px;
}
.merit-circle h3 {
  font-size: 24px;
  color: #2ba464;
}
.merit-circle p {
  width: 75%;
  font-size: 16px;
  line-height: 170%;
  margin: 2.5% auto;
}
@media(min-width: 1024px) {
  .section-merits {
    padding: 60px 0 60px;
  }
  .section-merits h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }
}
/*-- ご利用の流れ --*/
.section-howto {
  background-color: #c1f9de;
  padding: 30px;
}
.howto-box {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
}
.howto-box h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #2BA464;
}
.timeline {
  position: relative;
  margin-left: 15px; /* 丸＋線をはみ出す分の余白 */
  padding-left: 20px; /* テキストと線の余白 */
  /* border-left: 3px solid #FFA500; ← 削除 */
}
.step {
  position: relative;
  padding-left: 20px; /* テキストを丸アイコンと重ねないための余白 */
  margin-bottom: 40px; /* 次のステップまでのスペース */
  text-align: left;
}
/* ● オレンジの丸 */
.step::before {
  content: "";
  position: absolute;
  left: -36px; /* 線と丸の位置調整 */
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #FFA500;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff inset; /* 白い枠をつける場合 */
  z-index: 1; /* 縦線より前に丸が来るように */
}
/* │ 丸の下から次の丸（＝次のステップ）まで線を伸ばす */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -23px; /* 丸の中心に合わせる（-36 + 30/2 = -21） */
  top: 30px; /* 丸の高さ(30px)ぶん 下から線をスタート */
  width: 6px;
  height: calc(100% + 10px);
  /* 
    100% = 現在の .step 要素の高さ（テキストを含む）
    + 10px = margin-bottom(40px) - 丸の直径(30px)
    → このぶん伸ばすと、ちょうど次の丸の位置まで線がつながる
  */
  background-color: #c1f9de;
}
.step-description {
  margin-bottom: 20px;
}
.step-description h3 {
  font-size: 26px;
  margin-top: 4px;
  margin-bottom: 15px;
  color: #FFA500;
  line-height: 120%;
}

.step-image {
  width: 100%;
}
.step-image img {
  width: 100%;
}
.qr-point-attention {
  margin-top: 20px;
  font-size: 12px;
}
@media(min-width: 1025px) {
  .howto-box {
    padding: 50px;
  }
  .section-howto h2 {
    font-size: 40px;
  }
  .step {
    display: flex;
    justify-content: space-between;
  }
  .step-description {
    width: 60%;
  }
  .step-description h3 {
    font-size: 30px;
  }
  .step-description p{
    font-size: 20px;
    line-height: 150%;
  }
  .step-image {
    width: 30%;
  }
  .step-description .qr-point-attention{
    font-size: 16px;
    line-height: 180%;
  }
}
/*--- アプリ掲載イメージ（mobile）---*/
.section-preview {
  padding: 30px;
}
.section-preview h2 {
  font-size: 32px;
  color: #2ba464;
  margin-bottom: 40px;
}
.preview-container {
  max-width: 350px;
  margin: 0 auto;
}
.preview-container-item {
  margin-bottom: 50px;
}
.preview-container-item h3 {
  display: inline-block;
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 2px solid #2ba464;
  padding-bottom: 4px;
}
.preview-container-item img {
  height: 50vh;
}
/*--- アプリ掲載イメージ（PC）---*/
@media(min-width: 1025px) {
  .preview-container {
    display: flex;
    max-width: 700px;
  }
}
/*--- Q＆A ---*/
.section-qa {
  background-color: rgba(193, 249, 222, 0.5);
  padding: 50px;
}
.section-qa h2 {
  color: #2ba464;
  font-size: 30px;
  margin-bottom: 50px;
  line-height: 120%;
}
summary {
  font-size: 1.2em; /* フォントを少し大きく */
  font-weight: bold; /* 太字にする */
  color: #ffffff; /* 文字色を白に */
  background-color: #2ba464;
  padding: 10px; /* 内側の余白 */
  border-radius: 6px; /* 角を丸く */
  cursor: pointer; /* ホバー時にポインターに */
  user-select: none; /* テキスト選択不可に */
  list-style: none;
  width: 200px;
  margin: 0 auto 20px;
}
summary::-webkit-details-marker {
  display: none;
}
.accordion-area {
  list-style: none;
  max-width: 900px;
  margin: 0 auto 30px;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #2ba464;
}
.accordion-area h3 {
  text-align: left;
  font-weight: bold;
}
.accordion-area p {
  text-align: left;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #2ba464;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #ffffff;
  margin: 0 3% 3% 3%;
  padding: 3%;
  line-height: 160%;
}
/*--- 登録フォームはこちら ---*/
.section-entry {
  padding: 50px;
}
.section-entry h2 {
  color: #2ba464;
  font-size: 30px;
  margin-bottom: 40px;
}
.section-entry__title {
  line-height: 120%;
}
.register-button {
  text-decoration: none;
  display: inline-block;
  color: #FFFFFF;
  background-color: #2ba464;
  border-radius: 10px;
  width: 300px;
  height: 60px;
  font-size: 24px;
  font-weight: bold;
  padding-top: 18px;
}

