@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;700;800;900&display=swap');
:root {
  --ink: #161616;
  --muted: #6b675f;
  --paper: #fbfaf7;
  --white: #fff;
  --line: #e7e1d7;
  --soft: #f3efe7;
  --green: #0f7c68;
  --green-dark: #075747;
  --mint: #dff5ed;
  --orange: #f06a2a;
  --pink: #ff6db2;
  --blue: #3f78ff;
  --yellow: #ffd84a;
  --lavender: #c8b7ff;
  --shadow: 0 24px 60px rgba(28, 25, 20, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "M PLUS Rounded 1c", "FOT-GonaB", "Gona", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 247, .88);
  border-bottom: 1px solid rgba(231, 225, 215, .8);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: 154px;
  max-height: 42px;
  object-fit: contain;
}

.brand-logo.wide { width: 188px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  color: #3b3935;
}

.site-nav a {
  white-space: nowrap;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--green);
}

.icon-link {
  gap: 9px;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #06c755;
  color: #fff;
  font: 900 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.instagram-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: radial-gradient(circle at 72% 26%, #ffd84a 0 9%, transparent 10%),
    linear-gradient(135deg, #5b4bff, #d62976 48%, #fa7e1e);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .95);
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(42px, 8vw, 98px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(90deg, rgba(15, 124, 104, .08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(15, 124, 104, .07) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 14% 20%, rgba(255, 216, 74, .22), transparent 24%),
    linear-gradient(180deg, #fff, var(--paper));
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.eyebrow {
  margin: 0 0 14px;
  font: 700 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  color: var(--green);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(38px, 6.5vw, 76px);
  line-height: 1.06;
  font-weight: 700;
}

.hero-title {
  display: grid;
  gap: .04em;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.hero-title span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 4vw, 50px);
  line-height: 1.2;
  font-weight: 700;
}

.phrase-title {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.phrase-title > span {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

.phrase-copy {
  text-wrap: pretty;
}

.phrase-copy > span {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.35;
}

.lead {
  max-width: 650px;
  color: #4b4842;
  font-size: clamp(16px, 2vw, 19px);
}

.sublead {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.cta-row.center { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, .72);
}

.button.dark {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 11% -4% auto auto;
  width: 44%;
  aspect-ratio: 1;
  border: 2px solid #111;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.5) 0 10px, rgba(255,216,74,.5) 10px 20px);
  transform: rotate(10deg);
}

.hero-image {
  width: min(100%, 680px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.art-chip {
  position: absolute;
  display: grid;
  place-items: center;
  color: #111;
  font: 800 15px/1.1 ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

.chip-a {
  right: 2%;
  top: 9%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--yellow);
}

.chip-b {
  left: -5%;
  bottom: 8%;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: var(--pink);
  transform: rotate(-8deg);
}

.section {
  padding: clamp(64px, 9vw, 126px) clamp(20px, 6vw, 90px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.hero-copy .lead,
.hero-copy .sublead,
.section-head p:not(.eyebrow),
.final-cta > p:not(.eyebrow) {
  word-break: auto-phrase;
  line-break: strict;
  text-wrap: pretty;
}

.art-statement {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: #fff;
}

.art-frame,
.gallery-image,
.image-pop {
  position: relative;
  overflow: hidden;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 10px 0 #111;
}

.lp-hero .hero-image {
  position: relative;
}

.art-frame img,
.gallery-image img,
.image-pop img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.art-frame::after,
.gallery-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(17, 17, 17, .22);
  pointer-events: none;
}

.problem-grid,
.service-grid,
.case-grid,
.area-grid,
.line-grid,
.concept-card-grid {
  display: grid;
  gap: 16px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid article,
.service-card,
.price-block,
.case-card,
.area-grid article,
.concept-card-grid article {
  border: 1px solid rgba(22, 22, 22, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .75);
}

.problem-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 112px;
  padding: 24px;
}

.problem-grid article b {
  font-size: 18px;
}

.problem-grid article span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
}

.reason-list {
  display: grid;
  gap: 12px;
}

.reason-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.reason-list span,
.concept-card-grid span,
.flow-list span {
  color: var(--green);
  font: 700 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

.service-card {
  padding: 26px;
  min-height: 280px;
}

.service-card.featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 216, 74, .22), transparent 24%),
    linear-gradient(135deg, #111, #173f38);
  color: #fff;
}

.service-card.quiet {
  opacity: .82;
}

.service-kicker {
  color: var(--yellow);
  font: 800 42px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.checker {
  background: #fff;
}

.checker-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.checker-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.checker-form select,
.checker-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.checker-result {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.result-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr 1.2fr;
  gap: 16px;
}

.result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.concept-band {
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 109, 178, .28), transparent 22%),
    radial-gradient(circle at 12% 80%, rgba(63, 120, 255, .22), transparent 26%),
    #101010;
  color: #fff;
}

.concept-band > div {
  max-width: 820px;
}

.concept-logo {
  width: 240px;
  max-height: 86px;
  object-fit: contain;
}

.concept-logo-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(255, 216, 74, .95);
}

.price-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.price-block {
  padding: 26px;
}

.main-price {
  background: #111;
  color: #fff;
}

.price-block.subdued {
  background: var(--soft);
}

dl { margin: 0; }

dt { font-weight: 700; }

dd {
  margin: 0;
  color: var(--muted);
}

.main-price dd { color: #d7d2ca; }

dl div {
  display: grid;
  gap: 6px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(160, 150, 135, .35);
}

.note,
.muted {
  color: var(--muted);
  font-size: 13px;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-card {
  overflow: hidden;
}

.case-card h3,
.case-card p {
  padding-inline: 20px;
}

.case-card p {
  color: var(--muted);
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.ba-pair img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.flow-list li {
  min-height: 180px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.area-grid {
  grid-template-columns: 1fr 1fr;
}

.area-grid article {
  padding: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--soft));
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
}

.line-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 34px auto 0;
}

.line-card {
  display: grid;
  gap: 8px;
  min-height: 146px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  text-align: left;
}

.line-card .cta-icon {
  align-self: start;
  margin-bottom: 8px;
}

.line-card .line-icon {
  width: max-content;
  font-size: 9px;
}

.line-card.instagram {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 216, 74, .35), transparent 20%),
    #111;
}

.line-card span {
  font-size: 13px;
}

.line-card b {
  font-size: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 42px clamp(20px, 6vw, 90px);
  color: #d8d4ca;
  background: #111;
}

.footer-logo {
  width: 160px;
  max-height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-logo.wide { width: 210px; }

.site-footer .footer-logo.wide {
  width: 230px;
  max-height: 70px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  filter: none;
}

.footer-brand-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff;
}

.footer-links {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  max-width: 560px;
}

.footer-credit {
  display: inline-block;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 212, 202, .22);
  color: rgba(216, 212, 202, .55);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.concept-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 109, 178, .28), transparent 20%),
    radial-gradient(circle at 90% 16%, rgba(63, 120, 255, .22), transparent 18%),
    #fff8e8;
}

.concept-header {
  background: rgba(255, 248, 232, .9);
}

.concept-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(46px, 8vw, 100px) clamp(20px, 6vw, 90px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17,17,17,.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(17,17,17,.08) 0 1px, transparent 1px 100%);
  background-size: 34px 34px;
}

.concept-hero-logo {
  width: min(360px, 72vw);
  margin-bottom: 28px;
}

.concept-hero h1 {
  font-size: clamp(44px, 8vw, 92px);
}

.pop-art {
  position: relative;
  min-height: 520px;
}

.pop-canvas {
  min-height: 560px;
  border: 4px solid #111;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 72%, var(--yellow) 0 11%, transparent 12%),
    radial-gradient(circle at 78% 20%, var(--pink) 0 13%, transparent 14%),
    linear-gradient(135deg, #fff 0 48%, #111 48% 50%, var(--mint) 50% 100%);
  box-shadow: 14px 14px 0 #111;
}

.pop-canvas b {
  position: absolute;
  z-index: 2;
  color: #fff;
  font: 900 clamp(58px, 9vw, 116px)/.85 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-shadow: 7px 7px 0 #111;
}

.pop-canvas b:nth-of-type(1) {
  left: 10%;
  top: 19%;
  color: var(--blue);
}

.pop-canvas b:nth-of-type(2) {
  right: 7%;
  bottom: 15%;
  color: var(--orange);
}

.image-pop {
  min-height: 0;
  align-self: center;
  transform: rotate(2deg);
}

.image-pop img {
  aspect-ratio: 4 / 3;
}

.pop-art span {
  position: absolute;
  border: 4px solid #111;
  box-shadow: 12px 12px 0 #111;
}

.pop-art span:nth-child(1) {
  inset: 8% 12% auto auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--yellow);
}

.pop-art span:nth-child(2) {
  left: 8%;
  top: 24%;
  width: 210px;
  height: 280px;
  border-radius: 8px;
  background: var(--pink);
  transform: rotate(-8deg);
}

.pop-art span:nth-child(3) {
  right: 20%;
  bottom: 10%;
  width: 260px;
  height: 180px;
  border-radius: 8px;
  background: var(--blue);
  transform: rotate(7deg);
}

.pop-art span:nth-child(4) {
  left: 36%;
  top: 5%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--orange);
}

