@charset "UTF-8";

/* ===== Design Tokens ===== */
:root {
  --color-bg:          #fbfbfa;
  --color-bg-sub:      #f7f4ee;
  --color-bg-marble:   #fdf9f4;
  --color-text:        #333333;
  --color-text-sub:    #8a8a88;
  --color-text-mute:   #adacaa;
  --color-border:      #dededd;
  --color-border-soft: #efeeee;
  --color-accent:      #ec6c84;
  --color-accent-soft: #e78194;
  --color-accent-bg:   #fde8eb;
  --color-gold:        #cf9733;
  --color-gold-light:  #e4bd72;
  --color-step:        #d5b876;
  --color-step-bg:     #f4ead4;
  --color-white:       #ffffff;
  --color-down:        #d96a78;
  --color-up:          #d96a78;

  --font-en:         "Cormorant Garamond", "Noto Serif JP", serif;
  --font-serif-jp:   "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --font-sans-jp:    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --header-height:   56px;
  --content-width:   390px;
  --max-width:       1440px;
  --gutter:          16px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure, table { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; padding: 0; }
table { border-collapse: collapse; }

@media (hover: hover) {
  a:hover { opacity: 0.7; }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url("../images/common/bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.8;
  overflow-x: hidden;
  padding-bottom: 64px;
}

/* ===== Layout ===== */
.l-main {
  display: block;
  width: 100%;
  align-self: stretch;
  text-align: left;
}

/* ===== Common: Section ===== */
.p-section {
  padding: 0;
  position: relative;
  background: transparent;
}

/* ===== Common: Heading ===== */
.c-heading {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 358px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #c88f1f;
  margin-bottom: 32px;
  text-align: center;
  font-feature-settings: "palt";
}
.p-target .c-heading { font-size: 18px; }
.c-heading > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  line-height: 1.8;
  text-box: trim-both cap alphabetic;
}
.c-heading > span::before,
.c-heading > span::after {
  content: "";
  flex: 1 0 0;
  min-width: 17.5px;
  height: 1px;
  background: #c88f1f;
}
.c-heading__pre {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}
.c-heading__pre::before,
.c-heading__pre::after { display: none; }

/* ===== Common: Heading (small variant — 安心して受けていただける 3つのポイント) ===== */
.c-heading--small {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  gap: 12px 24px;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  color: #d99d27;
  margin-bottom: 32px;
  text-align: center;
  font-feature-settings: "palt";
}
.c-heading--small::before,
.c-heading--small::after {
  content: "";
  width: 100%;
  min-width: 17.5px;
  height: 1px;
  background: #c88f1f;
  grid-row: 1 / 3;
  align-self: center;
}
.c-heading--small::before { grid-column: 1; justify-self: end; }
.c-heading--small::after  { grid-column: 3; justify-self: start; }
.c-heading--small > .c-heading__pre {
  display: block;
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #d99d27;
}
.c-heading--small > .c-heading__pre::before,
.c-heading--small > .c-heading__pre::after { display: none; }
.c-heading--small > .c-heading__main {
  display: block;
  grid-column: 2;
  grid-row: 2;
  width: auto;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #d99d27;
}
.c-heading--small > .c-heading__main::before,
.c-heading--small > .c-heading__main::after { display: none; }

/* ===== Common: Button ===== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 64px;
  padding: 0 32px;
  border-radius: 32px;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--color-white);
  white-space: nowrap;
  box-shadow: 2px 2px 6px rgba(51, 51, 51, 0.18);
  text-align: center;
  width: 100%;
  max-width: 326px;
}
.c-btn--gold {
  background-image: linear-gradient(109deg,
    #bc9854 4.46%, #d6ad5b 16.99%, #c49841 31.33%, #e4bd72 39.61%,
    #ca9d45 50.55%, #d6b064 70.73%, #e4bd72 81.09%, #b79249 104.06%);
}
.c-btn__arrow { font-size: 12px; line-height: 1; }

/* ===== HEADER ===== */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  z-index: 100;
  border-bottom: 1px solid var(--color-border-soft);
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.p-header__logo { display: block; height: 40px; }
.p-header__logo img { height: 100%; width: auto; }
.p-header__cta { display: none; }
.p-header__hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 56px;
  height: 56px;
  margin-right: -16px;
  background: var(--color-bg);
  z-index: 110;
}
.p-header__hamburger span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-text);
  transition: transform 0.25s;
}
.p-header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.p-header__hamburger[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== SP MENU OVERLAY ===== */
.p-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-white);
  padding: var(--header-height) 0 56px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.p-menu[hidden] { display: none; }
