/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: #5a5a5a;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  min-height: 100vh;
  font-size: 16px;
}

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

a {
  color: #ec4899;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
  box-shadow: 0 2px 20px rgba(236, 72, 153, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  vertical-align: middle;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  letter-spacing: -0.1px;
}

.btn-reserve {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  color: white;
  border-color: #ec4899;
}

.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.btn-inquiry {
  background: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
  color: white;
  border-color: #f472b6;
}

.btn-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 114, 182, 0.3);
}

/* Main Content */
.main-content {
  padding: 0 0 60px 0;
}

/* Hero Section */
.hero-banner {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #be185d;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #9d174d;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.4;
}

.news-image {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Main Visual */
.main-visual {
  text-align: center;
  margin: 40px 0;
}

.main-image {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}

/* Section Styles */
section {
  margin: 60px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #be185d;
  position: relative;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: rgba(253, 242, 248, 0.7);
  padding: 50px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.9;
  color: #6b7280;
}

/* Doctor Profile */
.doctor-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.1);
}

.profile-header {
  text-align: center;
  margin-bottom: 30px;
}

.profile-title {
  font-size: 26px;
  font-weight: 700;
  color: #be185d;
  padding: 12px 0;
  border-bottom: 2px solid #fce7f3;
  display: inline-block;
  letter-spacing: -0.3px;
}

.profile-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
}

.profile-image {
  align-self: center;
  margin-bottom: 20px;
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fce7f3;
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
  display: block;
  margin: 0 auto;
}

.profile-details {
  flex: 1;
  width: 100%;
}

.credentials {
  margin-bottom: 20px;
}

.credential-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%);
  color: #be185d;
  padding: 6px 12px;
  margin: 4px 8px 4px 0;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #f9a8d4;
}

.profile-text p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}

/* Category Section */
.category-section {
  margin: 60px 0;
}

.category-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.category-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #fce7f3;
  min-height: 100px;
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.category-item:last-child {
  border-bottom: none;
}

.category-image {
  flex-shrink: 0;
  margin-right: 0;
  margin-top: 5px;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #ec4899;
}

.category-image img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.category-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.category-icon {
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  border-radius: 8px;
  font-size: 24px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding-top: 3px;
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #be185d;
  line-height: 1.4;
  letter-spacing: -0.2px;
  word-break: keep-all;
  white-space: nowrap;
  overflow: visible;
}

.category-description {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
  word-break: break-word;
  white-space: normal;
}

.category-link {
  color: #ec4899;
  font-weight: 500;
  font-size: 15px;
  margin-top: auto;
  align-self: flex-end;
}

.category-link:hover {
  color: #be185d;
}

.category-link.current {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: default;
}

.category-item.current {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: white;
}

.category-item.current .category-title {
  color: white;
}

.category-item.current .category-description {
  color: rgba(255, 255, 255, 0.8);
}

.category-item.current:hover {
  transform: none;
}

/* Category Items */
.category-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.category-item-link:hover .category-item {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

/* Clinic Section */
.clinic-section {
  margin: 60px 0;
}

.clinic-info {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.1);
}

.clinic-hours {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border-radius: 16px;
}

.hours-text {
  font-size: 20px;
  font-weight: 600;
  color: #be185d;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Phone Link Styles */
.phone-link {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
  color: white;
}

.phone-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.phone-text {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 2px;
}

.clinic-list {
  display: flex;
  justify-content: center;
  width: 100%;
}

.clinic-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px 40px;
  background: rgba(253, 242, 248, 0.5);
  border-radius: 20px;
  border: 1px solid #fce7f3;
  width: 100%;
  max-width: 600px;
}

.clinic-item .clinic-image {
  flex-shrink: 0;
  margin-right: 0;
}

.clinic-item .clinic-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fce7f3;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.15);
}

.clinic-content {
  flex: 1;
}

.clinic-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.clinic-name a {
  color: #be185d;
}

.clinic-name a:hover {
  color: #ec4899;
}

.clinic-address {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  font-style: normal;
}

/* Footer Links */
.footer-links-section {
  text-align: center;
  padding: 30px 20px;
  background: rgba(253, 242, 248, 0.7);
  border-radius: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: #ec4899;
  font-weight: 500;
  padding: 10px 18px;
  border: 1px solid #fce7f3;
  border-radius: 20px;
  font-size: 15px;
  transition: all 0.3s ease;
  letter-spacing: -0.1px;
}

