/*
Theme Name: 大分の矯正歯科相談室
Theme URI: https://oita-orthodontics.com
Author: Oita Orthodontics
Author URI: https://oita-orthodontics.com
Description: 大分県の矯正歯科ポータルサイト用WordPressテーマ。SEO特化、構造化データ対応、レスポンシブデザイン。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oita-orthodontics
Tags: dental, orthodontics, medical, seo, responsive
*/

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

:root {
  --mint-primary: #2a9d8f;
  --mint-dark: #1a7a6f;
  --mint-light: #a8e6cf;
  --mint-bg: #f0faf6;
  --mint-accent: #e8f5f0;
  --warm-bg: #faf8f5;
  --warm-light: #f5f0ea;
  --text-primary: #2d2a26;
  --text-secondary: #6b6560;
  --text-muted: #9a948e;
  --border-color: #e8e4df;
  --border-light: #f0ece7;
  --white: #ffffff;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-700: #b45309;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --radius: 0.65rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-weight: 700;
  line-height: 1.4;
}

.heading-display {
  font-family: "Shippori Mincho", serif;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 230, 207, 0.3);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 72px;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--mint-light), var(--mint-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.logo-icon span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "Shippori Mincho", serif;
}

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

.logo-text .main {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Shippori Mincho", serif;
  color: var(--mint-dark);
}

.logo-text .sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: none;
}

@media (min-width: 640px) {
  .logo-text .sub {
    display: block;
  }
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--mint-accent);
  color: var(--mint-dark);
}

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

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-dropdown-btn:hover,
.nav-dropdown.active .nav-dropdown-btn {
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 0.5rem 0;
  min-width: 220px;
  animation: fadeInDown 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: background 0.2s ease;
}

.nav-dropdown-item:hover {
  background: var(--mint-accent);
}

.nav-dropdown-item svg {
  width: 16px;
  height: 16px;
  color: var(--mint-primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
  background: var(--warm-light);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 1rem 0;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: background 0.2s ease;
}

.mobile-nav-link:hover {
  background: var(--mint-accent);
}

.mobile-nav-label {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-sub {
  padding-left: 1.5rem;
}

/* ===== Footer ===== */
.site-footer {
  background: #3d3832;
  color: rgba(255, 255, 255, 0.8);
}

.footer-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 48px;
}

@media (min-width: 640px) {
  .footer-wave svg {
    height: 64px;
  }
}

.footer-inner {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mint-light), var(--mint-primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .brand-icon span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  font-family: "Shippori Mincho", serif;
}

.footer-brand .brand-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-section h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: "Shippori Mincho", serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--mint-light);
}

.footer-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-contact-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Section Heading ===== */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: var(--mint-accent);
  color: var(--mint-dark);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-badge svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 55vh;
    max-height: 600px;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 60vh;
    max-height: 680px;
    align-items: center;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

@media (min-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 45%, transparent 70%);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-text-area {
  max-width: 36rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(42,157,143,0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--mint-dark);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--mint-primary);
}

.hero-title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 1rem;
  font-family: "Shippori Mincho", serif;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

.text-mint {
  color: var(--mint-primary);
}

.text-mint-dark {
  color: var(--mint-dark);
  font-weight: 600;
}

.hero-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

/* ===== Update Bar ===== */
.update-bar {
  padding: 0.75rem 0;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border-light);
}

.update-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.update-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.update-item svg {
  width: 14px;
  height: 14px;
  color: var(--mint-primary);
}

.update-divider {
  color: var(--border-color);
}

/* ===== TOC Section ===== */
.toc-section {
  padding: 2.5rem 0;
}

.toc-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--mint-accent);
}

.toc-header svg {
  width: 20px;
  height: 20px;
  color: var(--mint-primary);
}

.toc-header h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.toc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 640px) {
  .toc-list {
    grid-template-columns: 1fr 1fr;
  }
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.toc-link:hover {
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.toc-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint-accent);
  color: var(--mint-primary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Grid Layouts ===== */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2col {
    grid-template-columns: 1fr 1fr;
  }
}

.rounded-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.content-text p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* ===== Feature Grid ===== */
.feature-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--mint-accent);
  border-radius: var(--radius-lg);
}

