/*
Theme Name: 名医と賢者のアンサーズ
Theme URI: https://mchoice.jp/answers/
Author: 株式会社レン
Description: 名医と賢者のアンサーズ — 医師×専門家の知的対談番組サイト
Version: 2.0.0
Text Domain: answers
*/

/* CSSはhtml/style.cssと同一内容 — 以下コピー */

/* ========================================
   Design Tokens (from pencil-new2.pen)
   ======================================== */
:root {
  /* Colors */
  --color-primary: #1A2B4A;
  --color-accent-purple: #9B51E0;
  --color-gold: #D4A843;
  --color-gold-dark: #B8860B;
  --color-red: #ac1202;
  --color-orange: #E67E22;
  --color-dark: #0A1628;
  --color-dark-nav: #0D1B2A;

  --color-text-heading: #313131;
  --color-text-body: #555555;
  --color-text-muted: #888888;
  --color-bg-white: #FFFFFF;
  --color-bg-section: #F8F9FA;
  --color-border: #E0E0E0;

  --gradient-start: #9B51E0;
  --gradient-end: #007CBA;

  /* Fluid Typography (clamp) */
  --text-xs: clamp(0.625rem, 0.575rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.8125rem, 0.75rem + 0.3125vw, 0.9375rem);
  --text-lg: clamp(0.875rem, 0.775rem + 0.5vw, 1.125rem);
  --text-xl: clamp(1.125rem, 0.975rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.375rem, 1.15rem + 1.125vw, 2rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1.75vw, 2.75rem);
  --text-4xl: clamp(1.625rem, 1rem + 3.125vw, 3.25rem);
  --text-tag: clamp(0.625rem, 0.575rem + 0.25vw, 0.75rem);

  /* Fluid Spacing */
  --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --space-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --space-2xl: clamp(3rem, 2rem + 5vw, 5rem);

  /* Section padding */
  --section-px: clamp(1.25rem, 0.5rem + 3.75vw, 7.5rem);
  --section-py: clamp(3rem, 2rem + 5vw, 5rem);

  /* Max width */
  --max-w: 1200px;
}

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text-body);
  background: var(--color-bg-white);
  line-height: 1.7;
  font-size: var(--text-base);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.pc-only { display: none; }
@media (min-width: 768px) { .pc-only { display: inline; } }

/* ========================================
   Header (white bg, dark text)
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}

.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 0.5rem + 2.5vw, 3.75rem);
  height: 80px;
}

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

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-heading);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__nav ul,
.header__nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav li { display: inline-flex; }

.header__nav a {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-heading);
  text-decoration: none;
  padding: 8px 0;
  transition: color .2s;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.header__nav a:hover { color: var(--color-primary); }
.header__nav a:hover::after { transform: scaleX(1); }
.header__nav .current-menu-item > a,
.header__nav .current_page_item > a { color: var(--color-primary); }
.header__nav .current-menu-item > a::after,
.header__nav .current_page_item > a::after { transform: scaleX(1); }

/* Default desktop */
.header__burger { display: none; }

/* Mobile drawer */
@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 96px 32px 32px;
    box-shadow: -8px 0 24px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 90;
  }
  .header__nav.is-open { transform: translateX(0); }
  .header__nav a {
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }
  .header__nav a::after { display: none; }
  .header__burger { display: flex; }
}

/* Burger */
.header__burger {
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 100;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-heading);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero { height: clamp(420px, 80vh, 640px); }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.27) 0%,
    rgba(10, 22, 40, 0.47) 30%,
    rgba(10, 22, 40, 0.8) 55%,
    rgba(10, 22, 40, 0.96) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1rem, 0.5rem + 2.5vw, 7.5rem);
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__tag {
  display: inline-block;
  background: linear-gradient(90deg, transparent 0%, rgba(10, 22, 40, 0.53) 6%, rgba(10, 22, 40, 0.53) 92%, transparent 100%);
  padding: 12px 120px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.53);
}

@media (max-width: 767px) {
  .hero__tag { padding: 10px 40px; }
}

.hero__title-wrap {
  display: inline-block;
  background: linear-gradient(90deg, transparent 0%, rgba(10, 22, 40, 0.53) 6%, rgba(10, 22, 40, 0.53) 92%, transparent 100%);
  padding: clamp(10px, 1.5vw, 12px) clamp(40px, 10vw, 120px);
}

.hero__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(135deg, #c9a84c 0%, #f5e6a3 40%, #c9a84c 60%, #f5e6a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
  min-width: 360px;
}

