/* ============================================
   リセットCSS・基本設定
============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #3D3030;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   余白・デザイン変数
============================================ */

:root {
  --space-xs:  8px;   /* 極小：アイコンとテキストの間など */
  --space-sm:  16px;  /* 小：要素内の余白 */
  --space-md:  32px;  /* 中：要素間の余白 */
  --space-lg:  48px;  /* 大：セクション内の余白 */
  --space-xl:  70px;  /* 特大：セクション間の余白 */
}

/* 病院名 */
.header-clinic-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.clinic-main {
  font-size: 28px;
  font-weight: 800;
  color: #3D3030;
  letter-spacing: 0.04em;
  font-family: 'Kosugi Maru', sans-serif;
}

.clinic-sub {
  font-size: 11px;
  color: #888078;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================
   ヘッダー
============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #F0EBE3;
}

/* 上段 */
.header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 36px;
}

/* ロゴ */
.header-logo img {
  height: 54px;
  width: auto;
}

/* 営業時間 */
.header-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  border-right: 1px solid #F0EBE3;
  padding-right: 16px;
}

.hours-label {
  font-size: 10px;
  color: #888078;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hours-time {
  font-size: 11px;
  font-weight: 600;
  color: #3D3030;
  white-space: nowrap;
}

/* 電話番号エリア */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.tel-label {
  font-size: 10px;
  color: #888078;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.tel-number {
  font-size: 22px;
  font-weight: 800;
  color: #E8829A;
  letter-spacing: 0.04em;
}

/* ボタン */
.btn-line {
  display: inline-flex;
  align-items: center;
  background: #06C755;
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: opacity 0.2s;
}

.btn-line:hover {
  opacity: 0.85;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  background: #E8829A;
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: opacity 0.2s;
}

.btn-reserve:hover {
  opacity: 0.85;
}

/* グローバルナビ */
.header-nav {
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.header-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #3D3030;
  padding: 10px 28px;
  transition: background 0.2s;
}

.header-nav a:hover {
  background: #FDF0F3;
}

.nav-ja {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-en {
  font-size: 10px;
  font-weight: 600;
  color: #E8829A;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0.06em;
}

/* ドロップダウン */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 160px;
  z-index: 200;
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #3D3030;
  border-bottom: 1px solid #F0EBE3;
  transition: background 0.2s, color 0.2s;
}

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

.dropdown li a:hover {
  background: #FDF0F3;
  color: #E8829A;
}

.has-dropdown:hover .dropdown {
  display: block;
}

/* アンカーリンクの位置調整 */
#general,
#prevention,
#dental,
#exam {
  scroll-margin-top: 250px;
}

/* ============================================
   ヒーローエリア
============================================ */

