:root {
  --navy: #071f42;
  --navy-2: #0d3268;
  --blue: #005bac;
  --blue-2: #0073ce;
  --sky: #e8f3ff;
  --bg: #f4f7fb;
  --bg-2: #eef3f9;
  --white: #ffffff;
  --ink: #0f1d33;
  --text: #2c3a4f;
  --muted: #54647c;
  --line: #d7e0ec;
  --line-soft: rgba(15, 23, 42, 0.08);
  --green: #0e8a5f;
  --red: #d92d20;
  --shadow: 0 22px 54px rgba(7, 31, 66, 0.12);
  --shadow-soft: 0 10px 30px rgba(7, 31, 66, 0.06);
  --inner: min(1200px, calc(100% - 48px));
  --radius: 4px;
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* 固定ヘッダー分のアンカー余白 */
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.inner {
  width: var(--inner);
  margin-inline: auto;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(7, 31, 66, 0.09);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 0.3s ease;
}

/* スクロール時は高さを少し小さく */
.site-header.is-scrolled .header-inner {
  min-height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled .logo-mark {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: grid;
  gap: 3px;
  line-height: 1.2;
}

.logo-text span:first-child {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.logo-text span:last-child {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.global-nav a {
  position: relative;
  padding-block: 30px;
  transition: color 0.25s ease, padding 0.3s ease;
}

.site-header.is-scrolled .global-nav a {
  padding-block: 21px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.global-nav a:hover {
  color: var(--blue);
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 91, 172, 0.22);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta::before {
  content: "✉";
  font-size: 14px;
  line-height: 1;
}

.header-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 31, 66, 0.26);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
}

.menu-button span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-button span:nth-child(1) { top: 16px; }
.menu-button span:nth-child(2) { top: 23px; }
.menu-button span:nth-child(3) { top: 30px; }
.menu-button.is-active span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-button.is-active span:nth-child(2) { opacity: 0; }
.menu-button.is-active span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */
.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 91, 172, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 16px 30px rgba(7, 31, 66, 0.28);
}

.button-secondary:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.button-lg {
  min-height: 68px;
  padding: 0 40px;
  font-size: 17px;
}

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: 112px 0;
  position: relative;
}

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

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 56px;
}

.section-head.center {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--blue);
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

.section-desc {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.95;
}

.section-head.center .section-desc {
  margin-inline: auto;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  min-height: 760px;
  padding: 156px 0 84px;
  color: #fff;
  background:
    linear-gradient(96deg, rgba(7, 31, 66, 0.97) 0%, rgba(7, 31, 66, 0.9) 46%, rgba(7, 31, 66, 0.42) 100%),
    url("https://images.unsplash.com/photo-1497366412874-3415097a27e7?auto=format&fit=crop&w=1800&q=80") center/cover;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(7, 31, 66, 0), rgba(7, 31, 66, 0.28));
  pointer-events: none;
}