.feature-icon {
  flex-shrink: 0;
  color: var(--mint-primary);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== Guide Cards ===== */
.guide-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guide-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s, transform 0.3s;
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guide-num-wrap {
  flex-shrink: 0;
}

.guide-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
}

.guide-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.guide-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.guide-source {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ===== Comparison Table ===== */
.comparison-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.comparison-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--mint-accent);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

.comparison-table thead th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.8125rem;
}

.comparison-table .highlight-col {
  background: rgba(42, 157, 143, 0.05);
  font-weight: 500;
}

.comparison-table thead .highlight-col {
  background: rgba(42, 157, 143, 0.1);
  color: var(--mint-dark);
}

.table-note {
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--gray-50);
}

/* ===== Cost Info Grid ===== */
.cost-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cost-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cost-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.cost-info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cost-info-card ul {
  list-style: none;
  padding: 0;
}

.cost-info-card li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.cost-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-primary);
}

/* ===== Treatment Cards ===== */
.treatment-img {
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

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

.treatment-body {
  padding: 1.25rem;
}

.treatment-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.treatment-body p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--mint-accent);
  color: var(--mint-dark);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.treatment-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--mint-dark);
}

/* ===== Steps Container ===== */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.step-line {
  width: 2px;
  height: 24px;
  background: var(--mint-light);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .step-line {
    width: 100%;
    height: 2px;
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

/* ===== Clinic Cards (Top Page) ===== */
.clinic-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.clinic-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.clinic-card-image {
  height: 160px;
  overflow: hidden;
}

.clinic-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.clinic-card:hover .clinic-card-image img {
  transform: scale(1.05);
}

.clinic-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem 0;
}

.clinic-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.clinic-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.clinic-area,
.clinic-address {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.clinic-type {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem 0;
}

.clinic-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0.5rem 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clinic-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding: 0 1.25rem;
}

.clinic-feature {
  font-size: 0.6875rem;
  color: var(--mint-dark);
  background: var(--mint-accent);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.clinic-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 640px) {
  .clinic-meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.clinic-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.meta-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meta-value {
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.clinic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.clinic-phone {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.clinic-link-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mint-primary);
}

/* ===== Featured Clinic (Top Page 1st) ===== */
.featured-clinic {
  margin-bottom: 2rem;
}

.featured-clinic-link {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--mint-light);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.featured-clinic-link:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.featured-rank-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  z-index: 5;
  box-shadow: var(--shadow-md);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.featured-visual {
  height: 240px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-visual {
    height: auto;
    min-height: 320px;
  }
}

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

.featured-info {
  padding: 1.5rem;
}

.pr-badge {
  display: inline-block;
  background: var(--amber-100);
  color: var(--amber-700);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.featured-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

/* ===== Disclaimer Section ===== */
.disclaimer-section {
  padding: 2rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border-light);
}

.disclaimer-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.disclaimer-inner h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.disclaimer-notes p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.disclaimer-sources {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.sources-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.disclaimer-sources a {
  font-size: 0.75rem;
  color: var(--mint-primary);
  text-decoration: none;
}

.disclaimer-sources a:hover {
  text-decoration: underline;
}

/* ===== Ranking List Section ===== */
.ranking-list-section {
  padding: 0;
}

/* ===== Mobile Menu Icons ===== */
.menu-icon,
.close-icon {
  display: block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 16px rgba(42, 157, 143, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--mint-dark);
  border: 1px solid var(--mint-light);
}

.btn-outline:hover {
  background: var(--mint-accent);
}

.btn-white {
  background: var(--white);
  color: var(--mint-dark);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-xl);
}

/* ===== Treatment Cards ===== */
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.treatment-card:hover {
  border-color: var(--mint-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.treatment-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.treatment-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.treatment-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.treatment-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.6875rem;
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.treatment-tag svg {
  width: 12px;
  height: 12px;
}

/* ===== Steps ===== */
.steps-section {
  padding: 4rem 0;
  background: var(--warm-bg);
}

@media (min-width: 1024px) {
  .steps-section {
    padding: 6rem 0;
  }
}

.steps-list {
  max-width: 48rem;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 3rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-light);
}

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

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Clinic Cards (Top Page) ===== */
.featured-clinic {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--mint-light);
  transition: all 0.3s ease;
}

.featured-clinic:hover {
  box-shadow: var(--shadow-xl);
}

.featured-clinic-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .featured-clinic-inner {
    grid-template-columns: 1fr 1.5fr;
  }
}

.featured-clinic-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.clinic-card-small {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.clinic-card-small:hover {
  box-shadow: var(--shadow-xl);
}

.clinic-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-light), var(--mint-primary));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.clinic-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.clinic-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.clinic-feature-tag svg {
  width: 12px;
  height: 12px;
}

