:root {
  --navy: #22375a;
  --navy-deep: #16253d;
  --ink: #1c2637;
  --honey: #d9982b;
  --honey-soft: #f3e2bd;
  --paper: #fbf9f5;
  --paper-warm: #f4efe6;
  --white: #ffffff;
  --gray: #6b7484;
  --line: #e2ddd3;
  --f-en: 'Outfit', sans-serif;
  --f-head: 'Zen Kaku Gothic New', sans-serif;
  --f-body: 'Noto Sans JP', sans-serif;
  --wrap: 1120px;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 48px, 820px); margin-inline: auto; }
.sp-only { display: none; }

/* ---------------- header ---------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 28px;
  background: rgba(251, 249, 245, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(34, 55, 90, .06);
}

.brand { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.brand-mark { width: 24px; height: 24px; color: var(--honey); flex-shrink: 0; }
.brand-text {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--navy);
  line-height: 1;
}
.brand-web { color: var(--honey); margin-left: 1px; }

.nav { display: flex; gap: 26px; margin-left: auto; font-size: 13.5px; font-weight: 500; }
.nav a { color: var(--gray); transition: color .2s; position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1.5px; background: var(--honey);
  transform: scaleX(0); transform-origin: right; transition: transform .3s;
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.btn-header {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 100px;
  transition: background .2s, transform .2s;
}
.btn-header:hover { background: var(--navy-deep); transform: translateY(-1px); }

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  padding: 17px 40px;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn-primary {
  background: var(--honey);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(217, 152, 43, .3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217, 152, 43, .38); }
.btn-ghost { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-outline {
  border: 1.5px solid var(--line);
  color: var(--navy);
  width: 100%;
  font-size: 15px;
  padding: 14px 20px;
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.plan-featured .btn-primary { width: 100%; font-size: 15px; padding: 14px 20px; }

/* ---------------- hero ---------------- */

.hero {
  padding: 150px 0 96px;
  background:
    radial-gradient(900px 480px at 88% 8%, rgba(217, 152, 43, .13), transparent 62%),
    radial-gradient(760px 520px at 4% 82%, rgba(34, 55, 90, .07), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero-inner {
  width: min(100% - 48px, var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--honey);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 26px; height: 1.5px;
  background: var(--honey); vertical-align: middle; margin-right: 10px;
}

.hero-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(30px, 4.1vw, 50px);
  line-height: 1.42;
  letter-spacing: .005em;
  color: var(--navy);
  margin-bottom: 26px;
}
.hero-title .mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero-title .mark::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px; bottom: 6px;
  height: 32%;
  background: var(--honey-soft);
  z-index: -1;
  border-radius: 2px;
}

.hero-lead { font-size: 15.5px; color: var(--gray); line-height: 2.05; margin-bottom: 32px; }
.hero-lead strong { color: var(--ink); font-weight: 700; }

