:root {
  --alu: #d9dcd1;
  --bg: #d9dcd1;
  --bg-deep: #d9dcd1;
  --paper: #d9dcd1;
  --white: #d9dcd1;
  --cream: #f3f4ef;
  --ink: #45463f;
  --ink-soft: #64655e;
  --taupe: #6f7168;
  --taupe-dark: #4f514a;
  --line: #c5c8bc;
  --gold: #a8ab9e;
  --sage: #7d7f75;
  --line-green: #3dae5a;
  --ig: #c13584;
  --shadow: 0 12px 36px rgba(70, 72, 64, 0.07);
  --radius: 8px;
  --header-h: 72px;
  --serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --en: "Bodoni Moda", "Shippori Mincho", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.06em;
  line-break: strict;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
.btn {
  font-family: inherit;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.en {
  font-family: var(--en);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--taupe);
  font-family: var(--en);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: none;
}

.eyebrow span {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.08em;
  margin: 0;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(217, 220, 209, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(217, 220, 209, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(70, 72, 64, 0.06);
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: auto;
  height: 40px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--en);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
}

.brand-text span {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.site-nav a:hover {
  color: var(--taupe-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--taupe-dark);
  position: absolute;
  left: 11px;
  transition: 0.25s;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--alu);
}

.hero-vert {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--en);
  letter-spacing: 0.42em;
  font-size: 12px;
  color: var(--taupe);
  margin: 0;
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding: 56px 0 88px;
  position: relative;
}

.hero-photo {
  position: relative;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: 3 / 4;
  box-shadow: none;
  background: transparent;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: relative;
  z-index: 1;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.hero-copy {
  text-align: left;
  padding-bottom: 12px;
}

.preopen {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--taupe);
  margin: 0 0 10px;
}

.hero-en {
  font-family: var(--en);
  font-size: clamp(22px, 3.2vw, 32px);
  font-style: italic;
  color: var(--sage);
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.hero-kicker {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 0 0 16px;
  margin: 0;
}

.hero h1 {
  font-size: clamp(24px, 3.6vw, 38px);
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-lead {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.benefits {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits li {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 0 18px;
  border-left: 1px solid var(--gold);
  white-space: nowrap;
}

.benefits li:first-child {
  padding-left: 0;
  border-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: none;
  opacity: 1;
}

.btn-line {
  background: var(--taupe-dark);
  color: #fff;
  box-shadow: none;
}

.btn-line:hover {
  background: #3a3c36;
}

.btn-ig {
  background: var(--taupe-dark);
  color: #fff;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border-color: var(--taupe-dark);
  color: var(--taupe-dark);
}

.btn-ghost:hover {
  background: var(--taupe-dark);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(196, 199, 189, 0.7);
  color: #c9ccc2;
}

.btn-ghost-light:hover {
  background: #c9ccc2;
  color: var(--taupe-dark);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-deep);
}

.section-paper {
  background: var(--paper);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(24px, 3.6vw, 34px);
}

.section-head p {
  margin: 18px auto 0;
  max-width: 32em;
  color: var(--ink-soft);
  line-height: 2.15;
}

.section-head p + p {
  margin-top: 0.7em;
}

.name-mark {
  position: relative;
  max-width: 480px;
  margin: 0 auto 64px;
  text-align: center;
  overflow: hidden;
}

.name-bg {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--en);
  font-size: clamp(80px, 18vw, 160px);
  color: rgba(79, 81, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.name-mark img {
  width: 100%;
  border-radius: 0;
  position: relative;
}

.name-mark figcaption {
  margin-top: 14px;
  font-family: var(--serif);
  letter-spacing: 0.18em;
  color: var(--taupe);
  font-size: 13px;
}

.concerns {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 28px 32px;
  box-shadow: none;
}

.concerns li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #c5c8bc;
  font-family: var(--serif);
  font-size: 18px;
}

.concerns ul {
  margin: 0;
  padding: 0;
}

.num {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--sage);
  flex: none;
  width: 2em;
}

.check {
  display: none;
}

.concerns-note {
  text-align: center;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 18px;
}

.concerns-note strong {
  display: block;
  font-size: 22px;
  margin-top: 6px;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.device-visual {
  position: relative;
}

.device-visual img.main {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: #d4d7cc;
  display: block;
}

.device-visual .inset {
  position: absolute;
  right: 16px;
  bottom: 16px;
  margin: 0;
  width: 128px;
  text-align: center;
}

.device-visual .inset img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid #d9dcd1;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 24px rgba(70, 72, 64, 0.16);
  background: transparent;
}

.device-visual .inset figcaption {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--taupe);
}

.feature-copy h3 {
  font-size: 26px;
  margin: 12px 0 16px;
}

.feature-copy p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

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

.card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: none;
  position: relative;
  text-align: center;
}

.card-visual {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #d4d7cc;
  color: var(--taupe);
}

.card-no {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 1;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-shadow: none;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: block;
}

.card-en {
  margin: 0;
  font-family: var(--en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--taupe-dark);
}

.card-body {
  padding: 22px 22px 28px;
  text-align: center;
  background: var(--alu);
}

.card-body h3 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.7;
}

