/* ================================================
   Spohabi 体験LP - スタイルシート
   WordPress アップロード前提
   ================================================ */

/* ------------------------------------------------
   CSS変数定義
   ------------------------------------------------ */
:root {
  /* カラー */
  --color-primary: #eb503c;
  --color-primary-light: rgba(252, 171, 157, 0.7);
  --color-bg-light: #e6f1f2;
  --color-text-dark: #4a4a4a;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --color-border: #4a4a4a;

  /* フォント */
  --font-primary: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-secondary: 'Noto Sans JP', sans-serif;

  /* スペーシング */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 60px;
  --spacing-xxl: 48px;

  /* ボーダー */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-full: 100px;
}

/* ------------------------------------------------
   リセット & ベース
   ------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ------------------------------------------------
   コンテナ
   ------------------------------------------------ */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.header .container {
  max-width: 900px;
}

/* ------------------------------------------------
   ヘッダー
   ------------------------------------------------ */
.header {
  background-color: var(--color-white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.header__logo {
  width: 140px;
}

.header__logo img {
  width: 100%;
}

.header__btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 32px;
  /* Wider */
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 0 #c23b2b;
  /* Slightly deeper initial shadow */
  transition: all 0.2s;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.header__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #c23b2b;
}

.header__btn:active {
  transform: translateY(4px);
  box-shadow: none;
}

/* ------------------------------------------------
   ヒーローセクション
   ------------------------------------------------ */
.hero {
  padding: var(--spacing-xl) 0 0;
  text-align: center;
}

.hero__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
}

.hero__subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.hero__image {
  max-width: 90%;
  margin: var(--spacing-lg) auto 0;
}

.hero__divider {
  width: 294px;
  height: 11px;
  background-color: var(--color-primary-light);
  margin: 0 auto var(--spacing-lg);
}

/* ------------------------------------------------
   お問い合わせボタン（上部）
   ------------------------------------------------ */
.contact-top {
  padding: 24px 0 var(--spacing-lg);
  text-align: center;
}

.contact-btn-3d {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background-color: #e74c3c;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 0;
  border-radius: 9999px;
  box-shadow: 4px 6px 0 #c0392b;
  text-decoration: none;
  transition: all 0.1s;
}

.contact-btn-3d:hover {
  transform: translate(2px, 3px);
  box-shadow: 2px 3px 0 #c0392b;
}

/* ------------------------------------------------
   キャンペーンセクション
   ------------------------------------------------ */
.campaign {
  background-color: #ffffff;
  padding: 30px 0 40px;
  text-align: center;
}


.campaign__date {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.campaign__title {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000000;
  margin-bottom: var(--spacing-md);
}

.campaign__marker {
  background: linear-gradient(transparent 50%, var(--color-primary-light) 50%);
  padding: 0 4px;
}


.campaign__subtitle {
  font-size: 14px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #000000;
  margin-bottom: 8px;
  /* Reduced from var(--spacing-sm) */
}

.campaign__price {
  display: inline-flex;
  /* Use inline-flex to wrap content */
  flex-direction: column;
  align-items: flex-start;
  /* Align left (so 10000 aligns with arrow) */
  gap: 0;
  /* Reduced from var(--spacing-xs) */
  margin: 0 auto 28px;
  /* Center the block and add bottom margin */
}

.campaign__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
  line-height: 1;
}

.campaign__price-old {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-decoration: line-through;
  line-height: 1.2;
}

.campaign__price-arrow {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.campaign__price-new {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--color-primary);
}

.campaign__price-unit {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}

.campaign__price-tax {
  font-size: 12px;
  font-weight: normal;
  color: #000000;
}


.campaign__images {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  /* 24px */
  margin-top: 24px;
}

@media (min-width: 768px) {
  .campaign__date {
    font-size: 22px;
  }

  .campaign__title {
    font-size: 28px;
  }

  .campaign__subtitle {
    font-size: 16px;
  }

  .campaign__price-old {
    font-size: 18px;
  }

  .campaign__price-arrow {
    font-size: 28px;
  }

  .campaign__price-new {
    font-size: 48px;
  }

  .campaign__price-unit {
    font-size: 20px;
  }
}