.pop-art span:nth-child(5) {
  left: 2%;
  bottom: 7%;
  width: 120px;
  height: 120px;
  background: #fff;
  background-image: radial-gradient(#111 2px, transparent 2px);
  background-size: 16px 16px;
}

.concept-intro {
  background: #fff;
}

.concept-card-grid {
  grid-template-columns: repeat(5, 1fr);
}

.concept-card-grid article {
  min-height: 240px;
  padding: 24px;
  background: #fff;
  border: 3px solid #111;
  box-shadow: 7px 7px 0 #111;
}

.culture {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 216, 74, .25), transparent 18%),
    #111;
  color: #fff;
}

.culture p {
  color: #e0dbd2;
}

.culture-art {
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 4px solid #fff;
  background:
    linear-gradient(135deg, transparent 0 24%, var(--yellow) 24% 38%, transparent 38%),
    linear-gradient(45deg, var(--pink), var(--blue));
}

.culture-art strong {
  color: #fff;
  font: 900 clamp(54px, 9vw, 110px)/.88 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-shadow: 7px 7px 0 #111;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.art-gallery {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.concept-art-gallery {
  align-items: stretch;
}

.pop-manifesto {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
}

.pop-manifesto span {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 4px solid #111;
  border-radius: 8px;
  color: #111;
  font: 900 clamp(24px, 4vw, 46px)/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow: 8px 8px 0 #111;
  transform: rotate(var(--r, -2deg));
}

