/* ============================================
   大月歯科医院 Phase 2 - Base Stylesheet
   Performance-first / Semantic / Minimal
   ============================================
   Color Palette — 公式ロゴ準拠
   --main-orange:   #e54618  (ひまわり顔オレンジ)
   --sub-yellow:    #f9d343  (花びらイエロー)
   --accent-green:  #1d5d2c  (ロゴ文字ダークグリーン)
   --leaf-green:    #4a8c3f  (葉のグリーン)
   --bg-warm:       #FFFAEE  (温かみオフホワイト)
   ============================================ */

:root {
  --main-orange: #e54618;
  --main-orange-light: #f06a3f;
  --sub-yellow: #f9d343;
  --sub-yellow-soft: #fcedb5;
  --accent-green: #1d5d2c;
  --leaf-green: #4a8c3f;
  --bg-warm: #FFFAEE;
  --bg-warm-deep: #FFF5DC;
  --text-body: #3a3a3a;
  --text-heading: #1d5d2c;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Meiryo", sans-serif;
  line-height: 1.8;
  color: var(--text-body);
  background-color: var(--bg-warm);
}

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

img.hero__slide {
  max-width: none;
  height: 100%;
}

a {
  color: var(--leaf-green);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--main-orange);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Site Header --- */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--sub-yellow);
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* --- Site Logo (image) --- */
.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.site-logo__image {
  height: 50px;
  width: auto;
}

/* --- Sunday Badge --- */
.sunday-badge {
  display: inline-block;
  background-color: var(--main-orange);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.625rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* --- Hamburger Toggle Button --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--accent-green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* X animation when open */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Global Navigation --- */
.global-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.global-nav a {
  color: #555;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--accent-green);
  border-bottom-color: var(--main-orange);
  text-decoration: none;
}

/* --- Dropdown Navigation --- */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  vertical-align: 1px;
  transition: transform 0.2s;
}

.has-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 0.5rem 0;
  padding-top: 0.75rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown.is-open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  white-space: nowrap;
  border-bottom: none;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: var(--bg-warm-deep);
  color: var(--accent-green);
  border-bottom: none;
}

/* --- Hero Section (Top Page Fade Slider) --- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 70vh;
  overflow: hidden;
  background-color: #2a2a2a;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 24s infinite;
}

/* 4枚 × 6秒ずつ = 24秒サイクル */
/* 各スライド: 0→フェードイン(1s) → 表示(4s) → フェードアウト(1s) → 待機 */
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slide:nth-child(4) { animation-delay: 18s; }

@keyframes heroFade {
  0%      { opacity: 0; }
  4.17%   { opacity: 1; }   /* 0→1s: フェードイン */
  25%     { opacity: 1; }   /* 1→6s: 表示維持 */
  29.17%  { opacity: 0; }   /* 6→7s: フェードアウト */
  100%    { opacity: 0; }
}

/* 最初のスライドを初期表示 */
.hero__slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem;
  background: linear-gradient(
    105deg,
    rgba(29, 93, 44, 0.82) 0%,
    rgba(29, 93, 44, 0.55) 45%,
    transparent 70%
  );
}

.hero__title {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.8125rem, 1.5vw, 1.0625rem);
  margin-top: 0.75rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  max-width: 520px;
}

/* --- Main Content --- */
.site-main {
  padding: 0;
}

.site-main > .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ============================================
   3大ブロック（order制御ラッパー）
   phase-1: 告知帯 → 導線帯 → 情報帯
   phase-2: 導線帯 → 情報帯 → 告知帯
   ============================================ */
.top-blocks {
  display: flex;
  flex-direction: column;
}

.top-blocks.phase-1 .announce-band { order: 1; }
.top-blocks.phase-1 .quick-access  { order: 2; }
.top-blocks.phase-1 .info-band     { order: 3; }

.top-blocks.phase-2 .quick-access  { order: 1; }
.top-blocks.phase-2 .info-band     { order: 2; }
.top-blocks.phase-2 .announce-band { order: 3; }

/* --- ① 告知帯：日曜診療開始 --- */
.announce-band {
  padding: 2rem 0;
}

.announce-band__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #FFF8E8 0%, var(--bg-warm) 100%);
  border: 1px solid var(--sub-yellow);
  border-left: 4px solid var(--accent-green);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.announce-band__image {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 6px;
}

.announce-band__content {
  flex: 1;
  min-width: 0;
}

.announce-band__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 0.125rem;
}

.announce-band__heading {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  border-left: none;
  padding-left: 0;
  color: var(--text-heading);
}

.announce-band__time {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--main-orange);
  margin-bottom: 0.5rem;
}

.announce-band__copy {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.announce-band__sub {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: var(--text-body);
}

.announce-band__caution {
  font-size: 0.8125rem;
  color: #c41e1e;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.announce-band__link a {
  font-size: 0.9375rem;
}

/* --- ② 導線帯：クイックアクセス --- */
.quick-access {
  padding: 1.5rem 0;
  background: var(--bg-warm-deep);
}

.quick-access__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-access__item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-access__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.quick-access__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.quick-access__tel-sp {
  display: none;
}

/* --- ③ 情報帯：お知らせ＋診療カレンダー --- */
.info-band {
  padding: 2rem 0;
}

.info-band .news-calendar-row h2 {
  border-left: none;
  padding-left: 0;
  font-size: 1.125rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sub-yellow);
  margin-bottom: 0.75rem;
  color: var(--text-heading);
}

/* --- Notice Card (告知カード：控えめなバナー配置) --- */
.notice-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #FFF8E8 0%, var(--bg-warm) 100%);
  border: 1px solid var(--sub-yellow);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.notice-card__image {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 6px;
}

.notice-card__body p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.notice-card__body p:last-child {
  margin-bottom: 0;
}

.notice-card__caution {
  color: #c41e1e;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* --- Page Header (H1 area) --- */
.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-green);
}

.page-header h1 {
  font-size: 1.75rem;
  color: var(--text-heading);
  line-height: 1.4;
}

.page-header p {
  margin-top: 0.5rem;
  color: #666;
}

/* --- Section --- */
.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.375rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--accent-green);
}

