@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --primary: #4A7c59; /* Calm green */
  --secondary: #8fc0a9; /* Light green */
  --accent: #c8d5b9; /* Pale green */
  --bg-color: #fbfbf9; /* Warm off-white */
  --text-main: #333333;
  --text-light: #666666;
  --white: #ffffff;
}

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

body {
  font-family: 'Zen Kaku Gothic New', "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

h1, h2, h3, .logo {
  font-family: 'Shippori Mincho', "Hiragino Mincho ProN", "Yu Mincho", serif;
}

a { text-decoration: none; color: inherit; }
.text-center { text-align: center; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 0; }
.bg-light { background-color: #f2f5f1; }

/* Header */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 20px 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 5%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
}

.nav-links {
  display: flex; gap: 30px; list-style: none;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

.header-contact { display: flex; align-items: center; gap: 20px; }
.tel { font-size: 1.2rem; font-weight: bold; color: var(--primary); }
.btn-contact {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}
.btn-contact:hover { background-color: #386044; }

/* Hero */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -1;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(251, 251, 249, 0.7); z-index: -1;
}
.hero-content { text-align: center; }
.hero-content h1 {
  font-size: 3rem; margin-bottom: 20px; color: var(--primary);
  line-height: 1.4;
}
.hero-content p {
  font-size: 1.2rem; margin-bottom: 30px; font-weight: 500;
}
.hero-tags {
  display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
}
.hero-tags span {
  background: var(--white); color: var(--primary);
  padding: 8px 20px; border-radius: 20px; font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* About */
.section-title {
  font-size: 2.2rem; color: var(--primary); margin-bottom: 40px;
}
.about-inner {
  display: flex; align-items: center; gap: 60px;
}
.about-text { flex: 1; }
.about-text p { margin-bottom: 15px; font-size: 1.1rem; }
.about-image { flex: 1; }
.about-image img {
  width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Menu */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px; margin-bottom: 50px;
}
.menu-card {
  background: var(--white); padding: 40px 30px;
  border-radius: 15px; text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}
.menu-card:hover { transform: translateY(-5px); }
.menu-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; }
.menu-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary); }
.treatment-image-wrapper { max-width: 800px; margin: 0 auto; }
.treatment-image { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Access Info */
.info-inner {
  display: flex; gap: 40px;
}
.info-details { flex: 1; }
.info-map { flex: 1; min-height: 400px; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td {
  padding: 15px 0; border-bottom: 1px solid #e0e0e0; text-align: left;
}
.info-table th { width: 30%; color: var(--primary); font-weight: 600; }
.highlight { color: #d9534f; font-weight: bold; }

/* Footer */
footer {
  background: var(--primary); color: var(--white);
  padding: 50px 0 20px;
}
.footer-logo { font-size: 2rem; margin-bottom: 20px; }
.copyright { margin-top: 30px; font-size: 0.9rem; opacity: 0.8; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .tel { display: none; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .about-inner, .info-inner { flex-direction: column; gap: 30px; }
  .info-table th, .info-table td { display: block; width: 100%; padding: 5px 0; border-bottom: none; }
  .info-table tr { display: block; border-bottom: 1px solid #e0e0e0; padding-bottom: 10px; margin-bottom: 10px; }
}