@media (max-width: 767px) {
  .hero__title { font-size: 36px; }
  .hero__title-wrap { padding-left: 0; padding-right: 0; }
}

.hero__desc {
  font-size: 21px;
  font-weight: 500;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.9;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .hero__desc { font-size: 14px; }
}

.hero__fm-tag {
  display: inline-block;
  background: linear-gradient(90deg, transparent 0%, rgba(10, 22, 40, 0.53) 6%, rgba(10, 22, 40, 0.53) 92%, transparent 100%);
  padding: 12px 120px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.53);
}

@media (max-width: 767px) {
  .hero__fm-tag { padding: 10px 40px; }
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.7rem, 1vw, 0.875rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn--ghost-hero {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.93);
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.27);
}

.btn--ghost-hero:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--outline {
  background: #fff;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}


.btn--sm {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.btn--fill {
  flex: 1;
  justify-content: center;
}

.btn--rounded {
  border-radius: 100px;
  padding: 16px 40px;
  font-size: 15px;
}


.btn__icon {
  width: 16px;
  height: 16px;
}

.btn--sm .btn__icon {
  width: 13px;
  height: 13px;
}

/* ========================================
   Section
   ======================================== */
.section {
  padding: var(--section-py) 0;
}

.section--gray { background: var(--color-bg-section); }
.section--white { background: var(--color-bg-white); }
.section--mc { background: var(--color-bg-white); padding-bottom: 0; }

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section__tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 0;
}

.section__tag--dark { color: var(--color-text-heading); }
.section__tag--blue { color: var(--color-primary); }
.section__tag--purple { color: var(--color-accent-purple); }

.section__title {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text-heading);
  letter-spacing: 2px;
  line-height: 1;
}

@media (max-width: 767px) {
  .section__title { font-size: var(--text-2xl); }
}

.section__line {
  width: 320px;
  max-width: 80%;
  height: 3px;
  background: var(--color-primary);
  margin: 12px auto 0;
}

.section__line--wide {
  width: 400px;
  height: 2px;
}

.section__line--dark {
  background: var(--color-text-heading);
}

.section__desc {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* ========================================
   Schedule List
   ======================================== */
.schedule-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.schedule-list__item:last-child { border-bottom: none; }

.schedule-list__date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  min-width: clamp(140px, 15vw, 200px);
}

.schedule-list__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-heading);
  flex: 1;
}

@media (max-width: 767px) {
  .schedule-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ========================================
   Doctor Section (PIVOT style)
   ======================================== */
.section--doctors {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  --bg-font-size: clamp(3rem, 15vw, 10rem);
}

.doctor-deco {
  position: absolute;
  top: 14%;
  left: 3.7%;
  width: 96.3%;
  height: 82%;
  background: linear-gradient(90deg, #9cdbff 0%, #d2fff2 50%, #ffffff 100%);
  z-index: 0;
  pointer-events: none;
}

.doctor__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.doctor-header {
  position: relative;
  text-align: left;
  margin-bottom: var(--space-lg);
}

.doctor-header__bg {
  position: absolute;
  left: 0;
  top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: var(--bg-font-size);
  font-weight: 900;
  color: #f4f4f4;
  letter-spacing: 0.02em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.doctor-header__tag {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.doctor-header__title {
  position: relative;
  z-index: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text-heading);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

@media (max-width: 767px) {
  .doctor-header__title { font-size: var(--text-2xl); }
}

.doctor-header__desc {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-heading);
  margin-top: 0.75rem;
  line-height: 1.8;
}

/* Doctor grid */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .doctor-grid { grid-template-columns: repeat(4, 1fr); }
}

.doctor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.4s ease;
  filter: grayscale(20%);
}

.doctor-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.45) 0%,
    rgba(10, 22, 40, 0.05) 40%,
    transparent 100%
  );
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.doctor-card:hover .doctor-card__photo { transform: translateY(-4px); }
.doctor-card:hover .doctor-card__photo img { transform: scale(1.05); filter: grayscale(0%); }
.doctor-card:hover .doctor-card__overlay { opacity: 0.7; }

.doctor-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 0.75rem;
}

.doctor-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-heading);
  text-align: center;
}

.doctor-card__role {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
}

/* ========================================
   Sage Section (PIVOT style)
   ======================================== */
