:root {
  --ink: #22211f;
  --text: #3f3c38;
  --muted: #77716b;
  --line: #e5e0dc;
  --soft: #f4f7f9;
  --white: #fff;
  --wine: #2f6388;
  --wine-dark: #244f6d;
  --blue-soft: #e8f1f7;
  --green: #238b72;
  --mint: #e9f5ef;
  --gold: #958a65;
  --shadow: 0 18px 52px rgba(51, 36, 28, 0.12);
  --page-gutter: clamp(40px, 7vw, 128px);
  --content-max: 1120px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fdfdfd;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 28px;
  padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(34, 33, 31, 0.06);
  backdrop-filter: blur(16px);
  overflow: visible;
}

.brand {
  display: flex;
  height: 80px;
  align-items: center;
  overflow: hidden;
  align-self: start;
}

.brand img {
  width: 270px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.bizcli-brand img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.bizcli-brand {
  overflow: visible;
}

.site-footer img {
  width: 230px;
  height: auto;
}

.global-nav {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: flex-end;
  align-self: start;
  gap: clamp(16px, 2vw, 30px);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.global-nav a:hover {
  color: var(--wine);
}

.header-tel {
  align-self: start;
  min-width: 190px;
  height: 120px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 0 26px 4px;
  border-bottom-left-radius: 12px;
  color: var(--white);
  background: var(--wine);
  text-align: center;
  box-shadow: 0 14px 30px rgba(47, 99, 136, 0.22);
}

.header-tel span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.header-tel strong {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: 0;
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  margin-right: 14px;
  border: 0;
  background: var(--soft);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 7px auto;
  background: var(--wine);
}

.mobile-nav {
  position: fixed;
  inset: 88px 14px auto;
  z-index: 30;
  display: none;
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: flex;
  min-height: 50px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-cta {
  justify-content: center;
  margin-top: 10px;
  color: var(--white);
  background: var(--wine);
}

.home-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--soft);
}

.hero-slide {
  position: relative;
  min-height: 520px;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - (var(--page-gutter) * 2)));
  padding: 82px 0 80px;
  margin-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
}

.keep-line {
  white-space: nowrap;
}

.label {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1,
.biz-hero h1 {
  margin: 0;
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy p:not(.label),
.biz-hero-copy p:not(.label) {
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(15px, 1.35vw, 16px);
  font-weight: 600;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-btn,
.ghost-btn,
.department-grid article a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius);
}

.primary-btn {
  color: var(--white);
  background: var(--wine);
}

.primary-btn:hover,
.header-tel:hover {
  background: var(--wine-dark);
}

.ghost-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.stats {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 54px auto 0;
  text-align: center;
}

.stats div {
  position: relative;
  padding: 16px 14px 20px;
}

.stats div::before,
.stats div::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 14px;
  height: 46px;
  border: solid var(--gold);
  opacity: 0.28;
}

.stats div::before {
  left: 18px;
  border-width: 0 0 0 2px;
  border-radius: 50% 0 0 50%;
  transform: rotate(16deg);
}

.stats div::after {
  right: 18px;
  border-width: 0 2px 0 0;
  border-radius: 0 50% 50% 0;
  transform: rotate(-16deg);
}

.stats span {
  display: block;
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.stats strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(21px, 2.2vw, 30px);
}

.stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head,
.section-title-row,
.about-section,
.split-info {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: minmax(560px, 0.96fr) minmax(420px, 1.04fr);
  grid-template-rows: auto auto;
  column-gap: 56px;
  row-gap: 34px;
  align-items: start;
}

.about-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
}

.about-section .section-head {
  display: block;
  margin: 0;
}

.about-section .section-head h2 {
  max-width: 720px;
}

.about-section .about-body {
  grid-column: auto;
  max-width: 680px;
}

.section-head h2,
.section-title-row h2,
.split-info h2 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: 0;
}

.about-body {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.about-body p:first-child {
  margin-top: 0;
}

.section-title-row {
  margin-bottom: 28px;
}

.departments .section-title-row {
  margin-bottom: 22px;
}

.section-title-row > a {
  justify-self: end;
  align-self: end;
  padding: 13px 18px;
  color: var(--wine);
  border: 1px solid var(--line);
  font-weight: 800;
}

.news-title-row {
  grid-template-columns: 1fr auto;
  align-items: end;
  width: 100%;
  margin-bottom: 22px;
}

.news-title-row > a {
  justify-self: end;
}

.departments,
.news-section {
  width: 100%;
  padding-right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  background: var(--soft);
}

.departments {
  padding-top: 72px;
}

.news-section {
  padding-top: 88px;
  padding-bottom: 72px;
}

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

.department-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.department-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
  border-radius: var(--radius);
}

.department-grid article span,
.news-list span {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--wine);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
  border-radius: 6px;
}

.department-grid h3 {
  margin: 22px 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.department-grid p,
.split-info p,
.contact-panel p {
  color: var(--muted);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.75;
}

.split-info .label {
  color: var(--wine);
}

.bizcli-card {
  background: var(--white) !important;
}

.department-grid article a {
  padding: 0;
  color: var(--wine);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.news-list article {
  min-height: 170px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
}

.news-list time {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.news-list h3 {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.65;
}

.symptom-tags {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.symptoms-head {
  display: block;
  width: 100%;
  margin-bottom: 28px;
}

.symptoms-head h2 {
  text-align: left;
}

.symptom-tags a,
.symptom-tags span {
  height: 64px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: var(--radius);
}

.symptom-tags.large a,
.symptom-tags.large span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  background: var(--mint);
  border-color: #d4e8df;
}

.bizcli-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
  border: 1px solid #d7e4ec;
  background: linear-gradient(135deg, #f7fbfd 0%, #e8f1f7 100%);
  border-radius: var(--radius);
  margin-bottom: 72px;
}

.bizcli-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
}

.bizcli-cta p:not(.label) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.bizcli-cta .primary-btn {
  margin-top: 24px;
  min-width: 190px;
}

.bizcli-cta-character {
  width: 220px;
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 12px 18px rgba(47, 99, 136, 0.14));
}

.clinic-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.clinic-info-main {
  min-width: 0;
}

.clinic-heading {
  margin-bottom: 0;
}

.clinic-table-wrap {
  grid-column: 1;
  grid-row: 2;
}

.clinic-table div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.clinic-table dt {
  color: var(--wine);
  font-weight: 800;
}

.clinic-table dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.clinic-map {
  grid-column: 2;
  grid-row: 2;
  height: 100%;
  align-self: stretch;
  border: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
  border-radius: var(--radius);
}

.clinic-map iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border: 0;
  filter: saturate(0.88);
}

