/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
:root{
  --bg: #f7f7f7;
  --card: #ffffff;
  --text: #222;
  --muted: #666;
  --line: #e5e5e5;
  --accent: #1f6feb;
  --accent2: #0f766e;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}
/* ===== Warm color theme ===== */

/* 全体背景 */
body{
  background: #fbf7f3; /* あたたかいベージュ */
  color: #3a2f2a;      /* ダークブラウン寄り */
}

/* 共通テキスト色 */
:root{
  --text: #3a2f2a;
  --muted: #7a6a60;
  --line: #e6dcd3;
  --card: #ffffff;
}

/* カード・ブロック */
.card,
.block,
.section-alt{
  background: #ffffff;
  border-color: #e6dcd3;
}

/* 見出し */
h1, h2, h3, h4{
  color: #3a2f2a;
}

/* 補足テキスト */
.small-note,
.card-note,
.block-lead{
  color: #7a6a60;
}

/* ヘッダー */
.site-header{
  background: rgba(251,247,243,0.95);
  border-bottom: 1px solid #e6dcd3;
}

/* バッジ類 */
.hero-badges li{
  background: #fff6ef;
  border-color: #f0e0d2;
  color: #7a5a48;
}

/* チェックアイコン（緑→暖色） */
.checklist li::before{
  color: #c2410c; /* オレンジ寄り */
}

/* 入力フォーム */
.field input{
  background: #fffdfa;
  border-color: #e6dcd3;
  color: #3a2f2a;
}

.field input:focus{
  border-color: #e5733f;
  box-shadow: 0 0 0 3px rgba(229,115,63,0.2);
}

/* プライバシー説明枠 */
.privacy-line{
  background: #fff1e8;
  border-color: #f1d4c2;
  color: #6a4f42;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(600px, 100%);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(247,247,247,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand-mark{
  font-weight:800;
  letter-spacing:.02em;
}

.header-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.header-nav a{
  font-size:14px;
  color:var(--muted);
}

.header-nav a:hover{ color:var(--text); }
.site-header{
  position: static;
}

.header-inner{
  justify-content: center;
}

.brand-mark{
  font-size: 16px;
}

/* ===== ヘッダーナビの資料請求CTA ===== */

.nav-cta{
  padding: 10px 14px;
  border-radius: 999px;
  background: #d32f2f;   /* 赤 */
  color: #ffffff !important; /* 白文字 */
  border: none;
}

.nav-cta:hover{
  background: #c62828;   /* hover時 少し濃い赤 */
  color: #ffffff !important;
}

.nav-cta:active{
  background: #b71c1c;   /* 押下時 */
}
/* PCでも2カラム化させない */
@media (min-width: 768px){
  .hero-inner,
  .grid-3,
  .cards-3,
  .cards-2,
  .binder,
  .lp-form .form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* === Force CTA buttons: red bg + white text (place at END of styles.css) === */

/* main CTA buttons */
a.btn.btn-primary,
button.btn.btn-primary,
.btn-primary{
  background: #d32f2f !important;
  color: #ffffff !important;
  border-color: #d32f2f !important;
}

/* header nav CTA */
header .header-nav a.nav-cta,
a.nav-cta{
  background: #d32f2f !important;
  color: #ffffff !important;
  border-color: #d32f2f !important;
}

/* hover / active */
a.btn.btn-primary:hover,
a.nav-cta:hover,
button.btn.btn-primary:hover{
  background: #c62828 !important;
  color: #ffffff !important;
}

a.btn.btn-primary:active,
a.nav-cta:active,
button.btn.btn-primary:active{
  background: #b71c1c !important;
  color: #ffffff !important;
}


.btn-secondary{
  background: var(--text);
  color:#fff;
}
.btn-ghost{
  background:#fff;
  border-color: var(--line);
  color: var(--text);
}
.btn:hover{ opacity:.92; }

.hero{
  padding:48px 0 28px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.hero-eyebrow{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  margin:0 0 10px;
}

.hero-title{
  margin:0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.15;
  letter-spacing:-.02em;
}

.hero-lead{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16px;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 14px;
}

.hero-badges{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:var(--muted);
  font-size:13px;
}
.hero-badges li{
  background:#fff;
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}

.hero-card .card{
  padding:18px 18px 14px;
  height:100%;
}

.card-title{
  margin:0 0 10px;
  font-size:18px;
}

.section{
  padding:44px 0;
}

.section-alt{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head h2{
  margin:0 0 8px;
  font-size:26px;
  letter-spacing:-.01em;
}
.section-head p{
  margin:0;
  color:var(--muted);
}

.grid-3{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.feature{
  padding:16px;
}
.feature h3{
  margin:0 0 6px;
  font-size:16px;
}
.feature p{
  margin:0;
  color:var(--muted);
}
.btn{
  width: 100%;
  justify-content: center;
}

.hero-cta,
.submit-area{
  gap: 12px;
}

.btn-wide{
  width: 100%;
}

.block{
  margin-top:18px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: #fbfbfb;
}

.block-head{
  margin-bottom:12px;
}
.block-title{
  margin:0 0 6px;
  font-size:18px;
}
.block-lead{
  margin:0;
  color:var(--muted);
}

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.cards-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.cards-3 .card,
.cards-2 .card{
  padding:16px;
}

.cards-3 h4,
.cards-2 h4{
  margin:0 0 8px;
  font-size:16px;
}

.dotlist{
  margin:0;
  padding-left:1.1em;
  color:var(--muted);
}

.checklist{
  list-style:none;
  padding:0;
  margin:10px 0 0;
}
.checklist li{
  position:relative;
  padding-left:22px;
  margin:8px 0;
  color:var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent2);
  font-weight:700;
}

.card-note{ color:var(--muted); margin:12px 0 0; }

.reassurance{
  margin-top:16px;
  padding:18px;
}

.cta-slab{
  margin-top:18px;
  padding:18px;
  border-radius:var(--radius);
  background: linear-gradient(135deg, rgba(31,111,235,.10), rgba(15,118,110,.10));
  border:1px solid rgba(0,0,0,.06);
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cta-slab h3{ margin:0 0 6px; }
.cta-slab p{ margin:0; color:var(--muted); }

.final-cta{
  padding:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition: transform .05s ease, opacity .2s ease;
  user-select:none;
  white-space:nowrap;
}


.binder{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:14px;
  align-items:stretch;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.binder-media{
  background:#f2f2f2;
  min-height:240px;
}
.binder-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.binder-copy{
  padding:16px;
}
.binder-lead{ margin:0 0 10px; color:var(--muted); }
.binder-note{ margin:12px 0 0; }

.small-note{
  font-size:12.5px;
  color:var(--muted);
}
.small-link{
  font-size:13px;
  color:var(--muted);
  text-decoration:underline;
}

.form-wrap{
  margin-top:18px;
  padding:18px;
}
.form-prelead{
  margin-top:10px !important;
}
.privacy-line{
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:12px;
  background:#f6f8ff;
  border:1px solid #dfe6ff;
  color:var(--muted);
}

.lp-form .form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.field span,
.field legend{
  font-size:13px;
  color:var(--muted);
}
.field em{
  color:#d12;
  font-style:normal;
  margin-left:4px;
}
.field input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
}
.field input:focus{
  border-color: rgba(31,111,235,.55);
  box-shadow: 0 0 0 3px rgba(31,111,235,.12);
}
.field-wide{ grid-column: 1 / -1; }

.checks{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}
.checks label{
  font-size:14px;
  color:var(--text);
  display:flex;
  gap:8px;
  align-items:center;
}

.submit-area{
  margin-top:14px;
  text-align:center;
}
.btn-wide{
  width:min(520px, 100%);
  padding:14px 18px;
  border-radius:16px;
  font-size:16px;
}

.after-form{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.site-footer{
  padding:22px 0 38px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

@media (max-width: 960px){
  .hero-inner{
    grid-template-columns: 1fr;
  }
  .grid-3{
    grid-template-columns: 1fr;
  }
  .cards-3{
    grid-template-columns: 1fr;
  }
  .cards-2{
    grid-template-columns: 1fr;
  }
  .binder{
    grid-template-columns: 1fr;
  }
  .lp-form .form-grid{
    grid-template-columns: 1fr;
  }
  /* ===== スマホ同一レイアウト固定 ===== */

.hero-inner,
.grid-3,
.cards-3,
.cards-2,
.binder,
.lp-form .form-grid,
.after-form,
.cta-slab {
  grid-template-columns: 1fr !important;
}

.hero-inner{
  gap: 16px;
}

.header-nav{
  display: none;
}
/* ===== CTA buttons force white text ===== */

/* 資料請求（赤） */
.btn-primary,
a.btn-primary,
button.btn-primary{
  background: #d32f2f !important;
  color: #ffffff !important;
  border-color: #d32f2f !important;
}

/* 割引キャンペーン（黒 or 濃色） */
.btn-secondary,
a.btn-secondary{
  background: #222222 !important;
  color: #ffffff !important;
  border-color: #222222 !important;
}

/* ヘッダーナビCTA */
.nav-cta,
a.nav-cta{
  background: #d32f2f !important;
  color: #ffffff !important;
  border-color: #d32f2f !important;
}

/* hover */
.btn-primary:hover,
.nav-cta:hover{
  background: #c62828 !important;
  color: #ffffff !important;
}

.btn-secondary:hover{
  background: #111111 !important;
  color: #ffffff !important;
}

/* active */
.btn-primary:active,
.nav-cta:active{
  background: #b71c1c !important;
  color: #ffffff !important;
}

.btn-secondary:active{
  background: #000000 !important;
  color: #ffffff !important;
}