.p-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.p-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 32px 0;
}
.p-menu__list li {
  border-top: 1px solid var(--color-border-soft);
}
.p-menu__list li:last-child {
  border-bottom: 1px solid var(--color-border-soft);
}
.p-menu__list a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 8px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.p-menu__sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
}
.p-menu__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
}

/* ===== FV ===== */
.p-fv {
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}
.p-fv__panel {
  position: relative;
  background: #fafaf8;
  min-height: 605px;
}
.p-fv__main {
  position: relative;
  height: 100%;
  min-height: 605px;
}
.p-fv__visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 605px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.p-fv__visual-img {
  position: absolute;
  inset: 0;
  background: url("../images/common/fv_bg.webp") no-repeat center top / cover;
}
.p-fv__visual-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(199, 180, 162, 0.25) 0%, rgba(199, 180, 162, 0) 25%),
    linear-gradient(180deg, rgba(250, 250, 248, 0) 55%, rgba(250, 250, 248, 0.85) 70%, #fafaf8 82%, #fafaf8 100%);
}
.p-fv__content {
  position: relative;
  z-index: 1;
  padding: 32px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-fv__content::before {
  content: "";
  position: absolute;
  top: 605px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../images/common/main_bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  pointer-events: none;
}
.p-fv__heading-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
  padding-top: 8px;
}
.p-fv__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -8px;
}
.p-fv__heading img {
  display: block;
  width: auto;
  height: auto;
  max-width: 251px;
}
.p-fv__badge {
  position: absolute;
  top: 12px;
  right: 0;
  width: 96px;
  height: 96px;
}
.p-fv__badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-fv__price-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 355px;
}
.p-fv__price-old {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  padding-top: 4px;
}
.p-fv__price-old-label {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #454544;
  margin-bottom: 2px;
}
.p-fv__price-old-num {
  display: inline-block;
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #454544;
}
.p-fv__price-old-num::first-letter,
.p-fv__price-old-num s::first-letter { font-size: 14px; }
.p-fv__price-old-num s {
  text-decoration: line-through;
  text-decoration-color: #454544;
  text-decoration-thickness: 1px;
}
.p-fv__price-arrow {
  color: var(--color-text);
  font-size: 12px;
  flex-shrink: 0;
  align-self: center;
}
.p-fv__price-new {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}
.p-fv__price-new-num {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-serif-jp);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  background-image: linear-gradient(100deg,
    #c99127 2%, #deaf53 18%, #f0c265 30%,
    #e3aa3b 42%, #f0c46e 73%, #daa644 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.p-fv__price-new-yen {
  font-size: 22px;
  font-weight: 600;
  margin-right: 2px;
}
.p-fv__price-new-num small {
  font-size: 14px;
  font-weight: 600;
  margin-left: 2px;
}
.p-fv__lead {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 16px;
  text-align: center;
}
.p-fv__lead strong { font-weight: 600; }
.p-fv__lead sup { font-size: 0.65em; vertical-align: super; }
.p-fv__note {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 24px;
  text-align: center;
}
.p-fv__cta {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  max-width: 326px;
  margin: 0 auto;
  padding: 12px 0;
}
.p-fv__cta img { display: block; width: 100%; height: auto; }
.p-fv__price-wrap {
  width: 100%;
  max-width: 358px;
  margin: 164px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== FV Card (PC sidebar) ===== */
.p-fv-card { display: none; }

/* ===== FV TOC (PC sidebar right) ===== */
.p-fv-toc { display: none; }


/* ===== DOCTOR ===== */
.p-doctor {
  padding-top: 0;
  margin-top: 36px;
}
.p-doctor__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}
.p-doctor__head {
  display: grid;
  grid-template-columns: 171px 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}
