/* shared style for operator / privacy / contact stub pages */
*{box-sizing:border-box;margin:0;padding:0}
html,body{
  background:#f4ece2;
  font-family:-apple-system,BlinkMacSystemFont,'Hiragino Sans','Noto Sans JP',sans-serif;
  -webkit-font-smoothing:antialiased;
  color:#3a3a3a;
  line-height:1.8;
}
.page{
  max-width:780px;
  margin:0 auto;
  background:#fff;
  min-height:100vh;
  padding:48px 32px 80px;
}
.crumb{
  font-size:13px;
  color:#888;
  margin-bottom:18px;
}
.crumb a{color:#e85a6c;text-decoration:none}
h1{
  font-size:26px;
  font-weight:800;
  color:#2a2a2a;
  margin-bottom:8px;
}
.lead{
  font-size:14px;
  color:#666;
  margin-bottom:32px;
}
h2{
  font-size:16px;
  font-weight:700;
  color:#2a2a2a;
  margin:28px 0 8px;
  padding-bottom:6px;
  border-bottom:2px solid #f3d4d8;
}
p,dl,ul{font-size:14.5px;margin-bottom:8px}
dl{display:grid;grid-template-columns:140px 1fr;row-gap:6px;column-gap:12px;margin-bottom:8px}
dt{color:#888;font-weight:600}
ul{padding-left:20px}
.todo{
  background:#fff8d7;
  border-left:4px solid #f1c40f;
  padding:10px 14px;
  font-size:13px;
  color:#7a6310;
  margin:12px 0 24px;
  border-radius:4px;
}
.legal-footer{
  background:#3a3a3a;
  color:#dcdcdc;
  text-align:center;
  padding:22px 16px 24px;
  font-size:12px;
  line-height:1.8;
}
.legal-footer nav{display:flex;justify-content:center;flex-wrap:wrap;gap:8px 22px;margin-bottom:10px}
.legal-footer a{color:#fff;text-decoration:none}
.legal-footer a:hover{text-decoration:underline}
.legal-footer .copy{opacity:.65;font-size:11px}

/* contact form */
.form-row{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.form-row label{font-size:13px;font-weight:600;color:#3a3a3a}
.form-row input,.form-row textarea,.form-row select{
  border:1px solid #e0d8d4;border-radius:6px;padding:10px 12px;
  font:inherit;background:#fdfaf7;
}
.form-row textarea{min-height:140px;resize:vertical}
.btn-submit{
  background:linear-gradient(180deg,#f47787 0%,#e85a6c 100%);
  color:#fff;border:none;border-radius:10px;
  padding:14px 24px;font-size:16px;font-weight:700;
  cursor:pointer;box-shadow:0 4px 0 #cf4154;
  letter-spacing:.04em;
  margin-top:8px;
  display:inline-block;
  text-decoration:none;
}
.btn-submit:hover{filter:brightness(1.04)}
.btn-submit:active{transform:translateY(2px);box-shadow:0 2px 0 #cf4154}