.section--sages {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.sage-deco {
  position: absolute;
  top: 15%;
  left: 0;
  width: 96.3%;
  height: 81%;
  background: linear-gradient(270deg, #8bc3f7 0%, #ddc2ff 50%, #ffffff 100%);
  z-index: 0;
  pointer-events: none;
}

.sage-header__bg {
  position: absolute;
  left: 0;
  top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: var(--bg-font-size, clamp(3rem, 15vw, 10rem));
  font-weight: 900;
  color: #f4f4f4;
  letter-spacing: 0.02em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.sage__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.sage-header {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.sage-header__tag {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-purple);
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
}

.sage-header__title {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text-heading);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

@media (max-width: 767px) {
  .sage-header__title { font-size: var(--text-2xl); }
}

.sage-header__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-heading);
  margin-top: 0.75rem;
  line-height: 1.8;
}

.sage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sage-grid { grid-template-columns: repeat(4, 1fr); }
}

.sage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sage-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
}

.sage-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sage-card:hover .sage-card__photo img { transform: scale(1.05); }

.sage-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 0.75rem;
}

.sage-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-heading);
}

.sage-card__role {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* More Button */
.section__more {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.btn--more {
  background: #fff;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 6px;
  gap: 8px;
}

.btn--more .btn__icon {
  width: 16px;
  height: 16px;
}

/* ========================================
   MC Card
   ======================================== */
.mc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.mc-card--reverse {
  background: #F5F6F8;
}

@media (min-width: 768px) {
  .mc-card {
    padding: 40px 80px;
  }

  .mc-card__inner {
    display: flex;
    align-items: stretch;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .mc-card--reverse .mc-card__inner {
    flex-direction: row-reverse;
  }
}

.mc-card__image {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .mc-card__image {
    width: 360px;
    height: 420px;
  }
}

.mc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-card__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  flex: 1;
}

.mc-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mc-card__company {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.mc-card__role {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-heading);
}

.mc-card__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.5;
}

.mc-card__body p {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.9;
}

.mc-card__body .mc-card__heading {
  margin-top: 1.5rem;
}

/* ========================================
   Archive Grid
   ======================================== */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
}

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

.archive-card__thumb {
  border-radius: 12px;
  overflow: hidden;
}

.archive-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s;
}

.archive-card:hover .archive-card__thumb img { transform: scale(1.05); }

.archive-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-heading);
  text-align: center;
}

.archive-card__btns {
  display: flex;
  gap: 8px;
}

.archive-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

/* ========================================
   Partner
   ======================================== */
.partner-desc {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.partner-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--partner-primary {
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  gap: 8px;
}

.btn--partner-outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  gap: 8px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-dark-nav);
  color: #fff;
  padding: 60px 0;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.footer__logo {
  font-size: 18px;
  font-weight: 700;
}

.footer__brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.53);
  line-height: 1.6;
  margin-top: 16px;
}

.footer__nav {
  display: flex;
  gap: 60px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav-col h4 {
  font-size: 13px;
  font-weight: 600;
}

.footer__nav-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.53);
  transition: color 0.2s;
}

.footer__nav-col a:hover { color: #fff; }

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.33);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.53);
  transition: color 0.2s;
}

.footer__social a:hover { color: #fff; }

.footer__social svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   Doctor Profile Page (single-doctor.php)
   ======================================== */

/* ページ全体: 固定ヘッダー分のオフセット */
.dr-profile {
  padding-top: 80px;
  padding-bottom: 0;
}

.dr-profile__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 2.5vw, 3.75rem) var(--section-px);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
}

.dr-profile__name {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.3;
}

/* 写真 + 情報の横並び */
.dr-profile__row {
  display: flex;
  gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  align-items: flex-start;
}

.dr-profile__photo {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 280px);
}

.dr-profile__img {
  width: 100%;
  aspect-ratio: 7 / 8;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* 右カラム: 情報 */
.dr-profile__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dr-profile__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-heading);
  line-height: 1.6;
}

.dr-profile__bio {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-body);
  line-height: 1.9;
}

.dr-profile__specialty {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.8;
}

/* アコーディオン */
.dr-profile__accordion {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.dr-profile__accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-heading);
}

.dr-profile__accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.dr-profile__accordion-btn[aria-expanded="true"] .dr-profile__accordion-icon {
  transform: rotate(180deg);
}

.dr-profile__accordion-body {
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.8;
}

.dr-profile__accordion-body:not([hidden]) {
  display: block;
}

/* HP / SNS リンク */
.dr-profile__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dr-profile__hp-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.dr-profile__hp-link:hover { opacity: 0.7; }