.campaign__image-item {
  width: calc(50% - 12px);
  /* Half width minus half gap */
}

.campaign__image-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------
   お悩みセクション
   ------------------------------------------------ */
.problems {
  background-color: var(--color-bg-light);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.problems::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 28.5px 0 28.5px;
  border-color: var(--color-bg-light) transparent transparent transparent;
  z-index: 10;
}

.problems__title {
  font-size: 16px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: #000000;
}

.problems__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.problems__item {
  background-color: var(--color-white);
  /* border: 1px solid var(--color-border); removed */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Added shadow like about__card */
  border-radius: var(--border-radius-full);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 14px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  color: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .problems__title {
    font-size: 20px;
  }

  .problems__item {
    font-size: 16px;
  }
}

/* ------------------------------------------------
   解決セクション
   ------------------------------------------------ */
.solution {
  padding: 70px 0 0;
  text-align: center;
}



.solution__title {
  font-size: 20px;
  /* 22px -> 20px */
  font-weight: bold;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.solution__marker {
  background: linear-gradient(transparent 60%, #e6f1f2 60%);
  padding: 0 4px;
  white-space: nowrap;
}

.solution__subtitle {
  font-size: 28px;
  /* タイトルと同じ大きさに */
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #00a0a0;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 0;
}

.solution__brand {
  color: inherit;
}

.solution__divider {
  width: 294px;
  height: 11px;
  background-color: var(--color-primary-light);
  margin: var(--spacing-lg) auto 0;
}

/* ------------------------------------------------
   アクティブユーザーセクション
   ------------------------------------------------ */
.active-users {
  padding: 30px 0;
  text-align: center;
}

.active-users__box {
  padding: var(--spacing-md);
}

.active-users__text {
  color: var(--color-primary);
  line-height: 1.2;
}

.active-users__label {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 0;
  line-height: 1.2;
}

.active-users__number {
  font-size: 28px;
  font-weight: 900;
}

.active-users__unit {
  font-size: 20px;
  font-weight: bold;
}

.active-users__highlight {
  font-size: 28px;
  font-weight: bold;
}

.active-users__illustration {
  max-width: 370px;
  margin: 10px auto 0;
}

@media (min-width: 768px) {
  .active-users__illustration {
    max-width: 440px;
  }
}

.active-users__description {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  color: var(--color-text-dark);
  text-align: center;
  margin-top: var(--spacing-md);
}

/* ------------------------------------------------
   特徴セクション
   ------------------------------------------------ */
.features {
  padding: 30px 0;
}

.features__title {
  font-size: 28px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--color-primary);
}

.features__title-large {
  font-size: 28px;
}

.features__description {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  color: var(--color-text-dark);
  margin-top: var(--spacing-md);
}

.features__description strong {
  font-weight: bold;
}

.features__illustration {
  margin-top: var(--spacing-lg);
  display: flex;
  justify-content: center;
}

.features__illustration img {
  max-width: 85%;
  height: auto;
}

@media (min-width: 768px) {
  .features__illustration img {
    height: 250px;
    width: auto;
    max-width: 100%;
  }
}

.features__item {
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.features__item-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: var(--spacing-md);
}

.features__item-text {
  font-size: 14px;
  line-height: 1.8;
}

/* ------------------------------------------------
   体験レッスンポイントセクション
   ------------------------------------------------ */
.lesson-points {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.lesson-points__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: var(--spacing-xl);
}

.lesson-points__grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.lesson-points__card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-lg);
}

.lesson-points__card-number {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto var(--spacing-md);
}

.lesson-points__card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
}

.lesson-points__card-text {
  font-size: 14px;
  color: var(--color-text-light);
}

/* ------------------------------------------------
   多角的アプローチセクション
   ------------------------------------------------ */
.approach {
  padding: 30px 0;
  text-align: center;
}

.approach__title {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--color-primary);
}

.approach__title span {
  color: var(--color-primary);
}

.approach__title-large {
  font-size: 28px;
}