/* ===== Ranking Page ===== */
.ranking-hero {
  background: linear-gradient(135deg, var(--mint-accent), var(--white), var(--warm-bg));
  padding: 3rem 0 4rem;
}

.ranking-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.ranking-back-link:hover {
  color: var(--mint-primary);
}

.ranking-back-link svg {
  width: 16px;
  height: 16px;
}

.ranking-update-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.ranking-update-badge svg {
  width: 12px;
  height: 12px;
  color: var(--mint-primary);
}

/* Ranking Clinic Card */
.ranking-card {
  border-radius: var(--radius-2xl);
  border: 2px solid;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.ranking-card.rank-1 {
  background: linear-gradient(to right, var(--amber-50), rgba(254, 243, 199, 0.5));
  border-color: var(--amber-200);
}

.ranking-card.rank-2 {
  background: linear-gradient(to right, var(--gray-50), rgba(243, 244, 246, 0.5));
  border-color: var(--gray-200);
}

.ranking-card.rank-3 {
  background: linear-gradient(to right, var(--orange-50), rgba(255, 237, 213, 0.5));
  border-color: var(--orange-200);
}

.ranking-card.rank-default {
  background: var(--white);
  border-color: var(--border-light);
}

.ranking-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rank-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.rank-circle.top3 {
  background: linear-gradient(135deg, var(--mint-light), var(--mint-primary));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.rank-circle.default {
  background: var(--mint-accent);
  color: var(--mint-primary);
}

.ranking-card-header .clinic-info {
  flex: 1;
}

.ranking-card-header .clinic-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

@media (min-width: 1024px) {
  .ranking-card-header .clinic-name {
    font-size: 1.25rem;
  }
}

.ranking-card-header .clinic-area {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ranking-card-header .clinic-area svg {
  width: 14px;
  height: 14px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.rating-badge svg {
  width: 16px;
  height: 16px;
  color: var(--amber-500);
  fill: var(--amber-500);
}

.rating-badge .score {
  font-size: 0.875rem;
  font-weight: 700;
}

.rating-badge .count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ranking-card-body {
  padding: 1.5rem;
}

.ranking-card-body .description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ranking-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.ranking-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.ranking-feature-tag svg {
  width: 12px;
  height: 12px;
}

.ranking-treatments {
  margin-bottom: 1.25rem;
}

.ranking-treatments .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ranking-treatments .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.ranking-treatment-tag {
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.ranking-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .ranking-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ranking-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ranking-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--mint-primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.ranking-info-item .info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ranking-info-item .info-value {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.ranking-card-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ranking-card-footer .price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ranking-card-footer .price-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mint-primary);
}

.btn-clinic-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.btn-clinic-link:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-clinic-link svg {
  width: 12px;
  height: 12px;
}

/* ===== Ranking Links Section ===== */
.ranking-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.ranking-link-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.ranking-link-card:hover {
  border-color: var(--mint-light);
  box-shadow: var(--shadow-xl);
}

.ranking-link-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--mint-accent), var(--mint-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.ranking-link-card:hover .ranking-link-icon {
  transform: scale(1.1);
}

.ranking-link-icon svg {
  width: 24px;
  height: 24px;
  color: var(--mint-primary);
}

.ranking-link-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ranking-link-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ranking-link-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ranking-link-footer .count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ranking-link-footer .cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mint-primary);
  transition: gap 0.3s ease;
}

.ranking-link-card:hover .ranking-link-footer .cta {
  gap: 0.5rem;
}

.ranking-link-footer .cta svg {
  width: 16px;
  height: 16px;
}

/* ===== Blog Section ===== */
.blog-section {
  padding: 4rem 0;
  background: var(--warm-bg);
}

@media (min-width: 1024px) {
  .blog-section {
    padding: 6rem 0;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.blog-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.blog-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.blog-article-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-article-link {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.blog-article-link:hover {
  color: var(--mint-primary);
}

.blog-article-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--mint-light);
  transition: transform 0.2s ease;
}

.blog-article-link:hover svg {
  transform: translateX(2px);
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 4rem 0;
  background: var(--white);
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--mint-light);
}

.faq-item.open {
  border-color: var(--mint-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.faq-question .q-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.faq-question .q-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--mint-accent);
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.faq-question .q-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-question .toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question .toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  padding-left: 4.25rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cta-decorative {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(40px);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-content h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 2.25rem;
  }
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
  background: var(--warm-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--mint-primary);
}

.breadcrumb-nav .current {
  color: var(--text-primary);
  font-weight: 500;
}

.breadcrumb-nav svg {
  width: 12px;
  height: 12px;
}

/* ===== SEO Text ===== */
.seo-text-section {
  padding: 2.5rem 0 3.5rem;
}

.seo-text-section.after {
  background: var(--warm-bg);
}

.seo-text {
  max-width: 48rem;
  margin: 0 auto;
}

.seo-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.seo-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.seo-text h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

/* ===== Other Rankings ===== */
.other-rankings {
  padding: 3rem 0 4rem;
}

.other-rankings h2 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.other-rankings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

.other-ranking-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--warm-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.other-ranking-link:hover {
  background: var(--mint-accent);
}

.other-ranking-link span {
  font-size: 0.875rem;
  font-weight: 500;
}

.other-ranking-link svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

/* ===== Animations ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback for no-JS */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
  }
}