.dc-section-head {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto 48px;
  text-align: center;
}

.dc-section-head p {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.dc-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.28;
}

.dc-section-head small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.dc-reason,
.dc-online,
.dc-face,
.dc-column,
.dc-news,
.dc-consult {
  padding: 104px 0;
}

.dc-reason {
  background: #f7fafc;
}

.dc-reason-list {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  gap: 34px;
  margin: 0 auto;
}

.dc-reason-item {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: stretch;
  padding: 34px;
  background: var(--white);
  border: 1px solid #dfe8ee;
  border-radius: var(--radius);
}

.dc-reason-item.reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.dc-reason-item.reverse .dc-reason-text {
  grid-column: 2;
}

.dc-reason-item.reverse .dc-reason-visual {
  grid-column: 1;
  grid-row: 1;
}

.dc-reason-text {
  align-self: center;
}

.dc-reason-text span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  border-radius: 999px;
}

.dc-reason-text h3 {
  margin: 24px 0 16px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.38;
}

.dc-reason-text p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}

.dc-reason-visual {
  min-height: 320px;
  display: grid;
  place-items: end start;
  padding: 30px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  border-radius: var(--radius);
}

.dc-reason-visual.private {
  background:
    linear-gradient(135deg, rgba(47, 99, 136, 0.94), rgba(47, 99, 136, 0.48)),
    url("/assets/clinic-hero.png") center / cover;
}

.dc-reason-visual.drip {
  background: linear-gradient(135deg, #238b72, #a2cfc4);
}

.dc-reason-visual.online {
  background: linear-gradient(135deg, #2f6388, #d8e8f1);
}

.dc-reason-visual.support {
  background: linear-gradient(135deg, #958a65, #ddd5b7);
}

.dc-reason {
  background: var(--white);
  padding: 86px 0 98px;
}

.dc-reason-title {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto 34px;
}

.dc-reason-title p {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.dc-reason-title p span {
  width: 42px;
  height: 10px;
  display: inline-block;
  background: linear-gradient(90deg, #91b8d2 0 48%, var(--wine) 48% 100%);
}

.dc-reason-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: 0;
}

.dc-reason-title h2 span {
  color: var(--wine);
}

.dc-reason-layout {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.84fr);
  gap: 64px;
  align-items: start;
  margin: 0 auto;
}

.dc-reason-tabs {
  display: grid;
}

.dc-reason-tabs article {
  min-height: 98px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.dc-reason-tabs h3 {
  margin: 0;
  color: #777;
  font-size: 18px;
  line-height: 1.45;
}

.dc-reason-tabs h3 span {
  color: #91b8d2;
}

.dc-reason-tabs .is-active h3 {
  color: var(--ink);
}

.dc-reason-tabs .is-active h3 span {
  color: var(--wine);
}

.reason-icon {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
  color: #91b8d2;
  border: 2px solid currentColor;
}

.is-active .reason-icon {
  color: var(--wine);
}

.reason-icon.heart {
  border-radius: 50% 50% 42% 42%;
  transform: rotate(45deg) scale(0.82);
}

.reason-icon.heart::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.reason-icon.box {
  transform: rotate(28deg) skew(-10deg);
}

.reason-icon.clock {
  border-radius: 50%;
}

.reason-icon.clock::before,
.reason-icon.clock::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 2px;
  height: 12px;
  background: currentColor;
}

.reason-icon.clock::after {
  top: 17px;
  width: 10px;
  height: 2px;
}

.reason-icon.chat {
  border-radius: 6px;
}

.reason-icon.chat::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -8px;
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: var(--white);
  transform: rotate(-45deg);
}

.reason-icon.clinic {
  border-radius: 5px;
}

.reason-icon.clinic::before,
.reason-icon.clinic::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.reason-icon.clinic::before {
  left: 15px;
  top: 7px;
  width: 4px;
  height: 20px;
}

.reason-icon.clinic::after {
  left: 7px;
  top: 15px;
  width: 20px;
  height: 4px;
}

.dc-reason-panel {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 36px;
  align-items: center;
  padding: 42px 36px;
  background: #f4f6f8;
}

.dc-reason-panel h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.55;
}

.dc-reason-panel h3 span {
  color: var(--wine);
}

.dc-reason-panel p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 2.05;
}

.dc-reason-panel img {
  width: 240px;
  height: 162px;
  object-fit: cover;
  object-position: center;
}

.dc-reason {
  background: #f7fafc;
  padding: 104px 0;
}

.dc-online {
  background: var(--white);
}

.dc-online-grid {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.dc-online-grid a {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  background: linear-gradient(150deg, #eef6fb, #fff);
  border: 1px solid #dfe8ee;
  color: var(--ink);
  border-radius: var(--radius);
}

.dc-online-grid span,
.dc-column-grid span,
.dc-news-list span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  color: var(--wine);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
  border-radius: 6px;
}

.dc-online-grid h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.4;
}

.dc-online-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.dc-tag-list {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px auto 0;
}