.approach__description {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  color: var(--color-text-dark);
  margin-top: var(--spacing-md);
}

.approach__description strong {
  font-weight: bold;
}

.approach__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.approach__item {
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  text-align: left;
}

.approach__item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-md);
}

.approach__item-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
}

.approach__item-text {
  font-size: 14px;
  line-height: 1.6;
}

/* ------------------------------------------------
   CTAセクション
   ------------------------------------------------ */
.cta {
  background-color: #ffffff;
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.cta__title {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-lg);
}

/* ------------------------------------------------
   FAQセクション
   ------------------------------------------------ */
.faq {
  background-color: #ffffff;
  padding: var(--spacing-xl) 0;
}

.faq__title {
  font-size: 28px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #00a0a0;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}


.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq__card {
  background-color: #00a0a0;
  border-radius: 4px;
  overflow: hidden;
}

.faq__question {
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq__icon {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #00a0a0;
  font-weight: 900;
  font-family: 'Zen Maru Gothic', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.faq__question-text {
  color: #ffffff;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  flex-grow: 1;
  margin-right: var(--spacing-lg);
}

.faq__toggle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #ffffff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__toggle.is-open {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #ffffff;
}

.faq__answer-content {
  padding: var(--spacing-md) var(--spacing-lg);
  border: 1px solid #00a0a0;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: flex;
  /* 追加: アイコンとテキストを横並びに */
  align-items: flex-start;
  /* 追加: 上揃え */
}

.faq__icon--answer {
  background-color: #00a0a0;
  /* Aアイコンの背景色 */
  color: #ffffff;
  /* Aアイコンの文字色 */
  margin-top: 2px;
  /* 位置微調整 */
}

.faq__answer-text {
  /* padding削除: 親要素で行うため */
  color: var(--color-text-dark);
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
  /* 残りの幅を使用 */
}

/* ------------------------------------------------
   アプローチセクション
   ------------------------------------------------ */
.approach__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  gap: var(--spacing-md);
  margin-top: 40px;
}

.approach__card {
  background-color: #ffffff;
  /* border: 1px solid var(--color-border); removed */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* Increased shadow opacity for better visibility */
  border-radius: 100px;
  /* 完全に丸く */
  /* 大きな角丸（ピル型） */
  /* 大きな角丸（ピル型） */
  padding: 24px 32px;
  /* 縦幅さらに縮小 -> 拡大してabout__cardに合わせる */
  display: flex;
  align-items: center;
  /* アイコンを垂直中央に */
  gap: var(--spacing-md);
  /* アイコンとテキストの間隔を縮小 */
  text-align: left;
  /* テキスト左揃え */
}

.approach__icon {
  width: 50px;
  /* 少し小さく */
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.approach__icon svg,
.approach__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.approach__icon--red {
  color: #e74c3c;
}

.approach__icon--teal {
  color: #5dade2;
}

/* 青色に近いティール (画像の色に調整) -> または #2980b9 */
.approach__icon--green {
  color: #58d68d;
}

/* または #27ae60 */
.approach__icon--gold {
  color: #f1c40f;
}

.approach__content {
  flex-grow: 1;
}

.approach__card-title {
  font-size: 16px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-xs);
}

.approach__card-text {
  font-size: 13px;
  /* font-weight: normal; default */
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* ------------------------------------------------
   フッター
   ------------------------------------------------ */
.footer {
  background-color: #f5f5f5;
  color: var(--color-text-dark);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.footer__logo {
  width: 120px;
  margin: 0 auto var(--spacing-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.footer__link {
  font-size: 14px;
  color: var(--color-text-dark);
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ------------------------------------------------
   ユーティリティ
   ------------------------------------------------ */
.text-primary {
  color: var(--color-primary);
}

.text-center {
  text-align: center;
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

/* ------------------------------------------------
   集客までの流れセクション
   ------------------------------------------------ */
.flow {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.flow__list {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.flow__step {
  display: flex;
  gap: var(--spacing-lg);
  padding-bottom: 40px;
  align-items: stretch;
  /* 垂直中央揃え */
  /* 次のステップまでの距離 */
}

.flow__step:last-child {
  padding-bottom: 0;
}

.flow__icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 80px;
  /* アイコンエリアの幅固定 */
  flex-shrink: 0;
}

.flow__icon {
  width: 80px;
  height: 80px;
  /* background-color: #b2ebf2; removed */
  /* 薄いティール */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* 線より上に表示 */
}

.flow__icon svg {
  width: 40px;
  height: 40px;
  stroke: #000;
}

.flow__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* 縦線 */
.flow__icon-wrapper::after {
  content: '';
  position: absolute;
  top: 86px;
  /* アイコンの下から */
  bottom: -34px;
  /* Reduced length as requested (was -54px) */
  left: 50%;
  width: 2px;
  background-color: #000;
  transform: translateX(-50%);
  z-index: 1;
}

/* 最後の要素はinline styleで消しているが、保険として */
.flow__step:last-child .flow__icon-wrapper::after {
  display: none;
}

.flow__content {
  padding-top: 0;
  max-width: 360px;
  /* テキスト幅制限 */
  /* アイコンと高さを合わせる微調整 */
}

.flow__step-title {
  font-size: 18px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: var(--spacing-xs);
  color: #000;
}

.flow__step-desc {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-dark);
}

/* ------------------------------------------------
   体験レッスンのポイントセクション
   ------------------------------------------------ */
.points {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.points__title {
  color: #00A0A0;
  font-size: 28px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: var(--spacing-xl);
}

.points__carousel {
  position: relative;
  max-width: 400px;
  /* Adjust based on image size in design */
  margin: 0 auto;
}

/* Arrows position */
.points__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #00A0A0;
  /* Match theme */
}

.points__btn--prev {
  left: -20px;
}

.points__btn--next {
  right: -20px;
}

.points__btn svg {
  width: 24px;
  height: 24px;
}

.points__track-container {
  background-color: #e6f1f2;
  border-radius: 30px;
  overflow: hidden;
  padding: var(--spacing-xl) var(--spacing-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.points__track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}

.points__slide {
  min-width: 100%;
  box-sizing: border-box;
}

.points__slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.points__slide-text {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}

.points__slide-image {
  padding: 0 20px;
}

.points__slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  /* Optional rounded corners for image */
  /* Phone shadow removed as per user request */
}

/* Dots */
.points__dots {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
  gap: 10px;
}

.points__dot {
  border: none;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.points__dot.current-slide {
  background-color: #00A0A0;
}

/* ------------------------------------------------
   Spohabiとは？セクション
   ------------------------------------------------ */
.about {
  padding: var(--spacing-xl) 0;
  background-color: #f5f5f5;
}

.about__title {
  color: #00A0A0;
  text-align: center;
  font-size: 28px;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: var(--spacing-md);
}

.about__desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  color: var(--color-text-dark);
  margin-bottom: 36px;
  padding: 0 20px;
}

.about__headline {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: 20px;
}

.about__ornament {
  display: flex;
  gap: 8px;
}

.about__ornament::before,
.about__ornament::after {
  content: '';
  width: 3px;
  height: 34px;
  background-color: #00A0A0;
  transform: rotate(-25deg);
  border-radius: 4px;
}

.about__ornament--right::before,
.about__ornament--right::after {
  transform: rotate(25deg);
}

.about__headline-text {
  color: #00A0A0;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  padding-bottom: 0;
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  /* align-items: centerを削除して幅をstretchさせる */
  /* paddingを削除して幅の不一致を解消 */
}

.about__card {
  background: #fff;
  border-radius: 999px;
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about__card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__card-icon svg,
.about__card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about__card-icon--red {
  color: #eb503c;
}

.about__card-icon--teal {
  color: #00A0A0;
}

.about__card-icon--blue {
  color: #35b3c5;
}

/* Modified blue to match colum icon color */
.about__card-icon--gold {
  color: #d4a017;
}

/* Trophy gold */
.about__card-icon--orange {
  color: #eb503c;
}

/* Calendar red/orange */

.about__card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #000;
}

.about__card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-dark);
}