
:root{
  --bg:#fffaf8;
  --panel:#ffffff;
  --text:#2f2523;
  --muted:#6f6260;
  --accent:#b98b62;
  --accent2:#c9798f;
  --pale:#f7e7e4;
  --line:#ead8d2;
  --deep:#6b3e45;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Yu Gothic","Noto Sans JP",Meiryo,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fffaf8 0%,#fff 45%,#fff7f5 100%);
  line-height:1.75;
}
.wrapper{max-width:900px;margin:0 auto;padding:20px 16px 56px}
.brand{
  text-align:center;
  letter-spacing:.08em;
  color:var(--deep);
  font-family:Georgia,"Times New Roman",serif;
  font-size:14px;
  margin-top:10px;
}
.brand strong{display:block;font-size:22px;letter-spacing:.16em;margin-top:4px}
.card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 16px 38px rgba(88,55,49,.10);
  padding:28px;
  margin:24px 0;
}
.hero{text-align:center;padding:34px 26px}
.kicker{
  display:inline-block;
  border:1px solid var(--accent);
  color:var(--accent);
  padding:4px 14px;
  border-radius:999px;
  font-size:13px;
  margin-bottom:14px;
}
h1,h2,h3{line-height:1.35;margin:0 0 14px}
h1{font-size:34px;color:var(--deep)}
h2{font-size:27px;color:var(--deep)}
h3{font-size:20px;color:var(--deep)}
.lead{font-size:18px;color:var(--muted);margin:12px auto 22px;max-width:680px}
.small{font-size:13px;color:var(--muted)}
.question{
  font-size:28px;
  color:var(--deep);
  font-weight:700;
  text-align:center;
  margin:12px 0 24px;
}
.actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:24px;
}
.btn{
  display:block;
  text-align:center;
  text-decoration:none;
  padding:15px 18px;
  border-radius:14px;
  border:1px solid var(--accent2);
  font-weight:700;
  transition:.15s ease;
}
.btn.primary{
  background:var(--accent2);
  color:#fff;
  border-color:var(--accent2);
}
.btn.secondary{
  background:#fff;
  color:var(--accent2);
}
.btn.gold{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}
.btn:hover{transform:translateY(-1px);box-shadow:0 8px 16px rgba(0,0,0,.08)}
.progress{height:8px;background:#f1dfdb;border-radius:999px;overflow:hidden;margin:0 0 16px}
.progress span{display:block;height:100%;background:linear-gradient(90deg,var(--accent),var(--accent2));border-radius:999px}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.box{background:#fff7f5;border:1px solid var(--line);padding:18px;border-radius:18px}
ul{padding-left:1.2em}
.result-type{
  text-align:center;
  background:linear-gradient(135deg,#fff4f3,#fffdfd);
}
.result-title{font-size:30px;color:var(--deep)}
.schedule-list{list-style:none;padding:0;margin:10px 0}
.schedule-list li{padding:10px 12px;border-bottom:1px solid var(--line)}
.footer{text-align:center;font-size:12px;color:var(--muted);margin-top:30px}
.notice{background:#fffbe9;border:1px solid #eedaa5;padding:12px 14px;border-radius:12px;color:#66512c;margin-top:18px}
@media(max-width:640px){
  .wrapper{padding:12px 12px 42px}
  .card{padding:22px 18px;border-radius:20px}
  h1{font-size:27px}
  h2{font-size:23px}
  .lead{font-size:16px}
  .question{font-size:23px}
  .actions{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}
