/* ============ CORE ENGINE site ============ */
:root {
  --ink: #1c1c1c;
  --ink-soft: #444;
  --paper: #fafaf8;
  --paper-warm: #f3f1ec;
  --accent: #2e6e7e;      /* ロゴの炎のティール */
  --accent-dark: #1f4d59;
  --gold: #b0955c;
  --line: #e2e0da;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: auto; }
.brand span {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem; letter-spacing: .12em; font-weight: 600;
}
.gnav { display: flex; gap: 26px; align-items: center; font-size: .92rem; }
.gnav a { position: relative; padding: 4px 0; }
.gnav a:hover { color: var(--accent); }
.gnav .cta {
  background: var(--accent); color: #fff;
  padding: 9px 20px; border-radius: 999px; font-weight: 600;
}
.gnav .cta:hover { background: var(--accent-dark); color: #fff; }
#nav-toggle { display: none; }
.nav-burger { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; height: 92vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
}
.hero video, .hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(10,14,16,.45), rgba(10,14,16,.62));
}
.hero-inner { position: relative; z-index: 2; padding: 0 24px; }
.hero h1 {
  font-size: clamp(1.7rem, 4.6vw, 3rem);
  letter-spacing: .14em; font-weight: 600;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
}
.hero .lead {
  margin-top: 22px;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  letter-spacing: .06em;
  text-shadow: 0 1px 14px rgba(0,0,0,.65);
}
.hero-ctas { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 34px; border-radius: 999px;
  font-weight: 600; letter-spacing: .06em; transition: .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.85); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-dark-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-dark-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- sections ---------- */
section { padding: 88px 0; }
.sec-label {
  font-size: .8rem; letter-spacing: .3em; color: var(--accent);
  text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
}
.sec-title { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 18px; }
.sec-intro { color: var(--ink-soft); max-width: 720px; margin-bottom: 44px; }
.alt { background: var(--paper-warm); }

/* reasons */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reason {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 28px; box-shadow: var(--shadow);
}
.reason .num {
  font-family: "Noto Serif JP", serif; font-size: 2rem; color: var(--gold);
  line-height: 1; margin-bottom: 14px;
}
.reason h3 { font-size: 1.12rem; margin-bottom: 12px; }
.reason p { font-size: .92rem; color: var(--ink-soft); }

/* works */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.work-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .2s;
}
.work-card:hover { transform: translateY(-4px); }
.work-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-thumb .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.work-thumb .play::after {
  content: ""; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(20,20,20,.65) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>') center/26px no-repeat;
  border: 1.5px solid rgba(255,255,255,.85);
  transition: .2s;
}
.work-card:hover .play::after { background-color: var(--accent); }
.work-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.work-body { padding: 20px 22px 24px; }
.work-cat { font-size: .74rem; letter-spacing: .12em; color: var(--accent); font-weight: 700; }
.work-body h3 { font-size: 1.02rem; margin: 8px 0 6px; }
.work-body .client { font-size: .84rem; color: var(--ink-soft); }
.work-body .desc { font-size: .88rem; color: var(--ink-soft); margin-top: 10px; }
.badge-soon {
  display: inline-block; font-size: .72rem; color: #fff; background: var(--gold);
  border-radius: 4px; padding: 2px 8px; margin-top: 10px; letter-spacing: .08em;
}
.note-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 8px 16px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--accent); background: #fff;
  border: 1.5px solid var(--accent); border-radius: 999px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.note-link .arrow { transition: transform .2s; }
.note-link:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(46,110,126,.25);
}
.note-link:hover .arrow { transform: translateX(3px); }
.center { text-align: center; }
.mt40 { margin-top: 40px; }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 28px; box-shadow: var(--shadow); position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--accent); }
.price-card .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .76rem; font-weight: 700;
  padding: 4px 16px; border-radius: 999px; letter-spacing: .1em; white-space: nowrap;
}
.price-card h3 { font-size: 1.06rem; letter-spacing: .08em; }
.price-card .use { font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }
.price-card .price {
  font-family: "Noto Serif JP", serif; font-size: 1.9rem; color: var(--ink);
  margin: 16px 0 4px;
}
.price-card .price small { font-size: .95rem; color: var(--ink-soft); }
.price-card ul { list-style: none; margin-top: 16px; font-size: .88rem; color: var(--ink-soft); flex: 1; }
.price-card li { padding: 7px 0 7px 26px; border-bottom: 1px dashed var(--line); position: relative; }
.price-card li::before {
  content: "✓"; position: absolute; left: 2px; color: var(--accent); font-weight: 700;
}
.price-note { font-size: .84rem; color: var(--ink-soft); margin-top: 26px; }

