:root {
  --rose: #d58da0;
  --rose-dark: #b85f78;
  --rose-deep: #8e3f54;
  --rose-pale: #f8e8ec;
  --rose-soft: #fbf3f5;
  --ink: #342c2e;
  --muted: #75696d;
  --line: #ead1d8;
  --white: #fff;
  --container: min(1400px, calc(100vw - 48px));
  --anchor-offset: 132px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

.mincho {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  min-height: 86px;
  padding: 16px clamp(18px, 3.2vw, 56px);
  background: rgba(255, 255, 255, .84);
  border-bottom: 1px solid rgba(234, 209, 216, .7);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 18px);
}

.brand-logo {
  width: auto;
  height: clamp(56px, 6vw, 72px);
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  gap: .9em;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(15px, 1.22vw, 19px);
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}

.global-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(14px, 1.35vw, 26px);
  color: var(--ink);
  font-size: clamp(15px, 1.08vw, 17px);
}

.global-nav a {
  position: relative;
  padding-block: 8px;
  white-space: nowrap;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

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

.header-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
  background: var(--rose-dark);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(184, 95, 120, .22);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--rose);
  border: 0;
  border-radius: 50%;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  content: "";
  background: var(--white);
  transition: transform .24s ease, opacity .24s ease;
}

.menu-button::before {
  transform: translateY(-7px);
}

.menu-button::after {
  transform: translateY(7px);
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-2px) rotate(-45deg);
}

.drawer-nav {
  position: fixed;
  inset: 86px 0 auto;
  z-index: 45;
  display: none;
  padding: 18px 24px 30px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(52, 44, 46, .08);
}

.drawer-nav a {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}

.hero {
  --hero-height: 100svh;
  position: relative;
  min-height: 0;
  height: auto;
  padding: 0 0 14svh;
  overflow: clip;
  background: var(--white);
}

.hero::after {
  display: none;
}

.hero-image {
  position: sticky;
  top: 0;
  z-index: 0;
  height: var(--hero-height);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(118, 69, 82, .12) 0%, rgba(255, 255, 255, .04) 48%, rgba(255, 255, 255, 0) 100%);
}

.hero-image::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 110px;
  content: "";
  background: linear-gradient(to top, rgba(255, 255, 255, .94), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: var(--hero-height);
  margin-top: calc(var(--hero-height) * -1);
  padding: clamp(158px, 22svh, 230px) clamp(36px, 6vw, 128px) 72px clamp(28px, 46vw, 760px);
  width: 100%;
  color: #6f4650;
  text-align: right;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .58);
}

.hero-copy > * {
  width: min(100%, 640px);
  max-width: 640px;
}

.hero-small,
.hero h1,
.clinic-name {
  width: max-content;
  max-width: min(100%, 980px);
  margin-left: auto;
  margin-right: 0;
}

.hero-small {
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1.45;
}

.hero h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(54px, 4.15vw, 82px);
  line-height: 1.22;
  letter-spacing: 0;
  transform: translateX(clamp(24px, 2.6vw, 48px));
}

.clinic-name {
  margin: 8px -.1em 0 0;
  color: inherit;
  font-size: clamp(22px, 1.72vw, 32px);
  font-weight: 600;
  letter-spacing: .1em;
}

.hero-lead {
  position: absolute;
  left: clamp(32px, 5.8vw, 118px);
  bottom: clamp(40px, 6.8svh, 78px);
  width: min(44vw, 640px);
  max-width: 640px;
  margin: 0;
  color: inherit;
  text-align: left;
  font-size: clamp(19px, 1.35vw, 26px);
  line-height: 1.82;
  font-weight: 500;
  letter-spacing: .045em;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  margin-top: clamp(34px, 4vw, 70px);
}

.hero-tags span {
  display: grid;
  place-items: center;
  width: clamp(138px, 8.8vw, 172px);
  aspect-ratio: 1;
  padding: 18px;
  text-align: center;
  color: var(--white);
  background: rgba(228, 182, 191, .68);
  border-radius: 50%;
  font-size: clamp(17px, 1.25vw, 25px);
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

.message-band {
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(360px, 46%);
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin: 96px auto 0;
  background: #fff;
}

.message-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
}

.message-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.message-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4.5vw, 64px) clamp(44px, 6.2vw, 92px);
  box-shadow: -26px 0 46px rgba(88, 70, 76, .12);
}

.section-kicker,
.reservation-kicker {
  margin: 0 0 6px;
  color: var(--rose-dark);
  font-family: Georgia, serif;
  font-size: clamp(18px, 1.45vw, 27px);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: lowercase;
}

.message-text h2 {
  margin: 0 0 clamp(26px, 3.2vw, 42px);
  color: var(--rose-deep);
  font-size: clamp(46px, 4.25vw, 72px);
  line-height: 1.24;
  letter-spacing: .035em;
}

