:root {
  --color-ink: #304b52;
  --color-ink-soft: #5c7178;
  --color-teal: #2e7d86;
  --color-teal-deep: #24626a;
  --color-sky: #e7f4f3;
  --color-peach: #fbe9de;
  --color-peach-deep: #f0b98c;
  --color-coral: #f6d2c9;
  --color-coral-deep: #e8a99a;
  --color-leaf: #dce8ae;
  --color-leaf-deep: #9fbe5c;
  --color-cream: #fffcf7;
  --color-cream-deep: #e7f4f3;
  --color-white: #ffffff;
  --color-gold: #f3c64e;
  --color-gold-deep: #e3b23c;
  --color-line: #d9e6e5;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-heading: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-number: "Manrope", "Noto Sans JP", sans-serif;
  --content-width: 1280px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --header-height: 76px;
  --section-space: clamp(80px, 9vw, 116px);
  --button-radius: 40px;
  --icon-area-fee: url("../images/illustrations/visit-icon-area-fee-included.png");
  --icon-one-person: url("../images/illustrations/visit-icon-one-person.png");
  --icon-wheelchair: url("../images/illustrations/visit-icon-wheelchair.png");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
body,
button,
a {
  letter-spacing: 0;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
}
.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--color-ink);
  background: var(--color-white);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--color-teal);
  font-size: 16px;
  font-weight: 600;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ヘッダー */
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 14px rgba(54, 46, 37, 0.055);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 28px), 1320px);
  height: 100%;
  margin-inline: auto;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  width: 206px;
  height: 68px;
  flex: 0 0 206px;
  gap: 8px;
  color: var(--color-ink);
  text-decoration: none;
}
.brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1.25;
  white-space: nowrap;
}
.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 600;
}
.site-nav,
.header-actions {
  display: none;
}
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.mobile-phone,
.menu-toggle {
  display: grid;
  min-width: 52px;
  min-height: 52px;
  place-content: center;
  border: 0;
  color: var(--color-teal);
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}
.mobile-phone {
  gap: 3px;
  justify-items: center;
}
.mobile-phone svg {
  width: 28px;
  height: 28px;
}
.mobile-phone span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.menu-toggle {
  gap: 3px;
}
.menu-toggle-lines {
  display: grid;
  gap: 5px;
  justify-items: center;
}
.menu-toggle-lines i {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
}
.menu-toggle > span:last-child {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.site-nav.is-open {
  position: absolute;
  top: calc(100% + 1px);
  right: 14px;
  left: 14px;
  display: grid;
  padding: 8px 18px;
  background: var(--color-white);
  box-shadow: 0 16px 35px rgba(54, 46, 37, 0.13);
}
.site-nav.is-open a {
  padding: 14px 2px;
  border-bottom: 1px solid var(--color-line);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav.is-open a:last-child {
  border-bottom: 0;
}

/* ボタン */
.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: var(--button-radius);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}
.button-phone {
  color: var(--color-ink);
  background: var(--color-gold);
}
.button-line {
  color: var(--color-teal);
  background: var(--color-white);
  border-width: 1.5px;
  border-color: var(--color-teal);
}
.hero-cta .button-phone::before {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
  content: "☎";
  transform: rotate(-14deg);
}
.hero-cta .button-line::before,
.header-actions .button-line::before {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-teal);
  font-size: 10px;
  font-weight: 800;
  content: "LINE";
}
.button-phone:hover,
.button-phone:focus-visible {
  background: var(--color-gold-deep);
}
.button-line:hover,
.button-line:focus-visible {
  background: var(--color-sky);
}

