@charset "UTF-8";
/* =========================================
   株式会社モルシカ企画 営業LP
   設計思想: 信用 > 分かりやすさ > 見栄え
   紙の営業資料と同一のブランドカラーに統一
========================================= */
:root {
  --primary: #2C5F2D;      /* 深緑: 見出し・CTA・キーカラー */
  --secondary: #97BC62;    /* モスグリーン: アクセント・アイコン */
  --bg-light: #EFF5E8;     /* 薄緑: 交互背景・カード背景 */
  --wood: #D6B98C;         /* 木の色: 差し色(使いすぎない) */
  --wood-dark: #8A6B3F;
  --ink-head: #26402A;
  --ink: #333333;
  --ink-soft: #666666;
  --line: #E0E0E0;
  --white: #FFFFFF;
  --radius: 10px;
  --font: "Noto Sans JP", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--primary); }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 写真プレースホルダー ---------- */
.ph {
  aspect-ratio: 16 / 9;
  background: var(--bg-light);
  border: 1px dashed var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}
.ph span { font-size: 13px; color: var(--ink-soft); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  transition: background 0.2s;
}
.btn:hover { background: #234C24; }
.btn-header { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-ghost {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-ghost:hover { background: var(--bg-light); }

.hero-cta { text-align: center; margin-top: 8px; }
.cta-micro {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ---------- ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-head);
}
.brand-mark { width: 42px; height: 42px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.4; }
.brand-name { font-weight: 700; font-size: 17px; }
.brand-tagline { font-size: 11px; color: var(--ink-soft); }
.gnav { display: flex; gap: 2px; margin-left: auto; }
.gnav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
}
.gnav a:hover { background: var(--bg-light); color: var(--primary); }

/* ---------- セクション共通 ---------- */
section { scroll-margin-top: 76px; }

.sec-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-head);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* ---------- ①ヒーロー ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 64px 0 72px;
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background: url("../images/hero-family.jpg") center 35% / cover no-repeat;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.85) 22%, rgba(255, 255, 255, 0) 62%);
}
.hero-inner { position: relative; }
.hero-text { max-width: 560px; }
.hero-title {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--ink-head);
  line-height: 1.5;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.hero-lead {
  margin-bottom: 26px;
  max-width: 34em;
}
.hero-cta-left { text-align: left; }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ph-hero { max-width: 900px; margin: 0 auto; }
.hero-photo-mobile { display: none; margin: 0; }
.hero-photo-mobile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- 実績の帯 ---------- */
.stats {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 18px 8px;
}
.stat-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.stat-value { font-size: clamp(28px, 3.2vw, 36px); font-weight: 700; line-height: 1.3; white-space: nowrap; }
.stat-value small { font-size: 0.45em; font-weight: 500; margin: 0 2px; }
.stats-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}
.stats-badge {
  background: var(--wood);
  color: var(--ink-head);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 6px;
}
.stats-note { font-size: 12px; opacity: 0.8; }
.stats-link-row {
  margin-top: 12px;
  font-size: 13.5px;
}
.stats-link-row a {
  color: var(--white);
  font-weight: 500;
}

/* ---------- ②安心3点 ---------- */
.trust {
  background: var(--white);
  padding: 72px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  color: var(--primary);
  margin-bottom: 14px;
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-head);
  margin-bottom: 8px;
}
.trust-card p { font-size: 14.5px; text-align: left; }
.trust-note {
  margin-top: 22px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-head);
}

/* ---------- 選ばれる理由 ---------- */
.reasons {
  background: var(--bg-light);
  padding: 72px 0;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px;
}
.reason-num {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  padding: 2px 14px;
  margin-bottom: 10px;
}
.reason-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-head);
  margin-bottom: 6px;
}
.reason-card p { font-size: 14.5px; }

