@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');

:root {
  --cream: #FDF9F3;
  --cream-deep: #F7EFE4;
  --peach: #FBEEE3;
  --ink: #362F27;
  --ink-soft: #4A4238;
  --orange: #E79A63;
  --orange-deep: #D9834A;
  --orange-soft: #F4D9C2;
  --blue: #A7C5D6;
  --blue-soft: #DDEAF0;
  --line: rgba(64,56,47,0.10);
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--ink);
  background: var(--cream);
  border-top: 6px solid #202427;
  line-height: 2;
  font-weight: 400;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Klee One', 'Zen Kaku Gothic New', serif; font-weight: 600; }
.hand { font-family: 'Klee One', serif; font-weight: 600; }

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

.wrap { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* buttons */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 17px 44px;
  border-radius: 999px;
  font-size: 16.0px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(217,131,74,0.24);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.btn:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(217,131,74,0.30); }

.btn-line {
  display: inline-block;
  border-bottom: 1.5px solid var(--orange);
  color: var(--orange-deep);
  padding: 3px 2px;
  font-weight: 500;
  font-size: 16.0px;
  transition: color .2s, border-color .2s;
}
.btn-line:hover { color: var(--orange); border-color: var(--orange-deep); }

/* ---------- Header ---------- */
header {
  position: relative; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(54,47,39,0.08);
}
header .wrap {
  max-width: 1120px;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
nav ul { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; }
nav a { transition: color .2s; }
nav a:hover { color: #4d8b60; }
.nav-cta {
  background: none; color: var(--ink) !important;
  padding: 0; border-radius: 0; font-weight: 500;
  transition: color .2s;
}
.nav-cta:hover { background: none; color: #4d8b60 !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; border-radius: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  min-height: min(760px, 78vh);
  margin: 20px;
  padding: 56px 24px 64px;
  display: flex;
  align-items: center;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(25,30,25,0.58) 0%, rgba(25,30,25,0.42) 38%, rgba(25,30,25,0.12) 68%, rgba(25,30,25,0) 100%),
    url("images/hero-v3.png");
  background-size: cover;
  background-position: center;
}
.hero-inner { width: min(100%, 1100px); margin: 0 auto; padding: 0 70px; color: var(--white); }
.hero-hello { font-family: 'Klee One', serif; font-size: 17px; color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.hero h1 {
  max-width: 760px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 40px;
}
.hero-name { color: inherit; font-size: 1.15em; }
.hero-lead { font-size: 17px; line-height: 2; margin-bottom: 20px; font-weight: 500; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.96); line-height: 2; margin-bottom: 42px; }
.hero .btn { background: #4d9864; border-radius: 0; padding: 14px 48px; box-shadow: none; }
.hero .btn:hover { background: #3e7d51; box-shadow: none; }

/* ---------- Story (letter) ---------- */
.story {
  background: var(--cream-deep);
  padding: 96px 0;
}
.letter {
  max-width: 640px; margin: 0 auto; padding: 0 28px;
  text-align: center;
}
.letter h2 {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.7;
  margin-bottom: 34px;
  color: var(--ink);
}
.letter p { font-size: 16px; line-height: 2.15; margin-bottom: 20px; }
.letter strong { color: var(--orange-deep); font-weight: 600; }
.letter-close {
  margin-top: 32px; font-size: 16.0px; color: var(--ink-soft);
}

/* section lead mark */
.lead-mark {
  text-align: center;
  font-family: 'Klee One', serif;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 48px;
  position: relative;
}
.lead-mark::after {
  content: ""; display: block; width: 46px; height: 3px; border-radius: 3px;
  background: var(--orange-soft); margin: 14px auto 0;
}

/* ---------- Promise ---------- */
.promise { padding: 96px 0; }
.promise-list { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.promise-list li {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(64,56,47,0.05);
}
.promise-no {
  flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--peach); color: var(--orange-deep);
  font-family: 'Klee One', serif; font-size: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.promise-list h3 { font-size: 17.5px; margin-bottom: 8px; }
.promise-list p { font-size: 15.0px; color: var(--ink-soft); line-height: 1.95; }

/* ---------- Q&A ---------- */
.qa { background: var(--blue-soft); padding: 96px 0; }
.qa-item { max-width: 620px; margin: 0 auto 40px; }
.qa-item:last-child { margin-bottom: 0; }
.q {
  position: relative;
  background: var(--white);
  border-radius: 18px 18px 18px 4px;
  padding: 16px 22px 16px 52px;
  font-weight: 500; font-size: 16.5px;
  box-shadow: 0 6px 18px rgba(64,56,47,0.06);
  margin-bottom: 16px;
}
.q::before {
  content: "Q"; position: absolute; left: 18px; top: 14px;
  font-family: 'Klee One', serif; font-weight: 600; font-size: 18px;
  color: var(--blue);
}
.a {
  position: relative;
  padding: 2px 20px 2px 52px;
  font-size: 15.5px; color: var(--ink); line-height: 2.05;
}
.a::before {
  content: "A"; position: absolute; left: 20px; top: 0;
  font-family: 'Klee One', serif; font-weight: 600; font-size: 18px;
  color: var(--orange);
}
.a strong { color: var(--orange-deep); font-weight: 600; }

/* ---------- Price ---------- */
.price { padding: 96px 0; }
.price-head {
  text-align: center; font-size: 18px; color: var(--ink);
  margin: 8px 0 30px;
}
.price-head:not(:first-of-type) { margin-top: 60px; }
.price-head .hand { font-size: 24px; color: var(--orange-deep); margin-right: 6px; }

.plan-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 620px; margin: 0 auto;
}
.plan {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  border: 1.5px solid var(--line);
}
.plan-pick { border-color: var(--orange); background: #FFFBF7; position: relative; }
.plan-pick::before {
  content: "おすすめ"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11.5px; font-weight: 500;
  padding: 4px 16px; border-radius: 999px;
}
.plan-name { font-family: 'Klee One', serif; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.plan-pages { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; }
.plan-price { font-family: 'Klee One', serif; font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.plan-price span { font-size: 15.0px; font-weight: 400; color: var(--ink-soft); font-family: 'Zen Kaku Gothic New', sans-serif; }
.plan-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.9; }

.plan-note {
  text-align: center; font-size: 14.5px; color: var(--ink-soft);
  line-height: 2; margin-top: 26px;
}

.price-terms {
  max-width: 620px; margin: 56px auto 0;
  background: var(--cream-deep); border-radius: 18px; padding: 28px 30px;
}
.price-terms p {
  position: relative; font-size: 14.0px; color: var(--ink-soft);
  line-height: 1.95; padding-left: 20px; margin-bottom: 12px;
}
.price-terms p:last-child { margin-bottom: 0; }
.price-terms p::before {
  content: ""; position: absolute; left: 2px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange-soft);
}

/* ---------- Bridge ---------- */
.bridge { text-align: center; padding: 40px 0 96px; }
.bridge p { font-size: 16.5px; line-height: 2; margin-bottom: 22px; }

/* ---------- Contact ---------- */
.contact { text-align: center; padding: 70px 0 110px; }
.contact-photo {
  width: 150px; height: 150px; margin: 0 auto 36px;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 18px 40px rgba(64,56,47,0.12);
  border: 4px solid var(--white);
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.contact h2 { font-size: clamp(21px, 3.6vw, 27px); line-height: 1.7; margin-bottom: 22px; }
.contact-lead { font-size: 15.5px; color: var(--ink-soft); line-height: 2; margin-bottom: 40px; }

/* ---------- Footer ---------- */
footer { padding: 56px 0 44px; text-align: center; border-top: 1px solid var(--line); background: var(--cream-deep); }
footer .logo { display: inline-block; margin-bottom: 14px; }
.footer-links { font-size: 14.0px; margin-bottom: 12px; }
.footer-links a { color: var(--ink-soft); transition: color .2s; }
.footer-links a:hover { color: var(--orange-deep); }
.footer-copy { font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ---------- Profile page ---------- */
.profile { padding: 140px 0 60px; }
.profile-body { max-width: 640px; margin: 0 auto; }
.profile-title {
  text-align: center; font-family: 'Klee One', serif; font-size: 28px;
  margin-bottom: 12px;
}
.profile-title-sub { text-align: center; font-size: 14.0px; color: var(--orange-deep); letter-spacing: 0.1em; margin-bottom: 48px; }
.profile-greeting {
  font-family: 'Klee One', serif; font-size: 19px; font-weight: 600;
  line-height: 1.9; text-align: center; margin-bottom: 44px;
}
.profile-name { color: var(--orange-deep); }
.profile-body > p:not(.profile-greeting):not(.profile-title-sub) {
  font-size: 16.5px; line-height: 2.2; margin-bottom: 28px;
}
.profile-hobby {
  background: var(--peach);
  border-radius: 16px;
  padding: 30px 32px 26px;
  margin: 48px 0 8px;
}
.profile-hobby-title {
  font-family: 'Klee One', serif;
  font-size: 16.5px;
  color: var(--orange-deep);
  margin-bottom: 12px;
}
.profile-hobby p:not(.profile-hobby-title):not(.profile-hobby-links) {
  font-size: 15.0px; color: var(--ink-soft); line-height: 2.05; margin-bottom: 0;
}
.profile-hobby-links {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
}
.profile-hobby-links a {
  font-size: 14.5px; color: var(--orange-deep);
  text-decoration: underline; text-underline-offset: 4px;
}
.profile-hobby-links a:hover { color: var(--orange); }

.profile-info {
  margin: 52px 0 44px; padding: 8px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.profile-info > div { display: flex; gap: 22px; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.profile-info > div:last-child { border-bottom: none; }
.profile-info dt { flex: 0 0 92px; font-family: 'Klee One', serif; font-size: 15.0px; color: var(--orange-deep); }
.profile-info dd { flex: 1; font-size: 15.0px; color: var(--ink-soft); line-height: 1.9; }
.profile-cta { text-align: center; margin-top: 8px; }

/* ---------- Policy page ---------- */
.policy { padding: 140px 0 40px; }
.policy-head { text-align: center; margin-bottom: 56px; }
.policy-head h2 { font-family: 'Klee One', serif; font-size: 28px; }
.policy-body { max-width: 680px; margin: 0 auto; }
.policy-body h3 {
  font-size: 17px; margin: 48px 0 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.policy-body p { font-size: 15.0px; color: var(--ink-soft); margin-bottom: 16px; }
.policy-body ul { margin: 0 0 16px; padding-left: 2px; }
.policy-body li { font-size: 15.0px; color: var(--ink-soft); padding-left: 18px; position: relative; margin-bottom: 6px; }
.policy-body li::before { content: ""; position: absolute; left: 0; top: 0.95em; width: 6px; height: 1px; background: var(--orange); }
.policy-body a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.policy-date { margin-top: 52px; font-size: 14.0px; text-align: right; color: var(--ink-soft); }

/* ---------- Works（制作例） ---------- */
.wrap-wide { max-width: 940px; margin: 0 auto; padding: 0 28px; }
.works { padding: 96px 0; background: var(--white); }
.works-note {
  text-align: center; font-size: 15.0px; color: var(--ink-soft);
  line-height: 2.05; margin-bottom: 46px;
}
.work-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.work {
  display: block; background: var(--cream);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.work:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(64,56,47,0.10); }
.work-img { aspect-ratio: 16 / 10; background: var(--cream-deep); overflow: hidden; }
.work-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.work-body { padding: 22px 24px 26px; }
.work-cat { font-size: 13.0px; color: var(--orange-deep); letter-spacing: .05em; margin-bottom: 6px; }
.work-body h3 { font-size: 19px; margin-bottom: 10px; }
.work-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.95; margin-bottom: 14px; }
.work-link { font-size: 14.5px; color: var(--orange-deep); font-weight: 500; }
.works-caption { margin-top: 26px; text-align: center; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Target（こんな方へ） ---------- */
.target { padding: 96px 0; background: var(--peach); }
.target-list { max-width: 600px; margin: 0 auto 30px; display: flex; flex-direction: column; gap: 13px; }
.target-list li {
  background: var(--white); border-radius: 12px;
  padding: 16px 22px 16px 48px; position: relative;
  font-size: 15.5px; line-height: 1.9;
}
.target-list li::before {
  content: "✓"; position: absolute; left: 22px; top: 15px;
  color: var(--orange-deep); font-weight: 700;
}
.target-close { text-align: center; font-size: 16.5px; line-height: 2.05; }

/* ---------- Flow（制作の流れ） ---------- */
.flow { padding: 96px 0; }
.flow-list { max-width: 600px; margin: 0 auto 28px; }
.flow-list li { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.flow-list li:last-child { padding-bottom: 0; }
.flow-list li:not(:last-child)::after {
  content: ""; position: absolute; left: 17px; top: 42px; bottom: 4px;
  width: 1px; background: var(--orange-soft);
}
.flow-no {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Klee One', serif; font-weight: 600; font-size: 16.0px;
  position: relative; z-index: 1;
}
.flow-list h3 { font-size: 16.5px; margin-bottom: 6px; }
.flow-list p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.95; }
.flow-note { text-align: center; font-size: 15.0px; color: var(--ink-soft); }

/* ---------- Compare（比較表） ---------- */
.compare-lead { font-size: 15.0px; color: var(--ink-soft); margin-bottom: 20px; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%; min-width: 700px; border-collapse: collapse;
  background: var(--white); font-size: 14.5px;
}
.compare th, .compare td {
  padding: 13px 12px; border-bottom: 1px solid var(--line);
  text-align: center; line-height: 1.7; vertical-align: middle;
}
.compare thead th {
  background: var(--cream-deep); font-family: 'Klee One', serif;
  font-size: 15.0px; font-weight: 600; padding: 14px 12px;
}
.compare thead th span { display: block; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 11px; font-weight: 400; color: var(--ink-soft); margin-top: 3px; }
.compare thead th.mine { background: var(--orange); color: var(--white); }
.compare thead th.mine span { color: rgba(255,255,255,0.85); }
.compare tbody th {
  text-align: left; font-weight: 500; font-size: 14.0px;
  background: #FCFAF7; white-space: nowrap; font-family: 'Zen Kaku Gothic New', sans-serif;
}
.compare td.mine { background: #FFFBF7; }
.compare td span { display: block; font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.compare .mk { display: block; font-size: 17px; font-weight: 700; line-height: 1.3; }
.compare .mk.ok { color: var(--orange-deep); }
.compare .mk.no { color: #BFB5A8; }
.compare-note { margin-top: 14px; font-size: 13.0px; color: var(--ink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .work-list { grid-template-columns: 1fr; gap: 26px; }
  .works, .target, .flow { padding: 72px 0; }
  nav ul {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 8px 28px 24px;
    border-bottom: 1px solid var(--line);
  }
  nav ul.open { display: flex; }
  nav ul a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  nav ul .nav-cta { margin-top: 0; text-align: left; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: flex; }
  .plan-row { grid-template-columns: 1fr; gap: 26px; }
  .plan-pick { margin-top: 8px; }
}

@media (max-width: 520px) {
  .hero { min-height: 620px; margin: 12px; padding: 60px 20px; background-position: 62% center; }
  .hero-inner { padding: 0 8px; }
  .hero h1 { font-size: 30px; }
  .hero-lead { font-size: 16px; }
  .hero-sub { font-size: 15px; }
  .promise-list li { padding: 24px 22px; gap: 16px; }
  section.promise, .qa, .price { padding: 72px 0; }
}
