/* ========== 変数（余白・色・ブレークポイント） ========== */
:root{
  --gutter-left:  clamp(6px, 1.2vw, 16px);
  --gutter-right: clamp(18px, 3.8vw, 40px);
  --gap:          clamp(20px, 3.2vw, 32px);

  --left-col: 340px;

  --stage-top: 16px;
  --panel-stick-top: 12px;

  --fui-z:   1000;
  --fui-top: 0px;

  --bg:#f8fbf8;
  --panel:#ffffff;
  --ink:#2f4f2f;
  --muted:#6b7280;
  --accent:#2563eb;
  --border:#e5e7eb;
  --btn-orange:#f6ad55;
  --btn-orange-h:#f59e0b;
  --btn-green:#6ee7b7;
  --btn-green-h:#10b981;
  --fui-bg:#d7ead7;
  --fui-border:#bcd8bc;
  --fui-ink:#2f4f2f;
  --fui-accent:#8fbe8f;
}

/* ========== Reset / Global ========== */
*,
*::before,
*::after{
  box-sizing:border-box;
}
html,body{
  margin:0;
  padding:0;
}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Poppins", system-ui, -apple-system, "Segoe UI", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size:15px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

/* ========== Header ========== */
.app-header{
  padding:16px var(--gutter-right) 8px var(--gutter-left);
  background:var(--panel);
  border-bottom:1px solid var(--border);
}
.center-title{
  margin:6px 0;
  text-align:center;
  font-size:28px;
  font-weight:700;
  letter-spacing:0.03em;
  color:var(--ink);
}

/* ========== 2カラム ========== */
.wrap{
  width:100%;
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-right);
  display:grid;
  grid-template-columns: var(--left-col) minmax(0,1fr);
  gap: var(--gap);
  align-items:start;
}

/* ========== 左パネル（sticky） ========== */
.panel{
  position: sticky;
  position: -webkit-sticky;
  top: var(--panel-stick-top);
  z-index: 2;

  background: var(--panel);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  max-height: calc(100vh - var(--panel-stick-top) - 16px);
  overflow: auto;
  margin-top: var(--stage-top);
}

/* 左コラムの文字少し大きめ（ボタン以外） */
.panel *:not(button) {
  font-size: 15.5px;
  line-height: 1.7;
}

/* 入力フィールド */
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.field textarea,
.field input[type="number"],
.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
}
.field textarea {
  resize: vertical;
  min-height: 60px;
}

/* ボタン群 */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
button {
  appearance: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  transition: background .15s, border-color .15s, color .15s;
}
button:hover { border-color: var(--accent); }
#btn-add-text {
  background: var(--btn-orange);
  border-color: var(--btn-orange);
  color: #fff;
}
#btn-add-text:hover {
  background: var(--btn-orange-h);
  border-color: var(--btn-orange-h);
}
#btn-download {
  background: var(--btn-green);
  border-color: var(--btn-green);
  color: #0b3b2a;
}
#btn-download:hover {
  background: var(--btn-green-h);
  border-color: var(--btn-green-h);
  color: #fff;
}

/* ホームへ戻るボタン */
.home-link {
  margin-top: 14px;
  text-align: center;
}
.home-btn {
  display: inline-block;
  background: var(--btn-green);
  color: #0b3b2a;
  border: 1px solid var(--btn-green);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.home-btn:hover {
  background: var(--btn-green-h);
  color: #fff;
  border-color: var(--btn-green-h);
}

/* 操作ガイド */
.help {
  font-size: 15px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  max-height: 50vh;
  overflow: auto;
}
.help-lead{
  margin: 12px 0 8px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  display: inline-block;
}
.help h2, .help h3 {
  margin: 10px 0 4px;
  font-size: 15px;
}
.help ol, .help ul {
  margin-left: 1em;
  padding-left: .5em;
}
.help hr {
  margin: 10px 0;
  border: none;
  border-top: 1px solid var(--border);
}

/* ========== 右エリア（FUI + キャンバス） ========== */
.stage {
  margin-top: var(--stage-top);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

/* FUI（上バー） */
.fui {
  position: sticky;
  top: var(--fui-top);
  z-index: var(--fui-z);
  width: min(100%, 980px);
  margin: 0 0 10px;
  padding: 8px 10px;
  background: var(--fui-bg);
  border-radius: 999px;
  border: 1px solid var(--fui-border);
  box-shadow: 0 8px 18px rgba(15,23,42,.12);
}
.fui-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.fui button {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: #e8f2e8;
  border: 1px solid var(--fui-border);
}
.fui button:hover {
  background: var(--fui-accent);
  color: #fff;
  border-color: var(--fui-accent);
}
.fui-sep { width: 1px; height: 24px; background: #a7c9a7; opacity: .6; }
.fui-colors { display: flex; gap: 6px; align-items: center; }
.fui-colors .color-btn {
  width: 20px; height: 20px; border-radius: 6px;
  border: 1px solid rgba(0,0,0,.15);
}
.fui-colors .picker {
  display: flex; align-items: center; gap: 6px; margin-left: 6px;
}
.fui-colors .picker input[type="color"] {
  width: 34px; height: 26px;
  border: 1px solid var(--fui-border);
  border-radius: 8px;
  background: #fff;
}

/* キャンバス */
.canvas-box { position: relative; width: fit-content; }
#a4-canvas {
  display: block;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  /* 既存の background / box-shadow などに追加で */
  touch-action: pan-y; /* スマホで縦スクロール優先 */
  max-width: 100%;
  height: auto;
}

/* ========== フッター ========== */
.site-footer {
  text-align: center;
  padding: 24px var(--gutter-right) 32px var(--gutter-left);
  color: #4b5563;
}
.copyright {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* ========== レスポンシブ ========== */
@media (max-width: 1400px){
  .wrap{
    grid-template-columns: minmax(0,var(--left-col)) minmax(0, 1.3fr);
  }
  .fui{
    width: min(100%, 880px);
  }
}
@media (max-width: 1100px){
  .wrap{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stage{
    margin-top: 10px;
  }
  .panel{
    position: static;
    max-height: none;
    overflow: visible;
    margin-top: 0;
  }
  .fui{
    width: min(100%, 820px);
  }
}

/* 横スクロール防止 */
html,body{ overflow-x: clip; }
