body {
  margin: 0;
  background: #fff;
  font-family: 'Noto Sans JP', "Yu Gothic", "游ゴシック", sans-serif;
}

.wrapper {
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 800px;
  background: #FCF7FB;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* 画像の隙間完全削除 */
img {
  display: block;
  vertical-align: bottom;
}

/* 通常画像 */
.block {
  width: 100%;
}

/* CTA */
.cta-ttl {
  width: 100%;
  margin: 10px auto;
  display: block;
}

.cta-btn {
  width: 80%;
  margin: 0 auto 60px;
  display: block;
}

/* 中央揃え画像 */
.img-center {
  width: 50%;
  display: block;
  margin: 20px auto;
}

/* テキスト */
.text {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin: 40px 20px 40px 20px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .text {
    font-size: 18px;
    margin: 60px 40px 60px 40px;
  }

  .accent {
    font-size: 22px;
  }

  .check-list div {
  display: flex;
  align-items: center;
  margin: 10px 40px 20px 40px;
}

.faq-a {
  display: flex;
  align-items: flex-start; /* ←これが重要 */
  margin-top: 10px;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

/* A.（大きい・ピンク） */
.a-label {
  color: #C372B5;
  font-size: 26px;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

/* A本文（通常サイズ・ピンク） */
.a-text {
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}


}


.accent {
  color: #C372B5;
  font-weight: 600;
  font-size:20px;
  letter-spacing: 0.08em;
}

/* 動画 */
.video iframe {
  width: 100%;
  height: 300px;
}

/* チェックリスト */
.check-list div {
  display: flex;
  align-items: center;
  margin: 10px 20px;
}

.check-list img {
  width: 20px;
  margin-right: 10px;
}



/* FAQ全体 */
.faq {
  margin: 40px 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 30px 0px 10px 0px;
}

/* Q行 */
.faq-q {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  margin-bottom: 20px;
}

/* Q.（大きい・ピンク） */
.q-label {
  color: #C372B5;
  font-size: 26px;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Q本文（黒・通常） */
.q-text {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

/* A全体（アニメーション） */
.faq-a {
  display: flex;
  align-items: flex-start; /* ←これが重要 */
  margin-top: 10px;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

/* A.（大きい・ピンク） */
.a-label {
  color: #C372B5;
  font-size: 26px;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

/* A本文（通常サイズ・ピンク） */
.a-text {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ＋アイコン */
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 35px;
  transition: transform 0.3s ease;
  color: darkgray;
}

/* 開いたら回転 */
.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}






/* フッター */
.footer {
  background: #C372B5;
  padding: 20px 0;
   max-width: 800px;
   margin: 0 auto;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-sep {
  margin: 0 10px;
  color: #fff;
}