/* ── 理由カード ── */
.reason-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.reason-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #f3f9e8, #eaf5d4);
  border-left: 6px solid var(--color-secondary);
  border-radius: 12px;
  padding: 24px 28px;
}

.reason-card__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.reason-card__num {
  background-color: var(--color-secondary);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.reason-card__icon {
  font-size: 34px;
  color: var(--color-secondary);
  line-height: 1;
}

.reason-card__body {
  flex: 1;
}

.reason-card__text {
  font-size: 17px;
  font-weight: bold;
  color: #333;
  line-height: 1.65;
  margin: 0;
}

.reason-card__text em {
  font-style: normal;
  color: var(--color-secondary);
  font-size: 115%;
}

.reason-card__sub {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  line-height: 1.6;
}

/* ── 比較テーブル ── */
.comparison-wrap {
  margin: 30px 0;
}

.comparison-wrap__lead {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.comparison-table thead tr th {
  padding: 14px 10px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.comparison-table .th-label {
  background: #f0f0f0;
  color: #666;
  text-align: left;
  padding-left: 16px;
  width: 36%;
}

.comparison-table .th-others {
  background: #e0e0e0;
  color: #666;
  width: 32%;
}

.comparison-table .th-smile {
  background: var(--color-secondary);
  color: #fff;
  width: 32%;
}

.comparison-table tbody tr {
  border-top: 1px solid #efefef;
}

.comparison-table .td-label {
  padding: 14px 10px 14px 16px;
  font-weight: bold;
  color: #444;
  background: #fafafa;
  font-size: 13px;
  line-height: 1.4;
}

.comparison-table .td-others {
  padding: 12px 8px;
  text-align: center;
  color: #999;
  background: #f9f9f9;
  font-size: 13px;
  line-height: 1.5;
}

.comparison-table .td-smile {
  padding: 12px 8px;
  text-align: center;
  color: #333;
  background: #f3f9e8;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.5;
}

.icon-bad  { color: #ccc; font-size: 15px; display: block; margin-bottom: 4px; }
.icon-good { color: var(--color-secondary); font-size: 15px; display: block; margin-bottom: 4px; }

/* ── ハイライトボックス ── */
.highlight-box {
  background: linear-gradient(135deg, #fff8e1, #fff3cc);
  border: 2px solid #faa81c;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 24px 0;
  text-align: center;
}

.highlight-box__text {
  font-size: 15px;
  color: #444;
  line-height: 1.95;
  margin: 0;
}

.highlight-box__note {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

/* ── コスト訴求ボックス ── */
.cost-box {
  background: #fff;
  border: 2px dashed #faa81c;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
  text-align: center;
}

.cost-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin: 0;
}

/* ── 向いている方カード ── */
.fit-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
}

.fit-card {
  border-radius: 14px;
  padding: 22px 26px;
}

.fit-card--yes {
  background: #f3f9e8;
  border: 2px solid var(--color-secondary);
}

.fit-card--no {
  background: #f9f9f9;
  border: 2px solid #ddd;
}

.fit-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid;
}

.fit-card--yes .fit-card__title {
  color: var(--color-secondary);
  border-color: #b8d870;
}

.fit-card--no .fit-card__title {
  color: #aaa;
  border-color: #e0e0e0;
}

.fit-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.55;
}

.fit-card--yes .fit-card__list .li-icon {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.fit-card--no .fit-card__list .li-icon {
  color: #bbb;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── 約束メッセージ ── */
.promise-message {
  background: #fff;
  border-left: 5px solid #faa81c;
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 20px 0;
}

.promise-message p {
  font-size: 15px;
  color: #444;
  line-height: 1.95;
  margin: 0;
}

.promise-message p + p {
  margin-top: 16px;
}

.promise-emphasis {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-secondary);
  display: block;
  margin: 10px 0 6px;
}

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .reason-card {
    padding: 18px 16px;
    gap: 14px;
  }
  .reason-card__text {
    font-size: 15px;
  }
  .reason-card__icon {
    font-size: 28px;
  }
  .comparison-table {
    font-size: 12px;
  }
  .comparison-table .th-label,
  .comparison-table .td-label {
    padding-left: 10px;
    font-size: 12px;
  }
  .highlight-box,
  .fit-card,
  .promise-message {
    padding: 18px 16px;
  }
}
