/* ランディングページ用スタイル */
:root {
  --main-color: #7ec6c8;
  --accent: #f7b7a3;
  --gray-bg: #f8f8f8;
  --gray-border: #e0e0e0;
  --font-main: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
}
body {
  font-family: var(--font-main);
  background: #fff;
  color: #333;
  margin: 0;
  line-height: 1.7;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 0;
}
header {
  background: transparent;
  border-bottom: none;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  min-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  pointer-events: none;
}
.header-inner {
  width: 100vw;
  min-width: 100vw;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  height: 144px;
  pointer-events: auto;
}
.logo-bg {
  background: #00472a;
  border-bottom-right-radius: 10px;
  width: 260px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: auto;
}
.logo-img {
  height: 50px;
  width: auto;
  margin-left: 28px;
}
.header-btn {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: #2ecc71;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 16px 36px 16px 36px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(46,204,113,0.12);
  border: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-width: 220px;
  letter-spacing: 0.05em;
  z-index: 3;
  pointer-events: auto;
}
.header-btn-text {
  justify-self: center;
  text-align: center;
  width: 100%;
}
.header-btn .arrow-img {
  width: 1.1em;
  height: 1.1em;
  min-width: 1.1em;
  min-height: 1.1em;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s;
  justify-self: end;
  margin-left: 24px;
}
.header-btn:hover .arrow-img {
  transform: translateX(4px);
}
/* --- ヒーロー --- */
.hero {
  background: none;
  text-align: left;
  width: 100vw;
  min-width: 100vw;
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 60px 0 60px 0;
  min-height: 480px; /* 明示的な高さを追加 */
  box-sizing: border-box;
  margin-left: 0 !important;
  transform: none !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  min-height: 480px; /* 背景も高さを合わせる */
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg img {
  width: 100vw;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.hero-inner {
  max-width: 1200px;
  margin: 174px auto 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #444;
  margin-bottom: 32px; /* 18px→32px: ハッシュタグとの間隔を拡大 */
  line-height: 1.5;   /* 1.35→1.5: 行間をさらに広く */
}
.hero-highlight {
  display: inline-block;
  font-size: 3.8rem;
  position: relative;
  z-index: 1;
  font-weight: 900;
  line-height: 1.2;
}
.hero-highlight::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.18em;
  width: 100%;
  height: 0.38em;
  background: #ffe066;
  z-index: -1;
  border-radius: 0.18em;
}
.hero-lead {
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.hero-btn {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 18px;
}
.hero-btn:hover {
  background: var(--accent);
  color: #fff;
}
.hashtag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--main-color);
  background: none;
  width: auto;
  max-width: 600px;
  justify-content: flex-start;
  align-items: flex-start;
}
.hashtag {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #444;
  color: #444;
  border-radius: 16px;
  padding: 4px 18px 4px 18px;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 8px;
  margin-right: 0;
  min-width: 0;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: 1.7;
}
@media (min-width: 701px) {
  .hashtag-list {
    max-width: 600px;
  }
}
@media (max-width: 700px) {
  .hashtag-list {
    gap: 8px 8px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .hashtag {
    font-size: 0.85rem;
    padding: 4px 10px;
    margin-bottom: 6px;
  }
  .hero-inner {
    margin-top: 45px;
    /* 上部余白を大幅に縮小 */
  }
  .hero-title {
    font-size: 1.7rem;
    margin-top: 0;
    margin-bottom: 18px;
    /* 文字サイズ・下余白も縮小 */
  }
  .hero-highlight {
    font-size: 2.2rem;
  }
  .hero {
    padding-bottom: 0px;
  }
  .hero {
    min-height: 260px;
    padding-top: 28px;
    /* 高さ・上余白を縮小 */
  }
  .hero-bg {
    min-height: 260px;
    /* 背景も高さを合わせて縮小 */
  }
  .hero-bg img {
    min-height: 260px;
  }
}
/* --- セクションデザイン復元 --- */
section, section.bg-gray, section.section-about {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: 100vw;
  box-sizing: border-box;
  padding: 40px 0 24px 0;
  overflow-x: hidden;
  /* 背景だけ全幅。中身は必ず.section-inner/.section-about-innerで固定幅 */
}
.section-about {
  background: #fdfdfd; /* さらに薄い、ほぼ白に近いベージュ */
  padding: 60px 0 60px 0;
  position: relative;
  z-index: 2;
}
.section-inner, .section-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
  /* 中身は常に中央・固定幅 */
}
.bg-gray {
  background: var(--gray-bg);
}
/* 各セクションの中身を.section-innerで囲む */
section.bg-gray > .section-title,
section.bg-gray > .merit-list,
section.bg-gray > .service-list,
section.bg-gray > .voice-list,
section.bg-gray > .price-table,
section.bg-gray > .faq-list {
  /* 旧構造のため、.section-innerで囲まれていない場合の暫定対応 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
section:not(.section-about):not(.bg-gray) > .section-title,
section:not(.section-about):not(.bg-gray) > .merit-list,
section:not(.section-about):not(.bg-gray) > .service-list,
section:not(.section-about):not(.bg-gray) > .voice-list,
section:not(.section-about):not(.bg-gray) > .price-table,
section:not(.section-about):not(.bg-gray) > .flow-list,
section:not(.section-about):not(.bg-gray) > .faq-list,
section:not(.section-about):not(.bg-gray) > .register-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
/* レスポンシブ対応 */
@media (max-width: 900px) {
  .section-inner, .section-about-inner {
    max-width: 100%;
    padding: 0 12px;
  }
  section.bg-gray > .section-title,
  section.bg-gray > .merit-list,
  section.bg-gray > .service-list,
  section.bg-gray > .voice-list,
  section.bg-gray > .price-table,
  section.bg-gray > .faq-list,
  section:not(.section-about):not(.bg-gray) > .section-title,
  section:not(.section-about):not(.bg-gray) > .merit-list,
  section:not(.section-about):not(.bg-gray) > .service-list,
  section:not(.section-about):not(.bg-gray) > .voice-list,
  section:not(.section-about):not(.bg-gray) > .price-table,
  section:not(.section-about):not(.bg-gray) > .flow-list,
  section:not(.section-about):not(.bg-gray) > .faq-list,
  section:not(.section-about):not(.bg-gray) > .register-form {
    max-width: 100%;
    padding: 0 12px;
  }
}
/* --- その他のスタイル --- */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 28px;
  text-align: left;
}
.merit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.merit-item {
  flex: 1 1 260px;
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px 18px;
  min-width: 220px;
  text-align: left;
}
/* misv-baby.com風のスタイル */
.merit-list--misv {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.merit-item--misv {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 18px 24px 18px;
  min-width: 220px;
  text-align: center;
  position: relative;
}
.merit-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--main-color);
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.merit-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.merit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.merit-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 16px;
}
.merit-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-item {
  flex: 1 1 260px;
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px 18px;
  min-width: 220px;
  text-align: left;
}
.voice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.voice-item {
  flex: 1 1 260px;
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px 18px;
  min-width: 220px;
  text-align: left;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.price-table th, .price-table td {
  border: 1px solid var(--gray-border);
  padding: 12px 8px;
  text-align: center;
}
.flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.flow-item {
  flex: 1 1 260px;
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px 18px;
  min-width: 220px;
  text-align: left;
}
.faq-list {
  margin-bottom: 32px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 12px; /* 10px→12px: 角丸を少し戻す */
  box-shadow: 0 2.5px 10px rgba(0,0,0,0.07); /* 影もやや強めに */
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.active {
  box-shadow: 0 5px 18px rgba(255, 184, 0, 0.13), 0 2.5px 10px rgba(0,0,0,0.07);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.08rem; /* 0.98rem→1.08rem: 文字もやや大きく */
  font-weight: 700;
  color: #444;
  text-align: left;
  padding: 14px 22px 14px 22px; /* 7px→14px, 14px→22px: 上下左右の余白を広げる */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s;
  min-height: 0;
}
.faq-item.active .faq-question {
  background: #b8f0d9;
  color: #222;
}
.faq-toggle-icon {
  font-size: 1.4rem; /* 1.2rem→1.4rem: アイコンもやや大きく */
  font-weight: 900;
  margin-left: 12px; /* 8px→12px */
  color: #444;
  transition: color 0.2s;
}
.faq-item.active .faq-toggle-icon {
  color: #222;
}
.faq-answer {
  display: none;
  padding: 14px 22px 18px 22px; /* 7px→14px, 14px→22px, 10px→18px: 余白を広げる */
  font-size: 1.03rem; /* 0.93rem→1.03rem: 文字もやや大きく */
  color: #444;
  background: #fff;
  border-top: 1px solid #f3e7b7;
  line-height: 1.7; /* 1.6→1.7: 行間も少し広げる */
}
.faq-answer a {
  color: #00472a;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .section-inner, .section-about-inner {
    max-width: 100%;
    padding: 0 12px;
  }
  section.bg-gray > .section-title,
  section.bg-gray > .merit-list,
  section.bg-gray > .service-list,
  section.bg-gray > .voice-list,
  section.bg-gray > .price-table,
  section.bg-gray > .faq-list,
  section:not(.section-about):not(.bg-gray) > .section-title,
  section:not(.section-about):not(.bg-gray) > .merit-list,
  section:not(.section-about):not(.bg-gray) > .service-list,
  section:not(.section-about):not(.bg-gray) > .voice-list,
  section:not(.section-about):not(.bg-gray) > .price-table,
  section:not(.section-about):not(.bg-gray) > .flow-list,
  section:not(.section-about):not(.bg-gray) > .faq-list,
  section:not(.section-about):not(.bg-gray) > .register-form {
    max-width: 100%;
    padding: 0 12px;
  }
  .faq-list {
    max-width: 98vw;
    gap: 12px; /* 6px→12px: モバイルも広げる */
  }
  .faq-answer {
    padding: 10px 10px 14px 10px; /* 6px→10px, 8px→14px: モバイルも広げる */
    font-size: 0.98rem; /* 0.90rem→0.98rem */
  }
  .faq-question {
    font-size: 1.01rem; /* 0.93rem→1.01rem */
    padding: 10px 10px 10px 10px; /* 6px→10px: モバイルも広げる */
  }
}
/* --- with Lab とは？ セクション新デザイン --- */
section.section-about {
  background: #ededed; /* 以前より薄いベージュ系に変更 */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 60px 0 60px 0;
  position: relative;
  z-index: 2;
}
.section-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-about .section-subtitle {
  text-align: center;
  font-size: 2.1rem;
  color: #444; /* Heroセクションの文字色に合わせる */
  font-weight: 800;
  margin-bottom: 38px;
  letter-spacing: 0.02em;
}
.about-box-list {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 0;
}
.about-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 18px 24px 18px;
  flex: 1 1 0;
  min-width: 180px;
  max-width: 260px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  font-size: 1.08rem;
  color: #444;
  font-weight: 600;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
.about-box img {
  margin-top: auto;
  margin-bottom: 0;
  max-width: 160px;
  max-height: 160px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .about-box-list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .about-box {
    max-width: 100%;
    width: 100%;
    height: 220px;
    padding: 24px 12px 16px 12px;
    font-size: 1rem;
  }
  .about-box img {
    max-width: 120px;
    max-height: 120px;
  }
}
@media (max-width: 700px) {
  .about-box-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .about-box {
    width: calc(50% - 10px);
    max-width: 180px;
    min-width: 140px;
    margin: 0;
    height: 180px;
    padding: 14px 6px 10px 6px;
    font-size: 0.95rem;
  }
}
/* about-boxテキスト上部余白調整 */
.about-box span {
  display: block;
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .about-box span {
    font-size: 0.85rem;
  }
}
/* ▼▼▼ 下三角デザイン ▼▼▼ */
.section-about {
  position: relative;
  z-index: 2;
}
.section-about-triangle {
  width: 100vw;
  height: 120px;
  margin: 0;
  padding: 0;
  position: relative;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background: #f8f8f8 !important;
}
@media (max-width: 900px) {
  .section-about-triangle {
    height: 60px;
    top: -1px;
  }
}
/* ▼▼▼ お悩みを解決しますセクション ▼▼▼ */
.section-solution {
  background: #f8f8f8;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 64px 0 56px 0;
  position: relative;
  z-index: 1;
}
.section-solution-title {
  font-size: 2.0rem;
  font-weight: 800;
  color: #444;
  margin-bottom: 38px;
  text-align: center;
  letter-spacing: 0.02em;
}
.solution-card-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.solution-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 32px 22px 28px 22px;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1.08rem;
  color: #444;
  font-weight: 600;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
  border: 1.5px solid #c6e6e7;
}
.solution-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: block;
}
.solution-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .solution-card-list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .solution-card {
    max-width: 100%;
    width: 100%;
    padding: 24px 12px 18px 12px;
    font-size: 1rem;
  }
  .section-solution-inner {
    padding: 0 12px;
  }
}
/* --- misv-baby.com風 3つのメリット セクション --- */
.section-merit-misv {
  background: #fff;
  padding: 0 0 64px 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.section-merit-title-wrap {
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  gap: 0;
  justify-content: flex-start;
  flex-direction: row;
  margin-top: 80px;
  margin-bottom: 0;
  position: relative;
}
.section-merit-title-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  gap: 18px; /* タイトルとサブテキストの間に余白を追加 */
  margin-top: 80px;
  margin-bottom: 0;
}
.merit-list-misv-circles {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 80px auto 0 auto;
  max-width: 1200px;
  flex-wrap: wrap;
}
.merit-circle {
  width: 340px;
  height: 340px;
  background: none;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: none;
  overflow: hidden;
}
.merit-circle-top {
  background: #00472a; /* #ffe600 からオレンジ (#ff9800) に変更 */
  width: 100%;
  height: 56%;
  border-top-left-radius: 170px;
  border-top-right-radius: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.merit-circle-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.merit-circle-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff; /* 白系に変更 */
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10); /* 視認性UP */
}
.merit-circle-bottom {
  background: #f7f7f7;
  width: 100%;
  height: 54%; /* 44%→54%にして縦幅を高く */
  border-bottom-left-radius: 170px;
  border-bottom-right-radius: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.merit-circle-desc {
  font-size: 0.95rem; /* 少し小さく */
  color: #444;
  text-align: center;
  margin: 24px auto 0 auto;
  line-height: 1.7;
  max-width: 220px; /* 横幅を縮めて円からはみ出さないように */
}
.merit-circle-pointer {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translateX(-50%);
  width: 32px;
  height: 18px;
  z-index: 3;
}
@media (max-width: 1100px) {
  .merit-list-misv-circles {
    gap: 18px;
  }
  .merit-circle {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 900px) {
  .section-merit-title-main {
    font-size: 2.2rem;
  }
  .section-merit-title-main.merit-title-only {
    font-size: 3.2rem;
  }
  .section-merit-title-wrap {
    margin-top: 48px;
  }
  .merit-circle-number {
    font-size: 2.1rem;
  }
  .merit-list-misv-circles {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 56px auto 0 auto; /* モバイルもさらに少しだけ小さく */
  }
  .merit-circle {
    width: 90vw;
    height: 90vw;
    max-width: 340px;
    max-height: 340px;
  }
  .merit-circle-pointer {
    top: 50%; /* 56%→52%: polygonを上に移動し、merit-circle-topとくっつける */
  }
}
/* --- Meritサブテキスト調整 --- */
/* --- Meritサブテキスト左寄せ・余白調整 --- */
.section-merit-title-wrap {
  position: relative;
}
.section-merit-subtext {
  font-size: 1.08rem;
  color: #888;
  text-align: left;
  max-width: 1200px;
  margin: 8px 0 0 0;
  letter-spacing: 0.01em;
  padding-left: 24px;
  position: relative;
}
/* --- Meritタイトルとサブテキスト横並び・左端揃え --- */
.section-merit-title-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  gap: 18px; /* タイトルとサブテキストの間に余白を追加 */
  margin-top: 80px;
  margin-bottom: 0;
}
.section-merit-title-main.merit-title-only {
  font-size: 5.2rem;
  font-weight: 900;
  color: #444;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
  display: block;
  text-align: left;
  white-space: nowrap;
}
.section-merit-subtext-inline {
  font-size: 1.08rem;
  color: #888;
  text-align: left;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  margin-left: 0;
  display: inline-block;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .section-merit-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 48px;
    margin-bottom: 0;
  }
  .section-merit-title-main.merit-title-only {
    font-size: 3.2rem;
  }
  .section-merit-subtext-inline {
    font-size: 0.98rem;
    margin-bottom: 0;
  }
}
@media (max-width: 700px) {
  .section-merit-title-row {
    display: block;
  }
  .section-merit-title-main.merit-title-only {
    display: block;
    margin-bottom: 10px !important; /* スマホ時のみタイトル下に大きな余白を追加 */
    margin-right: 0 !important;
  }
  .section-merit-subtext-inline {
    display: block;
    margin-top: 0 !important;
  }
}
/* --- Supporterセクション（Meritと同様デザイン） --- */
.section-supporter-misv {
  background: var(--gray-bg);
  padding: 0 0 64px 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.section-supporter-title-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 80px;
  margin-bottom: 0;
}
.section-supporter-title-main.supporter-title-only {
  font-size: 5.2rem;
  font-weight: 900;
  color: #444;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
  display: block;
  text-align: left;
  white-space: nowrap;
}
.section-supporter-subtext-inline {
  font-size: 1.08rem;
  color: #888;
  text-align: left;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  margin-left: 0;
  display: inline-block;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .section-supporter-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 48px;
    margin-bottom: 0;
  }
  .section-supporter-title-main.supporter-title-only {
    font-size: 3.2rem;
  }
  .section-supporter-subtext-inline {
    font-size: 0.98rem;
    margin-bottom: 0;
  }
}
@media (max-width: 700px) {
  .section-supporter-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px; /* スマホ時のみタイトルとサブテキストの間にしっかり余白を追加 */
  }
}
/* --- Supporterセクション レイアウト --- */
.supporter-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin: 48px auto 0 auto;
  max-width: 1200px; /* .service-listと同じ最大幅 */
  width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 24px;
}
.supporter-item {
  background: #fff;
  text-align: center;
  flex: 0 0 auto;
  min-width: 340px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 40px 32px 32px 32px;
  margin-bottom: 24px;
  border: 1.5px solid #e0e0e0;
  transition: box-shadow 0.2s;
}
.supporter-item:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.supporter-photo {
  width: 220px;
  height: 220px;
  margin: 0 auto 24px auto;
  border-radius: 20px;
  overflow: hidden;
  background: #e6eef5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.5px 6px rgba(0,0,0,0.08);
}
.supporter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.supporter-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px; /* 10px→24px: supporter-titleとの間隔を広げる */
  color: #222;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}