.hero-price {
  display: inline-flex;
  align-items: flex-end;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 28px;
  margin-bottom: 22px;
  box-shadow: 0 8px 26px rgba(34, 55, 90, .05);
}
.hp-item { display: flex; flex-direction: column; gap: 2px; }
.hp-label { font-size: 11.5px; font-weight: 700; color: var(--gray); letter-spacing: .06em; }
.hp-value { font-family: var(--f-head); font-weight: 700; font-size: 15px; color: var(--navy); line-height: 1.1; }
.hp-value em {
  font-family: var(--f-en);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -.01em;
}
.hp-main .hp-value { color: var(--honey); }
.hp-main .hp-value em { font-size: 38px; }
.hp-plus { font-size: 16px; color: var(--gray); padding-bottom: 6px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero-badges li {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(34, 55, 90, .07);
  padding: 7px 15px;
  border-radius: 100px;
}
.hero-badges li::before { content: '✓'; color: var(--honey); margin-right: 6px; font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.hero-note { font-size: 12px; color: var(--gray); }

/* hero visual */
.hero-visual { position: relative; }
.mock {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(34, 55, 90, .16);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-9deg) rotateX(3deg);
}
.mock-bar {
  height: 34px;
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
}
.mock-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: #cfc8bb; }
.mock-url {
  margin-left: 10px;
  flex: 1;
  height: 17px;
  border-radius: 100px;
  background: var(--white);
  font-family: var(--f-en);
  font-size: 9px;
  color: #a8a294;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.mock-body { padding: 22px; }
.mock-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #33507d 100%);
  border-radius: 9px;
  padding: 26px 22px;
  margin-bottom: 16px;
}
.mock-h1 { height: 13px; width: 72%; background: rgba(255,255,255,.9); border-radius: 4px; margin-bottom: 9px; }
.mock-h2 { height: 8px; width: 48%; background: rgba(255,255,255,.45); border-radius: 4px; margin-bottom: 18px; }
.mock-btn { height: 22px; width: 92px; background: var(--honey); border-radius: 100px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.mock-card { height: 54px; background: var(--paper-warm); border-radius: 7px; }
.mock-card:nth-child(2) { background: var(--honey-soft); }
.mock-lines { display: flex; flex-direction: column; gap: 7px; }
.mock-lines span { height: 7px; background: var(--paper-warm); border-radius: 4px; }
.mock-lines span:nth-child(1) { width: 100%; }
.mock-lines span:nth-child(2) { width: 88%; }
.mock-lines span:nth-child(3) { width: 60%; }

.mock-phone {
  position: absolute;
  right: -14px;
  bottom: -38px;
  width: 118px;
  background: var(--white);
  border: 5px solid var(--navy-deep);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(34, 55, 90, .22);
  overflow: hidden;
}
.mp-screen { padding: 10px; }
.mp-hero { height: 58px; border-radius: 6px; background: linear-gradient(135deg, var(--honey) 0%, #e8b95c 100%); margin-bottom: 9px; }
.mp-line { height: 6px; background: var(--paper-warm); border-radius: 3px; margin-bottom: 6px; }
.mp-line.short { width: 62%; }
.mp-btn { height: 17px; width: 66px; background: var(--navy); border-radius: 100px; margin-top: 10px; }

/* ---------------- sections ---------------- */

.section { padding: 104px 0; }

.sec-eyebrow {
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--honey);
  text-align: center;
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
}
.sec-title.small-title { font-size: clamp(21px, 2.3vw, 28px); text-align: left; }
.sec-lead { text-align: center; color: var(--gray); font-size: 15px; margin-bottom: 56px; }
.sec-lead .small { font-size: 12.5px; }
.sec-eyebrow.light { color: var(--honey); }
.sec-title.light { color: var(--white); }
.sec-lead.light { color: rgba(255, 255, 255, .72); }

/* ---------------- problems ---------------- */

.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.prob {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.prob:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(34, 55, 90, .07); }
.prob-num {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 13px;
  color: var(--honey);
  letter-spacing: .06em;
}
.prob h3 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18.5px;
  color: var(--navy);
  margin: 8px 0 12px;
  line-height: 1.6;
}
.prob p { font-size: 14.5px; color: var(--gray); line-height: 1.95; }
.prob p strong { color: var(--ink); font-weight: 700; }

.prob-bridge {
  margin-top: 52px;
  text-align: center;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 2;
  color: var(--navy);
}
.prob-bridge strong {
  font-weight: 900;
  border-bottom: 3px solid var(--honey-soft);
  padding-bottom: 2px;
}

/* ---------------- why ---------------- */

.why {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 82% 12%, rgba(217, 152, 43, .14), transparent 62%);
  pointer-events: none;
}
.why .wrap { position: relative; }

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.cmp { border-radius: 18px; padding: 34px 32px; }
.cmp-old { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); }
.cmp-new { background: var(--white); color: var(--ink); box-shadow: 0 20px 50px rgba(0, 0, 0, .22); }

.cmp-tag {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  margin-bottom: 10px;
  opacity: .8;
}
.cmp-new .cmp-tag {
  color: var(--honey);
  opacity: 1;
  font-family: var(--f-en);
  font-size: 15px;
}
.cmp-price {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.cmp-new .cmp-price { border-bottom-color: var(--line); color: var(--navy); }
.cmp-price em {
  font-family: var(--f-en);
  font-style: normal;
  font-size: 34px;
  font-weight: 700;
  margin-right: 2px;
}
.cmp ul { display: flex; flex-direction: column; gap: 13px; }
.cmp li { font-size: 14.5px; display: flex; gap: 11px; align-items: flex-start; line-height: 1.7; }
.cmp-old li { opacity: .72; }
.x, .o {
  flex-shrink: 0;
  width: 21px; height: 21px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  margin-top: 3px;
}
.x { background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .7); }
.o { background: var(--honey); color: var(--white); }