.message-text p:last-child {
  color: var(--muted);
  font-size: clamp(19px, 1.34vw, 24px);
  line-height: 1.85;
  letter-spacing: .06em;
}

@media (min-width: 1101px) {
  .message-band {
    --message-band-height: clamp(560px, 39.5vw, 810px);
  }

  .message-photo,
  .message-text {
    min-height: var(--message-band-height);
  }

  .message-photo img {
    width: 100%;
    height: var(--message-band-height);
    object-fit: contain;
  }
}

.section {
  width: var(--container);
  margin: 120px auto;
  scroll-margin-top: var(--anchor-offset);
}

.access {
  scroll-margin-top: 116px;
}

.section-title {
  position: relative;
  margin-bottom: 34px;
}

.section-title p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--rose-dark);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
}

.section-title h2 {
  position: relative;
  z-index: 1;
  margin: -8px 0 0;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  opacity: .42;
  text-transform: lowercase;
}

.section-intro {
  max-width: none;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 19px);
  white-space: nowrap;
}

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

.medical-card {
  position: relative;
  display: block;
  aspect-ratio: 1149 / 1369;
  overflow: hidden;
  padding: 0;
  color: #9c6a70;
  background: var(--image) center / contain no-repeat;
  border-radius: 28px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.medical-card::before {
  content: "";
  display: none;
}

.medical-card::after {
  content: "";
  display: none;
}

.medical-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 42px rgba(184, 95, 120, .25);
}

