/* ================================================================
   femizemi-cafe theme — space.css
   静的版 space/index.html の <style> からページ固有ルールを移植。
   共通(reset/:root/a)・header/footer/nav/logo は共有 main.css を使用（重複定義を除去）。
   body 背景のみサブページのミント色に上書き。
   ================================================================ */
body { background: #D4E8E3; }
a { color: inherit; }
@media (max-width: 500px) { nav { display: none; } }
.page-hero { padding: 3.5rem 2rem 2.5rem; max-width: 800px; margin: 0 auto; }
.eyebrow { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; line-height: 1.3; margin-bottom: 1rem; }
.page-hero .lead { font-size: 0.97rem; color: var(--text-mid); line-height: 2; margin-bottom: 1.5rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.75rem; border-radius: 100px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: opacity 0.15s; }
.btn:hover { opacity: 0.82; }
.btn-sage { background: var(--sage); color: white; }
.btn-deep { background: var(--deep); color: white; }
.btn::after { content: '→'; }
.content { max-width: 800px; margin: 0 auto; padding: 0 2rem 5rem; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 1.5rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); margin-top: 3rem; }
.section-label:first-child { margin-top: 0; }
.info-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin-bottom: 1rem; }
.info-table th, .info-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.info-table th { font-weight: 600; color: var(--text-light); width: 10rem; white-space: nowrap; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.91rem; margin-bottom: 1.5rem; }
.pricing-table th, .pricing-table td { padding: 0.75rem 1rem; text-align: center; border: 1px solid var(--border); }
.pricing-table th { background: var(--bg); font-weight: 700; }
.pricing-table td:first-child { text-align: left; font-weight: 500; }
.pricing-note { font-size: 0.85rem; color: var(--text-light); line-height: 1.9; margin-top: 0.75rem; }
.pricing-note p { margin-bottom: 0.3rem; }
.step-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.step-item { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; align-items: flex-start; }
.step-num { width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--deep); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.step-content h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.35rem; }
.step-content p { font-size: 0.91rem; color: var(--text-mid); line-height: 1.9; }
.step-content a { color: var(--sage-dark); text-decoration: underline; }
.equip-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 1.25rem; }
.equip-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.equip-card p { font-size: 0.91rem; color: var(--text-mid); line-height: 1.9; }
.notice-list { display: flex; flex-direction: column; gap: 0.75rem; }
.notice-item { font-size: 0.91rem; color: var(--text-mid); line-height: 1.9; padding-left: 1.25rem; position: relative; }
.notice-item::before { content: '・'; position: absolute; left: 0; color: var(--text-light); }
.collapsible { margin-top: 3rem; border-bottom: 1px solid var(--border); padding-bottom: 0.6rem; }
.collapsible summary {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-light);
      cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
    }
.collapsible summary::-webkit-details-marker { display: none; }
.collapsible summary::after { content: '＋'; font-size: 1rem; font-weight: 400; color: var(--text-light); transition: transform 0.2s; }
.collapsible[open] summary::after { content: '－'; }
.collapsible-body { margin-top: 1.5rem; padding-bottom: 1rem; }
.space-photo {
      width: 100%;
      max-height: 420px;
      object-fit: cover;
      border-radius: 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.10);
      display: block;
      margin-bottom: 2.5rem;
    }