.pop-manifesto span:nth-child(1) { --r: -3deg; background: var(--pink); }
.pop-manifesto span:nth-child(2) { --r: 2deg; background: var(--yellow); }
.pop-manifesto span:nth-child(3) { --r: 2deg; background: var(--blue); color: #fff; }
.pop-manifesto span:nth-child(4) { --r: -2deg; background: var(--mint); }

.art-gallery .poster-grid {
  grid-template-columns: repeat(2, 1fr);
}

.poster-grid div {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 4px solid #111;
  border-radius: 8px;
  color: #111;
  font: 900 28px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow: 8px 8px 0 #111;
}

.poster-grid div:nth-child(1) { background: var(--yellow); }
.poster-grid div:nth-child(2) { background: var(--pink); }
.poster-grid div:nth-child(3) { background: var(--blue); color: #fff; }
.poster-grid div:nth-child(4) { background: var(--orange); color: #fff; }

.concept-final {
  background: #fff;
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }

  .nav-toggle { display: block; }

  .hero,
  .concept-hero,
  .split,
  .culture,
  .art-statement,
  .art-gallery {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .price-layout,
  .case-grid,
  .concept-card-grid,
  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checker-form,
  .result-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .site-nav {
    inset: 66px 14px auto;
  }

  .brand-logo {
    width: 136px;
  }

  .brand-logo.wide {
    width: 158px;
  }

  .hero,
  .concept-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual,
  .pop-art {
    min-height: 390px;
  }

  .hero-image {
    aspect-ratio: 3 / 4;
  }

  .chip-a {
    width: 92px;
    height: 92px;
    font-size: 12px;
  }

  .chip-b {
    left: 2%;
    width: 112px;
    height: 112px;
    font-size: 12px;
  }

  .problem-grid,
  .service-grid,
  .price-layout,
  .case-grid,
  .flow-list,
  .area-grid,
  .line-grid,
  .concept-card-grid,
  .poster-grid,
  .checker-form,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .section {
    padding-block: 58px;
  }

  .cta-row .button {
    width: 100%;
  }

  .pop-art span:nth-child(1) {
    width: 170px;
    height: 170px;
  }

  .pop-art span:nth-child(2) {
    width: 154px;
    height: 220px;
  }

  .pop-art span:nth-child(3) {
    width: 180px;
    height: 130px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-links {
    justify-items: start;
  }
}

/* 2026-06-11 client revision: KADEN RE:VIVE pop-comic art direction */

:root {
  --ink: #101014;
  --muted: #45454d;
  --paper: #fffdf1;
  --line: #101014;
  --soft: #fff5bd;
  --green: #00a982;
  --green-dark: #00745d;
  --mint: #e8fff7;
  --orange: #ff7136;
  --pink: #ff6aa9;
  --blue: #18bde8;
  --yellow: #fff200;
  --shadow: 10px 10px 0 #101014;
}

body {
  font-family: "Gona B", "Gona", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 500;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(0, 169, 130, .22) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}

.site-header {
  background: rgba(255, 253, 241, .92);
  border-bottom: 4px solid var(--ink);
}

.site-nav,
.eyebrow,
.button,
.nav-cta,
.line-icon,
.art-chip,
.service-kicker,
.reason-list span,
.concept-card-grid span,
.flow-list span,
.pop-canvas b,
.culture-art strong,
.pop-manifesto span,
.poster-grid div {
  font-family: "Gona B", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 900;
}

h1, h2, h3, b, summary, dt {
  font-family: "Gona B", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 900;
}

h1, h2 {
  letter-spacing: 0;
}

.button,
.nav-cta,
.problem-grid article,
.service-card,
.price-block,
.case-card,
.area-grid article,
.concept-card-grid article,
.flow-list li,
details,
.checker-form,
.checker-result,
.line-card,
.art-frame,
.gallery-image,
.image-pop,
.pop-canvas,
.concept-poster-wrap,
.concept-generated-panel,
.pop-manifesto span,
.poster-grid div {
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.button,
.nav-cta {
  border-radius: 8px;
}

.button.primary,
.nav-cta {
  background: var(--yellow);
  color: var(--ink) !important;
}

.button.ghost {
  background: #fff;
}

.hero {
  background:
    linear-gradient(90deg, rgba(16, 16, 20, .12) 0 3px, transparent 3px 100%),
    linear-gradient(0deg, rgba(16, 16, 20, .12) 0 3px, transparent 3px 100%),
    radial-gradient(circle at 16% 18%, rgba(255, 242, 0, .72), transparent 18%),
    linear-gradient(135deg, #20c8ed 0 48%, #fffdf1 48% 100%);
  background-size: 74px 74px, 74px 74px, auto, auto;
}

.lp-hero .hero-image {
  aspect-ratio: 16 / 9;
  border: 5px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(1.4deg);
}

.hero-visual {
  min-height: 470px;
}

.hero-visual::before {
  border: 4px solid var(--ink);
  background: radial-gradient(var(--green) 2px, transparent 2px), #fff;
  background-size: 14px 14px;
}

.art-chip {
  border: 4px solid var(--ink);
  color: var(--ink);
}

.chip-a { background: var(--yellow); }
.chip-b { background: var(--pink); }

.checker {
  background:
    radial-gradient(var(--green) 1.4px, transparent 1.4px),
    #fff;
  background-size: 14px 14px;
}

.checker-form,
.checker-result {
  background: #fffdf1;
}

.checker-form select,
.checker-form input {
  border: 3px solid var(--ink);
  font-weight: 700;
}

.quick-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.quick-cta p:not(.eyebrow) {
  max-width: 780px;
  color: #f5f1e8;
}

.quick-cta .button.primary {
  min-width: 240px;
  width: 100%;
}

.quick-cta-actions {
  display: grid;
  width: 100%;
  justify-items: end;
  gap: 16px;
}

.cta-sticker {
  position: relative;
  width: min(360px, 100%);
  margin: 0;
}

.cta-sticker img {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.art-statement {
  background:
    radial-gradient(var(--blue) 1.5px, transparent 1.5px),
    #fffdf1;
  background-size: 18px 18px;
}

.art-statement .art-frame {
  transform: rotate(-1deg);
}

.art-statement .art-frame img {
  aspect-ratio: 1045 / 1567;
  object-fit: contain;
  object-position: center center;
  background: #20c8ed;
}

.section-head p:not(.eyebrow),
.sublead,
.problem-grid article span,
.case-card p,
details p,
dd,
.note,
.muted,
.final-cta p:not(.eyebrow) {
  color: var(--muted);
}

.service-card.featured,
.main-price,
.concept-band,
.culture {
  background:
    radial-gradient(var(--blue) 1.8px, transparent 1.8px),
    #101014;
  background-size: 18px 18px;
}

.concept-band {
  border-block: 5px solid var(--ink);
}

.concept-logo-panel {
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--yellow);
}

.concept-page {
  background:
    radial-gradient(rgba(16, 16, 20, .18) 1.4px, transparent 1.4px),
    linear-gradient(180deg, #1ec2e8 0, #fffdf1 42%, #fffdf1 100%);
  background-size: 16px 16px, auto;
}

.concept-header {
  background: rgba(30, 194, 232, .92);
}

.concept-hero {
  background:
    radial-gradient(var(--green) 1.6px, transparent 1.6px),
    linear-gradient(135deg, #1ec2e8 0 58%, var(--yellow) 58% 100%);
  background-size: 15px 15px, auto;
}

.concept-hero-copy {
  position: relative;
  z-index: 1;
}

.concept-hero-copy p {
  max-width: 680px;
  color: #101014;
  font-weight: 700;
}

.concept-poster-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  transform: rotate(1.3deg);
}

.concept-poster-wrap img {
  width: 100%;
  aspect-ratio: 1045 / 1567;
  object-fit: contain;
  object-position: center center;
  background: #20c8ed;
}

.concept-intro,
.concept-final {
  background:
    radial-gradient(rgba(0, 169, 130, .22) 1.2px, transparent 1.2px),
    #fffdf1;
  background-size: 16px 16px, auto;
}

.concept-card-grid article {
  background: #fff;
}

.culture-art {
  border: 5px solid #fff;
  box-shadow: 10px 10px 0 var(--yellow);
}

.concept-generated-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  transform: rotate(-1deg);
}

.concept-generated-panel img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

@media (min-width: 721px) {
  body {
    font-size: 17px;
  }

  .site-nav {
    font-size: 13px;
  }

  .lead {
    font-size: 21px;
  }

  .sublead,
  .section-head p:not(.eyebrow),
  .split p,
  .service-card p,
  .price-block dd,
  .case-card p,
  .flow-list p,
  .area-grid p,
  details p,
  .final-cta p:not(.eyebrow),
  .concept-hero-copy p,
  .concept-card-grid p,
  .culture p,
  .attitude p,
  .checker-form label,
  .checker-result,
  .quick-cta p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.9;
  }

  .problem-grid article span,
  .line-card span,
  .note,
  .muted {
    font-size: 15px;
  }

  .service-card h3,
  .price-block h3,
  .case-card h3,
  .flow-list b,
  .area-grid h3,
  summary,
  .concept-card-grid h3 {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  .quick-cta {
    grid-template-columns: 1fr;
  }

  .concept-art-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-visual {
    min-height: 310px;
  }

  .lp-hero .hero-image {
    aspect-ratio: 16 / 10;
  }

  .quick-cta .button.primary {
    min-width: 0;
  }

  .concept-poster-wrap img {
    aspect-ratio: 3 / 4.1;
  }
}
/* concept-art-gallery-desktop-fix */
@media (min-width: 1101px) {
  .concept-art-gallery {
    grid-template-columns: 1.18fr .86fr .86fr;
  }
}

/* 2026-06-15 client revision: use supplied crops, improve PC readability */
.lp-hero .hero-image {
  aspect-ratio: 16 / 10;
  object-position: top center;
}

.concept-generated-panel img {
  object-position: center center;
}

.service-card.featured,
.main-price,
.concept-band,
.culture {
  background-image: none;
}

.service-card.featured {
  background: #fff;
  color: var(--ink);
}

.service-card.featured p {
  color: var(--muted);
}

.main-price {
  background: #fff200;
  color: var(--ink);
}

.main-price dd,
.main-price .note {
  color: #323232;
}

.concept-band {
  background:
    linear-gradient(135deg, rgba(255, 242, 0, .92) 0 34%, transparent 34%),
    #101014;
  color: #fff;
}

.concept-band p {
  color: #fff8d8;
}

.culture {
  color: var(--ink);
  background:
    radial-gradient(rgba(0, 169, 130, .22) 1.4px, transparent 1.4px),
    #fffdf1;
  background-size: 16px 16px, auto;
}

.culture p {
  color: #34343a;
}

.logo-culture-art {
  min-height: 320px;
  padding: clamp(24px, 4vw, 44px);
  border-color: var(--ink);
  background:
    linear-gradient(135deg, #20c8ed 0 56%, #fff200 56% 100%);
  box-shadow: 10px 10px 0 var(--ink);
}

.logo-culture-art img {
  width: min(100%, 620px);
  margin-inline: auto;
  filter: drop-shadow(6px 8px 0 rgba(0, 0, 0, .28));
}

.line-card.instagram {
  background: #101014;
}

@media (min-width: 721px) {
  body {
    font-size: 19px;
  }

  .site-nav {
    font-size: 14px;
  }

  .lead {
    font-size: 24px;
    line-height: 1.75;
  }

  .sublead,
  .section-head p:not(.eyebrow),
  .split p,
  .service-card p,
  .price-block dd,
  .case-card p,
  .flow-list p,
  .area-grid p,
  details p,
  .final-cta p:not(.eyebrow),
  .concept-hero-copy p,
  .concept-card-grid p,
  .culture p,
  .attitude p,
  .checker-form label,
  .checker-result,
  .quick-cta p:not(.eyebrow),
  .concept-band p {
    font-size: 19px;
    line-height: 1.95;
  }

  .problem-grid article span,
  .line-card span,
  .note,
  .muted {
    font-size: 17px;
    line-height: 1.85;
  }

  .service-card h3,
  .price-block h3,
  .case-card h3,
  .flow-list b,
  .area-grid h3,
  summary,
  .concept-card-grid h3 {
    font-size: 25px;
    line-height: 1.45;
  }

  .button {
    font-size: 18px;
  }
}

/* 2026-06-15 follow-up: avoid white/yellow text combinations */
.concept-band {
  background:
    linear-gradient(135deg, rgba(32, 200, 237, .95) 0 36%, transparent 36%),
    #101014;
}

.concept-band p {
  color: #f5f5f5;
}

.logo-culture-art {
  background:
    linear-gradient(135deg, #20c8ed 0 58%, #ff6aa9 58% 100%);
}

.concept-hero {
  background:
    radial-gradient(var(--green) 1.6px, transparent 1.6px),
    linear-gradient(135deg, #1ec2e8 0 62%, #ff6aa9 62% 100%);
  background-size: 15px 15px, auto;
}

.main-price {
  background: #20c8ed;
}

.main-price dd,
.main-price .note {
  color: #101014;
}

.lp-hero .hero-image {
  aspect-ratio: 16 / 9;
  object-position: center center;
}

/* 2026-06-15 follow-up: checker result emphasis and spacing */
.checker-result .result-grid {
  align-items: start;
  margin-bottom: 30px;
}

.checker-result .result-grid > div:first-child {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.checker-result .result-pill {
  min-width: 76px;
  height: 76px;
  padding: 0;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 30px;
  line-height: 1;
}

.checker-result .cta-row {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  margin-bottom: 20px;
}

.checker-result .cta-row .button {
  min-width: 220px;
}

.checker-result > .note {
  display: block;
  clear: both;
  margin: 0;
  padding-top: 14px;
  border-top: 2px solid rgba(16, 16, 20, .18);
}

@media (min-width: 721px) {
  .checker-result .result-pill {
    min-width: 92px;
    height: 92px;
    font-size: 36px;
  }

  .checker-result .result-grid > div:first-child h3 {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .checker-result .cta-row .button {
    width: 100%;
    min-width: 0;
  }
}

/* 2026-06-15 follow-up: make concept CTA and footer logos identifiable */
.concept-band .concept-logo-panel {
  display: inline-flex;
  width: min(520px, 92vw);
  max-width: 100%;
  min-height: 0;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #20c8ed 0 62%, #ff6aa9 62% 100%);
  box-shadow: 8px 8px 0 var(--ink);
}

.concept-band .concept-logo {
  width: 100%;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, .25));
}

.concept-band .concept-link-button {
  min-width: 210px;
  margin-top: 12px;
  border-color: var(--ink);
  background: #fff200;
  color: var(--ink) !important;
  box-shadow: 6px 6px 0 var(--ink);
}

.site-footer .footer-kaden-logo {
  width: min(310px, 72vw);
  max-height: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, .65));
}

.site-footer .footer-logo.wide.footer-kaden-logo {
  width: min(330px, 76vw);
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, .65)) !important;
}

/* 2026-06-15 follow-up: make service A/B/C/D labels readable on white cards */
.service-card .service-kicker {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 40px;
  margin-bottom: 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: #20c8ed;
  box-shadow: 4px 4px 0 var(--ink);
  font: 900 22px/1 "M PLUS Rounded 1c", "FOT-GonaB", "Gona", sans-serif;
}

.service-card:nth-child(2) .service-kicker {
  background: #ff6aa9;
}

.service-card:nth-child(3) .service-kicker {
  background: #00b894;
}

.service-card:nth-child(4) .service-kicker {
  background: #f06a2a;
  color: #fff;
}

/* 2026-06-15 growth pass: consultation guide, symptom routing, real pricing */
h1,
h2,
h3,
.button,
.site-nav,
.service-kicker,
.result-pill,
.price-menu-grid b {
  font-weight: 900;
}

.consult-kit {
  background:
    linear-gradient(90deg, rgba(16, 16, 20, .06) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(16, 16, 20, .06) 0 1px, transparent 1px 100%),
    #fffdf1;
  background-size: 28px 28px;
}

.consult-signs {
  background:
    radial-gradient(rgba(32, 200, 237, .24) 1.5px, transparent 1.5px),
    #fffdf1;
  background-size: 17px 17px;
}

.consult-sign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.consult-sign-grid article,
.voice-grid article {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.consult-sign-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 420px;
  padding: 24px;
}

.consult-sign-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.consult-sign-grid article > span,
.voice-grid article > span {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #20c8ed;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  line-height: 1;
}

.consult-sign-grid article:nth-child(2) > span,
.voice-grid article:nth-child(2) > span {
  background: #ff6aa9;
}

.consult-sign-grid article:nth-child(3) > span,
.voice-grid article:nth-child(3) > span {
  background: #00b894;
}

.consult-sign-grid article:nth-child(4) > span,
.voice-grid article:nth-child(4) > span {
  background: #f06a2a;
  color: #fff;
}

.consult-sign-grid article:nth-child(5) > span {
  background: #c8b7ff;
}

.consult-sign-grid h3,
.consult-sign-grid p,
.voice-grid p {
  margin-bottom: 0;
}

.consult-sign-grid p,
.voice-grid p {
  color: #3b3935;
}

.consult-sign-cta {
  background:
    linear-gradient(135deg, #20c8ed 0 56%, #ff6aa9 56% 100%) !important;
}

.consult-sign-cta .button {
  width: max-content;
  margin-top: 6px;
  border-color: var(--ink);
  background: #fff200;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.anatomy-visual {
  background:
    radial-gradient(rgba(0, 169, 130, .18) 1.4px, transparent 1.4px),
    #fffdf1;
  background-size: 16px 16px;
}

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.anatomy-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.anatomy-grid figure {
  margin: 0;
  border-bottom: 3px solid var(--ink);
  background: #20c8ed;
}

.anatomy-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.anatomy-grid div {
  padding: 24px;
}

.anatomy-grid span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #ff6aa9;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.anatomy-grid article:nth-child(2) span {
  background: #00b894;
}

.anatomy-grid p {
  margin-bottom: 0;
  color: #3b3935;
}

.consult-kit-layout {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
}

.consult-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-1deg);
}

.consult-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.consult-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.consult-steps article,
.symptom-grid article,
.price-note-grid article {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(16, 16, 20, .95);
}

.consult-steps article {
  padding: 22px;
}

.consult-steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  margin-bottom: 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #20c8ed;
  color: var(--ink);
  font: 900 14px/1 "M PLUS Rounded 1c", sans-serif;
}

.consult-steps h3 {
  margin-bottom: 8px;
}

.consult-steps p {
  margin-bottom: 0;
  color: #3b3935;
}

.symptom-route {
  background: #fff;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.symptom-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  padding: 24px;
}

.symptom-mark,
.case-tag {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #ff6aa9;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  line-height: 1;
}

.symptom-mark {
  min-height: 34px;
  padding: 8px 14px;
  font-size: 13px;
}

.symptom-grid p {
  margin-bottom: 0;
  color: #3b3935;
}

.symptom-grid b {
  align-self: end;
  display: block;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid rgba(16, 16, 20, .18);
  font-size: 14px;
  line-height: 1.7;
}

.revive-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 10px;
}

.revive-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 4px 4px 0 #20c8ed;
  font-weight: 900;
}