/* ===== Utility ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== WordPress Specific ===== */
.wp-block-image img {
  border-radius: var(--radius);
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

/* WordPress alignment classes */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignwide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100%;
}

/* ===== Section & Grid Utilities ===== */
.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-alt {
  background: var(--warm-bg);
}

.section-heading h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-heading h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .section-heading h2 {
    font-size: 2.25rem;
  }
}

.section-heading p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

.grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.mt-10 {
  margin-top: 2.5rem;
}

/* ===== Featured Clinic Card (Top Page) ===== */
.featured-clinic-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2rem;
}

.featured-clinic-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--mint-light);
  transition: all 0.3s ease;
  position: relative;
}

.featured-clinic-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
  z-index: 5;
}

.featured-badge svg {
  width: 14px;
  height: 14px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.featured-visual {
  background: linear-gradient(135deg, var(--mint-accent), var(--mint-bg));
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}

.featured-clinic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.clinic-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.clinic-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clinic-card:hover .clinic-card-image img {
  transform: scale(1.03);
}

.featured-visual-inner {
  text-align: center;
}

.featured-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.featured-icon-circle svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.featured-brand-name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mint-dark);
  letter-spacing: 0.1em;
}

.featured-brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.featured-info {
  padding: 2rem;
}

.featured-pr-badge {
  margin-bottom: 0.75rem;
}

.featured-pr-badge span {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius);
  background: var(--mint-accent);
  color: var(--mint-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.featured-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .featured-info h3 {
    font-size: 1.5rem;
  }
}

.featured-address {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.featured-address svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.featured-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.featured-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.feature-tag svg {
  width: 12px;
  height: 12px;
}

.featured-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

.detail-box {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: var(--warm-bg);
}

.detail-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}

.detail-value {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
  transition: all 0.3s ease;
}