.hero {
  margin-top: 108px;
  position: relative;
  height: 620px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.hero-catch {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.hero-catch-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero-catch-text p {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  color: #3D3030;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  line-height: 1;
  font-family: 'Kosugi Maru', sans-serif;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(232, 130, 154, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
}

.hero-badge i {
  font-size: 28px;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

/* ============================================
   インフォメーション
============================================ */

.info {
  padding: 70px 40px;
  background: #FAF6F0;
}

.info-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* セクションタイトル */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-en {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #E8829A;
  margin-bottom: 8px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #6B4C3B;
  letter-spacing: 0.08em;
}

/* 左右レイアウト */
.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* 左側 */
.info-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.info-left img {
  width: 300px;
  margin: 0 auto 16px;
}

.info-clinic-name {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #3D3030;
  font-family: 'Kosugi Maru', sans-serif;
  margin-bottom: 20px;
}

.info-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 16px;
  width: 100%;
  align-self: stretch;
}

.info-detail dt {
  font-weight: 700;
  color: #6B4C3B;
  white-space: nowrap;
}

.info-detail dd {
  color: #3D3030;
  font-weight: 500;
  line-height: 1.7;
}

/* 完全予約制バッジ */
.reserve-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.reserve-badge::before,
.reserve-badge::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E8829A;
  max-width: 120px;
}

.reserve-badge span {
  font-size: 18px;
  font-weight: 800;
  color: #E8829A;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.info-tel-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 45px;
  width: 100%;
}

.info-tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tel-reserve-label {
  font-size: 16px;
  color: #888078;
  font-weight: 600;
}

.tel-reserve-number {
  font-size: 30px;
  font-weight: 600;
  color: #3D3030;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn-info-line {
  display: block;
  background: #06C755;
  color: #ffffff;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  transition: opacity 0.2s;
  width: 100%;
}

.btn-info-line:hover { opacity: 0.85; }

.btn-info-online {
  display: block;
  background: #ffffff;
  color: #3B82F6;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  border: 2px solid #3B82F6;
  transition: opacity 0.2s;
  width: 100%;
}

.btn-info-online:hover { opacity: 0.85; }

/* 右側：時間表 */
.hours-title {
  font-size: 16px;
  font-weight: 800;
  color: #E8829A;
  margin-bottom: 10px;
  margin-top: 24px;
}

.hours-title:first-child {
  margin-top: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 8px;
}

.hours-table th {
  background: #FAF6F0;
  color: #3D3030;
  font-weight: 700;
  padding: 6px 10px;
  text-align: center;
  border-bottom: 1px solid #F0EBE3;
}

.hours-table td {
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid #F0EBE3;
  color: #E8829A;
  font-weight: 600;
}

.hours-table td:first-child {
  text-align: left;
  white-space: nowrap;
  color: #3D3030;
}

.mark-dot {
  color: #E8829A;
  font-size: 16px;
}

.info-reserve {
  max-width: 600px;
  margin: 32px auto 0;
}

/* ============================================
   駐車場
============================================ */

.parking {
  padding: 70px 40px;
  background: #ffffff;
}

.parking-inner {
  max-width: 960px;
  margin: 0 auto;
}

.parking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* 左側 */
.parking-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parking-highlight {
  background: #E8829A;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
}

.parking-text {
  font-size: 15px;
  line-height: 1.9;
  color: #3D3030;
  font-weight: 500;
}

.parking-photo-front {
  margin-top: 90px; /* この数値を調整して高さを揃えてください */
}

/* 右側 */
.parking-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 写真共通 */
.parking-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.parking-caption {
  font-size: 14px;
  font-weight: 700;
  color: #6B4C3B;
  margin-top: 8px;
  text-align: center;
}

/* ============================================
   支払い方法
============================================ */

.payment {
  padding: 70px 40px 36px;
  background: #FAF6F0;
}

.payment-inner {
  max-width: 960px;
  margin: 0 auto;
}

.payment-desc {
  text-align: center;
  font-size: 15px;
  color: #3D3030;
  font-weight: 500;
  margin-bottom: 40px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.payment-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
}

.payment-box-title {
  background: #E8829A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.payment-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   バナーリンク
============================================ */

.banners {
  padding: 36px 40px 70px;
  background: #FAF6F0;
}

.banners-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.banner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.banner-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.banner-item:hover img {
  opacity: 0.8;
}

.banner-with-label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner-label {
  font-size: 15px;
  font-weight: 700;
  color: #3D3030;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8829A;
  flex-shrink: 0;
}

/* ============================================
   お知らせ（Instagram）
============================================ */

.news {
  padding: 70px 40px;
  background: #ffffff;
}

.news-inner {
  max-width: 960px;
  margin: 0 auto;
}

.news-desc {
  text-align: center;
  font-size: 15px;
  color: #3D3030;
  font-weight: 500;
  margin-bottom: 40px;
}

/* ============================================
   ごあいさつ
============================================ */

.greeting {
  padding: 70px 40px;
  background: #FAF6F0;
}

.greeting-inner {
  max-width: 960px;
  margin: 0 auto;
}

.greeting-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

/* 写真 */
.greeting-photo img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* テキスト */
.greeting-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.greeting-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #3D3030;
  font-weight: 500;
}

.greeting-sig {
  font-size: 16px;
  font-weight: 700;
  color: #6B4C3B;
  text-align: right;
  margin-top: 8px;
}

/* ボタン */
.btn-greeting {
  display: block;
  background: #E8829A;
  color: #ffffff;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  margin-top: 8px;
  transition: opacity 0.2s;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.btn-greeting:hover {
  opacity: 0.85;
}

/* ============================================
   診療案内
============================================ */

.medical {
  padding: 70px 40px;
  background: #ffffff;
}

.medical-inner {
  max-width: 960px;
  margin: 0 auto;
}

.animals-note {
  text-align: center;
  font-size: 13px;
  color: #888078;
  font-weight: 500;
  margin-top: 24px;
  line-height: 1.8;
}

.medical-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.medical-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  color: #E8829A;
  padding: 24px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #E8829A;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}

.medical-btn:hover {
  background: #E8829A;
  color: #ffffff;
}

.medical-btn-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.medical-btn-left i {
  font-size: 22px;
}

.medical-btn-arrow {
  font-size: 12px;
}

/* ============================================
   その他サービス
============================================ */

.service {
  padding: 70px 40px;
  background: #ffffff;
}

.service-inner {
  max-width: 960px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.service-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #3D3030;
  text-align: center;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #E8829A;
  border-top: 2px dashed #E8829A;
  padding-top: 8px;
  transition: opacity 0.2s;
}

.service-link:hover {
  opacity: 0.7;
}

.service-link i {
  font-size: 10px;
}

.service-alt {
  background: #ffffff;
}

.service-alt .service-grid {
  grid-template-columns: repeat(3, 1fr);
}


/* ============================================
   併設カフェ
============================================ */

.cafe {
  padding: 70px 40px;
  background: #FAF6F0;
}

.cafe-inner {
  max-width: 960px;
  margin: 0 auto;
}

.cafe-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
}

.cafe-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.cafe-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cafe-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #3D3030;
  font-weight: 500;
}

.btn-cafe {
  display: block;
  background: #E8829A;
  color: #ffffff;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  transition: opacity 0.2s;
  margin-top: 8px;
}

.btn-cafe:hover {
  opacity: 0.85;
}

/* ============================================
   フッター
============================================ */

footer {
  background: #ffffff;
}

/* 地図 */
.footer-map {
  width: 100%;
  height: 400px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 情報エリア */
.footer-info {
  background: #FAF6F0;
  padding: 50px 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

/* 左側 */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-left img {
  width: 280px;
  height: auto;
}

.footer-clinic-name {
  font-size: 20px;
  font-weight: 800;
  color: #3D3030;
  font-family: 'Kosugi Maru', sans-serif;
  text-align: center;
}

.footer-address {
  font-size: 14px;
  color: #888078;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
}

.footer-tel {
  font-size: 22px;
  font-weight: 800;
  color: #E8829A;
  letter-spacing: 0.04em;
}

/* 右側：診療時間 */
.footer-hours-title {
  font-size: 14px;
  font-weight: 800;
  color: #E8829A;
  margin: 20px 0 8px;
}

.footer-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.footer-hours th {
  background: #FAF6F0;
  color: #3D3030;
  font-weight: 700;
  padding: 5px 8px;
  text-align: center;
  border-bottom: 1px solid #F0EBE3;
}

.footer-hours td {
  padding: 6px 8px;
  text-align: center;
  border-bottom: 1px solid #F0EBE3;
  color: #E8829A;
  font-weight: 600;
}

.footer-hours td:first-child {
  text-align: left;
  white-space: nowrap;
  color: #3D3030;
}

/* ナビメニュー */
.footer-nav {
  background: #ffffff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid #F0EBE3;
  border-bottom: 1px solid #F0EBE3;
}

.footer-nav a {
  color: #3D3030;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 20px;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.footer-nav a:hover {
  color: #E8829A;
}

/* コピーライト */
.footer-copy {
  background: #E8829A;
  text-align: center;
  padding: 14px;
}

.footer-copy p {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================
   ページタイトルエリア
============================================ */

.page-hero {
  margin-top: 108px;
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/page-hero-about.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.2;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #3D3030;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ============================================
   医院概要
============================================ */

.clinic-info {
  padding: 70px 40px;
  background: #ffffff;
}

.clinic-info-inner {
  max-width: 960px;
  margin: 0 auto;
}

.clinic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.clinic-table tr {
  border-bottom: 1px dashed #F0EBE3;
}

.clinic-table th {
  width: 200px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  color: #6B4C3B;
  vertical-align: top;
  white-space: nowrap;
}

.clinic-table td {
  padding: 20px 24px;
  color: #3D3030;
  font-weight: 500;
  line-height: 1.9;
  vertical-align: top;
}

/* ============================================
   設備
============================================ */

.equipment {
  padding: 70px 40px;
  background: #FFF5F7;
}

.equipment-inner {
  max-width: 960px;
  margin: 0 auto;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.equipment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.equipment-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.equipment-name {
  font-size: 16px;
  font-weight: 700;
  color: #3D3030;
  text-align: center;
}

.equipment-line {
  display: block;
  width: 100%;
  height: 2px;
  border-top: 2px dashed #E8829A;
}

/* ============================================
   院内風景
============================================ */

.interior {
  padding: 70px 40px;
  background: #ffffff;
}

.interior-inner {
  max-width: 960px;
  margin: 0 auto;
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}

/* ============================================
   スタッフ紹介
============================================ */

.staff {
  padding: 48px 40px 70px;
  background: #FAF6F0;
}

.staff-inner {
  max-width: 960px;
  margin: 0 auto;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 70px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.staff-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F0EBE3;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.staff-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.staff-role {
  font-size: 13px;
  font-weight: 600;
  color: #E8829A;
}

.staff-name {
  font-size: 16px;
  font-weight: 800;
  color: #3D3030;
}

/* その他スタッフ */
.staff-others {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px dashed #F0EBE3;
}

.staff-others-title {
  font-size: 18px;
  font-weight: 800;
  color: #6B4C3B;
  text-align: center;
  margin-bottom: 24px;
}

.staff-others-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.staff-others-table tr {
  border-bottom: 1px solid #F0EBE3;
}

.staff-others-table td {
  padding: 14px 16px;
  color: #888078;
  font-weight: 500;
}

.staff-others-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #3D3030;
}

/* ============================================
   スタッフ集合写真
============================================ */

.staff-hero {
  background: #FAF6F0;
}

.staff-hero-img {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.staff-hero-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 500px;
}

/* ============================================
   診療動物
============================================ */

.animals {
  padding: 70px 40px;
  background: #FAF6F0;
}

.animals-inner {
  max-width: 960px;
  margin: 0 auto;
}

.animals-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.animals-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.animals-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animals-icon i {
  font-size: 80px;
  color: #E8829A;
}

.animals-name {
  font-size: 20px;
  font-weight: 800;
  color: #3D3030;
  letter-spacing: 0.08em;
}

/* ============================================
   診療内容一覧
============================================ */

.medical-list {
  padding: 70px 40px;
  background: #ffffff;
}

.medical-list-inner {
  max-width: 960px;
  margin: 0 auto;
}

.medical-list-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.medical-list-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #F0EBE3;
}

.medical-list-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.medical-list-card:nth-child(even) .medical-list-img {
  order: 2;
}

.medical-list-card:nth-child(even) .medical-list-body {
  order: 1;
}

.medical-list-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.medical-list-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  order: -1;
}

.medical-list-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: #3D3030;
  display: flex;
  align-items: center;
  gap: 10px;
}

.medical-list-body h3::before {
  content: '\f1b0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: #E8829A;
}

.medical-list-body p {
  font-size: 15px;
  line-height: 2;
  color: #3D3030;
  font-weight: 500;
}

.btn-detail {
  display: block;
  background: #E8829A;
  color: #ffffff;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  margin-top: 8px;
  transition: opacity 0.2s;
  width: 280px;
}

.btn-detail:hover {
  opacity: 0.85;
}

.btn-detail i {
  font-size: 10px;
  margin-left: 8px;
}

/* ============================================
   皮膚科専門外来
============================================ */

.specialist-main {
  padding: 70px 40px;
  background: #ffffff;
}

.specialist-inner {
  max-width: 960px;
  margin: 0 auto;
}

.specialist-intro {
  font-size: 16px;
  line-height: 1.9;
  color: #3D3030;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

/* 写真2枚 */
.specialist-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.specialist-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

/* 概要テーブル */
.specialist-table {
  margin-bottom: 48px;
}

.specialist-table small {
  font-size: 13px;
  color: #888078;
  line-height: 1.8;
}

/* 担当医 */
.doctor-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.doctor-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.doctor-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  background: #F0EBE3;
}

.doctor-name-card {
  font-size: 16px;
  font-weight: 800;
  color: #3D3030;
  text-align: center;
}

.doctor-qualifications {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  background: #FAF6F0;
  padding: 20px 24px;
  border-radius: 12px;
}

.doctor-qualifications p {
  font-size: 15px;
  font-weight: 700;
  color: #3D3030;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doctor-qualifications i {
  color: #E8829A;
  font-size: 16px;
}

.doctor-career-title {
  font-size: 16px;
  font-weight: 800;
  color: #6B4C3B;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid #E8829A;
}

.doctor-career {
  font-size: 15px;
  line-height: 2;
  color: #3D3030;
  font-weight: 500;
}

/* ============================================
   避妊・去勢
============================================ */

.surgery {
  padding: 70px 40px;
  background: #ffffff;
}

.surgery-inner {
  max-width: 960px;
  margin: 0 auto;
}

.surgery-intro {
  font-size: 16px;
  line-height: 2;
  color: #3D3030;
  font-weight: 500;
  margin-bottom: 48px;
}

/* 手術とは */
.surgery-box {
  background: #FAF6F0;
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 48px;
}

.surgery-box-title {
  font-size: 18px;
  font-weight: 800;
  color: #6B4C3B;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid #E8829A;
}

/* セクション */
.surgery-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px dashed #F0EBE3;
}

.surgery-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.surgery-section-title {
  font-size: 22px;
  font-weight: 800;
  color: #3D3030;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.surgery-section-title i {
  color: #E8829A;
}

.surgery-sub-title {
  font-size: 17px;
  font-weight: 800;
  color: #6B4C3B;
  margin: 32px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #E8829A;
}

/* テキスト */
.surgery-text {
  font-size: 15px;
  line-height: 1.9;
  color: #3D3030;
  font-weight: 500;
  margin-bottom: 8px;
}

.surgery-note {
  font-size: 14px;
  line-height: 1.9;
  color: #888078;
  font-weight: 500;
  margin-top: 8px;
}

/* リスト */
.surgery-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px 24px;
  margin: 12px 0;
}

.surgery-list li {
  font-size: 15px;
  color: #3D3030;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.surgery-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #E8829A;
  font-weight: 800;
}

/* メリットグリッド */
.surgery-merit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 16px 0;
}

