:root {
  --sdc-bg: #e7eef2;
  --sdc-navy: #212f4f;
  --sdc-mid: #b4bdd0;
  --sdc-txt: #3d3d3b;
  --sdc-muted: #6e6d69;
  --sdc-light: #ebeef5;
  --sdc-white: #ffffff;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body.sdc-body {
  background: var(--sdc-bg);
  color: var(--sdc-txt);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

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

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

.sdc-header {
  background: #fff;
  inset: 0 0 auto 0;
  position: fixed;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
}

.sdc-header--hidden {
  transform: translateY(-100%);
}

.sdc-header--hidden.sdc-header--visible {
  transform: translateY(0);
}

.sdc-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0;
  max-width: none;
  min-height: 86px;
  padding: 16px 24px 16px 20px;
}

.sdc-logo {
  display: block;
  height: 54px;
  position: relative;
  width: 294px;
}

.sdc-logo__img {
  left: 0;
  position: absolute;
  top: 0;
  width: auto;
}

.sdc-logo__img--dark {
  display: block;
  height: 54px;
  width: 294px;
}

.sdc-logo__img--light {
  display: none;
  height: 81px;
  width: 372.88555908203125px;
}

.sdc-header__nav {
  align-items: center;
  display: flex;
  gap: 32px;
}