.p-doctor__photo {
  overflow: hidden;
  background: var(--color-border-soft);
  aspect-ratio: 171 / 207;
}
.p-doctor__photo picture { display: block; width: 100%; height: 100%; }
.p-doctor__photo img { width: 100%; height: 100%; object-fit: cover; }
.p-doctor__name-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  text-align: left;
  height: 100%;
}
.p-doctor__name-jp {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 16px;
  text-box: trim-both cap alphabetic;
}
.p-doctor__name-en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 32px;
  text-box: trim-both cap alphabetic;
}
.p-doctor__sns {
  display: flex;
  gap: 12px;
  align-self: flex-start;
  height: 40px;
  align-items: center;
}
.p-doctor__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
}
.p-doctor__message {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
  text-align: left;
}
.p-doctor__divider {
  border: 0;
  width: 100%;
  max-width: 358px;
  height: 1px;
  background: var(--color-border);
  margin: 32px 0;
}
.p-doctor__career {
  display: block;
  text-align: left;
}
.p-doctor__career dt {
  font-family: var(--font-sans-jp);
  /* font-weight: 300; */
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 16px;
}
.p-doctor__career dd {
  font-family: var(--font-sans-jp);
  /* font-weight: 400; */
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
  margin-bottom: 24px;
}
.p-doctor__career dd:last-child {
  margin-bottom: 0;
}