.footer-link:hover {
  background: #ec4899;
  color: white;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #be185d 0%, #ec4899 100%);
  color: white;
  padding: 40px 0 20px 0;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-sites {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-sites a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-sites a:hover {
  color: white;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 15px;
}

.copyright a {
  color: white;
  font-weight: 500;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Clinic Overview Styles */
.clinic-overview {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.1);
  margin-bottom: 60px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.overview-item {
  padding: 20px;
  background: rgba(253, 242, 248, 0.5);
  border-radius: 12px;
  border: 1px solid #fce7f3;
}

.overview-label {
  font-weight: 600;
  color: #be185d;
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ec4899;
  padding-bottom: 8px;
}

.overview-content {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

.phone-number {
  font-weight: 600;
  font-size: 18px;
  color: #be185d;
}

/* Features Section */
.features-section {
  margin: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #fce7f3;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #be185d;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.discount-note {
  background: rgba(253, 242, 248, 0.7);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ec4899;
}

.discount-note p {
  font-weight: 600;
  color: #be185d;
  margin-bottom: 15px;
}

.discount-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.discount-note li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #374151;
  line-height: 1.6;
}

.discount-note li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
}

/* Access Info */
.access-info {
  margin-top: 20px;
  padding: 15px;
  background: rgba(253, 242, 248, 0.3);
  border-radius: 8px;
}

.access-info h4 {
  color: #be185d;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.access-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-info li {
  padding: 4px 0;
  padding-left: 15px;
  position: relative;
  color: #374151;
  font-size: 14px;
}

.access-info li:before {
  content: "🚃";
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Map Section */
.map-section {
  margin-top: 40px;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.08);
  border: 1px solid #fce7f3;
}

.map-title {
  font-size: 20px;
  font-weight: 600;
  color: #be185d;
  margin-bottom: 20px;
  text-align: center;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.map-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
  background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
}

/* Sitemap Styles */
.sitemap-section {
  margin: 60px 0;
}

.sitemap-category {
  margin-bottom: 50px;
}

.sitemap-category-title {
  font-size: 24px;
  font-weight: 600;
  color: #be185d;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ec4899;
  position: relative;
}

.sitemap-category-title:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.sitemap-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #fce7f3;
  position: relative;
}

.sitemap-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
  border-color: #ec4899;
}

.sitemap-item.current {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border-color: #ec4899;
}

.sitemap-item.external:after {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 15px;
  color: #9ca3af;
  font-size: 14px;
}

.sitemap-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 50%;
}

.sitemap-content {
  flex: 1;
}

.sitemap-title {
  font-size: 16px;
  font-weight: 600;
  color: #be185d;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.sitemap-description {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Contact Info Section */
.contact-info-section {
  margin: 60px 0;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.1);
  border: 1px solid #fce7f3;
}

.contact-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #fce7f3;
}

.contact-hours h3,
.contact-phone h3 {
  font-size: 18px;
  font-weight: 600;
  color: #be185d;
  margin-bottom: 15px;
}

