:root {
  --navy: #071747;
  --navy-2: #112b68;
  --teal: #079da3;
  --pink: #ef3f7f;
  --paper: #ffffff;
  --mist: #f5f8fc;
  --mist-2: #edf3f9;
  --line: rgba(7, 23, 71, 0.12);
  --line-strong: rgba(7, 23, 71, 0.2);
  --shadow: 0 28px 90px rgba(7, 23, 71, 0.12);
  --shadow-soft: 0 18px 48px rgba(7, 23, 71, 0.10);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 48%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.9;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 23, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 71, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 65%);
  z-index: -1;
}

img { max-width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(7, 23, 71, 0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}
.brand-mark {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  box-shadow: 0 0 0 7px rgba(7, 157, 163, .08);
}
.brand-text { font-size: 13px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  color: rgba(7, 23, 71, 0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 8px 11px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.site-nav a:hover {
  background: rgba(7, 157, 163, .08);
  color: var(--navy);
  transform: translateY(-1px);
}
.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #f6679a);
  box-shadow: 0 10px 28px rgba(239, 63, 127, .22);
}
.site-nav .nav-cta:hover { color: #fff; background: linear-gradient(135deg, #e63272, #f6679a); }

/* ===== HERO — 2カラム維持 ===== */
.hero {
  min-height: calc(100dvh - 68px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  padding: clamp(32px, 4vw, 60px) clamp(18px, 4vw, 64px) clamp(52px, 6vw, 88px);
}
.hero-copy {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 900;
}
h1, h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.45;
}
h1 { font-size: clamp(36px, 4.8vw, 68px); }
h2 { font-size: clamp(26px, 3.6vw, 52px); }

.lead {
  margin: 22px 0 0;
  max-width: 540px;
  color: rgba(7, 23, 71, 0.74);
  font-size: clamp(14px, 1.4vw, 16px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.primary-link, .secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
}
.primary-link {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #f56696);
  box-shadow: 0 18px 45px rgba(239, 63, 127, .30);
}
.secondary-link {
  color: var(--navy);
  border: 1px solid rgba(7, 23, 71, 0.16);
  background: rgba(255,255,255,.64);
}
.primary-link.large { min-height: 58px; padding-inline: 32px; }

/* Hero / Contact 共通ビジュアルフレーム */
.hero-visual,
.contact-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  padding: clamp(4px, 0.55vw, 7px);
  background: #fff;
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 36px 100px rgba(7, 23, 71, 0.14), 0 8px 24px rgba(7, 23, 71, 0.07);
}
.hero-visual picture,
.hero-visual img,
.contact-visual picture,
.contact-visual img {
  display: block;
  width: 100%;
}
.hero-visual img {
  max-height: none;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 12px);
  background: #fff;
}
.hero-visual picture {
  max-height: calc(100dvh - 150px);
}
.contact-visual img {
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 12px);
  background: #fff;
}
.hero-visual { transform: translateX(1vw); }

/* Hero scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  border-radius: 2px;
  opacity: 0.20;
  animation: scrollBounce 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0); opacity: 0.20; }
  50% { transform: translateX(-50%) rotate(45deg) translateY(7px); opacity: 0.38; }
}

/* ===== INTRO BAND ===== */
.intro-band {
  padding: 42px clamp(18px, 4vw, 64px);
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.66);
}
.intro-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 42px);
}
.intro-inner p {
  margin: 0;
  padding-left: 22px;
  border-left: 3px solid var(--teal);
  font-weight: 700;
  color: rgba(7, 23, 71, 0.74);
  font-size: clamp(14px, 1.4vw, 16px);
}

/* ===== STORY SECTION — 1カラム・画像カード中央配置 ===== */
.story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 2.4vw, 32px);
  padding: clamp(72px, 7vw, 96px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.section-accent { background: var(--mist); }

.story-copy {
  width: 100%;
  max-width: 880px;
  text-align: center;
}
.story-copy p {
  margin: 10px 0 0;
  color: rgba(7, 23, 71, 0.74);
  font-size: clamp(14px, 1.4vw, 16px);
}
.story-copy::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--teal), var(--pink));
}
.story-copy--compact {
  margin-bottom: clamp(12px, 1.8vw, 18px);
}

