/* ==========================================================================
   access.css — access.html 専用（本編に依存しない軽量な読み物ページ）
   本編の 3D 回廊は使わず、brand.css の変数・基本コンポーネントに乗せるだけ。
   ========================================================================= */

.ma-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  background: var(--bg);
  overflow: hidden;
}
.ma-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.96);
}
.ma-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,18,16,0.10) 0%, rgba(12,18,16,0.20) 45%, rgba(12,18,16,0.86) 100%);
}
.ma-hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  padding: 0 var(--pad) clamp(40px, 7vh, 96px);
}
.ma-hero__inner .bs-meta { color: var(--ink); opacity: 0.82; }
.ma-hero__inner h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0.4em 0 0.5em;
  word-break: auto-phrase;
}
.ma-hero__inner p { max-width: 34em; }

.ma-narrow { max-width: 42em; margin: 0 auto; }
.ma-narrow h2 { margin-top: 0; }

.ma-table {
  width: 100%;
  border-collapse: collapse;
  margin: clamp(24px, 4vh, 48px) 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.ma-table tr { border-bottom: 1px solid var(--line); }
.ma-table th, .ma-table td {
  text-align: left;
  padding: 0.9em 1em 0.9em 0;
  vertical-align: top;
  font-weight: 400;
}
.ma-table th {
  width: 9em;
  color: var(--ink-dim, rgba(237,241,232,0.62));
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ma-faq { margin: clamp(24px, 4vh, 48px) 0 0; padding: 0; list-style: none; }
.ma-faq li {
  border-top: 1px solid var(--line);
  padding: clamp(18px, 2.6vh, 28px) 0;
}
.ma-faq li:last-child { border-bottom: 1px solid var(--line); }
.ma-faq .q {
  font-weight: 500;
  margin: 0 0 0.5em;
}
.ma-faq .q::before { content: "Q. "; color: var(--accent); }
.ma-faq .a { margin: 0; }
.ma-faq .a::before { content: "A. "; color: var(--ink-dim, rgba(237,241,232,0.62)); }