.surgery-merit-card {
  background: #FAF6F0;
  border-radius: 12px;
  padding: 24px;
}

.surgery-merit-label {
  font-size: 15px;
  font-weight: 800;
  color: #E8829A;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F0EBE3;
}

/* ============================================
   トリミング
============================================ */

.trimming {
  padding: 70px 40px;
  background: #ffffff;
}

.trimming-inner {
  max-width: 960px;
  margin: 0 auto;
}

.trimming-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #3D3030;
  font-weight: 500;
  margin-bottom: 32px;
}

.trimming-note {
  font-size: 13px;
  color: #888078;
  font-weight: 500;
  margin-top: 12px;
}

.trimming-text {
  font-size: 15px;
  line-height: 2;
  color: #3D3030;
  font-weight: 500;
}

/* 料金表 */
.trimming-table {
  margin-bottom: 16px;
}

.trimming-table thead th {
  background: #E8829A;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
}

.trimming-table tbody td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #F0EBE3;
  font-size: 15px;
}

.trimming-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: #6B4C3B;
}

/* ギャラリー */
.trimming-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trimming-gallery-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.trimming-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trimming-gallery-name {
  font-size: 14px;
  font-weight: 700;
  color: #3D3030;
  text-align: center;
}

/* ボックス */
.trimming-box {
  background: #FAF6F0;
  border-radius: 16px;
  padding: 32px 36px;
}