.sdc-header__nav ul {
  align-items: center;
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sdc-header__nav a,
.sdc-header__nav li,
.sdc-header__dropdown-trigger {
  font: 400 14px/18px "Zen Old Mincho", serif;
  letter-spacing: 0.02em;
}

.sdc-header__nav a:not(.sdc-reserve-btn),
.sdc-header__dropdown-trigger {
  transition:
    opacity 0.24s ease,
    color 0.24s ease;
}

.sdc-header__nav a:not(.sdc-reserve-btn):hover,
.sdc-header__nav a:not(.sdc-reserve-btn):focus-visible,
.sdc-header__dropdown-trigger:hover,
.sdc-header__dropdown-trigger:focus-visible {
  opacity: 0.58;
}

.sdc-page-overlay-header {
  inset:
    clamp(20px, 4.444444vw, 64px)
    clamp(20px, 4.861111vw, 70px)
    auto
    clamp(20px, 5vw, 72px);
  position: absolute;
  z-index: 10;
}

.sdc-page-overlay-header .sdc-header__inner {
  min-height: clamp(46px, 5.596843vw, 80.59454345703125px);
  padding: 0;
}

.sdc-page-overlay-header .sdc-logo {
  height: clamp(46px, 5.596843vw, 80.59454345703125px);
  width: clamp(213px, 25.894831vw, 372.88555908203125px);
}

.sdc-page-overlay-header .sdc-logo__img--dark {
  display: none;
}

.sdc-page-overlay-header .sdc-logo__img--light {
  display: block;
  height: clamp(46px, 5.596843vw, 80.59454345703125px);
  width: clamp(213px, 25.894831vw, 372.88555908203125px);
}

.sdc-page-overlay-header .sdc-header__nav,
.sdc-page-overlay-header .sdc-header__nav ul {
  gap: clamp(14px, 1.944444vw, 28px);
}

.sdc-page-overlay-header .sdc-header__nav a,
.sdc-page-overlay-header .sdc-header__nav li,
.sdc-page-overlay-header .sdc-header__dropdown-trigger {
  color: var(--sdc-white);
  font-size: clamp(11px, 0.972222vw, 14px);
  line-height: clamp(14px, 1.25vw, 18px);
}

.sdc-page-overlay-header .sdc-header__nav .sdc-reserve-btn {
  background: var(--sdc-white);
  border-color: var(--sdc-white);
  color: var(--sdc-navy);
  border-radius: clamp(18px, 2.083333vw, 30px);
  font-size: clamp(12px, 1.041667vw, 15px);
  height: clamp(34px, 3.055556vw, 44px);
  min-width: clamp(72px, 6.458333vw, 93px);
  padding-inline: clamp(14px, 1.666667vw, 24px);
}

.sdc-page-overlay-header .sdc-header__nav .sdc-reserve-btn:hover,
.sdc-page-overlay-header .sdc-header__nav .sdc-reserve-btn:focus-visible {
  background: var(--sdc-white);
  border-color: var(--sdc-white);
  color: var(--sdc-navy);
  opacity: 0.72;
}

.sdc-page-overlay-header .sdc-header__menu {
  display: none;
}

.sdc-header__dropdown-trigger {
  position: relative;
}

.sdc-page-overlay-header .sdc-header__dropdown:hover .sdc-header__dropdown-trigger,
.sdc-page-overlay-header .sdc-header__dropdown-trigger[aria-expanded="true"],
.sdc-page-overlay-header .sdc-header__dropdown-trigger:hover,
.sdc-page-overlay-header .sdc-header__dropdown-trigger:focus-visible {
  opacity: 0.78;
}

.sdc-page-overlay-header .sdc-header__dropdown-panel a {
  color: var(--sdc-txt);
  opacity: 1;
}

.sdc-page-overlay-header .sdc-header__dropdown-panel a:hover,
.sdc-page-overlay-header .sdc-header__dropdown-panel a:focus-visible {
  color: var(--sdc-navy);
  opacity: 0.72;
}

.sdc-reserve-btn {
  background: var(--sdc-navy);
  border: 1px solid transparent;
  border-radius: 30px;
  color: var(--sdc-white);
  display: inline-flex;
  font: 400 15px/18px "Zen Old Mincho", serif;
  height: 44px;
  align-items: center;
  justify-content: center;
  min-width: 93px;
  padding: 0 24px;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    opacity 0.24s ease;
  white-space: nowrap;
}

.sdc-reserve-btn--light {
  background: var(--sdc-white);
  border-color: var(--sdc-white);
  color: var(--sdc-navy);
}

.sdc-hero__nav .sdc-reserve-btn--light {
  color: var(--sdc-navy);
  border-radius: 30px;
  width: 93px;
}

.sdc-reserve-btn:hover,
.sdc-reserve-btn:focus-visible {
  background: var(--sdc-white);
  border-color: var(--sdc-navy);
  color: var(--sdc-navy);
}

.sdc-reserve-btn--light:hover,
.sdc-reserve-btn--light:focus-visible {
  background: var(--sdc-navy);
  border-color: var(--sdc-white);
  color: var(--sdc-white);
}

.sdc-header__menu {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 28px;
  padding: 0;
  position: relative;
  width: 28px;
}

.sdc-header__menu span {
  background: var(--sdc-navy);
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.sdc-header__menu span:nth-child(1) {
  top: 4px;
}
.sdc-header__menu span:nth-child(2) {
  top: 13px;
}
.sdc-header__menu span:nth-child(3) {
  top: 22px;
}

.sdc-header__menu[aria-expanded="true"] span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.sdc-header__menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.sdc-header__menu[aria-expanded="true"] span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* ── SP Menu Panel ── */

.sdc-sp-menu {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

.sdc-sp-menu[aria-hidden="false"] {
  pointer-events: auto;
}

.sdc-sp-menu__backdrop {
  background: rgba(0, 0, 0, 0.4);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.4s ease;
}

.sdc-sp-menu[aria-hidden="false"] .sdc-sp-menu__backdrop {
  opacity: 1;
}

.sdc-sp-menu__panel {
  align-items: center;
  background: #212f4f;
  display: flex;
  flex-direction: column;
  inset: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 15px 20px 60px;
  position: absolute;
  transition: opacity 0.35s ease;
  visibility: hidden;
}

.sdc-sp-menu__panel > * {
  max-width: 500px;
  width: min(335px, 100%);
}

.sdc-sp-menu[aria-hidden="false"] .sdc-sp-menu__panel {
  opacity: 1;
  visibility: visible;
}

.sdc-sp-menu__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
}

.sdc-sp-menu__header .sdc-logo__img {
  height: 47.55px;
  width: 220px;
}

.sdc-sp-menu__close {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 23px;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 20px;
  top: 15px;
  width: 34px;
  z-index: 2;
}

.sdc-sp-menu__close img {
  display: block;
  height: 23px;
  width: 34px;
}

.sdc-sp-menu__nav {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

.sdc-sp-menu__col {
  flex: 0 0 155px;
  width: 155px;
}

.sdc-sp-menu__link {
  align-items: center;
  border-bottom: 1px solid #b4bdd0;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  min-height: 77px;
  padding: 20px 0;
  position: relative;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease 0.15s,
    transform 0.3s ease 0.15s;
}

.sdc-sp-menu[aria-hidden="false"] .sdc-sp-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.sdc-sp-menu__en {
  color: #b4bdd0;
  font:
    400 13px/1.2 "Cinzel",
    serif;
  letter-spacing: 1px;
  width: 100%;
}

.sdc-sp-menu__ja {
  color: #fff;
  font:
    400 16px/1.05 "Zen Old Mincho",
    serif;
  letter-spacing: 1.3px;
  margin-top: 4px;
}

.sdc-sp-menu__chevron {
  flex-shrink: 0;
  height: 10px;
  margin-left: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}

.sdc-sp-menu__phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 291.07px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease 0.15s,
    transform 0.3s ease 0.15s;
}

.sdc-sp-menu[aria-hidden="false"] .sdc-sp-menu__phones {
  opacity: 1;
  transform: translateY(0);
}

.sdc-sp-menu__phone {
  align-items: center;
  background: #fff;
  border-radius: 328.47px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 65.44px;
  padding: 12px 26px 12px 36px;
}

.sdc-sp-menu__floor {
  color: #000;
  font:
    400 12px/0.94 "Zen Old Mincho",
    serif;
  margin-inline: 0 auto;
}

.sdc-sp-menu__tel {
  align-items: center;
  display: flex;
  gap: 10.08px;
  margin-inline: 0 auto;
}

.sdc-sp-menu__tel-label {
  color: #7f8caa;
  font:
    400 15px/15.33px "Cinzel",
    serif;
  letter-spacing: 0.1px;
}

.sdc-sp-menu__tel-number {
  color: #7f8caa;
  font:
    400 24px/15.33px "Cinzel",
    serif;
  letter-spacing: 3.3px;
}

.sdc-sp-menu__tel-sep {
  color: #b4bdd0;
}

.sdc-main {
  overflow: hidden;
  position: relative;
}

.sdc-side-label {
  color: #2a3247;
  font:
    400 11px/1.6 "Noto Sans JP",
    sans-serif;
  left: 8px;
  letter-spacing: 0.08em;
  opacity: 0.8;
  position: fixed;
  top: 46%;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 5;
}

.sdc-hero {
  height: 735px;
  position: relative;
}

.sdc-hero__bg {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.sdc-hero__video,
.sdc-hero__image-fallback {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.sdc-hero__image-fallback {
  display: none;
}

.sdc-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(33, 47, 79, 0.4) 0%,
    rgba(33, 47, 79, 0.34) 52%,
    rgba(33, 47, 79, 0.28) 100%
  );
  inset: 0;
  position: absolute;
}

@media (prefers-reduced-motion: reduce) {
  .sdc-hero__video {
    display: none;
  }

  .sdc-hero__image-fallback {
    display: block;
  }
}

.sdc-hero__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 64px min(72px, 5vw) 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.sdc-hero__header .sdc-logo__img {
  height: 81px;
}

.sdc-hero__nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.sdc-hero__nav ul {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sdc-hero__nav a,
.sdc-hero__nav li {
  color: #fff;
  font:
    400 14px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 0.02em;
}

.sdc-hero__inner {
  box-sizing: border-box;
  color: var(--sdc-white);
  height: 735px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 64px 72px;
  position: relative;
}

.sdc-hero__copy {
  margin-top: 252px;
  max-width: 620px;
}

.sdc-hero__copy h1 {
  font:
    400 clamp(35px, 2.9vw, 42px)/1.8 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  margin: 0;
}

.sdc-hero__copy-sp-line {
  white-space: nowrap;
}

.sdc-hero__copy-text {
  display: flex;
  flex-direction: column;
  gap: 28.8px;
  margin-top: 32px;
  max-width: 376px;
}

.sdc-hero__copy-text-block {
  font:
    400 16px/1.8 "Zen Old Mincho",
    serif;
  letter-spacing: 0.05em;
  margin: 0;
  white-space: nowrap;
}

.sdc-floor-contact {
  height: 239px;
  right: 70px;
  position: absolute;
  bottom: 64px;
  width: 238.8px;
}

.sdc-floor-contact > img {
  height: 65.7px;
  left: 0;
  margin-top: 0;
  position: absolute;
  top: 0;
  width: 83.2px;
}

.sdc-floor-contact ul {
  left: 30.8px;
  list-style: none;
  margin: 0;
  min-height: 210.5px;
  padding: 0;
  position: absolute;
  top: 28.5px;
  width: 208px;
}

.sdc-floor-contact li {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  left: 0;
  line-height: 1.5;
  margin-bottom: 0;
  position: absolute;
}

.sdc-floor-contact li:nth-child(1) {
  top: 0;
  width: 208px;
}

.sdc-floor-contact li:nth-child(2) {
  top: 40.5px;
  width: 208px;
}

.sdc-floor-contact li:nth-child(3) {
  top: 106px;
  width: 208px;
}

.sdc-floor-contact li:nth-child(4) {
  font-size: 12px;
  line-height: 1.3;
  top: 178.5px;
  width: 168px;
}

.sdc-floor-contact li > span {
  align-items: baseline;
  display: flex;
  gap: 4px;
  white-space: nowrap;
}

.sdc-floor-contact__tel-label {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.sdc-floor-contact__tel-number {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: inherit;
  text-decoration: none;
}

.sdc-floor-contact__tel-number:hover {
  opacity: 0.74;
}

.sdc-floor-contact__tel-number:focus-visible {
  border-radius: 2px;
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.sdc-floor-contact li:last-child {
  margin-bottom: 0;
}

/* --- header: SP layout under 1200px --- */
@media (max-width: 1200px) {
  .sdc-header--hidden,
  .sdc-header--hidden.sdc-header--visible {
    transform: translateY(0);
  }

  .sdc-page-overlay-header {
    display: none;
  }

  .sdc-hero {
    margin-top: 72px;
  }

  .sdc-hero__header {
    display: none;
  }

  .sdc-header__nav {
    display: none;
  }

  .sdc-header__menu {
    display: block;
    height: 20px;
    width: 28px;
  }

  .sdc-header__inner {
    min-height: 72px;
    padding: 17px 16px;
  }

  .sdc-header .sdc-logo__img {
    height: 38px;
    width: 209px;
  }

  .sdc-header .sdc-logo {
    height: 38px;
    width: 209px;
  }

  .sdc-logo__img--light {
    display: none;
  }

  .sdc-header__menu span {
    height: 1px;
  }

  .sdc-header__menu span:nth-child(1) {
    top: 0;
  }

  .sdc-header__menu span:nth-child(2) {
    top: 10px;
  }

  .sdc-header__menu span:nth-child(3) {
    top: 20px;
  }

  .sdc-header__menu[aria-expanded="true"] span:nth-child(1) {
    top: 10px;
  }

  .sdc-header__menu[aria-expanded="true"] span:nth-child(3) {
    top: 10px;
  }
}

.sdc-news {
  border-bottom: 1px solid var(--sdc-white);
}

.sdc-news__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 23px 70px;
}

.sdc-news__meta {
  align-items: center;
  display: flex;
  gap: 24px;
  min-width: 0;
  text-decoration: none;
}

.sdc-news__meta time {
  color: var(--sdc-txt);
  font:
    300 12px/1.7 "Noto Sans JP",
    sans-serif;
  margin: 0;
  white-space: nowrap;
}

.sdc-news__divider {
  background: var(--sdc-white);
  flex-shrink: 0;
  height: 13px;
  width: 1px;
}

.sdc-news__cat {
  color: var(--sdc-muted);
  font:
    300 10px/1.7 "Noto Sans JP",
    sans-serif;
  white-space: nowrap;
}

.sdc-news__meta p {
  color: var(--sdc-txt);
  font:
    300 13px/1.7 "Noto Sans JP",
    sans-serif;
  margin: 0;
}

.sdc-news__more {
  color: var(--sdc-txt);
  flex-shrink: 0;
  font:
    300 12px/1.7 "Inter",
    sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.sdc-news__meta:hover p,
.sdc-news__meta:focus-visible p,
.sdc-news__more:hover,
.sdc-news__more:focus-visible {
  opacity: 0.7;
}

.sdc-philosophy {
  margin: 0 auto;
  max-width: 1440px;
  padding: 92px clamp(40px, 8.33vw, 120px) 146px;
}

.sdc-section-head .eyebrow {
  color: #586179;
  font:
    400 16px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}

.sdc-section-head h2 {
  color: #111;
  font:
    400 34px/1.5 "Zen Old Mincho",
    serif;
  letter-spacing: 0.06em;
  margin: 0;
}

.sdc-philosophy__text {
  align-items: flex-start;
  display: flex;
  gap: min(11.4vw, 165px);
  justify-content: center;
  margin: 0 auto 68px;
}

.sdc-philosophy__heading {
  display: flex;
  flex-direction: column;
  font:
    400 24px/1.2 "Zen Old Mincho",
    serif;
  gap: 28px;
  letter-spacing: 0.08em;
  order: 1;
  writing-mode: vertical-rl;
}

.sdc-philosophy__heading span:last-child {
  margin-top: 55px;
}

.sdc-philosophy__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 85px;
  writing-mode: vertical-rl;
}

.sdc-philosophy__group {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.sdc-philosophy__group p {
  font:
    400 14px/1.05 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  margin: 0;
  white-space: nowrap;
}

.sdc-philosophy__group--pc {
  display: flex;
}

.sdc-br--1199,
.sdc-br--1017,
.sdc-br--999 {
  display: none;
}

.sdc-feature-grid {
  border-bottom: 0.5px solid var(--sdc-mid);
  border-top: 0.5px solid var(--sdc-mid);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 944px;
}

.sdc-feature-grid article {
  align-items: center;
  display: flex;
  font:
    400 18px/1.8 "Zen Old Mincho",
    serif;
  justify-content: center;
  letter-spacing: 0.07em;
  min-height: 117px;
  padding: 12px 32px;
  position: relative;
  text-align: center;
}

.sdc-feature-grid article:not(:last-child)::after {
  border-right: 0.5px solid var(--sdc-mid);
  bottom: 27px;
  content: "";
  position: absolute;
  right: 0;
  top: 27px;
}

/* --- philosophy / feature-grid: SP layout at narrow widths --- */
@media (max-width: 1017px) {
  .sdc-br--1017 {
    display: inline;
  }

  .sdc-philosophy {
    padding: 80px 20px;
  }

  .sdc-philosophy__text {
    display: block;
    margin: 0 auto 79px;
    max-width: 335px;
    min-height: 650px;
    position: relative;
    width: auto;
  }

  .sdc-philosophy__heading {
    gap: 28px;
    order: 0;
    position: absolute;
    right: 20px;
    top: 0;
  }

  .sdc-philosophy__heading span:last-child {
    margin-top: 55px;
  }

  .sdc-philosophy__body {
    display: flex;
    flex-direction: column;
    gap: 44px;
    margin: 0 auto;
    padding-top: 159px;
    width: 260px;
    writing-mode: horizontal-tb;
  }

  .sdc-philosophy__group {
    flex-direction: column;
    gap: 17px;
  }

  .sdc-philosophy__group p {
    font:
      400 14px/1.8 "Zen Old Mincho",
      serif;
    white-space: normal;
    writing-mode: horizontal-tb;
  }

  .sdc-philosophy__group:not(.sdc-philosophy__group--intro) p {
    line-height: 1.05;
  }

  .sdc-philosophy__group--pc {
    display: none;
  }

  .sdc-feature-grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 312px;
  }

  .sdc-feature-grid article {
    border-bottom: 0.5px solid var(--sdc-mid);
    border-right: 0;
    font-size: 18px;
    min-height: auto;
    padding: 28px 32px;
  }

  .sdc-feature-grid article:last-child {
    border-bottom: 0;
  }

  .sdc-feature-grid article:not(:last-child)::after {
    display: none;
  }
}

.sdc-strip {
  overflow: hidden;
}

.sdc-strip .splide__list {
  gap: 1px;
}

.sdc-strip__item {
  height: 450px;
}

.sdc-strip__item--narrow {
  width: 300px;
}

.sdc-strip__item--wide {
  width: 600px;
}

.sdc-strip__item img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sdc-treatment {
  margin: 0 auto;
  max-width: 1440px;
  padding: 160px clamp(16px, 12.5vw, 180px) 184px;
  position: relative;
}

.sdc-treatment__intro {
  /* max-width: 591px; */
}

.sdc-treatment .sdc-section-head .eyebrow {
  font-size: 17px;
  letter-spacing: 1.4px;
  margin: 0 0 41px;
}

.sdc-treatment .sdc-section-head h2 {
  font-size: 24px;
  letter-spacing: 3.8px;
  line-height: 2;
}

.sdc-treatment__photo {
  margin: 73px 0 79px -60px;
  width: clamp(500px, 552.5vw, 756px);
}

.sdc-treatment__photo img,
.sdc-treatment__photo-placeholder {
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
}

.sdc-treatment__photo-placeholder {
  background: #d8dde7;
}

.sdc-treatment__desc {
  font:
    400 14px/1.8 "Zen Old Mincho",
    serif;
  letter-spacing: 1.1px;
  margin: 0;
  max-width: 389px;
}

.sdc-treatment__desc--sp {
  display: none;
}

.sdc-treatment__flow {
  left: clamp(40px, 49vw, 711px);
  position: absolute;
  top: 160px;
  max-width: 549px;
  z-index: 2;
}

.sdc-flow__head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sdc-flow__head h3 {
  font:
    400 22px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 1.8px;
  margin: 0;
}

.sdc-flow__head p {
  color: var(--sdc-mid);
  font:
    400 18px/1.2 "Cinzel",
    serif;
  letter-spacing: 1.4px;
  margin: 0;
}

.sdc-flow-card {
  background: #fff;
  margin-bottom: 8px;
  padding: 32px;
}

.sdc-flow-card header {
  align-items: center;
  border-bottom: 1px solid var(--sdc-mid);
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 24px;
}

.sdc-flow-card header span {
  color: #7f8caa;
  font:
    400 40px/0.96 "Cinzel",
    serif;
  width: 55px;
}

.sdc-flow-card h4 {
  font:
    400 24px/1 "Zen Old Mincho",
    serif;
  margin: 0;
}

.sdc-flow-card > p {
  color: #6e6d69;
  font-size: 12px;
  line-height: 2;
  margin: 0;
}

.sdc-flow-card__tags {
  display: grid;
  gap: 20px 32px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.sdc-flow-card__tags li {
  display: block;
}

.sdc-flow-card__tag-link {
  align-items: center;
  color: var(--sdc-txt);
  display: inline-flex;
  font:
    400 18px/1.2 "Zen Old Mincho",
    serif;
  gap: 11px;
  letter-spacing: 1.4px;
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    color 0.25s ease;
  width: 100%;
}

.sdc-flow-card__tag-link[href]:hover {
  opacity: 0.74;
}

.sdc-flow-card__tag-link[href]:focus-visible {
  border-radius: 999px;
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.sdc-flow-card__bullet {
  flex-shrink: 0;
  height: 30px;
  width: 30px;
}

.sdc-flow-card__arrow {
  flex-shrink: 0;
  height: 12px;
  margin-left: auto;
  width: 12px;
}

/* --- con4: Greeting --- */
.sdc-greeting__hero {
  height: 449px;
  overflow: hidden;
}

.sdc-greeting__hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sdc-greeting__content {
  height: 786px;
  margin: 0 auto;

  position: relative;
}
.sdc-greeting__content-inner {
  height: 786px;
  margin: 0 auto;
  max-width: 963px;
  position: relative;
  width: 85%;
}

.sdc-greeting__line {
  pointer-events: none;
  position: absolute;
}

.sdc-greeting__line--tr {
  height: 421px;
  right: -9px;
  top: -2px;
  width: 242px;
}

.sdc-greeting__line--bl {
  height: 350px;
  left: 33px;
  top: 310px;
  width: 200px;
}

.sdc-greeting__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  left: 50%;
  position: absolute;
  top: 96px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.sdc-greeting__head h2 {
  color: var(--sdc-txt);
  font:
    400 24px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  margin: 0;
  text-align: center;
}

.sdc-greeting__head .eyebrow {
  color: var(--sdc-mid);
  font:
    400 18px/1.2 "Cinzel",
    serif;
  letter-spacing: 0.08em;
  margin: 0;
  text-align: center;
}

.sdc-greeting__since {
  height: 98px;
  left: -70px;
  position: absolute;
  top: 181px;
  width: 98px;
}

.sdc-greeting__since-outer {
  border: 0.5px solid var(--sdc-mid);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.sdc-greeting__since-inner {
  border: 0.5px solid var(--sdc-mid);
  border-radius: 50%;
  height: 70px;
  left: 14px;
  position: absolute;
  top: 14px;
  width: 70px;
}

.sdc-greeting__since-text {
  color: var(--sdc-mid);
  font:
    400 10px/1.8 "Zen Old Mincho",
    serif;
  left: 50%;
  letter-spacing: 0.08em;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sdc-greeting__vertical {
  color: var(--sdc-txt);
  font:
    400 28px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.sdc-greeting__vertical span {
  display: block;
}

.sdc-greeting__vertical--pc {
  display: flex;
  flex-direction: row-reverse;
  gap: 25px;
  position: absolute;
  right: 0;
  top: 137px;
  writing-mode: horizontal-tb;
}

.sdc-greeting__vertical--pc span {
  writing-mode: vertical-rl;
}

.sdc-greeting__vertical--pc span:last-child {
  margin-top: 40px;
}

.sdc-greeting__vertical--sp {
  display: none;
}

.sdc-greeting__body {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 227px;
  width: 409px;
}

.sdc-greeting__body p {
  color: var(--sdc-txt);
  font:
    400 14px/1.8 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  margin: 0 0 1em;
}

.sdc-greeting__body p:last-child {
  margin-bottom: 0;
}

.sdc-greeting__director {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  left: 0;
  position: absolute;
  top: 500px;
  writing-mode: horizontal-tb;
}

.sdc-greeting__director > * {
  writing-mode: vertical-rl;
}

.sdc-greeting__director-title {
  color: var(--sdc-txt);
  font:
    400 16px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
}

.sdc-greeting__director-name {
  color: var(--sdc-txt);
  font:
    400 22px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  margin-top: 11px;
}

.sdc-greeting__btn {
  align-items: center;
  background: var(--sdc-navy);
  border-radius: 300px;
  color: #fff;
  display: inline-flex;
  font:
    400 18px/1.2 "Zen Old Mincho",
    serif;
  gap: 11px;
  left: 50%;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  position: absolute;
  text-decoration: none;
  top: 600px;
  transform: translateX(-50%);
}

.sdc-greeting__btn img {
  height: 12px;
  width: 12px;
}

.sdc-br--pc {
  display: inline;
}

.sdc-social {
  align-items: start;
  column-gap: min(3vw, 43px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: calc(1080px + 80px);
  padding: 64px 40px 75px;
}

.sdc-social-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sdc-social-card > header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.sdc-social-card h3 {
  color: var(--sdc-navy);
  font:
    400 28px/1.8 "Cinzel",
    serif;
  letter-spacing: 0.04em;
  margin: 0;
}

.sdc-social-card > header > p {
  color: #7f8caa;
  font:
    500 14px/1.37 "Zen Old Mincho",
    serif;
  margin: 0;
}

.sdc-social-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.sdc-social-grid__item {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.sdc-social-grid__placeholder {
  background: #ced2db;
}

.sdc-social-grid__item img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sdc-social-grid__post {
  align-items: center;
  background: #ced2db;
  border-radius: 8px;
  display: flex;
  height: 164px;
  justify-content: center;
}

.sdc-social-grid__post img {
  height: 48px;
  width: 48px;
}

/* .sdc-social-grid--embed .sbi,
.sdc-social-grid--embed #sb_instagram {
  margin: 0 !important;
  max-width: none !important;
  padding-bottom: 0 !important;
  width: 100% !important;
} */

.sdc-social-grid--embed #sbi_images {
  display: grid !important;
  gap: 16px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sdc-social-grid--embed .sbi_item {
  clear: none !important;
  margin: 0 !important;
  opacity: 1 !important;
  padding: 0 !important;
  position: relative !important;
  width: auto !important;
}

.sdc-social-grid--embed .sbi_photo,
.sdc-social-grid--embed .sbi_photo_wrap {
  align-items: center;
  background: #ced2db !important;
  border-radius: 8px;
  display: flex !important;
  height: 164px !important;
  justify-content: center;
  padding: 0 !important;
}

.sdc-social-grid--embed .sbi_photo img {
  display: block !important;
  height: 48px !important;
  object-fit: cover;
  width: 48px !important;
}

.sdc-social-grid--embed .sb_instagram_header,
.sdc-social-grid--embed #sbi_load,
.sdc-social-grid--embed .sbi_follow_btn,
.sdc-social-grid--embed .sbi_header_link {
  display: none !important;
}

.sdc-ig-native-embed-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  height: 524px;
  overflow: hidden;
}

.sdc-ig-native-embed-wrap iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.sdc-social-follow {
  align-items: center;
  border-bottom: 0.5px solid var(--sdc-mid);
  display: inline-flex;
  gap: 11px;
  justify-content: center;
  margin: 0 auto;
  padding: 8px 0;
}

.sdc-social-follow span {
  color: var(--sdc-txt);
  font:
    400 18px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 1.44px;
}

.sdc-social-follow img {
  height: 12px;
  object-fit: contain;
  width: 12px;
}

.sdc-fb-preview {
  background: #f5f6f7;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding: 24px;
  width: 100%;
}

.sdc-social-card--facebook {
  min-width: 0;
}

.sdc-fb-page {
  align-items: center;
  display: flex;
  gap: 16px;
}

.sdc-fb-page__avatar {
  align-items: center;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.sdc-fb-page__avatar img {
  height: 28px;
  width: 28px;
}

.sdc-fb-page div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.sdc-fb-page strong {
  color: #1c1e21;
  font:
    900 16px/1.2 "Noto Sans JP",
    sans-serif;
}

.sdc-fb-page span {
  color: #65676b;
  font:
    400 13px/1.2 "Noto Sans JP",
    sans-serif;
}

.sdc-fb-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 80px;
}

.sdc-fb-action {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font:
    900 13px/1.2 "Noto Sans JP",
    sans-serif;
  gap: 6px;
  justify-content: center;
  min-height: 36px;
}

.sdc-fb-action--follow {
  background: #4267b2;
  color: #fff;
}

.sdc-fb-action--share {
  background: #e4e6eb;
  color: #050505;
}

.sdc-fb-action img {
  height: 16px;
  width: 16px;
}

.sdc-fb-native-embed-wrap {
  background: #fff;
  border-radius: 8px;
  height: 369px;
  max-width: 100%;
  min-width: 0;
  width: min(500px, 100%);
  overflow: hidden;
}

.sdc-fb-native-embed-wrap iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.sdc-fb-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 369px;
  overflow: hidden;
}

.sdc-fb-post {
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.sdc-fb-post__head {
  align-items: center;
  display: flex;
  gap: 12px;
}

.sdc-fb-post__avatar {
  background: #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  height: 32px;
  width: 32px;
}

.sdc-fb-post__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sdc-fb-post__meta strong {
  color: #1c1e21;
  font:
    900 13px/1.2 "Noto Sans JP",
    sans-serif;
}

.sdc-fb-post__meta time {
  color: #65676b;
  font:
    400 11px/1.2 "Noto Sans JP",
    sans-serif;
}

.sdc-fb-post p {
  color: #1c1e21;
  font:
    400 14px/1.2 "Noto Sans JP",
    sans-serif;
  margin: 0;
}

.sdc-fb-post__image {
  align-items: center;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  height: 200px;
  justify-content: center;
}

.sdc-fb-post__image img {
  height: 48px;
  width: 48px;
}

.sdc-fb-more {
  align-items: center;
  background: #fff;
  border-radius: 6px;
  display: inline-flex;
  font:
    900 13px/1.2 "Noto Sans JP",
    sans-serif;
  gap: 8px;
  height: 40px;
  justify-content: center;
}

.sdc-fb-more span {
  color: #4267b2;
}

.sdc-fb-more img {
  height: 16px;
  width: 16px;
}

/* --- Access / Info Section --- */
.sdc-info {
  background: #fff;
  padding-bottom: 80px;
  position: relative;
}

.sdc-info__bg {
  overflow: hidden;
}

.sdc-info__bg img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sdc-info__inner {
  margin: 0 auto;
  max-width: 1080px;
  padding-top: 112px;
  padding-inline: 40px;
}

.sdc-info__layout {
  display: grid;
  gap: min(49px, 3.4vw);
  grid-template-columns: 30px 1fr;
}

.sdc-info__head {
  display: block;
}

.sdc-info__head h2 {
  color: var(--sdc-txt);
  font:
    400 24px/1.2 "Zen Old Mincho",
    serif;
  letter-spacing: 0.08em;
  margin: 0;
  writing-mode: vertical-rl;
}

.sdc-info__body {
  min-width: 0;
}

.sdc-info__body .eyebrow {
  color: var(--sdc-mid);
  font:
    400 18px/1.2 "Cinzel",
    serif;
  letter-spacing: 0.08em;
  margin: 0 0 44px;
}

.sdc-info__eyebrow--sp {
  display: none;
}

.sdc-info__columns {
  display: grid;
  gap: min(3.8vw, 56px);
  grid-template-columns: repeat(2, 1fr);
}

.sdc-clinic-info,
.sdc-hours {
  min-width: 0;
}

.sdc-clinic-info h3,
.sdc-hours h3 {
  color: #000;
  font:
    400 20px/1.2 "Zen Old Mincho",
    serif;
  margin: 0 0 16px;
}

.sdc-clinic-info__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}

.sdc-clinic-info__details p {
  color: var(--sdc-muted);
  font:
    400 14px/1.7 "Noto Sans JP",
    sans-serif;
  margin: 0;
}

.sdc-clinic-info__phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sdc-clinic-info__phones p {
  color: var(--sdc-muted);
  font:
    400 14px/1.2 "Noto Sans JP",
    sans-serif;
  margin: 0;
}

.sdc-clinic-info__phones a {
  color: inherit;
  text-decoration: none;
}

.sdc-clinic-info__phones a:hover {
  opacity: 0.74;
}

.sdc-clinic-info__phones a:focus-visible {
  border-radius: 2px;
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.sdc-map {
  background: #cdcdcd;
  height: 344px;
  overflow: hidden;
  width: 100%;
}

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

.sdc-hours__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sdc-hours__floor {
  background: var(--sdc-light);
  padding: 20px;
}

.sdc-hours__floor h4 {
  color: #000;
  font:
    400 16px/1.05 "Zen Old Mincho",
    serif;
  margin: 0 0 8px;
}

.sdc-hours__table-wrap {
  padding-top: 17px;
}

.sdc-hours-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.sdc-hours-table col:first-child {
  width: 100px;
}

.sdc-hours-table thead tr,
.sdc-hours-table tbody tr {
  border-bottom: 0.5px solid #d6dcea;
}

.sdc-hours-table th,
.sdc-hours-table td {
  color: var(--sdc-txt);
  font:
    400 14px/1.2 "Noto Sans JP",
    sans-serif;
  padding: 14px 0;
  text-align: center;
  vertical-align: middle;
}

.sdc-hours-table thead th:first-child,
.sdc-hours-table tbody th {
  color: var(--sdc-txt);
  font:
    400 13px/1.3 "Noto Sans JP",
    sans-serif;
  letter-spacing: 0.05em;
  padding-right: 10px;
  text-align: left;
}

.sdc-hours__time {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}

.sdc-hours__sub {
  color: var(--sdc-muted);
  display: block;
  font-size: 12px;
  line-height: 1.3;
}

.sdc-hours-table tbody td {
  color: #7f8caa;
  font:
    400 14px/1.2 "Zen Kaku Gothic New",
    sans-serif;
}

.sdc-hours-table__day--alt {
  color: #7f8caa !important;
}

.sdc-hours-table__day--off {
  color: #a7a7a7 !important;
}

.sdc-hours__note {
  padding-top: 14px;
}

.sdc-hours__note p {
  color: var(--sdc-muted);
  font:
    400 14px/1.7 "Noto Sans JP",
    sans-serif;
  margin: 0;
}

.sdc-hours__footnote {
  color: #666;
  font:
    400 13px/1.2 "Noto Sans JP",
    sans-serif;
  margin: 0;
}

/* Contact band & footer styles → moved to main.css */

/* --- hero: SP layout under 1000px --- */
@media (max-width: 999px) {
  .sdc-br--999 {
    display: inline;
  }

  .sdc-hero {
    height: 561px;
  }

  .sdc-hero__inner {
    height: 561px;
    padding: 18px;
  }

  .sdc-hero .sdc-logo {
    display: none;
  }

  .sdc-hero__copy {
    margin-top: 56px;
    max-width: 225px;
  }

  .sdc-hero__copy h1 {
    font-size: 30px;
    line-height: 1.6;
    letter-spacing: 0.07em;
    margin-bottom: 0;
  }

  .sdc-hero__copy-sp-line {
    display: inline-block;
    white-space: nowrap;
  }

  .sdc-hero__copy-text {
    gap: 9px;
    margin-top: 15px;
    max-width: 206px;
  }

  .sdc-hero__copy-text-block {
    font-size: 12px;
    line-height: 1.8;
  }

  .sdc-hero__copy-text-block--a {
    max-width: 189px;
  }

  .sdc-hero__copy-text-block--b {
    max-width: 206px;
  }

  .sdc-floor-contact {
    bottom: auto;
    height: 95px;
    left: 18px;
    right: auto;
    top: 441.5px;
    max-width: 343px;
    width: calc(100% - 36px);
  }

  .sdc-floor-contact > img {
    height: 52px;
    top: 0;
    width: 19.2%;
  }

  .sdc-floor-contact ul {
    left: 7%;
    min-height: 72.5px;
    top: 22.5px;
    width: 93%;
  }

  .sdc-floor-contact li {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 0;
    position: absolute;
  }

  .sdc-floor-contact li:nth-child(1) {
    left: 0;
    top: 0;
  }

  .sdc-floor-contact li:nth-child(2) {
    left: 0;
    top: 34.5px;
    width: 53.3%;
  }

  .sdc-floor-contact li:nth-child(3) {
    left: 56.1%;
    top: 0.5px;
    width: 43.9%;
  }

  .sdc-floor-contact li:nth-child(4) {
    font-size: 10px;
    left: 56.1%;
    line-height: 1.3;
    top: 43.5px;
    width: 43.9%;
  }

  .sdc-floor-contact li > span {
    gap: 2px;
    line-height: 1.4;
  }

  .sdc-floor-contact__tel-label {
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .sdc-floor-contact__tel-number {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .sdc-floor-contact li:nth-child(2) .sdc-floor-contact__tel-number {
    letter-spacing: 0.1em;
  }
}

@media (max-width: 767px) {
  .sdc-side-label {
    display: none;
  }

  .sdc-news__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 23px 16px;
  }

  .sdc-news__meta {
    gap: 11px;
  }

  .sdc-news__meta p {
    max-width: 196px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sdc-news__more {
    display: block;
    text-align: right;
    width: 100%;
  }

  .sdc-section-head .eyebrow {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .sdc-section-head h2 {
    font-size: 29px;
    line-height: 1.5;
  }

  .sdc-strip__item {
    height: 240px;
  }

  .sdc-strip__item--narrow {
    width: 160px;
  }

  .sdc-strip__item--wide {
    width: 320px;
  }

  .sdc-greeting__hero {
    height: 260px;
  }

  .sdc-greeting__hero img {
    object-position: center 20%;
  }

  .sdc-greeting__content {
    height: 1034px;
    margin: 0 auto;
    max-width: 375px;
    padding: 0;
  }

  .sdc-greeting__content-inner {
    width: 100%;
  }

  .sdc-greeting__head {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    left: 50%;
    max-width: 343px;
    position: absolute;
    top: 74px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
  }

  .sdc-greeting__head h2 {
    text-align: left;
  }

  .sdc-greeting__head .eyebrow {
    text-align: right;
  }

  .sdc-greeting__line--tr {
    display: none;
  }

  .sdc-greeting__line--bl {
    display: none;
  }

  .sdc-greeting__since {
    left: -14px;
    top: 95px;
  }

  .sdc-greeting__vertical--pc {
    display: none;
  }

  .sdc-greeting__vertical--sp {
    display: block;
    writing-mode: horizontal-tb;
    font:
      400 24px/1.2 "Zen Old Mincho",
      serif;
    letter-spacing: 0.08em;
    color: var(--sdc-txt);
    margin-bottom: 40px;
  }

  .sdc-greeting__vertical--sp span {
    display: block;
  }

  .sdc-greeting__vertical--sp span + span {
    margin-top: 22px;
  }

  .sdc-greeting__body {
    position: absolute;
    top: 200px;
    width: 261px;
  }

  .sdc-greeting__body p {
    font-size: 14px;
    text-align: justify;
    margin: 0;
  }

  .sdc-greeting__body p + p {
    margin-top: 1.8em;
  }

  .sdc-br--pc {
    display: none;
  }

  .sdc-greeting__director {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    left: 182px;
    position: absolute;
    top: 839px;
    writing-mode: horizontal-tb;
  }

  .sdc-greeting__director > * {
    writing-mode: horizontal-tb;
  }

  .sdc-greeting__director-title {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .sdc-greeting__director-name {
    font-size: 20px;
    letter-spacing: 0.08em;
    margin-top: 0;
  }

  .sdc-greeting__btn {
    left: 50%;
    position: absolute;
    top: 904px;
    transform: translateX(-50%);
    gap: 9px;
  }

  .sdc-social {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 0 16px 64px;
    max-width: 500px;
    margin-inline: auto;
    align-items: center;
  }

  .sdc-social-card {
    gap: 24px;
    width: 100%;
  }

  .sdc-social-card--facebook {
    align-items: center;
    width: 100%;
  }

  .sdc-social-grid {
    gap: 10px;
  }

  .sdc-social-grid__post {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .sdc-social-grid__post img {
    height: 31px;
    width: 31px;
  }

  .sdc-social-grid--embed #sbi_images {
    gap: 10px !important;
  }

  .sdc-social-grid--embed .sbi_photo,
  .sdc-social-grid--embed .sbi_photo_wrap {
    aspect-ratio: 1 / 1;
    height: auto !important;
  }

  .sdc-social-grid--embed .sbi_photo img {
    height: 31px !important;
    width: 31px !important;
  }

  .sdc-ig-native-embed-wrap {
    height: 420px;
  }

  .sdc-fb-preview {
    width: 100%;
  }
  .sdc-fb-native-embed-wrap {
    height: 320px;
  }

  .sdc-fb-posts {
    height: 320px;
  }

  .sdc-fb-post__image {
    height: 134px;
  }

  .sdc-info__bg {
    height: 220px;
  }

  .sdc-info__inner {
    max-width: calc(343px + 32px);
    padding-inline: 16px;
    padding-top: 64px;
  }

  .sdc-info__layout {
    display: block;
  }

  .sdc-info__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
  }

  .sdc-info__head h2 {
    letter-spacing: 0.08em;
    font-size: 24px;
    writing-mode: horizontal-tb;
  }

  .sdc-info__eyebrow--sp {
    color: var(--sdc-mid);
    display: block;
    font:
      400 18px/1.2 "Cinzel",
      serif;
    letter-spacing: 0.08em;
    margin: 0;
  }

  .sdc-info__eyebrow--pc {
    display: none;
  }

  .sdc-info__columns {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .sdc-clinic-info__details {
    margin-bottom: 40px;
  }

  .sdc-map {
    aspect-ratio: 343 / 194;
    height: auto;
    width: 100%;
  }

  .sdc-hours__floor {
    padding: 20px 16px;
    max-width: 343px;
  }

  .sdc-hours__sub {
    white-space: nowrap;
  }

  .sdc-hours-table col:first-child {
    width: 88px;
  }

  .sdc-hours-table th,
  .sdc-hours-table td {
    padding: 14px 0;
  }

  .sdc-hours-table tbody td {
    font-size: 13px;
  }
}

@media (max-width: 1199px) {
  .sdc-br--1199 {
    display: inline;
  }

  /* Contact band responsive → moved to main.css */

  .sdc-treatment {
    display: block;
    padding: 96px 16px 120px;
  }

  .sdc-treatment__intro {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .sdc-treatment .sdc-section-head {
    max-width: 302px;
    padding: 0 21px;
    width: 100%;
  }

  .sdc-treatment__photo {
    align-self: stretch;
    margin: 0;
    width: auto;
  }

  .sdc-treatment__photo-placeholder,
  .sdc-treatment__photo img {
    height: 215px;
    width: 100%;
  }

  .sdc-treatment__desc {
    max-width: none;
    width: 260px;
  }

  .sdc-treatment__desc--pc {
    display: none;
  }

  .sdc-treatment__desc--sp {
    display: block;
  }

  .sdc-treatment__flow {
    left: auto;
    margin-top: 120px;
    position: static;
    top: auto;
    width: auto;
    margin-inline: auto;
  }

  .sdc-flow__head {
    align-items: flex-end;
    margin-bottom: 40px;
  }

  .sdc-flow-card {
    padding: 16px 24px 24px;
  }

  .sdc-flow-card header {
    gap: 8px;
    padding-bottom: 12px;
  }

  .sdc-flow-card header span {
    font-size: 28px;
    width: 34px;
  }

  .sdc-flow-card h4 {
    font-size: 18px;
  }

  .sdc-flow-card__tags {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
}

/* Footer responsive → moved to main.css */