/* ファーストビュー：写真を全面背景として文字を前面に配置 */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  background-color: var(--color-cream);
}
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.98) 0%,
    rgba(255, 252, 247, 0.94) 62%,
    rgba(255, 252, 247, 0.68) 82%,
    rgba(255, 252, 247, 0.34) 100%
  );
  content: "";
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  align-items: flex-start;
}
.hero-copy {
  width: 100%;
  max-width: 650px;
  padding: 48px 0 68px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  width: 24px;
  height: 1px;
  background: var(--color-teal);
  content: "";
}
.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(32px, 9.2vw, 38px);
  line-height: 1.55;
}
.hero h1 span {
  color: var(--color-teal);
}
.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 2;
}
.hero-price-panel {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 22px;
  background: rgba(237, 243, 238, 0.9);
}
.hero-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.hero-price-row > span {
  color: var(--color-teal);
  font-size: 16px;
  font-weight: 600;
}
.hero-price-row strong {
  color: var(--color-teal);
  font-family: var(--font-number);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.hero-price-row small {
  margin-left: 3px;
  font-family: var(--font-number);
  font-size: 17px;
  font-weight: 700;
}
.hero-price-panel > p {
  margin: 8px 0 16px;
  color: var(--color-ink);
  font-size: 16px;
}
.hero-price-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 24px;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px solid rgba(54, 95, 71, 0.18);
  list-style: none;
}
.hero-price-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
}
.hero-price-panel li::before {
  position: absolute;
  top: 0.7em;
  left: 1px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--color-teal);
  border-left: 2px solid var(--color-teal);
  content: "";
  transform: rotate(-45deg);
}
.hero-info-icon {
  display: none;
}
.hero-cta {
  display: grid;
  gap: 12px;
}
.button-label-mobile {
  display: none;
}
.button-phone-mobile {
  display: none;
}
.call-note {
  margin: 14px 0 0;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.65;
}
.hero-image-wrap {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  background: var(--color-cream-deep);
}
.hero-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% top;
  filter: saturate(1.05) brightness(1.03);
}

