/* Levontria 仮サイト 共通スタイル。本番サイトを作るまでのつなぎ。 */
:root {
  --bg: #0b0b14;
  --card: #14142080;
  --text: #ececf3;
  --muted: #a5a5b8;
  --line: #2a2a3c;
  --accent: #7b5cf0;
  --accent2: #3aa0ff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 760px; margin: 0 auto; padding: 32px 20px 64px; }

header.site {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px; margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
header.site img { width: 40px; height: 40px; border-radius: 10px; }
header.site .brand { font-weight: 700; letter-spacing: .04em; color: var(--text); }
header.site .brand small { display: block; font-weight: 400; color: var(--muted); font-size: .8rem; letter-spacing: 0; }

h1 { font-size: 1.6rem; margin: 0 0 6px; letter-spacing: .02em; }
.updated { color: var(--muted); font-size: .85rem; margin: 0 0 28px; }
h2 { font-size: 1.15rem; margin: 36px 0 10px; padding-left: 12px; border-left: 3px solid var(--accent); }
h3 { font-size: 1rem; margin: 22px 0 6px; color: var(--text); }
p, li { color: var(--text); }
ul { padding-left: 1.3em; }
.lead {
  background: linear-gradient(135deg, #7b5cf022, #3aa0ff14);
  border: 1px solid #7b5cf055; border-radius: 14px;
  padding: 16px 18px; margin: 0 0 24px;
}
.lead strong { color: #c9b8ff; }

/* 特商法の表 */
table.spec { width: 100%; border-collapse: collapse; margin-top: 8px; }
table.spec th, table.spec td {
  text-align: left; vertical-align: top;
  padding: 14px 8px; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
table.spec th { width: 32%; color: var(--muted); font-weight: 500; }
@media (max-width: 520px) {
  table.spec th, table.spec td { display: block; width: 100%; padding: 6px 0; }
  table.spec th { padding-top: 14px; font-size: .85rem; }
  table.spec td { padding-bottom: 14px; }
}

footer.site {
  margin-top: 56px; padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: .85rem;
}
footer.site nav a { margin-right: 16px; }

/* トップ(仮) */
.hero { text-align: center; padding: 64px 0 40px; }
.hero img { width: 140px; height: 140px; border-radius: 32px; box-shadow: 0 20px 60px #7b5cf044; }
.hero h1 { font-size: 2rem; margin: 28px 0 8px; }
.hero .tag { color: var(--muted); font-size: 1.05rem; margin: 0 0 24px; }
.hero .soon {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  background: #7b5cf022; border: 1px solid #7b5cf066; color: #c9b8ff; font-size: .9rem;
}
.links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 22px; margin-top: 40px; }