.cmp-vs {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .06em;
}

.why-note {
  text-align: center;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .78);
  line-height: 2;
}
.why-note strong { color: var(--honey); font-weight: 700; }

.why-lock {
  max-width: 720px;
  margin: 34px auto 0;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
}
.why-lock-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--honey);
  margin-bottom: 14px;
  text-align: center;
}
.why-lock p:not(.why-lock-title) {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .78);
  line-height: 2;
}
.why-lock p + p { margin-top: 12px; }
.why-lock strong { color: var(--white); font-weight: 700; }

/* ---------------- reason ---------------- */

.reason { background: var(--paper-warm); }
.rsn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.rsn {
  background: var(--white);
  border-radius: 18px;
  padding: 38px 32px;
  transition: transform .25s, box-shadow .25s;
}
.rsn:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(34, 55, 90, .09); }
.rsn-icon {
  width: 58px; height: 58px;
  border-radius: 15px;
  background: var(--honey-soft);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.rsn-icon svg { width: 30px; height: 30px; }
.rsn h3 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 19px;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 16px;
}
.rsn p { font-size: 14.5px; color: var(--gray); line-height: 2; }
.rsn p + p { margin-top: 13px; }
.rsn p strong { color: var(--ink); font-weight: 700; }

/* ---------------- price ---------------- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 30px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.plan .btn { margin-top: auto; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(34, 55, 90, .09); }
.plan-featured {
  border: 2px solid var(--honey);
  padding-top: 46px;
  box-shadow: 0 18px 46px rgba(217, 152, 43, .16);
}
.plan-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--honey);
  color: var(--white);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 24px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.plan-for { font-size: 13px; color: var(--gray); margin-bottom: 22px; min-height: 42px; line-height: 1.7; }
.plan-price {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.plan-price em {
  font-family: var(--f-en);
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -.02em;
}
.plan-price span { font-size: 15px; margin-left: 4px; }
.plan-featured .plan-price { color: var(--honey); }
.plan-init {
  font-size: 13px;
  color: var(--gray);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.plan-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.plan-list li {
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
}
.plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--honey);
  font-weight: 700;
}
.plan-list li strong { font-weight: 700; }

.plan-foot {
  margin-top: 34px;
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  line-height: 2;
}
.plan-foot strong { color: var(--navy); font-weight: 700; }

.options { margin-top: 68px; }
.opt-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 26px;
}
.opt-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); background: var(--white); }
.opt-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.opt-table th, .opt-table td { padding: 17px 26px; text-align: left; font-size: 14.5px; }
.opt-table th { font-weight: 500; color: var(--ink); }
.opt-table td {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}
.opt-table tr + tr { border-top: 1px solid var(--line); }
.opt-note { text-align: center; font-size: 13.5px; color: var(--gray); margin-top: 18px; }

/* ---------------- samples（トップの制作サンプル導線） ---------------- */

.samples { background: var(--paper-warm); }
.samples-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 52px auto 0;
}
.sample-thumb {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.sample-thumb:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(34, 55, 90, .12); border-color: var(--honey); }
.st-shot { position: relative; overflow: hidden; aspect-ratio: 1200 / 760; background: var(--paper-warm); }
.st-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .45s ease; }
.sample-thumb:hover .st-shot img { transform: scale(1.045); }
.st-shot::after {
  content: 'サイトを見る ↗';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 37, 61, .40);
  color: #fff;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transition: opacity .25s;
}
.sample-thumb:hover .st-shot::after { opacity: 1; }
.st-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px; }
.st-cat { font-family: var(--f-head); font-size: 12.5px; font-weight: 700; color: var(--navy); }
.st-price { font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--navy); white-space: nowrap; }
.st-price em { font-family: var(--f-en); font-style: normal; font-weight: 700; font-size: 26px; color: var(--honey); letter-spacing: -.01em; margin: 0 2px; }
.samples-cta { text-align: center; margin-top: 38px; }
.samples-note { text-align: center; font-size: 12.5px; color: var(--gray); margin-top: 16px; }