/* スマートフォンでは写真・見出し・料金・CTAを一画面にまとめる */
@media (max-width: 699px) {
  .hero {
    height: auto;
    min-height: 880px;
    background-color: var(--color-cream);
  }
  .hero::before {
    display: block;
    background:
      linear-gradient(
        180deg,
        rgba(255, 252, 247, 0.84) 0%,
        rgba(255, 252, 247, 0.26) 36%,
        rgba(255, 252, 247, 0.04) 56%,
        rgba(255, 252, 247, 0.86) 75%,
        var(--color-cream) 92%
      ),
      linear-gradient(
        90deg,
        rgba(255, 252, 247, 0.82) 0%,
        rgba(255, 252, 247, 0.4) 55%,
        rgba(255, 252, 247, 0) 100%
      );
  }
  .hero::after {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 50%;
    width: 28px;
    height: 28px;
    border-right: 2px solid var(--color-teal);
    border-bottom: 2px solid var(--color-teal);
    content: "";
    transform: translateX(-50%) rotate(45deg);
  }
  .hero-content {
    min-height: 880px;
  }
  .hero-copy {
    max-width: none;
    padding: 32px 0 74px;
  }
  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 15px;
  }
  .hero .eyebrow::before,
  .hero .eyebrow::after {
    width: 18px;
  }
  .hero h1 {
    margin-bottom: 0;
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.55;
  }
  .hero-lead {
    display: none;
  }
  .hero-price-panel {
    width: 100%;
    padding: 22px 22px 20px;
    margin: clamp(132px, 37vw, 154px) 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.88);
    box-shadow: 0 10px 28px rgba(68, 54, 38, 0.08);
    backdrop-filter: blur(3px);
  }
  .hero-price-row {
    justify-content: flex-start;
    gap: 24px;
  }
  .hero-price-row > span {
    color: var(--color-ink);
    font-size: 17px;
  }
  .hero-price-row strong {
    font-size: 43px;
  }
  .hero-price-panel > p {
    margin: 10px 0 18px;
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-price-panel ul {
    display: grid;
    gap: 14px;
    padding-top: 18px;
  }
  .hero-price-panel li {
    display: flex;
    align-items: center;
    min-height: 30px;
    padding-left: 0;
    font-size: 16px;
    font-weight: 600;
  }
  .hero-price-panel li::before {
    display: none;
  }
  .hero-info-icon {
    display: grid;
    width: 30px;
    height: 30px;
    margin-right: 14px;
    flex: 0 0 30px;
    place-items: center;
    color: var(--color-teal);
  }
  .hero-info-icon svg {
    width: 28px;
    height: 28px;
  }
  .hero-cta {
    gap: 10px;
    width: 100%;
  }
  .hero-cta .button {
    min-height: 58px;
  }
  .button-label-desktop {
    display: none;
  }
  .button-label-mobile {
    display: inline;
  }
  .button-phone-desktop {
    display: none;
  }
  .button-phone-mobile {
    display: inline-flex;
  }
  .call-note {
    display: block;
    margin: 18px 2px 0;
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-image-wrap {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: auto;
    margin: 0;
    background: transparent;
  }
  .hero-image-wrap picture {
    height: auto;
  }
  .hero-image {
    width: 108%;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transform: translate(-4%, -18px);
  }
}

/* 3つの安心 */
.trust {
  padding: 74px 0 82px;
  background-color: var(--color-sky);
}
.trust-heading {
  margin-bottom: 46px;
  text-align: center;
}
.trust-heading h2 {
  margin: 0;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.45;
}
.trust-grid {
  display: grid;
  gap: 16px;
}
.trust-card {
  position: relative;
  padding: 22px 22px 26px;
  border-radius: 26px;
  overflow: hidden;
}
.trust-card-1,
.trust-card-2,
.trust-card-3 {
  background: var(--color-white);
  border: 1px solid var(--color-line);
}
.trust-card-1 .trust-number {
  color: var(--color-teal);
}
.trust-card-2 .trust-number {
  color: var(--color-coral-deep);
}
.trust-card-3 .trust-number {
  color: var(--color-leaf-deep);
}
.trust-number {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-number);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.trust-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}
.trust-icon {
  display: block;
  width: 100%;
  height: 118px;
  margin: 0 0 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.trust-card-1 .trust-icon {
  background-image: var(--icon-area-fee);
}
.trust-card-2 .trust-icon {
  background-image: var(--icon-one-person);
}
.trust-card-3 .trust-icon {
  background-image: var(--icon-wheelchair);
}

/* お悩み */
.concerns {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0 60px;
  background: var(--color-peach);
}
.concerns-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}
.concerns-media,
.concerns-body {
  min-width: 0;
}
.concerns-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc(var(--page-gutter) * -1);
  bottom: 0;
  left: calc(var(--page-gutter) * -1);
  opacity: 0.25;
  pointer-events: none;
}
.concerns-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.concerns-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) brightness(1.03);
}
.concerns-body {
  position: relative;
  z-index: 1;
}
.concerns-body h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 8vw, 42px);
  line-height: 1.5;
}
.concerns-body > p:not(.section-kicker) {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 2;
}
.concerns-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.concerns-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}
.concerns-list li::before {
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--color-teal);
  border-left: 2px solid var(--color-teal);
  content: "";
  transform: rotate(-45deg);
}
.concerns-note {
  margin-top: 28px;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 699px) {
  .concerns {
    padding: 34px 0 38px;
  }
  .concerns-body {
    padding: 28px 0 32px;
  }
  .concerns-media {
    top: 10px;
    bottom: 10px;
  }
}