.content-section h3 {
  font-size: 1.125rem;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.content-section p {
  margin-bottom: 1rem;
}

/* --- FAQ List --- */
.faq-list {
  margin: 0;
}

.faq-list dt,
.faq-list dd {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  padding: 1rem 1.25rem;
  margin: 0;
}

.faq-list dt {
  font-weight: 600;
  background: var(--bg-warm);
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #e2ddd4;
}

.faq-list dd {
  background: #fff;
  border-radius: 0 0 8px 8px;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.faq-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}

.faq-q {
  background: var(--accent-green);
  color: #fff;
}

.faq-a {
  background: #e8d5a3;
  color: var(--text-heading);
}

/* --- Cancel Policy --- */
.cancel-policy {
  margin-bottom: 3rem;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 2px solid #d4c5a0;
  border-radius: 12px;
}

.cancel-policy__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cancel-policy__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c0392b;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.cancel-policy__header h2 {
  font-size: 1.375rem;
  color: #c0392b;
  margin: 0;
  padding: 0;
  border: none;
}

.cancel-policy > p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

.cancel-policy__rules {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cancel-policy__rule {
  padding: 1.5rem;
  background: var(--bg-warm);
  border-radius: 8px;
  border-left: 4px solid var(--accent-green);
}

.cancel-policy__rule--alert {
  border-left-color: #c0392b;
  background: #fef9f8;
}

.cancel-policy__rule h3 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.0625rem;
  color: var(--text-heading);
  margin: 0 0 0.75rem;
}

.cancel-policy__rule--alert h3 {
  color: #a93226;
}

.cancel-policy__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.cancel-policy__num--alert {
  background: #c0392b;
}

.cancel-policy__rule p {
  margin: 0 0 0.5rem;
  line-height: 1.85;
}

.cancel-policy__rule p:last-child {
  margin-bottom: 0;
}

.cancel-policy__penalty {
  margin-top: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid #e0b4b0;
  border-radius: 6px;
}

.cancel-policy__penalty p {
  margin: 0;
  color: #a93226;
  font-size: 0.9375rem;
}

.cancel-policy__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2ddd4;
}

.cancel-policy__footer p {
  margin-bottom: 0.5rem;
  line-height: 1.85;
}

.cancel-policy__date {
  font-size: 0.875rem;
  color: #888;
}

.cancel-policy__sign {
  text-align: right;
  font-weight: 600;
  color: var(--text-heading);
}

.cancel-policy-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fef2f1;
  border: 1px solid #e0b4b0;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.cancel-policy-link::before {
  content: "\26A0";
  font-size: 1rem;
}

.cancel-policy-link a {
  color: #c0392b;
  font-weight: 700;
  text-decoration: underline;
}

/* --- Breadcrumb --- */
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 0.25rem;
  color: #999;
}

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

.breadcrumb [aria-current="page"] {
  color: #666;
}

/* --- Column Article Detail --- */
.column-article {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.column-article__header {
  margin-bottom: 2rem;
}

.column-article__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.column-article__date {
  font-size: 0.8125rem;
  color: #888;
}

.column-article__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.625rem;
  background: var(--accent-green);
  color: #fff;
  border-radius: 9999px;
}

.column-article__title {
  font-size: 1.625rem;
  color: var(--text-heading);
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent-green);
}

.column-article__hero {
  margin-bottom: 2rem;
}

.column-article__hero img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.column-article__body {
  font-size: 1rem;
  line-height: 2;
}

.column-article__body h2 {
  font-size: 1.375rem;
  color: var(--text-heading);
  margin: 2.5rem 0 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--accent-green);
}

.column-article__body h3 {
  font-size: 1.125rem;
  color: var(--accent-green);
  margin: 2rem 0 0.75rem;
}

.column-article__body p {
  margin-bottom: 1.25rem;
}

.column-article__body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.column-article__body ul,
.column-article__body ol {
  margin: 1rem 0 1.25rem 1.5rem;
  list-style: revert;
}

.column-article__body li {
  margin-bottom: 0.5rem;
}

.column-article__body blockquote {
  border-left: 4px solid var(--sub-yellow);
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background: var(--bg-warm-deep);
  border-radius: 0 8px 8px 0;
}

.column-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.column-article__body th,
.column-article__body td {
  padding: 0.625rem 0.75rem;
  border: 1px solid #e2ddd4;
  text-align: left;
  font-size: 0.9375rem;
}

.column-article__body th {
  background: var(--bg-warm-deep);
  font-weight: 600;
}

.column-article__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2ddd4;
}

.column-article__back {
  color: var(--leaf-green);
  font-size: 0.9375rem;
}

/* --- Column Index Cards --- */
.column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.column-card {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.column-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.column-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.column-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.column-card__noimage {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-warm-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2rem;
}

.column-card__body {
  padding: 1rem 1.25rem;
}

.column-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.column-card__date {
  font-size: 0.75rem;
  color: #888;
}

.column-card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.0625rem 0.5rem;
  background: var(--accent-green);
  color: #fff;
  border-radius: 9999px;
}

.column-card__title {
  font-size: 1rem;
  color: var(--text-heading);
  line-height: 1.5;
  margin: 0;
}

/* --- Director Profile --- */
.director-section {
  margin-bottom: 2rem;
}

.director-profile {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  overflow: hidden;
  padding: 2rem;
}

.director-profile__image {
  flex: 0 0 280px;
  border-radius: 8px;
  overflow: hidden;
}

.director-profile__image img {
  width: 100%;
  height: auto;
  display: block;
}

.director-profile__body {
  flex: 1;
}

.director-profile__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--main-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.director-profile__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
  border-left: none;
  padding-left: 0;
}

.director-profile__ruby {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin-left: 0.25rem;
}

.director-profile__message {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.director-profile__link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent-green);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}

.director-profile__link:hover {
  background: var(--leaf-green);
  transform: translateY(-1px);
}

/* --- Doctor Unit (Staff Index: 二人並列) --- */
.doctor-unit {
  margin-bottom: 2.5rem;
}

.doctor-unit__heading {
  font-size: 1.375rem;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.doctor-unit__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--sub-yellow);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.doctor-unit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.doctor-unit__card {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.doctor-unit__card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.doctor-unit__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.doctor-unit__body {
  padding: 1.25rem;
}

.doctor-unit__role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--main-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.doctor-unit__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  border-left: none;
  padding-left: 0;
}

.doctor-unit__desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}

.doctor-unit__action {
  text-align: center;
}

.doctor-unit__link {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: var(--accent-green);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}

.doctor-unit__link:hover {
  background: var(--leaf-green);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

/* --- Director Card (スタッフ一覧 院長ワイドカード) --- */
.director-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  transition: box-shadow 0.25s;
}

.director-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.director-card__photo {
  flex: 0 0 260px;
  overflow: hidden;
}

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

.director-card__body {
  flex: 1;
  padding: 1.75rem 1.75rem 1.75rem 0;
  min-width: 0;
}

.director-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--main-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.director-card__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.375rem;
  border-left: none;
  padding-left: 0;
}

.director-card__tagline {
  font-size: 0.9375rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 1rem;
}

.director-card__lead {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.director-card__link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--accent-green);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}

.director-card__link:hover {
  background: var(--leaf-green);
  transform: translateY(-1px);
}

