/* =========================================================
   A4 Card Maker - 共通スタイル
   対象: index.html / how-to.html / terms.html / privacy.html / contact.html
   フッター4ボタン（使い方ガイド｜お問い合わせ｜利用規約｜プライバシーポリシー）対応
   ========================================================= */

/* ---------- Theme Tokens ---------- */
:root{
  --bg:#faf8f3;          /* ページ背景（ごく薄いアイボリー系） */
  --card:#ffffff;        /* カード背景 */
  --ink:#3a3a3a;         /* 文字色 */
  --muted:#6b7280;       /* 補助テキスト */
  --accent:#8fbf8f;      /* パステルグリーン（主） */
  --accent-d:#2f4f2f;    /* 濃い緑（見出し） */
  --line:#e6e6e6;        /* 枠線 */
  --btn:#8fbe8f;         /* ボタン通常 */
  --btn-hover:#77ab77;   /* ボタンhover */
  --chip:#e8f2e8;        /* チップ/バッジ */
  --shadow:0 8px 20px rgba(0,0,0,.08);
  --radius:16px;
  --radius-sm:12px;
}

/* ---------- Base ---------- */
*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "YuGothic", "Meiryo", sans-serif;
  font-size:16px;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ========== Header ========== */
.site-header {
  text-align: center;
  padding: 40px 20px 20px;
  background: transparent;
}

.site-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-d);
  margin: 0;
}

.site-header p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ---------- Layout ---------- */
.container{
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding: 32px;
  border-left:8px solid var(--accent);
  border-bottom:8px solid var(--accent);
}
.section{ margin: 0 auto 16px; max-width: 820px; }

/* ---------- Headings ---------- */
h1{ font-size:1.9rem; font-weight:700; color:var(--accent-d); margin: 0 0 20px; }
h2{ font-size:1.35rem; font-weight:600; color:var(--accent-d); margin: 32px 0 12px; }
h3{ font-size:1.1rem;  font-weight:600; color:var(--ink);      margin: 20px 0 8px; }
h4{ font-size:1.0rem;  font-weight:700; color:var(--ink);      margin: 14px 0 8px; }

/* 段落・リスト */
p{ margin: 0 0 12px; }
ul,ol{ margin: 0 0 14px 1.4rem; }
li{ margin: .25rem 0; }

/* ---------- Buttons / Links ---------- */
a{ color: var(--accent-d); text-decoration: none; }
a:hover{ text-decoration: underline; }

.btn{
  display:inline-block;
  appearance:none;
  border:1px solid var(--btn);
  background:var(--btn);
  color:#fff;
  border-radius:10px;
  padding:10px 16px;
  font-weight:700;
  font-size:.95rem;
  line-height:1;
  cursor:pointer;
  transition:.2s;
  text-decoration:none;
}
.btn:hover{ background:var(--btn-hover); border-color:var(--btn-hover); color:#fff; text-decoration:none; }

.btn-outline{
  background:transparent;
  color:var(--accent-d);
  border:1px solid var(--accent);
}
.btn-outline:hover{
  background:var(--chip);
  color:var(--accent-d);
}

/* 小さめボタン */
.btn-sm{ padding:8px 12px; font-size:.9rem; }

/* ---------- Footer (共通フッター4ボタン) ---------- */
footer{
  max-width:820px;
  margin: 60px auto 0;
  padding: 0 20px 40px;
  font-size:.9rem;
  color:#444;
  text-align:center;
}
.footer-links{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.footer-links a{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:var(--chip);
  text-decoration:none;
  color:var(--accent-d);
  font-weight:700;
  font-size:.92rem;
  border:1px solid #dbe6db;
  transition:.2s;
}
.footer-links a:hover{
  background:var(--btn);
  color:#fff;
  border-color:var(--btn);
  text-decoration:none;
}
.footer-links a.active{
  background:var(--btn);
  color:#fff;
  border-color:var(--btn);
}
.footer-meta{ opacity:.7; margin-top:18px; }

/* ---------- Details / Summary（※折り畳みを使う場合） ---------- */
details{
  background:#eef7ee;
  border:1px solid #d7ead7;
  border-radius:var(--radius-sm);
  padding:8px;
}
summary{
  list-style:none;
  cursor:pointer;
  font-weight:700;
  color:var(--accent-d);
  display:flex;
  align-items:center;
  gap:.6rem;
  padding:8px 12px;
  border-radius:8px;
}
summary::-webkit-details-marker{ display:none; }
details[open] summary{ background:#e5f1e5; }
.panel{
  margin-top:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  padding:16px 18px;
  max-height:60vh;
  overflow:auto;
  line-height:1.8;
  font-size:.95rem;
}

/* ---------- Forms（contact.html 用） ---------- */
form{ margin-top: 8px; }
.form-grid{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px 16px;
  align-items:center;
}
@media (max-width: 720px){
  .form-grid{ grid-template-columns: 1fr; }
}

label{
  font-weight:600;
  color:var(--muted);
  font-size:.92rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  color:var(--ink);
  font-size:1rem;
  outline:none;
  transition: border-color .2s, box-shadow .2s;
}
textarea{ min-height: 140px; resize: vertical; }

input:focus, select:focus, textarea:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(143,190,143,.18);
}

.form-actions{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.help{
  font-size:.85rem;
  color:var(--muted);
}

/* honeypot（スパム対策用） : ユーザーには見せない */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
  margin-bottom: 12px;
}



/* ---------- Utility ---------- */
.center{ text-align:center; }
.note{
  display:inline-block;
  background:var(--chip);
  border:1px solid #dbe6db;
  color:var(--accent-d);
  border-radius:999px;
  padding:6px 10px;
  font-weight:700;
  font-size:.82rem;
}
.badge{
  display:inline-block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px 8px;
  font-size:.78rem;
  color:#555;
}

/* ---------- Optional: Hero / Feature（index, how-to） ---------- */
.hero{
  max-width:820px; margin:0 auto; background:var(--card);
  padding:32px; border-radius:var(--radius); box-shadow:var(--shadow);
  text-align:center; border-left:8px solid var(--accent); border-bottom:8px solid var(--accent);
}
.hero h2{ font-size:1.5rem; font-weight:600; color:var(--accent-d); margin-bottom:10px; }
.hero p{ margin-bottom:24px; font-size:1.05rem; line-height:1.6; }

.features{ max-width:820px; margin:40px auto 0; }
.features ul{ list-style:none; font-size:1.0rem; line-height:1.9; padding-left:0; }
.features li::before{ content:"• "; color:var(--accent); }

/* ---------- Accessibility ---------- */
:focus-visible{ outline: 3px solid rgba(143,190,143,.45); outline-offset: 2px; }
[aria-current="page"]{ pointer-events:none; }

/* ---------- Print (任意) ---------- */
@media print{
  footer, .footer-links{ display:none !important; }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--chip);
  text-decoration: none;
  color: var(--accent-d);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid #dbe6db;
  transition: 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
  background: var(--btn);
  color: #fff;
  border-color: var(--btn);
}

.footer-meta {
  opacity: 0.7;
  margin-top: 18px;
}