.medical-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.medical-card small {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.clinic-calendar {
  display: grid;
  grid-template-columns: minmax(360px, 540px) minmax(360px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin: clamp(56px, 7vw, 88px) calc(50% - 50vw) 0;
  padding: clamp(42px, 5vw, 68px) max(32px, calc((100vw - 1320px) / 2));
  background: #f4f4f4;
  overflow: hidden;
  scroll-margin-top: 86px;
}

.calendar-panel {
  width: 100%;
}

.calendar-head {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  max-width: 540px;
  margin: 0 auto 16px;
  color: #313033;
  font-size: clamp(21px, 1.85vw, 29px);
  font-weight: 700;
  letter-spacing: .06em;
}

.calendar-title {
  text-align: center;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #313033;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.calendar-nav:hover {
  color: var(--rose-dark);
  transform: translateY(-1px);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  max-width: 540px;
  margin: 0 auto;
  border-top: 1px solid #dedfe3;
  border-left: 1px solid #dedfe3;
  background: var(--white);
}

.calendar-weekday,
.calendar-day {
  display: grid;
  place-items: center;
  border-right: 1px solid #dedfe3;
  border-bottom: 1px solid #dedfe3;
}

.calendar-weekday {
  min-height: 52px;
  color: #2f2f31;
  font-size: 17px;
  font-weight: 700;
}

.calendar-weekday.is-sunday {
  color: #e53768;
}

.calendar-weekday.is-saturday {
  color: #315fa7;
}

.calendar-day {
  appearance: none;
  aspect-ratio: 1 / .75;
  min-height: 58px;
  padding: 0;
  border-top: 0;
  border-left: 0;
  background: #fff;
  color: #333235;
  font-family: inherit;
  font-size: clamp(16px, 1.65vw, 23px);
  font-weight: 500;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.calendar-day.is-outside {
  color: #c8c8c8;
}

.calendar-day.is-closed {
  background: #9e9e9e;
  color: #dedede;
}

.calendar-day.is-selected {
  background: #c61642;
  color: #fff;
  font-weight: 700;
}

.calendar-day:hover {
  background: #f7e4e9;
  color: var(--rose-deep);
}

.calendar-day.is-closed:hover {
  background: #8f8f8f;
  color: #fff;
}

.calendar-day.is-selected:hover {
  background: #c61642;
  color: #fff;
}

.calendar-detail {
  padding-top: 12px;
}

.calendar-detail h3 {
  margin: 0 0 16px;
  color: #51474a;
  font-family: inherit;
  font-size: clamp(16px, 1.65vw, 23px);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: .06em;
}

.calendar-detail-line {
  width: 100%;
  height: 2px;
  margin-bottom: clamp(34px, 4vw, 52px);
  background: #c61642;
}

.calendar-clinic-name {
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d2d2d2;
  color: #a95b70;
  font-family: inherit;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: .06em;
}

.calendar-detail dl {
  margin: 20px 0 20px;
}

.calendar-detail dl div {
  display: flex;
  gap: 20px;
  align-items: baseline;
  color: #4b4245;
  font-family: inherit;
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.72;
  font-weight: 600;
  letter-spacing: .06em;
}

.calendar-detail dt {
  min-width: 70px;
}

.calendar-detail dd {
  margin: 0;
}

.calendar-doctor,
.calendar-closed-detail {
  margin: 0 0 clamp(34px, 4vw, 54px);
  color: #4b4245;
  font-family: inherit;
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 600;
  letter-spacing: .06em;
}

.calendar-closed-detail {
  padding: 12px 0;
}

.calendar-actions {
  display: grid;
  gap: 14px;
  width: min(330px, 100%);
  margin-bottom: clamp(36px, 4vw, 54px);
}

.calendar-actions a {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px 22px;
  border: 2px solid #d99bad;
  border-radius: 999px;
  color: #a95b70;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.calendar-actions a:hover {
  background: #f9e8ed;
  color: var(--rose-deep);
  transform: translateY(-2px);
}

.calendar-note {
  margin: 0;
  color: #333235;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 600;
  letter-spacing: .05em;
}

.reservation {
  margin: 100px 0;
  padding: clamp(72px, 7vw, 118px) 0;
  background:
    linear-gradient(rgba(108, 58, 72, .76), rgba(108, 58, 72, .76)),
    url("./assets/images/top-reserve-bg-rose.jpg") center/cover no-repeat;
  color: var(--white);
  scroll-margin-top: var(--anchor-offset);
  overflow: hidden;
}

.reservation-inner {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(600px, 1.1fr);
  gap: clamp(26px, 3vw, 52px);
  align-items: center;
  width: var(--container);
  margin: auto;
}

.reservation h2 {
  margin: 6px 0 24px;
  font-size: clamp(64px, 6.2vw, 118px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: .01em;
}

.reservation p {
  margin: 0;
  max-width: 560px;
  font-size: clamp(16px, 1.25vw, 23px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .04em;
}

.reservation-kicker {
  color: #ffe7ed;
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 700;
  letter-spacing: .08em;
}

.reservation-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 1.8vw, 30px);
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
}

.reserve-card {
  display: grid;
  grid-template-columns: minmax(168px, 39%) minmax(0, 1fr);
  align-items: center;
  min-height: clamp(188px, 13.2vw, 244px);
  overflow: hidden;
  background: rgba(255, 255, 255, .98);
  border-radius: 0 50px 0 0;
  color: #3a3337;
  box-shadow: 0 24px 54px rgba(60, 35, 44, .2);
  transition: transform .24s ease;
}

.reserve-card--online {
  grid-template-columns: minmax(156px, 36%) minmax(0, 1fr);
}

.reserve-card--online .reserve-card__content {
  padding-inline: clamp(28px, 2.4vw, 48px);
}

.reserve-card:hover {
  transform: translateY(-5px);
}

.reserve-card__visual {
  display: block;
  height: 100%;
  padding: clamp(16px, 1.4vw, 24px);
}

.reserve-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.reserve-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  padding: clamp(22px, 1.8vw, 34px) clamp(16px, 1.7vw, 28px);
  text-align: center;
}

.reserve-card__title {
  color: #3a3337;
  font-size: clamp(22px, 1.56vw, 30px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .05em;
  white-space: nowrap;
}

.reserve-card__sub {
  margin-top: 6px;
  color: #3f3a3d;
  font-size: clamp(15px, 1.15vw, 21px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: .06em;
  white-space: nowrap;
}

.reserve-card--online .reserve-card__title {
  line-height: 1.42;
  letter-spacing: 0;
  white-space: nowrap;
}

.reserve-card__arrow {
  position: relative;
  display: block;
  width: clamp(44px, 3.15vw, 62px);
  height: clamp(44px, 3.15vw, 62px);
  margin-top: clamp(16px, 1.8vw, 28px);
  border: 2px solid #e9c3cf;
  border-radius: 50%;
}

.reserve-card__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #e0aebe;
  border-right: 2px solid #e0aebe;
  transform: translate(-50%, -50%) rotate(45deg);
}

.doctor {
  position: relative;
  margin: 130px 0 120px;
  padding: 92px 0 40px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #fafafa 100%);
  scroll-margin-top: var(--anchor-offset);
}

.doctor-watermark {
  position: absolute;
  top: 8px;
  left: 47%;
  z-index: 0;
  margin: 0;
  color: rgba(213, 141, 160, .46);
  font-family: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(78px, 10vw, 180px);
  line-height: .75;
  transform: translateX(-5%);
  pointer-events: none;
  white-space: nowrap;
}

.doctor-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 39%) 1fr;
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
  width: var(--container);
  margin: auto;
}

.doctor-profile {
  position: relative;
  min-height: 700px;
  padding: 24px 0 0;
}

.doctor-profile::after {
  position: absolute;
  right: -10%;
  bottom: 160px;
  z-index: -1;
  width: 86%;
  height: 44%;
  content: "";
  background: rgba(255, 255, 255, .84);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.doctor-profile-logo {
  position: absolute;
  top: 88px;
  left: 8%;
  width: 190px;
  opacity: .28;
}

.doctor-portrait {
  position: relative;
  z-index: 1;
  width: min(420px, 82%);
  margin: 0 auto;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 44px rgba(52, 44, 46, .08));
}

.doctor-profile-name {
  position: relative;
  z-index: 2;
  width: min(520px, 92%);
  margin: 32px auto 0;
}

.doctor-profile-name > span {
  display: block;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .12em;
}

.doctor-profile-name p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 18px);
  flex-wrap: wrap;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: .08em;
}

