@charset "UTF-8";
/*
Theme Name: Jonan Clinic
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-brown: #2d1810;
  --secondary-brown: #4a3428;
  --accent-gold: #d4af37;
  --light-beige: #f5f1ed;
  --white: #ffffff;
  --maroon: #6b2737;
}

body {
  font-family: "Noto Serif JP", serif;
  color: var(--primary-brown);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ヘッダー */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* ロゴ（マーク + 医療法人社団優人会 / 優人クリニック城南） */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent-gold);
}
.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.logo-org {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--secondary-brown);
}

.logo-clinic {
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--primary-brown);
}

/* ナビゲーション（ドロップダウン付き） */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  text-decoration: none;
  color: var(--primary-brown);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-links > li > a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.sub-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 10;
}

.nav-links > li:hover > .sub-menu,
.nav-links > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 0.85rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--primary-brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.25s ease;
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.sub-menu li a:hover {
  background: var(--light-beige);
  color: var(--maroon);
  padding-left: 1.5rem;
}

/* Web予約・Web問診ボタン */
.header-actions {
  display: flex;
  gap: 0.7rem;
}

.header-btn {
  display: block;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.3rem;
  border: 1px solid var(--primary-brown);
  color: var(--primary-brown);
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: var(--primary-brown);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary-brown);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ヒーローセクション */
.hero {
  height: 790px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden; /* はみ出し非表示 */
}

/* YouTube iframe を背景全体に引き伸ばす */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリック無効 */
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* アスペクト比を維持しつつ全体を覆う */
  width: 100vw;
  height: 56.25vw; /* 16:9 → 幅の56.25% */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 → 高さの177.78% */
  transform: translate(-50%, -50%);
}

/* 暗めのオーバーレイ（文字を読みやすくする） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

/* コンテンツは最前面に */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 3rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}

/* お知らせ（INFORMATION）セクション：投稿(Posts)をループ表示 */
.info-section {
  background: var(--white);
  padding: 5rem 2rem 4rem;
}

.info-header {
  text-align: center;
  margin-bottom: 3rem;
}

.info-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  margin-bottom: 0.6rem;
}

.info-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--primary-brown);
  font-weight: 500;
}

.info-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  flex-wrap: wrap;
}

.info-item:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.info-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  min-width: 100px;
  flex-shrink: 0;
}

.info-body {
  flex: 1;
  min-width: 200px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.info-body a {
  color: var(--primary-brown);
  text-decoration: none;
}

.info-body a:hover {
  color: var(--maroon);
}

.info-more {
  font-size: 0.82rem;
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 1px solid var(--maroon);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.info-more:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.info-empty {
  text-align: center;
  color: var(--secondary-brown);
  font-size: 0.9rem;
  padding: 1rem 0 2rem;
}

/* 当院についてセクション */
.about-section {
  background: var(--light-beige);
  padding: 7rem 2rem;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.about-title {
  font-size: 1.7rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--primary-brown);
}

.about-lead {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--secondary-brown);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3.5rem 0 5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 1.3rem 2rem;
  border: 1px solid var(--accent-gold);
  border-radius: 999px;
  background: var(--white);
  font-family: "Shippori Mincho", serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--primary-brown);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  background: var(--white);
  padding: 3.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.about-detail h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: var(--primary-brown);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--accent-gold);
}

.about-detail p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--secondary-brown);
  margin-bottom: 1.2rem;
}

.equipment-list {
  list-style: none;
  columns: 2;
  column-gap: 2rem;
}

.equipment-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--primary-brown);
  break-inside: avoid;
}

.equipment-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.65rem;
  font-size: 0.42rem;
  color: var(--accent-gold);
}

.partner-hospital {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.partner-hospital-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.3rem;
}

.partner-hospital-name {
  font-size: 0.9rem;
  color: var(--primary-brown);
}

.about-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.about-links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--primary-brown);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.about-links a:hover {
  color: var(--maroon);
  border-color: var(--maroon);
}

/* 人間ドック・健康診断セクション */
.checkup-section {
  background: var(--primary-brown);
  padding: 7rem 2rem;
  color: var(--white);
}

.checkup-container {
  max-width: 1100px;
  margin: 0 auto;
}

.checkup-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.checkup-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.checkup-title {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.checkup-lead {
  max-width: 760px;
  margin: 2rem auto 3.5rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.9;
}

.checkup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.checkup-list {
  list-style: none;
}

.checkup-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.2rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.checkup-list li:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.checkup-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1.15rem;
  font-size: 0.45rem;
  color: var(--accent-gold);
}