/* jisseki price table */
.jirei-table { width: 100%; border-collapse: collapse; font-size: .92rem; background: #fff; box-shadow: var(--shadow); border-radius: 12px; overflow: hidden; }
.jirei-table th, .jirei-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.jirei-table th { background: var(--ink); color: #fff; font-weight: 600; font-size: .86rem; letter-spacing: .06em; }
.jirei-table .p { font-family: "Noto Serif JP", serif; font-size: 1.05rem; white-space: nowrap; }

/* subsidy */
.subsidy-box {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff; border-radius: 16px; padding: 44px 40px;
  display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between;
}
.subsidy-box h3 { font-size: 1.3rem; margin-bottom: 10px; }
.subsidy-box p { font-size: .92rem; opacity: .94; max-width: 640px; }
.subsidy-box .btn { background: #fff; color: var(--accent-dark); }

/* flow */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.flow-step {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow); position: relative;
}
.flow-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: "Noto Serif JP", serif; font-size: 1.5rem; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.flow-step h3 { font-size: 1rem; margin-bottom: 8px; }
.flow-step p { font-size: .84rem; color: var(--ink-soft); }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.member { text-align: center; }
.member img {
  width: 100%; aspect-ratio: 1/1.05; object-fit: cover; border-radius: 14px;
  box-shadow: var(--shadow);
}
.member h3 { margin-top: 18px; font-size: 1.08rem; letter-spacing: .1em; }
.member .role { font-size: .8rem; color: var(--accent); font-weight: 700; letter-spacing: .08em; }
.member p { font-size: .86rem; color: var(--ink-soft); margin-top: 10px; text-align: left; }

/* faq */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 600; list-style: none;
  display: flex; gap: 14px; align-items: baseline;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q."; color: var(--accent); font-family: "Noto Serif JP", serif; font-weight: 700; }
.faq-item .a { padding: 0 24px 22px 58px; color: var(--ink-soft); font-size: .92rem; }

/* contact */
.contact-box { max-width: 640px; margin: 0 auto; }
.contact-box form { display: grid; gap: 18px; }
.contact-box label { font-size: .88rem; font-weight: 600; display: block; margin-bottom: 6px; }
.contact-box input, .contact-box textarea, .contact-box select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fff;
}
.contact-box input:focus, .contact-box textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.contact-box button {
  border: 0; cursor: pointer; font: inherit;
}
.contact-alt { text-align: center; margin-top: 26px; font-size: .9rem; color: var(--ink-soft); }
.contact-alt a { color: var(--accent); font-weight: 600; }

/* footer */
.site-footer {
  background: var(--ink); color: #ccc; padding: 56px 24px 34px; margin-top: 40px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; }
.site-footer .brand span { color: #fff; }
.site-footer nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: .86rem; }
.site-footer a:hover { color: #fff; }
.footer-meta { font-size: .78rem; color: #888; margin-top: 30px; text-align: center; width: 100%; }
.sns { display: flex; gap: 14px; margin-top: 12px; }
.sns a { font-size: .84rem; border: 1px solid #555; padding: 6px 14px; border-radius: 999px; }

/* page hero (下層) */
.page-hero {
  position: relative; padding: 150px 24px 70px; color: #fff; text-align: center;
  background: var(--ink);
}
.page-hero .bg { position: absolute; inset: 0; overflow: hidden; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero h1 { position: relative; font-size: clamp(1.5rem, 3.4vw, 2.3rem); letter-spacing: .12em; text-shadow: 0 2px 18px rgba(0,0,0,.6); }
.page-hero p { position: relative; margin-top: 14px; font-size: .95rem; opacity: .95; text-shadow: 0 1px 12px rgba(0,0,0,.65); }

/* community LP */
.pain-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain {
  background: #fff; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0;
  padding: 24px 22px; font-size: .95rem; box-shadow: var(--shadow);
}

/* team v2 */
.member-featured {
  display: flex; gap: 40px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 36px; box-shadow: var(--shadow); margin-bottom: 28px;
}
.member-featured img {
  width: 300px; max-width: 38%; border-radius: 12px; object-fit: cover;
  aspect-ratio: 3/4;
}
.member-featured h3 { font-size: 1.3rem; letter-spacing: .1em; }
.member-featured .role { font-size: .8rem; color: var(--accent); font-weight: 700; letter-spacing: .08em; margin-top: 4px; }
.member-featured p.bio { font-size: .92rem; color: var(--ink-soft); margin-top: 14px; }
.member-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.member-mini {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px; box-shadow: var(--shadow);
}
.member-mini h3 { font-size: 1.06rem; letter-spacing: .1em; }
.member-mini .role { font-size: .76rem; color: var(--accent); font-weight: 700; letter-spacing: .08em; margin-top: 4px; }
.member-mini p { font-size: .88rem; color: var(--ink-soft); margin-top: 10px; }

/* video lightbox */
.vmodal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; }
.vmodal[hidden] { display: none; }
.vmodal-bg { position: absolute; inset: 0; background: rgba(8,10,12,.85); cursor: pointer; }
.vmodal-box { position: relative; width: min(960px, 92vw); }
.vmodal-frame { aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.vmodal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vmodal-close {
  position: absolute; top: -48px; right: -4px; background: none; border: 0;
  color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 6px;
}
.vmodal-cta {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 16px; color: #fff; font-size: .95rem; flex-wrap: wrap;
}
.vmodal-cta .btn { padding: 10px 26px; }

/* voice / testimonials */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.voice {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.voice .stars { color: #f0a325; letter-spacing: 3px; font-size: 1.02rem; }
.voice p.body { font-size: .9rem; color: var(--ink-soft); margin-top: 14px; flex: 1; }
.voice .meta { font-size: .78rem; color: #9a978f; margin-top: 16px; }
.voice-note { font-size: .8rem; color: var(--ink-soft); margin-top: 22px; text-align: center; }

/* contact banner */
.cta-banner {
  max-width: 860px; margin: 0 auto 44px; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-banner img { width: 100%; display: block; }

/* pricing v2 */
.price-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.price-think {
  background: #fff; border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0;
  padding: 28px 30px; box-shadow: var(--shadow); max-width: 860px; font-size: .95rem; color: var(--ink-soft);
}

/* responsive */
@media (max-width: 980px) {
  .gnav { gap: 16px; font-size: .84rem; }
  .gnav .cta { padding: 8px 16px; }
}
@media (max-width: 860px) {
  section { padding: 64px 0; }
  .grid3, .price-grid, .team-grid, .flow, .pain-list, .member-mini-grid, .price-grid2, .voice-grid { grid-template-columns: 1fr; }
  .member-featured { flex-direction: column; align-items: stretch; padding: 26px; }
  .member-featured img { max-width: 100%; width: 100%; aspect-ratio: 4/5; }
  .vmodal-close { top: -46px; right: 0; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
  .gnav {
    position: fixed; top: 60px; right: 0; left: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 24px; gap: 18px; font-size: .95rem;
    transform: translateY(-130%); transition: .25s; z-index: 99;
  }
  #nav-toggle:checked ~ .gnav { transform: translateY(0); }
  .nav-burger {
    display: block; cursor: pointer; font-size: 1.6rem; line-height: 1; padding: 6px;
  }
}
@media (max-width: 560px) {
  .works-grid { grid-template-columns: 1fr; }
  .hero { height: 86vh; }
}

/* ---------- works filter ---------- */
.works-filter { padding: 34px 0 0; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chips .chip {
  font-family: inherit; font-size: .84rem; font-weight: 700; letter-spacing: .03em;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft);
  transition: border-color .2s, background .2s, color .2s;
}
.filter-chips .chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chips .chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-lead { margin-top: 14px; font-size: .9rem; color: var(--ink-soft); min-height: 1.5em; }

/* ---------- local LP ---------- */
.page-hero .hero-ctas { position: relative; margin-top: 24px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.local-hero { padding-top: 170px; padding-bottom: 90px; }
.local-hero .bg img { opacity: .5; }
.local-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55)); }
.local-person { display: flex; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.local-person img { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); flex-shrink: 0; }
.local-person > div { flex: 1; min-width: 260px; }
.local-person p { margin-bottom: 12px; color: var(--ink-soft); }
.local-person .local-area { font-size: .84rem; color: var(--ink-soft); background: var(--paper-warm); border-radius: 8px; padding: 12px 16px; }
.local-approach { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.local-approach > div { flex: 1.2; min-width: 280px; }
.local-approach > img { flex: 1; min-width: 260px; max-width: 460px; width: 100%; border-radius: 12px; box-shadow: var(--shadow); }
.local-approach p { color: var(--ink-soft); margin-bottom: 14px; }
.local-sub { margin-top: 28px; margin-bottom: 8px; font-size: 1.05rem; }

.hero-badges { position: relative; margin-top: 18px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-badges span {
  font-size: .78rem; font-weight: 600; letter-spacing: .05em; color: #fff;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px; padding: 6px 14px;
}
.local-person .local-area { margin-top: 4px; }

.pain h3 {
  font-size: 1.08rem; font-weight: 700; letter-spacing: .04em; color: var(--ink);
  margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.pain p { font-size: .9rem; color: var(--ink-soft); line-height: 1.9; }
.pain-bridge {
  text-align: center; margin-top: 44px;
  font-family: "Noto Serif JP", serif; font-size: 1.18rem; font-weight: 600;
  line-height: 2.1; letter-spacing: .06em; color: var(--ink);
}

.local-hero .bg video { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.reason-img {
  display: block; width: calc(100% + 56px); max-width: none; margin: -34px -28px 18px;
  border-radius: 13px 13px 0 0; aspect-ratio: 16 / 9; object-fit: cover;
}

.form-done { text-align: center; padding: 48px 20px; }
.form-done h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--accent); }
.form-done p { color: var(--ink-soft); line-height: 2; }
.form-error { color: #c0392b; margin-top: 12px; font-size: .9rem; }

/* ---------- wedding (いろどりムービー) ---------- */
.wedding { --accent: #c56b52; --accent-dark: #a2503c; }
.wedding-brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none; }
.wedding-brand span { font-family: "Noto Serif JP", serif; font-weight: 700; font-size: 1.15rem; color: var(--ink); letter-spacing: .06em; }
.wedding-brand small { font-size: .68rem; color: var(--ink-soft); letter-spacing: .08em; }
.wedding .price-card { display: flex; flex-direction: column; }
.wedding .price-card ul { margin-top: auto; }

/* ---------- wedding v2 (いろどりムービー・華やか) ---------- */
.wedding { --accent: #c67586; --accent-dark: #a95a6d; --paper: #fdfcf9; --paper-warm: #faf3f2; --gold: #cbb37e; background: var(--paper); }
.wedding section.alt { background: var(--paper-warm); }
.w-script { font-family: "Great Vibes", cursive; font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.w-center { text-align: center; }
.w-center .sec-intro { margin-inline: auto; }
.w-center-label, .w-center-title { text-align: center; }
.w-divider { width: 64px; height: 1px; background: var(--gold); margin: 18px auto 44px; position: relative; }
.w-divider::after { content: "◆"; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) scale(.5); color: var(--gold); background: transparent; }
.w-header { background: rgba(253,252,249,.92); }
.w-logo-mini { height: 40px; width: auto; }
.wedding-brand { align-items: center; }
.w-hero { text-align: center; padding: 130px 24px 80px; background: linear-gradient(to bottom, #fdfcf9, #faf3f2); }
.w-hero-logo { width: 190px; margin: 0 auto 4px; }
.w-hero .w-script { font-size: 2.6rem; }
.w-hero h1 { font-family: "Noto Serif JP", serif; font-size: clamp(1.5rem, 3.2vw, 2.2rem); letter-spacing: .1em; margin: 14px 0 18px; color: var(--ink); }
.w-hero-lead { color: var(--ink-soft); font-size: .95rem; line-height: 2.1; }
.w-hero .hero-ctas { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.w-btn-ghost { border: 1.5px solid var(--accent); color: var(--accent); background: #fff; }
.w-btn-ghost:hover { background: var(--accent); color: #fff; }
.w-reason { padding: 10px 16px; }
.w-reason h3 { font-family: "Noto Serif JP", serif; font-size: 1.05rem; line-height: 1.8; margin-bottom: 14px; }
.w-reason p { font-size: .9rem; color: var(--ink-soft); line-height: 2; text-align: left; }
.w-sub { color: var(--ink-soft); margin-top: -6px; }
.w-lead-text { color: var(--ink-soft); line-height: 2.3; margin-bottom: 44px; font-size: .95rem; }
.w-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 860px; margin: 0 auto; }
.w-plan-card { display: block; background: #fff; border: 1px solid #f0dcd8; border-radius: 18px; padding: 36px 30px; text-decoration: none; color: var(--ink); box-shadow: 0 8px 26px rgba(190,130,140,.10); transition: transform .25s, box-shadow .25s; }
.w-plan-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(190,130,140,.18); }
.w-plan-tag { font-size: .78rem; letter-spacing: .12em; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.w-plan-card h3 { font-family: "Noto Serif JP", serif; font-size: 1.5rem; margin-bottom: 12px; }
.w-plan-price { font-family: "Noto Serif JP", serif; font-size: 2.1rem; color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.w-plan-price span { font-size: .85rem; color: var(--ink-soft); font-family: "Noto Sans JP", sans-serif; }
.w-plan-desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.9; margin-bottom: 16px; }
.w-plan-link { color: var(--accent); font-weight: 700; font-size: .88rem; }
.w-plan-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 900px; margin: 0 auto; align-items: start; text-align: left; }
.w-plan-detail .work-card { margin: 0; }
.w-price-box { background: #fff; border: 1px solid #f0dcd8; border-radius: 16px; padding: 30px 28px; box-shadow: 0 8px 26px rgba(190,130,140,.10); text-align: left; }
.w-price-box .w-plan-price { margin-bottom: 18px; }
.w-includes { list-style: none; padding: 0; margin: 0 0 18px; }
.w-includes li { position: relative; padding: 6px 0 6px 26px; font-size: .88rem; color: var(--ink-soft); line-height: 1.7; }
.w-includes li::before { content: "✓"; position: absolute; left: 2px; color: #8fb573; font-weight: 700; }
.w-includes-title { font-size: .82rem; font-weight: 700; letter-spacing: .1em; color: var(--accent); margin: 18px 0 8px; }
.w-opt-table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.w-opt-table td { padding: 9px 4px; font-size: .86rem; color: var(--ink-soft); border-bottom: 1px dashed #eddad6; line-height: 1.6; }
.w-opt-table td:last-child { text-align: right; white-space: nowrap; font-weight: 700; color: var(--ink); padding-left: 12px; }
.w-note { font-size: .82rem; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.9; }
.w-note a { color: var(--accent); font-weight: 600; }
.w-order-price { max-width: 780px; margin: 0 auto; }
.w-sample2 { max-width: 900px; margin: 0 auto 44px; grid-template-columns: 1fr 1fr; }
.wedding .flow { text-align: left; }
.wedding .faq-item { text-align: left; }
@media (max-width: 660px) {
  .w-plan-grid, .w-plan-detail, .w-sample2 { grid-template-columns: 1fr; }
  .w-hero { padding-top: 110px; }
  .w-hero-logo { width: 150px; }
}

.w-radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.w-radio { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border: 1.5px solid #eddad6; border-radius: 999px; background: #fff; font-size: .88rem; color: var(--ink-soft); cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.w-radio input { accent-color: var(--accent); margin: 0; }
.w-radio:has(input:checked) { border-color: var(--accent); background: #fdf3f4; color: var(--ink); font-weight: 600; }

.w-deadline {
  display: block; text-align: center; padding: 13px 20px;
  background: linear-gradient(90deg, #c67586, #cbb37e);
  color: #fff; font-size: .9rem; letter-spacing: .04em; text-decoration: none;
}
.w-deadline strong { font-size: 1.05rem; margin: 0 2px; }
.w-deadline:hover { opacity: .92; }
.w-support-card {
  background: #fff; border: 1px solid #f0dcd8; border-radius: 14px;
  padding: 26px 20px; box-shadow: 0 6px 18px rgba(190,130,140,.08);
}
.w-support-card h3 { font-family: "Noto Serif JP", serif; font-size: 1rem; line-height: 1.7; margin-bottom: 10px; color: var(--ink); }
.w-support-card p { font-size: .84rem; color: var(--ink-soft); line-height: 1.9; text-align: left; }

.w-plan-img {
  display: block; width: calc(100% + 60px); max-width: none;
  margin: -36px -30px 22px; border-radius: 17px 17px 0 0;
  aspect-ratio: 16 / 9; object-fit: cover;
}