.dc-tag-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
}

.dc-center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.dc-face {
  background: #f7fafc;
}

.dc-face-card {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: stretch;
  margin: 0 auto;
  padding: 28px;
  background: var(--white);
  border: 1px solid #dfe8ee;
  border-radius: var(--radius);
}

.dc-face-image {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.dc-face-body {
  align-self: center;
}

.dc-face-body h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.dc-face-body p {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.85;
}

.dc-face-body dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.dc-face-body dl div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.dc-face-body dt {
  color: var(--wine);
  font-weight: 800;
}

.dc-face-body dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.dc-map {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  height: 360px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88);
}

.dc-column {
  background: var(--white);
}

.dc-column-grid {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.dc-column-grid a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid #dfe8ee;
  color: var(--ink);
  border-radius: var(--radius);
}

.dc-column-grid time,
.dc-news-list time {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.dc-column-grid h3 {
  margin: auto 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.dc-news {
  background: #f7fafc;
}

.dc-news-list {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.dc-news-list article {
  display: grid;
  grid-template-columns: 140px 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid #dfe8ee;
  border-radius: var(--radius);
}

.dc-news-list h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.dc-consult {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 52px 48px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
}

.dc-consult p {
  margin: 0 0 10px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.dc-consult h2 {
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.4;
}

.dc-consult .primary-btn {
  color: var(--wine);
  background: var(--white);
}

.site-footer {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 48px;
  row-gap: 28px;
  align-items: start;
  margin: 0 auto;
  padding: 52px 0 60px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: contents;
}

.footer-brand img {
  grid-column: 1;
  grid-row: 1;
  width: 230px;
  height: auto;
}

.footer-brand p {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
}

.footer-links {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: clamp(34px, 5vw, 76px);
  justify-content: end;
  justify-items: start;
  margin-left: auto;
  color: var(--text);
}

.footer-links h2 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  display: block;
  margin-top: 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--wine);
}

.legal-page {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.legal-hero {
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-content {
  max-width: 980px;
  padding: 42px 0 0;
  color: var(--text);
}

.legal-content p,
.legal-content li,
.legal-table dd {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.legal-content h2 {
  margin: 42px 0 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.5;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.3em;
}

.legal-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-table div {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-table dt {
  color: var(--wine);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}

.legal-table dd {
  margin: 0;
}

.bizcli-page {
  background: #fffaf8;
}

.biz-header-line {
  background: var(--wine);
  box-shadow: 0 14px 30px rgba(47, 99, 136, 0.24);
}

.biz-header-line:hover {
  background: var(--wine-dark);
}

.biz-lp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(47, 99, 136, 0.14), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff7f4 100%);
}

.biz-lp-hero-inner {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: 70px 0 76px;
}

.biz-lp-kicker {
  margin: 0 0 22px;
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.biz-lp-sub {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.7;
}

.biz-lp-hero h1 {
  margin: 4px 0 18px;
  color: #3c2f29;
  font-size: clamp(62px, 8vw, 118px);
  line-height: 1;
  letter-spacing: 0.06em;
}

.biz-lp-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.biz-lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.biz-line-btn,
.biz-outline-btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 800;
}

.biz-line-btn {
  flex-direction: column;
  gap: 2px;
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 14px 28px rgba(22, 184, 95, 0.2);
}

.biz-line-btn span {
  font-size: 12px;
}

.biz-outline-btn {
  border: 1px solid #efb3a9;
  color: #cf7063;
  background: var(--white);
}

.biz-lp-hero-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 2px solid #9fc3dd;
  background: linear-gradient(145deg, #fff, #eef7fc);
  border-radius: 26px;
}

.biz-lp-hero-visual img {
  width: min(320px, 78%);
  filter: drop-shadow(0 18px 20px rgba(47, 99, 136, 0.16));
}

.biz-lp-scene {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
}

.biz-lp-scene-card {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid #efb3a9;
  background: rgba(255, 255, 255, 0.96);
  color: #3c2f29;
  text-align: center;
  font-weight: 800;
  border-radius: var(--radius);
}

.biz-lp-section {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 88px 0;
}

.biz-lp-heading {
  margin-bottom: 34px;
  text-align: center;
}

.biz-lp-heading p {
  margin: 0 0 8px;
  color: #cf7063;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.biz-lp-heading h2 {
  margin: 0;
  color: #3c2f29;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
}

.biz-about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 38px;
  align-items: center;
  padding: 42px;
  border: 1px solid #f1c8c1;
  background: var(--white);
  border-radius: var(--radius);
}

.biz-about-panel h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.45;
}

.biz-about-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.biz-about-panel img {
  width: 220px;
  justify-self: center;
}

.biz-why-section {
  width: 100%;
  padding-right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  background: #fff4f1;
}

.biz-reason-grid,
.biz-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.biz-reason-grid article,
.biz-popular-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid #f1c8c1;
  background: var(--white);
  border-radius: var(--radius);
}

.biz-reason-grid span,
.biz-popular-grid span {
  color: #cf7063;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.biz-reason-grid h3,
.biz-popular-grid h3 {
  margin: 18px 0 12px;
  color: #3c2f29;
  font-size: 22px;
  line-height: 1.45;
}

.biz-reason-grid p,
.biz-popular-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.biz-popular-grid {
  grid-template-columns: repeat(3, 1fr);
}

.biz-popular-grid article {
  min-height: 270px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 247, 0.72));
}

.biz-popular-grid a {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 18px;
  border: 1px solid #cf7063;
  color: #cf7063;
  font-weight: 800;
  border-radius: var(--radius);
}

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

.biz-menu-grid a {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid #f1c8c1;
  background: var(--white);
  color: #3c2f29;
  font-size: 20px;
  font-weight: 800;
  border-radius: var(--radius);
}