/* サービスグリッド */
.trimming-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trimming-service-card {
  background: #FAF6F0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trimming-service-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #E8829A;
  padding-bottom: 10px;
  border-bottom: 1px solid #F0EBE3;
}

.trimming-service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #3D3030;
  font-weight: 500;
}

/* プレミアムセット */
.trimming-premium {
  background: linear-gradient(135deg, #FDF0F3, #FAF6F0);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 32px;
  border: 2px solid #E8829A;
}

.trimming-premium-title {
  font-size: 20px;
  font-weight: 800;
  color: #E8829A;
  margin-bottom: 8px;
}

.trimming-premium-desc {
  font-size: 15px;
  color: #3D3030;
  font-weight: 500;
  margin-bottom: 4px;
}

/* ナノペット */
.nanopet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.nanopet-card {
  background: #FAF6F0;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nanopet-icon {
  width: 48px;
  height: 48px;
  background: #E8829A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nanopet-icon i {
  font-size: 20px;
  color: #ffffff;
}

.nanopet-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #3D3030;
}

.nanopet-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #888078;
  font-weight: 500;
}

.trimming-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #3D3030;
  font-weight: 500;
  margin-bottom: 16px;
}

/* トリマー紹介 */
.trimmer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trimmer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trimmer-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #F0EBE3;
}

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