/* ---------- 開催実績 ---------- */
.jisseki {
  background: var(--white);
  padding: 72px 0;
}
.jisseki-list {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.jisseki-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.jisseki-card figure,
.jisseki-card .ph-card {
  aspect-ratio: 4 / 3;
  height: 100%;
}
.jisseki-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jisseki-card .ph-card { border: none; border-radius: 0; border-right: 1px dashed var(--secondary); }
.jisseki-body { padding: 20px 26px; }
.jisseki-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-head);
  margin-bottom: 4px;
}
.jisseki-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.jisseki-meta {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}
.jisseki-body p:last-child { font-size: 14.5px; }
.jisseki-note {
  max-width: 860px;
  margin: 16px auto 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------- ③モルックとは ---------- */
.about {
  background: var(--bg-light);
  padding: 72px 0;
}
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about .sec-title { text-align: left; margin-bottom: 20px; }
.about-text p { margin-bottom: 12px; max-width: 34em; }
.about-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- ④活用シーン ---------- */
.scenes {
  background: var(--white);
  padding: 72px 0;
}
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scene-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.scene-card figure { aspect-ratio: 16 / 9; overflow: hidden; }
.scene-card figure img { width: 100%; height: 100%; object-fit: cover; }
.scene-card .ph-card { border-radius: 0; border-left: none; border-right: none; border-top: none; }
.scene-body { padding: 18px 20px 22px; }
.scene-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.scene-body p { font-size: 14px; color: var(--ink); }
.scenes-note {
  margin-top: 14px;
  text-align: right;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- ⑤費用感 ---------- */
.price {
  background: var(--bg-light);
  padding: 72px 0;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-head);
  text-align: center;
  margin-bottom: 6px;
}
.price-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.3;
}
.price-value small { font-size: 0.35em; font-weight: 500; }
.price-desc {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 4px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.price-includes { font-size: 14px; }
.price-includes li {
  padding: 5px 0 5px 22px;
  position: relative;
}
.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}
.price-case {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
.price-value-rows p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  line-height: 1.5;
}
.price-when {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-light);
  border-radius: 4px;
  padding: 1px 10px;
}
.price-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
}
.price-num small { font-size: 0.45em; font-weight: 500; }
.price-common {
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 22px;
  text-align: center;
  font-size: 14px;
}
.price-common strong {
  color: var(--ink-head);
  margin-right: 6px;
}
.price-public {
  margin-top: 16px;
  background: var(--white);
  border: 2px solid var(--wood);
  border-radius: var(--radius);
  padding: 18px 24px;
}
.price-care-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.price-care-note strong { color: var(--ink-head); }
.price-public strong { color: var(--wood-dark); margin-right: 4px; }
.price-note {
  margin: 16px auto 28px;
  max-width: 740px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------- ⑥導入の流れ ---------- */
.flow {
  background: var(--white);
  padding: 72px 0;
}
.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.flow-step {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.flow-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-head);
  margin-bottom: 4px;
}
.flow-step p { font-size: 14px; }

/* ---------- ⑦FAQ ---------- */
.faq {
  background: var(--bg-light);
  padding: 72px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink-head);
  padding: 16px 48px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 18px;
  top: 15px;
  color: var(--primary);
  font-weight: 700;
  font-size: 17px;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 22px;
  color: var(--secondary);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 24px 18px 48px;
  font-size: 14.5px;
  position: relative;
}
.faq-item p::before {
  content: "A";
  position: absolute;
  left: 18px;
  color: var(--wood-dark);
  font-weight: 700;
  font-size: 16px;
}

/* ---------- ⑧会社概要 ---------- */
.company {
  background: var(--white);
  padding: 72px 0;
}
.company-table {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
}
.company-table th,
.company-table td {
  padding: 14px 22px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 30%;
  background: var(--bg-light);
  font-weight: 500;
  color: var(--ink-head);
  white-space: nowrap;
}
.rep-profile {
  max-width: 720px;
  margin: 20px auto 0;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.rep-profile h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-head);
  margin-bottom: 6px;
}
.rep-profile p { font-size: 14.5px; }

/* ---------- ⑨最終CTA ---------- */
.cta {
  background: var(--bg-light);
  padding: 64px 0 72px;
  text-align: center;
}
.cta-mascots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 16px;
}
.cta-mascots img { width: 64px; }
.cta-mascots .cta-mascot-main { width: 88px; }
.cta-title {
  font-size: clamp(24px, 3.6vw, 30px);
  font-weight: 700;
  color: var(--ink-head);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cta-lead { font-size: 15px; margin-bottom: 24px; }
.cta-mail { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }
.cta-mail a { font-weight: 700; }

/* ---------- フッター ---------- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 22px 20px;
  font-size: 13px;
}
.footer-note {
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 4px;
}

/* ---------- モバイル追従CTA ---------- */
.sticky-cta { display: none; }

/* ---------- フェードイン(控えめ・JSが動く環境のみ) ---------- */
html.js .fade-in {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
html.js .fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .fade-in { opacity: 1; transform: none; transition: none; }
}

/* =========================================
   レスポンシブ(モバイルファースト調整)
========================================= */
@media (max-width: 900px) {
  .gnav { display: none; }
  .brand-tagline { display: none; }
  .hero-bg { display: none; }
  .hero-photo-mobile { display: block; margin-top: 28px; }
  .hero-text { max-width: none; }
  .reason-grid { grid-template-columns: 1fr; }
  .jisseki-card { grid-template-columns: 1fr; }
  .jisseki-card figure,
  .jisseki-card .ph-card { height: auto; }
  .jisseki-card .ph-card { border-right: none; border-bottom: 1px dashed var(--secondary); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-flex { grid-template-columns: 1fr; gap: 24px; }
  .about .sec-title { text-align: center; }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  body { font-size: 15.5px; }
  .brand-name { font-size: 14px; }
  .btn-header { display: none; }
  .hero { padding: 36px 0 44px; }
  .hero-buttons .btn { width: 100%; }
  .trust, .about, .scenes, .price, .flow, .faq, .company, .reasons, .jisseki { padding: 56px 0; }
  .sec-title { font-size: 24px; margin-bottom: 28px; }
  .trust, .about, .scenes, .price, .flow, .faq, .company { padding: 56px 0; }
  .scene-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; padding: 16px 20px; }
  .faq-item summary { padding: 14px 40px 14px 44px; }

  /* 追従CTA(モバイルのみ) */
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
  }
  .sticky-cta .btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.4;
  }
  .sticky-cta .btn span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
  }
  body { padding-bottom: 84px; }
  .footer { padding-bottom: 30px; }
}