.checkup-links {
  list-style: none;
}

.checkup-links li {
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.checkup-links li:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.checkup-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.2rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.checkup-links a::after {
  content: "›";
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.checkup-links a:hover {
  color: var(--accent-gold);
  padding-left: 0.6rem;
}

.checkup-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.checkup-cta-btn {
  display: block;
  min-width: 220px;
  text-align: center;
  padding: 1.1rem 2rem;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.checkup-cta-btn.primary {
  background: var(--accent-gold);
  color: var(--primary-brown);
}

.checkup-cta-btn.primary:hover {
  background: var(--white);
}

.checkup-cta-btn.secondary {
  border: 1px solid var(--white);
  color: var(--white);
}

.checkup-cta-btn.secondary:hover {
  background: var(--white);
  color: var(--primary-brown);
}

.checkup-contact {
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.checkup-contact a {
  color: var(--accent-gold);
  text-decoration: none;
}

.checkup-contact .divider {
  margin: 0 1rem;
  opacity: 0.5;
}

/* 新セクション群のレスポンシブ */
@media (max-width: 900px) {
  .about-detail-grid,
  .checkup-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-detail-grid {
    padding: 2.5rem 1.8rem;
  }
}
@media (max-width: 600px) {
  .info-section,
  .about-section,
  .checkup-section {
    padding: 4rem 1.2rem;
  }
  .info-item {
    flex-direction: column;
    gap: 0.4rem;
  }
  .info-date {
    min-width: auto;
  }
  .about-title,
  .checkup-title {
    font-size: 1.3rem;
  }
  .about-feature {
    min-width: 0;
    width: 100%;
  }
  .equipment-list {
    columns: 1;
  }
  .checkup-cta-btn {
    min-width: 0;
    width: 100%;
  }
}
/* コンセプトセクション */
.concept-section {
  background: var(--light-beige);
  padding: 8rem 2rem;
}

.concept-container {
  max-width: 1500px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.concept-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.concept-image {
  background: url("/img/intro.jpg") center/cover;
  min-height: 500px;
  position: relative;
}

.concept-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concept-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--secondary-brown);
  margin-bottom: 2rem;
}

.concept-title {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.concept-description {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--secondary-brown);
}

/* 専門医チーム スライダーセクション */
.team-section {
  background: var(--secondary-brown);
  padding: 8rem 2rem;
  position: relative;
}

.team-header {
  text-align: center;
  color: var(--white);
  margin-bottom: 5rem;
}

.team-icon {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.diamond {
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  transform: rotate(45deg);
}

.diamond:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-10px);
  }
}
.team-title {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

.slider-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.slider-controls {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--accent-gold);
  transform: rotate(45deg) scale(1.1);
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.slider-btn.prev::before {
  transform: translate(-40%, -50%) rotate(180deg);
}

.slider-btn.next::before {
  transform: translate(-60%, -50%) rotate(0deg);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-gold);
  transform: rotate(45deg) scale(1.3);
}

/* フッター */
footer {
  background: var(--primary-brown);
  color: var(--white);
  padding: 5rem 2rem 2rem;
}

.footer-content {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-map iframe {
  width: 100%;
}

.footer-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-diamond {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  transform: rotate(45deg);
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   下層ページ用スタイル
======================================== */
/* 下層ページ用ヘッダー（背景色あり） */
.page-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary-brown);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.page-header nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.page-header .logo-org,
.page-header .logo-clinic {
  color: var(--white);
}

.page-header .logo-mark {
  color: var(--accent-gold);
}

.page-header .nav-links > li > a {
  color: var(--white);
  border-color: rgba(212, 175, 55, 0.5);
}

.page-header .nav-links > li > a:hover {
  background: var(--accent-gold);
  color: var(--primary-brown);
}

.page-header .header-btn {
  color: var(--white);
  border-color: var(--white);
}

.page-header .header-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-brown);
}

.page-header .hamburger span {
  background: var(--white);
}

/* ページヒーロー */
.page-hero {
  height: 300px;
  background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
}

.page-hero-content {
  animation: fadeInUp 1s ease;
}

.page-hero-title {
  font-size: clamp(20px, 3.33vw, 35px);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.page-hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.3em;
  opacity: 0.9;
}