.biz-menu-grid span {
  color: #cf7063;
  font-size: 13px;
  white-space: nowrap;
}

.biz-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.biz-flow li {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #f1c8c1;
  background: var(--white);
  border-radius: var(--radius);
}

.biz-flow span {
  color: #cf7063;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.biz-flow strong {
  display: block;
  margin: 18px 0 10px;
  color: #3c2f29;
  font-size: 19px;
}

.biz-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.biz-price-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid #f1c8c1;
  background: var(--white);
  text-align: center;
  border-radius: var(--radius);
}

.biz-price-panel h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.biz-price-panel p {
  margin: 0 auto 24px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.85;
}

.biz-faq {
  display: grid;
  gap: 12px;
}

.biz-faq details {
  padding: 22px 24px;
  border: 1px solid #f1c8c1;
  background: var(--white);
  border-radius: var(--radius);
}

.biz-faq summary {
  cursor: pointer;
  color: #3c2f29;
  font-size: 18px;
  font-weight: 800;
}

.biz-faq p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.biz-lp-news {
  padding-top: 48px;
}

.biz-news-list {
  display: grid;
  gap: 12px;
}

.biz-news-list article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding: 20px 24px;
  border: 1px solid #f1c8c1;
  background: var(--white);
  border-radius: var(--radius);
}

.biz-news-list time {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.biz-news-list h3 {
  margin: 0;
  font-size: 16px;
}

.biz-floating-line {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  min-width: 220px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(22, 184, 95, 0.28);
  font-size: 20px;
  font-weight: 800;
  border-radius: var(--radius);
}

.biz-floating-line span {
  font-size: 13px;
}

.online-kv {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.online-kv-inner {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0 90px;
}

.online-kv-label {
  margin: 0 0 20px;
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.online-kv h1 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.22;
  letter-spacing: 0;
}

.online-kv-copy > p:not(.online-kv-label) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.online-line-btn,
.online-fixed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--wine);
  font-weight: 800;
  border-radius: var(--radius);
}

.online-line-btn {
  min-height: 58px;
  margin-top: 32px;
  padding: 0 30px;
  font-size: 18px;
  box-shadow: 0 14px 28px rgba(22, 184, 95, 0.22);
}

.online-kv-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(22, 184, 95, 0.14), transparent 28%),
    linear-gradient(135deg, #e8f1f7, #fff);
  border: 1px solid #cfe0eb;
  border-radius: var(--radius);
}

.online-kv-visual img {
  width: min(310px, 78%);
  filter: drop-shadow(0 18px 22px rgba(47, 99, 136, 0.16));
}

.online-feature-strip {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: -52px auto 0;
  position: relative;
  z-index: 2;
}

.online-feature-strip article {
  min-height: 128px;
  padding: 20px;
  background: var(--white);
  border: 1px solid #dfe8ee;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(47, 99, 136, 0.1);
}

.online-feature-strip span {
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.online-feature-strip strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.online-feature-strip em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.online-section {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 104px 0;
}

.online-section-title {
  margin-bottom: 42px;
  text-align: center;
}

.online-section-title p {
  margin: 0 0 10px;
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.online-section-title h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.3;
}

.online-section-title span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.online-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.online-card-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  background: linear-gradient(145deg, #eef6fb, #fff);
  border: 1px solid #dfe8ee;
  color: var(--ink);
  border-radius: var(--radius);
}

.online-card-grid b {
  display: block;
  font-size: 24px;
  line-height: 1.4;
}

.online-card-grid small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.online-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.online-tags a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
}

.online-steps-section {
  width: 100%;
  padding-right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  background: #f7fafc;
}

.online-step-list {
  display: grid;
  gap: 28px;
}

.online-step-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 36px;
  align-items: stretch;
  padding: 30px;
  background: var(--white);
  border: 1px solid #dfe8ee;
  border-radius: var(--radius);
}

.online-step-copy {
  align-self: center;
}

.online-step-copy p {
  margin: 0 0 20px;
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.online-step-copy b {
  font-size: 42px;
}

.online-step-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.34;
}

.online-step-copy span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.online-step-visual {
  min-height: 300px;
  display: grid;
  place-items: end start;
  padding: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  border-radius: var(--radius);
}

.online-step-visual.phone {
  background: linear-gradient(135deg, #2f6388, #a7c7da);
}

.online-step-visual.package {
  background: linear-gradient(135deg, #238b72, #a4d6c9);
}

.online-step-visual.chat {
  background: linear-gradient(135deg, #958a65, #ddd5b7);
}

.online-reason-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.9fr);
  gap: 54px;
  align-items: start;
}

.online-reason-nav {
  display: grid;
}

.online-reason-nav article {
  min-height: 92px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.online-reason-nav i {
  width: 30px;
  height: 30px;
  border: 2px solid #91b8d2;
  border-radius: 50%;
}

.online-reason-nav h3 {
  margin: 0;
  color: #777;
  font-size: 17px;
  line-height: 1.45;
}

.online-reason-nav span,
.online-reason-nav .is-current h3 {
  color: var(--wine);
}

.online-reason-panel {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 34px;
  align-items: center;
  padding: 42px;
  background: #f4f6f8;
}

.online-reason-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.55;
}

.online-reason-panel h3 span {
  color: var(--wine);
}

.online-reason-panel p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 2;
}

.online-reason-panel img {
  width: 230px;
  height: 160px;
  object-fit: cover;
}

.online-guide {
  width: 100%;
  padding-right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  background: #f7fafc;
}

.online-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.online-guide-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid #dfe8ee;
  border-radius: var(--radius);
}

.online-guide-grid span {
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.online-guide-grid h3 {
  margin: 18px 0 12px;
  font-size: 22px;
}

.online-guide-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.online-fixed-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  min-width: 220px;
  min-height: 74px;
  flex-direction: column;
  box-shadow: 0 16px 34px rgba(22, 184, 95, 0.28);
  font-size: 20px;
}

