/* ===================================================================
   /industry/beauty-clinic/ 専用CSS
   スコープ：すべて .bc-page 配下（例外：フッター余白解除のみ .beauty-clinic-page）
   クラス命名：bc- プレフィックス
   デザインコンセプト：Clinical Editorial
   記述順：ページのセクション順と一致
=================================================================== */
.bc-page {
  --bc-navy: #1c2539;
  --bc-ink: #20282d;
  --bc-text: #4f5f6f;
  --bc-muted: #6e7984;
  --bc-line: #d8dfe3;
  --bc-blue: #00529f;
  --bc-blue-dark: #003f7a;
  --bc-blue-soft: #edf5fb;
  --bc-blue-pale: #9fc9ea;
  --bc-cool: #607b89;
  --bc-cool-soft: #eef3f5;
  --bc-pale: #edf3f5;
  --bc-stone: #f4f1ec;
  --bc-white: #ffffff;
  --bc-layout-wide: 1600px;
  --bc-layout-content: 1200px;
  overflow-x: clip;
  background: var(--bc-white);
  color: var(--bc-ink);
  font-family: var(--font-body--family);
}

.bc-page *,
.bc-page *::before,
.bc-page *::after {
  box-sizing: border-box;
}
.bc-page img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.bc-page h3 {
  margin: 0;
  color: var(--bc-navy);
  font-family: var(--font-heading--family);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.5;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page a:focus-visible,
.bc-page summary:focus-visible {
  outline: 3px solid var(--bc-blue-pale);
  outline-offset: 4px;
}

.bc-page .bc-container {
  width: min(var(--bc-layout-content), calc(100% - 48px));
  margin-inline: auto;
}
@media (max-width: 767px) {
  .bc-page .bc-container {
    width: min(var(--bc-layout-content), calc(100% - 40px));
  }
}

/* ===== セクション上下余白 ===== */
.bc-page .bc-section {
  padding-block: clamp(64px, 6vw, 96px);
}
@media (max-width: 767px) {
  .bc-page .bc-section {
    padding-block: 56px;
  }
}
@media (max-width: 375px) {
  .bc-page .bc-section {
    padding-block: 48px;
  }
}

/* ===== タイポグラフィ ===== */
.bc-page .bc-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding-left: 44px;
  color: var(--bc-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bc-page .bc-eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  transform: translateY(-50%);
  background: currentColor;
}
@media (max-width: 767px) {
  .bc-page .bc-eyebrow {
    margin-bottom: 12px;
    padding-left: 30px;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.11em;
  }
  .bc-page .bc-eyebrow::before {
    width: 22px;
  }
}

.bc-page .bc-heading {
  margin: 0 0 24px;
  color: var(--bc-navy);
  font-family: var(--font-heading--family);
  font-size: clamp(1.875rem, 2.7vw, 2.75rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
@media (max-width: 767px) {
  .bc-page .bc-heading {
    margin-bottom: 18px;
    font-size: clamp(1.5625rem, 7vw, 1.75rem);
    line-height: 1.38;
    letter-spacing: -0.015em;
  }
}

.bc-page .bc-body {
  color: var(--bc-text);
  font-size: 17px;
  line-height: 1.85;
}
.bc-page .bc-body p {
  margin: 0 0 14px;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-body p:last-child {
  margin-bottom: 0;
}
.bc-page > .bc-section :is(h2, h3, p, li, summary, dt, dd, figcaption) {
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
@media (max-width: 767px) {
  .bc-page .bc-body {
    font-size: 16px;
    line-height: 1.75;
  }
  .bc-page .bc-body p {
    margin-bottom: 12px;
  }
}

.bc-page .bc-note {
  color: var(--bc-muted);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .bc-page h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* ===== 通常ボタン ===== */
.bc-page .bc-button {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 30px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.bc-page .bc-button > span[aria-hidden="true"] {
  flex: 0 0 auto;
}
.bc-page .bc-button--primary {
  border-color: #00529f;
  background: #00529f;
  color: #fff;
}
.bc-page .bc-button--primary:hover {
  border-color: #003f7a;
  background: #003f7a;
  color: #fff;
}
.bc-page .bc-button--secondary {
  border-color: #1c2539;
  background: transparent;
  color: #1c2539;
}
.bc-page .bc-button--secondary:hover {
  border-color: #1c2539;
  background: #1c2539;
  color: #fff;
}
.bc-page .bc-button--light {
  border-color: #fff;
  background: #fff;
  color: #1c2539;
}
.bc-page .bc-button--light:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.bc-page .bc-button--outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
}
.bc-page .bc-button--outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: #1c2539;
}
@media (max-width: 767px) {
  .bc-page .bc-button {
    width: 100%;
    min-height: 52px;
    gap: 8px;
    padding: 13px 18px;
    font-size: 14px;
    line-height: 1.5;
  }
}

.bc-page .bc-textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bc-blue-dark);
  font-weight: 700;
  line-height: 1.5;
  text-underline-offset: 4px;
  text-decoration: none;
}
.bc-page .bc-textlink:hover {
  text-decoration: underline;
}

/* HERO：既存4業界と共通のシリーズデザイン */
.bc-page .bc-hero {
  min-height: 720px;
  background: var(--bc-stone);
}
.bc-page .bc-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  width: 100%;
  max-width: var(--bc-layout-wide);
  min-height: 720px;
  margin-inline: auto;
}
.bc-page .bc-hero__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-block: clamp(64px, 7vw, 104px);
  padding-inline: clamp(28px, 4.5vw, 72px);
}
.bc-page .bc-hero__content > * {
  margin-left: 0;
  margin-right: 0;
}
.bc-page .bc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: #6e7984;
  font-size: 13px;
  line-height: 1.5;
  list-style: none;
}
.bc-page .bc-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
}
.bc-page .bc-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #6e7984;
}
.bc-page .bc-breadcrumb li[aria-current="page"] {
  color: #1c2539;
}
.bc-page .bc-breadcrumb a {
  color: #6e7984;
  text-decoration: none;
}
.bc-page .bc-breadcrumb a:hover,
.bc-page .bc-breadcrumb a:focus-visible {
  color: #00529f;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bc-page .bc-hero__title {
  width: 100%;
  max-width: 740px;
  margin: 0 0 24px;
  color: var(--bc-navy);
  font-family: var(--font-heading--family);
  font-size: clamp(42px, 3.25vw, 52px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-hero__lead {
  width: 100%;
  max-width: 640px;
  color: var(--bc-text);
  font-size: 17px;
  line-height: 1.85;
}
.bc-page .bc-hero__lead p {
  margin: 0 0 14px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-hero__lead p:last-child {
  margin-bottom: 0;
}
.bc-page .bc-hero__actions {
  display: flex;
  width: 100%;
  max-width: 740px;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.bc-page .bc-hero__media {
  position: relative;
  min-width: 0;
  align-self: stretch;
}
.bc-page .bc-hero__media > img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .bc-page .bc-breadcrumb {
    gap: 4px 6px;
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.5;
  }
  .bc-page .bc-hero__title {
    max-width: none;
    font-size: clamp(1.625rem, 7.6vw, 1.9375rem);
    line-height: 1.28;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
  }
  .bc-page .bc-hero__lead,
  .bc-page .bc-hero__actions {
    max-width: none;
  }
  .bc-page .bc-hero__lead {
    font-size: 16px;
  }
  .bc-page .bc-hero__lead p {
    margin-bottom: 12px;
  }
  .bc-page .bc-hero__actions {
    gap: 12px;
    margin-top: 26px;
  }
}
@media (max-width: 1099px) {
  .bc-page .bc-hero,
  .bc-page .bc-hero__inner {
    min-height: 0;
  }
  .bc-page .bc-hero__inner {
    grid-template-columns: 1fr;
  }
  .bc-page .bc-hero__content {
    width: min(var(--bc-layout-content), calc(100% - 48px));
    margin-inline: auto;
    padding: 96px 0 48px;
  }
  .bc-page .bc-hero__media {
    align-self: auto;
  }
  .bc-page .bc-hero__media > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 767px) {
  .bc-page .bc-hero__content {
    width: min(var(--bc-layout-content), calc(100% - 40px));
    padding: 90px 0 44px;
  }
}

/* SECTION 01 : BEYOND THE VISIT */
.bc-page .bc-visit {
  background: var(--bc-white);
}
.bc-page .bc-visit__inner {
  display: grid;
  grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.bc-page .bc-visit__intro,
.bc-page .bc-visit__media {
  min-width: 0;
}
.bc-page .bc-visit__media img {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
}
.bc-page .bc-issue-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bc-page .bc-issue {
  min-width: 0;
  padding: 0 28px;
}
.bc-page .bc-issue:not(:first-child) {
  border-left: 1px solid var(--bc-line);
}
.bc-page .bc-issue:first-child {
  padding-left: 0;
}
.bc-page .bc-issue:last-child {
  padding-right: 0;
}
.bc-page .bc-issue h3 {
  margin: 0 0 12px;
  font-size: 18px;
}
.bc-page .bc-issue p {
  margin: 0;
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 1099px) {
  .bc-page .bc-visit__inner {
    grid-template-columns: 1fr;
  }
  .bc-page .bc-issue-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }
  .bc-page .bc-issue {
    border-left: 0 !important;
    padding-inline: 0 !important;
  }
}
@media (max-width: 767px) {
  .bc-page .bc-issue-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bc-page .bc-issue {
    padding-top: 24px;
    border-top: 1px solid var(--bc-line);
  }
  .bc-page .bc-issue:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .bc-page .bc-issue + .bc-issue {
    margin-top: 24px;
  }
}

/* SECTION 02 : MEDICAL CARE & DAILY SKINCARE（美容クリニック固有のsignature section） */
.bc-page .bc-boundary {
  background: var(--bc-pale);
}
.bc-page .bc-boundary__intro {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.bc-page .bc-boundary__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 20px;
}
.bc-page .bc-boundary__panel {
  min-width: 0;
  padding: clamp(32px, 4vw, 52px);
}
.bc-page .bc-boundary__panel p {
  margin: 0 0 14px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-boundary__panel p:last-child {
  margin-bottom: 0;
}
.bc-page .bc-boundary__panel-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bc-page .bc-boundary__panel--medical {
  background: #e8f0f3;
  color: var(--bc-navy);
  border-right: 1px solid rgba(28, 37, 57, 0.1);
}
.bc-page .bc-boundary__panel--medical .bc-boundary__panel-label {
  color: #527483;
}
.bc-page .bc-boundary__panel--medical p {
  color: var(--bc-text);
}
.bc-page .bc-boundary__panel--skincare {
  background: var(--bc-white);
  color: var(--bc-ink);
}
.bc-page .bc-boundary__panel--skincare .bc-boundary__panel-label {
  color: var(--bc-blue);
}
.bc-page .bc-boundary__panel--skincare p {
  color: var(--bc-text);
}
.bc-page .bc-boundary__conclusion {
  max-width: 860px;
  margin-top: clamp(32px, 4vw, 44px);
}
.bc-page .bc-callout {
  max-width: none;
  margin-top: clamp(28px, 3.5vw, 36px);
  padding: 24px 28px;
  border: 1px solid var(--bc-line);
  border-left: 4px solid var(--bc-blue);
  background: var(--bc-white);
  border-radius: 4px;
}
.bc-page .bc-callout__title {
  margin: 0 0 10px;
  color: var(--bc-navy);
  font-weight: 700;
}
.bc-page .bc-callout p {
  margin: 0 0 8px;
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.8;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-callout p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .bc-page .bc-boundary__split {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .bc-page .bc-boundary__panel {
    padding: 28px 24px;
  }
  .bc-page .bc-boundary__panel--medical {
    border-right: 0;
    border-bottom: 1px solid rgba(28, 37, 57, 0.1);
  }
}

/* SECTION 03 : READY-MADE OR ORIGINAL */
.bc-page .bc-compare {
  background: var(--bc-stone);
}
.bc-page .bc-compare__intro {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.bc-page .bc-compare__intro .bc-body {
  max-width: 780px;
}
.bc-page .bc-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.bc-page .bc-compare__column {
  min-width: 0;
  padding: clamp(28px, 3vw, 36px);
  border-radius: 18px;
}
.bc-page .bc-compare__column--ready {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
}
.bc-page .bc-compare__column--original {
  background: var(--bc-cool-soft);
  border: 1px solid var(--bc-blue-pale);
}
.bc-page .bc-compare__column-label {
  margin: 0 0 12px;
  color: var(--bc-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bc-page .bc-compare__column-title {
  margin: 0 0 24px;
  color: var(--bc-navy);
  font-family: var(--font-heading--family);
  font-size: 20px;
  font-weight: 700;
}
.bc-page .bc-compare__points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bc-page .bc-compare__points li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--bc-line);
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.75;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-compare__points li:first-child {
  border-top: 0;
}
.bc-page .bc-compare__points li::before {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bc-blue);
}
.bc-page .bc-compare__closing {
  max-width: 780px;
  margin-top: clamp(32px, 4vw, 44px);
}
.bc-page .bc-business-checks {
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(28px, 3vw, 36px);
  background: rgba(237, 245, 251, 0.5);
  border-radius: 12px;
}
.bc-page .bc-business-checks__title {
  margin: 0 0 16px;
  color: var(--bc-navy);
  font-family: var(--font-heading--family);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  line-height: 1.5;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-business-checks__lead {
  max-width: 780px;
}
.bc-page .bc-business-checks__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 0;
  margin: clamp(24px, 3vw, 32px) 0 0;
  padding: 0;
  list-style: none;
}
.bc-page .bc-business-checks__list li {
  min-width: 0;
  padding: 20px 0;
  border-top: 1px solid var(--bc-line);
}
.bc-page .bc-business-checks__list h4 {
  margin: 0 0 8px;
  color: var(--bc-navy);
  font-family: var(--font-heading--family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-business-checks__list p {
  margin: 0;
  color: var(--bc-text);
  font-size: 14px;
  line-height: 1.75;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
@media (max-width: 1099px) {
  .bc-page .bc-business-checks__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .bc-page .bc-business-checks {
    padding: 24px 20px;
  }
  .bc-page .bc-business-checks__list {
    grid-template-columns: 1fr;
  }
}
.bc-page .bc-compare__cta {
  margin-top: clamp(28px, 3vw, 36px);
}
@media (max-width: 767px) {
  .bc-page .bc-compare__grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 04 : YOUR CLINIC, YOUR PRODUCT */
.bc-page .bc-your-product {
  background: var(--bc-white);
}
.bc-page .bc-your-product__inner {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.bc-page .bc-your-product__media {
  position: sticky;
  top: 120px;
  min-width: 0;
}
.bc-page .bc-your-product__media img {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(28, 37, 57, 0.1);
}
.bc-page .bc-your-product__content {
  min-width: 0;
}
.bc-page .bc-axis-list {
  margin: 32px 0 0;
}
.bc-page .bc-axis-item {
  display: block;
  padding: clamp(22px, 2.4vw, 28px) 0;
  border-bottom: 1px solid var(--bc-line);
}
.bc-page .bc-axis-item:first-child {
  border-top: 1px solid var(--bc-line);
}
.bc-page .bc-axis-item dt {
  margin: 0 0 8px;
}
.bc-page .bc-axis-item dd {
  margin: 0;
  color: var(--bc-text);
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 1099px) {
  .bc-page .bc-your-product__inner {
    grid-template-columns: 1fr;
  }
  .bc-page .bc-your-product__media {
    position: static;
  }
}
@media (max-width: 767px) {
  .bc-page .bc-axis-item dd {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* SECTION 05 : PRODUCT IDEAS */
.bc-page .bc-products {
  background: var(--bc-stone);
}
.bc-page .bc-products__intro {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.bc-page .bc-products__intro .bc-body {
  max-width: 780px;
}
.bc-page .bc-products__grid {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: clamp(40px, 5vw, 56px);
  align-items: start;
}
.bc-page .bc-products__media {
  position: sticky;
  top: 120px;
  min-width: 0;
}
.bc-page .bc-products__media img {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(28, 37, 57, 0.1);
}
.bc-page .bc-products__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  min-width: 0;
  align-content: start;
}
.bc-page .bc-product-row {
  min-width: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--bc-line);
}
.bc-page .bc-product-row:nth-child(1),
.bc-page .bc-product-row:nth-child(2) {
  border-top: 1px solid var(--bc-line);
}
.bc-page .bc-product-row h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.bc-page .bc-product-row p {
  margin: 0 0 10px;
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.75;
}
.bc-page .bc-product-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #cbd8df;
  border-radius: 999px;
  background: var(--bc-white);
  color: var(--bc-blue-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.bc-page .bc-product-link-button:hover {
  border-color: var(--bc-blue);
  background: var(--bc-blue);
  color: var(--bc-white);
}
.bc-page .bc-product-link-button > span[aria-hidden="true"] {
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .bc-page .bc-product-link-button {
    width: 100%;
    justify-content: center;
  }
}
.bc-page .bc-products__link {
  margin-top: clamp(32px, 4vw, 44px);
}
@media (max-width: 1099px) {
  .bc-page .bc-products__grid {
    grid-template-columns: 1fr;
  }
  .bc-page .bc-products__media {
    position: static;
    width: min(100%, 420px);
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .bc-page .bc-products__list {
    grid-template-columns: 1fr;
  }
  .bc-page .bc-product-row:nth-child(2) {
    border-top: 0;
  }
}

/* SECTION 06 : PLANNING SUPPORT */
.bc-page .bc-planning-support {
  background: var(--bc-white);
}
.bc-page .bc-planning-support__intro {
  min-width: 0;
}
.bc-page .bc-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}
.bc-page .bc-checklist li {
  position: relative;
  min-width: 0;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--bc-line);
  color: var(--bc-text);
  font-size: 16px;
  line-height: 1.7;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-checklist li:nth-child(-n + 2) {
  border-top: 1px solid var(--bc-line);
}
.bc-page .bc-checklist li::before {
  content: "";
  position: absolute;
  top: 1.55em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--bc-blue);
}
@media (max-width: 767px) {
  .bc-page .bc-checklist {
    grid-template-columns: 1fr;
  }
  .bc-page .bc-checklist li:nth-child(-n + 2) {
    border-top: 0;
  }
  .bc-page .bc-checklist li:first-child {
    border-top: 1px solid var(--bc-line);
  }
  .bc-page .bc-checklist li {
    font-size: 15px;
  }
}
.bc-page .bc-guidance {
  margin-top: clamp(32px, 4vw, 44px);
  padding: 24px 28px;
  background: var(--bc-pale);
  border-radius: 4px;
}
.bc-page .bc-guidance p {
  margin: 0 0 8px;
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.8;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-guidance p:last-child {
  margin-bottom: 0;
}

/* SECTION 07 : OEM & ODM（濃紺） */
.bc-page .bc-oem-odm {
  background: var(--bc-navy);
  color: var(--bc-white);
}
.bc-page .bc-oem-odm .bc-eyebrow {
  color: var(--bc-blue-pale);
}
.bc-page .bc-oem-odm .bc-heading {
  color: var(--bc-white);
}
.bc-page .bc-oem-odm .bc-body p {
  color: rgba(255, 255, 255, 0.85);
}
.bc-page .bc-oem-odm__inner {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.bc-page .bc-oem-odm__content {
  min-width: 0;
}
.bc-page .bc-oem-odm__media {
  min-width: 0;
}
.bc-page .bc-oem-odm__media img {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
}
@media (min-width: 1100px) {
  .bc-page .bc-oem-odm__media {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}
.bc-page .bc-oem-odm__links {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.bc-page .bc-oem-odm__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--bc-white);
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-oem-odm__links a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.bc-page .bc-oem-odm__links a:hover {
  color: var(--bc-blue-pale);
}
.bc-page .bc-oem-odm__links a > span[aria-hidden="true"] {
  flex: 0 0 auto;
}
@media (max-width: 1099px) {
  .bc-page .bc-oem-odm__inner {
    grid-template-columns: 1fr;
  }
}

/* SECTION 08 : PLANNING TO MANUFACTURING（ライン型の開発工程） */
.bc-page .bc-process {
  background: var(--bc-white);
}
.bc-page .bc-process__head {
  width: 100%;
  margin-bottom: clamp(48px, 5vw, 64px);
}
.bc-page .bc-process__head-label {
  min-width: 0;
}
.bc-page .bc-process__head-intro {
  min-width: 0;
  margin-top: 16px;
}
.bc-page .bc-process__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bc-page .bc-process-step {
  position: relative;
  min-width: 0;
  padding-top: 34px;
}
.bc-page .bc-process-step::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bc-line);
}
.bc-page .bc-process-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bc-blue);
}
.bc-page .bc-process-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.bc-page .bc-process-step p {
  margin: 0;
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.8;
}
.bc-page .bc-process__link {
  margin-top: clamp(32px, 4vw, 44px);
}
.bc-page .bc-process__link .bc-textlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  padding: 11px 16px;
  border-left: 3px solid var(--bc-blue);
  border-radius: 5px;
  background: var(--bc-blue-soft);
  color: var(--bc-blue-dark);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s;
}
.bc-page .bc-process__link .bc-textlink:hover {
  background: #e0edf7;
  text-decoration: none;
}
.bc-page .bc-process__link .bc-textlink > span[aria-hidden="true"] {
  flex: 0 0 auto;
  transition: transform 0.2s;
}
.bc-page .bc-process__link .bc-textlink:hover > span[aria-hidden="true"] {
  transform: translateX(2px);
}
@media (prefers-reduced-motion: reduce) {
  .bc-page .bc-process__link .bc-textlink,
  .bc-page .bc-process__link .bc-textlink > span[aria-hidden="true"] {
    transition: none;
  }
}
.bc-page .bc-process__note {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .bc-page .bc-process__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bc-page .bc-process-step {
    padding: 0 0 28px 34px;
  }
  .bc-page .bc-process-step::before {
    top: 7px;
    left: 7px;
    width: 1px;
    height: 100%;
  }
  .bc-page .bc-process-step::after {
    top: 0;
    left: 0;
  }
  .bc-page .bc-process-step:last-child {
    padding-bottom: 0;
  }
  .bc-page .bc-process-step:last-child::before {
    display: none;
  }
}

/* SECTION 09 : CONSULTATION SCENARIOS */
.bc-page .bc-cases {
  background: var(--bc-pale);
}
.bc-page .bc-cases__intro {
  max-width: 780px;
}
.bc-page .bc-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(40px, 5vw, 56px);
}
.bc-page .bc-case-card {
  min-width: 0;
  padding: 34px 36px;
  border: 1px solid var(--bc-line);
  border-radius: 16px;
  background: var(--bc-white);
}
.bc-page .bc-case-card__label {
  margin: 0 0 12px;
  color: var(--bc-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.bc-page .bc-case-card h3 {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
}
.bc-page .bc-case-card__body {
  margin: 0;
}
.bc-page .bc-case-card__body dt {
  margin: 0 0 4px;
  color: var(--bc-navy);
  font-size: 13px;
  font-weight: 700;
}
.bc-page .bc-case-card__body dd {
  margin: 0 0 16px;
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.75;
}
.bc-page .bc-case-card__body dd:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .bc-page .bc-cases__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bc-page .bc-case-card {
    padding: 26px 22px;
  }
}

/* SECTION 10 : FAQ */
.bc-page .bc-faq {
  background: var(--bc-stone);
}
.bc-page .bc-faq__list {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* 最終CTA */
.bc-page .bc-final-cta {
  background: var(--bc-navy);
  color: var(--bc-white);
}
.bc-page .bc-final-cta .bc-heading {
  color: var(--bc-white);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .bc-page .bc-final-cta .bc-heading {
    font-size: clamp(1.875rem, 2.4vw, 2.5rem);
    line-height: 1.32;
  }
}
.bc-page .bc-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: 56px;
  align-items: center;
}
.bc-page .bc-final-cta__content {
  min-width: 0;
}
.bc-page .bc-final-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: wrap;
}
.bc-page .bc-final-cta__actions {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}
.bc-page .bc-final-cta__actions .bc-button {
  width: 100%;
}
@media (max-width: 1099px) {
  .bc-page .bc-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .bc-page .bc-final-cta__content p {
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-page .bc-button {
    transition: none;
  }
}

/* フッター直前の空白帯を除去（.bc-page の外側の例外） */
.beauty-clinic-page footer .footer-main.mt-100 {
  margin-top: 0 !important;
}