/* イントロセクション */
.intro-section {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-subtext {
  font-size: 0.95rem;
  color: var(--secondary-brown);
  line-height: 1.8;
}

/* サービスカード */
.services-section {
  padding: 6rem 2rem;
  background: var(--light-beige);
}

.services-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 4px;
}

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

.service-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.service-subtitle {
  font-size: 0.9rem;
  color: var(--secondary-brown);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--secondary-brown);
}

/* 医師紹介セクション */
.doctor-section {
  background: var(--primary-brown);
  padding: 6rem 2rem;
  color: var(--white);
}

.doctor-header {
  text-align: center;
  margin-bottom: 4rem;
}

.doctor-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.doctor-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  opacity: 0.9;
}

.doctor-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.doctor-image {
  width: 100%;
}

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

.doctor-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.doctor-name-section {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 1.5rem;
}

.doctor-role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.doctor-name {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.doctor-bio p {
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.9;
}

.credential-title {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.credential-list {
  list-style: none;
  font-size: 0.9rem;
  line-height: 2.2;
  opacity: 0.9;
}

.credential-list li {
  padding-left: 1rem;
  position: relative;
}

.credential-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.doctor-philosophy {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.doctor-philosophy p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 0.5rem;
}

.philosophy-sub {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* アクセス・初診セクション */
.access-section {
  background: var(--light-beige);
  padding: 6rem 2rem;
}

.access-header {
  text-align: center;
  margin-bottom: 4rem;
}

.access-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  color: var(--primary-brown);
}

.access-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--secondary-brown);
}

.flow-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.flow-step {
  text-align: center;
  position: relative;
}

.flow-number {
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.flow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.flow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-label {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--primary-brown);
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin: 0 1rem;
}

/* レスポンシブ（下層ページ） */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .flow-container {
    flex-wrap: wrap;
  }
  .flow-arrow {
    display: none;
  }
  .flow-step {
    width: calc(50% - 1rem);
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .page-hero {
    height: 180px;
    margin-top: 60px;
  }
  .page-hero-subtitle {
    font-size: 0.85rem;
  }
  .services-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .doctor-main-title,
  .access-main-title {
    font-size: 2rem;
  }
  .doctor-name {
    font-size: 1.5rem;
  }
  .flow-step {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .page-header nav {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }
  .page-header .header-actions {
    display: none;
  }
  .page-header .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--primary-brown);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
  }
  .page-header .nav-links.active {
    left: 0;
  }
  .page-header .hamburger {
    display: flex;
  }
  .intro-section {
    padding: 3rem 1.5rem;
  }
  .services-section {
    padding: 3rem 1.5rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .doctor-section {
    padding: 3rem 1.5rem;
  }
  .doctor-container {
    gap: 2rem;
  }
  .access-section {
    padding: 3rem 1.5rem;
  }
}
/* レスポンシブ */
@media (max-width: 768px) {
  .concept-content {
    grid-template-columns: 1fr;
  }
  .concept-image {
    min-height: 300px;
  }
  .concept-text {
    padding: 3rem 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .team-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 1200px) {
  nav {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }
  .header-actions {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links a {
    font-size: 1.1rem;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    height: 500px;
  }
  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
  .hero-subtitle {
    font-size: 0.8rem;
  }
  .concept-section,
  .team-section {
    padding: 4rem 1rem;
  }
  .concept-text {
    padding: 2rem 1.5rem;
  }
  .concept-title {
    font-size: 1.4rem;
  }
  .slide img {
    height: 400px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-info {
    gap: 2rem;
  }
}
/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background: #fff;
  backdrop-filter: blur(10px);
  transition: left 0.3s ease;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
  gap: 0;
  list-style: none;
}

.mobile-nav-links > li {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.2rem;
  text-decoration: none;
  color: var(--primary-brown);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-nav-links details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.2rem;
  cursor: pointer;
  list-style: none;
}

.mobile-nav-links details > summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-links details > summary > a {
  flex: 1;
  text-decoration: none;
  color: var(--primary-brown);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-nav-links details > summary .icon {
  flex-shrink: 0;
  margin-left: 0.8rem;
  padding: 0.3rem 0.2rem 0.3rem 1rem;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-gold);
  transition: transform 0.25s ease;
}

.mobile-nav-links details[open] > summary .icon {
  transform: rotate(45deg);
}

.mobile-nav-links details > ul {
  list-style: none;
  padding: 0 0 1rem 1rem;
}

.mobile-nav-links details > ul li a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--secondary-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--accent-gold);
}

