:root{
  --bg:  #f3f1fb;   /* ラベンダー */
  --bg2: #ffffff;

  --text:#222;
  --muted:#666;
  --line:#e4e2f0;

  --accent:#2b3a55;
  --accent2:#b08a2e;

  /* 既存CSSで var(--ink) を参照していたので安全に定義 */
  --ink: var(--text);

  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: "Hiragino Sans","Noto Sans JP",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.8;
}

a{ color:var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }
strong{ font-weight:700; }

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* =========================
   Header
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,250,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:baseline;
  gap:10px;
  font-weight:700;
}
.brand-mark{ letter-spacing:.2px; }
.brand-sub{ font-weight:600; color:var(--muted); }

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}
.nav a{
  color:var(--text);
  font-size: 14px;
  opacity:.9;
}
.nav a:hover{ opacity:1; }
.nav-cta{
  padding: 8px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  background: var(--bg2);
}

/* =========================
   Hero
   ========================= */
.hero{
  background: linear-gradient(180deg, #ffffff 0%, #f7f6fc 100%);
  padding: 64px 0 42px;
  border-bottom: 1px solid var(--line);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 32px;
  align-items:start;
}

.badge{
  display:inline-block;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg2);
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
}

.hero h1{
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
  letter-spacing: .1px;
}

.accent{
  color: var(--accent);
  position: relative;
}

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

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

/* Hero右カード */
.card{
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(247, 246, 252, .9) 100%);
}

.card h2{
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--ink);
}

.card-divider{
  height:1px;
  background: var(--line);
  margin: 14px 0;
}

.card-note{
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  padding-left: 12px;
  border-left: 3px solid rgba(77, 63, 134, .28);
}

/* =========================
   Sections
   ========================= */
.section{ padding: 60px 0; }

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

.section-title{
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: .1px;
}

.section-lead{
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15.5px;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

/* パネル */
.panel{
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.panel h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.panel p{
  margin: 0;
  color: var(--muted);
}

/* Features */
.feature{
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.feature h3{
  margin:0 0 8px;
  font-size: 16px;
}
.feature p{
  margin:0;
  color: var(--muted);
}

/* =========================
   Quote（Pipsの帯） ※ここを一本化
   - PC：左カラム幅
   - Mobile：全幅
   ========================= */
.quote{
  margin-top: 18px;
  background: #f6f2ea;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent2);
  border-radius: var(--radius);
  padding: 18px 22px;
  width: 100%;
  max-width: 100%;
}
.quote p{ margin: 0; }

/* grid-2の左カラムに配置 */
.grid-2 .quote{
  grid-column: 1 / 2;
}

/* モバイルは1列なので全幅 */
@media (max-width: 920px){
  .grid-2 .quote{
    grid-column: 1 / -1;
  }
}

/* =========================
   Note box
   ========================= */
.note-box{
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(176,138,46,.35);
  background: rgba(176,138,46,.06);
  border-radius: var(--radius);
}
.note-box h3{ margin:0 0 6px; font-size:16px; }
.note-box p{ margin:0 0 10px; color: var(--muted); }
.note-box p.micro{ margin:0; }

/* Lists */
.checklist, .bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.checklist li, .bullets li{ margin: 6px 0; }

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.btn:hover{ text-decoration:none; border-color:#d5d5d5; }

.btn-primary{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover{ filter: brightness(1.02); }

.btn-ghost{ background: transparent; }

.apply-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.micro{ font-size: 12.5px; color: var(--muted); }
.center{ text-align:center; }

/* =========================
   Soft CTA
   ========================= */
.soft-cta{
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.soft-cta-text{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* =========================
   FAQ（いま使ってる faq-panel を優先）
   ========================= */
.faq-panel{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 14px 0;
  box-shadow: 0 8px 22px rgba(18, 16, 28, .05);
  overflow: hidden;
}

.faq-q{
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-q::-webkit-details-marker{ display:none; }

/* 左の▶ */
.faq-q::before{
  content: "▶";
  font-size: 12px;
  opacity: .75;
  transform: translateY(1px);
}

/* open時は▼ */
.faq-panel[open] .faq-q::before{ content: "▼"; }

/* Q番号 */
.faq-no{
  font-weight: 900;
  color: var(--accent);
}

/* 回答エリア */
.faq-a{
  border-top: 1px solid var(--line);
  padding: 14px 18px 18px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(247,246,252,.55) 100%);
}
.faq-a p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

/* =========================
   Concept Section（統合）
   ========================= */
.concept-box{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px;
  box-shadow: 0 10px 30px rgba(20, 20, 60, 0.06);
}

.concept-wrap{
  max-width: 760px;
  margin: 0;     /* 左寄せ */
  text-align: left;
}

.concept-wrap h2{
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: .02em;
}

.concept-lead{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
}
.concept-lead strong{ font-weight: 800; }

.concept-body p{ margin: 0 0 14px; }

.concept-bridge{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.concept-bridge-text{ margin: 0 0 12px; }

.concept-voice{
  margin: 0 0 10px;
  color: var(--muted);
}

.concept-quote{
  margin: 12px 0;
  padding: 6px 0 6px 16px;
  border-left: 4px solid #b8b3e6; /* ラベンダー */
  background: none;
  border-radius: 0;
  font-weight: 700;
}

.concept-close{ margin: 0; }

@media (max-width: 768px){
  .concept-box{ padding: 20px 16px; }
  .concept-wrap h2{ font-size: 22px; }
  .concept-lead{ font-size: 16px; }
}

/* =========================
   Footer
   ========================= */
.site-footer{
  padding: 34px 0 18px;
  background: #f3f2fb;
  border-top: 1px solid var(--line);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 24px;
  flex-wrap:wrap;
}

.footer-brand{
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 8px;
}

.footer-links a{
  color: var(--text);
  opacity: .85;
  font-size: 13px;
}
.footer-links a:hover{ opacity:1; }

.footer-bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* =========================
   Responsive（全体）
   ========================= */
@media (max-width: 920px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .nav{ gap: 12px; }
}