.price {
  background:
    radial-gradient(rgba(0, 169, 130, .18) 1.4px, transparent 1.4px),
    #fffdf1;
  background-size: 16px 16px;
}

.price-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-block {
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.price-block.main-price {
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, #20c8ed 0 62%, #ff6aa9 62% 100%);
  color: var(--ink);
}

.price-block-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .58fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.price-block-head h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.price-block-head p {
  margin-bottom: 0;
  color: #101014;
  font-weight: 700;
}

.price-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.price-menu-grid div {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.price-menu-grid span {
  font-weight: 900;
  line-height: 1.45;
}

.price-menu-grid b {
  align-self: end;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1;
}

.price-menu-grid small {
  color: #45413b;
  font-weight: 700;
  line-height: 1.55;
}

.price-block:not(.main-price) {
  background: #fff;
}

.price-block dl div {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
}

.price-block dt {
  line-height: 1.55;
}

.price-block dd {
  color: #101014;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.price-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.price-note-grid article {
  padding: 22px;
}

.price-note-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.price-note-grid p {
  margin-bottom: 0;
  color: #3b3935;
}

.case-card {
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.ba-pair.labeled {
  gap: 0;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
}

.ba-pair figure {
  position: relative;
  margin: 0;
}

.ba-pair figure + figure {
  border-left: 3px solid var(--ink);
}

.ba-pair figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.case-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.case-card h3,
.case-card p {
  padding-inline: 0;
}

.case-card h3,
.case-card p {
  margin-bottom: 0;
}

.case-tag {
  min-height: 32px;
  padding: 8px 12px;
  background: #20c8ed;
  font-size: 13px;
}

.case-meta {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 2px solid rgba(16, 16, 20, .18);
}

.case-meta div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  padding: 0;
  border: 0;
}

.case-meta dt {
  color: var(--green-dark);
  font-weight: 900;
}

.case-meta dd {
  color: #101014;
  font-weight: 700;
}

.revive-emblem {
  float: right;
  width: min(180px, 34vw);
  margin: 0 0 22px 28px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 7px 7px 0 var(--ink);
}

.line-flow-visual {
  margin: 0 0 24px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.line-flow-visual img {
  width: 100%;
  aspect-ratio: 1600 / 683;
  object-fit: contain;
  background: #20c8ed;
}

.voices {
  background:
    linear-gradient(135deg, rgba(32, 200, 237, .95) 0 34%, transparent 34%),
    radial-gradient(rgba(0, 169, 130, .18) 1.4px, transparent 1.4px),
    #fffdf1;
  background-size: auto, 17px 17px, auto;
}

.story-voice-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 29vw, 390px);
  gap: 24px;
  padding: 4px 8px 24px 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 4px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--ink) rgba(16, 16, 20, .14);
  scrollbar-width: thin;
}