.card-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.cases {
  max-width: 720px;
  margin: 0 auto;
}

.case-head {
  margin: 36px 0 20px;
  text-align: center;
}

.case-head:first-child {
  margin-top: 0;
}

.case-head h3 {
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: 0.16em;
}

.case-head-note {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.case {
  padding: 8px 0 22px;
  border-bottom: 1px solid var(--line);
}

.case--end {
  border-bottom: 0;
  padding-bottom: 10px;
}

.case-meta {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.ba figure {
  margin: 0;
  text-align: center;
}

.ba img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  display: block;
  background: transparent;
}

.ba figcaption {
  margin-top: 8px;
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--taupe);
}

.ba-arrow {
  font-family: var(--en);
  font-size: 16px;
  color: var(--sage);
  padding-bottom: 18px;
}

.cases-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  padding-top: 8px;
}

.cases-compact .case {
  border-bottom: 0;
  padding: 0;
}

.cases-compact .case-meta {
  font-size: 11px;
  margin-bottom: 8px;
}

.cases-compact .ba {
  gap: 6px;
}

.cases-compact .ba figcaption {
  font-size: 12px;
  margin-top: 6px;
}

.cases-compact .ba-arrow {
  font-size: 13px;
  padding-bottom: 16px;
}

@media (max-width: 640px) {
  .cases-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.disclaimer {
  text-align: right;
  font-size: 11px;
  color: #8a8d84;
  margin: 10px 0 0;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: none;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.was {
  color: #9aa094;
  text-decoration: line-through;
  font-size: 14px;
  margin: 0;
}

.now {
  font-family: var(--serif);
  font-size: 38px;
  margin: 6px 0 4px;
  color: var(--taupe-dark);
  letter-spacing: 0.08em;
}

.now small {
  font-size: 16px;
}

.price-card .tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--taupe-dark);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 4px 14px;
  border-radius: 0;
  margin-bottom: 12px;
}

.price-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.quote-card {
  background: var(--white);
  border-radius: 0;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: none;
}

.quote-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.hand-line {
  width: 88px;
  height: 10px;
  margin: 0 auto 22px;
  background:
    radial-gradient(circle at 8px 6px, var(--taupe) 1.4px, transparent 1.6px),
    linear-gradient(var(--taupe), var(--taupe)) center / 100% 1px no-repeat;
}

.quote-card p {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 15px;
}

