/* =========================================================
   SEO対策・その他のオプション（誘導バンド）
   index.html「よくある質問」セクションの直後で使用。
   メインCTA（entry.htmlへのオレンジボタン）と競合しないよう、
   控えめな secondary/ghost ボタンで option.html へ誘導する。
   ========================================================= */

.option-teaser-section {
  background: #f4fbf8;
  border-top: 1px solid rgba(29, 158, 117, 0.14);
  border-bottom: 1px solid rgba(29, 158, 117, 0.14);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding: 48px 20px;
}

.option-teaser-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
  text-align: center;
}

.option-teaser-text {
  flex: 1 1 380px;
  text-align: left;
}

.option-teaser-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1d9e75;
  letter-spacing: 0.14em;
  margin: 0 0 6px;
}

.option-teaser-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0e3b34;
  margin: 0 0 6px;
  line-height: 1.5;
}

.option-teaser-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.option-teaser-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 12px 28px;
  background: #ffffff;
  color: #0e5e45;
  border: 1.5px solid #1d9e75;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.option-teaser-btn:hover {
  background: #e9f7f1;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .option-teaser-section { padding: 36px 16px; }
  .option-teaser-inner { text-align: center; }
  .option-teaser-text { text-align: center; flex-basis: 100%; }
  .option-teaser-title { font-size: 1.02rem; }
  .option-teaser-desc { font-size: 0.85rem; }
  .option-teaser-btn { width: 100%; }
}
