/* fever page only (style.css 前提) */

/* HERO：オンラインと同じカード感＋発熱は橙系を少し混ぜる */
.fever-hero{
  background: linear-gradient(135deg, rgba(56,189,248,.16), rgba(234,88,12,.10));
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}

.fever-lead{
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.8;
}

.fever-muted{ color: var(--muted); }

/* 重要案内（オンラインの “準備中” ボックスの発熱版） */
.fever-alert{
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

/* pills（オンラインと同型） */
.fever-pillrow{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.fever-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pill);
  border: 1px solid var(--card-border);
  padding: 8px 12px;            /* 少し大きめ */
  border-radius: 999px;
  font-size: 13.5px;
  color: #374151;
  font-weight: 700;
}

/* card grid（オンラインと同型） */
.fever-grid{
  display: grid;
  gap: var(--gap);
  margin-top: 16px;
}

.fever-mid-cta{
  margin: 28px 0 10px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 860px){
  .fever-grid{
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
}

.fever-card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
}

.fever-card h2{
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .02em;
}

/* list / steps */
.fever-list{
  margin: 10px 0 0;
  padding-left: 20px;
}
.fever-list li{ margin: 6px 0; line-height: 1.75; }

.fever-steps{
  margin: 10px 0 0;
  padding-left: 20px;
}
.fever-steps li{ margin: 6px 0; line-height: 1.75; }

/* note（オンラインの note と同系） */
.fever-note{
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--soft-bg);
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  line-height: 1.75;
}

/* さっぱり “目安を見る” ボタン（緑系で、くどくない） */
.btn-ghost{
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 12px auto 0;
  padding: 16px 16px;          /* 少し大きく */
  border-radius: 16px;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .02em;
  box-sizing: border-box;

  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #065f46;

  box-shadow: 0 10px 18px rgba(22,163,74,.12);
  transition: transform .08s ease, box-shadow .2s ease;
}

.btn-ghost:active{
  transform: translateY(1px);
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
}