/* ===== front.css: 全公開ページ共通スタイル ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #111;
  color: #fff;
  font-family: 'Hiragino Mincho ProN', '游明朝', serif;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}
.header-logo img { height: 44px; }
.header-menu {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 6px;
  cursor: pointer;
  background: none; border: none; padding: 0;
}
.header-menu span {
  display: block; height: 2px;
  background: #fff; border-radius: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 20px 100px;
}
.footer-logo { text-align: center; margin-bottom: 20px; }
.footer-logo img { height: 40px; opacity: 0.6; }
.footer-nap {
  font-style: normal; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.footer-nap-store {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.footer-nap-name {
  font-size: 12px; color: rgba(255,255,255,0.55); font-weight: bold; letter-spacing: 0.08em;
}
.footer-nap-addr {
  font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.6;
}
.footer-nap-tel {
  font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-top: 2px;
}
.footer-nap-tel:hover { color: rgba(255,255,255,0.7); }
.footer-seo {
  font-size: 11px; color: rgba(255,255,255,0.2);
  line-height: 1.9; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
.footer-copy {
  text-align: center; font-size: 11px;
  color: rgba(255,255,255,0.2); margin-top: 16px;
}

/* ===== NAV BAR（固定ボトム） ===== */
.nav-bar {
  position: fixed; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 100%;
  background: rgba(10,0,0,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; z-index: 50;
}
.nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px 0 10px; font-size: 11px;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.35);
  text-decoration: none; gap: 3px;
}
.nav-item.active { color: #e8c85a; }
.nav-icon { font-size: 18px; line-height: 1; }

/* ===== DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; top: 0; right: -280px;
  width: 280px; height: 100%;
  background: #1a0000;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 201; transition: right 0.3s ease;
  display: flex; flex-direction: column;
  padding: 0 0 40px; overflow-y: auto;
}
.drawer.open { right: 0; }
.drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer-logo { height: 32px; }
.drawer-close {
  font-size: 24px; color: rgba(255,255,255,0.5);
  background: none; border: none; cursor: pointer; padding: 4px;
}
.drawer-section-label {
  font-size: 10px; letter-spacing: 0.2em; color: #b82020;
  padding: 20px 20px 8px; font-weight: bold;
}
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 14px; letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.12s;
}
.drawer-link:active { background: rgba(255,255,255,0.05); }
.drawer-link-icon { font-size: 18px; width: 24px; text-align: center; }
.drawer-tel {
  margin: 16px 20px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.drawer-tel a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 8px;
  background: linear-gradient(135deg, #8a1818, #c82020);
  color: #fff; text-decoration: none; font-size: 14px; font-weight: bold;
}
.drawer-tel-label {
  font-size: 10px; opacity: 0.7;
  font-weight: normal; display: block; margin-bottom: 2px;
}

/* ===== 共通パーツ ===== */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  margin: 0 20px;
}
.section { padding: 40px 20px 32px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; letter-spacing: 0.15em; color: #fff;
}
.section-title::before {
  content: ''; display: block;
  width: 3px; height: 18px; background: #980708; border-radius: 2px;
}
.section-link {
  font-size: 12px; color: #980708;
  text-decoration: none; letter-spacing: 0.1em;
}

.cta-buttons {
  display: flex; flex-direction: column;
  gap: 10px; padding: 0 20px 32px;
}
.cta-btn {
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 8px; padding: 16px 20px;
  font-size: 14px; letter-spacing: 0.1em;
  text-decoration: none; cursor: pointer;
  border: none; transition: opacity 0.15s; font-family: inherit;
}
.cta-btn:active { opacity: 0.8; }
.cta-btn-primary {
  background: linear-gradient(135deg, #980708, #c0392b);
  color: #fff; box-shadow: 0 4px 16px rgba(152,7,8,0.4);
}
.cta-btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15); color: #fff;
}
.cta-btn-icon { font-size: 18px; }
.cta-btn-arrow { color: rgba(255,255,255,0.5); font-size: 18px; }

.beginner-banner {
  margin: 0 20px 32px;
  border: 1px solid rgba(232,200,90,0.4); border-radius: 12px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(232,200,90,0.06), rgba(152,7,8,0.06));
  text-decoration: none; display: flex; align-items: center; gap: 16px;
  transition: opacity 0.15s;
}
.beginner-banner:active { opacity: 0.8; }
.beginner-icon { font-size: 32px; }
.beginner-body { flex: 1; }
.beginner-label { font-size: 11px; color: #e8c85a; letter-spacing: 0.2em; margin-bottom: 4px; }
.beginner-title { font-size: 16px; color: #fff; letter-spacing: 0.1em; }
.beginner-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; }
.beginner-arrow { color: #e8c85a; font-size: 20px; }

/* ===== ページ共通ヘッダー（hero以外のページ） ===== */
.page-header {
  padding: 80px 20px 32px;
  background: linear-gradient(to bottom, #1a0000, #111);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-header h1 {
  font-size: 24px; letter-spacing: 0.15em;
}
.page-header-sub {
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
