@import url("reboot.css");

/* ===========================================================
   REBOOT GYM コーポレートサイト固有スタイル
   =========================================================== */

/* ---------- 稼働インジケーター ---------- */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: var(--sp-1);
  border-radius: 50%;
  background: var(--reboot-green);
  box-shadow: 0 0 0 3px rgba(47,214,117,0.25), 0 0 8px 1px rgba(47,214,117,0.7);
  animation: reboot-pulse 2s ease-in-out infinite;
}

.logo .status-dot { vertical-align: middle; margin-bottom: 2px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-en-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--reboot-green);
  margin-bottom: var(--sp-3);
}

@keyframes reboot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ---------- トップ: ヒーロー ---------- */
.hero {
  position: relative;
  padding: var(--sp-16) 0;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,27,51,0.75) 0%, rgba(11,27,51,0.9) 100%);
}

.hero .container {
  position: relative;
  max-width: 680px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  color: var(--reboot-white);
  margin-bottom: var(--sp-2);
}

@media (min-width: 600px) {
  .hero h1 { font-size: 44px; }
}

.hero .lead {
  font-size: 16px;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: var(--sp-4);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

.hero-actions .text-link {
  font-size: 14px;
  color: var(--reboot-white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

/* ---------- バッジ帯 ---------- */
.hours-strip {
  background: var(--reboot-navy-dark);
  color: var(--reboot-white);
  text-align: center;
  padding: var(--sp-2) 0;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hours-strip strong { color: var(--reboot-green); }

/* ---------- 選ばれる理由(Bentoグリッド) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }
  .feature-item.is-featured { grid-column: 1 / 3; grid-row: 1 / 3; }
  .feature-item:nth-of-type(2) { grid-column: 3 / 5; grid-row: 1; }
  .feature-item:nth-of-type(3) { grid-column: 3 / 4; grid-row: 2; }
  .feature-item:nth-of-type(4) { grid-column: 4 / 5; grid-row: 2; }
}

.feature-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item.is-featured {
  background: var(--reboot-navy-dark);
  color: var(--reboot-white);
  justify-content: space-between;
}

.feature-item.is-featured h3,
.feature-item.is-featured .line-icon { color: var(--reboot-white); }

.feature-item.is-featured p { color: rgba(245,247,250,0.78); }

.feature-stat {
  font-family: var(--font-en-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--reboot-green);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.feature-stat-unit { font-size: 22px; font-weight: 700; margin-left: 4px; }

.feature-item .line-icon { margin-left: 0; margin-right: auto; }
.feature-item p { font-size: 14px; color: var(--reboot-text-muted); }

/* ---------- 料金プレビュー ---------- */
.menu-preview-card { text-align: center; }
.menu-preview-card .item-price {
  display: block;
  font-family: var(--font-en-body);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--reboot-blue);
  font-size: 26px;
  margin-top: var(--sp-1);
}

/* ---------- 混雑状況プレビュー(トップ) ---------- */
.congestion-preview { margin-top: var(--sp-4); }

/* ---------- エディトリアルセクション ---------- */
.editorial-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--reboot-border);
}

.editorial-block:last-of-type { border-bottom: none; }

@media (min-width: 860px) {
  .editorial-block {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-6);
  }
  .editorial-block.is-reverse { flex-direction: row-reverse; }
}

.editorial-block .visual { flex: 1; min-height: 260px; }
.editorial-block .content { flex: 1.1; }

/* ---------- 料金ページ ---------- */
.price-lead { margin-bottom: var(--sp-6); }

.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--reboot-text-muted);
}

.policy-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.policy-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.equip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-1) var(--sp-4);
}

@media (min-width: 600px) {
  .equip-list { grid-template-columns: repeat(2, 1fr); }
}

.equip-list li {
  position: relative;
  padding: var(--sp-1) 0 var(--sp-1) 20px;
  border-bottom: 1px solid var(--reboot-border);
  font-size: 15px;
}

.equip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  background: var(--reboot-blue);
  border-radius: 50%;
}

/* ---------- 店舗・混雑状況ページ ---------- */
.condition-block { margin-bottom: var(--sp-6); }

.notice-box {
  background: var(--reboot-white);
  border: 1px solid var(--reboot-border);
  border-left: 4px solid var(--reboot-blue);
  border-radius: 6px;
  padding: var(--sp-3);
  font-size: 14px;
  color: var(--reboot-text-muted);
}

.notice-box strong { color: var(--reboot-text); }

/* ---------- アクセス・入会ページ ---------- */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.contact-options .btn { flex: 1 1 200px; }

.access-note {
  margin-top: var(--sp-3);
  font-size: 13px;
  color: var(--reboot-text-muted);
}