.mobile-header-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 380px;
  margin: 1.5rem auto 2.5rem;
  padding: 0 1.5rem;
}

.mobile-header-actions .header-btn {
  padding: 0.9rem 1rem;
}

/* デスクトップではモバイルメニューを非表示 */
@media (min-width: 1201px) {
  .mobile-menu {
    display: none;
  }
}
/* モバイルでは通常のnav-linksを非表示 */
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.page_content_wrap {
  padding: 4rem 2rem;
  background: var(--white);
}
.page_content_wrap .container {
  max-width: 800px;
  margin: 0 auto;
}
.page_content_wrap .container p {
  margin-bottom: 10px;
}
.page_content_wrap .container p + h2 {
  margin-top: 10px;
}
.page_content_wrap .container h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #2c1a0e;
  text-align: center;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 30px;
}
.page_content_wrap .container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #c9a84c;
}
.page_content_wrap .container h2::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #c9a84c;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.page_content_wrap .container h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.page_content_wrap .container h3::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 1.4em;
  background: linear-gradient(to bottom, #c9a84c, transparent);
}
.page_content_wrap .container h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #c9a84c, transparent);
}
.page_content_wrap .container h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.page_content_wrap .container h4::before {
  content: "◆";
  color: #c9a84c;
  font-size: 0.55rem;
  flex-shrink: 0;
  line-height: 1;
}
.page_content_wrap .container ul.list-d {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.page_content_wrap .container ul.list-d li {
  position: relative;
  padding: 13px 0 13px 28px;
  font-size: 0.9rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.page_content_wrap .container ul.list-d li:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.page_content_wrap .container ul.list-d li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.42rem;
  color: #c9a84c;
  line-height: 1;
}

.mb30 {
  margin-bottom: 30px;
}

/* お知らせ一覧リンク・アーカイブページ */
.info-archive-link {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--primary-brown);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent-gold);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.info-archive-link:hover {
  color: var(--maroon);
  border-color: var(--maroon);
}

.archive-info-section {
  padding-top: 4rem;
}

.archive-pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--primary-brown);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.archive-pagination .page-numbers.current {
  background: var(--primary-brown);
  border-color: var(--primary-brown);
  color: var(--white);
}

/* よくある質問セクション（下層ページへのリンクボタン） */
.faq-section {
  background: var(--light-beige);
  padding: 7rem 2rem;
  text-align: center;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.faq-heading-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--primary-brown);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.faq-lead {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--secondary-brown);
  margin-bottom: 2.5rem;
}

.faq-link-btn {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: var(--accent-gold);
  color: var(--primary-brown);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.faq-link-btn:hover {
  background: var(--primary-brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 24, 16, 0.2);
}

/* お問合せセクション（footer.php内・全ページ共通） */
.contact-section {
  background: var(--primary-brown);
  padding: 6.5rem 2rem 0;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.contact-heading-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-lead {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.contact-form-btn {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: var(--accent-gold);
  color: var(--primary-brown);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.contact-form-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-phone {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--white);
  opacity: 0.85;
}

.contact-phone a {
  display: inline-block;
  margin-left: 0.8rem;
  padding: 0.55rem 1.8rem;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.contact-phone a:hover {
  background: var(--accent-gold);
  color: var(--primary-brown);
}

@media (max-width: 480px) {
  .contact-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .contact-phone a {
    margin-left: 0;
  }
}
.privacy-block {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.privacy-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.privacy-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.privacy-links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.privacy-links a:hover {
  color: var(--accent-gold);
}

/* よくある質問・お問合せセクションのレスポンシブ */
@media (max-width: 600px) {
  .faq-section,
  .contact-section {
    padding: 4rem 1.2rem;
  }
  .faq-heading-title,
  .contact-heading-title {
    font-size: 1.25rem;
  }
  .privacy-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
/* お問い合わせフォーム（page-contact.php） */
.contact-form-section {
  padding: 5rem 2rem 7rem;
  background: var(--white);
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-intro {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--secondary-brown);
  margin-bottom: 3rem;
}

.req-badge {
  display: inline-block;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  vertical-align: middle;
  font-style: normal;
}

.contact-form .form-row {
  margin-bottom: 2.2rem;
}

.contact-form label {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--primary-brown);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.contact-form input[type=text],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--primary-brown);
  transition: border-color 0.3s ease;
}

.contact-form input[type=text]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--secondary-brown);
}

.contact-form .form-agree {
  margin: 3rem 0 2.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-form .form-agree p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--secondary-brown);
  margin-bottom: 1.2rem;
}

.contact-form .form-agree a {
  color: var(--maroon);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--primary-brown);
  cursor: pointer;
  margin-bottom: 0;
}