/* FV以下の共通レイアウト */
body {
  padding-bottom: calc(74px + env(safe-area-inset-bottom));
}
.section {
  padding: var(--section-space) 0;
  background: var(--color-cream);
}
.muted {
  background-color: var(--color-cream-deep);
}
.narrow {
  max-width: 980px;
}
.section-heading {
  margin-bottom: 42px;
}
.section h2,
.contact h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 7vw, 42px);
  line-height: 1.5;
}
.section h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.55;
}
.large-text {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
}
.content-stack {
  display: grid;
  gap: 24px;
}
.content-stack p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.9;
}
.content-stack strong {
  color: var(--color-ink);
  font-weight: 700;
}
.split-layout {
  display: grid;
  gap: 42px;
}
.check-list,
.preparation-list,
.area-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list {
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}
.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--color-teal);
  border-left: 2px solid var(--color-teal);
  content: "";
  transform: rotate(-45deg);
}
.service-note-grid,
.section-subgrid {
  display: grid;
  gap: 24px;
}
.section-subgrid {
  margin-top: 48px;
}
.section-cta {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

/* サービス・料金 */
.pricing {
  background-color: var(--color-cream);
}
.price-display {
  padding: 28px 24px;
  background: var(--color-sky);
  border-top: 3px solid var(--color-teal);
}
.price-display span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-teal);
  font-size: 18px;
  font-weight: 700;
}
.price-display strong {
  display: block;
  color: var(--color-teal);
  font-family: var(--font-number);
  font-size: clamp(54px, 16vw, 72px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.price-display small {
  margin-left: 4px;
  font-size: 22px;
}
.price-display p {
  margin: 14px 0 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
}

.area-list {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.area-list li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.area-list li::before {
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  content: "";
}
.service-note-grid h3 {
  position: relative;
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
}
.service-note-grid > div:nth-child(1) h3 {
  background: var(--color-sky);
}
.service-note-grid > div:nth-child(2) h3 {
  background: var(--color-coral);
}
.service-note-grid-hours > div:nth-child(1) h3 {
  background: var(--color-leaf);
}
.service-note-grid-hours > div:nth-child(2) h3 {
  background: var(--color-sky);
}
.service-note-grid .large-text {
  margin-bottom: 14px;
  color: var(--color-ink);
}
.service-note-grid .large-text strong {
  color: var(--color-teal);
  font-family: var(--font-number);
  font-size: 36px;
  line-height: 1.25;
}

/* 訪問する美容師 */
.stylist {
  background: var(--color-peach);
}
.stylist-inner {
  max-width: 980px;
}
.stylist-copy p:not(.section-kicker) {
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.95;
}
.stylist-copy .large-text {
  color: var(--color-ink);
}
.stylist-layout {
  display: grid;
  gap: 8px;
}
.stylist-media {
  position: relative;
  isolation: isolate;
  max-width: 240px;
  margin: 16px auto 0;
}
.stylist-media::before {
  position: absolute;
  z-index: 0;
  top: -7%;
  right: -7%;
  width: 88%;
  height: 88%;
  border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
  background: linear-gradient(135deg, var(--color-leaf) 0%, var(--color-sky) 100%);
  content: "";
}
.stylist-media picture {
  position: relative;
  z-index: 1;
  display: block;
}
.stylist-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 42% 58% 63% 37% / 47% 53% 47% 53%;
  filter: saturate(0.96) contrast(0.99) brightness(1.01);
}
@media (min-width: 700px) {
  .stylist-layout {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
    align-items: center;
    gap: clamp(40px, 6vw, 72px);
  }
  .stylist-media {
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 1100px) {
  .stylist-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  }
}

/* ご利用の流れ */
.flow-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
  counter-reset: flow;
}
.flow-list li {
  position: relative;
  padding: 0 0 32px 48px;
  border-left: 1px solid var(--color-line);
}
.flow-list li:last-child {
  padding-bottom: 0;
}
.flow-list span {
  position: absolute;
  top: 0;
  left: -22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-teal);
  border-radius: 50%;
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 700;
}
.flow-list h3 {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 21px;
}
.flow-list p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

/* 当日お借りするもの */
.prep-visual {
  margin: 8px 0 24px;
  overflow: hidden;
  border-radius: 20px;
}
.prep-visual picture {
  display: block;
}
.prep-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.96) contrast(0.99) brightness(1.01);
}
@media (min-width: 700px) {
  .prep-visual {
    max-width: 440px;
  }
}
.preparation-list {
  margin-bottom: 20px;
}
.note-box-group {
  display: grid;
  gap: 20px;
  align-content: start;
}
.note-box {
  padding: 20px 22px;
  background: var(--color-cream);
  border-left: 3px solid var(--color-teal);
}
.note-box h3 {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 18px;
}
.note-box p {
  margin: 0;
}
.facility-note p + p {
  margin-top: 10px;
}