.contact-hours p {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.contact-locations {
  display: flex;
  justify-content: center;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(253, 242, 248, 0.5);
  border-radius: 12px;
  max-width: 400px;
}

.location-image {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.location-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #be185d;
  margin: 0 0 8px 0;
}

.location-info address {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  font-style: normal;
  margin: 0;
}

/* Floating Action Bar */
.floating-action-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  transform: translateX(-50%) translateY(100px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-action-bar.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.floating-actions {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 35px;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  min-width: 480px;
  transform: scale(1.5);
  transform-origin: center center;
}

.floating-actions.bounce {
  animation: subtle-bounce 4s ease-in-out infinite;
}

@keyframes subtle-bounce {
  0%, 90%, 100% {
    transform: scale(1.5) translateY(0);
  }
  3% {
    transform: scale(1.5) translateY(-4px);
  }
  6% {
    transform: scale(1.5) translateY(0);
  }
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  white-space: nowrap;
  letter-spacing: -0.1px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.floating-counseling {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.floating-counseling:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.floating-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .header-top {
    padding: 12px 15px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero-banner {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .main-visual {
    margin: 30px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .about-content {
    padding: 15px;
  }

  .profile-content {
    padding: 15px;
    gap: 15px;
  }

  .profile-image img {
    width: 150px;
    height: 150px;
  }

  .category-item {
    padding: 15px;
    gap: 15px;
    min-height: 90px;
  }

  .category-image {
    width: 70px;
    height: 70px;
    margin-top: 0;
  }

  .category-icon-img {
    width: 50px;
    height: 50px;
  }

  .category-image img {
    width: 70px;
    height: 45px;
  }

  .category-icon {
    width: 70px;
    height: 45px;
    font-size: 20px;
  }

  .category-title {
    font-size: 16px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
  }

  .category-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .clinic-info {
    padding: 15px;
  }

  .clinic-item {
    padding: 12px;
  }

  .clinic-item .clinic-image img {
    width: 50px;
    height: 50px;
  }

  .footer-links-section {
    padding: 15px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  .footer-sites {
    gap: 10px;
  }

  .floating-actions {
    padding: 6px 12px;
    gap: 12px;
    min-width: 280px;
    transform: scale(1.3);
  }

  .floating-btn {
    padding: 12px 18px;
    min-width: 120px;
    font-size: 14px;
  }

  .floating-text {
    font-size: 15px;
  }

  .news-image {
    max-width: 95%;
    margin-bottom: 20px;
  }

  /* Map page specific styles */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .overview-item {
    padding: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-item {
    padding: 20px 15px;
  }

  .map-section {
    padding: 20px 15px;
  }

  .map-container iframe {
    height: 250px;
  }

  .phone-link {
    padding: 12px 18px;
    margin-top: 8px;
  }

  .phone-number {
    font-size: 18px;
  }

  .phone-text {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .container {
    margin: 0;
  }

  .header-top {
    padding: 10px 12px;
  }

  .logo img {
    height: 35px;
  }

  .profile-content {
    padding: 12px;
  }

  .profile-image img {
    width: 120px;
    height: 120px;
  }

  .category-item {
    padding: 12px;
    gap: 12px;
    min-height: 80px;
  }

  .category-image {
    width: 60px;
    height: 60px;
    margin-right: 0;
    margin-top: 0;
  }

  .category-icon-img {
    width: 40px;
    height: 40px;
  }

  .category-image img {
    width: 60px;
    height: 40px;
  }

  .category-icon {
    width: 60px;
    height: 40px;
    font-size: 18px;
  }

  .category-title {
    font-size: 15px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
  }

  .category-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .clinic-item {
    padding: 15px 20px;
    gap: 15px;
  }

  .clinic-item .clinic-image img {
    width: 80px;
    height: 80px;
  }

  .footer-content {
    padding: 0 12px;
  }

  .footer-sites {
    flex-direction: column;
    gap: 8px;
  }

  .floating-actions {
    padding: 6px 10px;
    gap: 8px;
    min-width: 260px;
    transform: scale(1.2);
  }

  .floating-btn {
    padding: 10px 16px;
    min-width: 110px;
    font-size: 13px;
  }

  .floating-text {
    font-size: 14px;
  }

  .news-image {
    max-width: 90%;
    margin-bottom: 15px;
  }

  /* Map page specific styles for small screens */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .overview-item {
    padding: 12px;
  }

  .overview-label {
    font-size: 14px;
  }

  .overview-content {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-item {
    padding: 15px 10px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-description {
    font-size: 13px;
  }

  .map-section {
    padding: 15px 10px;
  }

  .map-title {
    font-size: 18px;
  }

  .map-container iframe {
    height: 200px;
  }

  .discount-note {
    padding: 15px;
  }

  .access-info {
    padding: 10px;
  }

  .phone-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  .phone-number {
    font-size: 18px;
  }

  .phone-text {
    font-size: 11px;
  }
}

/* ========================================
   QA Page Styles
======================================== */

.page-title-section {
  text-align: center;
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #f3e8ff 100%);
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #be185d;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(190, 24, 93, 0.1);
}

.page-subtitle {
  font-size: 1.1rem;
  color: #ec4899;
  font-weight: 400;
}

.breadcrumb-section {
  margin-bottom: 30px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #be185d;
}

.breadcrumb-link {
  color: #ec4899;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #be185d;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #f472b6;
}

.breadcrumb-current {
  font-weight: 500;
  color: #be185d;
}

.qa-index-section {
  margin-bottom: 50px;
}

.qa-index {
  background: #fdf2f8;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #f472b6;
}

.qa-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qa-index-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.qa-index-list li:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  background: #ec4899;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.qa-index-link {
  color: #be185d;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.qa-index-link:hover {
  color: #ec4899;
  text-decoration: underline;
}

.qa-content-section {
  margin-bottom: 50px;
}

.qa-item {
  margin-bottom: 40px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #fce7f3;
  box-shadow: 0 8px 25px rgba(244, 114, 182, 0.08);
  transition: all 0.3s ease;
}

.qa-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 114, 182, 0.12);
}

.qa-question {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #f9a8d4 100%);
  padding: 30px 35px;
  position: relative;
  border-bottom: 1px solid #f9a8d4;
}

.qa-question:before {
  content: "Q";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ec4899, #f472b6);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.qa-question h3 {
  color: #be185d;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0 55px;
  line-height: 1.6;
  padding-left: 15px;
}

.qa-answer {
  padding: 35px 40px;
  background: #ffffff;
  position: relative;
}

.qa-answer:before {
  content: "A";
  position: absolute;
  left: 35px;
  top: 35px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.qa-answer h4 {
  color: #be185d;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 20px 45px;
  padding-left: 10px;
}

.qa-answer p {
  margin: 0 0 20px 75px;
  line-height: 1.8;
  color: #4b5563;
  font-size: 0.95rem;
}

.qa-answer p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Privacy Policy Page Styles
======================================== */

.privacy-content-section {
  margin-bottom: 50px;
}

.privacy-item {
  margin-bottom: 40px;
  background: #fefefe;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #f472b6;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.1);
}

.privacy-title {
  color: #be185d;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f472b6;
}

.privacy-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #374151;
}

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

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.privacy-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.7;
  color: #374151;
}

.privacy-list li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #ec4899;
  font-weight: bold;
}

.contact-info {
  background: #fdf2f8;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  border-left: 4px solid #ec4899;
}

.contact-info p {
  margin: 0;
  color: #be185d;
  font-weight: 500;
}

/* ========================================
   Responsive Design for QA and Privacy Pages
======================================== */

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .qa-index,
  .qa-item,
  .privacy-item {
    padding: 20px;
  }
  
  .qa-question {
    padding: 25px 20px;
  }
  
  .qa-question:before {
    left: 20px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .qa-question h3 {
    font-size: 1.1rem;
    margin-left: 45px;
    padding-left: 10px;
  }
  
  .qa-answer {
    padding: 25px 20px;
  }
  
  .qa-answer:before {
    left: 20px;
    top: 25px;
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
  
  .qa-answer h4 {
    margin-left: 35px;
    padding-left: 8px;
  }
  
  .qa-answer p {
    margin-left: 55px;
  }
}

@media (max-width: 480px) {
  .page-title-section {
    padding: 40px 0 30px;
  }
  
  .page-title {
    font-size: 1.7rem;
  }
  
  .qa-index,
  .qa-item,
  .privacy-item {
    padding: 15px;
  }
  
  .qa-question {
    padding: 20px 15px;
  }
  
  .qa-question:before {
    left: 15px;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  
  .qa-question h3 {
    font-size: 1rem;
    margin-left: 40px;
    padding-left: 8px;
  }
  
  .qa-answer {
    padding: 20px 15px;
  }
  
  .qa-answer:before {
    left: 15px;
    top: 20px;
    width: 23px;
    height: 23px;
    font-size: 0.8rem;
  }
  
  .qa-answer h4 {
    margin-left: 30px;
    padding-left: 6px;
    font-size: 0.9rem;
  }
  
  .qa-answer p {
    margin-left: 45px;
    font-size: 0.9rem;
  }
}

/* ========================================
   Enhanced QA Index and Scroll Buttons
======================================== */

/* 目次の強化スタイル */
.qa-index-section {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.1);
  border: 1px solid #f3e8ff;
  position: relative;
  scroll-margin-top: 20px;
}

.qa-index {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.08);
}

.qa-index-list li {
  background: linear-gradient(135deg, #fafafa 0%, #f9fafb 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.qa-index-list li:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border-color: #ec4899;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.15);
}

.qa-index-list li:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.qa-index-list li:hover:before {
  width: 45px;
  background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
}

.qa-index-link {
  display: block;
  padding: 15px 20px 15px 55px;
  color: #374151;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  transition: all 0.3s ease;
}

.qa-index-link:hover {
  color: #be185d;
}

/* トップに戻るボタン */
.scroll-to-top {
  position: fixed;
  bottom: 140px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  font-family: 'Arial Black', Arial, sans-serif;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
  background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.02);
}

/* モバイル対応 */
@media (max-width: 768px) {
  .qa-index-section {
    padding: 20px;
    margin: 20px 0;
  }
  
  .qa-index {
    padding: 20px;
  }
  
  .qa-index-link {
    padding: 12px 15px 12px 45px;
    font-size: 14px;
  }
  
  .qa-index-list li:before {
    width: 35px;
    font-size: 12px;
  }
  
  .scroll-to-top {
    width: 55px;
    height: 55px;
    bottom: 130px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .qa-index-section {
    padding: 15px;
  }
  
  .qa-index {
    padding: 15px;
  }
  
  .qa-index-link {
    padding: 10px 12px 10px 40px;
    font-size: 13px;
  }
  
  .qa-index-list li:before {
    width: 30px;
    font-size: 11px;
  }
  
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 120px;
    font-size: 20px;
  }
}