/* オンラインページ(style.css 前提) */

/* HERO */
.online-hero{
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(30,111,217,.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);
}

.online-lead{
  color: var(--muted);
  margin-top: 10px;
}

.online-summary{
  margin-top: 10px;
}

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

.online-fineprint{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* pills */
.online-pillrow{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.online-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pill);
  border: 1px solid var(--card-border);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: #374151;
}

.online-coming{
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #065f46;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

.btn-soft-green{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 14px 22px;          /* ← 少し大きく */
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #86efac;   /* 少しだけ強め */
  color: #047857;
  font-weight: 800;
  font-size: 15px;             /* ← 少し大きく */
  letter-spacing: .02em;
  transition: all .15s ease;
}

.btn-soft-green:active{
  transform: translateY(1px);
  background: #d1fae5;
}

/* 2カラム（既存の .grid と衝突しないように別名） */
.online-grid{
  display: grid;
  gap: var(--gap);
  margin-top: 16px;
}
@media (min-width: 860px){
  .online-grid{
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
}

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

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

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

.online-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;
}

.online-footcta{
  margin-top: 16px;
}

/* fixed header がある前提で anchor の見切れ対策は style.css の
   section[id] { scroll-margin-top: ... } が効くので追加不要 */