.featured-clinic-link:hover .featured-cta {
  box-shadow: 0 6px 16px rgba(42, 157, 143, 0.4);
}

.featured-cta svg {
  width: 16px;
  height: 16px;
}

/* ===== Clinic Card (Small - Top Page) ===== */
.clinic-cards {
  margin-top: 1.5rem;
}

.clinic-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.clinic-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.clinic-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.clinic-card-header {
  margin-bottom: 0.75rem;
}

.clinic-rank-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-light), var(--mint-primary));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.clinic-area {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.clinic-area svg {
  width: 14px;
  height: 14px;
}

.clinic-type {
  font-size: 0.75rem;
  color: var(--mint-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.clinic-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  flex: 1;
}

.feature-tag-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.6875rem;
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.feature-tag-sm svg {
  width: 10px;
  height: 10px;
}

.clinic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.clinic-phone {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.clinic-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mint-primary);
}

.clinic-detail-link svg {
  width: 14px;
  height: 14px;
}

/* ===== Ranking Page Additional Styles ===== */
.ranking-page .ranking-hero h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .ranking-page .ranking-hero h1 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .ranking-page .ranking-hero h1 {
    font-size: 2.25rem;
  }
}

.ranking-hero-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 36rem;
  line-height: 1.7;
}

.ranking-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.ranking-meta-badge svg {
  width: 12px;
  height: 12px;
  color: var(--mint-primary);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--mint-primary);
}

.back-link svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.seo-text-block {
  max-width: 48rem;
  margin: 0 auto;
}

.seo-text-block p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.seo-text-block strong {
  color: var(--text-primary);
  font-weight: 600;
}