.doctor-profile-name small {
  margin-right: 6px;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: .04em;
}

.doctor-name-text {
  font: inherit;
  white-space: nowrap;
}

.doctor-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d4849;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1;
  transition: transform .2s ease, opacity .2s ease;
}

.doctor-instagram-link:hover {
  opacity: .78;
  transform: translateY(-2px);
}

.doctor-instagram-link em {
  font-style: normal;
}

.doctor-instagram-link .instagram-icon {
  width: 28px;
  height: 28px;
  border-width: 3px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.doctor-instagram-link .instagram-icon::before {
  width: 9px;
  height: 9px;
  border-width: 3px;
}

.doctor-instagram-link .instagram-icon::after {
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
}

.doctor-more {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .08em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.doctor-more span {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.doctor-more span::after {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 1px solid var(--rose);
  border-right: 1px solid var(--rose);
  transform: translate(-50%, -50%) rotate(45deg);
}

.doctor-message {
  padding-top: 54px;
}

.doctor-message p {
  margin: 0;
  color: #3f3a3b;
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 500;
  line-height: 2.28;
  letter-spacing: .075em;
}

.doctor-message p + p {
  margin-top: 34px;
}

@media (min-width: 1101px) {
  .doctor {
    margin: 96px 0 88px;
    padding: 74px 0 32px;
  }

  .doctor-watermark {
    top: 0;
    left: 46%;
    font-size: clamp(86px, 8vw, 132px);
  }

  .doctor-container {
    grid-template-columns: minmax(300px, 34%) 1fr;
    gap: clamp(42px, 5vw, 80px);
  }

  .doctor-profile {
    min-height: 560px;
    padding-top: 8px;
  }

  .doctor-profile::after {
    bottom: 128px;
    height: 38%;
  }

  .doctor-profile-logo {
    top: 70px;
    width: 160px;
  }

  .doctor-portrait {
    width: min(360px, 78%);
    max-height: 430px;
  }

  .doctor-profile-name {
    width: min(330px, 88%);
    margin-top: 18px;
  }

  .doctor-profile-name > span {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .doctor-profile-name p {
    font-size: clamp(30px, 2.2vw, 38px);
  }

  .doctor-profile-name small {
    margin-right: 18px;
    font-size: 17px;
  }

  .doctor-more {
    bottom: 8px;
    gap: 20px;
    font-size: 16px;
  }

  .doctor-more span {
    width: 50px;
    height: 50px;
  }

  .doctor-message {
    padding-top: 58px;
  }

  .doctor-message p {
    font-size: clamp(16px, 1.08vw, 19px);
    line-height: 2.08;
    letter-spacing: .055em;
  }

  .doctor-message p + p {
    margin-top: 26px;
  }
}

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

.news-heading {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: end;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.news-heading .section-title {
  margin-bottom: 0;
}

.news-visual {
  position: relative;
  max-width: 680px;
  margin: 0 0 4px auto;
}

.news-visual::before {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 62%;
  height: 58%;
  content: "";
  background: rgba(213, 141, 160, .16);
  border-radius: 54px 4px 54px 4px;
}

.news-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1314 / 858;
  object-fit: cover;
  border-radius: 4px 46px 4px 46px;
  box-shadow: 0 22px 54px rgba(92, 61, 70, .12);
}

.news-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--rose-dark);
  font-family: Georgia, serif;
}

.faq {
  margin: 120px 0;
  padding: 88px 0;
  background: var(--rose-soft);
  scroll-margin-top: var(--anchor-offset);
}

.faq-inner {
  width: var(--container);
  margin: auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 30px 0 0;
}

summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--rose-deep);
  font-weight: 600;
}

details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.clinic-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(40px, 5.2vw, 78px);
  align-items: start;
  padding-top: 6px;
}

.clinic-left {
  display: grid;
  gap: 28px;
}

.clinic-visual img {
  width: 100%;
  height: clamp(360px, 32vw, 610px);
  object-fit: cover;
  border-radius: 4px;
}