.online-fixed-cta span {
  font-size: 13px;
}

.fs-online-page {
  background: #fff;
}

.fs-hero {
  width: 100%;
  min-height: 560px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: start;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fff 0 58%, #f4f6f8 58% 100%);
}

.fs-hero-copy {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
}

.fs-hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 48px 54px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
}

.fs-logo-text {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.fs-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.1vw, 66px);
  line-height: 1.18;
  font-weight: 800;
}

.fs-hero h1 span {
  color: var(--wine);
}

.fs-hero-line {
  color: var(--ink) !important;
  white-space: nowrap;
}

.fs-hero-keyword {
  display: inline-block;
  min-width: 5.7em;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.fs-hero-keyword.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.fs-hero-copy > p:not(.fs-logo-text) {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.fs-hero-main > p:not(.fs-logo-text) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.fs-hero-benefits {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 72px 60px 42px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  list-style: none;
  background: transparent;
}

.fs-hero-benefits li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.fs-hero-benefits svg {
  width: 36px;
  height: 36px;
  color: var(--ink);
  stroke-width: 1.55;
}

.fs-hero-benefits em {
  color: var(--wine);
  font-style: normal;
}

.fs-hero-image {
  position: relative;
  height: 520px;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  align-self: stretch;
}

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

.fs-hero-image a,
.fs-fixed-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--wine);
  font-weight: 800;
}

.fs-hero-image a {
  display: none;
}

.fs-points {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto 48px;
}

.fs-points article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid #d8e1e7;
  border-radius: 10px;
  text-align: center;
}

.fs-points i {
  display: none;
}

.fs-points h2 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

.fs-points span {
  color: var(--wine);
}

.fs-reservation {
  width: 100%;
  display: block;
  align-items: center;
  padding: 38px max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  color: #fff;
  background: linear-gradient(90deg, var(--wine), var(--wine-dark));
}

.fs-reservation p,
.fs-section-title p {
  margin: 0 0 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.fs-reservation h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.fs-reservation span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.fs-reservation img {
  width: 120px;
  justify-self: end;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.14));
}

.fs-treatment-showcase {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px auto 58px;
}

.fs-treatment-showcase a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(0deg, rgba(255,255,255,.74), rgba(255,255,255,.74)),
    var(--treatment-photo) center / cover;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.fs-treatment-showcase a:nth-child(1) {
  --treatment-photo: url("/assets/treatment-fatigue.png");
}

.fs-treatment-showcase a:nth-child(2) {
  --treatment-photo: url("/assets/treatment-skincare.png");
}

.fs-treatment-showcase a:nth-child(3) {
  --treatment-photo: url("/assets/treatment-diet.png");
}

.fs-treatment-showcase a:nth-child(4) {
  --treatment-photo: url("/assets/treatment-sleep.png");
}

.fs-treatment-showcase a:nth-child(5) {
  --treatment-photo: url("/assets/treatment-aga.png");
}

.fs-treatment-showcase a:nth-child(6) {
  --treatment-photo: url("/assets/treatment-pill.png");
}

.fs-treatment-showcase .large {
  grid-row: auto;
}

.fs-treatment-showcase span {
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.fs-treatment-showcase h3 {
  margin: 8px 0;
  font-size: 24px;
}

.fs-treatment-showcase p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.fs-menu-grid {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0 auto 72px;
}

.fs-menu-grid a {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #d8d8d8;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.fs-icon-menu {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto 72px;
}

.fs-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.fs-icon-grid a {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px;
  color: #111;
  text-align: center;
  background: #fff;
  border: 1px solid #111;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.fs-icon-grid svg {
  width: 30px;
  height: 30px;
  color: #111;
  stroke-width: 1.35;
}

.fs-icon-grid a:hover {
  border-color: var(--wine);
  color: var(--wine);
  box-shadow: 0 10px 22px rgba(48, 102, 137, 0.1);
  transform: translateY(-2px);
}

.fs-icon-grid a:hover svg {
  color: var(--wine);
}

.fs-steps,
.fs-guide {
  width: 100%;
  padding: 82px max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  background: #f4f6f8;
}

.fs-section-title {
  margin: 0 auto 38px;
  text-align: center;
}

.fs-section-title.left {
  text-align: left;
}

.fs-section-title p {
  color: var(--wine);
}

.fs-steps .fs-section-title {
  max-width: 520px;
  margin: 0 0 54px;
  text-align: left;
}

.fs-steps .fs-section-title p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  letter-spacing: 0.16em;
}

.fs-steps .fs-section-title p::before {
  content: "";
  width: 34px;
  height: 8px;
  background: linear-gradient(90deg, #85afc8 0 48%, var(--wine) 48% 100%);
}

.fs-section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
}

.fs-section-title span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.fs-step-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.fs-step-row article {
  position: relative;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.fs-step-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 190px;
  right: -34px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid var(--wine);
}

.fs-step-head {
  min-height: 92px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  align-items: start;
}

.fs-step-row p {
  margin: 0;
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.fs-step-row p:first-child {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.fs-step-row b {
  display: block;
  margin-top: 4px;
  color: var(--wine);
  font-size: 48px;
  line-height: 0.95;
}

.fs-step-row h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.55;
}

.fs-step-row h3 span {
  display: inline;
  margin: 0;
  color: var(--wine);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.fs-step-row .fs-step-copy {
  display: block;
  margin: 20px 0 0;
  color: var(--text) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 13px;
  font-weight: 400 !important;
  line-height: 1.85 !important;
}

.mock-consult,
.mock-phone,
.mock-box,
.mock-chat {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 120%, #45494b, #181a1c 68%);
  border-radius: 8px;
}

.mock-consult {
  background: url("/assets/step-consult.jpg") center 46% / cover;
}

.mock-consult::before {
  display: none;
}

.mock-box {
  background: url("/assets/step-package.jpg") center 54% / cover;
}

.mock-chat {
  background: url("/assets/step-chat.jpg") center 46% / cover;
}

.mock-chat::before {
  display: none;
}

.mock-phone::before,
.mock-chat::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 76px;
  height: 126px;
  border: 6px solid #f5f7f8;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(#eff7fb, #fff);
  transform: translateX(-50%);
}

.mock-phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 52px;
  height: 7px;
  border-radius: 999px;
  background: var(--wine);
  transform: translateX(-50%);
}