.story-voice-track::-webkit-scrollbar {
  height: 10px;
}

.story-voice-track::-webkit-scrollbar-track {
  border: 2px solid var(--ink);
  background: #fff;
}

.story-voice-track::-webkit-scrollbar-thumb {
  border: 2px solid var(--ink);
  background: #20c8ed;
}

.story-voice-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.story-voice-card > a {
  display: block;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: #0d1216;
}

.story-voice-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 946 / 2048;
  object-fit: contain;
  transition: transform .2s ease;
}

.story-voice-card > a:hover img,
.story-voice-card > a:focus-visible img {
  transform: scale(1.015);
}

.story-voice-card figcaption {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 18px;
}

.story-voice-card figcaption span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #20c8ed;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.story-voice-card:nth-child(2) figcaption span {
  background: #ff6aa9;
}

.story-voice-card:nth-child(3) figcaption span {
  background: #00b894;
}

.story-voice-card:nth-child(4) figcaption span {
  background: #f06a2a;
  color: #fff;
}

.story-voice-card figcaption b {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
}

.story-voice-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.story-voice-cta .button {
  background: #fff;
}

.final-cta .line-grid {
  margin-top: 40px;
}

.mobile-line-sticky {
  display: none;
}

/* 2026-06-16 policies page */
.policy-page {
  background:
    radial-gradient(rgba(0, 169, 130, .18) 1.4px, transparent 1.4px),
    #fffdf1;
  background-size: 16px 16px;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 112px);
  padding-bottom: clamp(42px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(32, 200, 237, .95) 0 38%, transparent 38%),
    #fffdf1;
}

