@charset "utf-8";
/* =========================================================================
   受給金額シミュレーター（page-simulator.php 専用）
   ========================================================================= */

.simulator-hero { }
.simulator-hero-eyebrow { margin-bottom: 20px; }
.simulator-hero-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 18px;
}
.simulator-hero-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  max-width: 640px;
  margin: 0;
}

.sim-app { margin: 0 auto; }
.sim-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 52px) clamp(22px, 5vw, 48px);
  box-shadow: 0 30px 60px -40px rgba(35, 32, 28, .25);
}

/* ---- 入力項目 ---- */
.sim-field { margin-bottom: 22px; }
.sim-field label { display: block; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.sim-field select,
.sim-field input {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: var(--bg-gray); font-size: 16px; color: var(--ink); font-family: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s; appearance: none; -webkit-appearance: none;
}
.sim-field select:focus, .sim-field input:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(231, 86, 133, .12);
}
.sim-field select { cursor: pointer; }

.sim-btn-full {
  width: 100%; justify-content: center; border: none; cursor: pointer; font-family: inherit;
}

/* ---- 結果 ---- */
.sim-result-wrap { margin-top: 28px; }
.sim-result-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 16px; }
.sim-amount-box {
  background: var(--cream-2); border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 18px 20px; margin-bottom: 14px;
}
.sim-amount-label { font-size: 16px; color: var(--ink-3); margin-bottom: 6px; }
.sim-amount-main { font-size: 23px; font-weight: 700; color: var(--accent-deep); font-family: var(--num); }
.sim-amount-sub { font-size: 16px; color: var(--ink-3); margin-top: 8px; line-height: 1.8; }
.sim-addition {
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--r-md);
  padding: 16px 18px; margin-top: 16px; font-size: 16px; line-height: 1.85; color: var(--ink-2);
}
.sim-note { margin-top: 20px; font-size: 12px; color: var(--ink-3); line-height: 1.8; }
.btn.sim-line-btn { display: flex; width: 100%; justify-content: center; margin-top: 20px; }
.sim-btn-ghost {
  display: flex; width: 100%; justify-content: center; align-items: center;
  margin-top: 12px; background: transparent; border: 1.5px solid var(--line); color: var(--ink-3);
  padding: 16px 26px; border-radius: 999px; font-weight: 700; font-size: 16px;
  transition: border-color .2s, color .2s;
}
.sim-btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
