/* ==========================================================================
   Lower Page Styles

   PC: 1200px+ / SP: 768px以下
   Figmaデザインに基づくピクセルパーフェクト実装
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-gold: #9a7d4a;
  --color-gold-light: #b5a27c;
  --color-gold-dark: #7d6c4f;
  --color-bg-gray: #f4f3ef;
  --color-bg-dark: #dedfe3;
  --color-text: #595a5d;

  /* Container Widths */
  --container-sm: 800px;
  --container-md: 960px;
  --container-lg: 1040px;
  --container-xl: 1200px;
}

body {
  background: #fff;
}

/* ==========================================================================
   Container Centering Default
   max-widthを持つセクションブロックは自動的に中央揃え
   ========================================================================== */
section[class*="-block"],
section[class*="-section"],
article[class*="-block"],
div[class*="-block"]:not([class*="__"]) {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Lower Main Visual
   ========================================================================== */
.lower-mv {
  position: relative;
  width: 100%;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lower-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lower-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lower-mv__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 250px;
  z-index: 1;
  pointer-events: none;
}

.lower-mv__fade--left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.lower-mv__fade--right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.lower-mv__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 24px;
}

.lower-mv__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-shadow: 0 0 5px #fff;
}

.lower-mv__subtitle {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-shadow: 0 0 5px #fff;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  padding: 0 80px;
  margin-top: 24px;
  text-align: left;
}

.breadcrumb__list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 6px 12px;
  list-style: none;
  background: var(--color-bg-gray);
  border-radius: 3px;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb__link,
.breadcrumb__current {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.7px;
  color: var(--color-primary);
  transition: opacity 0.2s;
}

.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb__separator {
  display: block;
  width: 14px;
  height: 11px;
  flex-shrink: 0;
}

.breadcrumb__separator img {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.section-title__text {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-gold);
}

.section-title__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--color-gold-light) 15%,
    var(--color-gold-light) 85%,
    transparent 100%
  );
}

.section-title__text--small {
  font-size: 26px;
  letter-spacing: 1.3px;
}

/* ==========================================================================
   Invisalign Hero
   ========================================================================== */