.clinic-info {
  padding-top: 6px;
  background: transparent;
  border: 0;
}

.clinic-logo {
  width: min(330px, 58%);
  margin: 0 auto 30px;
}

.clinic-logo img {
  width: 100%;
}

.clinic-info h3 {
  margin: 0 0 22px;
  color: var(--rose);
  font-size: clamp(22px, 1.72vw, 31px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: .06em;
}

.clinic-info h3 span {
  display: inline;
  margin-left: 24px;
  color: var(--rose);
  font-size: .7em;
  font-weight: 500;
  letter-spacing: .06em;
}

.clinic-info p {
  margin: 0;
}

.clinic-address,
.clinic-tel {
  color: #4b4547;
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: .06em;
}

.clinic-tel {
  margin-top: 6px;
}

.clinic-access-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}

.clinic-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #4d4849;
  font-size: clamp(16px, 1.15vw, 21px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: .04em;
  flex: 0 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}

.clinic-instagram-link:hover {
  opacity: .78;
  transform: translateY(-2px);
}

.clinic-access-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--rose);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: .06em;
}

.instagram-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border: 4px solid #4d4849;
  border-radius: 10px;
}

.instagram-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  content: "";
  border: 4px solid #4d4849;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.instagram-icon::after {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  content: "";
  background: #4d4849;
  border-radius: 50%;
}

.access-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--rose);
  border-right: 2px solid var(--rose);
  transform: rotate(45deg);
}

.clinic-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(440px, 100%);
  margin-top: 42px;
}

.clinic-outline-button,
.clinic-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 18px 24px;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: var(--rose);
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 600;
  letter-spacing: .12em;
  text-align: center;
}

.clinic-line-button {
  color: #53b848;
  border-color: #53b848;
}

.schedule-wrap {
  overflow-x: auto;
  margin-top: 0;
}

.clinic-schedule {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
  font-size: clamp(18px, 1.35vw, 24px);
  table-layout: fixed;
}

.clinic-schedule thead th:first-child,
.clinic-schedule tbody th {
  width: 34%;
}

.clinic-schedule th,
.clinic-schedule td {
  height: 78px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  text-align: center;
}

.clinic-schedule thead th {
  color: var(--white);
  background: var(--rose);
  font-weight: 700;
  letter-spacing: .08em;
}

.clinic-schedule tbody th {
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.clinic-schedule td {
  color: var(--rose);
  font-weight: 600;
}

.clinic-schedule small {
  display: block;
  margin-top: -4px;
  font-size: .6em;
}

.schedule-circle {
  font-size: 1.35em;
  line-height: 1;
}

.schedule-closed {
  color: #555052;
}

.schedule-wrap p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.clinic-map {
  margin-top: 46px;
}

.clinic-map iframe {
  width: 100%;
  height: clamp(310px, 23vw, 430px);
  border: 0;
  filter: saturate(.9);
}

.site-footer {
  margin-top: 120px;
  padding: 80px 24px 38px;
  color: var(--white);
  text-align: center;
  background: var(--rose-deep);
}

.footer-logo {
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 8vw, 92px);
  line-height: 1;
  opacity: .22;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer small {
  display: block;
  margin-top: 34px;
  color: rgba(255, 255, 255, .72);
}

.profile-page {
  background: #fff;
}

.profile-hero {
  padding: clamp(150px, 13vw, 210px) 0 clamp(64px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 52%, rgba(251, 243, 245, .86) 100%),
    url("./assets/images/top-fv-rose.jpg") center / cover no-repeat;
  overflow: hidden;
}

.profile-hero__inner {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(360px, .72fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  width: var(--container);
  margin: auto;
}

.profile-kicker {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-family: Georgia, serif;
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 700;
  letter-spacing: .18em;
}

.profile-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 6vw, 112px);
  line-height: 1.04;
  letter-spacing: .08em;
}

.profile-role {
  margin: 22px 0 0;
  color: var(--rose);
  font-size: clamp(21px, 1.75vw, 31px);
  font-weight: 700;
  letter-spacing: .12em;
}

.profile-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .05em;
}

.profile-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #4d4849;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 600;
  letter-spacing: .03em;
  transition: opacity .2s ease, transform .2s ease;
}

.profile-instagram-link:hover {
  opacity: .78;
  transform: translateY(-2px);
}

.profile-hero__visual {
  position: relative;
  margin: 0;
}

.profile-hero__visual::before {
  position: absolute;
  right: -9%;
  bottom: 0;
  z-index: 0;
  width: 78%;
  height: 48%;
  content: "";
  background: rgba(255, 255, 255, .8);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.profile-hero__visual img {
  position: relative;
  z-index: 1;
  width: min(520px, 88%);
  max-height: 620px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 54px rgba(52, 44, 46, .12));
}