.mock-box::before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  width: 132px;
  height: 82px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(48,102,137,.15) 58% 100%),
    #f7fbfc;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%) rotate(-8deg);
}

.mock-box::after {
  display: none;
  content: "";
  position: absolute;
  left: calc(50% - 54px);
  top: 46px;
  width: 42px;
  height: 42px;
  background:
    radial-gradient(circle, #f8aa4b 0 16%, transparent 17%),
    radial-gradient(circle, #f8aa4b 0 16%, transparent 17%),
    radial-gradient(circle, #f8aa4b 0 16%, transparent 17%);
  background-position: 0 0, 20px 10px, 0 22px;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.mock-chat::after {
  display: none;
  content: "";
  position: absolute;
  left: calc(50% - 26px);
  bottom: 38px;
  width: 52px;
  height: 42px;
  background:
    linear-gradient(#d7f0cf 0 0) 10px 8px / 34px 8px no-repeat,
    linear-gradient(#d7f0cf 0 0) 10px 22px / 26px 8px no-repeat,
    #fff;
  border-radius: 8px;
}

.fs-step-row details {
  background: #dce2e7;
}

.fs-step-row summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.fs-step-row summary::-webkit-details-marker {
  display: none;
}

.fs-step-row summary::after {
  content: "+";
  color: #6d7479;
  font-size: 28px;
  font-weight: 300;
}

.fs-step-row details[open] summary::after {
  content: "-";
}

.fs-step-row details p {
  padding: 0 18px 16px;
  color: var(--muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.8;
}

.fs-reason {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 86px 0;
}

.fs-reason-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 54px;
}

.fs-reason-list button {
  min-height: 86px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.fs-reason-list i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #8fb9d2;
}

.fs-reason-list svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.7;
}

.fs-reason-list span {
  display: block;
  margin: 0;
  color: #777;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.fs-reason-list em {
  color: #85afc8;
  font-style: normal;
}

.fs-reason-list button.active span {
  color: var(--ink);
}

.fs-reason-list button.active em,
.fs-reason-list button.active i,
.fs-reason-list button.active svg {
  color: var(--wine);
}

.fs-reason-detail {
  height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  grid-template-areas:
    "title title"
    "text image";
  column-gap: 48px;
  row-gap: 24px;
  align-items: center;
  align-content: center;
  padding: 44px;
  background: #f4f6f8;
  overflow: hidden;
}

.fs-reason-copy {
  display: contents;
}

.fs-reason-detail h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.48;
}

.fs-reason-line {
  display: block;
  white-space: nowrap;
}

.fs-reason-detail h3 strong {
  color: var(--wine);
  font-weight: inherit;
}

.fs-reason-detail p {
  grid-area: text;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.95;
}

.fs-reason-detail img {
  grid-area: image;
  width: 340px;
  height: 200px;
  object-fit: cover;
}

.fs-guide-block {
  width: 100%;
  margin: 0;
  padding: 34px 0;
  border-top: 1px solid #dfe4e8;
}

.fs-guide-block > *:not(summary) {
  margin-top: 26px;
}

.fs-guide-block:last-child {
  border-bottom: 1px solid #dfe4e8;
}

.fs-guide-heading {
  position: relative;
  display: block;
  margin: 0;
  padding-right: 44px;
  cursor: pointer;
  list-style: none;
}

.fs-guide-heading::marker {
  content: "";
  display: none;
}

.fs-guide-heading::-webkit-details-marker {
  display: none;
}

.fs-guide-heading::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
  background: transparent;
}

.fs-guide-block[open] .fs-guide-heading::after {
  content: "-";
}

.fs-guide-heading span,
.fs-guide-flow span {
  display: block;
  color: var(--wine);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.fs-guide-heading h3 {
  margin: 8px 0 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.4;
}

.fs-guide-block p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.fs-guide-merits {
  display: grid;
  gap: 24px;
}

.fs-guide-merits article {
  padding-left: 16px;
  border-left: 2px solid var(--wine);
}

.fs-guide-merits h4,
.fs-payment-copy h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.fs-guide-recommend {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 28px 32px;
  list-style: none;
  background: #fff;
  border-radius: 10px;
}

.fs-guide-recommend li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.fs-guide-recommend li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--wine);
}

.fs-guide-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  margin-top: 34px;
}

.fs-guide-flow article {
  position: relative;
}

.fs-guide-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 84px;
  right: -30px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid var(--wine);
}

.fs-guide-flow img {
  width: 100%;
  height: 118px;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: cover;
}

.fs-guide-flow h4 {
  margin: 4px 0 12px;
  font-size: 20px;
  line-height: 1.5;
}

.fs-payment-copy {
  display: grid;
  gap: 20px;
}

.fs-payment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fs-payment-list article {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #dfe4e8;
  border-radius: 10px;
}

.fs-payment-list h4 {
  margin: 0 0 8px;
}

.fs-payment-list p {
  font-size: 14px;
  line-height: 1.7;
}

.fs-fixed-reserve {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  min-width: 180px;
  min-height: 62px;
  box-shadow: 0 16px 34px rgba(22, 184, 95, 0.28);
  border-radius: var(--radius);
}