/* --- Doctor Unit Solo (院長単独表示) --- */
.doctor-unit__solo {
  max-width: 420px;
  margin: 0 auto 1.5rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.doctor-unit__solo:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.doctor-unit__solo .doctor-unit__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.doctor-unit__solo .doctor-unit__body {
  padding: 1.25rem;
  text-align: center;
}

/* --- Partner Section (院長のパートナー DA) --- */
.partner-section {
  margin-bottom: 2.5rem;
}

.partner-section__heading {
  font-size: 1.25rem;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.partner-section__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--sub-yellow);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.partner-section__card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-left: 4px solid var(--accent-green);
  border-radius: 12px;
  overflow: hidden;
  padding: 2rem;
}

.partner-section__image {
  flex: 0 0 200px;
  border-radius: 8px;
  overflow: hidden;
}

.partner-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.partner-section__body {
  flex: 1;
}

.partner-section__role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--main-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.partner-section__text {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-body);
}

.partner-section__gap {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #888;
}

.partner-section__philosophy {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
}

.partner-section__philosophy h3 {
  font-size: 1.05rem;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--sub-yellow);
  padding-left: 0.75rem;
}

.partner-section__philosophy h3:not(:first-child) {
  margin-top: 1.5rem;
}

.partner-section__philosophy p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-body);
}

/* --- Doctor Detail Page --- */
.doctor-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.doctor-intro__visual {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.doctor-intro__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-intro__vision {
  border: none;
  margin: 0 auto 1rem;
  padding: 1rem 0;
  max-width: 600px;
}

.doctor-intro__vision p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1.6;
}

.doctor-intro__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
}

/* --- Director Full Profile (院長フルプロフィール) --- */
.director-full {
  margin-bottom: 2.5rem;
}

.director-full__hero {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.director-full__photo {
  flex: 0 0 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--accent-green);
}

.director-full__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.director-full__intro {
  flex: 1;
  min-width: 0;
}

.director-full__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--main-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.director-full__name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.director-full__ruby {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #888;
  margin-top: 0.125rem;
}

.director-full__tagline {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.director-full__message {
  background: var(--bg-warm-deep);
  border-left: 4px solid var(--accent-green);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 0 0 1.25rem;
}

.director-full__message p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-body);
  margin: 0 0 0.5rem;
}

.director-full__message p:last-child {
  margin-bottom: 0;
}

.director-full__words {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.director-full__words-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--main-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.director-full__words ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.director-full__words li {
  font-size: 0.9375rem;
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.director-full__words li::before {
  content: "C";
  position: absolute;
  left: 0;
  color: var(--sub-yellow);
  font-size: 1.25rem;
  font-weight: 700;
}

.director-full__story,
.director-full__cyber {
  margin-bottom: 2.5rem;
  max-width: 860px;
}

.director-full__story h3,
.director-full__philosophy-item h3,
.director-full__cyber h3 {
  font-size: 1.125rem;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--sub-yellow);
}

.director-full__story p,
.director-full__philosophy-item p,
.director-full__cyber p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1rem;
  color: var(--text-body);
}

.director-full__philosophy {
  margin-bottom: 2.5rem;
}

.director-full__philosophy-item {
  margin-bottom: 2rem;
  max-width: 860px;
}

.director-full__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  padding: 2rem;
}

.director-full__credentials h3 {
  font-size: 1rem;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 2px solid var(--sub-yellow);
}

.director-full__history h3:not(:first-child),
.director-full__quals h3:not(:first-child) {
  margin-top: 1.5rem;
}

.director-timeline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
}

.director-timeline dt {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-green);
  white-space: nowrap;
  padding-top: 0.125rem;
}

.director-timeline dd {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0ede8;
}

.director-timeline dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.director-full__quals ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.director-full__quals li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-body);
  padding: 0.25rem 0 0.25rem 1.125rem;
  position: relative;
}

.director-full__quals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf-green);
}

.director-full__cyber {
  background: linear-gradient(135deg, #f8f6f2 0%, var(--bg-warm-deep) 100%);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--accent-green);
}

.director-full__cyber h3 {
  border-left: none;
  padding-left: 0;
}

/* --- Doctor Story Sections --- */
.doctor-story {
  margin-bottom: 2.5rem;
}

.doctor-story__header {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.doctor-story__portrait {
  flex: 0 0 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.doctor-story__portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-story__title-block {
  flex: 1;
}

.doctor-story__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--main-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.doctor-story__name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  border-left: none;
  padding-left: 0;
}

.doctor-story__tagline {
  font-size: 1.0625rem;
  color: #666;
  font-weight: 500;
  line-height: 1.6;
}

/* Director vs Vice visual accent */
.doctor-story--director .doctor-story__portrait {
  border-bottom: 4px solid var(--accent-green);
}

.doctor-story--vice .doctor-story__portrait {
  border-bottom: 4px solid var(--leaf-green);
}

.doctor-story--partner .doctor-story__portrait {
  border-bottom: 4px solid var(--sub-yellow);
}

.doctor-story__content {
  max-width: 780px;
}

.doctor-story__episode,
.doctor-story__philosophy {
  margin-bottom: 2rem;
}

.doctor-story__episode h3,
.doctor-story__philosophy h3 {
  font-size: 1.125rem;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--sub-yellow);
}

.doctor-story__episode p,
.doctor-story__philosophy p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1rem;
  color: var(--text-body);
}

.doctor-story__episode p:last-child,
.doctor-story__philosophy p:last-child {
  margin-bottom: 0;
}

/* Back navigation */
.doctor-back-nav {
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e2ddd4;
}

.doctor-back-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* --- Contact Form --- */
.contact-form__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.contact-form__table th,
.contact-form__table td {
  border: 1px solid #e2ddd4;
  padding: 1rem 1.25rem;
  vertical-align: top;
  font-size: 0.9375rem;
}

.contact-form__table th {
  background-color: #eef7f0;
  color: var(--accent-green);
  font-weight: 700;
  width: 220px;
  white-space: nowrap;
}

.contact-form__table input[type="text"],
.contact-form__table input[type="email"],
.contact-form__table input[type="tel"] {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form__table input:focus,
.contact-form__table textarea:focus {
  outline: none;
  border-color: var(--leaf-green);
  box-shadow: 0 0 0 2px rgba(74, 140, 63, 0.15);
}

.contact-form__table textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: inherit;
  line-height: 1.8;
  resize: vertical;
  transition: border-color 0.2s;
}

.contact-form__table input[type="file"] {
  font-size: 0.875rem;
}

.contact-form__required {
  display: inline-block;
  background-color: var(--main-orange);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.375rem;
  vertical-align: middle;
}

.contact-form__hint {
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-form__confirm {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.contact-form__confirm input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.15);
  vertical-align: middle;
}