.sign {
  margin-top: 22px !important;
  font-family: var(--en);
  font-style: italic;
  letter-spacing: 0.08em;
  font-size: 15px !important;
  color: var(--taupe);
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points article {
  background: rgba(217, 220, 209, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.about-points h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.about-points p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.info-box {
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: none;
}

.dl {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 10px 16px;
  font-size: 14px;
}

.dl dt {
  color: var(--taupe);
  font-family: var(--serif);
}

.dl dd {
  margin: 0;
}

.map-link {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid var(--taupe);
  font-size: 13px;
}

.reserve-box {
  text-align: center;
}

.reserve-box h3 {
  font-size: 24px;
  margin: 10px 0 12px;
}

.reserve-box p {
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.reserve-actions {
  display: grid;
  gap: 12px;
}

.cta-band {
  background: var(--taupe-dark);
  color: #c9ccc2;
  text-align: center;
  padding: 80px 0 96px;
}

.cta-en {
  font-family: var(--en);
  font-size: clamp(24px, 4vw, 36px);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #b4b8ad;
}

.cta-band h2 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 3.6vw, 32px);
}

.cta-band p {
  margin: 0 auto 28px;
  max-width: 34em;
  opacity: 0.86;
}

.cta-band .hero-actions {
  justify-content: center;
}

.site-footer {
  background: #3c3d38;
  color: #c9ccc2;
  padding: 36px 0 110px;
  text-align: center;
  font-size: 12px;
}

.site-footer img {
  width: min(168px, 42vw);
  height: auto;
  margin: 0 auto 16px;
  border-radius: 0;
  background: transparent;
}

.float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(217, 220, 209, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.float-cta a {
  min-height: 58px;
  display: grid;
  place-items: center;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.float-cta .line {
  background: var(--line-green);
  color: #fff;
}

.float-cta .ig {
  background: var(--taupe);
  color: #fff;
}

p {
  text-wrap: pretty;
}

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(217, 220, 209, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 36px 24px;
    gap: 28px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .feature-grid,
  .cards,
  .price-grid,
  .philosophy-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-vert {
    display: none;
  }

  .hero-grid {
    width: min(1080px, calc(100% - 28px));
    min-height: auto;
    padding: 24px 0 48px;
    gap: 28px;
  }

  .hero-photo {
    max-width: 220px;
    margin-inline: auto;
    aspect-ratio: 3 / 4;
    border-radius: 0;
  }

  .hero-photo::before {
    inset: 12px -12px -12px 12px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-en {
    font-size: 18px;
  }

  .section-head h2 {
    font-size: 22px;
  }

  .feature-copy h3 {
    font-size: 22px;
  }

  .cta-en {
    font-size: 22px;
  }

  .cta-band h2 {
    font-size: 22px;
  }

  .hero-actions,
  .benefits {
    justify-content: center;
  }

  .device-visual .inset {
    width: 96px;
    right: 10px;
    bottom: 10px;
  }

  .device-visual .inset img {
    width: 96px;
    height: 96px;
  }

  .section {
    padding: 64px 0;
  }

  .quote-card {
    order: 2;
  }

  .benefits {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  .benefits li {
    border-left: 1px solid var(--gold);
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
}

@media (min-width: 861px) {
  .float-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 58px;
  }

  body {
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  h1,
  h2,
  h3 {
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

  .wrap {
    width: min(1080px, calc(100% - 28px));
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    gap: 8px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 22px;
  }

  .preopen {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
  }

  .hero-en {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.95;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-actions .btn,
  .reserve-actions .btn {
    width: 100%;
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 0 16px;
  }

  .btn {
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .benefits li {
    font-size: 11px;
    letter-spacing: 0.03em;
    padding: 0 8px;
  }

  .section {
    padding: 52px 0;
  }

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

  .section-head h2 {
    font-size: 20px;
    margin-top: 10px;
  }

  .section-head p {
    font-size: 13px;
    line-height: 1.95;
    margin-top: 12px;
    max-width: 22em;
  }

  .name-mark {
    margin-bottom: 36px;
  }

  .name-mark figcaption {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .quote-card {
    padding: 28px 18px;
  }

  .quote-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .quote-card p {
    font-size: 13px;
    line-height: 1.9;
  }

  .about-points article {
    padding: 16px 16px;
  }

  .about-points h3 {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-points p {
    font-size: 12px;
    line-height: 1.9;
  }

  .concerns {
    padding: 8px 16px 24px;
  }

  .concerns li {
    font-size: 14px;
    gap: 12px;
    padding: 12px 0;
  }

  .concerns-note {
    font-size: 13px;
    margin-top: 18px;
  }

  .concerns-note strong {
    font-size: 15px;
  }

  .feature-copy h3 {
    font-size: 18px;
    margin: 8px 0 12px;
  }

  .feature-copy p {
    font-size: 13px;
    line-height: 1.9;
  }

  .card-en {
    font-size: 13px;
  }

  .card-body {
    padding: 16px 16px 22px;
  }

  .card-body h3 {
    font-size: 15px;
  }

  .card-body p {
    font-size: 12px;
    line-height: 1.85;
  }

  .case-head h3 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .case-head-note,
  .case-meta {
    font-size: 11px;
  }

  .price-card {
    padding: 28px 18px 24px;
  }

  .price-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .now {
    font-size: 28px;
  }

  .now small {
    font-size: 13px;
  }

  .price-note,
  .was {
    font-size: 12px;
  }

  .info-box h2 {
    font-size: 22px;
  }

  .dl {
    font-size: 13px;
  }

  .reserve-box h3 {
    font-size: 18px;
  }

  .reserve-box p {
    font-size: 13px;
    line-height: 1.9;
  }

  .cta-band {
    padding: 52px 0 88px;
  }

  .cta-en {
    font-size: 18px;
  }

  .cta-band h2 {
    font-size: 18px;
  }

  .cta-band p {
    font-size: 13px;
    line-height: 1.9;
  }

  .site-footer {
    font-size: 11px;
    line-height: 1.8;
  }

  .float-cta a {
    min-height: 50px;
    font-size: 12px;
  }
}