.invisalign-hero {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.invisalign-hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Content Block Visual
   ========================================================================== */
.content-block__visual {
  width: 100%;
  max-width: var(--container-md);
  margin: 0 auto;
  background: #f5f5f8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.content-block__visual img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Merit List - メリット・デメリットリスト
   ========================================================================== */
.merit-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.merit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.merit-item__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.merit-item__bar {
  width: 3px;
  align-self: stretch;
  background: #d8d8e3;
  flex-shrink: 0;
}

.merit-item__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: #737484;
}

.merit-item__text {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.merit-item__text strong {
  font-weight: 700;
}

.merit-item__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* ==========================================================================
   Orthodontics Intro
   ========================================================================== */
.ortho-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.ortho-hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: var(--container-md);
  margin: 0 auto;
  height: 400px;
}

.ortho-hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.ortho-hero__bg-left {
  flex: 1;
  background: linear-gradient(to bottom, #ebefee, #e8eced);
}

.ortho-hero__bg-right {
  flex: 1;
  background: linear-gradient(to bottom, #e4e8e8, #dddfde);
}

.ortho-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.ortho-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Content Block
   ========================================================================== */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.content-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.content-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-block__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.content-block__text strong {
  font-weight: 700;
}

.content-block__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* ==========================================================================
   Treatment Section
   ========================================================================== */
.treatment-section {
  padding: 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.treatment-section--top-lg {
  padding-top: 104px;
  padding-bottom: 104px;
}

.treatment-section--gray {
  background: var(--color-bg-gray);
  padding: 104px 120px;
  max-width: none;
}

.treatment-section--gray .section-title {
  max-width: var(--container-lg);
  margin: 0 auto;
}

.treatment-section--gray .treatment-block {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.treatment-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.treatment-block__subheading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.treatment-block__subheading::before {
  content: "";
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
}

.treatment-block__subheading-text {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

/* Treatment Block Body - シンプルなテキストコンテンツ */
.treatment-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.treatment-block__body p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* Treatment Content - Image + Text Layout */
.treatment-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.treatment-content__image {
  flex-shrink: 0;
  width: 48%;
  max-width: 500px;
  aspect-ratio: 500 / 333;
}

.treatment-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-content__image--double {
  display: flex;
  gap: 8px;
  aspect-ratio: auto;
}

.treatment-content__image--double img {
  width: calc(50% - 4px);
  aspect-ratio: 391 / 245;
  object-fit: cover;
}

.treatment-content__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.treatment-content__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.treatment-content__text strong {
  font-weight: 700;
}

.treatment-content__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* Treatment Content Reverse - Image Right */
.treatment-content--reverse {
  flex-direction: row-reverse;
}

/* Treatment Content Buttons - Multiple buttons */
.treatment-content__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Before / After Comparison Block
   ========================================================================== */
.treatment-ba {
  position: relative;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 40px;
}

.treatment-ba__images {
  display: flex;
  gap: 0;
  width: 100%;
}

.treatment-ba__image {
  flex: 1;
  overflow: hidden;
}

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

.treatment-ba__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.treatment-ba__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.treatment-ba__arrow {
  width: 32px;
  height: 32px;
}

.treatment-ba__arrow--left {
  transform: scaleX(-1);
}

.treatment-ba__logo {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
}

/* ==========================================================================
   Before / After Case Description
   ========================================================================== */
.treatment-ba-case {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--color-bg-gray);
  border-radius: 4px;
}

.treatment-ba-case__text {
  margin: 0;
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.treatment-ba-case__meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.28px;
  color: #888;
}

/* ==========================================================================
   Treatment Info Box (失活歯のブリーチ etc.)
   ========================================================================== */
.treatment-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: #e8e7e3;
  border-radius: 4px;
}

.treatment-info-box__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.treatment-info-box__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.treatment-info-box__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* ==========================================================================
   Detail Link Button
   ========================================================================== */
.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  background: #fff;
  border-radius: 100px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.9px;
  color: var(--color-gold-dark);
  transition: opacity 0.2s, transform 0.2s;
  width: fit-content;
}

.detail-link:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

.detail-link--gray {
  background: var(--color-bg-gray);
}

.detail-link__arrow {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.detail-link:hover .detail-link__arrow {
  transform: translateX(2px);
}

/* ==========================================================================
   Step Image
   ========================================================================== */
.step-image {
  width: 100%;
  max-width: var(--container-md);
  margin: 0 auto;
}

.step-image img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   YouTube Embed
   ========================================================================== */
.youtube-embed {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.youtube-embed__item {
  width: 100%;
  max-width: var(--container-sm);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-dark);
  border-radius: 4px;
  overflow: hidden;
}

.youtube-embed__item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   InvisalignGO - Hero Section
   ========================================================================== */
.igo-mv {
  width: 100%;
  max-width: var(--container-md);
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
}

.igo-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   InvisalignGO - About Section (2-column)
   ========================================================================== */
.igo-about {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.igo-about__image {
  flex-shrink: 0;
  width: 48%;
  max-width: 500px;
  aspect-ratio: 500 / 333;
}

.igo-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.igo-about__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.igo-about__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.igo-about__text strong {
  font-weight: 700;
}

.igo-about__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* ==========================================================================
   InvisalignGO - 100 Banner
   ========================================================================== */
.igo-banner {
  width: 100%;
  max-width: var(--container-md);
  margin: 0 auto;
}

.igo-banner img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   InvisalignGO - Case Section (症例)
   ========================================================================== */
.igo-case {
  width: 100%;
}

.igo-case__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.igo-case__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.igo-case__heading-bar {
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
  flex-shrink: 0;
}

.igo-case__heading-text {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

.igo-case__image {
  width: 100%;
  padding: 0 30px;
}

.igo-case__image img {
  width: 100%;
  height: auto;
}

.igo-case__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.7px;
  color: var(--color-text);
}

.igo-case__meta {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.24px;
  color: #6f788e;
}

/* 症例間のマージン（最後以外） */
.igo-case__meta:not(:last-child) {
  margin-bottom: 20px;
}

/* ==========================================================================
   Section Subheading - ゴールドバー付き見出し（汎用）
   ========================================================================== */
.section-subheading {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.section-subheading__bar {
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
  flex-shrink: 0;
}

.section-subheading__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

/* ==========================================================================
   About Page - 初めての方へ Section
   ========================================================================== */
.about-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.about-first {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.about-first__image {
  flex-shrink: 0;
  width: 48%;
  max-width: 500px;
  aspect-ratio: 500 / 333;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.about-first__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-first__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.about-first__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-first__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.about-first__text strong {
  font-weight: 700;
}

.about-first__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* ==========================================================================
   About Page - 当院の特徴 Section
   ========================================================================== */
.about-feature {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  background: var(--color-bg-gray);
}

.about-feature__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.about-feature__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* Feature Table (PC) */
.feature-table--pc {
  display: block;
}

.feature-table {
  position: relative;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  border: 1px solid #cdc6ba;
  background: #fff;
}

/* Left column border overlay (250px) */
.feature-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  border: 1px solid #cdc6ba;
  pointer-events: none;
  box-sizing: border-box;
}

/* Vertical line at 418px (between stars and description) */
.feature-table::after {
  content: "";
  position: absolute;
  top: 0;
  left: 418px;
  width: 1px;
  height: 100%;
  background: #cdc6ba;
  pointer-events: none;
}

.feature-table__row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 16px;
}

.feature-table__row:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cdc6ba;
}

.feature-table__label {
  flex-shrink: 0;
  width: 218px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  text-align: center;
  color: var(--color-gold);
}

.feature-table__stars {
  flex-shrink: 0;
  width: 136px;
  height: 23px;
}

.feature-table__stars img {
  width: 100%;
  height: 100%;
}

.feature-table__desc {
  flex: 1;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.feature-table__link {
  font-weight: 700;
  color: var(--color-text);
  text-decoration: underline;
}

/* Feature Cards (SP) - hidden by default, shown on SP */
.feature-cards {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #cdc6ba;
}

.feature-card__label {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  text-align: center;
  color: var(--color-gold);
}

.feature-card__line {
  display: block;
  width: calc(100% + 32px);
  height: 1px;
  background: #cdc6ba;
  margin: 0 -16px;
}

.feature-card__stars {
  width: 136px;
  height: 23px;
}

.feature-card__stars img {
  width: 100%;
  height: 100%;
}

.feature-card__desc {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.feature-card__link {
  font-weight: 700;
  color: var(--color-text);
  text-decoration: underline;
}

/* ==========================================================================
   About Page - コンセプト Section
   ========================================================================== */
.about-concept {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Concept Intro Text */
.concept-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.concept-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.concept-intro strong {
  font-weight: 700;
}

.concept-intro .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* Concept Block */
.concept-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.concept-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.concept-block__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.concept-block__image {
  flex-shrink: 0;
  width: 504px;
  height: 336px;
  overflow: hidden;
}

.concept-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-block__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 508px;
}

.concept-block__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.concept-block__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.concept-block__text strong {
  font-weight: 700;
}

.concept-block__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

.concept-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

/* Concept Button */
.concept-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  background: var(--color-bg-gray);
  border-radius: 100px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.9px;
  color: var(--color-gold-dark);
  transition: opacity 0.2s, transform 0.2s;
}

.concept-btn:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

.concept-btn__arrow {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.concept-btn:hover .concept-btn__arrow {
  transform: translateX(2px);
}

/* Concept Video (YouTube Embed) */
.concept-video {
  width: 800px;
  height: 450px;
  background: var(--color-bg-dark);
}

.concept-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   About Page - クリニック紹介 Section
   ========================================================================== */
.about-clinic {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  background: var(--color-bg-gray);
}

/* Clinic Block */
.clinic-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.clinic-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

/* Clinic Map */
.clinic-block__map {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.clinic-block__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Clinic Info */
.clinic-block__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clinic-block__info p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* Clinic Buttons */
.clinic-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

/* ==========================================================================
   Painless Page - 痛みに配慮した治療
   ========================================================================== */
.painless-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.painless-intro__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.painless-intro__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.painless-intro__text strong {
  font-weight: 700;
}

.painless-intro__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* Painless Block */
.painless-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.painless-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.painless-block__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.painless-block__image {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.painless-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.painless-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.painless-block__body--full {
  max-width: var(--container-lg);
}

.painless-block__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.painless-block__body strong {
  font-weight: 700;
}

.painless-block__body .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* ==========================================================================
   First Visit Page - 初診の流れ
   ========================================================================== */
.first-visit-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* First Visit Block */
.first-visit-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.first-visit-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.first-visit-block__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.first-visit-block__image {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.first-visit-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-visit-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.first-visit-block__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* ==========================================================================
   EPIOS Page - EPIOS殺菌水システム
   ========================================================================== */
.epios-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* EPIOS About (2-column intro) */
.epios-about {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.epios-about__image {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.epios-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.epios-about__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.epios-about__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.epios-about__body strong {
  font-weight: 700;
}

.epios-about__body .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* EPIOS Block */
.epios-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.epios-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.epios-block__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.epios-block__image {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.epios-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.epios-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.epios-block__body--full {
  max-width: var(--container-lg);
}

.epios-block__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.epios-block__body strong {
  font-weight: 700;
}

.epios-block__body .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* EPIOS Gallery Section */
.epios-gallery {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  background: var(--color-bg-gray);
}

.epios-gallery__images {
  display: flex;
  gap: 8px;
  align-items: stretch;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  height: 400px;
}

/* PC版を表示、SP版を非表示 */
.epios-gallery__images--pc {
  display: flex;
}

.epios-gallery__images--sp {
  display: none;
}

.epios-gallery__item {
  overflow: hidden;
  height: 100%;
}

.epios-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PC版 各画像の幅（Figmaデザイン準拠） */
.epios-gallery__item--1 {
  width: 257px;
  flex-shrink: 0;
}

.epios-gallery__item--2 {
  width: 264px;
  flex-shrink: 0;
}

.epios-gallery__item--3 {
  flex: 1;
}

/* ==========================================================================
   Access Page - アクセス・診療時間
   ========================================================================== */
.access-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Access Block */
.access-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.access-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.access-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.access-block__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.access-block__list {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.access-block__list li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* Access Map */
.access-block__map {
  display: flex;
  justify-content: center;
  width: 100%;
}

.access-block__map iframe {
  width: 800px;
  height: 450px;
  border: none;
}

/* Access Method */
.access-method {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.access-method__subheading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.access-method__bar {
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
}

.access-method__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

.access-method__list {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.access-method__list li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.access-method__note {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* Access Step */
.access-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.access-step__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.access-step__image {
  flex-shrink: 0;
  width: 500px;
  height: 333px;
  overflow: hidden;
}

.access-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-step__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.access-step__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* ==========================================================================
   Doctor Page - 院長紹介
   ========================================================================== */
.doctor-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.doctor-awards {
  padding: 56px 80px 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Doctor Block */
.doctor-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.doctor-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

/* Doctor Profile (2-column) */
.doctor-profile {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.doctor-profile__image {
  flex-shrink: 0;
  width: 48%;
  max-width: 500px;
  aspect-ratio: 500 / 333;
  overflow: hidden;
}

.doctor-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-profile__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.doctor-profile__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* Doctor Section */
.doctor-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.doctor-section__subheading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor-section__bar {
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
}

.doctor-section__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

/* Doctor History */
.doctor-history {
  width: 100%;
  padding: 40px;
  background: #fff;
}

.doctor-history--gray {
  background: var(--color-bg-gray);
}

.doctor-history__list {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.doctor-history__list li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.doctor-history__list--mixed li strong {
  font-weight: 700;
}

.doctor-history__list .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* Doctor Overseas (2-column with smaller image) */
.doctor-overseas {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.doctor-overseas__image {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.doctor-overseas__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-overseas__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.doctor-overseas__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.doctor-overseas__body strong {
  font-weight: 700;
}

.doctor-overseas__body .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* Doctor Table */
.doctor-table {
  width: 100%;
  border: 1px solid #cdc6ba;
  background: #fff;
}

.doctor-table__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #cdc6ba;
}

.doctor-table__row:last-child {
  border-bottom: none;
}

.doctor-table__year {
  flex-shrink: 0;
  width: 200px;
  padding: 12px 16px;
  background: #f2ede4;
  border-right: 1px solid #cdc6ba;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  text-align: center;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-table__content {
  flex: 1;
  padding: 12px 16px;
}

.doctor-table__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.doctor-table__content strong {
  font-weight: 700;
}

/* ==========================================================================
   Staff Page - スタッフ紹介
   ========================================================================== */
.staff-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.staff-hygienist {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  background: var(--color-bg-gray);
}

/* Staff Block */
.staff-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.staff-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

/* Staff Member */
.staff-member {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.staff-member__subheading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.staff-member__bar {
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
}

.staff-member__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

.staff-member__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.staff-member__image {
  flex-shrink: 0;
  width: 48%;
  max-width: 500px;
  aspect-ratio: 500 / 333;
  overflow: hidden;
}

.staff-member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-member__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.staff-member__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.staff-member__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* Staff History (略歴) */
.staff-history {
  width: 100%;
  padding: 40px;
  background: #fff;
}

.staff-history--gray {
  background: var(--color-bg-gray);
}

.staff-history__list {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.staff-history__list li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* ==========================================================================
   Hours Section - 診療時間
   ========================================================================== */
.hours-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  background: var(--color-bg-gray);
}

.hours-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.hours-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.hours-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-block__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.hours-block__body strong {
  font-weight: 700;
}

.hours-block__body .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

.hours-block__list {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-block__list li {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* ==========================================================================
   Tour Page - 院内ツアー
   ========================================================================== */
.tour-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Tour Block */
.tour-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.tour-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.tour-block__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.tour-block__image {
  flex-shrink: 0;
  width: 500px;
  height: 333px;
  overflow: hidden;
}

.tour-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tour-block__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

/* ==========================================================================
   Pricing Page - 料金表
   ========================================================================== */
.pricing-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Pricing Payment */
.pricing-payment {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.pricing-payment__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.pricing-payment__text strong {
  font-weight: 700;
}

.pricing-payment__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* ==========================================================================
   Pricing List Section - 料金一覧
   ========================================================================== */
.pricing-list {
  padding: 0 80px 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* Pricing Index (目次) */
.pricing-index {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 40px;
  background: #fff;
}

.pricing-index__title {
  margin: 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.4px;
  color: var(--color-gold);
}

.pricing-index__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.pricing-index__link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.8px;
  color: var(--color-gold-dark);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.pricing-index__link:hover {
  opacity: 0.7;
}

/* Pricing Category */
.pricing-category {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.pricing-category__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.pricing-category__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.pricing-category__intro strong {
  font-weight: 700;
}

.pricing-category__intro .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* Pricing Sub-section */
.pricing-subsection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-subsection__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-subsection__heading::before {
  content: "";
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
}

.pricing-subsection__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

/* Pricing Table */
.pricing-table {
  position: relative;
  width: 100%;
  border: 1px solid #cdc6ba;
  background: #fff;
}

.pricing-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background: #f2ede4;
  border-right: 1px solid #cdc6ba;
  pointer-events: none;
  box-sizing: border-box;
}

.pricing-table__row {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 12px 16px;
}

.pricing-table__row:not(:last-child) {
  border-bottom: 1px solid #cdc6ba;
}

.pricing-table__item {
  flex-shrink: 0;
  width: 368px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-table__name {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  color: var(--color-gold);
}

.pricing-table__desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  color: var(--color-gold);
}

.pricing-table__price {
  flex: 1;
  margin: 0;
  padding-left: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  color: var(--color-text);
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Pricing Notes */
.pricing-notes {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.pricing-notes li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.26px;
  color: var(--color-text);
}

.pricing-notes li strong {
  font-weight: 700;
}

.pricing-notes .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

/* Pricing Treatment Info */
.pricing-treatment-info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.26px;
  color: var(--color-text);
}

.pricing-treatment-info p {
  margin: 0;
}

.pricing-treatment-info strong {
  font-weight: 700;
}

/* ==========================================================================
   Media Page - メディア掲載
   ========================================================================== */
.media-intro {
  padding: 104px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  background: #fff;
}

/* Media Block */
.media-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.media-block__heading {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 0;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

/* Media Content (2-column) */
.media-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.media-content__image {
  flex-shrink: 0;
  width: 48%;
  max-width: 500px;
  display: block;
  overflow: hidden;
  transition: opacity 0.2s;
}

.media-content__image:hover {
  opacity: 0.85;
}

.media-content__image img {
  width: 100%;
  height: auto;
  display: block;
}

.media-content__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.media-content__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.media-content__text strong {
  font-weight: 700;
}

.media-content__text .marker {
  background: linear-gradient(transparent 60%, #ebe8d9 60%);
}

.media-content__text a {
  font-weight: 700;
  color: var(--color-text);
}

/* Media Item */
.media-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.media-item__subheading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.media-item__bar {
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
}

.media-item__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

/* Media Image Variants */
.media-content__image--tv {
  width: 300px;
  height: 90px;
  border-radius: 6px;
  flex-shrink: 0;
  max-width: 300px;
}

.media-content__image--tv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.media-content__image--web {
  width: 300px;
  flex-shrink: 0;
  max-width: 300px;
  border: 1px solid #bbb;
  border-radius: 6px;
}

.media-content__image--web img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.media-content__image--magazine {
  width: 300px;
  flex-shrink: 0;
  max-width: 300px;
  border: 1.5px solid #dadada;
  border-radius: 6px;
}

.media-content__image--magazine img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.media-content__image--stacked {
  width: 300px;
  flex-shrink: 0;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.media-content__image--stacked a {
  display: block;
  transition: opacity 0.2s;
}

.media-content__image--stacked a:hover {
  opacity: 0.85;
}

.media-content__image--stacked img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Button (動画はこちら) */
.media-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  background: var(--color-bg-gray);
  border: none;
  border-radius: 100px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.9px;
  color: var(--color-gold-dark);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  width: fit-content;
}

.media-btn:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

.media-btn__arrow {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.media-btn:hover .media-btn__arrow {
  transform: translateX(2px);
}

/* ==========================================================================
   Video Modal
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.video-modal__container {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.is-active .video-modal__container {
  transform: scale(1) translateY(0);
}

.video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(154, 125, 74, 0.15) 0%, transparent 100%);
  border-bottom: 1px solid rgba(154, 125, 74, 0.3);
}

.video-modal__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.9px;
  color: var(--color-gold-light);
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-modal__close:active {
  transform: scale(0.95);
}

.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-modal__player {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Video controls styling */
.video-modal__video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.video-modal__player::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* ==========================================================================
   SP版 (768px以下) - Figmaデザイン準拠
   ========================================================================== */
@media (max-width: 768px) {
  /* --------------------------------------------------------------------------
     Lower Main Visual (SP)
     -------------------------------------------------------------------------- */
  .lower-mv {
    height: 200px;
  }

  .lower-mv__fade {
    display: none;
  }

  .lower-mv__title {
    font-size: 32px;
    letter-spacing: 3.2px;
  }

  .lower-mv__subtitle {
    font-size: 20px;
    letter-spacing: 2px;
  }

  /* --------------------------------------------------------------------------
     Breadcrumb (SP)
     -------------------------------------------------------------------------- */
  .breadcrumb {
    padding: 0 24px;
    margin-top: 16px;
  }

  .breadcrumb__list {
    flex-wrap: wrap;
  }

  /* --------------------------------------------------------------------------
     Section Title (SP)
     -------------------------------------------------------------------------- */
  .section-title {
    gap: 16px;
  }

  .section-title__text {
    font-size: 28px;
    letter-spacing: 1.4px;
  }

  /* Section Title Line - SP版は端から端まで */
  .section-title__line {
    background: linear-gradient(
      to right,
      transparent 0%,
      var(--color-gold-light) 0%,
      var(--color-gold-light) 100%,
      transparent 100%
    );
  }

  .section-title__text--small {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  /* --------------------------------------------------------------------------
     Invisalign Hero (SP)
     -------------------------------------------------------------------------- */
  .invisalign-hero {
    max-width: 100%;
  }

  /* --------------------------------------------------------------------------
     Content Block Visual (SP)
     -------------------------------------------------------------------------- */
  .content-block__visual {
    padding: 16px;
  }

  /* --------------------------------------------------------------------------
     Merit List (SP)
     -------------------------------------------------------------------------- */
  .merit-list {
    gap: 24px;
  }

  .merit-item__title {
    font-size: 18px;
    letter-spacing: 0.9px;
  }

  .merit-item__text {
    font-size: 14px;
  }

  /* --------------------------------------------------------------------------
     Orthodontics Intro (SP)
     -------------------------------------------------------------------------- */
  .ortho-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .ortho-hero {
    height: 234px;
  }

  .ortho-hero__image {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  }

  /* --------------------------------------------------------------------------
     Content Block (SP)
     -------------------------------------------------------------------------- */
  .content-block {
    gap: 24px;
    max-width: none;
    padding: 0;
  }

  .content-block__heading {
    font-size: 24px;
    letter-spacing: 1.2px;
    padding: 6px 16px;
  }

  .content-block__body {
    gap: 12px;
  }

  .content-block__text {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  /* --------------------------------------------------------------------------
     Treatment Section (SP)
     -------------------------------------------------------------------------- */
  .treatment-section {
    padding: 80px 24px;
    gap: 40px;
  }

  .treatment-section--top-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .treatment-section--gray {
    padding: 80px 24px;
  }

  .treatment-block {
    gap: 24px;
    padding: 0 24px;
  }

  .treatment-block__subheading {
    gap: 8px;
  }

  .treatment-block__subheading-text {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  /* --------------------------------------------------------------------------
     Treatment Content (SP) - 縦並び
     -------------------------------------------------------------------------- */
  .treatment-content {
    flex-direction: column;
    gap: 24px;
  }

  .treatment-content__image {
    width: 100%;
    max-width: none;
    aspect-ratio: 352 / 234;
  }

  .treatment-content__image--double {
    flex-direction: column;
    gap: 16px;
    aspect-ratio: auto;
  }

  .treatment-content__image--double img {
    width: 100%;
    aspect-ratio: 352 / 234;
  }

  .treatment-content__body {
    gap: 24px;
  }

  .treatment-content__text {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  /* Treatment Content Reverse (SP) - SPでは通常の縦並びに */
  .treatment-content--reverse {
    flex-direction: column;
  }

  /* --------------------------------------------------------------------------
     Before / After Block (SP)
     -------------------------------------------------------------------------- */
  .treatment-ba__labels {
    padding: 12px 16px;
  }

  .treatment-ba__label {
    font-size: 16px;
    gap: 8px;
  }

  .treatment-ba__arrow {
    width: 24px;
    height: 24px;
  }

  .treatment-ba__logo {
    width: 120px;
    bottom: 56px;
  }

  /* --------------------------------------------------------------------------
     Before / After Case (SP)
     -------------------------------------------------------------------------- */
  .treatment-ba-case {
    padding: 16px;
    gap: 12px;
  }

  .treatment-ba-case__text {
    font-size: 14px;
  }

  .treatment-ba-case__meta {
    font-size: 12px;
  }

  /* --------------------------------------------------------------------------
     Treatment Info Box (SP)
     -------------------------------------------------------------------------- */
  .treatment-info-box {
    padding: 24px;
    gap: 12px;
  }

  .treatment-info-box__title {
    font-size: 18px;
  }

  .treatment-info-box__body p {
    font-size: 14px;
  }

  /* --------------------------------------------------------------------------
     Detail Link Button (SP)
     -------------------------------------------------------------------------- */
  .detail-link {
    font-size: 18px;
    padding: 12px 24px;
    gap: 24px;
    letter-spacing: 0.9px;
  }

  /* --------------------------------------------------------------------------
     Step Image (SP)
     -------------------------------------------------------------------------- */
  .step-image {
    max-width: 100%;
    aspect-ratio: 352 / 234;
    overflow: hidden;
  }

  .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* --------------------------------------------------------------------------
     YouTube Embed (SP)
     -------------------------------------------------------------------------- */
  .youtube-embed {
    gap: 24px;
  }

  .youtube-embed__item {
    width: 100%;
    max-width: none;
    aspect-ratio: 352 / 198;
  }

  /* --------------------------------------------------------------------------
     InvisalignGO (SP)
     -------------------------------------------------------------------------- */
  .igo-mv {
    height: auto;
    aspect-ratio: 352 / 352;
  }

  .igo-about {
    flex-direction: column;
    gap: 24px;
  }

  .igo-about__image {
    width: 100%;
    max-width: none;
    aspect-ratio: 352 / 234;
  }

  .igo-about__body {
    gap: 12px;
  }

  .igo-banner {
    max-width: 100%;
    aspect-ratio: 352 / 92;
  }

  .igo-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .igo-case {
    gap: 16px;
  }

  .igo-case__image {
    max-width: 100%;
    padding: 0;
  }

  .igo-case__image img {
    width: 100%;
    height: auto;
  }

  .igo-case__text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.7px;
  }

  .igo-case__meta {
    font-size: 12px;
    line-height: 1.6;
  }

  /* --------------------------------------------------------------------------
     Section Subheading (SP)
     -------------------------------------------------------------------------- */
  .section-subheading {
    padding: 0 24px;
    max-width: none;
  }

  .section-subheading__title {
    font-size: 20px;
  }

  /* --------------------------------------------------------------------------
     About Page (SP)
     -------------------------------------------------------------------------- */
  .about-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .about-first {
    flex-direction: column;
    gap: 24px;
  }

  .about-first__image {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 352 / 234;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
  }

  .about-first__body {
    gap: 24px;
  }

  .about-first__text {
    gap: 12px;
  }

  /* --------------------------------------------------------------------------
     About Feature Section (SP)
     -------------------------------------------------------------------------- */
  .about-feature {
    padding: 80px 24px;
    gap: 40px;
  }

  .about-feature__intro {
    gap: 12px;
  }

  /* Feature Table/Cards - PC/SP switching */
  .feature-table--pc {
    display: none;
  }

  .feature-cards {
    display: flex;
  }

  /* --------------------------------------------------------------------------
     About Concept Section (SP)
     -------------------------------------------------------------------------- */
  .about-concept {
    padding: 80px 24px;
    gap: 40px;
  }

  .concept-intro {
    gap: 12px;
  }

  .concept-block {
    gap: 24px;
  }

  .concept-block__heading {
    font-size: 24px;
    letter-spacing: 1.2px;
    padding: 6px 16px;
  }

  .concept-block__content {
    flex-direction: column;
    gap: 24px;
  }

  .concept-block__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .concept-block__body {
    max-width: none;
    gap: 24px;
  }

  .concept-block__text {
    gap: 12px;
  }

  .concept-block__buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .concept-btn {
    font-size: 18px;
    padding: 12px 24px;
    gap: 24px;
    letter-spacing: 0.9px;
  }

  .concept-video {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 198;
  }

  /* --------------------------------------------------------------------------
     About Clinic Section (SP)
     -------------------------------------------------------------------------- */
  .about-clinic {
    padding: 80px 24px;
    gap: 40px;
  }

  .clinic-block {
    gap: 24px;
  }

  .clinic-block__heading {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .clinic-block__info {
    gap: 12px;
  }

  .clinic-block__buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* --------------------------------------------------------------------------
     Painless Page (SP)
     -------------------------------------------------------------------------- */
  .painless-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .painless-intro__text {
    gap: 12px;
  }

  .painless-block {
    gap: 24px;
  }

  .painless-block__heading {
    font-size: 26px;
    letter-spacing: 1.3px;
  }

  .painless-block__content {
    flex-direction: column;
    gap: 24px;
  }

  .painless-block__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .painless-block__body {
    gap: 12px;
  }

  /* --------------------------------------------------------------------------
     First Visit Page (SP)
     -------------------------------------------------------------------------- */
  .first-visit-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .first-visit-block {
    gap: 24px;
  }

  .first-visit-block__heading {
    font-size: 26px;
    letter-spacing: 1.3px;
  }

  .first-visit-block__content {
    flex-direction: column;
    gap: 24px;
  }

  .first-visit-block__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .first-visit-block__body {
    gap: 12px;
  }

  /* --------------------------------------------------------------------------
     EPIOS Page (SP)
     -------------------------------------------------------------------------- */
  .epios-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .epios-about {
    flex-direction: column;
    gap: 24px;
  }

  .epios-about__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .epios-about__body {
    gap: 12px;
  }

  .epios-block {
    gap: 24px;
  }

  .epios-block__heading {
    font-size: 26px;
    letter-spacing: 1.3px;
  }

  .epios-block__content {
    flex-direction: column;
    gap: 24px;
  }

  .epios-block__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .epios-block__body {
    gap: 12px;
  }

  .epios-gallery {
    padding: 80px 24px;
    gap: 40px;
  }

  /* SP版を表示、PC版を非表示 */
  .epios-gallery__images--pc {
    display: none;
  }

  .epios-gallery__images--sp {
    display: flex;
    gap: 8px;
    align-items: stretch;
    height: 234px;
  }

  /* SP版 各画像の幅（Figmaデザイン準拠） */
  .epios-gallery__item--sp1 {
    width: 130px;
    flex-shrink: 0;
  }

  .epios-gallery__item--sp2 {
    flex: 1;
  }

  /* --------------------------------------------------------------------------
     Access Page (SP)
     -------------------------------------------------------------------------- */
  .access-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .access-block {
    gap: 24px;
  }

  .access-block__map iframe {
    width: 100%;
    height: 198px;
  }

  .access-step {
    gap: 24px;
  }

  .access-step__content {
    flex-direction: column;
    gap: 24px;
  }

  .access-step__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .access-step__body {
    gap: 12px;
  }

  /* --------------------------------------------------------------------------
     Hours Section (SP)
     -------------------------------------------------------------------------- */
  .hours-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .hours-block {
    gap: 24px;
  }

  /* --------------------------------------------------------------------------
     Tour Page (SP)
     -------------------------------------------------------------------------- */
  .tour-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .tour-block {
    gap: 24px;
  }

  .tour-block__content {
    flex-direction: column;
    gap: 24px;
  }

  .tour-block__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .tour-block__body {
    gap: 12px;
  }

  /* --------------------------------------------------------------------------
     Doctor Page (SP)
     -------------------------------------------------------------------------- */
  .doctor-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .doctor-awards {
    padding: 40px 24px 80px;
    gap: 40px;
  }

  .doctor-block {
    gap: 24px;
  }

  .doctor-block__heading {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .doctor-profile {
    flex-direction: column;
    gap: 24px;
  }

  .doctor-profile__image {
    width: 100%;
    max-width: none;
    aspect-ratio: 352 / 234;
  }

  .doctor-profile__body {
    gap: 12px;
  }

  .doctor-section {
    gap: 24px;
  }

  .doctor-history {
    padding: 24px;
  }

  .doctor-overseas {
    flex-direction: column;
    gap: 24px;
  }

  .doctor-overseas__image {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .doctor-overseas__body {
    gap: 12px;
  }

  .doctor-table__row {
    flex-direction: column;
  }

  .doctor-table__year {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #cdc6ba;
  }

  .doctor-table__content {
    padding: 12px 16px;
  }

  /* --------------------------------------------------------------------------
     Staff Page (SP)
     -------------------------------------------------------------------------- */
  .staff-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .staff-hygienist {
    padding: 80px 24px;
    gap: 40px;
  }

  .staff-block {
    gap: 24px;
  }

  .staff-block__heading {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .staff-member {
    gap: 24px;
  }

  .staff-member__content {
    flex-direction: column;
    gap: 24px;
  }

  .staff-member__image {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 352 / 234;
  }

  .staff-member__body {
    gap: 24px;
  }

  .staff-member__text {
    gap: 12px;
  }

  .staff-history {
    padding: 24px;
  }

  /* --------------------------------------------------------------------------
     Pricing Page (SP)
     -------------------------------------------------------------------------- */
  .pricing-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .pricing-payment {
    gap: 24px;
  }

  .pricing-list {
    padding: 0 24px 80px;
    gap: 40px;
  }

  .pricing-index {
    padding: 24px 24px 32px;
  }

  .pricing-index__title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .pricing-index__links {
    flex-direction: column;
    gap: 12px;
  }

  .pricing-index__link {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .pricing-category {
    gap: 24px;
  }

  .pricing-category__heading {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .pricing-subsection {
    gap: 16px;
  }

  .pricing-subsection__title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .pricing-table {
    border: none;
  }

  .pricing-table::before {
    display: none;
  }

  .pricing-table__row {
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: 1px solid #cdc6ba;
  }

  .pricing-table__row:not(:last-child) {
    border-bottom: none;
  }

  .pricing-table__item {
    width: 100%;
    padding: 12px 16px;
    background: #f2ede4;
    border-bottom: 1px solid #cdc6ba;
    text-align: center;
    align-items: center;
  }

  .pricing-table__price {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    justify-content: center;
    background: #fff;
  }

  .pricing-notes li {
    font-size: 12px;
  }

  .pricing-treatment-info {
    font-size: 12px;
  }

  /* --------------------------------------------------------------------------
     Media Section (SP)
     -------------------------------------------------------------------------- */
  .media-intro {
    padding: 80px 24px;
    gap: 40px;
  }

  .media-block {
    gap: 24px;
  }

  /* media-block__heading は26pxのまま維持（SPでも同じ） */

  .media-content {
    flex-direction: column;
    gap: 24px;
  }

  .media-content__image {
    width: 100%;
    max-width: none;
  }

  .media-content__body {
    gap: 24px;
  }

  .media-item {
    gap: 24px;
  }

  /* media-item__title は22pxのまま維持（SPでも同じ） */

  .media-content__image--tv,
  .media-content__image--web,
  .media-content__image--magazine,
  .media-content__image--stacked {
    width: 100%;
    max-width: none;
  }

  .media-content__image--tv {
    height: auto;
    aspect-ratio: 352 / 105;
  }

  /* media-btn はPCと同じサイズを維持 */

  /* --------------------------------------------------------------------------
     Video Modal (SP)
     -------------------------------------------------------------------------- */
  .video-modal {
    padding: 16px;
  }

  .video-modal__container {
    max-width: 100%;
    border-radius: 8px;
  }

  .video-modal__content {
    max-width: 100%;
    border-radius: 8px;
  }

  .video-modal__header {
    padding: 12px 16px;
  }

  .video-modal__title {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .video-modal__close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }

  .video-modal__close svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   Case Before/After Block
   症例ビフォーアフター
   ========================================================================== */
.case-ba {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
}

.case-ba__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-ba__heading-bar {
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
  flex-shrink: 0;
}

.case-ba__heading-text {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

.case-ba__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.case-ba__images {
  display: flex;
  width: 100%;
  position: relative;
}

.case-ba__image {
  position: relative;
  width: 50%;
  aspect-ratio: 480 / 266;
  overflow: hidden;
}

.case-ba__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-ba__image--before {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.case-ba__image--after {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -4%;
}

.case-ba__label {
  position: absolute;
  top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.66px;
}

.case-ba__label--before {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(55, 69, 99, 0.7), rgba(55, 69, 99, 0.5));
  color: #fff;
}

.case-ba__label--after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  color: var(--color-gold);
}

.case-ba__arrow {
  flex-shrink: 0;
}

.case-ba__logo {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.case-ba__description {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.case-ba__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.7px;
  color: var(--color-text);
}

.case-ba__meta {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.24px;
  color: #6f788e;
}

/* Case BA Responsive */
@media (max-width: 768px) {
  .case-ba__heading-text {
    font-size: 18px;
  }

  .case-ba__images {
    flex-direction: column;
  }

  .case-ba__image {
    width: 100%;
  }

  .case-ba__image--before {
    clip-path: none;
  }

  .case-ba__image--after {
    clip-path: none;
    margin-left: 0;
    margin-top: -8px;
  }

  .case-ba__label {
    font-size: 16px;
    padding: 6px 16px;
  }

  .case-ba__logo {
    width: 80px;
  }

  .case-ba__description {
    padding: 0;
  }

  .case-ba__text {
    font-size: 13px;
  }

  .case-ba__meta {
    font-size: 11px;
  }
}

/* ==========================================================================
   Case Block - ホワイトニング症例
   ========================================================================== */
.case-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 32px;
  background: #fff;
}

.case-block--no-bg {
  background: transparent;
  padding: 0;
}

.case-block__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-block__heading-bar {
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
  flex-shrink: 0;
}

.case-block__heading-text {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

.case-block__images {
  display: flex;
  gap: 24px;
  width: 100%;
}

.case-block__image {
  position: relative;
  flex: 1;
  aspect-ratio: 480 / 320;
  overflow: hidden;
}

.case-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-block__image--empty {
  background: transparent;
  visibility: hidden;
}

.case-block__single-image {
  width: 100%;
}

.case-block__single-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-block__label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.6);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.28px;
  color: #fff;
}

.case-block__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-block__body p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
}

.case-block__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #cdc6ba;
  background: #fff;
}

.case-block__table-row {
  display: flex;
  align-items: stretch;
}

.case-block__table-row:not(:last-child) {
  border-bottom: 1px solid #cdc6ba;
}

.case-block__table-label {
  flex-shrink: 0;
  width: 200px;
  padding: 12px 16px;
  background: #f2ede4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.28px;
  color: var(--color-gold);
  border-right: 1px solid #cdc6ba;
}

.case-block__table-value {
  flex: 1;
  padding: 12px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.28px;
  color: var(--color-text);
}

/* Case Block Responsive */
@media (max-width: 768px) {
  .case-block {
    padding: 24px 16px;
    gap: 20px;
  }

  .case-block__heading-text {
    font-size: 18px;
  }

  .case-block__images {
    flex-direction: column;
    gap: 16px;
  }

  .case-block__image {
    flex: none;
    width: 100%;
    aspect-ratio: 352 / 234;
  }

  .case-block__label {
    font-size: 12px;
    padding: 4px 12px;
    top: 8px;
    left: 8px;
  }

  .case-block__body p {
    font-size: 14px;
  }

  .case-block__table-row {
    flex-direction: column;
  }

  .case-block__table-label {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    border-right: none;
    border-bottom: 1px solid #cdc6ba;
  }

  .case-block__table-value {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Projecting Teeth Videos
   ========================================================================== */
.projecting-teeth-videos {
  display: flex;
  gap: 24px;
  margin: 0 auto 40px;
}

.projecting-teeth-videos__item {
  flex: 1;
}

.projecting-teeth-videos__item video {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Case Block Description */
.case-block__description {
  margin-top: 24px;
}

.case-block__description .content-block__text {
  margin-bottom: 16px;
}

.case-block__description .content-block__text:last-child {
  margin-bottom: 0;
}

/* Projecting Teeth Responsive */
@media (max-width: 768px) {
  .projecting-teeth-videos {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   Column Archive
   ========================================================================== */
.column-archive {
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* Search */
.column-search {
  max-width: 480px;
  margin: 0 auto 24px;
}

.column-search__form {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.column-search__input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 14px;
  outline: none;
}

.column-search__input::placeholder {
  color: #999;
}

.column-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  background: #595a5d;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.column-search__btn:hover {
  background: #4d4e50;
}

/* Filter */
.column-filter {
  margin-bottom: 40px;
  text-align: center;
}

.column-filter__label {
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
}

.column-filter__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.column-filter__tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 13px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s;
}

.column-filter__tag:hover {
  border-color: #b5a27c;
  color: #b5a27c;
}

.column-filter__tag--active {
  background: #b5a27c;
  border-color: #b5a27c;
  color: #fff;
}

.column-filter__tag--active:hover {
  background: #9a7d4a;
  border-color: #9a7d4a;
  color: #fff;
}

/* Grid */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  margin-bottom: 60px;
}

.column-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

/* Card */
.column-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column-card__link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.column-card__link:hover .column-card__image img {
  transform: scale(1.05);
}

.column-card__link:hover .column-card__title {
  color: #b5a27c;
}

.column-card__image {
  position: relative;
  aspect-ratio: 320 / 235;
  overflow: hidden;
}

.column-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.column-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.column-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 10px 2px;
  background: #f4f3ef;
  border-radius: 15.5px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.65px;
  color: var(--color-text);
}

.column-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-text);
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-card__date {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-text);
  text-align: right;
}

/* Pagination */
.column-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.column-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s;
}

.column-pagination .page-numbers:hover {
  border-color: #b5a27c;
  color: #b5a27c;
}

.column-pagination .page-numbers.current {
  background: #595a5d;
  border-color: #595a5d;
  color: #fff;
}

.column-pagination .page-numbers.prev,
.column-pagination .page-numbers.next {
  border: none;
}

/* Column Archive Responsive */
@media (max-width: 768px) {
  .column-archive {
    padding: 40px 16px 60px;
  }

  .column-search {
    max-width: 100%;
  }

  .column-filter__tags {
    gap: 6px;
  }

  .column-filter__tag {
    padding: 6px 14px;
    font-size: 12px;
  }

  .column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .column-card {
    gap: 16px;
  }

  .column-card__link {
    gap: 16px;
  }

  .column-card__title {
    font-size: 14px;
  }

  .column-card__tag {
    font-size: 11px;
    height: 18px;
  }

  .column-card__date {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .column-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Column Heading（記事タイトルブロック）
   ========================================================================== */
.column-heading {
  background: #f4f3ef;
  padding: 75px 80px;
}

.column-heading__inner {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.column-heading__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: 3.2px;
  color: var(--color-primary);
  text-shadow: 0px 0px 5px white;
  margin: 0;
}

.column-heading__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 2px;
  color: #9a7d4a;
  text-shadow: 0px 0px 5px white;
  margin: 0;
}

/* Column Heading Responsive */
@media (max-width: 768px) {
  .column-heading {
    padding: 75px 24px;
  }

  .column-heading__title {
    font-size: 26px;
    letter-spacing: 2.6px;
  }
}

/* ==========================================================================
   Column Content Headings（記事内見出しパターン）
   ========================================================================== */

/* 大見出し（ゴールドバー） */
.column-h2-bar {
  background: #b5a27c;
  padding: 6px 16px;
  margin-bottom: 38px;
}

.column-h2-bar__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 1.4px;
  color: #fff;
  margin: 0;
}

/* 中見出し（ゴールド縦線） */
.column-h3-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
}

.column-h3-line__bar {
  width: 2px;
  align-self: stretch;
  background: #9a7d4a;
  flex-shrink: 0;
}

.column-h3-line__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: #9a7d4a;
  margin: 0;
}

/* 小見出し（ゴールドドット） */
.column-h4-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
}

.column-h4-dot__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9a7d4a;
  flex-shrink: 0;
}

.column-h4-dot__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.36px;
  color: #9a7d4a;
  margin: 0;
}

/* リスト・表（ベージュ背景ドットリスト） */
.column-list-box {
  background: #f4f3ef;
  padding: 40px;
  margin-bottom: 38px;
}

.column-list-box__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column-list-box__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column-list-box__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.column-list-box__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9a7d4a;
  flex-shrink: 0;
}

.column-list-box__label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: #9a7d4a;
  margin: 0;
}

.column-list-box__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: var(--color-primary);
  margin: 0;
}

.column-list-box__desc strong {
  font-weight: 700;
}

/* テーブル */
.column-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cdc6ba;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  margin-bottom: 38px;
}

.column-table th,
.column-table td {
  padding: 16px;
  vertical-align: top;
  border-bottom: 1px solid #cdc6ba;
}

.column-table tr:last-child th,
.column-table tr:last-child td {
  border-bottom: none;
}

.column-table th {
  background: #f2ede4;
  width: 288px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #9a7d4a;
}

.column-table__head-title {
  margin: 0;
}

.column-table__head-desc {
  font-weight: 400;
  margin: 0;
}

.column-table td {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--color-primary);
}

/* 画像（幅100%） */
.column-image {
  width: 100%;
  margin-bottom: 38px;
}

.column-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像（max-width: 720px、中央揃え） */
.column-image-medium {
  max-width: 720px;
  margin: 0 auto 38px;
}

.column-image-medium img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Comparison Table（比較テーブル・横スクロール）
   ========================================================================== */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 38px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  height: 46px;
  padding: 12px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.32px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #cdc6ba;
  box-sizing: border-box;
}

/* 左上の空セル */
.comparison-table__corner {
  background: #f2ede4;
  width: 200px;
}

/* 列ヘッダー（インプラント・入れ歯・ブリッジ） */
.comparison-table__col-head {
  background: #f2ede4;
  font-weight: 700;
  color: #9a7d4a;
}

/* 行ヘッダー（治療費・審美性 etc.） */
.comparison-table__row-head {
  background: #f2ede4;
  font-weight: 700;
  color: #9a7d4a;
  width: 200px;
}

/* データセル */
.comparison-table td {
  background: #fff;
  font-weight: 400;
  color: var(--color-primary);
}

/* Column Content Headings Responsive */
@media (max-width: 768px) {
  .column-h2-bar__text {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .column-h3-line__text {
    font-size: 18px;
    letter-spacing: 0.9px;
  }

  .column-h4-dot__text {
    font-size: 16px;
  }

  .column-list-box {
    padding: 32px 24px;
  }

  .column-table,
  .column-table thead,
  .column-table tbody,
  .column-table tr,
  .column-table th,
  .column-table td {
    display: block;
    width: 100%;
  }

  .column-table th {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .column-table td {
    text-align: center;
    padding: 12px 16px;
  }

  .column-table th {
    border-bottom: none;
  }

  .column-table tr:last-child td {
    border-bottom: none;
  }

  .column-table tr + tr th {
    border-top: none;
  }
}

/* ==========================================================================
   Column Single
   ========================================================================== */
.column-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.column-single__header {
  margin-bottom: 32px;
}

.column-single__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.column-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.column-single__tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 2px;
  font-size: 12px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}

.column-single__tag:hover {
  background: #e0e0e0;
}

.column-single__date {
  font-size: 14px;
  color: #999;
}

.column-single__title {
  font-family: var(--wp--preset--font-family--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}

.column-single__thumbnail {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.column-single__thumbnail img {
  width: 100%;
  height: auto;
}

.column-single__content {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}

.column-single__content p {
  margin-bottom: 16px;
}

.column-single__content h2 {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 16px;
  margin: 48px 0 24px;
  background: var(--color-gold-light);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 1.3px;
  color: #fff;
}

.column-single__content h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 32px 0 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 1.1px;
  color: var(--color-gold);
}

.column-single__content h3::before {
  content: "";
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--color-gold);
  flex-shrink: 0;
}

.column-single__content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 4px;
}

.column-single__content ul,
.column-single__content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.column-single__content li {
  margin-bottom: 8px;
}

.column-single__content blockquote {
  margin: 32px 0;
  padding: 24px;
  background: #f9f9f9;
  border-left: 4px solid #b5a27c;
  font-style: italic;
}

.column-single__footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.column-single__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s;
}

.column-single__back:hover {
  border-color: #b5a27c;
  color: #b5a27c;
}

.column-single__back-arrow {
  font-size: 12px;
}

/* Column Single Responsive */
@media (max-width: 768px) {
  .column-single {
    padding: 40px 16px 60px;
  }

  .column-single__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .column-single__title {
    font-size: 22px;
  }

  .column-single__content {
    font-size: 14px;
  }

  .column-single__content h2 {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .column-single__content h3 {
    font-size: 22px;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  .lower-mv__fade,
  .youtube-embed,
  .projecting-teeth-videos video,
  .column-search,
  .column-filter,
  .column-pagination {
    display: none;
  }
}

.marker {
    background: linear-gradient(transparent 60%, #ebe8d9 60%) !important;
}