/* FAQ */
.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-cream);
}
.faq-section .container {
  position: relative;
  z-index: 1;
}
.faq-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.faq-deco-leaf {
  top: 6%;
  left: -4%;
  width: 140px;
  height: 140px;
  border-radius: 0% 100% 0% 100%;
  background: var(--color-leaf);
  opacity: 0.6;
  transform: rotate(18deg);
}
.faq-deco-dot {
  right: 6%;
  bottom: 10%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-coral);
  opacity: 0.55;
}
@media (max-width: 699px) {
  .faq-deco-leaf {
    width: 90px;
    height: 90px;
  }
  .faq-deco-dot {
    width: 48px;
    height: 48px;
  }
}
.faq-list {
  border-top: 1px solid var(--color-line);
}
.faq-list details {
  border-bottom: 1px solid var(--color-line);
}
.faq-list details[open] {
  background: var(--color-sky);
}
.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 18px 52px 18px 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 2px;
  background: var(--color-teal);
  content: "";
}
.faq-list summary::after {
  transform: rotate(90deg);
}
.faq-list details[open] summary::after {
  transform: rotate(0deg);
}
.faq-list p {
  padding: 0 20px 22px 0;
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.9;
}
.faq-secondary {
  margin-top: 0;
}
.faq-more-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
  margin-top: 4px;
  border: 0;
  border-top: 1px solid var(--color-line);
  background: none;
  color: var(--color-teal);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.faq-more-toggle:hover,
.faq-more-toggle:focus-visible {
  color: var(--color-teal-deep);
}
.faq-more-toggle[hidden] {
  display: none;
}
.faq-more-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}
.faq-more-arrow-up {
  transform: rotate(-135deg) translate(-1px, -1px);
}
.faq-more-toggle-close {
  margin-top: 8px;
  border-top: 0;
  border-bottom: 1px solid var(--color-line);
}

/* 最終CTA */
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 10vw, 116px) 0;
  color: var(--color-white);
  background: var(--color-teal);
}
.contact .container {
  position: relative;
  z-index: 1;
}
.contact-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.contact-deco-dot {
  top: 8%;
  right: 6%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(243, 198, 78, 0.22);
}
.contact-deco-leaf {
  bottom: 6%;
  left: -3%;
  width: 130px;
  height: 130px;
  border-radius: 0% 100% 0% 100%;
  background: rgba(246, 210, 201, 0.22);
  transform: rotate(-15deg);
}
@media (max-width: 699px) {
  .contact-deco-dot {
    width: 56px;
    height: 56px;
  }
  .contact-deco-leaf {
    width: 84px;
    height: 84px;
  }
}
.contact .section-kicker {
  color: #e4d4aa;
}
.contact h2 {
  color: var(--color-white);
}
.contact-lead {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.95;
}
.contact-phone {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}
.contact-phone span {
  color: #e4d4aa;
  font-size: 15px;
  font-weight: 700;
}
.contact-phone-number {
  display: block;
  color: var(--color-white);
  font-family: var(--font-number);
  font-size: clamp(42px, 12vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}
.contact-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-actions .button-line {
  border-color: rgba(255, 255, 255, 0.38);
}
.contact-note {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.75;
}

/* 下層ページ */
.subpage-main {
  background: var(--color-cream);
}
.privacy-page {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--color-cream);
}
.privacy-page h1 {
  margin: 0 0 32px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 7vw, 46px);
  line-height: 1.45;
}
.privacy-page h2 {
  margin: 42px 0 14px;
  color: var(--color-teal);
  font-family: var(--font-ja);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}
.privacy-page p,
.privacy-page li {
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.95;
}
.privacy-page ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  margin: 0;
}
.privacy-page a {
  color: var(--color-teal);
  font-weight: 700;
}
.privacy-date {
  margin-top: 42px;
}

/* フッター */
.site-footer {
  padding: 44px 0 calc(40px + env(safe-area-inset-bottom));
  color: var(--color-white);
  background: #241f1a;
}
.footer-inner {
  display: grid;
  gap: 28px;
}
.footer-brand {
  width: auto;
  height: auto;
  flex-basis: auto;
  color: var(--color-white);
}
.footer-brand img {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
}
.footer-brand span {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.8;
}
.footer-info {
  display: grid;
  gap: 10px;
}
.footer-info p {
  display: grid;
  gap: 4px;
}
.footer-info strong {
  color: #e4d4aa;
  font-size: 14px;
}
.footer-info a {
  color: var(--color-white);
  font-family: var(--font-number);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* スマートフォン固定CTA */
.mobile-cta {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-line);
}
.mobile-cta .button {
  min-height: 54px;
  padding: 10px 12px;
  font-size: 15px;
}