.form-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent-gold);
}

.contact-form .form-submit {
  text-align: center;
  margin-top: 3rem;
}

.contact-form .form-submit input[type=submit] {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: var(--primary-brown);
  color: var(--white);
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .form-submit input[type=submit]:hover {
  background: var(--secondary-brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 24, 16, 0.2);
}

@media (max-width: 600px) {
  .contact-form-section {
    padding: 3.5rem 1.2rem 5rem;
  }
}
/* よくある質問アコーディオン（固定ページにそのまま貼り付け用） */
.accordion_wrap dl {
  margin: 0;
}

.accordion_wrap dl > div {
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.accordion_wrap dl > div:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.accordion_wrap dt {
  margin: 0;
  padding: 1.3rem 2.4rem 1.3rem 0.2rem;
  position: relative;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--primary-brown);
  font-weight: 500;
  transition: color 0.3s ease;
}

.accordion_wrap dt:hover {
  color: var(--maroon);
}

.accordion_wrap dt .bold {
  color: var(--maroon);
  font-weight: 600;
}

.accordion_wrap dt .icon {
  position: absolute;
  top: 1.25rem;
  right: 0.2rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion_wrap dl > div.is-open dt {
  color: var(--maroon);
}

.accordion_wrap dl > div.is-open dt .icon {
  transform: rotate(45deg);
}

.accordion_wrap dd {
  margin: 0 0 1.6rem 0.2rem;
  padding: 0.1rem 1.2rem 0.1rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--secondary-brown);
  border-left: 2px solid var(--accent-gold);
}

.accordion_wrap dd a {
  color: var(--maroon);
  text-decoration: underline;
}

.accordion_wrap dd a:hover {
  color: var(--accent-gold);
}

@media (max-width: 600px) {
  .accordion_wrap dt {
    padding: 1.1rem 2.2rem 1.1rem 0;
    font-size: 0.9rem;
  }
  .accordion_wrap dd {
    padding-left: 1rem;
    font-size: 0.85rem;
  }
}
/* 健診項目比較表（固定ページにそのまま貼り付け用） */
.table_wrap {
  margin-bottom: 30px;
}
.table_wrap li {
  list-style: none;
}

.table_wrap table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: var(--white);
}

.table_wrap th,
.table_wrap td {
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.7rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  color: var(--primary-brown);
  overflow-wrap: break-word;
  word-break: break-word;
}

.table_wrap td.no_border {
  border: none;
  background: transparent;
}

.table_wrap th.teiki,
.table_wrap th.yatoire {
  background: var(--primary-brown);
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  width: 18%;
}

.table_wrap td.sub_head {
  background: var(--light-beige);
  color: var(--primary-brown);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  letter-spacing: 0.05em;
  padding-left: 1rem;
}

.table_wrap td.t_left {
  text-align: left;
  padding-left: 1rem;
}

.table_wrap td.t_center {
  text-align: center;
}

.table_wrap td.check {
  font-size: 1rem;
  font-weight: 600;
}

.table_wrap td.check span {
  font-size: 0.62rem;
  font-weight: 400;
  vertical-align: super;
  margin-left: 1px;
  color: var(--secondary-brown);
}

.table_wrap td.check span.note {
  display: inline-block;
  vertical-align: baseline;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0 1px 0 0;
}

.table_wrap .td_col2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  line-height: 1.3;
}

.table_wrap .td_col2 div:last-child {
  display: flex;
  align-items: baseline;
}

@media (max-width: 600px) {
  .table_wrap table {
    font-size: 0.78rem;
  }
  .table_wrap th,
  .table_wrap td {
    padding: 0.55rem 0.45rem;
  }
}
/* 料金・健診内容比較表（固定ページにそのまま貼り付け用） */
.price_wrap {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 0.85rem;
  background: var(--white);
}

.price_wrap th,
.price_wrap td {
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.65rem 0.6rem;
  line-height: 1.5;
  color: var(--primary-brown);
  overflow-wrap: break-word;
  word-break: break-word;
  vertical-align: middle;
}

.price_wrap th {
  background: var(--light-beige);
  text-align: left;
  font-weight: 500;
  font-size: 0.82rem;
}

.price_wrap td {
  text-align: center;
  font-weight: 600;
}