.policy-hero h1 {
  margin-bottom: 18px;
}

.policy-hero p:not(.eyebrow) {
  max-width: 860px;
  color: #3b3935;
  font-weight: 700;
}

.policy-hero img {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.policy-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 6vw, 90px) clamp(48px, 6vw, 72px);
  background: #fffdf1;
}

.policy-nav a {
  display: grid;
  gap: 10px;
  min-height: 128px;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.policy-nav span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #20c8ed;
  color: var(--ink);
  font-weight: 900;
}

.policy-nav a:nth-child(2) span {
  background: #ff6aa9;
}

.policy-nav a:nth-child(3) span {
  background: #00b894;
}

.policy-section {
  background: #fffdf1;
  border-top: 4px solid var(--ink);
}

.policy-section:nth-of-type(even) {
  background:
    radial-gradient(rgba(32, 200, 237, .22) 1.4px, transparent 1.4px),
    #fff;
  background-size: 16px 16px;
}

.policy-document {
  display: grid;
  gap: 16px;
  max-width: 1040px;
}

.policy-document article,
.policy-table-wrap {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.policy-document article {
  padding: clamp(22px, 3vw, 32px);
}

.policy-document h3 {
  margin-bottom: 12px;
}

.policy-document p:last-child,
.policy-document ul:last-child {
  margin-bottom: 0;
}

.policy-document ul {
  display: grid;
  gap: 8px;
  padding-left: 1.25em;
  color: #3b3935;
}

.policy-table-wrap {
  overflow: hidden;
  max-width: 1080px;
}

.policy-table-wrap.compact {
  margin: 18px 0;
  box-shadow: none;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.policy-table th,
.policy-table td {
  padding: 18px 20px;
  border-bottom: 2px solid rgba(16, 16, 20, .14);
  vertical-align: top;
  text-align: left;
  line-height: 1.85;
}

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

.policy-table th {
  width: 260px;
  background: #fffdf1;
  color: var(--ink);
  font-weight: 900;
}

.policy-muted {
  color: var(--muted);
  font-size: .92em;
}

@media (min-width: 721px) {
  body {
    font-size: 20px;
  }

  .sublead,
  .section-head p:not(.eyebrow),
  .split p,
  .service-card p,
  .price-block dd,
  .case-card p,
  .flow-list p,
  .area-grid p,
  details p,
  .final-cta p:not(.eyebrow),
  .concept-hero-copy p,
  .concept-card-grid p,
  .culture p,
  .attitude p,
  .checker-form label,
  .checker-result,
  .quick-cta p:not(.eyebrow),
  .concept-band p,
  .consult-steps p,
  .symptom-grid p,
  .price-note-grid p,
  .consult-sign-grid p,
  .voice-grid p,
  .anatomy-grid p,
  .policy-document p,
  .policy-document li,
  .policy-table th,
  .policy-table td,
  .policy-nav b {
    font-size: 20px;
    line-height: 1.95;
  }

  .problem-grid article span,
  .line-card span,
  .note,
  .muted,
  .symptom-grid b,
  .price-menu-grid small,
  .case-meta,
  .voice-grid b {
    font-size: 17px;
    line-height: 1.85;
  }
}

@media (max-width: 1180px) {
  .symptom-grid,
  .consult-sign-grid,
  .voice-grid,
  .anatomy-grid,
  .price-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-block-head {
    grid-template-columns: 1fr;
  }

  .price-block:not(.main-price) dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .price-block dd {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 960px) {
  .consult-kit-layout,
  .price-note-grid {
    grid-template-columns: 1fr;
  }

  .policy-hero,
  .policy-nav {
    grid-template-columns: 1fr;
  }

  .policy-hero img {
    width: min(220px, 64vw);
  }

  .consult-photo img {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 92px;
  }

  body.policy-page {
    padding-bottom: 0;
  }

  .concept-band .concept-logo-panel {
    width: 100%;
  }

  .consult-steps,
  .consult-sign-grid,
  .voice-grid,
  .anatomy-grid,
  .policy-nav,
  .symptom-grid,
  .price-layout,
  .price-menu-grid {
    grid-template-columns: 1fr;
  }

  .price-block.main-price {
    grid-column: auto;
  }

  .price-block dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-block dd {
    text-align: left;
    white-space: normal;
  }

  .price-menu-grid div {
    min-height: 0;
  }

  .consult-kit .cta-row .button {
    width: 100%;
  }

  .consult-sign-grid article,
  .voice-grid article {
    min-height: 0;
  }

  .story-voice-track {
    grid-auto-columns: min(82vw, 330px);
    gap: 16px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .story-voice-card {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .story-voice-card figcaption {
    min-height: 118px;
    padding: 16px;
  }

  .story-voice-card figcaption b {
    font-size: 19px;
  }

  .quick-cta-actions {
    justify-items: stretch;
  }

  .cta-sticker {
    width: 100%;
  }

  .consult-sign-icon {
    max-width: 210px;
  }

  .anatomy-grid div {
    padding: 20px;
  }

  .revive-emblem {
    float: none;
    display: block;
    width: min(180px, 62vw);
    margin: 0 0 24px;
  }

  .line-flow-visual img {
    aspect-ratio: 1600 / 683;
  }

  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .policy-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .policy-table td {
    padding-top: 6px;
  }

  .consult-sign-cta .button {
    width: 100%;
  }

  .mobile-line-sticky {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
  }

  .mobile-line-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 64px;
    padding: 12px 16px;
    border: 4px solid var(--ink);
    border-radius: 8px;
    background: #fff200;
    color: var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .mobile-line-sticky span:not(.line-icon) {
    display: grid;
    gap: 4px;
    line-height: 1.1;
  }

  .mobile-line-sticky b {
    font-size: 17px;
    line-height: 1.1;
  }

.mobile-line-sticky small {
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
  }
}

.celebrity-feature {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 200, 237, .92) 0 24%, transparent 24% 100%),
    radial-gradient(rgba(0, 169, 130, .22) 1.4px, transparent 1.4px),
    #fffdf1;
  background-size: auto, 16px 16px, auto;
}

.celebrity-feature .section-head {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
}

.celebrity-feature .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-inline: auto;
  padding: 7px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 #20c8ed;
}

.celebrity-feature .section-head p:not(.eyebrow) {
  color: #2c2925;
}

.celebrity-feature .media-title {
  margin-inline: auto;
  font-size: clamp(31px, 3.7vw, 48px);
  line-height: 1.22;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.celebrity-feature .media-title .media-line {
  display: flex;
  justify-content: center;
  gap: .2em;
}

.celebrity-feature .media-title .media-line > span {
  display: inline-block;
  white-space: nowrap;
}

.video-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  max-width: 1080px;
  margin: 28px auto 0;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 10px 10px 0 #20c8ed, 18px 18px 0 var(--ink);
}

.video-frame::before {
  content: "";
  position: absolute;
  top: -16px;
  right: clamp(18px, 5vw, 68px);
  width: clamp(96px, 16vw, 176px);
  height: 34px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--pink);
  transform: rotate(2deg);
  z-index: 2;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: clamp(39px, 11.2vw, 52px);
  }

  .phrase-title > span {
    display: block;
    width: max-content;
  }

  .phrase-copy > span {
    display: block;
    width: max-content;
  }

  .celebrity-feature {
    background:
      linear-gradient(135deg, rgba(32, 200, 237, .9) 0 18%, transparent 18% 100%),
      radial-gradient(rgba(0, 169, 130, .2) 1.2px, transparent 1.2px),
      #fffdf1;
    background-size: auto, 14px 14px, auto;
  }

  .celebrity-feature .section-head {
    padding: 20px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .celebrity-feature .media-title {
    font-size: clamp(27px, 8vw, 36px);
  }

  .celebrity-feature .media-title .media-line {
    display: block;
  }

  .celebrity-feature .media-title .media-line > span {
    display: block;
  }

  .video-frame {
    margin-top: 22px;
    border-width: 4px;
    box-shadow: 6px 6px 0 #20c8ed, 11px 11px 0 var(--ink);
  }

  .video-frame::before {
    top: -13px;
    right: 18px;
    width: 92px;
    height: 26px;
    border-width: 3px;
  }
}

.mid-line-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.mid-line-cta p:not(.eyebrow) {
  max-width: 860px;
  color: #f5f1e8;
}

.mid-line-cta .cta-row {
  justify-content: flex-end;
}

.nojima-profile {
  background: #fffdf1;
}

.nojima-profile-card {
  padding: clamp(24px, 4vw, 42px);
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
}

.nojima-profile-summary {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.nojima-profile-summary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-inline: auto;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #20c8ed;
}

.nojima-profile-bio h3 {
  margin-top: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
}

.nojima-profile-bio h3 span {
  white-space: nowrap;
}

.nojima-profile-bio p {
  margin: 0 0 14px;
  line-height: 1.9;
}

.nojima-profile-bio .button {
  margin-top: 10px;
}

.nojima-profile-history {
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 3px solid var(--ink);
}

.nojima-profile-history h4 {
  margin: 0 0 24px;
  font-size: clamp(26px, 2.5vw, 36px);
}

.nojima-history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.nojima-profile-history h5 {
  margin: 0 0 16px;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
}

.nojima-profile-history ul {
  margin: 0;
  padding-left: 1.35em;
}

.nojima-profile-history li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.nojima-feature-links {
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 2px solid #d6d1c7;
}

.nojima-feature-links p {
  margin: 8px 0 0;
  line-height: 1.75;
}

.nojima-feature-links a {
  color: #007b68;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (min-width: 1101px) {
  .concept-page .art-world .section-head,
  .concept-page .nojima-profile .section-head {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .concept-page .art-world .section-head .eyebrow,
  .concept-page .nojima-profile .section-head .eyebrow {
    margin-inline: auto;
  }

  .concept-page .art-world .section-head p:not(.eyebrow),
  .concept-page .nojima-profile .section-head p:not(.eyebrow) {
    max-width: 920px;
    margin-inline: auto;
  }

  .concept-page .art-world .section-head h2,
  .concept-page .nojima-profile .section-head h2 {
    font-size: clamp(32px, 3.15vw, 46px);
    white-space: nowrap;
  }

  .nojima-profile-summary {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  }
}

@media (min-width: 721px) {
  body:not(.concept-page):not(.policy-page) .split p,
  body:not(.concept-page):not(.policy-page) .service-card p,
  body:not(.concept-page):not(.policy-page) .price-block p,
  body:not(.concept-page):not(.policy-page) .price-block dd,
  body:not(.concept-page):not(.policy-page) .price-note-grid p,
  body:not(.concept-page):not(.policy-page) .price-menu-grid small,
  body:not(.concept-page):not(.policy-page) .case-card p,
  body:not(.concept-page):not(.policy-page) .case-meta,
  body:not(.concept-page):not(.policy-page) .flow-list p,
  body:not(.concept-page):not(.policy-page) .area-grid p,
  body:not(.concept-page):not(.policy-page) details p,
  body:not(.concept-page):not(.policy-page) .final-cta p:not(.eyebrow),
  body:not(.concept-page):not(.policy-page) .quick-cta p:not(.eyebrow),
  body:not(.concept-page):not(.policy-page) .mid-line-cta p:not(.eyebrow),
  body:not(.concept-page):not(.policy-page) .concept-band p,
  body:not(.concept-page):not(.policy-page) .consult-steps p,
  body:not(.concept-page):not(.policy-page) .symptom-grid p,
  body:not(.concept-page):not(.policy-page) .consult-sign-grid p,
  body:not(.concept-page):not(.policy-page) .voice-grid p,
  body:not(.concept-page):not(.policy-page) .anatomy-grid p,
  body:not(.concept-page):not(.policy-page) .problem-grid article span {
    font-size: 21px;
    line-height: 1.95;
  }
}

@media (max-width: 960px) {
  .mid-line-cta,
  .nojima-profile-summary,
  .nojima-history-grid {
    grid-template-columns: 1fr;
  }

  .nojima-profile-summary img {
    width: min(420px, 100%);
  }

  .mid-line-cta .cta-row {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nojima-profile-card {
    padding: 20px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .nojima-profile-summary {
    gap: 24px;
  }

  .nojima-profile-bio h3 {
    font-size: 27px;
  }

  .nojima-profile-bio h3 span {
    display: block;
  }

  .nojima-profile-bio p,
  .nojima-profile-history li,
  .nojima-feature-links p {
    font-size: 16px;
  }
}

/* 2026-07-01: align LP section headings with the width of each section body on desktop */
@media (min-width: 721px) {
  body:not(.concept-page):not(.policy-page) .section:not(.celebrity-feature) > .section-head {
    width: 100%;
    max-width: none;
  }
}

/* Keep dense card text inside its frame across tablet breakpoints. */
.price-block,
.price-block *,
.price-menu-grid *,
.consult-sign-grid article,
.consult-sign-grid article *,
.symptom-grid article,
.symptom-grid article * {
  min-width: 0;
}

.price-block dt,
.price-block dd,
.price-menu-grid span,
.price-menu-grid b,
.price-menu-grid small,
.consult-sign-grid article > span,
.symptom-mark {
  overflow-wrap: anywhere;
}

.consult-sign-grid article > span,
.symptom-mark {
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.25;
}

/* 2026-07-01 follow-up: keep key visuals and concept headings from looking clipped or awkwardly wrapped. */
.lp-hero .hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: start;
  align-content: center;
  gap: 14px;
  min-height: 0;
  overflow: visible;
  padding: 12px 18px 30px;
}

.lp-hero .hero-visual::before {
  z-index: 0;
}

.lp-hero .hero-image {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 680px;
  justify-self: stretch;
  object-fit: contain;
  background: #20c8ed;
}

.lp-hero .art-chip {
  position: relative;
  z-index: 2;
  inset: auto;
  width: auto;
  height: auto;
  min-width: 116px;
  min-height: 58px;
  padding: 12px 18px;
  transform: none;
  box-shadow: 5px 5px 0 var(--ink);
}

.lp-hero .chip-a {
  border-radius: 999px;
}

.lp-hero .chip-b {
  border-radius: 8px;
}

.video-frame {
  margin-top: 56px;
  overflow: visible;
}

.video-frame iframe {
  overflow: hidden;
  border-radius: 3px;
}

.video-frame::before {
  top: -46px;
  z-index: 2;
}

.concept-hero .concept-title {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.concept-page .concept-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

@media (max-width: 720px) {
  .lp-hero .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    padding: 10px 4px 22px;
  }

  .lp-hero .art-chip {
    min-width: 0;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .video-frame {
    margin-top: 44px;
    overflow: visible;
  }

  .video-frame::before {
    top: -34px;
  }

  .concept-hero .concept-title {
    font-size: clamp(34px, 9.2vw, 50px);
    line-height: 1.12;
  }
}

@media (min-width: 561px) and (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .mobile-line-sticky {
    display: none;
  }
}
