/* ═══════════════════════════════════════════════
   EQUIPMENT PAGE — page-equipment.php styles
   ═══════════════════════════════════════════════ */

/* ── ヒーロー ── */
.eq-hero {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 80px 20px 60px;
  background-color: #fcfcfc;
}

.eq-hero__title {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 80px;
  font-weight: 600;
  letter-spacing: 4px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1;
}

.eq-hero__sub {
  font-size: 20px;
  color: var(--color-text);
}

/* ── セクション全体 ── */
.eq-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
}

.eq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── 各ブロック ── */
.eq-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── 見出し ── */
.eq-block__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-blue);
}

.eq-block__heading-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
}

/* ── リストボックス ── */
.eq-list-box {
  background-color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.eq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eq-list li {
  font-family: "Noto Sans JP", "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-text-sub);
  padding-left: 1.2em;
  position: relative;
}

.eq-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
}

/* ── ライブハウス図面 ── */
.eq-floormap-wrap {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.eq-floormap-wrap:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.eq-floormap-img {
  width: 100%;
  height: auto;
  display: block;
}

.eq-floormap-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* ── モーダル ── */
.eq-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.eq-modal[hidden] {
  display: none;
}

.eq-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.eq-modal__body {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  animation: eqModalIn 0.3s ease;
}

@keyframes eqModalIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.eq-modal__close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease;
}

.eq-modal__close-btn:hover {
  background: var(--color-bg-gray);
}

.eq-modal__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .eq-hero {
    padding: 64px 20px 48px;
  }
}

@media (max-width: 767px) {
  .eq-hero {
    padding: 48px 20px 32px;
  }

  .eq-hero__title {
    font-size: 48px;
    letter-spacing: 3px;
  }

  .eq-hero__sub {
    font-size: 16px;
  }

  .eq-section {
    padding: 48px 20px;
  }

  .eq-container {
    gap: 36px;
  }

  .eq-block__heading {
    font-size: 15px;
  }

  .eq-list-box {
    padding: 16px 18px;
  }

  .eq-list li {
    font-size: 13px;
  }

  .eq-modal__close-btn {
    top: 4px;
    right: 4px;
  }
}