.hero-grid {
  width: var(--inner);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(394px, 0.78fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #b9dcff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #b9dcff;
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-title span {
  color: #9fd2ff;
}

.hero-lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.hero .button-secondary:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

/* Hero 料金パネル（初期制作費0円＋月あたり2,000円を主役に） */
.hero-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(92deg, #0d3878, var(--blue));
  color: #fff;
}

.hero-panel-header span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel-header b {
  padding: 4px 14px;
  color: var(--navy);
  background: #ffe58f;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
}

.hero-panel-zero {
  margin: 24px 28px 0;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.hero-panel-zero::before {
  content: "＼";
}

.hero-panel-zero::after {
  content: "／";
}

.hero-panel-zero::before,
.hero-panel-zero::after {
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.hero-panel-zero b {
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-panel-zero b span {
  font-size: 20px;
}

.hero-panel-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-panel-price .label {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.hero-panel-price .num {
  color: var(--blue);
  font-size: clamp(58px, 7vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-panel-price .num .yen-unit {
  font-size: 28px;
  margin-left: 2px;
  letter-spacing: 0;
}

.hero-panel-tax {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hero-panel-annual {
  width: fit-content;
  margin: 16px auto 0;
  padding: 8px 26px;
  color: var(--blue);
  border: 1px solid rgba(0, 91, 172, 0.45);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 900;
}

.hero-panel-list {
  margin: 22px 28px 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
}

.hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-panel-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.hero-panel-cta {
  width: calc(100% - 56px);
  margin: 22px 28px 0;
  border-radius: 10px;
}

.hero-panel-assure {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel-assure svg {
  flex: 0 0 auto;
}

.hero-panel-note {
  margin: 18px 24px 24px;
  padding: 14px 18px;
  background: #f2f6fb;
  border-radius: 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.8;
  text-align: center;
}

/* =========================================================
   Credibility strip
   ========================================================= */
.credibility {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credibility-item {
  min-height: 138px;
  padding: 30px 32px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 8px;
}

.credibility-item:last-child {
  border-right: 0;
}

.credibility-item small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credibility-item strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
}

/* =========================================================
   Shared layout grids
   ========================================================= */
.problem-layout,
.service-layout,
.contents-layout,
.price-layout,
.faq-layout,
.contact-layout {
  display: grid;
  gap: 52px;
  align-items: start;
}

.problem-layout { grid-template-columns: 0.86fr 1.14fr; }
.service-layout { grid-template-columns: 1.05fr 0.95fr; }
.contents-layout { grid-template-columns: 1fr 1fr; }
.price-layout { grid-template-columns: 0.92fr 1.08fr; }
.faq-layout { grid-template-columns: 0.8fr 1.2fr; }
.contact-layout { grid-template-columns: 0.82fr 1.18fr; }

.problem-side,
.faq-illustration,
.contact-side {
  position: sticky;
  top: 110px;
}

.problem-side-photo,
.service-main,
.contents-photo,
.faq-illustration,
.contact-side-visual {
  background-size: cover;
  background-position: center;
}

/* =========================================================
   Problem
   ========================================================= */
.problem-side-photo {
  min-height: 440px;
  margin-top: 30px;
  background:
    linear-gradient(180deg, rgba(7, 31, 66, 0.04), rgba(7, 31, 66, 0.6)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1100&q=80") center/cover;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 24px 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.problem-list b {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  font-size: 16px;
  font-weight: 900;
  font-style: normal;
}

.problem-list p {
  margin: 0;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.72;
}

.problem-list em {
  font-style: normal;
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(transparent 62%, rgba(0, 91, 172, 0.14) 0);
}

/* =========================================================
   Service
   ========================================================= */
.service-main {
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 31, 66, 0.12), rgba(7, 31, 66, 0.78)),
    url("../images/p01.png") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 580px;
  box-shadow: var(--shadow);
}

.service-main h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.4;
}

.service-main p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.service-card,
.reason-card,
.flow-item,
.faq-item,
.contact-side,
.contact-form {
  background: #fff;
}

.service-card {
  padding: 32px 30px;
  background: #fff;
  transition: background 0.25s ease;
}

.service-card:hover {
  background: #f7fbff;
}

.service-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 900;
  font-style: normal;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.service-card p,
.reason-card p,
.flow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

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

.reason-card {
  padding: 34px 32px;
  min-height: 290px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.reason-card::after {
  content: attr(data-no);
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(0, 91, 172, 0.08);
  font-size: 104px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reason-card b {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.14em;
}

.reason-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

/* 単調さを減らすため、料金に関わる2枚はネイビーで強調 */
.reason-card.is-accent {
  color: #fff;
  background:
    linear-gradient(150deg, var(--navy-2), var(--navy));
  border-color: var(--navy);
}

.reason-card.is-accent b {
  color: #9fd2ff;
}

.reason-card.is-accent h3 {
  color: #fff;
}

.reason-card.is-accent p {
  color: rgba(255, 255, 255, 0.86);
}

.reason-card.is-accent::after {
  color: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   Contents
   ========================================================= */
.contents-photo {
  min-height: 600px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 31, 66, 0.06), rgba(7, 31, 66, 0.6)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.contents-photo-card,
.faq-illustration-card {
  width: 100%;
  padding: 26px;
  color: #fff;
  border-left: 4px solid #9fd2ff;
  background: rgba(7, 31, 66, 0.78);
  backdrop-filter: blur(12px);
}

.contents-photo-card small {
  display: block;
  color: #b9dcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contents-photo-card strong,
.faq-illustration-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.4;
}

.contents-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contents-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.contents-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  font-size: 12px;
  font-weight: 900;
}

.contents-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  background: var(--sky);
  border-left: 3px solid var(--blue);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.75;
}

.contact-side li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue);
  flex: 0 0 auto;
}

/* =========================================================
   Price
   ========================================================= */
.price-section {
  color: #fff;
  background:
    linear-gradient(94deg, rgba(7, 31, 66, 0.97), rgba(7, 31, 66, 0.9)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80") center/cover;
  overflow: hidden;
}

.price-section .section-title,
.price-section .section-label {
  color: #fff;
}

.price-section .section-label::before {
  background: #fff;
}

.price-section .section-desc {
  color: rgba(255, 255, 255, 0.82);
}

.price-main {
  padding: 40px 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 110px;
}

.price-main small {
  color: #b9dcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-main .yen {
  margin: 14px 0 0;
  font-size: clamp(62px, 7.4vw, 92px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-main .yen span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.price-main > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.85;
}

.price-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.price-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 800;
}

.price-points span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #9fd2ff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 12px;
}

.price-value {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-value li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.6;
}

.price-value li::before {
  content: "●";
  color: #9fd2ff;
  font-size: 9px;
  line-height: 1.9;
}

.price-cta {
  width: 100%;
  margin-top: 26px;
}

.price-table-wrap {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.7;
}

.price-table th {
  width: 38%;
  background: #f2f7fc;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  white-space: nowrap;
}

.price-table td {
  font-weight: 700;
}

.price-table .is-highlight th {
  background: var(--navy);
  color: #fff;
}

.price-table .is-highlight td {
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
  font-size: 16px;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}

.notice-box {
  margin-top: 18px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.notice-box h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.notice-box ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.85;
}

.notice-box li + li {
  margin-top: 6px;
}

/* =========================================================
   Sample
   ========================================================= */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sample-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #ddd;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sample-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.sample-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.sample-card:hover .sample-media {
  transform: scale(1.07);
}

.sample-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 31, 66, 0.05) 30%, rgba(7, 31, 66, 0.82));
}

.sample-media.restaurant { background-image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=900&q=80"); }
.sample-media.hair { background-image: url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=900&q=80"); }
.sample-media.body { background-image: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=900&q=80"); }
.sample-media.shop { background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=900&q=80"); }

.sample-content {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: #fff;
}

.sample-content span {
  display: block;
  margin-bottom: 10px;
  color: #b9dcff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sample-content h3 {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.4;
}

.sample-content p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.75;
}

.sample-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.25s ease, color 0.25s ease;
}

.sample-card:hover .sample-link {
  background: var(--blue);
  color: #fff;
}

/* =========================================================
   Flow（STEPタイムライン）
   ========================================================= */
.flow-list {
  counter-reset: flow;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flow-item {
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flow-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.flow-item::before {
  counter-increment: flow;
  content: "STEP " counter(flow, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-illustration {
  min-height: 460px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 31, 66, 0.06), rgba(7, 31, 66, 0.64)),
    url("../images/p02.png") center/cover;
  box-shadow: var(--shadow);
}

.faq-illustration-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.7;
}

.faq-wrap {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(0, 91, 172, 0.4);
  box-shadow: 0 12px 28px rgba(7, 31, 66, 0.1);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 64px 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 16.5px;
  font-weight: 900;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
}

.faq-question::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  margin-right: 14px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background:
    linear-gradient(var(--blue), var(--blue)) center / 16px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center / 2px 16px no-repeat;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question {
  color: var(--blue);
}

.faq-item.is-open .faq-question::after {
  transform: rotate(90deg);
  background:
    linear-gradient(var(--blue), var(--blue)) center / 16px 2px no-repeat;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 4px 26px 24px 68px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  padding: 124px 0;
  color: #fff;
  background:
    linear-gradient(92deg, rgba(7, 31, 66, 0.95), rgba(7, 31, 66, 0.86)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  width: min(880px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 900;
  line-height: 1.3;
}

.cta-content p {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.95;
}

.cta-assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.cta-assurance li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 800;
}

.cta-assurance li::before {
  content: "✓";
  color: #9fd2ff;
  font-weight: 900;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-side {
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-side-visual {
  min-height: 210px;
  margin-bottom: 26px;
  background:
    linear-gradient(180deg, rgba(7, 31, 66, 0.04), rgba(7, 31, 66, 0.46)),
    url("../images/p03.png") center/cover;
}

.contact-side h3 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

.contact-side p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.contact-side ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.contact-side li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 38px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.required {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  vertical-align: 1px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9aa7b8;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue);
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(0, 91, 172, 0.12);
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.submit-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}

.submit-wrap .button {
  min-height: 64px;
}

.form-message {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-message.is-show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.is-error {
  color: #d83a3a;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nowrap {
  white-space: nowrap;
}

/* 改行の出し分け：<br class="pc"> はPCのみ、<br class="sp"> はスマホのみ有効 */
br.sp {
  display: none;
}

@media (max-width: 767px) {
  br.pc {
    display: none;
  }

  br.sp {
    display: inline;
  }
}

/* =========================================================
   Footer / pagetop
   ========================================================= */
.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy);
  font-size: 13px;
}

.footer-inner {
  width: var(--inner);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner > div {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 31, 66, 0.24);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.pagetop:hover {
  background: var(--blue);
}

.pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   Responsive — tablet
   ========================================================= */
@media (max-width: 1120px) {
  .global-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 84px 24px auto;
    display: grid;
    gap: 0;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .problem-layout,
  .service-layout,
  .contents-layout,
  .price-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 520px;
  }

  .problem-side,
  .faq-illustration,
  .contact-side,
  .price-main {
    position: relative;
    top: auto;
  }

  .service-main {
    min-height: 440px;
  }

  .contents-photo {
    min-height: 420px;
  }

  .reason-grid,
  .flow-list,
  .sample-grid,
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility-item:nth-child(2) {
    border-right: 0;
  }

  .credibility-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

/* =========================================================
   Responsive — mobile
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --inner: min(100% - 32px, 1180px);
  }

  body {
    font-size: 15.5px;
    letter-spacing: 0.01em;
  }

  .header-inner {
    width: min(100% - 32px, 1280px);
    min-height: 64px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 58px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .logo-text span:first-child {
    font-size: 15px;
  }

  .logo-text span:last-child {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .hero {
    padding: 116px 0 64px;
    background:
      linear-gradient(180deg, rgba(7, 31, 66, 0.96), rgba(7, 31, 66, 0.8)),
      url("https://images.unsplash.com/photo-1497366412874-3415097a27e7?auto=format&fit=crop&w=1200&q=80") center/cover;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-panel {
    max-width: none;
  }

  .hero-panel-zero {
    margin: 22px 20px 0;
    font-size: 18px;
  }

  .hero-panel-list {
    margin: 20px 20px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button.hero-panel-cta {
    width: calc(100% - 40px);
    margin: 20px 20px 0;
  }

  .hero-panel-note {
    margin: 16px 16px 20px;
  }

  .hero-actions,
  .cta-buttons,
  .submit-wrap {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 58px;
    font-size: 15.5px;
  }

  .problem-list,
  .credibility-grid,
  .service-cards,
  .reason-grid,
  .contents-list,
  .sample-grid,
  .flow-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .credibility-item,
  .credibility-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credibility-item:last-child {
    border-bottom: 0;
  }

  .problem-side-photo,
  .service-main,
  .contents-photo,
  .faq-illustration {
    min-height: 320px;
  }

  /* Flow をモバイル縦タイムラインに */
  .flow-list {
    gap: 0;
    position: relative;
    padding-left: 28px;
  }

  .flow-list::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--line);
  }

  .flow-item {
    border-top: 1px solid var(--line);
    border-left: 3px solid var(--blue);
    margin-bottom: 16px;
  }

  .flow-item::after {
    content: "";
    position: absolute;
    left: -23px;
    top: 32px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 91, 172, 0.16);
  }

  .price-main {
    padding: 28px 24px;
  }

  .price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table {
    min-width: 560px;
  }

  .faq-question {
    font-size: 15.5px;
    padding: 16px 52px 16px 18px;
  }

  .faq-question::before {
    width: 28px;
    height: 28px;
    margin-right: 11px;
  }

  .faq-answer p {
    padding: 4px 20px 22px 18px;
    font-size: 14.5px;
  }

  .cta-section {
    padding: 84px 0;
    background-attachment: scroll;
  }

  .contact-form,
  .contact-side {
    padding: 24px;
  }

  .footer-inner {
    display: grid;
  }

  .pagetop {
    right: 16px;
    bottom: 16px;
  }
}