.profile-interview {
  padding: clamp(84px, 8vw, 138px) 0 clamp(66px, 7vw, 112px);
  background: var(--white);
}

.profile-interview__inner {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(420px, 1fr);
  gap: clamp(48px, 6vw, 108px);
  align-items: center;
  width: var(--container);
  margin: auto;
}

.profile-interview__heading p {
  margin: 0 0 30px;
  color: #3a3337;
  font-family: Georgia, serif;
  font-size: clamp(18px, 1.35vw, 26px);
  letter-spacing: .08em;
}

.profile-interview__heading h2 {
  margin: 0;
  color: #3a3337;
  font-size: clamp(36px, 3.2vw, 56px);
  line-height: 1.48;
  font-weight: 500;
  letter-spacing: .03em;
}

@media (min-width: 681px) {
  .profile-interview__heading h2 {
    white-space: nowrap;
  }
}

.profile-interview__photo {
  position: relative;
  margin: 0;
}

.profile-interview__photo::before {
  position: absolute;
  inset: auto -20px -20px auto;
  z-index: 0;
  width: 58%;
  height: 58%;
  content: "";
  background: rgba(213, 141, 160, .16);
  border-radius: 54px 4px 54px 4px;
}

.profile-interview__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1118 / 826;
  object-fit: cover;
  border-radius: 4px 54px 4px 54px;
  box-shadow: 0 24px 58px rgba(92, 61, 70, .12);
}

.profile-message {
  padding: clamp(72px, 7vw, 118px) 0;
  background: linear-gradient(180deg, #fff 0%, #fbf3f5 100%);
}

.profile-message__inner {
  width: min(1160px, calc(100vw - 48px));
  margin: auto;
}

.profile-message h2 {
  margin: 0 0 34px;
  color: var(--rose-deep);
  font-size: clamp(40px, 4.4vw, 76px);
  line-height: 1.2;
  letter-spacing: .04em;
}

.profile-message__columns {
  column-count: 2;
  column-gap: clamp(42px, 5vw, 86px);
}

.profile-message p:not(.section-kicker) {
  margin: 0;
  color: #3f3a3b;
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 2.12;
  letter-spacing: .055em;
}

.profile-message p + p {
  margin-top: 28px;
}

.profile-wide-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.profile-wide-photo img {
  width: 100%;
  height: clamp(360px, 39vw, 620px);
  object-fit: cover;
}

.profile-wide-photo--consultation img {
  object-position: center;
}

.profile-wide-photo--care img {
  object-position: center;
}

.profile-career {
  padding: clamp(78px, 8vw, 132px) 0;
  background: #fff;
}

.profile-career__inner {
  width: min(1040px, calc(100vw - 48px));
  margin: auto;
}

.profile-career__panel {
  padding: clamp(42px, 5.4vw, 74px) clamp(34px, 6vw, 86px);
  border: 1px solid #d9d5d7;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 48px rgba(52, 44, 46, .05);
}

.profile-career__panel section + section {
  margin-top: clamp(46px, 5vw, 72px);
}

.profile-career h2 {
  margin: 0 0 28px;
  color: #343033;
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: 1.5;
  letter-spacing: .08em;
}

.profile-career h2::before {
  content: "【";
}

.profile-career h2::after {
  content: "】";
}

.profile-history {
  display: grid;
  gap: 12px;
  margin: 0;
}

.profile-history div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  color: #343033;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.55;
  letter-spacing: .06em;
}

.profile-history dt {
  font-weight: 500;
}

.profile-history dd {
  margin: 0;
}

.profile-career ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #343033;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.55;
  letter-spacing: .06em;
  list-style: none;
}