@media (max-width: 720px) {
  .samples-row { grid-template-columns: 1fr; max-width: 400px; }
}

/* ---------------- flow ---------------- */

.flow { background: var(--navy); color: var(--white); }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; margin-top: 48px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.step-no {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: var(--honey);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 17px;
  display: grid; place-items: center;
}
.step-body { padding-bottom: 22px; }
.step-body h3 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17.5px;
  margin-bottom: 8px;
}
.step-body p { font-size: 14.5px; color: rgba(255, 255, 255, .74); line-height: 1.95; }
.step-body p strong { color: var(--honey); font-weight: 700; }

/* ---------------- works ---------------- */

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.work {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.work:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(34, 55, 90, .09); border-color: var(--honey); }
.work-system { cursor: default; }
.work-system:hover { transform: none; box-shadow: none; border-color: var(--line); }
.work-cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  background: var(--honey-soft);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.work h3 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.work-desc { font-size: 14.5px; color: var(--gray); line-height: 1.95; margin-bottom: 16px; }
.work-url {
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--honey);
}
.work:not(.work-system) .work-url::after { content: ' ↗'; }

/* 業種別ページへの導線 */
.forlink { margin-top: 40px; text-align: center; }
.forlink-label {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.forlink-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 13px 24px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.forlink-item:hover {
  border-color: var(--honey);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(34, 55, 90, .07);
}
.forlink-arrow { color: var(--honey); font-size: 18px; line-height: 1; }

/* ---------------- company ---------------- */

.company { background: var(--paper-warm); }
.company-inner { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.company-mark {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  place-items: center;
}
.company-logo { width: 100%; max-width: 74px; color: var(--honey); }
.company-logo-text {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  margin-top: 16px;
  letter-spacing: .02em;
  line-height: 1;
}
.company-logo-text span { color: var(--honey); }
.company-body .sec-eyebrow { text-align: left; }
.company-body p { font-size: 14.5px; color: var(--gray); line-height: 2.05; margin-bottom: 16px; }
.company-body p strong { color: var(--ink); font-weight: 700; }

.company-dl { margin-top: 26px; border-top: 1px solid var(--line); }
.company-dl > div { display: flex; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.company-dl dt {
  flex-shrink: 0;
  width: 84px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.company-dl dd { font-size: 13.5px; color: var(--gray); }

/* ---------------- faq ---------------- */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-list details[open] { border-color: var(--honey); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 58px 22px 26px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  position: relative;
  line-height: 1.7;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after {
  content: '';
  position: absolute;
  right: 26px;
  top: 50%;
  width: 14px; height: 2px;
  background: var(--honey);
  border-radius: 2px;
  transition: transform .25s;
}
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-a { padding: 0 26px 24px; }
.faq-a p { font-size: 14.5px; color: var(--gray); line-height: 2; }
.faq-a p + p { margin-top: 11px; }

/* ---------------- cta ---------------- */

.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 340px at 50% 0%, rgba(217, 152, 43, .18), transparent 65%);
}
.cta .wrap-narrow { position: relative; }
.cta-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(24px, 3.3vw, 38px);
  margin-bottom: 20px;
  line-height: 1.5;
}
.cta-lead { font-size: 15px; color: rgba(255, 255, 255, .78); line-height: 2.05; margin-bottom: 44px; }

/* --- 問い合わせフォーム --- */

.cform {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  margin-bottom: 44px;
}
.cform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 22px; }
.cf-full { grid-column: 1 / -1; }

.cf-field label {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 8px;
}
.cf-field .req {
  display: inline-block;
  background: var(--honey);
  color: var(--white);
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: 1px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.cf-field textarea { line-height: 1.8; resize: vertical; }
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2322375a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--honey);
  background: var(--white);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #b3aea3; }
.cf-field.is-error input,
.cf-field.is-error select { border-color: #c9503a; }

.cf-help { font-size: 11.5px; color: var(--gray); margin-top: 6px; line-height: 1.6; }
.cf-error { font-size: 12px; color: #c9503a; margin-top: 6px; font-weight: 500; }

/* ハニーポット（人には見せない） */
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-submit { width: 100%; margin-top: 28px; }
.cf-submit:disabled { opacity: .6; cursor: default; transform: none; }
.cf-privacy { font-size: 12px; color: var(--gray); text-align: center; margin-top: 14px; line-height: 1.8; }
.cf-privacy a { color: var(--honey); text-decoration: underline; }

.cf-formerror {
  font-size: 13.5px;
  color: #c9503a;
  text-align: center;
  margin-top: 16px;
  line-height: 1.8;
}
.cf-formerror a { color: #c9503a; text-decoration: underline; }

.cf-thanks { text-align: center; padding: 26px 0; }
.cf-thanks-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 27px;
  margin: 0 auto 20px;
}
.cf-thanks h3 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 12px;
}
.cf-thanks p { font-size: 14.5px; color: var(--gray); line-height: 2; }

.cta-or {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
  position: relative;
}

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.contact-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background .25s, transform .25s, border-color .25s;
}
.contact-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--honey);
  transform: translateY(-3px);
}
.cc-icon { color: var(--honey); }
.cc-icon svg { width: 30px; height: 30px; }
.cc-label { font-family: var(--f-head); font-weight: 700; font-size: 15px; }
.cc-value { font-family: var(--f-en); font-size: 15px; color: rgba(255, 255, 255, .8); word-break: break-all; }

