:root {
  --page-bg: #fff8f8;
  --ink: #2b2523;
  --muted: #6c5d58;
  --rose: #c55974;
  --rose-dark: #b84c68;
  --rose-light: #d98598;
  --shadow: 0 18px 46px rgba(157, 70, 93, 0.16);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 92px;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--sans);
}

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

.lp {
  width: min(100%, 1080px);
  margin: 0 auto;
  background: #fff;
}

.fv {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.fv a {
  display: block;
  height: 100%;
}

.fv img {
  height: 100%;
  object-fit: cover;
}

.visual-section {
  position: relative;
  overflow: hidden;
  width: min(100%, 941px);
  margin: 0 auto;
  background: #fff;
}

.visual-section > a {
  display: block;
}

.clinic-map-mask {
  position: absolute;
  left: 5%;
  top: 21.5%;
  width: 90%;
  height: 36%;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 28px rgba(197, 89, 116, 0.08);
}

.clinic-map-embed {
  position: absolute;
  left: 8.1%;
  top: 25%;
  width: 84%;
  height: 30%;
  overflow: hidden;
  border: 1px solid rgba(197, 89, 116, 0.18);
  border-radius: 10px;
  background: #fff;
}

.clinic-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
  padding: 28px 0 84px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer p + p {
  margin-top: 6px;
}

.fixed-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 10;
}

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose-light));
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(20px, 5.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: var(--shadow);
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .lp {
    box-shadow: 0 0 50px rgba(157, 70, 93, 0.08);
  }

  .fixed-cta {
    right: 28px;
    bottom: 28px;
    left: auto;
  }

  .fixed-cta a {
    min-width: 330px;
    padding: 0 32px;
  }
}