/* アクセシビリティ: スクリーンリーダー専用 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ストーリー画像カード */
.visual-frame {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 42, 85, 0.08);
  box-shadow: 0 20px 72px rgba(7, 23, 71, 0.10), 0 4px 16px rgba(7, 23, 71, 0.05);
}
.visual-frame picture,
.visual-frame img {
  display: block;
  width: 100%;
}
.visual-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
}

/* CLS対策: 画像アスペクト比予約 */
.visual-frame picture,
.contact-visual picture,
.hero-visual picture {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
}
.visual-frame img,
.contact-visual img,
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 画像下の補足文 */
.section-note {
  width: 100%;
  max-width: 880px;
  margin: 0;
  text-align: center;
  color: rgba(7, 23, 71, 0.62);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.9;
}

/* 補足文下の控えめなCTA */
.section-actions {
  margin-top: 16px;
  text-align: center;
}
.text-link {
  display: inline-block;
  color: rgba(7, 23, 71, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.8;
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 23, 71, 0.34);
  padding: 3px 0 2px;
  transition: color .2s ease, border-color .2s ease;
}
.text-link:hover {
  color: var(--teal);
  border-color: var(--teal);
}

/* ===== CONTACT — PC 2カラム維持 ===== */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 156px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 8% 12%, rgba(7,157,163,.22), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(239,63,127,.18), transparent 28%),
    linear-gradient(135deg, #061337 0%, #071747 42%, #102863 100%);
  color: #fff;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.contact-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  margin: 0 auto;
}
.contact-intro {
  max-width: 880px;
  margin: 0 auto clamp(28px, 4vw, 56px);
  text-align: center;
}
.contact-intro h2,
.contact-copy h2 { color: #fff; }
.contact-intro p,
.contact-copy p { color: rgba(255,255,255,.78); }
.contact-intro p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(14px, 1.35vw, 16px);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .44fr) minmax(0, .56fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: stretch;
}
.contact-side {
  display: grid;
  align-content: start;
  gap: 18px;
}
.contact-copy h2 { color: #fff; }
.contact-copy p { color: rgba(255,255,255,.78); }
.contact-list,
.assurance-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li,
.assurance-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  line-height: 1.8;
}
.contact-list li::before,
.assurance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(7,157,163,.18);
}
.assurance-card {
  border-radius: 28px;
  padding: clamp(18px, 2.2vw, 26px);
  background: rgba(255,255,255,.095);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 22px 64px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.assurance-title {
  margin: 0 0 14px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .10em;
}
.contact-copy .contact-visual,
.contact-side .contact-visual {
  max-width: 100%;
  margin: 0;
  box-shadow: 0 38px 100px rgba(0,0,0,.28), 0 12px 34px rgba(0,0,0,.18);
}
.contact-form {
  width: 100%;
  border-radius: 32px;
  padding: clamp(24px, 3.2vw, 40px);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,252,255,.96));
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: 0 42px 120px rgba(0,0,0,.22), 0 12px 30px rgba(0,0,0,.12);
  color: var(--navy);
}
.form-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7,23,71,.10);
}
.form-kicker {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.contact-form h3 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-size: clamp(25px, 2.3vw, 36px);
  letter-spacing: .06em;
  line-height: 1.45;
}
.contact-form p {
  margin: 8px 0 0;
  color: rgba(7, 23, 71, 0.68);
  font-size: 13px;
  line-height: 1.8;
}
.form-row {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}
.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label span,
.form-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(7, 23, 71, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.contact-form b {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(239, 63, 127, .10);
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 23, 71, 0.13);
  border-radius: 18px;
  padding: 14px 15px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 136px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(7, 157, 163, .72);
  box-shadow: 0 0 0 4px rgba(7, 157, 163, .12), inset 0 1px 0 rgba(255,255,255,.9);
  background: #fff;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(7, 23, 71, 0.11);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--mist), rgba(255,255,255,.92));
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}
.privacy-check span {
  display: block;
  color: rgba(7, 23, 71, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
}
.privacy-check a { color: var(--navy); font-weight: 900; }
.submit-button {
  width: 100%;
  min-height: 60px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #e93377, #f56b9a);
  box-shadow: 0 18px 45px rgba(239, 63, 127, .30);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .10em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 24px 60px rgba(239, 63, 127, .38);
}
.form-note {
  margin-top: 12px !important;
  text-align: center;
  color: rgba(7, 23, 71, 0.58) !important;
  font-size: 12px !important;
}
.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== SERVICE SUMMARY (AI検索向け補足) ===== */
.service-summary {
  padding: 22px clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid var(--line);
}
.service-summary-inner {
  width: min(880px, 100%);
  margin: 0 auto;
  color: rgba(7, 23, 71, 0.76);
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

/* ===== FAQ ===== */
.faq-section {
  padding: clamp(44px, 5vw, 64px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.faq-inner {
  width: min(800px, 100%);
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: clamp(22px, 2.5vw, 32px);
}
.faq-head .eyebrow { display: block; }
.faq-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(14px, 1.6vw, 18px);
  background: rgba(255,255,255,.80);
}
.faq-q {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 15px);
  color: var(--navy);
  line-height: 1.6;
}
.faq-q::before {
  content: "Q.";
  color: var(--teal);
  font-weight: 900;
  margin-right: 8px;
}
.faq-a {
  margin: 0;
  padding-left: 22px;
  color: rgba(7, 23, 71, 0.70);
  font-size: clamp(13px, 1.2vw, 14px);
  line-height: 1.85;
}

/* ===== SUPPLEMENT SECTIONS ===== */
.target-section,
.outcome-section,
.trust-section {
  padding: clamp(48px, 5vw, 68px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.target-section,
.outcome-section {
  background: var(--mist);
}
.supplement-inner {
  width: min(880px, 100%);
  margin: 0 auto;
}
.supplement-head {
  text-align: center;
  margin-bottom: clamp(22px, 2.5vw, 32px);
}
.supplement-head .eyebrow { display: block; }
.supplement-head h2 { margin-top: 8px; }
.supplement-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.supplement-list li {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: clamp(13px, 1.25vw, 15px);
  color: rgba(7, 23, 71, 0.80);
  line-height: 1.75;
}
.supplement-list li::before {
  content: "—";
  color: var(--teal);
  font-weight: 900;
  margin-right: 10px;
}
.trust-note {
  margin: clamp(14px, 1.5vw, 20px) 0 0;
  text-align: center;
  color: rgba(7, 23, 71, 0.54);
  font-size: 13px;
  line-height: 1.9;
}

/* USP帯 */
.usp-band {
  padding: clamp(48px, 5vw, 68px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.usp-inner {
  width: min(800px, 100%);
  margin: 0 auto;
  text-align: center;
}
.usp-inner h2 { margin-bottom: 16px; }
.usp-inner p {
  margin: 0;
  color: rgba(7, 23, 71, 0.70);
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.9;
}

/* Contact直前の補足帯 */
.pre-contact-band {
  padding: clamp(28px, 3.5vw, 44px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}
.pre-contact-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  color: rgba(7, 23, 71, 0.68);
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.9;
  padding: 18px 24px;
  background: rgba(7, 23, 71, 0.03);
  border-radius: 16px;
  border: 1px solid var(--line);
}

@media (max-width: 767px) {
  .target-section,
  .outcome-section,
  .trust-section,
  .usp-band {
    padding: clamp(40px, 5vw, 52px) 16px;
  }
  .pre-contact-band { padding: 24px 16px; }
  .supplement-list li { font-size: 13px; padding: 12px 16px; }
  .usp-inner p { font-size: 13px; }
  .pre-contact-inner { font-size: 13px; padding: 14px 16px; }
}

/* ===== FOOTER ===== */
.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px;
  text-align: center;
  color: rgba(7, 23, 71, .64);
  background: #fff;
}
.site-footer a {
  color: rgba(7, 23, 71, .64);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PC幅制御 (1025px〜) ===== */
@media (min-width: 1025px) {
  .visual-frame {
    width: min(1040px, 88vw);
  }
}

/* ===== TABLET (〜1024px) ===== */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-copy { max-width: 820px; }
  .hero-visual { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE (〜767px) ===== */
@media (max-width: 767px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 13px;
  }
  .brand-text { font-size: 12px; }
  .site-nav { width: 100%; gap: 6px; padding-bottom: 2px; }
  .site-nav a { font-size: 12px; padding: 7px 9px; }
  .site-nav .nav-cta { display: none; }

  .scroll-hint { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 42px 13px 62px;
    gap: 22px;
  }
  h1 { font-size: clamp(30px, 9.5vw, 44px); letter-spacing: .04em; }
  h2 { font-size: clamp(24px, 8vw, 36px); letter-spacing: .04em; }
  .lead { font-size: 13px; line-height: 1.85; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .primary-link, .secondary-link { min-height: 54px; width: 100%; }

  .hero-visual,
  .contact-visual {
    border-radius: 20px;
    padding: 4px;
    box-shadow: var(--shadow-soft);
  }
  .hero-visual img,
  .contact-visual img { border-radius: 16px; }

  .intro-band { padding: 34px 16px; }
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .intro-inner p { font-size: 13px; line-height: 1.85; }

  /* story-section モバイル */
  .story-section {
    gap: 18px;
    padding: clamp(42px, 6vw, 56px) 16px;
  }
  .story-copy { text-align: center; }
  .story-copy p { font-size: 13px; }
  .story-copy::after { width: 44px; margin-top: 14px; }

  .visual-frame {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    padding: 5px;
    box-shadow: var(--shadow-soft);
  }
  .visual-frame img {
    border-radius: 13px;
    max-height: none;
  }
  .visual-frame picture,
  .contact-visual picture,
  .hero-visual picture {
    aspect-ratio: 941 / 1672;
  }

  .section-note {
    font-size: 13px;
    padding: 0 4px;
  }
  .text-link { font-size: 14px; }

  /* contact モバイル */
  .contact-section { padding: 72px 13px; }
  .contact-intro { text-align: left; margin-bottom: 24px; }
  .contact-intro p { margin-inline: 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .assurance-card { border-radius: 22px; padding: 18px; }

  .contact-form { padding: 20px 14px; border-radius: 22px; }
  .form-row.two { grid-template-columns: 1fr; gap: 14px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { border-radius: 14px; font-size: 16px; }
  .contact-copy .contact-visual { margin-top: 22px; }
}

/* Deliverables+Outcome: 1491x1055 desktop / 1055x1491 mobile */
.visual-frame--do picture {
  aspect-ratio: 1491 / 1055;
}
@media (max-width: 767px) {
  .visual-frame--do picture {
    aspect-ratio: 1055 / 1491;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-hint {
    animation: none;
  }
}

/* ===== HERO — PC: 画像フルブリード (1025px+) ===== */
@media (min-width: 1025px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0 0 clamp(28px, 3vw, 44px);
    gap: 0;
    align-items: stretch;
  }
  .hero-visual {
    order: -1;
    width: 100%;
    transform: none;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: #fff;
  }
  .hero-visual picture {
    max-height: none;
  }
  .hero-visual img {
    border-radius: 0;
    object-position: center center;
  }
  .hero-copy {
    max-width: 100%;
    padding: clamp(20px, 2.5vw, 32px) clamp(18px, 4vw, 64px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-actions {
    margin-top: 16px;
    justify-content: center;
  }
}