.seo-heading {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

/* Ranking List */
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.clinic-ranking-card {
  border-radius: var(--radius-2xl);
  border: 2px solid;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rank-bg-gold {
  background: linear-gradient(to right, var(--amber-50), rgba(254, 243, 199, 0.5));
  border-color: var(--amber-200);
}

.rank-bg-silver {
  background: linear-gradient(to right, var(--gray-50), rgba(243, 244, 246, 0.5));
  border-color: var(--gray-200);
}

.rank-bg-bronze {
  background: linear-gradient(to right, var(--orange-50), rgba(255, 237, 213, 0.5));
  border-color: var(--orange-200);
}

.rank-bg-default {
  background: var(--white);
  border-color: var(--border-light);
}

.clinic-rank-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.rank-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.rank-circle.rank-top3 {
  background: linear-gradient(135deg, var(--mint-light), var(--mint-primary));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.rank-circle:not(.rank-top3) {
  background: var(--mint-accent);
  color: var(--mint-primary);
}

.clinic-rank-header > svg {
  width: 20px;
  height: 20px;
  color: var(--amber-500);
}

.rank-header-info {
  flex: 1;
  min-width: 0;
}

.rank-header-info h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

@media (min-width: 1024px) {
  .rank-header-info h2 {
    font-size: 1.25rem;
  }
}

.rank-area {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rank-area svg {
  width: 14px;
  height: 14px;
}

.rank-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.rank-rating svg {
  width: 16px;
  height: 16px;
  color: var(--amber-500);
}

.rating-value {
  font-size: 0.875rem;
  font-weight: 700;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.clinic-rank-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.clinic-rank-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clinic-ranking-card:hover .clinic-rank-image img {
  transform: scale(1.03);
}

.clinic-rank-body {
  padding: 1.5rem;
}

.clinic-rank-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.clinic-rank-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--mint-accent);
  color: var(--mint-dark);
}

.feature-badge svg {
  width: 12px;
  height: 12px;
}

.clinic-rank-treatments {
  margin-bottom: 1.25rem;
}

.treatments-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.treatments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.treatment-tag {
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.clinic-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .clinic-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.info-item svg {
  width: 16px;
  height: 16px;
  color: var(--mint-primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.info-value {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.clinic-rank-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mint-primary);
}

.btn-clinic {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mint-primary), var(--mint-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-clinic:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-clinic svg {
  width: 12px;
  height: 12px;
}

.btn-outline-dark {
  background: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline-dark:hover {
  background: var(--mint-accent);
  border-color: var(--mint-light);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Other Rankings Title */
.other-rankings-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ===== Blog Category Card ===== */
.blog-category-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.blog-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.blog-category-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--mint-accent), var(--mint-bg));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-category-icon svg {
  width: 20px;
  height: 20px;
  color: var(--mint-primary);
}

.blog-category-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.blog-article-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-article-link {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.blog-article-link:hover {
  color: var(--mint-primary);
}

.blog-article-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--mint-light);
}

/* ===== CTA Background Circles ===== */
.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(40px);
}

.cta-bg-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.cta-bg-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

/* ===== FAQ Styles (front-page) ===== */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--mint-accent);
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-question h3 {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-chevron svg {
  width: 20px;
  height: 20px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== Article / Post Styles ===== */
.article-container {
  max-width: 48rem;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.article-header {
  margin-bottom: 2rem;
}

.article-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .article-header h1 {
    font-size: 1.875rem;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.article-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.article-content {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.article-tags {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.post-navigation a {
  color: var(--mint-primary);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.post-navigation a:hover {
  color: var(--mint-dark);
}

/* ===== Posts Grid (Blog Archive) ===== */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

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

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

.post-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.post-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card-body {
  padding: 1.25rem;
}

.post-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.post-title a {
  color: var(--text-primary);
}

.post-title a:hover {
  color: var(--mint-primary);
}

.post-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.post-excerpt {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mint-primary);
}

.read-more svg {
  width: 14px;
  height: 14px;
}

/* ===== 404 Page ===== */
.error-404 {
  text-align: center;
  padding: 6rem 0;
}

.error-404 h1 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--mint-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-404 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.error-404 p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ===== No Posts ===== */
.no-posts {
  text-align: center;
  padding: 4rem 0;
}

.no-posts h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.no-posts p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ===== Pagination ===== */
.pagination {
  padding: 2rem 0;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

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

.pagination .page-numbers:hover:not(.current) {
  background: var(--mint-accent);
}

/* ===== Mobile Menu Overlay ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 40;
}

.mobile-overlay.active {
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 50;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 1rem;
}

.mobile-menu-panel.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-close-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-close-btn:hover {
  background: var(--warm-light);
}

/* ===== Disclaimer Banner ===== */
.disclaimer-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--mint-accent);
  border: 1px solid rgba(42, 157, 143, 0.15);
  margin-bottom: 1.5rem;
}

.disclaimer-banner .disclaimer-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--mint-primary);
}

.disclaimer-banner p {
  font-size: 0.75rem;
  color: var(--mint-dark);
  line-height: 1.7;
  margin: 0;
}

/* ===== Footer Disclaimer ===== */
.footer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}

.footer-disclaimer-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-disclaimer-title svg {
  flex-shrink: 0;
}

.footer-disclaimer-box p {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-disclaimer-box p:last-child {
  margin-bottom: 0;
}

/* ===== Privacy Policy Page ===== */
.privacy-hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(to bottom, var(--mint-bg), var(--bg));
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: var(--mint-accent);
  filter: blur(60px);
  opacity: 0.3;
}

.privacy-hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: var(--warm-light);
  filter: blur(60px);
  opacity: 0.3;
}

.privacy-hero .container {
  position: relative;
  z-index: 1;
}

.privacy-hero-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.privacy-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--mint-light), var(--mint-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.privacy-icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.privacy-hero h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .privacy-hero h1 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .privacy-hero h1 {
    font-size: 2.25rem;
  }
}

.privacy-hero-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 42rem;
  line-height: 1.7;
}

.privacy-content {
  max-width: 48rem;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 2rem;
}

.privacy-section:last-of-type {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mint-accent);
}

@media (min-width: 1024px) {
  .privacy-section h2 {
    font-size: 1.125rem;
  }
}

.privacy-section p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.privacy-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.privacy-section ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-light);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.privacy-section .contact-box {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--warm-light);
  border: 1px solid var(--border-light);
}