.trimmer-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trimmer-name {
  font-size: 16px;
  font-weight: 800;
  color: #3D3030;
}

.trimmer-role {
  font-size: 13px;
  font-weight: 600;
  color: #E8829A;
}

/* ============================================
   ペットホテル
============================================ */

.hotel {
  padding: 70px 40px;
  background: #ffffff;
}

.hotel-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ホテルギャラリー */
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.hotel-gallery-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hotel-gallery-img {
  border-radius: 16px;
  overflow: hidden;
}

.hotel-gallery-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.hotel-gallery-text {
  border-left: 3px solid #E8829A;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #3D3030;
  font-weight: 500;
}

.hotel-gallery-double {
  grid-column: span 2;
}

.hotel-gallery-double-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}

.hotel-gallery-double-imgs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================
   準備中ページ
============================================ */

.coming-soon {
  padding: 120px 40px;
  background: #FAF6F0;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-inner {
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.coming-soon-icon {
  font-size: 56px;
  color: #E8829A;
}

.coming-soon-title {
  font-size: 24px;
  font-weight: 800;
  color: #3D3030;
}

.coming-soon-text {
  font-size: 15px;
  line-height: 1.9;
  color: #888078;
  font-weight: 500;
}

.btn-coming-soon {
  display: inline-block;
  background: #E8829A;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  margin-top: 12px;
  transition: opacity 0.2s;
}

.btn-coming-soon:hover {
  opacity: 0.85;
}

/* ============================================
   ドッグラン
============================================ */

.dogrun-main {
  padding: 70px 40px;
  background: #ffffff;
}

.dogrun-inner {
  max-width: 960px;
  margin: 0 auto;
}

.dogrun-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF3E0;
  color: #B8860B;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.dogrun-notice i {
  font-size: 18px;
  color: #E8A93D;
}