/* ===== TARGET ===== */
.p-target {
  padding-top: 72px;
}
.p-target__list {
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-target__item {
  background: var(--color-white);
  border-radius: 5px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-target__icon {
  flex-shrink: 0;
  width: 27px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-target__icon img,
.p-target__icon svg { display: block; width: 100%; height: 100%; }
.p-target__text {
  flex: 1;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-target__text p {
  font-family: var(--font-sans-jp);
  /* font-weight: 400; */
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 0;
}
.p-target__text p.p-target__text-em {
  color: #C88F1F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.72px;
  text-box: trim-both cap alphabetic;
}
.p-target__lead {
  max-width: 358px;
  margin: 0 auto;
  padding: 24px 16px;
  background: var(--color-white);
  border: 2px solid #c4a15e;
  text-align: left;
}
.p-target__lead p {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 0;
}
.p-target__lead p.p-target__lead-em {
  font-weight: 600;
  color: #c88f1f;
}

/* ===== ABOUT ===== */
.p-about {
  padding-top: 72px;
}
.p-about__illust {
  margin: 0 auto 32px;
  width: 358px;
  max-width: 70%;
}
.p-about__illust img { width: 100%; height: auto; }
.p-about__text {
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

/* ===== KODAWARI ===== */
.p-kodawari {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
}
.p-kodawari__title {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-align: left;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}
.p-kodawari__lead {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 24px;
}
.p-kodawari__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-kodawari__item {
  background: var(--color-white);
  border-left: 2px solid #686766;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.p-kodawari__item-title {
  font-family: var(--font-sans-jp);
  /* font-weight: 500; */
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
  width: 100%;
}
.p-kodawari__item-body {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.p-kodawari__arrow {
  flex-shrink: 0;
  width: 28px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-kodawari__arrow img { display: block; width: 100%; height: 100%; }
.p-kodawari__effects {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
}
.p-kodawari__down,
.p-kodawari__up {
  display: inline;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  margin-left: 0;
}

/* ===== POINTS ===== */
.p-points {
  padding-top: 72px;
}
.p-points__list {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-points__card {
  position: relative;
  background: var(--color-white);
  padding: 24px 16px;
  margin-left: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-points__num {
  position: absolute;
  top: -8px;
  left: -8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 88px;
  height: 88px;
  padding: 8px 41px 0 0;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.04em;
  background: #e78194;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
  text-align: center;
}
.p-points__num-label {
  font-size: 8px;
  line-height: 0.9;
}
.p-points__num-figure {
  font-size: 28px;
  line-height: 0.9;
}
.p-points__head {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: center;
}
.p-points__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-points__icon img,
.p-points__icon svg { display: block; }
.p-points__icon img[src*="point_03"] {
  width: 44px;
  height: auto;
}
.p-points__title {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #555555;
  margin: 0;
  font-feature-settings: "palt";
}
.p-points__text {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
  margin: 0;
}
.p-points__warranty {
  padding: 16px;
  background: #fff5f7;
  font-family: var(--font-sans-jp);
}
.p-points__warranty-title {
  font-family: var(--font-sans-jp);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 0 0 4px;
  font-feature-settings: "palt";
}
.p-points__warranty ul {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
}
.p-points__warranty li {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
}

/* ===== MONITOR ===== */
.p-monitor {
  margin: 48px calc(50% - 50vw) 0;
  width: 100vw;
  padding: 72px 0 0;
  background: #fff;
}
.p-monitor__inner {
  position: relative;
  max-width: 358px;
  margin: 0 auto;
  padding: 60px 12.5px 24px;
  background: var(--color-white);
  border: 2px solid #c4a15e;
}
.p-monitor__ribbon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 16px);
  max-width: 366px;
  margin: 0;
  padding: 0 8px;
  text-align: center;
}
.p-monitor__ribbon img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.p-monitor__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto 32px;
  width: 329px;
  max-width: 100%;
  padding-top: 24px;
}
.p-monitor__cards + .p-monitor__cards {
  padding-top: 8px;
}
.p-monitor__card {
  background: transparent;
  overflow: hidden;
}
.p-monitor__card-head {
  background: #e78194;
  color: var(--color-white);
  text-align: center;
  padding: 13px 16px;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.p-monitor__card-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--color-white);
  border: 2px solid #e78194;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.p-monitor__price-old {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif-jp);
  flex-shrink: 0;
}
.p-monitor__price-old span {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.096em;
  color: #333;
  margin-bottom: 2px;
}
.p-monitor__price-old s {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #333;
  text-decoration-color: #333;
  text-decoration-thickness: 1px;
}
.p-monitor__arrow {
  color: var(--color-text);
  font-size: 10px;
  flex-shrink: 0;
}
.p-monitor__price-new {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
  flex-shrink: 0;
}
.p-monitor__price-new-label {
  display: inline-block;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #ec6c84;
  letter-spacing: 0.048em;
}
.p-monitor__price-new-num {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: #ec6c84;
  letter-spacing: 0;
  white-space: nowrap;
}
.p-monitor__price-new-num small { font-size: 14px; font-weight: 600; }

.p-monitor__detail {
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 329px;
  max-width: 100%;
}
.p-monitor__detail-title {
  font-family: var(--font-sans-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-feature-settings: "palt";
}
.p-monitor__detail-title small {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
  margin-left: 8px;
}
.p-monitor__detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
}
.p-monitor__detail-list li {
  position: relative;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
}
.p-monitor__detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e78194;
}
.p-monitor__detail-list li small {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
  margin-top: 2px;
}
.p-monitor__detail-list--bullet {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
  list-style: disc;
  padding-left: 18px;
}
.p-monitor__detail-list--bullet li {
  position: static;
  padding-left: 0;
}
.p-monitor__detail-list--bullet li::before { display: none; }

.p-monitor__cta { text-align: center; }
.p-monitor__cta-note {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 16px;
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  color: var(--color-accent);
  font-family: var(--font-sans-jp);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--color-white);
}
.p-monitor__cta-btn {
  display: block;
  width: 100%;
  max-width: 326px;
  margin: 0 auto;
}
.p-monitor__cta-btn img { display: block; width: 100%; height: auto; }

/* ===== FLOW ===== */
.p-flow {
  margin: 48px 16px 0;
  padding-top: 72px;
  /* background: #FFFFFF; */
}
.p-flow__list {
  width: 100%;
  max-width: 378px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.p-flow__item {
  display: flex;
  gap: 8px;
  background: var(--color-white);
  position: relative;
}
.p-flow__item:first-child {
  align-items: center;
  padding: 24px 8px 40px;
}
.p-flow__item:not(:first-child) {
  align-items: flex-start;
  padding: 16px 8px 24px;
}
.p-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 12px;
  background-image: radial-gradient(circle, #c4a15e 1.5px, transparent 1.5px);
  background-size: 8px 12px;
  background-repeat: repeat-x;
  background-position: left center;
}
.p-flow__item:has(> .p-flow__divider)::after { display: none; }
.p-flow__divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 14px;
  pointer-events: none;
}
.p-flow__step {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #edca84;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow: hidden;
  color: var(--color-white);
}
.p-flow__step-label {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 14px;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--color-white);
  padding-top: 16px;
}
.p-flow__step-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 56px;
  max-width: 88px;
}
.p-flow__step-icon img,
.p-flow__step-icon svg { width: auto; height: 100%; object-fit: contain; }
.p-flow__body {
  width: 244px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-flow__title {
  font-family: var(--font-sans-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 0;
  font-feature-settings: "palt";
}
.p-flow__text {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
}

/* ===== FAQ ===== */
.p-faq {
  padding-top: 72px;
}
.p-faq__list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}
.p-faq__item {
  margin-bottom: 8px;
}
.p-faq__item[open] .p-faq__toggle::after { transform: rotate(180deg); }
.p-faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: #e78194;
  border-radius: 5px;
  cursor: pointer;
  list-style: none;
}
.p-faq__q::-webkit-details-marker { display: none; }
.p-faq__q-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  color: #e78194;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.p-faq__q-text {
  flex: 1;
  font-family: var(--font-sans-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-white);
  font-feature-settings: "palt";
}
.p-faq__toggle {
  position: relative;
  width: 20px;
  height: 10px;
  flex-shrink: 0;
}
.p-faq__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'><path d='M2 2 L10 8 L18 2' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  transition: transform 0.3s;
}
.p-faq__a {
  background: var(--color-white);
  border: 2px solid #e78194;
  border-radius: 0 0 5px 5px;
  padding: 24px 16px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
}
.p-faq__item[open] .p-faq__q {
  border-radius: 5px 5px 0 0;
}