.privacy-section .contact-box p {
  margin-bottom: 0.5rem;
}

.privacy-section .contact-box p:last-child {
  margin-bottom: 0;
}

.privacy-section .contact-box a {
  color: var(--mint-primary);
}

.privacy-section .contact-box a:hover {
  text-decoration: underline;
}

.privacy-date {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.privacy-date p {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ===== Link Arrow ===== */
.link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mint-primary);
  transition: color 0.2s;
}

.ranking-link-card:hover .link-arrow {
  color: var(--mint-dark);
}

/* ===== Privacy Page Wrapper ===== */
.privacy-page {
  background: var(--warm-bg);
}


/* ===== Main Content ===== */
.main-content {
  min-height: 60vh;
  background: var(--warm-bg);
}

/* ===== Article Category ===== */
.article-category {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--mint-dark);
  background: var(--mint-accent);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-weight: 500;
}

.article-category a {
  color: inherit;
  text-decoration: none;
}

/* ===== Post Navigation ===== */
.nav-previous,
.nav-next {
  flex: 1;
}

.nav-previous a,
.nav-next a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--mint-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: var(--mint-dark);
}

.nav-next {
  text-align: right;
}

/* ===== Widgets ===== */
.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--mint-accent);
}


/* ===== Column Grid (新着コラム) ===== */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
  .column-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Column Card */
.column-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.column-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.column-card:hover .column-card-title {
  color: var(--mint-primary);
}

/* Thumbnail */
.column-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  background: var(--mint-accent);
}

.column-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.column-card-noimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint-accent), #e0f2f1);
}

.column-card-noimg svg {
  width: 48px;
  height: 48px;
  color: var(--mint-primary);
  opacity: 0.5;
}

/* Category Badge */
.column-card-cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--mint-primary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 999px;
  line-height: 1.4;
}

/* Card Body */
.column-card-body {
  padding: 1.25rem;
}

.column-card-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.column-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 0.625rem;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-card-excerpt {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA Button */
.section-cta {
  text-align: center;
  margin-top: 1rem;
}

.btn-outline-mint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid var(--mint-primary);
  color: var(--mint-primary);
  background: transparent;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-mint:hover {
  background: var(--mint-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline-mint svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-outline-mint:hover svg {
  transform: translateX(4px);
}

/* Empty State */
.column-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.column-empty-icon {
  margin-bottom: 1rem;
}

.column-empty-icon svg {
  width: 48px;
  height: 48px;
  color: var(--mint-primary);
  opacity: 0.4;
}

.column-empty p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}


/* ===== PR医院セクション ===== */
.pr-clinic-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fffbeb, #ffffff, #f0fdf4);
}

.pr-clinic-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    border: 2px solid #fde68a;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
    overflow: hidden;
}

.pr-badge-wrap {
    padding: 1.5rem 1.5rem 0;
}

.pr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.pr-clinic-inner {
    padding: 1.5rem;
}

.pr-clinic-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-family: "Shippori Mincho", serif;
}

.pr-clinic-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.pr-clinic-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pr-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.pr-feature-badge svg {
    flex-shrink: 0;
    color: #d97706;
}

.pr-clinic-video {
    margin-bottom: 1.5rem;
}

.pr-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pr-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pr-clinic-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-pr-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.btn-pr-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .pr-clinic-section {
        padding: 2rem 0;
    }
    .pr-clinic-inner {
        padding: 1rem;
    }
    .pr-clinic-name {
        font-size: 1.1rem;
    }
    .pr-clinic-actions {
        flex-direction: column;
    }
    .btn-pr-primary {
        width: 100%;
    }
}


/* ===== ドロップダウン カテゴリラベル ===== */
.nav-dropdown-label {
    padding: 0.5rem 1rem 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-top: 1px solid var(--border-light);
    margin-top: 0.25rem;
}

.nav-dropdown-label:first-child {
    border-top: none;
    margin-top: 0;
}

.nav-dropdown-menu {
    min-width: 260px;
}