/* ============================================
   しつけ教室
============================================ */

.training-main {
  padding: 70px 40px;
  background: #ffffff;
}

.training-inner {
  max-width: 960px;
  margin: 0 auto;
}

.training-price {
  font-size: 17px;
  font-weight: 800;
  color: #E8829A;
  margin: 8px 0;
}

.training-price small {
  font-size: 13px;
  font-weight: 600;
  color: #888078;
}

.training-card {
  background: #FAF6F0;
  border-radius: 16px;
  padding: 32px 36px;
  border-bottom: none !important;
  margin-bottom: 24px;
}

.training-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.training-card h3::before {
  content: '\f1b0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: #E8829A;
}

.training-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.training-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================================
   パピーパーティー
============================================ */

.puppy-main {
  padding: 70px 40px;
  background: #ffffff;
}

.puppy-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================
   デイケア
============================================ */

.daycare-main {
  padding: 70px 40px;
  background: #ffffff;
}

.daycare-inner {
  max-width: 960px;
  margin: 0 auto;
}

.daycare-photo-main {
  margin-top: 32px;
}

.daycare-photo-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.trimming-table td[rowspan] {
  font-weight: 800;
  color: #6B4C3B;
  vertical-align: middle;
  background: #FAF6F0;
}

/* ============================================
   アクセス
============================================ */

.access-main {
  padding: 70px 40px;
  background: #ffffff;
}

.access-inner {
  max-width: 960px;
  margin: 0 auto;
}

.access-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#staff,
#equipment,
#interior {
  scroll-margin-top: 140px;
}

/* ============================================
   アニマルセラピー
============================================ */

.therapy-main {
  padding: 70px 40px;
  background: #ffffff;
}

.therapy-inner {
  max-width: 960px;
  margin: 0 auto;
}

.therapy-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.therapy-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================================
   併設カフェページ
============================================ */

.cafe-page-main {
  padding: 70px 40px;
  background: #ffffff;
}

.cafe-page-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* 写真4枚グリッド */
.cafe-gallery-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cafe-gallery-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

/* インスタ誘導 */
.cafe-instagram {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cafe-instagram i {
  font-size: 48px;
  color: #E8829A;
}

.cafe-instagram p {
  font-size: 16px;
  font-weight: 700;
  color: #3D3030;
}

.btn-cafe-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8829A;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  transition: opacity 0.2s;
}

.btn-cafe-insta:hover {
  opacity: 0.85;
}

/* ============================================
   レスポンシブ（スマホ対応）
============================================ */

/* ハンバーガー・スマホナビはデフォルトで非表示 */
.hamburger {
  display: none;
}

.sp-nav {
  display: none;
}

.sp-fixed-buttons {
  display: none;
}