/* ===== CLINIC ===== */
.p-clinic {
  padding-top: 72px;
}
.p-clinic__lead {
  max-width: 560px;
  margin: 0 auto 32px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 2;
}
.p-clinic__slider {
  overflow: hidden;
  padding-bottom: 32px;
}
.p-clinic__slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.p-clinic__slide {
  flex: 0 0 240px;
}
.p-clinic__slide-img {
  display: block;
  width: 100%;
  aspect-ratio: 240 / 262;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.p-clinic__slide p {
  text-align: center;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
.p-clinic__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.p-clinic__dots button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cecdcc;
  cursor: pointer;
  transition: background 0.2s;
}
.p-clinic__dots button.is-active { background: #c88f1f; }

/* ===== FOOTER ===== */
.p-footer {
  width: auto;
  align-self: stretch;
  margin-left: -16px;
  margin-right: -16px;
  padding: 48px 0 0;
  background: var(--Mono-200, #DEDEDD);
}
.p-footer__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-footer__logo {
  text-align: center;
  margin-bottom: 0;
}
.p-footer__logo img { display: inline-block; width: 320px; max-width: 100%; height: auto; }
.p-footer__map {
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #efeeee;
  height: 200px;
}
.p-footer__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.p-footer__info {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px 24px;
  margin: 0 16px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-text);
  font-feature-settings: "palt";
  text-align: left;
}
.p-footer__info dt {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  color: var(--color-text);
}
.p-footer__schedule {
  width: calc(100% - 32px);
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 0;
  border-top: 1px solid #b5b5b3;
  border-bottom: 1px solid #b5b5b3;
  border-collapse: collapse;
  font-family: var(--font-sans-jp);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.p-footer__schedule th,
.p-footer__schedule td {
  padding: 0;
  text-align: center;
  font-weight: 400;
  vertical-align: middle;
}
.p-footer__schedule thead th {
  height: 43px;
  font-family: var(--font-sans-jp);
  font-size: 14px;
  color: var(--color-text);
}
.p-footer__schedule tbody td {
  height: 41px;
}
.p-footer__schedule thead tr {
  border-bottom: 1px solid #b5b5b3;
}
.p-footer__schedule th:first-child,
.p-footer__schedule td:first-child {
  width: 94px;
  text-align: center;
  font-family: var(--font-sans-jp);
  letter-spacing: 0.04em;
}
.p-footer__schedule tbody td:not(:first-child) {
  font-size: 12px;
  line-height: 1;
}
.p-footer__cta {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 358px;
  height: 64px;
  border-radius: 32px;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.p-footer__copy {
  text-align: center;
  padding: 16px 0;
  margin: 0;
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* ===== SP FIXED CTA ===== */
.p-sp-fixed-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 8px;
  background: #caa661;
}
.p-sp-fixed-cta__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 8px 16px;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #fbfbfa;
  background: #caa661;
  position: relative;
}
.p-sp-fixed-cta__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.p-sp-fixed-cta__item svg { color: #fbfbfa; }

/* ===================================== */
/* ===== Tablet (768px-1024px) ====== */
/* ===================================== */
@media (min-width: 768px) {
  :root {
    --header-height: 64px;
  }
  /* タブレット以上ではメニューオーバーレイは非表示 */
  .p-menu { display: none !important; }
  .p-section { padding: 80px 0; }
  .p-doctor { margin-top: -48px; }
  .c-heading { font-size: 20px; margin-bottom: 40px; }
  .p-target { padding-top: 80px; }
  .p-about { padding-top: 80px; }
  .p-points { padding-top: 80px; }
  .p-monitor { padding-top: 80px; }
  .p-flow { padding-top: 80px; }
  .p-faq { padding-top: 80px; }
  .p-clinic { padding-top: 80px; }
  .p-target .c-heading { font-size: 18px; }
  .c-heading > span { gap: 32px; }
  .c-heading__pre { font-size: 14px; }

  .p-header__inner { padding: 0 24px; }
  .p-header__logo { height: 40px; }
  .p-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    border-radius: 20px;
    background-image: linear-gradient(109deg, #d6ad5b 0%, #e4bd72 50%, #ca9d45 100%);
    color: var(--color-white);
    font-family: var(--font-serif-jp);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
  .p-header__hamburger { display: none; }

  body { padding-bottom: 0; }
  .p-sp-fixed-cta { display: none; }

  .p-fv__content {
    max-width: 560px;
    margin: 0 auto;
    padding: 64px 24px 40px;
  }
  .p-fv__panel { min-height: 720px; }
  .p-fv__heading img { max-width: 320px; }
  .p-fv__price-block { gap: 12px; }
  .p-fv__price-new-num { font-size: 44px; }
  .p-fv__price-new-yen { font-size: 28px; }
  .p-fv__badge { width: 96px; height: 96px; }
}

/* ===================================== */
/* ===== PC (1025px+) ================ */
/* ===================================== */
@media (min-width: 1025px) {
  html { font-size: 16px; }
  .p-section { padding: 72px 0 0 0; }

  .p-fv__panel {
    min-height: 720px;
    display: grid;
    grid-template-columns: 365px 1fr 295px;
    gap: 24px;
    max-width: 1248px;
    margin: 0 auto;
    padding: 40px 32px;
    align-items: start;
    background: transparent;
  }
  .p-fv__main {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 16px rgba(206, 205, 204, 0.3);
  }
  /* PC: 背景画像はFV上部のみ表示 */
  .p-fv__visual { height: 605px; bottom: auto; }
  .p-fv__content {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 24px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 640px;
  }
  .p-fv__heading-wrap {
    max-width: 360px;
    width: 100%;
    margin: 0 auto 24px;
    padding: 0;
    position: relative;
  }
  .p-fv__heading img { max-width: 280px; }
  .p-fv__badge {
    width: 80px;
    height: 80px;
    top: 24px;
    right: 0;
  }
  .p-fv__price-block { gap: 12px; }
  .p-fv__price-new-num { font-size: 42px; }
  .p-fv__price-new-yen { font-size: 28px; }
  .p-fv__price-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .p-fv__cta { max-width: 320px; }

  /* PC: 左サイドのモニターカード（fixed） */
  .p-fv-card {
    display: block;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: max(8px, calc(50% - 616px));
    width: 365px;
    max-width: 365px;
    max-height: calc(100vh - 192px);
    overflow-y: auto;
    z-index: 50;
    background: var(--color-white);
    border-radius: 5px;
    padding: 32px 0 24px;
    box-shadow: 0 4px 16px rgba(206, 205, 204, 0.3);
  }
  .p-fv-card__ribbon {
    margin: -8px auto 24px;
    padding: 0 8px;
    text-align: center;
  }
  .p-fv-card__ribbon img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 340px;
    margin: 0 auto;
  }
  .p-fv-card__body { padding: 0 16px; margin-bottom: 16px; }
  .p-fv-card__title {
    background: var(--color-accent-soft);
    color: var(--color-white);
    text-align: center;
    padding: 10px;
    font-family: var(--font-serif-jp);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .p-fv-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 2px solid var(--color-accent-soft);
    border-top: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .p-fv-card__price-old { display: flex; flex-direction: column; font-family: var(--font-serif-jp); flex-shrink: 0; }
  .p-fv-card__price-old span { font-size: 10px; color: var(--color-text); }
  .p-fv-card__price-old s {
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
  }
  .p-fv-card__arrow { color: var(--color-text); font-size: 10px; }
  .p-fv-card__price-new { flex: 1; }
  .p-fv-card__price-new-label {
    display: inline-block;
    font-family: var(--font-serif-jp);
    font-weight: 700;
    font-size: 11px;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
  .p-fv-card__price-new-num {
    font-family: var(--font-serif-jp);
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    color: var(--color-accent);
    letter-spacing: 0.02em;
  }
  .p-fv-card__price-new-num small { font-size: 11px; font-weight: 600; }
  .p-fv-card__cta {
    text-align: center;
    padding: 0 16px;
  }
  .p-fv-card__note {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 14px;
    border: 1px solid var(--color-accent);
    border-radius: 16px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 12px;
    background: var(--color-white);
  }
  .p-fv-card__btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .p-fv-card__btn img { display: block; width: 100%; height: auto; }

  /* PC: 右サイドの目次ナビ（sticky） */
  .p-fv-toc {
    display: block;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: max(8px, calc(50% - 616px));
    width: 295px;
    max-width: 295px;
    max-height: calc(100vh - 192px);
    overflow-y: auto;
    z-index: 50;
    background: var(--color-white);
    border-radius: 5px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(206, 205, 204, 0.3);
  }
  .p-fv-toc ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .p-fv-toc a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--color-text);
  }
  .p-fv-toc a > span {
    flex: 1;
    line-height: 1.6;
  }
  .p-fv-toc a > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-gold-light);
    color: var(--color-white);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    flex-shrink: 0;
  }
  .p-fv-toc a > i img {
    display: block;
    width: 10px;
    height: 10px;
  }

  .p-points__list {
    max-width: 1080px;
    flex-direction: row;
    align-items: stretch;
  }
  .p-points__card { flex: 1; }
  .p-points__head { gap: 16px; }

  .p-monitor__inner {
    max-width: 720px;
    padding: 40px 32px;
  }
  .p-monitor__ribbon {
    margin: 0 auto 32px;
  }

  .p-kodawari {
    max-width: 720px;
  }
  .p-kodawari__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* PC: 全セクションをFVカード同等の幅(365px)で中央配置（SP風レイアウト） */
  .p-doctor__inner,
  .p-target__list,
  .p-about__text,
  .p-about__illust,
  .p-kodawari,
  .p-points__list,
  .p-monitor__inner,
  .p-flow__list,
  .p-faq__list,
  .p-clinic__lead {
    max-width: 365px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .p-footer__inner {
    max-width: 720px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .p-doctor__head {
    grid-template-columns: 171px 1fr;
    align-items: start;
  }
  .p-doctor__photo { aspect-ratio: 171 / 207; }

  /* PC: 3つのポイントはSP同様の縦並びカードに */
  .p-points__list { flex-direction: column; }

  /* PC: こだわり項目もSP同様の縦並びに */
  .p-kodawari__list {
    display: flex;
    grid-template-columns: none;
  }

  /* PC: 院内紹介のリードは中央に、スライダーは横スクロール（横幅は画面いっぱい） */
  .p-clinic__slider { max-width: none; }

  /* PC: footer のマップは幅いっぱいでもよい */
  .p-footer__map { max-width: 100%; }
}