.cta-note { font-size: 13px; color: rgba(255, 255, 255, .58); line-height: 2; }

/* ---------------- footer ---------------- */

.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .7); padding: 56px 0 26px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-mark { width: 34px; height: 34px; margin-bottom: 12px; color: var(--honey); }
.footer-name {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
}
.footer-name span { color: var(--honey); margin-left: 3px; }
.footer-by { font-size: 12.5px; margin-top: 7px; }
.footer-info { font-size: 13px; line-height: 2; text-align: right; }
.footer-links { display: flex; gap: 18px; justify-content: flex-end; margin-top: 8px; }
.footer-links a { color: var(--honey); font-size: 12.5px; }
.footer-links a:hover { text-decoration: underline; }
.copyright {
  text-align: center;
  font-family: var(--f-en);
  font-size: 11.5px;
  color: rgba(255, 255, 255, .35);
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

/* ---------------- float cta (mobile) ---------------- */

.float-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  background: var(--honey);
  color: var(--navy-deep);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 16px;
  border-radius: 100px;
  box-shadow: 0 8px 26px rgba(34, 55, 90, .28);
}

/* ---------------- reveal ---------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------------- responsive ---------------- */

@media (max-width: 1000px) {
  .nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 62px; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .mock { transform: none; }
  .rsn-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan-for { min-height: 0; }
  .compare { grid-template-columns: 1fr; }
  .cmp-vs { text-align: center; }
  .company-inner { grid-template-columns: 1fr; gap: 32px; }
  .company-mark { max-width: 180px; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .sp-only { display: inline; }
  .wrap, .wrap-narrow { width: min(100% - 36px, var(--wrap)); }
  .site-header { height: 60px; padding-inline: 18px; }
  .btn-header { display: none; }
  .hero { padding: 108px 0 72px; }
  .hero-inner { width: min(100% - 36px, var(--wrap)); }
  .section { padding: 74px 0; }
  .hero-price { width: 100%; justify-content: center; padding: 16px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .prob-grid { grid-template-columns: 1fr; }
  .prob, .rsn, .work { padding: 28px 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cform { padding: 26px 20px; border-radius: 16px; }
  .cform-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-inner { flex-direction: column; }
  .footer-info { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .float-cta { display: block; }
  .cta { padding-bottom: 108px; }
  .site-footer { padding-bottom: 92px; }
  .faq-list summary { padding: 19px 50px 19px 20px; font-size: 15px; }
  .faq-a { padding: 0 20px 20px; }
  .opt-table th, .opt-table td { padding: 14px 18px; }
}