@media (min-width: 700px) and (max-width: 1099px) {
  .price-display strong {
    font-size: 48px;
  }
  .hero {
    min-height: 680px;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(247, 242, 232, 0.99) 0%,
      rgba(247, 242, 232, 0.96) 46%,
      rgba(247, 242, 232, 0.72) 64%,
      rgba(247, 242, 232, 0.08) 100%
    );
  }
  .hero-content {
    min-height: 680px;
    align-items: center;
  }
  .hero-copy {
    max-width: 600px;
    padding: 38px 0;
  }
  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .hero h1 {
    max-width: 600px;
    margin-bottom: 20px;
    font-size: clamp(38px, 5vw, 44px);
    line-height: 1.5;
  }
  .hero-lead {
    display: block;
    max-width: 560px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.85;
  }
  .hero-price-panel {
    max-width: 560px;
    padding: 16px 20px;
    margin: 0 0 20px;
    border: 0;
    border-radius: 0;
    background: rgba(237, 243, 238, 0.78);
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero-price-row {
    justify-content: flex-start;
    gap: 22px;
  }
  .hero-price-row > span {
    color: var(--color-teal);
    font-size: 16px;
  }
  .hero-price-row strong {
    font-size: 42px;
  }
  .hero-price-panel > p {
    margin: 7px 0 10px;
    font-size: 16px;
  }
  .hero-price-panel ul {
    display: flex;
    gap: 7px 22px;
    padding-top: 10px;
  }
  .hero-price-panel li {
    display: block;
    min-height: 0;
    padding-left: 18px;
    font-size: 15px;
    font-weight: 500;
  }
  .hero-price-panel li::before {
    display: block;
  }
  .hero-info-icon {
    display: none;
  }
  .hero-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
    gap: 12px;
  }
  .hero-cta .button {
    min-height: 56px;
  }
  .button-label-desktop {
    display: inline;
  }
  .button-label-mobile {
    display: none;
  }
  .button-phone-desktop {
    display: inline-flex;
  }
  .button-phone-mobile {
    display: none;
  }
  .call-note {
    display: block;
    max-width: 560px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .hero-image-wrap picture {
    height: 100%;
  }
  .hero-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .trust-card {
    padding: 24px 22px 28px;
  }
  .trust-icon {
    height: 128px;
  }
  .concerns-list {
    gap: 20px;
  }
}

@media (min-width: 700px) {
  .concerns {
    padding: clamp(48px, 5vw, 64px) 0;
  }
  .concerns-layout {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: center;
  }
  .concerns-media {
    position: static;
    opacity: 1;
    pointer-events: auto;
    padding: 4%;
  }
  .concerns-media picture {
    height: auto;
  }
  .concerns-media img {
    width: min(100%, 340px);
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .concerns-body {
    padding: 0;
  }
  .concerns-body h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 4.2vw, 42px);
  }
  .concerns-body > p:not(.section-kicker) {
    line-height: 1.85;
  }
  .concerns-list {
    gap: 14px;
    margin-top: 22px;
  }
  .concerns-list li {
    line-height: 1.65;
  }
  .concerns-note {
    margin-top: 20px;
    line-height: 1.75;
  }
}