/* セクション区切り線 */
.dr-divider {
  height: 1px;
  background: var(--color-border);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* レスポンシブ: スマホ縦積み */
@media (max-width: 600px) {
  .dr-profile__row {
    flex-direction: column;
  }

  .dr-profile__photo {
    width: 100%;
    max-width: 260px;
  }
}

/* ========================================
   Doctor Archive Page (archive-doctor.php)
   ======================================== */
.archive-doctor-page {
  min-height: 60vh;
}

.archive-page-header {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
}

.archive-page-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 2.5vw, 3.75rem) var(--section-px) clamp(2rem, 1.5rem + 2.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.archive-page-header__tag {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-tag);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.archive-page-header__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-heading);
}

.archive-page-header__desc {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  line-height: 1.7;
}

.archive-page-body__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
}

/* doctor-grid の archive 専用拡張: 3〜4列 */
.doctor-grid--archive {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.75rem + 1.25vw, 1.5rem);
}

@media (min-width: 640px) {
  .doctor-grid--archive { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .doctor-grid--archive { grid-template-columns: repeat(4, 1fr); }
}

/* doctor-card をリンクにしたときのリセット */
a.doctor-card {
  display: block;
  color: inherit;
}

/* ページネーション */
.archive-pagination {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-heading);
  border: 1px solid var(--color-border);
  transition: background 0.2s, color 0.2s;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ============================
   Broadcast Detail
   ============================ */
.broadcast {
  background: #fff;
  padding: 60px 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.broadcast__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 48px;
}
.broadcast__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.broadcast__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.broadcast__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
}
.broadcast__date {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}
.broadcast__date i {
  color: #2C5F8D;
  width: 18px;
  height: 18px;
}
.broadcast__divider {
  height: 1px;
  background: #e5e5e5;
  width: 100%;
}
.broadcast__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.broadcast__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  white-space: pre-wrap;
  margin: 0;
}
.broadcast__cast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cast-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f9fb;
  border-radius: 8px;
  padding: 20px 24px;
}
.cast-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e5e5;
  flex-shrink: 0;
}
.cast-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cast-card__cat {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #2C5F8D;
}
.cast-card--sage .cast-card__cat {
  color: #8b5cf6;
}
.cast-card__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}
.cast-card__sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #888;
}
.broadcast__btn-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.broadcast__watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E74C3C;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s;
}
.broadcast__watch-btn:hover { opacity: .9; }

@media (max-width: 768px) {
  .broadcast { padding: 40px 20px; }
  .broadcast__title { font-size: 22px; }
  .broadcast__cast-grid { grid-template-columns: 1fr; }
}
.broadcast__coming-soon {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #888;
  background: #f7f9fb;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin: 0;
}

/* Broadcast video thumbnail (clickable) */
.broadcast__video--thumb {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
}
.broadcast__video--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.broadcast__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.broadcast__video--thumb:hover .broadcast__play {
  background: rgba(255,255,255,0.4);
  transform: translate(-50%, -50%) scale(1.05);
}
.broadcast__play i,
.broadcast__play svg {
  width: 40px;
  height: 40px;
  color: #b71c1c;
  stroke: #b71c1c;
  fill: #b71c1c;
}

/* Video Modal */
.video-modal[hidden] { display: none; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}
.video-modal__inner {
  position: relative;
  width: min(90vw, 1100px);
  aspect-ratio: 16 / 9;
  z-index: 1;
}
.video-modal__frame,
.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

/* Archive card thumb button */
.archive-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}
.archive-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .3s;
}
.archive-card__thumb:hover img { transform: scale(1.05); }
.archive-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-card__play i,
.archive-card__play svg { width: 24px; height: 24px; color: #b71c1c; stroke: #b71c1c; fill: #b71c1c; }

/* Archive reveal animation */
.archive-card--enter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.archive-card--enter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section coming soon */
.section__coming-soon {
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
  background: rgba(255,255,255,0.5);
  border: 1px dashed #ccc;
  border-radius: 12px;
  padding: 60px 24px;
  text-align: center;
  margin: 0;
}

/* ============================
   Philosophy Page
   ============================ */
.ph-hero {
  width: 100%;
  background: linear-gradient(160deg, #0A1628 0%, #0D2B4E 50%, #1A4A7A 100%);
  margin-top: 80px;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ph-hero__tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.53);
  margin: 0;
}
.ph-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}
.ph-hero__sub {
  width: 600px;
  max-width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin: 0;
}
.ph-body {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ph-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ph-item__num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #2C5F8D;
  opacity: 0.2;
  line-height: 1;
  margin: 0;
}
.ph-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.ph-item__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}
.ph-item__desc p { margin: 0; }
.ph-item__desc p + p { margin-top: 1em; }
.ph-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}
@media (max-width: 768px) {
  .ph-hero { padding: 60px 24px; }
  .ph-hero__title { font-size: 30px; }
  .ph-body { padding: 48px 24px; gap: 32px; }
  .ph-item__num { font-size: 40px; }
  .ph-item__title { font-size: 20px; }
}