.contact-form__submit {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form__submit button {
  display: inline-block;
  padding: 0.875rem 3rem;
  background: var(--leaf-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, opacity 0.25s;
}

.contact-form__submit button:hover:not(:disabled) {
  background: var(--accent-green);
  transform: translateY(-1px);
}

.contact-form__submit button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-form__note {
  text-align: center;
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-form__errors {
  background: #fef2f2;
  border: 1px solid #f5c6c6;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: #c41e1e;
  font-size: 0.9375rem;
}

.contact-form__errors ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.contact-form__errors li {
  margin-bottom: 0.25rem;
}

/* --- Section Divider --- */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2ddd4 20%, #e2ddd4 80%, transparent);
  margin: 2.5rem 0;
}

/* --- Staff Card Grid --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.staff-card {
  border: 1px solid #e2ddd4;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}

.staff-card:hover {
  box-shadow: 0 4px 16px rgba(249, 211, 67, 0.35);
  transform: translateY(-2px);
}

.staff-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-warm-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 0.875rem;
}

.staff-card__body {
  padding: 1rem;
}

.staff-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}

.staff-card__role {
  font-size: 0.8125rem;
  color: var(--main-orange);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.staff-card__bio {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.6;
}

/* --- Concept Section (Top Page: ひまわりイラスト) --- */
.concept-section {
  text-align: center;
}

.concept-section h2 {
  border-left: none;
  padding-left: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.concept-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--sub-yellow);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.concept-illustration {
  margin: 2rem auto;
  max-width: 800px;
}

.concept-illustration img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.concept-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.0625rem;
  line-height: 2;
  color: var(--text-body);
}

.concept-text p {
  margin-bottom: 1.25rem;
}

.concept-text p:last-child {
  margin-bottom: 0;
}

/* --- Schedule Table --- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid #e2ddd4;
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.schedule-table th {
  background-color: var(--bg-warm-deep);
  font-weight: 600;
  color: var(--accent-green);
}

.schedule-table .sunday {
  background-color: #fef3d0;
  color: var(--main-orange);
  font-weight: 700;
}

/* --- Instagram Section --- */
.instagram-section {
  margin-top: 2rem;
  padding: 2rem 0;
}

.instagram-section h2 {
  border-left: 4px solid var(--accent-green);
  padding-left: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.instagram-section > p {
  margin-bottom: 1.5rem;
  color: var(--text-body);
}

.instagram-feed {
  margin-bottom: 1rem;
}

.instagram-section__follow {
  text-align: right;
}

.instagram-section__follow a {
  color: var(--leaf-green);
  font-weight: 600;
}

/* --- Site Footer --- */
.site-footer {
  background-color: var(--accent-green);
  color: #ddd;
  padding: 2rem 0;
  font-size: 0.8125rem;
}

.site-footer a {
  color: var(--sub-yellow);
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-info {
  margin-bottom: 1rem;
}

.footer-sns {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s;
}

.footer-sns a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.footer-sns svg {
  width: 24px;
  height: 24px;
  fill: #ddd;
  transition: fill 0.2s;
}

.footer-sns a:hover svg {
  fill: #fff;
}

/* --- Special Article (特集記事) --- */
.special-article {
  max-width: 100%;
}

.special-article__header {
  margin-bottom: 0.75rem;
}

.special-article__title {
  font-size: 1.5rem;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.special-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.special-article__date {
  font-size: 0.8125rem;
  color: #888;
  white-space: nowrap;
}

.special-article__desc {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

.special-article__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2ddd4;
}

.special-article__back {
  color: var(--leaf-green);
  text-decoration: none;
  font-weight: 600;
}

.special-article__back:hover {
  text-decoration: underline;
}

/* Special index card list */
.special-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.special-card {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.special-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.special-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1.25rem 1.5rem;
}

.special-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.special-card__date {
  font-size: 0.75rem;
  color: #888;
}

.special-card__title {
  font-size: 1.125rem;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.special-card__desc {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

.footer-copyright {
  border-top: 1px solid rgba(249, 211, 67, 0.3);
  padding-top: 1rem;
  text-align: center;
  color: #a0c4a8;
}

/* --- News + Calendar Row (Top Page: 横並びセクション) --- */
.news-calendar-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.news-calendar-row__news {
  flex: 3;
  min-width: 0;
}

.news-calendar-row__calendar {
  flex: 2;
  min-width: 0;
}

.news-calendar-row h2 {
  border-left: none;
  padding-left: 0;
  font-size: 1.125rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sub-yellow);
  margin-bottom: 0.75rem;
}

/* --- News List --- */
.news-list {
  border-top: 1px solid #e2ddd4;
}

.news-list__item {
  border-bottom: 1px solid #e2ddd4;
}

.news-list__item a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.625rem 0.25rem;
  color: inherit;
  transition: background-color 0.2s;
}

.news-list__item a:hover {
  background-color: var(--bg-warm-deep);
  text-decoration: none;
}

.news-list__date {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: #999;
  font-variant-numeric: tabular-nums;
  min-width: 5.5em;
}

.news-list__title {
  font-size: 0.9375rem;
  color: var(--text-body);
}

.news-list__empty {
  padding: 1rem 0;
  color: #999;
  font-size: 0.875rem;
}

/* --- News Detail Page --- */
.news-detail__date {
  display: block;
  font-size: 0.8125rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.news-detail__title {
  font-size: 1.375rem;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sub-yellow);
}

.news-detail__figure {
  margin-bottom: 1.5rem;
}

.news-detail__image {
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-detail__body {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.news-detail__back {
  margin-bottom: 2rem;
}

/* --- Calendar Display --- */
.calendar-display__heading {
  font-size: 0.9375rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.calendar-display__image {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2ddd4;
}

.calendar-display__empty {
  color: #999;
  font-size: 0.875rem;
}

.calendar-display__next {
  margin-top: 0.75rem;
}

.calendar-display__toggle {
  font-size: 0.8125rem;
  color: var(--leaf-green);
  cursor: pointer;
  padding: 0.375rem 0;
}

.calendar-display__toggle:hover {
  color: var(--main-orange);
}

/* --- Periodontal: Risk List --- */
.perio-risk-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.perio-risk-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-left: 4px solid var(--main-orange);
  border-radius: 6px;
}

.perio-risk-list li strong {
  flex-shrink: 0;
  color: var(--accent-green);
  font-size: 0.9375rem;
  min-width: 7em;
}

.perio-risk-list li span {
  font-size: 0.9375rem;
  color: var(--text-body);
}

/* --- Periodontal: Stage Image Placeholder --- */
.perio-stages-image {
  margin: 1.5rem 0;
  text-align: center;
}

.perio-stages-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e2ddd4;
}

.perio-stages-image__placeholder {
  padding: 3rem 1rem;
  background: var(--bg-warm-deep);
  border: 2px dashed #e2ddd4;
  border-radius: 8px;
  color: #999;
  font-size: 0.875rem;
}

/* --- Periodontal: Stage Cards --- */
.perio-stages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  counter-reset: none;
}

.perio-stage {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.perio-stage:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.perio-stage__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0ece4;
}

.perio-stage__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.perio-stage__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* Stage color coding */
.perio-stage--healthy .perio-stage__number { background-color: #4a8c3f; }
.perio-stage--healthy .perio-stage__title  { color: #4a8c3f; }

.perio-stage--gingivitis .perio-stage__number { background-color: #c4a035; }
.perio-stage--gingivitis .perio-stage__title  { color: #a08a2e; }

.perio-stage--early .perio-stage__number { background-color: #d4872a; }
.perio-stage--early .perio-stage__title  { color: #b5722a; }

.perio-stage--moderate .perio-stage__number { background-color: #c45a2a; }
.perio-stage--moderate .perio-stage__title  { color: #b04a1e; }

.perio-stage--severe .perio-stage__number { background-color: #a83232; }
.perio-stage--severe .perio-stage__title  { color: #8c2828; }

.perio-stage__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.perio-stage__symptoms,
.perio-stage__treatment {
  min-width: 0;
}

.perio-stage__symptoms h4,
.perio-stage__treatment h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.perio-stage__symptoms h4 {
  color: var(--main-orange);
}

.perio-stage__treatment h4 {
  color: var(--accent-green);
}

.perio-stage__symptoms p,
.perio-stage__treatment p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- 治療フロー（歯周病ページ） --- */
.tx-flow {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tx-flow__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}

.tx-flow__step:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.tx-flow__marker {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tx-flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.tx-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.375rem;
  line-height: 1;
}

.tx-flow__content {
  flex: 1;
  min-width: 0;
}

.tx-flow__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.tx-flow__content > p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  color: var(--text-body);
}

.tx-flow__content > p:last-child {
  margin-bottom: 0;
}

.tx-flow__note {
  display: inline-block;
  background: var(--bg-warm-deep);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8125rem !important;
  font-weight: 600;
  color: var(--accent-green) !important;
}

/* 矢印 */
.tx-flow__arrow {
  width: 2px;
  height: 32px;
  background: var(--accent-green);
  position: relative;
  margin: 0;
}

.tx-flow__arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--accent-green);
}

/* 再評価ステップ */
.tx-flow__step--check {
  border-color: var(--accent-green);
  border-width: 2px;
  background: linear-gradient(135deg, #f0f7f1, #fff);
}

/* 分岐 */
.tx-flow__branch {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 720px;
  margin: 0.5rem 0;
  position: relative;
}

.tx-flow__branch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #c8c0b4;
}

.tx-flow__branch-label {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b6152;
  background: var(--bg-warm);
  padding: 0.125rem 0.625rem;
  border-radius: 4px;
  border: 1px solid #d8d0c4;
}

/* 2列レイアウト */
.tx-flow__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 720px;
  margin: 0.5rem 0;
}

.tx-flow__columns .tx-flow__step {
  max-width: none;
}

/* STEP 4 外科 */
.tx-flow__step--surgery {
  border-left: 4px solid #c45a2a;
}

.tx-flow__step--surgery .tx-flow__number {
  background-color: #c45a2a;
}

.tx-flow__step--surgery .tx-flow__title {
  color: #b04a1e;
}

/* GOAL */
.tx-flow__step--goal {
  border-left: 4px solid #4a8c3f;
  background: linear-gradient(135deg, #f0f7f1, #fff);
}

.tx-flow__step--goal .tx-flow__title {
  color: #4a8c3f;
}

/* メインテナンス */
.tx-flow__step--maintenance {
  border: 2px solid var(--accent-green);
  background: linear-gradient(135deg, #f5f9f3, #fff);
}

.tx-flow__step--maintenance .tx-flow__title {
  color: var(--accent-green);
}

/* 警告 */
.tx-flow__warning {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fef5f3;
  border: 1px solid #f0c8be;
  border-left: 4px solid #c45a2a;
  border-radius: 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.tx-flow__warning h3 {
  font-size: 1rem;
  color: #a83232;
  margin-bottom: 0.5rem;
}

.tx-flow__warning p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 0;
}

/* =============================================
   Prevention: 予防歯科ページ専用コンポーネント
   ============================================= */

/* --- Hero Image（リードセクション画像） --- */
.prev-hero-image {
  margin: 1.5rem 0;
  text-align: center;
}

.prev-hero-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e2ddd4;
}

.prev-hero-image__placeholder {
  padding: 3rem 1rem;
  background: var(--bg-warm-deep);
  border: 2px dashed #e2ddd4;
  border-radius: 8px;
  color: #999;
  font-size: 0.875rem;
}

/* --- 0.2N セクション（画像+テキスト横並び） --- */
.prev-02n {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.prev-02n__image img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e2ddd4;
}

.prev-02n__text p {
  margin-bottom: 1rem;
}

.prev-02n__text p:last-child {
  margin-bottom: 0;
}

/* --- 三本柱カード --- */
.prev-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.prev-pillar {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.prev-pillar:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.prev-pillar__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0ece4;
}

.prev-pillar__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.prev-pillar__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* カラーコード */
.prev-pillar--know .prev-pillar__number { background-color: #2a7ab5; }
.prev-pillar--know .prev-pillar__title  { color: #2a7ab5; }

.prev-pillar--brush .prev-pillar__number { background-color: var(--accent-green); }
.prev-pillar--brush .prev-pillar__title  { color: var(--accent-green); }

.prev-pillar--protect .prev-pillar__number { background-color: #c4a035; }
.prev-pillar--protect .prev-pillar__title  { color: #a08a2e; }

.prev-pillar__body {
  padding: 1rem 1.25rem 1.25rem;
}

.prev-pillar__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.prev-pillar__body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.prev-pillar__body p:last-child {
  margin-bottom: 0;
}

/* --- 強調ボックス（フッ素手順等） --- */
.prev-highlight {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #f0f7f1, #fff);
  border: 1px solid #c8dcc6;
  border-left: 4px solid var(--accent-green);
  border-radius: 8px;
}

.prev-highlight__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.prev-highlight ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prev-highlight li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.prev-highlight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--leaf-green);
}

.prev-accent {
  color: var(--accent-green);
  font-size: 1.0625rem;
}

/* ============================================
   院長手記スタイル（入れ歯ページ）
   読み物として没入できる余白設計
   ============================================ */
.memoir {
  max-width: 780px;
  margin: 0 auto 3rem;
  padding: 0 0.5rem;
}

.memoir__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2ddd4;
}

.memoir__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--main-orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0.25rem 1rem;
  border: 1px solid var(--main-orange);
  border-radius: 3px;
}

.memoir__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text-heading);
  line-height: 1.6;
  font-weight: 700;
  border-left: none;
  padding-left: 0;
}

.memoir__chapter {
  margin-bottom: 2.5rem;
}

.memoir__chapter h2 {
  font-size: 1.375rem;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--accent-green);
}

.memoir__chapter h3 {
  font-size: 1.125rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--sub-yellow);
}

.memoir__chapter p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

.memoir__quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #f8f6f0, #fff);
  border-left: 4px solid var(--accent-green);
  border-radius: 0 8px 8px 0;
}

.memoir__quote p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-green);
  line-height: 1.8;
  margin-bottom: 0;
}

.memoir__quote--emotional {
  border-left-color: var(--main-orange);
  background: linear-gradient(135deg, #fff5f0, #fff);
}

.memoir__quote--emotional p {
  color: var(--main-orange);
}

.memoir__quote--mentor {
  border-left-color: var(--sub-yellow);
  background: linear-gradient(135deg, #fffce8, #fff);
}

.memoir__quote--mentor p {
  color: #7a6a1a;
}

.memoir__turning-point {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--accent-green);
  padding: 1rem 1.25rem;
  background: #f0f7f1;
  border-radius: 8px;
  line-height: 1.9;
}

.memoir__chapter--closing {
  padding-top: 2rem;
  border-top: 1px solid #e2ddd4;
}

.memoir__signature {
  text-align: right;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e2ddd4;
}

/* --- 入れ歯：種類カード --- */
.denture-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.denture-types__card {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.25s;
}

.denture-types__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.denture-types__card h3 {
  font-size: 1.125rem;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.denture-types__card p {
  margin-bottom: 0.75rem;
}

.denture-types__card ul {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* --- 入れ歯：保険vs自費 比較 --- */
.denture-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.denture-compare__item {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  padding: 1.5rem;
  border-top: 4px solid var(--accent-green);
}

.denture-compare__item--self {
  border-top-color: var(--main-orange);
}

.denture-compare__item h3 {
  font-size: 1.125rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.denture-compare__item--self h3 {
  color: var(--main-orange);
}

.denture-compare__pros,
.denture-compare__cons {
  margin-bottom: 0.75rem;
}

.denture-compare__pros h4,
.denture-compare__cons h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.denture-compare__pros h4 {
  color: var(--accent-green);
}

.denture-compare__cons h4 {
  color: #999;
}

.denture-compare__pros ul,
.denture-compare__cons ul {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* --- 入れ歯：自費オプション一覧 --- */
.denture-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.denture-options__item {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-left: 4px solid var(--leaf-green);
  border-radius: 6px;
  padding: 1.25rem;
}

.denture-options__item h3 {
  font-size: 1rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.denture-options__item p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* --- CTA カード（導線バナー） --- */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
}

.cta-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

.cta-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cta-card__body {
  flex: 1;
  min-width: 0;
}

.cta-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}

.cta-card__desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.cta-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--leaf-green);
}

.cta-card--shuttle {
  border-left: 4px solid var(--main-orange);
}

.cta-card__warning {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #c41e1e;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* --- インプラント：メーカーカード --- */
.implant-makers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.implant-makers__item {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  transition: box-shadow 0.25s;
}

.implant-makers__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.implant-makers__logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.implant-makers__logo img {
  max-width: 160px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.implant-makers__item h3 {
  font-size: 1rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.implant-makers__item p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- 口腔外科：対象リスト --- */
.surgery-targets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.surgery-targets__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-left: 4px solid var(--accent-green);
  border-radius: 6px;
  padding: 1rem 1.25rem;
}

.surgery-targets__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
}

.surgery-targets__item h3 {
  font-size: 1rem;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}

.surgery-targets__item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- 保険と自費の選び方テーブル --- */
.choice-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

.choice-table th,
.choice-table td {
  border: 1px solid #e2ddd4;
  padding: 0.75rem 1rem;
  text-align: left;
}

.choice-table thead th {
  background-color: #eef7f0;
  color: var(--accent-green);
  font-weight: 700;
  text-align: center;
}

.choice-table tbody th {
  background: var(--bg-warm-deep);
  font-weight: 600;
  width: 160px;
}

/* --- 送迎サービス バナー --- */
.shuttle-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #FFF8E8 0%, var(--bg-warm) 100%);
  border: 1px solid var(--sub-yellow);
  border-left: 4px solid var(--main-orange);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
}

a.shuttle-banner:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
}

.shuttle-banner__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.shuttle-banner__body {
  flex: 1;
}

.shuttle-banner__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}

.shuttle-banner__desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.shuttle-banner__warning {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c41e1e;
  background: #fff0f0;
  border: 1px solid #e8b4b4;
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  margin-top: 0.4rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.shuttle-banner__link-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--leaf-green);
}

/* --- 送迎サービス 詳細セクション --- */
.shuttle-detail {
  margin-top: 1.5rem;
}

.shuttle-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shuttle-detail__item {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.shuttle-detail__item h3 {
  font-size: 1rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.shuttle-detail__item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.shuttle-detail__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* --- 送迎サービス 警告ボックス --- */
.shuttle-warning-box {
  background: #fff0f0;
  border: 2px solid #d32f2f;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.shuttle-warning-box__text {
  color: #b71c1c;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0;
}

/* --- 送迎サービス 利用規定 --- */
.shuttle-rules {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  padding: 1.5rem;
}

.shuttle-rules__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sub-yellow);
}

.shuttle-rules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shuttle-rules__item {
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 1rem;
}

.shuttle-rules__icon {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}

.shuttle-rules__item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.4rem;
}

.shuttle-rules__item p,
.shuttle-rules__item ul {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.shuttle-rules__item ul {
  padding-left: 1.25rem;
}

.shuttle-rules__item li {
  margin-bottom: 0.25rem;
}

.shuttle-rules__caution {
  color: #c41e1e;
  font-weight: 700;
}

.shuttle-rules__notice {
  margin-top: 1rem;
  background: #fff8e8;
  border-left: 4px solid var(--main-orange);
  border-radius: 4px;
  padding: 0.75rem 1rem;
}

.shuttle-rules__notice p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- 送迎サービス 手続きフロー --- */
.shuttle-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shuttle-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2ddd4;
}

.shuttle-flow__step:last-child {
  border-bottom: none;
}

.shuttle-flow__number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
}

.shuttle-flow__content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 0.25rem;
}