/* プラン名ヘッダー行（法定健診・雇入健診・生活習慣病・人間ドック） */
.price_wrap tr:nth-child(2) th {
  background: var(--primary-brown);
  color: var(--white);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* 自己負担金額行（複数行にまたがる場合は tr class="kenpo_tbl" を使用） */
.price_wrap tr.kenpo_tbl th,
.price_wrap tr.kenpo_tbl td {
  background: #f5f1ed;
  font-weight: 700;
  font-size: 0.95rem;
}

/* スペーサー行 */
.price_wrap tr:first-child td {
  padding: 0;
  height: 6px;
}

@media (max-width: 600px) {
  .price_wrap {
    font-size: 0.76rem;
  }
  .price_wrap th,
  .price_wrap td {
    padding: 0.5rem 0.4rem;
    font-size: 0.76rem;
  }
  .price_wrap tr.kenpo_tbl th,
  .price_wrap tr.kenpo_tbl td {
    font-size: 0.82rem;
  }
}
.option_wrap {
  background: var(--light-beige);
  font-size: 0.85rem;
  margin-bottom: 30px;
}

.option_wrap th,
.option_wrap td {
  color: var(--primary-brown);
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-word;
}

.option_wrap th.price_title {
  background: var(--primary-brown);
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.option_wrap tbody tr:not(:first-child) th {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.option_wrap tbody tr:not(:first-child) td {
  font-size: 0.85rem;
}

.option_wrap small {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--secondary-brown);
}

@media (max-width: 600px) {
  .option_wrap,
  .option_wrap th,
  .option_wrap td {
    font-size: 0.78rem;
  }
  .option_wrap th.price_title {
    font-size: 0.74rem;
  }
  .option_wrap th,
  .option_wrap td {
    padding: 10px !important;
  }
}
/* レディース検査などの縦型2カラムレイアウト（固定ページにそのまま貼り付け用） */
.col_vertical_wrap {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.col_vertical1 {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-brown);
  padding: 2rem 1rem;
  text-align: center;
}

.col_vertical1 h2 {
  color: var(--white) !important;
  letter-spacing: 0.15em;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
  font-size: 20px !important;
}

.col_vertical2 {
  flex: 1;
  min-width: 0;
  background: var(--white);
  padding: 2rem 2.2rem;
}

.col_vertical2 > .note {
  font-size: 0.8rem;
  color: var(--maroon);
  letter-spacing: 0.02em;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
}

.col_vertical2 .item {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.2rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.col_vertical2 .item:first-of-type {
  padding-top: 0;
}

.col_vertical2 .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.col_vertical2 .item h3 {
  grid-column: 1;
  font-family: "Shippori Mincho", serif;
  font-size: 1.02rem;
  color: var(--primary-brown);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
}

.col_vertical2 .item .price {
  grid-column: 2;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.col_vertical2 .item .type {
  grid-column: 1/-1;
  margin: 0.8rem 0 0;
  display: inline-block;
  width: fit-content;
  background: var(--light-beige);
  color: var(--secondary-brown);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.8rem;
}

.col_vertical2 .item .text {
  grid-column: 1/-1;
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--secondary-brown);
}

.col_vertical2 .item .text span {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--maroon);
}

@media (max-width: 700px) {
  .col_vertical_wrap {
    flex-direction: column;
  }
  .col_vertical1 {
    flex-basis: auto;
    padding: 1.2rem;
  }
  .col_vertical1 h2 {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }
  .col_vertical2 {
    padding: 1.6rem 1.3rem;
  }
  .col_vertical2 .item {
    grid-template-columns: 1fr;
  }
  .col_vertical2 .item .price {
    grid-column: 1;
    margin-top: 0.3rem;
  }
}
.flow dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  counter-reset: flow-step;
}

.flow dl > div {
  flex: 1;
  min-width: 180px;
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
  counter-increment: flow-step;
}

.flow dl > div:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 18px;
  right: -6px;
  font-size: 1.3rem;
  font-weight: 300;
  color: #d4af37;
}

.flow dt {
  margin: 0 0 1rem;
}

.flow dt::before {
  content: counter(flow-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #2d1810;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.flow dt span {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.05rem;
  color: #2d1810;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.flow dd {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.9;
  color: #4a3428;
}

@media (max-width: 760px) {
  .flow dl {
    flex-direction: column;
    gap: 2.5rem;
  }
  .flow dl > div {
    padding: 0 1rem;
  }
  .flow dl > div:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=style.css.map */