@media (max-width: 768px) {

  /* ヘッダー */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }

  .header-top {
    padding: 10px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .header-logo {
    flex-shrink: 0;
  }

  .header-logo img {
    height: 32px;
  }

  .header-clinic-name {
    display: flex;
    flex: 1;
    padding-left: 8px;
    min-width: 0;
  }

  .clinic-main {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .clinic-sub {
    font-size: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-hours {
    display: none;
  }

  .header-right {
    display: none;
  }

  .header-nav {
    display: none;
  }

  /* ハンバーガーボタン */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 300;
    flex-shrink: 0;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3D3030;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger::after {
    content: 'MENU';
    font-size: 9px;
    font-weight: 700;
    color: #3D3030;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  .hamburger.active::after {
    content: 'CLOSE';
  }

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

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

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

  /* スマホ用ナビ */
  .sp-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 250;
    overflow-y: auto;
    padding: 80px 24px 40px;
  }

  .sp-nav.active {
    display: block;
  }

  .sp-nav nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sp-nav nav a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #3D3030;
    border-bottom: 1px solid #F0EBE3;
    text-decoration: none;
  }

  .sp-nav nav a:hover {
    color: #E8829A;
  }

  .sp-nav details {
    border-bottom: 1px solid #F0EBE3;
  }

  .sp-nav details summary {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #3D3030;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-nav details summary::after {
    content: '›';
    font-size: 20px;
    color: #E8829A;
    transition: transform 0.2s;
  }

  .sp-nav details[open] summary::after {
    transform: rotate(90deg);
  }

  .sp-nav details a {
    padding: 12px 0 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #888078;
    border-bottom: none;
  }

  /* ヒーロー */
  .hero {
    margin-top: 64px;
    height: 250px;
    margin-bottom: 0;
  }

  .hero-catch {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }

  .hero-catch-text {
    gap: 4px;
  }

  .hero-catch-text p {
    font-size: 13px;
    padding: 4px 8px;
  }

  .hero-badge {
    width: 50px;
    height: 50px;
    gap: 3px;
  }

  .hero-badge i {
    font-size: 17px;
  }

  .hero-badge span {
    font-size: 7px;
  }

  .hero-badges {
    gap: 6px;
  }

  /* 予約ボタン */
  .sp-fixed-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
  }

  .sp-fixed-tel {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #E8829A;
    color: #ffffff;
    padding: 10px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
  }

  .sp-fixed-tel i {
    font-size: 20px;
  }

  .sp-fixed-line {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #06C755;
    color: #ffffff;
    padding: 10px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
  }

  .sp-fixed-line i {
    font-size: 20px;
  }

  .hero-catch-text p {
    font-size: 13px;
    padding: 4px 8px;
  }

  /* 共通：セクションの余白を狭く */
  .section {
    padding: 48px 20px;
  }

  /* 共通：セクションタイトルを小さく */
  .section-title {
    font-size: 20px;
  }

  .section-en {
    font-size: 10px;
  }

  /* 共通：2列グリッド → 1列に */
  .info-layout,
  .greeting-inner,
  .cafe-layout,
  .parking-grid,
  .payment-grid,
  .banner-row,
  .news-layout,
  .doctor-layout,
  .surgery-merit-grid,
  .nanopet-grid,
  .trimmer-grid,
  .hotel-gallery {
    grid-template-columns: 1fr;
  }

  /* 共通：3列グリッド → 1列に */
  .services-grid,
  .trimming-service-grid,
  .medical-list-grid {
    grid-template-columns: 1fr;
  }

  /* 共通：4列グリッド → 2列に */
  .medical-btn-grid,
  .staff-grid,
  .equipment-grid,
  .medical-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 共通：内側の余白を狭く */
  .trimming-box,
  .surgery-box,
  .trimming-premium {
    padding: 20px;
  }

  /* 共通：フッター */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-map {
    height: 250px;
  }

  .footer-info {
    padding: 40px 20px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 0;
  }

  .footer-nav a {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* 共通：ページタイトル */
  .page-hero {
    margin-top: 64px;
    height: 150px;
  }

  .page-title {
    font-size: 22px;
  }

  .page-hero::before {
    background-position: center 50%;
  }

  .info-bar {
    padding: 16px 20px;
  }

  .page-hero {
    margin-bottom: 0;
  }

  .clinic-info,
  .info,
  .skin-main,
  .specialist-main,
  .surgery,
  .trimming,
  .hotel,
  .dogrun-main,
  .training-main,
  .puppy-main,
  .daycare-main,
  .access-main,
  .animals,
  .medical-list,
  .parking,
  .news-section,
  .greeting,
  .medical,
  .service,
  .service-alt,
  .cafe,
  .payment,
  .banners,
  .staff,
  .equipment,
  .interior,
  .news {
    padding-top: 50px !important;
  }

  /* インフォメーション */
  .info-left img {
    width: 300px;
  }

  .info-clinic-name {
    font-size: 20px;
  }

  .info-detail {
    font-size: 13px;
  }

  /* 診療時間表 */
  .hours-table {
    font-size: 11px;
  }

  .hours-table th,
  .hours-table td {
    padding: 4px 6px;
  }

  .hours-title {
    font-size: 12px;
  }

  .mark-dot {
    font-size: 12px;
  }

  .tel-reserve-number {
    font-size: 20px;
  }

  .tel-reserve-label {
    font-size: 11px;
  }

  .btn-info-line {
    font-size: 13px;
    padding: 10px 14px;
  }

  .btn-info-online {
    font-size: 13px;
    padding: 10px 14px;
  }

  .btn-line-text {
    display: none;
  }

  .btn-info-line::after {
    content: 'LINE予約';
  }

  /* 駐車場 */
  .parking-grid {
    display: flex;
    flex-direction: column;
  }

  .parking-left {
    display: contents;
  }

  .parking-right {
    display: contents;
  }

  .parking-highlight {
    order: 1;
  }

  .parking-text {
    order: 2;
    display: block;
    margin-top: -20px;
  }

  .parking-map-photo {
    order: 3;
  }

  .parking-photo-front {
    order: 4;
    margin-top: 12px;
  }

  .parking-coin-photo {
    order: 5;
  }

  .parking-highlight {
    order: 1;
    width: 100%;
  }

  /* 支払い方法 */
  .payment-box-title {
    font-size: 11px;
    padding: 6px 10px;
  }

  .payment-logos img {
    height: 23px;
  }

  /* ごあいさつ */
  .greeting-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .greeting-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #F0EBE3;
  }

  .greeting-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }

  .greeting-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* TOP診療案内 */
  .medical-btn-grid {
    grid-template-columns: 1fr;
  }

  /* TOPその他サービス */
  .service-alt .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-body h3 {
    font-size: 14px;
  }

  /* 病院紹介 */

  /* 医院概要テーブル */
  .clinic-table {
    font-size: 13px;
  }

  .clinic-table tr {
    display: flex;
    flex-direction: column;
  }

  .clinic-table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 4px;
    color: #E8829A;
  }

  .clinic-table td {
    padding-top: 4px;
    padding-bottom: 16px;
  }

  /* スタッフ紹介 */
  .staff-name {
    font-size: 14px;
  }

  .staff-hero-img {
    padding: 0px 0px 0;
  }

  .staff-hero-img img {
    max-height: none;
  }

  /* 設備紹介・院内風景 */
  .equipment-name {
    font-size: 14px;
  }

  /* 診療案内 */
  .animals-grid {
    gap: 20px;
  }

  .medical-list-img {
    display: none;
  }

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

  /* 皮膚科・心臓 */
  .specialist-photos {
    grid-template-columns: 1fr;
  }

  /* トリミング */
  .trimming-table {
    display: table;
    overflow-x: visible;
    white-space: normal;
    font-size: 11px !important;
    table-layout: fixed;
    width: 100%;
  }

  .trimming-table th,
  .trimming-table td {
    padding: 6px 8px;
    white-space: normal;
    display: table-cell;
  }

  .trimming-table tr {
    display: table-row;
  }

  .trimming-inner > .clinic-table,
  .trimming-inner > p + .clinic-table,
  .trimming-table {
    display: table;
    overflow-x: visible;
    white-space: normal;
  }

  .trimming-table tbody td {
    padding: 5px 6px !important;
    font-size: 11px !important;
    text-align: center !important;
  }

  .trimming-table tbody td:first-child {
    width: 30% !important;
    max-width: 30% !important;
    font-size: 11px !important;
  }

  .trimming-table thead th {
    padding: 5px 6px !important;
    font-size: 11px !important;
  }

  .trimming-table th:first-child,
  .trimming-table td:first-child {
    width: 45% !important;
  }

  .trimming-table th:nth-child(2),
  .trimming-table td:nth-child(2),
  .trimming-table th:nth-child(3),
  .trimming-table td:nth-child(3) {
    width: 32.5% !important;
  }

  .trimming-table {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
  }

  .trimmer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trimming-gallery {
    grid-template-columns: 1fr;
  }

  /* ホテル */
  .hotel-gallery {
    grid-template-columns: 1fr;
  }

  .hotel-gallery-double {
    grid-column: span 1;
  }

  .hotel-gallery-double-imgs {
    grid-template-columns: 1fr;
  }

  /* しつけ教室 */
  .training-photos {
    grid-template-columns: 1fr;
  }
  
  /* セラピー */
  .therapy-gallery {
    grid-template-columns: 1fr;
  }

  .cafe-gallery-top {
    grid-template-columns: 1fr;
  }
  
}