:root {
  --ink: #24302b;
  --ink-soft: #3d4944;
  --red: #536c7d;
  --red-dark: #445865;
  --ivory: #f7f3ed;
  --warm: #f2e8dc;
  --sage: #e8f0ed;
  --line: #dce2de;
  --white: #fff;
  --muted: #657069;
  --shadow-sm: 0 10px 30px rgba(36, 48, 43, 0.08);
  --shadow-lg: 0 28px 80px rgba(17, 25, 21, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --wrap: min(1160px, calc(100% - 48px));
  --ease: cubic-bezier(0.2, 0.65, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e6a939;
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.025em;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.15rem);
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
}

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

.wrap--narrow {
  max-width: 780px;
}

.section {
  padding-block: clamp(80px, 9vw, 132px);
}

.section--tint {
  background: var(--sage);
}

.section--warm {
  background: var(--ivory);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 770px;
  margin: 0 auto clamp(40px, 6vw, 68px);
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading--light {
  color: var(--white);
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading--light p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #d2be90;
}

.icon {
  flex: none;
  width: 1.25em;
  height: 1.25em;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 99999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(165, 58, 43, 0.22);
  transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 16px 34px rgba(134, 41, 31, 0.26);
}

.button--compact {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

.button--outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  background: var(--white);
  color: var(--ink);
}

.button--line {
  background: #188a52;
  box-shadow: 0 12px 26px rgba(24, 138, 82, 0.2);
}

.button--line:hover {
  background: #106e40;
}

.button--text {
  min-height: auto;
  padding: 0 0 7px;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button--text:hover {
  background: transparent;
  color: var(--red);
  box-shadow: none;
}

.notice-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
}

.notice-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.notice-bar p {
  margin: 0;
}

.notice-bar p span {
  margin-right: 8px;
  color: #d2be90;
  font-size: 0.55rem;
}

.notice-bar a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.notice-bar .icon {
  width: 1em;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(36, 48, 43, 0.08);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(36, 48, 43, 0.08);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-brand {
  margin-right: auto;
}

.site-brand__text {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.site-brand__text strong,
.site-brand__text small {
  display: block;
}

.site-brand__text strong {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.site-brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.site-brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.site-brand__mark .icon {
  width: 22px;
  height: 22px;
}

.custom-logo-link img {
  width: auto;
  max-height: 54px;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__list li {
  position: relative;
}

.primary-nav__list > li > a {
  display: block;
  padding-block: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav__list > li > a::after {
  position: absolute;
  right: 50%;
  bottom: 20px;
  left: 50%;
  height: 2px;
  background: var(--red);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.primary-nav__list > li:hover > a::after,
.primary-nav__list > .current-menu-item > a::after {
  right: 0;
  left: 0;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: -18px;
  min-width: 220px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  list-style: none;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: 180ms ease;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.primary-nav .sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  text-decoration: none;
}

.primary-nav .sub-menu a:hover {
  background: var(--ivory);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.header-phone small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.6rem;
  font-weight: 500;
}

.header-phone .icon {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.mobile-drawer {
  position: fixed;
  z-index: 3000;
  inset: 0;
  overflow-y: auto;
  padding: 82px 28px 40px;
  background: var(--ivory);
  opacity: 0;
  transform: translateX(100%);
  transition: transform 220ms var(--ease), opacity 220ms ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer__close {
  position: absolute;
  top: 18px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.mobile-drawer__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.mobile-drawer__list a {
  display: block;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-drawer__list .sub-menu {
  margin: 0;
  padding: 0 0 8px 18px;
  list-style: none;
}

.mobile-drawer__list .sub-menu a {
  padding: 9px 4px;
  font-family: inherit;
  font-size: 0.88rem;
}

.mobile-drawer__actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.mobile-drawer__actions p {
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.menu-open {
  overflow: hidden;
}

.home-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.01);
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 28, 24, 0.9) 0%, rgba(20, 28, 24, 0.66) 42%, rgba(20, 28, 24, 0.16) 72%, rgba(20, 28, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(20, 28, 24, 0.38), transparent 48%);
  content: "";
}

.home-hero {
  min-height: clamp(620px, calc(100svh - 116px), 820px);
}

.home-hero__inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 72px 96px;
}

.home-hero__copy {
  width: min(650px, 63%);
}

.home-hero h1 {
  max-width: 8.5em;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.25);
}

.home-hero__lead {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 2;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero__note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.77rem;
}

.home-hero__note .icon {
  color: #d2be90;
}

.home-hero__cue,
.page-hero__cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

.home-hero__cue span,
.page-hero__cue span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-strip p {
  margin: 0;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-strip p:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 3px;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.7rem;
}

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

.concern-grid a {
  position: relative;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms var(--ease), border-color 180ms ease, box-shadow 180ms ease;
}

.concern-grid a:hover {
  border-color: rgba(165, 58, 43, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.concern-grid span,
.concern-grid strong,
.concern-grid small {
  display: block;
}

.concern-grid span {
  margin-bottom: 26px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.concern-grid strong {
  margin-bottom: 7px;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1.22rem;
}

.concern-grid small {
  color: var(--muted);
  font-size: 0.76rem;
}

.family-consult {
  display: grid;
  align-items: center;
  grid-template-columns: 54px 1fr 30px;
  gap: 20px;
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.family-consult:hover {
  background: var(--warm);
  transform: translateY(-2px);
}

.family-consult > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
}

.family-consult p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.family-consult small,
.family-consult strong {
  display: block;
}

.family-consult small {
  margin-bottom: 3px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.family-consult strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1.05rem;
}

.family-consult > .icon {
  color: var(--red);
}

.sleep-check-section {
  position: relative;
  overflow: hidden;
}

.sleep-check-section::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.plugin-notice,
.review-empty {
  padding: 32px;
  border: 1px dashed currentColor;
  border-radius: var(--radius-md);
  text-align: center;
  opacity: 0.72;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(3, minmax(168px, auto));
  gap: 14px;
}

.service-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--sage);
  text-decoration: none;
  transition: transform 200ms var(--ease), box-shadow 200ms ease;
}

.service-panel:nth-child(3) {
  background: var(--ivory);
}

.service-panel:nth-child(4) {
  background: var(--warm);
}

.service-panel::after {
  position: absolute;
  z-index: -1;
  right: -38px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 35px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.service-panel:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-panel--large {
  grid-row: span 3;
  min-height: 532px;
  background: var(--ink);
  color: var(--white);
}

.service-panel--large::before {
  position: absolute;
  z-index: -1;
  inset: 18% -15% auto auto;
  width: 410px;
  height: 410px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 45% 55% 50% 48%;
  content: "";
  transform: rotate(18deg);
}

.service-panel__number {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-panel--large .service-panel__number {
  color: #d2be90;
}

.service-panel p {
  margin-bottom: 8px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-panel--large p {
  color: #d2be90;
}

.service-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.4vw, 2.15rem);
}

.service-panel > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.77rem;
}

.split-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
}

.split-layout--reverse > :first-child {
  order: 2;
}

.split-layout__copy h2 {
  margin-bottom: 24px;
}

.split-layout__copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.product-visual {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #dceae5, #aabfb7);
  box-shadow: var(--shadow-lg);
}

.product-visual::before {
  position: absolute;
  top: 16%;
  right: 10%;
  width: 72%;
  height: 42%;
  border: 16px solid rgba(255, 255, 255, 0.72);
  border-radius: 110px 34px 110px 34px;
  background:
    repeating-radial-gradient(circle at 40% 50%, transparent 0 5px, rgba(255, 255, 255, 0.32) 6px 8px),
    rgba(255, 255, 255, 0.18);
  content: "";
  transform: rotate(-9deg);
}

.product-visual__air span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.product-visual__air span:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 110px;
  height: 110px;
}

.product-visual__air span:nth-child(2) {
  top: 32%;
  left: 20%;
  width: 54px;
  height: 54px;
}

.product-visual__air span:nth-child(3) {
  top: 15%;
  right: 7%;
  width: 76px;
  height: 76px;
}

.product-visual p,
.product-visual strong,
.product-visual small {
  position: relative;
  z-index: 1;
  display: block;
}

.product-visual p {
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.product-visual strong {
  margin-bottom: 14px;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.5;
}

.product-visual small {
  font-size: 0.74rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(36, 48, 43, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list .icon {
  color: var(--red);
}

.craft-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 520px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(36, 48, 43, 0.94), rgba(36, 48, 43, 0.74)),
    var(--ink);
}

.craft-visual::before,
.craft-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.craft-visual::before {
  width: 380px;
  height: 380px;
}

.craft-visual::after {
  width: 280px;
  height: 280px;
}

.craft-visual__stamp {
  position: relative;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 2px solid #b89a58;
  color: #d2be90;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: center;
  transform: rotate(-4deg);
}

.craft-visual__layers i {
  position: absolute;
  width: 180px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(1px);
  transform: rotate(var(--turn, 0deg));
}

.craft-visual__layers i:nth-child(1) {
  top: 18%;
  left: 8%;
  --turn: 18deg;
}

.craft-visual__layers i:nth-child(2) {
  top: 30%;
  right: 2%;
  --turn: -22deg;
}

.craft-visual__layers i:nth-child(3) {
  right: 9%;
  bottom: 20%;
  --turn: 12deg;
}

.craft-visual__layers i:nth-child(4) {
  bottom: 10%;
  left: 8%;
  --turn: -13deg;
}

.mini-process {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.mini-process li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-process span {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
}

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

.choice-card {
  padding: 28px;
  border-top: 3px solid var(--red);
  background: var(--white);
}

.choice-card > span {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.choice-card h3 {
  margin: 24px 0 12px;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.owner-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.owner-panel__portrait {
  display: grid;
  min-height: 540px;
  place-content: center;
  gap: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(150deg, #65746d, #33413a);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.owner-panel__portrait.has-owner-image {
  background:
    linear-gradient(0deg, rgba(24, 32, 28, 0.24), rgba(24, 32, 28, 0.05)),
    var(--owner-image) center / cover no-repeat;
}

.owner-panel__portrait > span {
  display: grid;
  width: 100px;
  height: 100px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.owner-panel__portrait .icon {
  width: 48px;
  height: 48px;
}

.owner-panel__portrait small {
  font-size: 0.72rem;
}

.owner-panel__copy {
  align-self: center;
  padding: clamp(42px, 7vw, 90px);
}

.owner-panel__copy h2 {
  color: var(--white);
}

.owner-panel__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.owner-panel__copy blockquote {
  margin: 32px 0;
  padding-left: 22px;
  border-left: 2px solid #b89a58;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.owner-panel__copy .button--text {
  color: var(--white);
}

.centered-action {
  margin-top: 40px;
  text-align: center;
}

.store-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.store-card {
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
}

.store-card h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.store-details {
  margin: 0 0 32px;
}

.store-details > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding-block: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.store-details dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.store-details dd {
  margin: 0;
  font-size: 0.88rem;
}

.store-card .button--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.store-card .button--outline:hover {
  background: var(--white);
  color: var(--ink);
}

.map-frame {
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--radius-md);
  background: var(--sage);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: grayscale(0.35) contrast(0.92);
}

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

.post-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.post-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sage);
  text-decoration: none;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms var(--ease);
}

.post-card:hover .post-card__media img {
  transform: scale(1.035);
}

.post-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(36, 48, 43, 0.28);
}

.post-card__placeholder .icon {
  width: 48px;
  height: 48px;
}

.post-card__body,
.post-card--placeholder {
  padding: 26px;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 13px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
}

.post-card h3 {
  margin-bottom: 12px;
}

.post-card h3 a {
  text-decoration: none;
}

.post-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link .icon {
  width: 1em;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 100px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details > div {
  padding: 0 40px 22px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-list details > div p {
  margin: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.final-cta::before {
  position: absolute;
  top: -220px;
  left: 48%;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow, .microcopy) {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .eyebrow {
  color: #d2be90;
}

.final-cta__actions {
  display: grid;
  gap: 12px;
}

.final-cta__actions .button {
  width: 100%;
}

.microcopy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-align: center;
}

.page-hero {
  min-height: min(560px, calc(100svh - 116px));
}

.page-hero__content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding-block: 72px 90px;
}

.page-hero h1 {
  max-width: 12em;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.page-hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.page-hero--archive::after {
  background: rgba(20, 28, 24, 0.7);
}

.breadcrumbs {
  padding-block: 14px;
  color: var(--muted);
  font-size: 0.67rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 20px;
  color: #adb6b1;
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.section--intro {
  padding-block: clamp(60px, 7vw, 96px);
}

.intro-copy {
  position: relative;
  padding-left: 34px;
  border-left: 2px solid var(--red);
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 2.05;
}

.intro-copy p {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--red);
}

.feature-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-grid li {
  position: relative;
  padding: 24px 28px 24px 0;
}

.steps-grid li:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: 10px;
  width: 20%;
  height: 1px;
  background: var(--line);
  content: "";
}

.steps-grid > li > span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.steps-grid h3 {
  margin-bottom: 10px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(40px, 7vw, 90px);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-method {
  display: grid;
  grid-template-columns: 36px 1fr;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.contact-method .icon {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  color: var(--red);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.75rem;
}

.contact-method--line .icon {
  color: #188a52;
}

.contact-form-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-md);
  background: var(--ivory);
}

.article-content {
  overflow-wrap: anywhere;
}

.entry-content > * {
  margin-bottom: 1.5em;
}

.entry-content h2 {
  margin-top: 2.4em;
  margin-bottom: 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.entry-content h3 {
  margin-top: 2em;
}

.entry-content a {
  color: var(--red);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.policy-date {
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.82rem;
}

.single-article__header h1,
.compact-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.single-article__header .post-card__meta {
  color: rgba(255, 255, 255, 0.72);
}

.single-article__image {
  margin-top: clamp(-64px, -6vw, -34px);
}

.single-article__image img {
  width: 100%;
  max-height: 680px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.search-form {
  display: flex;
  max-width: 620px;
  margin: 0 auto 50px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px 0 0 999px;
}

.search-submit {
  padding: 10px 24px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: var(--red);
  color: var(--white);
}

.empty-state {
  text-align: center;
}

.error-page {
  min-height: min(650px, calc(100svh - 116px));
  text-align: center;
}

.error-page__number {
  margin: 0;
  color: rgba(255, 255, 255, 0.17);
  font-family: Arial, sans-serif;
  font-size: clamp(5rem, 17vw, 10rem);
  font-weight: 800;
  line-height: 0.72;
}

.error-page .page-hero__content {
  align-items: center;
}

.error-page h1 {
  max-width: 14em;
  margin: 22px auto 12px;
}

.error-page .page-hero__content > p:not(.eyebrow, .error-page__number) {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding-block: 84px 24px;
  background: #1b2420;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.72fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.site-brand__text--footer {
  margin-bottom: 22px;
  color: var(--white);
}

.site-brand__text--footer small {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__brand p,
.site-footer__info,
.site-footer__consult p {
  font-size: 0.78rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-footer address {
  margin-bottom: 12px;
  font-style: normal;
}

.footer-menu {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  list-style: none;
}

.footer-menu a,
.site-footer__info a {
  text-decoration: none;
}

.site-footer__consult .button {
  width: 100%;
  margin-bottom: 12px;
}

.footer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
}

.site-footer__bottom p {
  margin: 0;
}

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

.sp-only {
  display: none;
}

@media (max-width: 1120px) {
  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header__inner {
    min-height: 70px;
  }

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

@media (max-width: 820px) {
  :root {
    --wrap: min(100% - 32px, 680px);
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 66px;
    font-size: 15px;
  }

  .section {
    padding-block: 76px;
  }

  .notice-bar__inner {
    justify-content: center;
  }

  .notice-bar__inner > a {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .site-brand__mark {
    width: 36px;
    height: 36px;
  }

  .site-brand__text strong {
    font-size: 1rem;
  }

  .site-brand__text small {
    font-size: 0.54rem;
  }

  .home-hero {
    min-height: calc(100svh - 100px);
    max-height: 760px;
  }

  .home-hero::before {
    background-position: 61% center;
  }

  .home-hero::after {
    background:
      linear-gradient(90deg, rgba(20, 28, 24, 0.88), rgba(20, 28, 24, 0.42)),
      linear-gradient(0deg, rgba(20, 28, 24, 0.76), transparent 62%);
  }

  .home-hero__inner {
    align-items: flex-end;
    padding-block: 42px 62px;
  }

  .home-hero__copy {
    width: 100%;
  }

  .home-hero h1 {
    max-width: 9em;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 11vw, 3.8rem);
    line-height: 1.3;
  }

  .home-hero__lead {
    max-width: 30em;
    margin-bottom: 22px;
    font-size: 0.9rem;
    line-height: 1.78;
  }

  .home-hero__actions {
    gap: 8px;
  }

  .home-hero__actions .button {
    min-height: 49px;
    padding-inline: 17px;
    font-size: 0.8rem;
  }

  .home-hero__note {
    margin-top: 12px;
    font-size: 0.67rem;
  }

  .home-hero__cue {
    display: none;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip p {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip p:nth-child(2) {
    border-right: 0;
  }

  .trust-strip strong {
    font-size: 0.88rem;
  }

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

  .concern-grid a {
    min-height: 154px;
    padding: 20px;
  }

  .concern-grid span {
    margin-bottom: 18px;
  }

  .concern-grid strong {
    font-size: 1.05rem;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-panel,
  .service-panel--large {
    min-height: 210px;
    grid-row: auto;
  }

  .split-layout,
  .store-layout,
  .owner-panel,
  .faq-layout,
  .final-cta__inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse > :first-child {
    order: 0;
  }

  .product-visual,
  .craft-visual,
  .owner-panel__portrait,
  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }

  .choice-grid,
  .feature-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-panel__copy {
    padding: 44px 30px;
  }

  .faq-layout .section-heading {
    margin-bottom: 10px;
  }

  .page-hero {
    min-height: min(480px, calc(100svh - 100px));
  }

  .page-hero::before {
    background-position: 61% center;
  }

  .page-hero__content {
    justify-content: flex-end;
    padding-block: 44px 64px;
  }

  .page-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .page-hero__lead {
    font-size: 0.86rem;
    line-height: 1.72;
  }

  .page-hero__cue {
    display: none;
  }

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

  .steps-grid li:not(:last-child)::after {
    display: none;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    z-index: 2000;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 66px;
    grid-template-columns: 0.78fr 1.22fr;
    background: var(--white);
    box-shadow: 0 -8px 30px rgba(36, 48, 43, 0.14);
  }

  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-sticky-cta a:last-child {
    background: #188a52;
    color: var(--white);
  }

  .sp-only {
    display: block;
  }
}

@media (max-width: 560px) {
  :root {
    --radius-md: 18px;
    --radius-lg: 24px;
  }

  h2 {
    font-size: clamp(1.72rem, 8.4vw, 2.25rem);
    line-height: 1.5;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .button {
    min-height: 50px;
  }

  .concern-grid {
    gap: 8px;
  }

  .concern-grid a {
    min-height: 145px;
    padding: 17px;
  }

  .concern-grid strong {
    font-size: 0.98rem;
  }

  .concern-grid small {
    font-size: 0.67rem;
  }

  .family-consult {
    grid-template-columns: 42px 1fr 20px;
    gap: 12px;
    padding: 18px;
  }

  .family-consult > span {
    width: 42px;
    height: 42px;
  }

  .family-consult strong {
    font-size: 0.92rem;
  }

  .family-consult p {
    font-size: 0.7rem;
  }

  .choice-grid,
  .feature-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .choice-card,
  .feature-card {
    padding: 25px;
  }

  .product-visual,
  .craft-visual,
  .owner-panel__portrait,
  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .product-visual {
    padding: 28px;
  }

  .store-card {
    padding: 30px 24px;
  }

  .store-details > div {
    grid-template-columns: 72px 1fr;
  }

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

  .steps-grid li {
    display: grid;
    grid-template-columns: 42px 1fr;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid > li > span {
    grid-row: span 2;
    margin: 4px 0 0;
  }

  .steps-grid h3 {
    margin: 0 0 5px;
  }

  .steps-grid p {
    grid-column: 2;
  }

  .intro-copy {
    padding-left: 22px;
  }

  .site-footer {
    padding-top: 64px;
  }

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

  .site-footer__bottom {
    display: grid;
    gap: 5px;
    margin-top: 42px;
  }
}

@media (max-height: 690px) and (max-width: 820px) {
  .home-hero__inner {
    padding-block: 28px 36px;
  }

  .home-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .home-hero__lead {
    margin-bottom: 14px;
    line-height: 1.55;
  }

  .home-hero__note {
    display: none;
  }

  .page-hero__content {
    padding-block: 30px 36px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