.online-line-btn,
.online-fixed-cta,
.biz-line-btn,
.biz-floating-line {
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(47, 99, 136, 0.24);
}

.biz-hero {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 82px 0 64px;
}

.biz-visual {
  min-height: 500px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto auto;
  gap: 14px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(47, 99, 136, 0.92), rgba(35, 139, 114, 0.78)),
    url("/assets/clinic-hero.png") center / cover;
}

.biz-character {
  position: absolute;
  right: 20px;
  top: 18px;
  width: min(230px, 42%);
  z-index: 2;
}

.phone-panel {
  grid-column: 1 / -1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  padding-right: min(270px, 44%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.phone-panel span {
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
}

.phone-panel strong {
  margin-top: 10px;
  font-size: 28px;
}

.phone-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.biz-mini-card {
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.biz-stats {
  margin-top: 0;
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-list span {
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.flow-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}

.contact-panel {
  padding: 32px;
  background: var(--soft);
  border-radius: var(--radius);
}

.contact-panel h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.contact-panel .primary-btn {
  margin-top: 18px;
}

.column-hero {
  padding-bottom: 34px;
}

.column-hero h1,
.column-article h1 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.2;
}

.column-hero p:not(.label),
.column-article .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: start;
  padding-top: 0;
}

.column-main {
  min-width: 0;
}

.column-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.column-empty {
  display: grid;
  min-height: 300px;
  align-content: center;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.column-empty h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.5;
}

.column-empty p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.column-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.column-card:hover {
  border-color: #cddce6;
  box-shadow: 0 14px 32px rgba(47, 99, 136, 0.12);
  transform: translateY(-2px);
}

.column-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.column-thumb {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}

.column-thumb::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.column-thumb span {
  position: relative;
  color: var(--white);
  font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tone-blue {
  background: linear-gradient(135deg, #2f6388, #6d98b4);
}

.tone-green {
  background: linear-gradient(135deg, #238b72, #86b6a7);
}

.tone-sky {
  background: linear-gradient(135deg, #517fa0, #a8c9dc);
}

.tone-gold {
  background: linear-gradient(135deg, #958a65, #d0c7a4);
}

.tone-lavender {
  background: linear-gradient(135deg, #6d748e, #c6cce0);
}

.tone-gray {
  background: linear-gradient(135deg, #4d5963, #9aa9b5);
}

.column-card-body {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
}

.column-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.column-meta time,
.column-article time {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.column-meta span {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--wine);
  background: var(--blue-soft);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.column-card h2 {
  margin: 16px 0 10px;
  font-size: 18px;
  line-height: 1.55;
}

.column-card p,
.column-article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.column-card strong {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
}

.column-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.column-side-box,
.column-side-cta {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.column-side-box h2,
.column-side-cta h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.column-side-box a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.column-side-box a:last-child {
  border-bottom: 0;
}

.column-side-box a:hover {
  color: var(--wine);
}

.column-side-cta {
  background: var(--blue-soft);
}

.column-side-cta h2 {
  line-height: 1.55;
}

.column-side-cta .primary-btn {
  width: 100%;
  margin-top: 10px;
}

.column-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 38px;
}

.column-pagination a {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--wine);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  border-radius: var(--radius);
}

.column-pagination a[aria-current="page"],
.column-pagination a:hover {
  border-color: var(--wine);
  color: var(--white);
  background: var(--wine);
}

.column-article {
  max-width: 880px;
}

.column-article h2 {
  margin-top: 46px;
  font-size: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--wine);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: var(--line);
}

.alliance-hero {
  padding-bottom: 38px;
}

.alliance-hero h1 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.2;
}

.alliance-hero p:not(.label),
.alliance-title-row > p,
.alliance-contact p:not(.label) {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.alliance-section {
  padding-top: 0;
}

.alliance-title-row {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  align-items: end;
}

.alliance-title-row > p {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.alliance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.alliance-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.alliance-card-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border-radius: var(--radius);
  font-family: Inter, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.alliance-card span {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--wine);
  background: var(--blue-soft);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.alliance-card h3 {
  margin: 16px 0 18px;
  font-size: 24px;
  line-height: 1.45;
}

.alliance-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.alliance-card dl div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.alliance-card dt {
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.alliance-card dd,
.alliance-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.alliance-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--wine);
  font-weight: 800;
}

.alliance-card-guide {
  background: linear-gradient(135deg, #f7fbfd 0%, #e8f1f7 100%);
}

.alliance-contact {
  padding: 38px;
  border: 1px solid #d7e4ec;
  background: var(--blue-soft);
  border-radius: var(--radius);
}

.alliance-contact h2 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.42;
}

.alliance-contact .primary-btn {
  margin-top: 20px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .global-nav,
  .header-tel {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .menu-open .mobile-nav {
    display: block;
  }

  .section-head,
  .section-title-row,
  .about-section,
  .split-info,
  .biz-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .clinic-map,
  .clinic-map iframe {
    min-height: 360px;
    height: 360px;
  }

  .bizcli-cta {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .bizcli-cta-character {
    position: static;
    width: 130px;
    margin: 0;
    justify-self: end;
  }

  .biz-character {
    width: 150px;
    right: 16px;
    top: 16px;
  }

  .phone-panel {
    padding-right: 28px;
    padding-top: 150px;
  }

  .department-grid,
  .department-grid.three,
  .news-list,
  .column-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .column-layout {
    grid-template-columns: 1fr;
  }

  .column-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .alliance-title-row,
  .alliance-grid,
  .biz-lp-hero-inner,
  .biz-about-panel,
  .dc-reason-item,
  .dc-reason-item.reverse,
  .dc-face-card {
    grid-template-columns: 1fr;
  }

  .dc-reason-item.reverse .dc-reason-text,
  .dc-reason-item.reverse .dc-reason-visual {
    grid-column: auto;
    grid-row: auto;
  }

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

  .dc-reason-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .dc-reason-panel {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .dc-news-list article {
    grid-template-columns: 120px 100px 1fr;
  }

  .biz-lp-hero-inner {
    min-height: auto;
    padding-top: 50px;
  }

  .online-kv-inner,
  .online-step-list article,
  .online-reason-layout,
  .online-reason-panel {
    grid-template-columns: 1fr;
  }

  .online-feature-strip,
  .online-card-grid,
  .online-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fs-points,
  .fs-treatment-showcase,
  .fs-step-row {
    grid-template-columns: 1fr;
  }

  .fs-reason-detail {
    height: auto;
    min-height: 420px;
  }

  .fs-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fs-step-row {
    gap: 42px;
  }

  .fs-step-row article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -29px;
    left: 50%;
    border-top: 14px solid var(--wine);
    border-right: 14px solid transparent;
    border-bottom: 0;
    border-left: 14px solid transparent;
    transform: translateX(-50%);
  }

  .biz-lp-hero-visual {
    min-height: 320px;
  }

  .biz-lp-scene,
  .biz-reason-grid,
  .biz-popular-grid,
  .biz-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .alliance-title-row > p {
    justify-self: start;
    text-align: left;
  }

  .section-title-row > a {
    justify-self: start;
  }

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

  .footer-links {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .hero-copy h1,
  .biz-hero h1 {
    font-size: clamp(30px, 6.4vw, 40px);
    line-height: 1.28;
  }

  .hero-copy p:not(.label),
  .biz-hero-copy p:not(.label) {
    font-size: 16px;
    line-height: 1.8;
  }

  .department-grid h3 {
    font-size: 20px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 16px;
  }

  .site-header {
    height: 70px;
    padding-left: 16px;
  }

  .brand img {
    width: 216px;
    height: 42px;
  }

  .site-footer img {
    width: 172px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-hero,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
  }

  .hero-slide img {
    opacity: 0.34;
  }

  .hero-copy {
    padding: 54px 0 64px;
  }

  .hero-copy h1,
  .biz-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.22;
  }

  .hero-copy p:not(.label),
  .biz-hero-copy p:not(.label),
  .about-body {
    font-size: 15px;
    line-height: 1.85;
  }

  .section-head h2,
  .section-title-row h2,
  .split-info h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  .department-grid h3 {
    font-size: 21px;
  }

  .stats strong {
    font-size: 26px;
  }

  .hero-actions {
    display: grid;
  }

  .stats,
  .department-grid,
  .department-grid.three,
  .news-list,
  .column-card-grid,
  .column-sidebar,
  .alliance-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - (var(--page-gutter) * 2));
    padding: 72px 0;
  }

  .departments,
  .news-section {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .clinic-table div,
  .flow-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .biz-hero {
    width: calc(100% - (var(--page-gutter) * 2));
    padding-top: 56px;
  }

  .biz-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .alliance-card {
    grid-template-columns: 1fr;
  }

  .alliance-contact {
    padding: 28px;
  }

  .biz-lp-hero h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .online-kv-inner {
    min-height: auto;
    padding: 52px 0 78px;
  }

  .online-kv h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .online-kv-visual,
  .online-step-visual {
    min-height: 260px;
  }

  .online-feature-strip,
  .online-card-grid,
  .online-guide-grid {
    grid-template-columns: 1fr;
  }

  .fs-hero,
  .fs-reservation {
    grid-template-columns: 1fr;
  }

  .fs-reservation img {
    justify-self: start;
    margin-top: 22px;
  }

  .fs-points,
  .fs-treatment-showcase,
  .fs-icon-grid,
  .fs-step-row {
    grid-template-columns: 1fr;
  }

  .fs-points article {
    min-height: 104px;
    padding: 20px;
  }

  .fs-treatment-showcase a {
    min-height: 190px;
  }

  .fs-icon-grid a {
    min-height: 112px;
  }

  .fs-step-head {
    grid-template-columns: 54px 1fr;
  }

  .fs-step-row h3 {
    font-size: 20px;
  }

  .fs-step-row b {
    font-size: 42px;
  }

  .fs-reason-detail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "image";
    height: auto;
    min-height: 0;
  }

  .fs-reason-detail img {
    width: 100%;
    height: 190px;
  }

  .online-section,
  .online-steps-section,
  .online-guide {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .online-section-title {
    text-align: left;
  }

  .online-reason-panel {
    padding: 28px 22px;
  }

  .online-reason-panel img {
    width: 100%;
    height: 190px;
  }

  .online-fixed-cta {
    right: 14px;
    bottom: 14px;
    min-width: 168px;
    min-height: 58px;
    font-size: 16px;
  }

  .biz-lp-scene,
  .biz-reason-grid,
  .biz-popular-grid,
  .biz-menu-grid,
  .biz-flow,
  .dc-online-grid,
  .dc-column-grid {
    grid-template-columns: 1fr;
  }

  .dc-section-head {
    text-align: left;
  }

  .dc-reason,
  .dc-online,
  .dc-face,
  .dc-column,
  .dc-news,
  .dc-consult {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .dc-reason-item,
  .dc-face-card {
    padding: 22px;
  }

  .dc-reason-title h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .dc-reason-tabs article {
    min-height: 82px;
  }

  .dc-reason-tabs h3 {
    font-size: 16px;
  }

  .dc-reason-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 22px;
  }

  .dc-reason-panel img {
    width: 100%;
    height: 190px;
  }

  .dc-reason-visual,
  .dc-face-image {
    min-height: 250px;
  }

  .dc-face-body dl div,
  .dc-news-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dc-consult {
    padding: 36px 24px;
  }

  .biz-news-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .biz-floating-line {
    right: 14px;
    bottom: 14px;
    min-width: 170px;
    min-height: 58px;
    font-size: 16px;
  }
}