.supporter-title {
  font-size: 1.18rem;
  color: #666;
  margin-bottom: 8px;
  font-weight: 700;
}
.supporter-profile {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}
.supporter-policy-title {
  font-size: 1.18rem;
  color: #666;
  margin-bottom: 8px;
  font-weight: 700;
}
.supporter-policy {
  font-size: 1.08rem;
  color: #444;
  line-height: 1.8;
}
@media (max-width: 1100px) {
  .supporter-list {
    max-width: 100%;
    padding: 0 12px;
    gap: 24px;
  }
  .supporter-item {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .supporter-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 100%;
    padding: 0 8px;
  }
  .supporter-item {
    width: 100%;
    max-width: 100%;
    padding: 24px 8px 18px 8px;
  }
}
@media (max-width: 700px) {
  .supporter-profile {
    font-size: 0.92rem;
  }
  .supporter-policy {
    font-size: 0.92rem;
  }
}
/* --- Voiceセクション（スクショ参考・完全リデザイン） --- */
.section-voice-misv {
  background: #fceddc;
  padding: 0 0 64px 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.voice-slider {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0;
  margin: 48px auto 0 auto;
  max-width: 900px;
  min-height: 380px;
  height: 380px;
}
.voice-photo {
  width: 260px;
  height: 260px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.voice-photo img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.voice-profile {
  margin-top: 8px; /* voice-photoとの間を狭く */
  font-size: 1.08rem;
  color: #444;
  text-align: center;
  line-height: 1.7;
  font-weight: 600;
}
.voice-profile .voice-profile-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
  gap: 0;
}
.voice-profile .voice-profile-main {
  color: #444;
  font-size: 1.18rem;
  font-weight: 700;
  margin-right: 12px;
  margin-bottom: 12px; /* 下に余白を追加 */
  display: block;
  width: 100%;
}
.voice-profile .voice-profile-row:not(:first-child) {
  margin-top: 2px; /* 2行目以降の間隔を狭く */
}
.voice-balloon {
  background: #fff;
  border-radius: 28px;
  padding: 48px 56px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: absolute;
  right: -40px; /* さらに右端に寄せる */
  bottom: -40px; /* PC表示で少し下げる */
  min-width: 400px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.voice-balloon::before {
  content: "";
  position: absolute;
  left: -32px; /* 吹き出しが大きくなった分調整 */
  top: 48px; /* 吹き出しが大きくなった分調整 */
  width: 0;
  height: 0;
  border-bottom: 22px solid transparent;
  border-top: 22px solid transparent;
  border-right: 32px solid #fff;
}
.voice-label {
  font-size: 1.1rem;
  color: #888;
  font-weight: 700;
  margin-bottom: 18px; /* larger space below label */
}
.voice-number {
  font-size: 1.5rem;
  color: #07cb7b;
  font-weight: 900;
  margin-left: 4px;
}
.voice-headline {
  font-size: 1.6rem; /* larger headline */
  font-weight: 800;
  margin-bottom: 6px; /* even less space below headline */
  color: #222;
}
.voice-comment {
  font-size: 1.08rem;
  color: #444;
  line-height: 1.8;
  margin-top: 6px; /* match the reduced space above comment */
}
.voice-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 72px auto 0 auto;
  position: relative;
  z-index: 10;
}
.voice-arrow {
  background: #07cb7b;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px; /* 小さく */
  height: 40px; /* 小さく */
  font-size: 1.2rem; /* 小さく */
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.voice-arrow:hover {
  background: #a8e6cf;
}
.voice-pagination {
  font-size: 1.4rem;
  font-weight: 900;
  color: #333;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  min-width: unset;
  text-align: center;
  letter-spacing: 0.1em;
}
/* PC表示時のVoice吹き出し位置調整 */
@media (min-width: 901px) {
  .voice-balloon {
    top: 60px;      /* 上からの位置指定に変更して全体を下げる */
    bottom: auto;   /* bottom指定を無効化 */
  }
  .voice-balloon::before {
    top: 48px; /* 元の位置に戻す */
  }
  .voice-slider-nav {
    margin: 330px auto 0 auto; /* 吹き出しに合わせてナビも下げる */
  }
}
@media (max-width: 900px) {
  .voice-slider {
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 0;
    gap: 0;
  }
  .voice-photo {
    width: 70vw;
    height: 70vw;
    max-width: 260px;
    max-height: 260px;
  }
  .voice-balloon {
    position: static;
    margin-top: -32px;
    margin-left: 0;
    max-width: 98vw;
    min-width: 0;
    padding: 28px 8px 28px 12px; /* モバイル時も少し大きく */
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  }
  .voice-balloon::before {
    display: none;
  }
  .voice-slider-nav {
    gap: 18px;
    margin: 40px auto 0 auto;
  }
  .voice-arrow {
    width: 32px; /* さらに小さく */
    height: 32px; /* さらに小さく */
    font-size: 1rem; /* さらに小さく */
  }
  .voice-pagination {
    font-size: 1.1rem;
    min-width: 60px;
    padding: 0 10px;
  }
}
@media (max-width: 700px) {
  /* Voiceセクション スマホ用レイアウト調整（voice-photo-profile-col幅を縮小） */
  .voice-photo-profile-col {
    width: 52vw;
    min-width: 120px;
    max-width: 180px;
  }
  .voice-balloon {
    max-width: 58vw;
  }
  /* Voiceセクション スマホ用レイアウト調整（横並び） */
  .voice-slider {
    display: block;
    height: auto;
    min-height: 0;
    margin-top: 32px;
    margin-bottom: 0;
    max-width: 100vw;
    padding: 0 0 0 0;
  }
  .voice-content-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 0.5vw; /* 余白を最小限に */
  }
  .voice-photo-profile-col {
    width: 52vw;
    min-width: 120px;
    max-width: 180px;
  }
  .voice-balloon {
    max-width: 58vw;
    min-width: 0;
    padding: 14px 1vw 14px 1vw;
    margin-left: 0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-size: 0.98rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* --- Flowセクション タブ・フロー --- */
.section-flow-misv {
  background: #f8f8f8;
  padding: 0 0 64px 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.flow-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 48px auto 0 auto;
  max-width: 1100px;
}
.flow-tab {
  flex: 1 1 0;
  background: #fff;
  border: none;
  border-radius: 12px 12px 0 0;
  font-size: 1.18rem;
  font-weight: 700;
  color: #444;
  padding: 18px 0 16px 0;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  outline: none;
}
.flow-tab.active {
  background: #07cb7b;
  color: #fff;
  font-weight: 900;
  z-index: 2;
}
.flow-contents {
  background: #07cb7b;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 48px 24px 40px 24px;
  box-sizing: border-box;
  min-height: 320px;
  position: relative;
  z-index: 1;
}
.flow-steps {
  display: none;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.flow-steps.active {
  display: flex;
}
.flow-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 24px 24px 24px;
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 44px; /* タイトル分のスペースを上部に追加 */
  align-self: stretch;
}
.flow-step-title {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 8px 24px 6px 24px;
  font-size: 1.08rem;
  font-weight: 900;
  color: #444;
  margin-bottom: 0;
  line-height: 1.3;
  z-index: 2;
  display: inline-block;
  min-width: 120px;
}
.flow-step-icon img, .flow-step-icon svg {
  max-width: 56px;
  max-height: 56px;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: block;
}
@media (max-width: 700px) {
  .flow-step-icon img, .flow-step-icon svg {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
}
.flow-step-sub {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 0;
}
@media (max-width: 700px) {
  .flow-step-sub {
    font-size: 1.12rem;
    margin-bottom: 12px;
  }
}
.flow-steps {
  position: relative;
  gap: 16px;
}
.flow-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  font-weight: bold;
  margin: 0 0.15em;
  height: 100%;
  line-height: 1;
  background: none;
  border: none;
  pointer-events: none;
  position: relative;
  z-index: 2;
  align-self: center;
}
@media (max-width: 700px) {
  .flow-step-arrow {
    font-size: 1.5rem;
    margin: 0 0.1em;
  }
}
/* --- FAQアコーディオンデザイン --- */
.section-faq-misv {
  background: #f4f3ea;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0 0 64px 0;
  position: relative;
  min-height: 600px;
}
.section-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  margin-top: 0; /* -64px→0: タイトルと重ならないように修正 */
  z-index: 2;
  position: relative;
  padding-left: 0;
  padding-top: 48px; /* タイトル下に余白を追加 */
}
.faq-title-col {
  width: 100%;
  margin-bottom: 0;
  display: block;
}
.faq-title-main {
  font-size: 2.8rem;
  text-align: left;
  margin-bottom: 18px; /* タイトル下に余白を追加 */
  font-weight: 900;
  color: #444;
}
.faq-list-col {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 900px) {
  .section-faq-inner {
    display: block;
    padding: 32px 0 0 0; /* モバイル時もタイトル下に余白 */
    margin-top: 0;
  }
  .faq-title-main {
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 14px;
  }
  .faq-list-col {
    max-width: 100vw;
  }
  .faq-list {
    max-width: 98vw;
    gap: 12px;
  }
}
/* --- Registerセクション（添付イメージ風にデザイン強化・白背景） --- */
.section-register-misv {
  background: #fff;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0 0 64px 0;
  position: relative;
  min-height: 520px;
  color: #444;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.register-cta-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 64px 24px 0 24px;
  position: relative;
  z-index: 2;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.register-cta-img-col {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.register-cta-img {
  width: 380px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  margin-top: 0;
  position: relative;
  z-index: 1;
  background: #fff;
  border: none;
}
.register-cta-content-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 2;
  gap: 0;
  padding: 0 8px;
}
.register-cta-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 18px;
  color: #222;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-align: left;
}
.register-cta-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
}
.register-cta-btn.main {
  display: inline-block;
  background: #ffe100;
  color: #1146a7;
  font-weight: 900;
  font-size: 1.18rem;
  border-radius: 32px;
  padding: 18px 48px;
  text-decoration: none;
  margin-bottom: 38px;
  margin-top: 0;
  box-shadow: 0 4px 18px rgba(255,225,0,0.18);
  border: none;
  transition: background 0.2s, color 0.2s;
}
.register-cta-btn.main:hover {
  background: #ffd600;
  color: #0d2c6c;
}
.register-cta-btn.line {
  display: inline-block;
  background: #2ecc71;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.08rem;
  border: 2px solid #2ecc71;
  border-radius: 32px;
  padding: 14px 36px;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.register-cta-btn.line:hover {
  background: #27ae60;
  color: #fff;
  border-color: #27ae60;
}
.register-cta-btn.line-consult {
  display: inline-block;
  background: #2ecc71;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.08rem;
  border: 2px solid #2ecc71;
  border-radius: 32px;
  padding: 14px 36px;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.register-cta-btn.line-consult:hover {
  background: #27ae60;
  color: #fff;
  border-color: #27ae60;
}
.register-cta-btn {
  display: inline-block;
  background: #fff; /* 背景色を白に */
  color: #444;
  font-weight: 700;
  font-size: 1.08rem;
  border: 2px solid #444;
  border-radius: 32px;
  padding: 14px 36px;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.register-cta-btn:hover {
  background: #ededed;
  color: #222;
  border-color: #444; /* 枠線はホバー時も黒のまま */
}
.register-cta-btn-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 48px; /* 32px→48px: 上のボタンとの間をさらに広げる */
  margin-bottom: 0;
  width: 100%;
  justify-content: center;
}
.register-cta-btn-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  max-width: 320px;
  text-align: center;
  gap: 12px;
  background: #f4f4f4;
  border-radius: 18px;
  padding: 18px 0;
  border: 1.5px solid #e0e0e0; /* 薄い灰色の細い線を追加 */
}
.register-cta-btn-col .register-cta-btn-label {
  font-size: 1.08rem;
  color: #444;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}
@media (max-width: 1100px) {
  .section-register-misv {
    border-radius: 0;
    box-shadow: none;
  }
  .register-cta-wrap {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 48px 8px 0 8px;
    box-shadow: none;
    border-radius: 0;
  }
  .register-cta-img-col {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 18px;
    min-height: 0;
  }
  .register-cta-img {
    width: 90vw;
    max-width: 380px;
  }
  .register-cta-content-col {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .register-cta-title, .register-cta-subtitle {
    text-align: center;
  }
  .register-cta-btn-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
  }
}
/* --- フッター --- */
.footer-misv {
  background: #ececec; /* さらに濃いグレーに変更 */
  color: #333;         /* 文字色もより濃いグレーに */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 48px 0 24px 0;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
}
.footer-logo img {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}
.footer-copyright {
  font-size: 0.98rem;
  color: #666; /* コピーライトもより濃いグレーに */
  margin-top: 8px;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (max-width: 700px) {
  .footer-inner {
    padding: 0 8px;
  }
  .footer-logo img {
    width: 120px;
  }
}
/* --- Serviceセクション --- */
.section-service-misv {
  background: #ededed; /* .section-aboutと同じ薄いベージュ系 */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0 0 60px 0; /* 上側paddingを0に */
  position: relative;
  z-index: 2;
}

.section-service-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 0;
}
.service-category {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 32px 24px 32px;
  position: relative;
}
.service-category-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: #07cb7b;
  margin-right: 18px;
  min-width: 48px;
  text-align: left; /* ← PCは左寄せ */
  letter-spacing: 0.02em;
}
.service-category-main {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-category-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.service-category-items {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}
.service-category-item {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px rgba(0,0,0,0.06);
  padding: 24px 18px 18px 18px;
  margin-bottom: 0;
}
.service-category-illust {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 8px;
}
.service-category-item-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-category-item-desc {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 2px;
}
@media (max-width: 900px) {
  .section-service-inner {
    padding: 0 8px;
  }
  .service-categories {
    gap: 28px;
  }
  .service-category {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px 12px 8px;
    align-items: stretch;
  }
  .service-category-number {
    font-size: 1.3rem;
    min-width: 32px;
    margin-right: 8px;
  }
  .service-category-title {
    font-size: 1.4rem;
  }
  .service-category-items {
    flex-direction: column;
    gap: 12px;
  }
  .service-category-item {
    max-width: 100%;
    min-width: 0;
    padding: 18px 8px 12px 8px;
    align-items: flex-start;
    text-align: left;
  }
  .service-category-illust {
    max-width: 80px;
  }
}
.flow-line-btn {
  font-size: 0.98rem !important;
  padding: 12px 24px !important;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .logo-bg {
    width: 120px;
    height: 60px;
    border-bottom-right-radius: 6px;
  }
  .logo-img {
    height: 25px;
    margin-left: 10px;
  }
  .header-inner {
    height: 60px;
  }
  .header-btn {
    position: fixed;
    left: 50%;
    bottom: 18px;
    top: auto;
    right: auto;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
    max-width: 420px;
    min-width: 0;
    padding: 16px 0;
    font-size: 1.08rem;
    border-radius: 32px;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(46,204,113,0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }
  a.header-btn {
    width: 92vw;
    max-width: 340px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }
  .a-header-btn {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    z-index: 1000;
    display: block;
    border-radius: 0;
    background: #2ecc71;
    color: #fff !important;
    font-size: 1.15rem;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 20px 0;
    box-shadow: 0 -2px 16px rgba(46,204,113,0.10);
    border: none;
    letter-spacing: 0.05em;
    transition: background 0.2s;
  }
  .a-header-btn:active,
  .a-header-btn:focus {
    background: #27ae60;
    color: #fff;
  }
  body {
    padding-bottom: 80px !important;
  }
  .header-btn .arrow-img,
  .a-header-btn .arrow-img {
    margin-left: 10px;
  }
}
@media (max-width: 700px) {
  .header-btn,
  .a-header-btn {
    min-width: 0;
    max-width: 96vw;
    width: calc(100vw - 16px);
    padding: 10px 0;
    font-size: 0.98rem;
    border-radius: 24px;
    gap: 6px;
  }
  .header-btn .arrow-img,
  .a-header-btn .arrow-img {
    width: 1em;
    height: 1em;
    min-width: 1em;
    min-height: 1em;
  }
  .header-btn-text {
    width: auto;
    flex: 1 1 auto;
    text-align: center;
  }
  .header-btn-text {
    max-width: 180px;
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}
@media (max-width: 700px) {
  .section-solution-title {
    font-size: 1.9rem;
  }
}
@media (max-width: 700px) {
  .section-subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 700px) {
  .section-about .section-subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 700px) {
  .service-category {
    flex-direction: column;
    align-items: stretch;
  }
  .service-category-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .service-category-title {
    margin-bottom: 0;
    font-size: 1.4rem;
    flex: 1 1 auto;
    text-align: left;
  }
  .service-category-number {
    min-width: 32px;
    font-size: 1.7rem !important; /* ← スマホ時にさらに大きく・強制 */
    margin-right: 6px;
    text-align: right;
  }
  .service-category-items {
    width: 100%;
    margin-top: 8px;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 700px) {
  .service-category-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px; /* 余白を縮める */
  }
  .service-category-number {
    min-width: 32px;
    font-size: 1.1rem;
    margin-right: 6px;
    text-align: right;
    gap: 4px; /* 余白を縮める */
  }
  .service-category-title {
    font-size: 1.4rem;
    flex: 1 1 auto;
    text-align: left;
    margin-bottom: 0;
    margin-top: 0; /* 余白を縮める */
  }
}
@media (max-width: 700px) {
  .section-merit-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px; /* スマホ時は縦並び＋余白 */
  }
  .section-merit-title-main.merit-title-only {
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 700px) {
  .supporter-profile {
    padding-left: 18px;
    padding-right: 24px;
  }
}
@media (max-width: 700px) {
  .supporter-policy {
    padding-left: 18px;
  }
}
@media (max-width: 700px) {
  .voice-headline {
    font-size: 1.08rem;
  }
  .voice-comment {
    font-size: 0.88rem;
  }
}
@media (max-width: 700px) {
  /* ...既存のスマホ用Voiceセクション調整... */
  .voice-profile .voice-profile-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 0;
  }
  .voice-profile-label,
  .voice-profile-value {
    font-size: 0.92rem;
    display: inline-block;
    margin: 0 2px;
    vertical-align: middle;
  }
}
@media (max-width: 700px) {
  .voice-photo-profile-col .voice-photo {
    width:80%;
    height: auto;
    max-width: 100%;
    min-width: 48px;
    aspect-ratio: 1/1;
    margin: 0 auto 8px auto;
  }
  .voice-photo-profile-col .voice-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
}
@media (max-width: 700px) {
  .voice-profile .voice-profile-row {
    justify-content: center;
    align-items: center;
  }
  .voice-profile .voice-profile-main {
    text-align: center;
    font-size: 1.1rem;
    margin-right: 0;
    margin-bottom: 4px;
    width: 100%;
    display: block;
  }
}
@media (max-width: 700px) {
  .voice-label {
    margin-bottom: 6px;
  }
}
@media (max-width: 700px) {
  .voice-balloon {
    margin-top: 0 !important;
  }
}
@media (max-width: 700px) {
  .flow-steps {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .flow-step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    margin: 0;
    height: auto;
    width: 100%;
    line-height: 1;
    pointer-events: none;
  }
}
@media (max-width: 700px) {
  .flow-steps {
    align-items: center;
  }
  .flow-step {
    width: calc(100vw - 32px);
    max-width: 420px;
    min-width: 0;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media (max-width: 700px) {
  .register-cta-img {
    display: none;
  }
  .register-cta-title {
    font-size: 1.2rem;
  }
  .register-cta-subtitle {
    font-size: 0.95rem;
  }
  .register-cta-btn-row {
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
    justify-content: center;
  }
  .register-cta-btn-col {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 700px) {
  .register-cta-img-col {
    display: none;
  }
  .register-cta-content-col {
    padding-top: 0;
    margin-top: 0;
  }
  .register-cta-title {
    font-size: 1.45rem;
    white-space: nowrap;
  }
  .register-cta-btn-label {
    font-size: 0.98rem;
  }
  .register-cta-btn {
    font-size: 0.95rem;
  }
}
@media (max-width: 700px) {
  .register-cta-btn-label {
    font-size: 0.93rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 700px) {
  .register-cta-btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 700px) {
  .register-cta-btn-col .register-cta-btn-label {
    font-size: 0.93rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
} 