.shuttle-flow__content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- 送迎サービス 承諾書 --- */
.shuttle-consent {
  margin-top: 2rem;
  background: #fff;
  border: 2px solid #e2ddd4;
  border-radius: 10px;
  padding: 1.5rem;
}

.shuttle-consent__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
  text-align: center;
}

.shuttle-consent__body {
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.shuttle-consent__table {
  width: 100%;
  border-collapse: collapse;
}

.shuttle-consent__table th,
.shuttle-consent__table td {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  border-bottom: 1px solid #e2ddd4;
  text-align: left;
}

.shuttle-consent__table tr:last-child th,
.shuttle-consent__table tr:last-child td {
  border-bottom: none;
}

.shuttle-consent__table th {
  background: var(--bg-warm-deep);
  font-weight: 600;
  width: 160px;
  white-space: nowrap;
}

.shuttle-consent__note {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* --- 最新コラム（トップページ） --- */
.latest-columns {
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--bg-warm-deep, #faf6ef);
  border-radius: 8px;
}

.latest-columns__heading {
  font-size: 1.375rem;
  color: var(--text-heading, #1d5d2c);
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--accent-green, #1d5d2c);
}

.latest-columns__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-columns__item {
  border-bottom: 1px solid #e2ddd4;
}

.latest-columns__item:last-child {
  border-bottom: none;
}

.latest-columns__item a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.875rem 0;
  color: var(--text-body, #333);
  text-decoration: none;
  transition: color 0.2s;
}

.latest-columns__item a:hover {
  color: var(--accent-green, #1d5d2c);
}

.latest-columns__date {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: #888;
  min-width: 5.5em;
}

.latest-columns__title {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.latest-columns__more {
  margin-top: 1.25rem;
  text-align: right;
}

.latest-columns__more a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--accent-green, #1d5d2c);
  border: 1px solid var(--accent-green, #1d5d2c);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.latest-columns__more a:hover {
  background: var(--accent-green, #1d5d2c);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .site-logo__image {
    height: 40px;
  }

  .nav-toggle {
    display: flex;
  }

  .global-nav {
    display: none;
    width: 100%;
    order: 3;
  }

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

  .global-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0;
    border-top: 1px solid #e2ddd4;
    margin-top: 0.5rem;
  }

  .global-nav li a {
    display: block;
    padding: 0.625rem 0.5rem;
    font-size: 0.9375rem;
    border-bottom: 1px solid #f0ece4;
  }

  /* --- Dropdown SP --- */
  .has-dropdown {
    position: static;
  }

  .has-dropdown > a::after {
    transform: rotate(45deg);
    transition: transform 0.2s;
  }

  .has-dropdown.is-open > a::after {
    transform: rotate(-135deg);
  }

  .has-dropdown:hover > .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .has-dropdown.is-open > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    min-width: 0;
    background: var(--bg-warm-deep);
    display: flex;
    transition: none;
  }

  .dropdown-menu a {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #ece6d8;
  }

  .dropdown-menu a::before {
    content: "\2514\00a0";
    color: #b0a898;
  }

  .hero {
    aspect-ratio: 4 / 3;
    max-height: 60vh;
  }

  .hero__overlay {
    padding: 1.5rem 1.25rem;
    background: linear-gradient(
      180deg,
      rgba(29, 93, 44, 0.75) 0%,
      rgba(29, 93, 44, 0.5) 60%,
      transparent 100%
    );
    justify-content: flex-start;
    padding-top: 2rem;
  }

  .hero__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .hero__subtitle {
    font-size: 0.8125rem;
  }

  .page-header h1 {
    font-size: 1.375rem;
  }

  .director-profile {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .director-profile__image {
    flex: 0 0 auto;
    max-width: 240px;
    margin: 0 auto;
  }

  .director-profile__name {
    font-size: 1.375rem;
  }

  .director-profile__link {
    display: block;
    text-align: center;
  }

  .staff-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  /* --- パートナーセクション SP --- */
  .partner-section__card {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .partner-section__image {
    flex: 0 0 auto;
    max-width: 180px;
    margin: 0 auto;
  }

  /* --- ドクターユニット SP --- */
  .doctor-unit__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* --- Director Card SP --- */
  .director-card {
    flex-direction: column;
    gap: 0;
  }

  .director-card__photo {
    flex: 0 0 auto;
    max-height: 300px;
  }

  .director-card__body {
    padding: 1.25rem;
  }

  .director-card__name {
    font-size: 1.375rem;
  }

  .doctor-unit__solo {
    max-width: 100%;
  }

  .doctor-unit__image img {
    aspect-ratio: 4 / 3;
  }

  .doctor-unit__link {
    display: block;
    padding: 0.75rem 1.5rem;
  }


  /* --- ドクター詳細 SP --- */
  .doctor-intro__vision p {
    font-size: 1.25rem;
  }

  /* --- Director Full Profile SP --- */
  .director-full__hero {
    flex-direction: column;
    gap: 1.5rem;
  }

  .director-full__photo {
    flex: 0 0 auto;
    max-width: 220px;
    margin: 0 auto;
  }

  .director-full__name {
    font-size: 1.75rem;
  }

  .director-full__tagline {
    font-size: 0.9375rem;
  }

  .director-full__message {
    padding: 0.875rem 1rem;
  }

  .director-full__message p {
    font-size: 0.875rem;
  }

  .director-full__credentials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .director-full__story,
  .director-full__philosophy-item,
  .director-full__cyber {
    max-width: 100%;
  }

  .director-full__story p,
  .director-full__philosophy-item p,
  .director-full__cyber p {
    font-size: 0.9375rem;
    line-height: 1.85;
  }

  .director-full__cyber {
    padding: 1.25rem;
  }

  .director-timeline {
    gap: 0.125rem 0.75rem;
  }

  .doctor-story__header {
    flex-direction: column;
    gap: 1.25rem;
  }

  .doctor-story__portrait {
    flex: 0 0 auto;
    max-width: 200px;
    margin: 0 auto;
  }

  .doctor-story__title-block {
    text-align: center;
  }

  .doctor-story__name {
    font-size: 1.5rem;
  }

  /* --- 長文セクション SP 余白・フォント最適化 --- */
  .content-section {
    margin-bottom: 2rem;
  }

  .content-section h2 {
    font-size: 1.25rem;
  }

  .content-section h3 {
    font-size: 1rem;
  }

  .content-section p {
    font-size: 0.9375rem;
    line-height: 1.85;
  }

  .cancel-policy {
    padding: 1.5rem 1.25rem;
  }

  .cancel-policy__header {
    flex-wrap: wrap;
  }

  .cancel-policy__header h2 {
    font-size: 1.1875rem;
  }

  .cancel-policy__rule {
    padding: 1.25rem 1rem;
  }

  .column-article__title {
    font-size: 1.375rem;
  }

  .column-article__body h2 {
    font-size: 1.25rem;
  }

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

  .doctor-story {
    margin-bottom: 2rem;
  }

  .doctor-story__episode,
  .doctor-story__philosophy {
    margin-bottom: 1.5rem;
  }

  .doctor-story__episode p,
  .doctor-story__philosophy p {
    font-size: 0.9375rem;
    line-height: 1.85;
  }

  .doctor-story__episode h3,
  .doctor-story__philosophy h3 {
    font-size: 1rem;
  }

  .doctor-story__tagline {
    font-size: 0.9375rem;
  }

  .doctor-story__content {
    max-width: 100%;
  }

  .doctor-intro__lead {
    font-size: 0.9375rem;
    line-height: 1.8;
  }

  .page-header {
    margin-bottom: 1.5rem;
  }

  /* --- セクション見出し SP --- */
  .section-heading {
    font-size: 1.125rem;
  }

  /* --- 最新コラム SP --- */
  .latest-columns {
    padding: 1.25rem;
    margin-top: 2rem;
  }

  .latest-columns__heading {
    font-size: 1.25rem;
  }

  .latest-columns__item a {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
  }

  .latest-columns__more {
    text-align: center;
  }

  /* --- フォーム SP --- */
  .contact-form__table,
  .contact-form__table tbody,
  .contact-form__table tr,
  .contact-form__table th,
  .contact-form__table td {
    display: block;
    width: 100%;
  }

  .contact-form__table th {
    white-space: normal;
    padding: 0.75rem 1rem;
  }

  .contact-form__table td {
    padding: 0.75rem 1rem;
  }

  .contact-form__submit button {
    width: 100%;
  }

  /* --- 告知帯 SP --- */
  .announce-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .announce-band__image {
    width: 100px;
  }

  /* --- 導線帯 SP --- */
  .quick-access__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .quick-access__tel-pc {
    display: none;
  }

  .quick-access__tel-sp {
    display: block;
  }

  /* --- 情報帯 SP --- */
  .info-band .news-calendar-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .notice-card {
    flex-direction: column;
    text-align: center;
  }

  .notice-card__image {
    width: 100px;
  }

  .concept-section h2 {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .concept-illustration {
    margin: 1.5rem auto;
  }

  .concept-illustration img {
    border-radius: 8px;
  }

  .concept-text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }

  .news-calendar-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .news-list__item a {
    flex-direction: column;
    gap: 0.25rem;
  }

  .calendar-display__image {
    max-width: 100%;
  }

  /* --- 治療フロー SP --- */
  .tx-flow__step {
    padding: 1rem 1rem;
  }

  .tx-flow__columns {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tx-flow__branch {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .tx-flow__branch::before {
    display: none;
  }

  .tx-flow__title {
    font-size: 1rem;
  }

  /* --- 歯周病ページ SP --- */
  .perio-risk-list li {
    flex-direction: column;
    gap: 0.25rem;
  }

  .perio-risk-list li strong {
    min-width: auto;
  }

  .perio-stage__body {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* --- 予防歯科ページ SP --- */
  .prev-02n {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .prev-pillar__title {
    font-size: 1.125rem;
  }

  .prev-highlight {
    padding: 1rem 1.125rem;
  }

  /* --- 入れ歯ページ SP --- */
  .memoir__title {
    font-size: 1.25rem;
  }

  .memoir__quote p {
    font-size: 1rem;
  }

  .denture-types,
  .denture-compare,
  .denture-options,
  .cta-cards {
    grid-template-columns: 1fr;
  }

  /* --- インプラント SP --- */
  .implant-makers {
    grid-template-columns: 1fr;
  }

  /* --- 口腔外科 SP --- */
  .surgery-targets {
    grid-template-columns: 1fr;
  }

  /* --- 保険vs自費 SP --- */
  .choice-table {
    font-size: 0.8125rem;
  }

  .choice-table tbody th {
    width: auto;
  }

  /* --- 送迎 SP --- */
  .shuttle-banner {
    flex-direction: column;
    text-align: center;
  }

  .shuttle-detail__grid {
    grid-template-columns: 1fr;
  }

  .shuttle-rules__grid {
    grid-template-columns: 1fr;
  }

  .shuttle-consent__table th {
    width: auto;
    display: block;
    border-bottom: none;
    padding-bottom: 0.25rem;
  }

  .shuttle-consent__table td {
    display: block;
    padding-top: 0;
  }
}

/* === Dentech Otuki ビジョンセクション === */
.dentech-vision {
  margin: 2rem 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2d45 100%);
  border-radius: 12px;
  color: #e8e6e3;
  position: relative;
  overflow: hidden;
}
.dentech-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #e8d48b, #c9a84c);
}
.dentech-vision__header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.dentech-vision__logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
.dentech-vision__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 0.2rem;
  font-weight: 600;
}
.dentech-vision__heading {
  font-size: 1.15rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}
.dentech-vision__body {
  line-height: 1.85;
  font-size: 0.92rem;
}
.dentech-vision__body p {
  margin: 0 0 0.8rem;
  color: #d5d3d0;
}
.dentech-vision__body strong {
  color: #fff;
}
.dentech-vision__list {
  margin: 0.8rem 0 1rem 1.2rem;
  padding: 0;
}
.dentech-vision__list li {
  margin-bottom: 0.5rem;
  color: #d5d3d0;
  font-size: 0.92rem;
}
.dentech-vision__list li::marker {
  color: #c9a84c;
}
.dentech-vision__list li strong {
  color: #fff;
}
.dentech-vision__quote {
  margin: 1.2rem 0;
  padding: 0.8rem 1.2rem;
  border-left: 3px solid #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 0 6px 6px 0;
}
.dentech-vision__quote p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #e8d48b;
  font-style: italic;
}
.dentech-vision__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0;
}
.dentech-vision__tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 20px;
  color: #c9a84c;
  letter-spacing: 0.04em;
  background: rgba(201, 168, 76, 0.06);
}
.dentech-vision__tag--ai {
  border-color: rgba(100, 200, 255, 0.5);
  color: #7ecbf5;
  background: rgba(100, 200, 255, 0.08);
}
.dentech-vision__cta {
  margin-top: 1.5rem;
  text-align: center;
}
.dentech-vision__btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #c9a84c, #a8893a);
  color: #0d1b2a;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.2s;
}
.dentech-vision__btn:hover {
  background: linear-gradient(135deg, #e8d48b, #c9a84c);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .dentech-vision {
    padding: 1.5rem 1.2rem;
  }
  .dentech-vision__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .dentech-vision__heading {
    font-size: 1.05rem;
  }
  .dentech-vision__btn {
    display: block;
    text-align: center;
  }
}