@media (min-width: 1100px) {
  :root {
    --header-height: 92px;
  }
  .header-inner {
    width: min(calc(100% - 56px), 1320px);
    gap: 24px;
  }
  .brand {
    width: 255px;
    height: 82px;
    flex-basis: 255px;
    gap: 12px;
  }
  .brand img {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }
  .brand-copy strong {
    font-size: 21px;
  }
  .brand-copy small {
    font-size: 14px;
  }
  .mobile-actions {
    display: none;
  }
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.3vw, 38px);
    margin-left: auto;
  }
  .site-nav a {
    position: relative;
    padding: 34px 0 31px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }
  .site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    height: 1px;
    background: var(--color-teal);
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
  }
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    transform: scaleX(1);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
  }
  .header-phone {
    display: grid;
    color: var(--color-ink);
    font-family: var(--font-number);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
  }
  .header-phone span {
    margin-bottom: 3px;
    color: var(--color-teal);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
  }
  .button-small {
    min-width: 166px;
    min-height: 56px;
    padding-inline: 20px;
  }

  .hero {
    min-height: 720px;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(247, 242, 232, 0.99) 0%,
      rgba(247, 242, 232, 0.97) 39%,
      rgba(247, 242, 232, 0.82) 53%,
      rgba(247, 242, 232, 0.25) 73%,
      rgba(247, 242, 232, 0) 100%
    );
  }
  .hero-content {
    min-height: 720px;
    align-items: center;
  }
  .hero-copy {
    max-width: 700px;
    padding: 46px 0;
  }
  .eyebrow {
    margin-bottom: 24px;
    font-size: 17px;
  }
  .eyebrow::before,
  .eyebrow::after {
    width: 34px;
  }
  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(48px, 3.65vw, 52px);
    line-height: 1.48;
    white-space: nowrap;
  }
  .hero-lead {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 2;
  }
  .hero-price-panel {
    max-width: 620px;
    padding: 18px 22px;
    margin-bottom: 26px;
    background: rgba(237, 243, 238, 0.72);
  }
  .hero-price-row {
    justify-content: flex-start;
    gap: 22px;
  }
  .hero-price-row strong {
    font-size: 46px;
  }
  .hero-price-panel > p {
    margin: 8px 0 12px;
  }
  .hero-price-panel ul {
    padding-top: 12px;
  }
  .hero-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    gap: 14px;
  }
  .call-note {
    margin-top: 14px;
    font-size: 16px;
  }
  .hero-image {
    object-position: center center;
  }

  .trust {
    padding: 90px 0 96px;
  }
  .trust-heading {
    margin-bottom: 58px;
  }
  .trust-heading h2 {
    font-size: 40px;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .trust-card {
    padding: 26px 26px 32px;
  }
  .trust-icon {
    height: 140px;
  }
  .trust-number {
    font-size: 38px;
  }
  .trust-card h3 {
    font-size: 21px;
  }

  .concerns-layout {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: clamp(80px, 8vw, 120px);
  }
  .concerns-body h2 {
    font-size: 42px;
  }
  .concerns-body > p:not(.section-kicker) {
    font-size: 17px;
  }
  .concerns-list li {
    font-size: 17px;
  }
}

@media (min-width: 1100px) and (max-width: 1320px) {
  .hero h1 {
    font-size: clamp(45px, 3.75vw, 52px);
  }
  .hero-copy {
    max-width: 680px;
  }
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }
  .mobile-cta {
    display: none;
  }
  .section-heading {
    text-align: center;
  }
  .split-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }
  .price-display {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    padding: 34px 32px;
  }
  .service-note-grid,
  .section-subgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .flow-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .flow-list li {
    padding: 58px 24px 0 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }
  .flow-list li::after {
    position: absolute;
    top: -1px;
    right: 0;
    left: 44px;
    height: 1px;
    background: var(--color-line);
    content: "";
  }
  .flow-list li:last-child::after {
    display: none;
  }
  .flow-list span {
    top: -22px;
    left: 0;
  }
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
  .footer-links,
  .site-footer small {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1100px) {
  .section {
    padding: clamp(96px, 8vw, 128px) 0;
  }
  .section h2,
  .contact h2 {
    font-size: 44px;
  }
  .split-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(72px, 8vw, 118px);
  }
  .flow-list h3 {
    font-size: 22px;
  }
  .contact {
    padding: 124px 0;
  }
}