/* Philosophy: post_content rendering with auto-numbered headings */
.ph-body--content {
  counter-reset: ph;
}
.ph-body--content > h2 {
  counter-increment: ph;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
  position: relative;
}
.ph-body--content > h2:first-child {
  border-top: 0;
  padding-top: 0;
}
.ph-body--content > h2::before {
  content: counter(ph, decimal-leading-zero);
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #2C5F8D;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.ph-body--content > p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 1em;
}
.ph-body--content > p:last-child { margin-bottom: 48px; }

/* ============================
   Partner Page
   ============================ */
.pt-hero {
  width: 100%;
  background: linear-gradient(160deg, #0A1628 0%, #0D2B4E 50%, #1A4A7A 100%);
  margin-top: 80px;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pt-hero__tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.pt-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}
.pt-hero__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  text-align: center;
}
.pt-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 32px;
  border: 1.5px solid #FFFFFF;
  border-radius: 100px;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.pt-hero__link:hover { background: #FFFFFF; color: #0D2B4E; }
.pt-hero__link svg, .pt-hero__link i { width: 16px; height: 16px; }

.pt-body {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.pt-content > h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
}
.pt-content > h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.pt-content > p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 1em;
}
.pt-content .pt-cards,
.pt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}
.pt-card {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pt-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.pt-card__list {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .pt-hero { padding: 60px 24px; }
  .pt-hero__title { font-size: 24px; }
  .pt-body { padding: 48px 24px; }
  .pt-cards { grid-template-columns: 1fr; gap: 16px; }
  .pt-card { padding: 24px; }
}

/* Contact Form 7 inside partner page */
.pt-content .wpcf7,
.cf7-form {
  margin: 24px 0 0;
}
.pt-content .wpcf7 p {
  margin: 0 0 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
}
.pt-content .wpcf7 label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.pt-content .wpcf7 input[type="text"],
.pt-content .wpcf7 input[type="email"],
.pt-content .wpcf7 input[type="tel"],
.pt-content .wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcde;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}
.pt-content .wpcf7 textarea { min-height: 140px; resize: vertical; }
.pt-content .wpcf7 input:focus,
.pt-content .wpcf7 textarea:focus {
  outline: 0;
  border-color: #2C5F8D;
  box-shadow: 0 0 0 3px rgba(44,95,141,0.15);
}
.pt-content .wpcf7 input[type="submit"] {
  display: inline-block;
  padding: 14px 48px;
  background: #2C5F8D;
  color: #fff;
  border: 0;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.pt-content .wpcf7 input[type="submit"]:hover { background: #1f4870; }

.schedule-list__link {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s, transform .2s;
}
.schedule-list__link:hover { opacity: .75; transform: translateX(4px); }

/* Doctor/Expert Videos Section */
.dr-videos {
  padding: 60px 120px;
  background: #fff;
}
.dr-videos__inner { max-width: 1100px; margin: 0 auto; }
.dr-videos__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.dr-videos__header svg, .dr-videos__header i {
  width: 24px; height: 24px; color: #2C5F8D;
}
.dr-videos__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.dr-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dr-video-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.dr-video-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.dr-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.dr-video-card:hover .dr-video-card__thumb img { transform: scale(1.05); }
.dr-video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dr-video-card__play svg, .dr-video-card__play i {
  width: 22px; height: 22px;
  color: #b71c1c; stroke: #b71c1c; fill: #b71c1c;
}
.dr-video-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}
.dr-video-card__date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
}
.dr-videos__more {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .dr-videos { padding: 48px 24px; }
  .dr-videos__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

a.doctor-card, a.sage-card { text-decoration: none; color: inherit; display: block; }

.dr-profile__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7f9fb;
  color: #2C5F8D;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.dr-profile__sns-link:hover { background: #2C5F8D; color: #fff; }
.dr-profile__sns-link svg, .dr-profile__sns-link i { width: 18px; height: 18px; }
.dr-profile__article {
  margin: 16px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
}
.dr-profile__article a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2C5F8D;
  text-decoration: none;
  font-weight: 600;
}
.dr-profile__article a:hover { text-decoration: underline; }
.dr-profile__article svg, .dr-profile__article i { width: 16px; height: 16px; }

.footer__nav-col li, .footer__nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav-col a {
  display: block;
  padding: 2px 0;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
  transition: color .2s;
}
.footer__nav-col a:hover { color: #fff; }

.header__logo--image img {
  display: block;
  height: 48px;
  width: auto;
}