@media (max-width: 1100px) {
  .global-nav,
  .header-reserve {
    display: none;
  }

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

  .menu-button {
    display: block;
  }

  .drawer-nav.is-open {
    display: block;
  }

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

  .clinic-calendar {
    grid-template-columns: 1fr;
  }

  .news-heading {
    grid-template-columns: minmax(240px, .72fr) minmax(320px, 1fr);
    gap: 34px;
  }

  .calendar-detail-line {
    width: 100%;
  }

  .reservation-inner,
  .doctor-container,
  .clinic-card,
  .message-band {
    grid-template-columns: 1fr;
  }

  .message-band {
    margin-top: 58px;
  }

  .message-text {
    box-shadow: none;
  }

  .reservation-actions {
    grid-template-columns: 1fr;
  }

  .doctor-container {
    gap: 46px;
  }

  .doctor-profile {
    min-height: 620px;
  }

  .doctor-message {
    padding-top: 0;
  }

  .clinic-card {
    gap: 34px;
  }

  .clinic-logo {
    width: min(270px, 54%);
    margin-bottom: 22px;
  }

  .clinic-info h3 {
    margin-bottom: 18px;
  }

  .clinic-info h3 span {
    display: block;
    margin: 8px 0 0;
  }

  .clinic-buttons {
    gap: 18px;
  }

  .profile-hero__inner {
    grid-template-columns: 1fr;
  }

  .profile-interview__inner {
    grid-template-columns: 1fr;
  }

  .profile-hero__visual {
    order: -1;
  }

  .profile-hero__text {
    text-align: center;
  }

  .profile-lead {
    margin-inline: auto;
  }

  .profile-interview__heading {
    text-align: center;
  }

  .profile-interview__photo {
    width: min(720px, 100%);
    margin: auto;
  }

  .profile-message__columns {
    column-count: 1;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 32px, 1400px);
    --anchor-offset: 100px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    max-width: calc(100vw - 104px);
  }

  .brand-logo {
    height: 52px;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
    max-width: 168px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .brand-department {
    font-size: 10px;
  }

  .drawer-nav {
    inset-block-start: 76px;
  }

  .hero {
    --hero-height: max(760px, 100svh);
    min-height: 760px;
    padding: 0;
  }

  .hero-copy {
    align-items: flex-start;
    min-height: var(--hero-height);
    margin-top: calc(var(--hero-height) * -1);
    padding: 116px 20px 44px;
    justify-content: flex-end;
    text-align: left;
  }

  .hero-image::after {
    background: linear-gradient(to top, rgba(94, 54, 64, .28) 0%, rgba(94, 54, 64, .12) 52%, rgba(255, 255, 255, .02) 100%);
  }

  .hero-small {
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 28px;
  }

  .hero h1 {
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 52px;
    line-height: 1.2;
    transform: none;
  }

  .clinic-name {
    width: auto;
    max-width: 100%;
    margin: 10px 0 0;
    font-size: 22px;
    letter-spacing: .08em;
  }

  .hero-lead {
    position: static;
    width: auto;
    max-width: 100%;
    margin-top: 14px;
    text-align: left;
    font-size: 18px;
    line-height: 1.85;
  }

  .hero-tags span {
    width: calc((100vw - 88px) / 3);
    min-width: 94px;
    max-width: 145px;
    font-size: 15px;
    padding: 10px;
  }

  .hero-tags {
    gap: 12px;
    margin-top: 36px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .section {
    margin: 82px auto;
  }

  .message-text {
    padding: 42px 24px 54px;
  }

  .message-text h2 {
    font-size: 40px;
    line-height: 1.32;
  }

  .message-text p:last-child {
    font-size: 18px;
    line-height: 1.9;
  }

  .access {
    scroll-margin-top: 96px;
  }

  .section-title h2 {
    font-size: 48px;
  }

  .section-intro {
    white-space: normal;
  }

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

  .clinic-calendar {
    gap: 36px;
    margin-top: 54px;
    padding: 36px 16px 42px;
    scroll-margin-top: 76px;
  }

  .calendar-head {
    grid-template-columns: 38px 1fr 38px;
    margin-bottom: 14px;
    font-size: 22px;
  }

  .calendar-nav {
    width: 38px;
    height: 38px;
  }

  .calendar-weekday {
    min-height: 42px;
    font-size: 15px;
  }

  .calendar-day {
    min-height: 46px;
    font-size: 16px;
  }

  .calendar-detail h3 {
    font-size: 16px;
  }

  .calendar-detail-line {
    margin-bottom: 34px;
  }

  .calendar-detail dl div {
    gap: 16px;
    font-size: 19px;
  }

  .calendar-actions {
    width: 100%;
  }

  .calendar-actions a {
    min-height: 58px;
  }

  .reservation {
    margin: 82px 0;
    padding: 60px 0;
  }

  .reserve-card {
    grid-template-columns: minmax(126px, 38%) 1fr;
    min-height: 154px;
    border-radius: 0 34px 0 0;
  }

  .reserve-card__visual {
    padding: 14px;
  }

  .reserve-card__visual img {
    border-radius: 12px;
  }

  .reserve-card__content {
    padding: 18px 14px;
  }

  .reserve-card__title {
    font-size: 21px;
  }

  .reserve-card__sub {
    font-size: 13px;
  }

  .reserve-card__arrow {
    width: 42px;
    height: 42px;
    margin-top: 14px;
  }

  .doctor {
    margin: 82px 0;
    padding: 76px 0 24px;
  }

  .doctor-watermark {
    top: 12px;
    left: 16px;
    font-size: 72px;
    transform: none;
  }

  .doctor-container {
    gap: 28px;
  }

  .doctor-profile {
    min-height: auto;
    padding-top: 12px;
  }

  .doctor-profile::after {
    bottom: 94px;
    height: 36%;
  }

  .doctor-profile-logo {
    top: 54px;
    left: 0;
    width: 138px;
  }

  .doctor-portrait {
    width: min(340px, 88%);
    max-height: 420px;
  }

  .doctor-profile-name {
    width: 100%;
    max-width: 340px;
    margin-top: 18px;
  }

  .doctor-profile-name > span {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .doctor-profile-name p {
    font-size: 30px;
  }

  .doctor-profile-name small {
    margin-right: 14px;
    font-size: 16px;
  }

  .doctor-more {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 34px;
    transform: none;
    font-size: 16px;
  }

  .doctor-more span {
    width: 48px;
    height: 48px;
  }

  .doctor-message p {
    font-size: 17px;
    line-height: 2.02;
    letter-spacing: .04em;
  }

  .doctor-message p + p {
    margin-top: 22px;
  }

  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .news-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 28px;
  }

  .news-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .news-visual::before {
    right: -10px;
    bottom: -10px;
  }

  .clinic-card {
    gap: 34px;
    padding-top: 0;
  }

  .clinic-left {
    gap: 20px;
  }

  .clinic-visual img {
    height: 280px;
  }

  .clinic-logo {
    width: min(230px, 72%);
    margin: 0 auto 24px;
  }

  .clinic-info {
    padding: 0;
  }

  .clinic-info h3 {
    margin-bottom: 18px;
    font-size: 24px;
    letter-spacing: .06em;
  }

  .clinic-info h3 span {
    display: block;
    margin: 5px 0 0;
    font-size: 15px;
  }

  .clinic-address,
  .clinic-tel {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .05em;
  }

  .clinic-access-row {
    gap: 14px;
    margin-top: 14px;
  }

  .clinic-instagram-link {
    gap: 10px;
    font-size: 16px;
  }

  .clinic-access-link {
    gap: 14px;
    font-size: 17px;
  }

  .instagram-icon {
    width: 28px;
    height: 28px;
    border-width: 3px;
    border-radius: 8px;
  }

  .instagram-icon::before {
    width: 9px;
    height: 9px;
    border-width: 3px;
  }

  .clinic-buttons {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .clinic-outline-button,
  .clinic-line-button {
    min-height: 64px;
    font-size: 17px;
  }

  .clinic-schedule {
    min-width: 680px;
    font-size: 16px;
  }

  .clinic-schedule th,
  .clinic-schedule td {
    height: 64px;
    padding: 8px 6px;
  }

  .schedule-wrap p {
    font-size: 12px;
  }

  .clinic-map {
    margin-top: 30px;
  }

  .clinic-map iframe {
    height: 310px;
  }

  .profile-hero {
    padding: 112px 0 58px;
  }

  .profile-hero__inner {
    gap: 28px;
  }

  .profile-hero__visual img {
    width: min(330px, 86%);
    max-height: 410px;
  }

  .profile-kicker {
    font-size: 14px;
  }

  .profile-hero h1 {
    font-size: 46px;
    letter-spacing: .06em;
  }

  .profile-role {
    margin-top: 14px;
    font-size: 18px;
    letter-spacing: .08em;
  }

  .profile-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .profile-instagram-link {
    margin-top: 24px;
    font-size: 17px;
  }

  .profile-interview {
    padding: 64px 0 58px;
  }

  .profile-interview__inner {
    gap: 32px;
  }

  .profile-interview__heading p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .profile-interview__heading h2 {
    font-size: 30px;
    line-height: 1.48;
    text-align: left;
  }

  .profile-interview__photo::before {
    right: -10px;
    bottom: -10px;
  }

  .profile-interview__photo img {
    border-radius: 4px 34px 4px 34px;
  }

  .profile-message {
    padding: 68px 0;
  }

  .profile-message__inner {
    width: var(--container);
  }

  .profile-message h2 {
    margin-bottom: 26px;
    font-size: 40px;
  }

  .profile-message p:not(.section-kicker) {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .04em;
  }

  .profile-wide-photo img {
    height: 280px;
  }

  .profile-wide-photo--consultation img {
    object-position: center;
  }

  .profile-wide-photo--care img {
    object-position: center;
  }

  .profile-career {
    padding: 62px 0;
  }

  .profile-career__inner {
    width: var(--container);
  }

  .profile-career__panel {
    padding: 32px 20px;
  }

  .profile-career__panel section + section {
    margin-top: 44px;
  }

  .profile-career h2 {
    margin-bottom: 20px;
    font-size: 21px;
  }

  .profile-history {
    gap: 16px;
  }

  .profile-history div {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 16px;
    line-height: 1.72;
  }

  .profile-career ul {
    gap: 10px;
    font-size: 16px;
    line-height: 1.72;
  }
}