@media (max-width: 389px) {
  .brand {
    width: 190px;
    flex-basis: 190px;
  }
  .brand img {
    width: 42px;
    height: 48px;
    flex-basis: 42px;
  }
  .brand-copy strong {
    font-size: 15px;
  }
  .brand-copy small {
    font-size: 11px;
  }
  .mobile-phone,
  .menu-toggle {
    min-width: 48px;
  }
  .hero h1 {
    font-size: 31px;
  }
  .hero-price-panel {
    padding-inline: 16px;
  }
  .hero-price-row strong {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

h2[data-label]::before {
  display: block;
  margin-bottom: 8px;
  color: var(--color-teal);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  content: attr(data-label);
}

.contact h2[data-label]::before {
  color: var(--color-peach-deep);
}


.concerns-media {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

@media (min-width: 700px) {
  .concerns-media::before {
    position: absolute;
    z-index: 0;
    top: -9%;
    right: -9%;
    width: 82%;
    height: 82%;
    border-radius: 58% 42% 63% 37% / 44% 56% 44% 56%;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-sky) 100%);
    content: "";
  }
}

.concerns-media img {
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .concerns-media img {
    border-radius: 62% 38% 55% 45% / 45% 60% 40% 55%;
  }
}

@media (max-width: 699px) {
  .concerns-media {
    display: none;
  }

  .flow-list {
    padding-left: 24px;
  }

  .faq-list summary {
    padding-left: 20px;
  }

  .faq-list p {
    padding-left: 20px;
  }

  .area-list {
    display: block;
    font-size: 0;
  }

  .area-list li {
    display: inline;
    padding-left: 0;
    font-size: 18px;
    font-weight: 400;
  }

  .area-list li::before {
    display: none;
  }

  .area-list li:not(:last-child)::after {
    content: "・";
  }
}

body,
.subpage-main,
.privacy-page {
  color: var(--color-ink);
  background: var(--color-cream);
}

.contact,
.site-footer {
  background: var(--color-ink);
}

.contact .section-kicker,
.contact h2[data-label]::before,
.contact-phone span,
.footer-info strong {
  color: var(--color-peach-deep);
}

.contact h2,
.contact-phone-number,
.site-footer,
.site-footer a {
  color: #fff;
}

/* Header, hero overlay, and price panel tinted with the teal palette. */
.site-header {
  background: rgba(255, 252, 247, 0.96);
}

@media (min-width: 700px) {
.hero::before {
  background: linear-gradient(
    90deg,
    rgba(255, 252, 247, 0.98) 0%,
    rgba(255, 252, 247, 0.94) 52%,
    rgba(255, 252, 247, 0.58) 76%,
    rgba(255, 252, 247, 0.12) 100%
  );
}
}

.hero-price-panel {
  border-color: rgba(46, 125, 134, 0.28);
  background: rgba(231, 244, 243, 0.88);
}

.hero-price-panel ul {
  border-color: rgba(46, 125, 134, 0.24);
}

.hero-price-row > span,
.hero-price-row strong,
.price-display span,
.price-display strong {
  color: var(--color-teal);
}

/* ===== 2026-07-18 デザイン改善（master-spec 17章準拠） ===== */

/* 見出しは丸ゴシックで統一（h3含む） */
h3 {
  font-family: var(--font-heading);
}

/* セクション区切りの曲線（ベタ塗り・ぼかしなし） */
.section-wave {
  margin-bottom: -1px;
  line-height: 0;
  background: var(--wt);
}
.section-wave svg {
  display: block;
  width: 100%;
  height: clamp(28px, 5vw, 56px);
  margin-bottom: -1px;
  transform: scale(1.002);
}
.section-wave path {
  fill: var(--wf);
}

/* 価格のマーカー風下線（やさしい黄色・カジュアル） */
.price-display strong {
  width: fit-content;
  padding: 0 8px 6px;
  background: linear-gradient(
    transparent 64%,
    var(--color-gold) 64%,
    var(--color-gold) 94%,
    transparent 94%
  );
}

/* 見出しキッカーの丸ドット */
.section-kicker:not(:empty)::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  content: "";
  vertical-align: 0.12em;
}

/* 暮らしのモチーフイラスト（脇役サイズ） */
.motif {
  display: block;
  height: auto;
}
.motif-towel {
  float: right;
  width: clamp(64px, 8vw, 84px);
  margin: 0 0 10px 14px;
}

/* 後方ルールに負けないための背景色の最終指定 */
.concerns {
  background: var(--color-peach);
}
.contact {
  background: var(--color-teal);
}
