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

a {
  text-decoration: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho", "YuMincho", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  line-height: 1.7;
  color: #3a3a3a;
  background-color: #faf9f7;
  overflow-x: hidden;
  width: 100vw;
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }
}

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

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  box-shadow: 0 2px 10px rgba(106, 142, 115, 0.1);
  width: 100vw;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #6a8e73;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
}

.nav-list a {
  color: #3a3a3a;
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list a:hover {
  color: #6a8e73;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6a8e73;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.reservation-btn {
  background: linear-gradient(135deg, #6a8e73, #8da88e);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 142, 115, 0.3);
}

.reservation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 142, 115, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 9999999;
  position: relative;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #3a3a3a;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Reservation - PC only */
.header-reservation {
  display: flex;
  margin-left: 1rem;
}

/* Reservation Bar - Mobile only */
.reservation-bar {
  background: linear-gradient(135deg, #6a8e73, #8da88e);
  padding: 0.8rem 0;
  display: none;
}

.reservation-btn-full {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: #6a8e73;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reservation-btn-full:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Main Content */
main {
  margin-top: 90px;
}

.home-page main {
  margin-top: 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("../images/hero_img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
}

.cta-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: #6a8e73;
  padding: 1rem 2rem 0.75rem;
  border-radius: 33px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #6a8e73;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #6a8e73, #8da88e);
}

/* Strengths Section */
.strengths {
  background-color: #f8f6f1;
}

.strength-item {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
}

.strength-item h3 {
  font-size: 1.5rem;
  color: #6a8e73;
  margin-bottom: 1rem;
  font-weight: 400;
}

.strength-item p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}

/* News Preview Section */
.news-preview {
  background-color: white;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 0.3s ease;
}

.news-item:hover {
  background-color: #f8f6f1;
}

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

.news-date {
  color: #6a8e73;
  font-size: 0.9rem;
  font-weight: 500;
}

.news-title {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #3a3a3a;
  font-weight: 400;
}

.news-more {
  text-align: center;
  margin-top: 2rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #6a8e73;
  border: 2px solid #6a8e73;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #6a8e73;
  color: white;
  transform: translateY(-2px);
}

/* Quick Links Section */
.quick-links {
  background-color: #f8f6f1;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.link-card {
  display: block;
  background: white;
  padding: 2rem;
  color: inherit;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(106, 142, 115, 0.2);
  border-color: #6a8e73;
}

.link-card h3 {
  font-size: 1.3rem;
  color: #6a8e73;
  margin-bottom: 1rem;
  font-weight: 500;
}

.link-card p {
  color: #555;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #3a3a3a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  color: #6a8e73;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.footer-info p {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.footer-social h4 {
  color: #6a8e73;
  margin-bottom: 1rem;
  font-weight: 400;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  color: #ccc;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #6a8e73;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    width: 100vw;
    max-width: 100vw;
    overflow: visible;
    z-index: 999999 !important;
  }

  .header-content {
    position: relative;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
  }

  /* Hide PC reservation button */
  .header-reservation {
    display: none !important;
  }

  /* Show mobile reservation bar */
  .reservation-bar {
    display: block !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    margin-left: auto;
  }

  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(106, 142, 115, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999998 !important;
    margin-left: 0 !important;
    padding-top: 140px;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    margin: 0 !important;
  }

  .nav-list li {
    border-bottom: 1px solid #e5e5e5;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }

  .nav-list a:hover {
    background-color: #f8f6f1;
  }

  .reservation-bar {
    padding: 0.5rem 0;
  }

  .reservation-btn-full {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
  }

  main {
    margin-top: 140px;
  }

  .home-page main {
    margin-top: 0 !important;
  }

  .page-hero {
    margin-top: 0;
    padding: 4rem 0 3rem;
  }

  .hero {
    height: 100vh;
    padding: 2rem 0;
    margin-top: 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links {
    flex-direction: row;
    gap: 1rem;
  }
}

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

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .link-card {
    padding: 1.5rem;
  }
}

/* Additional Page Styles */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #6a8e73, #8da88e);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
  margin-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(106, 142, 115, 0.6);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

/* Page-specific hero backgrounds */
.menu-page .page-hero {
  background-image: linear-gradient(
      135deg,
      rgba(106, 142, 115, 0.6),
      rgba(141, 168, 142, 0.6)
    ),
    url("../images/menu_img.jpg");
}

.staff-page .page-hero {
  background-image: linear-gradient(
      135deg,
      rgba(106, 142, 115, 0.6),
      rgba(141, 168, 142, 0.6)
    ),
    url("../images/staff_img.jpg");
}

.reviews-page .page-hero {
  background-image: linear-gradient(
      135deg,
      rgba(106, 142, 115, 0.6),
      rgba(141, 168, 142, 0.6)
    ),
    url("../images/reviews_img.jpg");
}

.news-page .page-hero {
  background-image: linear-gradient(
      135deg,
      rgba(106, 142, 115, 0.6),
      rgba(141, 168, 142, 0.6)
    ),
    url("../images/news_img.jpg");
}

.access-page .page-hero {
  background-image: linear-gradient(
      135deg,
      rgba(106, 142, 115, 0.6),
      rgba(141, 168, 142, 0.6)
    ),
    url("../images/access_img.jpg");
}

.contact-page .page-hero {
  background-image: linear-gradient(
      135deg,
      rgba(106, 142, 115, 0.6),
      rgba(141, 168, 142, 0.6)
    ),
    url("../images/contact_img.jpg");
}

.page-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Menu Page Styles */
.menu-section {
  padding: 4rem 0;
}

.menu-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.8rem;
  color: #6a8e73;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 400;
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #6a8e73;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.menu-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(106, 142, 115, 0.2);
  border-color: #6a8e73;
}

.menu-name {
  font-size: 1.3rem;
  color: #6a8e73;
  margin-bottom: 1rem;
  font-weight: 500;
}

.menu-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.menu-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.menu-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #6a8e73;
}

.menu-time {
  color: #999;
  font-size: 0.9rem;
}

/* Menu Notes */
.menu-notes {
  background-color: #f8f6f1;
  padding: 4rem 0;
}

.notes-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.note-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
}

.note-item h3 {
  color: #6a8e73;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.note-item ul {
  list-style: none;
}

.note-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  line-height: 1.6;
}

.note-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6a8e73;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #6a8e73, #8da88e);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta-btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #6a8e73;
}

/* Staff Page Styles */
.staff-section {
  padding: 4rem 0;
}

.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.staff-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(106, 142, 115, 0.1);
  transition: all 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(106, 142, 115, 0.15);
}

.staff-image {
  display: flex;
  align-items: flex-start;
}

.staff-photo-placeholder {
  width: 220px;
  height: 280px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.1rem;
  border: 2px solid #e5e5e5;
}

.staff-photo {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid #e5e5e5;
}

.staff-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.staff-name {
  font-size: 2rem;
  color: #6a8e73;
  font-weight: 500;
  margin: 0;
}

.staff-title {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  font-weight: 400;
}

.staff-experience {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: #f8f6f1;
  border-radius: 25px;
  width: fit-content;
}

.experience-label {
  color: #555;
  font-size: 0.9rem;
}

.experience-value {
  color: #6a8e73;
  font-weight: 600;
  font-size: 1.1rem;
}

.staff-specialties,
.staff-message,
.staff-qualifications {
  background: #f8f6f1;
  padding: 1.5rem;
  border-radius: 15px;
}

.staff-specialties h3,
.staff-message h3,
.staff-qualifications h3 {
  color: #6a8e73;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.staff-specialties ul,
.staff-qualifications ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.staff-specialties li,
.staff-qualifications li {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #555;
  text-align: center;
  font-size: 0.9rem;
  border: 1px solid #e5e5e5;
}

.staff-message p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Staff Philosophy */
.staff-philosophy {
  background-color: #f8f6f1;
  padding: 4rem 0;
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  text-align: center;
}

.philosophy-item h3 {
  color: #6a8e73;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.philosophy-item p {
  color: #555;
  line-height: 1.7;
}

/* Responsive for Staff Page */
@media (max-width: 768px) {
  .staff-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .staff-image {
    justify-content: center;
  }

  .staff-photo-placeholder {
    width: 180px;
    height: 220px;
  }

  .staff-photo {
    width: 180px;
    height: 220px;
  }

  .staff-experience {
    align-self: center;
  }

  .staff-specialties ul,
  .staff-qualifications ul {
    grid-template-columns: 1fr;
  }
}

/* Reviews Page Styles */
.reviews-summary {
  background-color: #f8f6f1;
  padding: 3rem 0;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #6a8e73;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

.star.filled {
  color: #ffc107;
}

/* Google Reviews Section */
.google-reviews {
  padding: 4rem 0;
}

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

.google-reviews-widget {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(106, 142, 115, 0.1);
}

.embed-note {
  background: #e8f5e8;
  padding: 1.5rem;
  border-radius: 10px;
  color: #4a6741;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.9rem;
  border-left: 4px solid #6a8e73;
}

.sample-embed iframe {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Reviews */
.featured-reviews {
  background-color: #f8f6f1;
  padding: 4rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(106, 142, 115, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 500;
  color: #6a8e73;
  font-size: 1.1rem;
}

.reviewer-age {
  color: #999;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.review-rating {
  display: flex;
  gap: 0.2rem;
}

.review-rating .star {
  color: #ffc107;
  font-size: 1.1rem;
}

.review-content {
  margin-bottom: 1.5rem;
}

.review-content p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.review-service {
  display: flex;
  justify-content: flex-end;
}

.service-tag {
  background: #6a8e73;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Review CTA */
.review-cta {
  padding: 4rem 0;
  text-align: center;
}

.review-cta p {
  color: #555;
  font-size: 1.1rem;
  margin: 2rem 0;
  line-height: 1.6;
}

/* Responsive for Reviews Page */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .summary-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* News/Blog Page Styles */
.news-content {
  padding: 4rem 0;
}

.news-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 2px solid #6a8e73;
  color: #6a8e73;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #6a8e73;
  color: white;
  transform: translateY(-2px);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.news-article {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  transition: all 0.3s ease;
}

.news-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(106, 142, 115, 0.15);
}

.article-image {
  flex-shrink: 0;
  width: 200px;
}

.image-placeholder {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  border: 2px solid #e5e5e5;
}

.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-date {
  color: #999;
  font-size: 0.9rem;
}

.article-category {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.article-category.campaign {
  background: #ff6b6b;
  color: white;
}

.article-category.news {
  background: #4ecdc4;
  color: white;
}

.article-category.tips {
  background: #45b7d1;
  color: white;
}

.article-category.story {
  background: #96ceb4;
  color: white;
}

.article-title {
  font-size: 1.3rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.article-excerpt {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: #f8f6f1;
  color: #6a8e73;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid #e5e5e5;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}

.page-btn {
  padding: 0.8rem 1.5rem;
  background: #6a8e73;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.page-btn:hover:not(:disabled) {
  background: #5a7a63;
  transform: translateY(-2px);
}

.page-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.page-current,
.page-total {
  font-size: 1.1rem;
  font-weight: 500;
  color: #6a8e73;
}

.page-divider {
  color: #999;
}

/* Responsive for News Page */
@media (max-width: 768px) {
  .news-article {
    flex-direction: column;
  }

  .article-image {
    width: 100%;
  }

  .image-placeholder {
    height: 200px;
  }

  .news-filter {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .article-title {
    font-size: 1.1rem;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .page-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

/* Access Page Styles */
.access-info {
  padding: 4rem 0;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.access-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-section {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
}

.info-title {
  color: #6a8e73;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  position: relative;
}

.info-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #6a8e73;
}

.info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.info-label {
  color: #555;
  font-weight: 500;
  font-size: 0.9rem;
}

.info-value {
  color: #3a3a3a;
  line-height: 1.6;
}

.phone-link {
  color: #6a8e73;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #5a7a63;
}

.access-methods {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
}

.access-method {
  margin-bottom: 2.5rem;
}

.access-method:last-child {
  margin-bottom: 0;
}

.method-title {
  color: #6a8e73;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.method-content {
  background: #f8f6f1;
  padding: 1.5rem;
  border-radius: 15px;
}

.route-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.route-item:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.route-name {
  color: #3a3a3a;
  font-weight: 500;
}

.route-time {
  color: #6a8e73;
  font-weight: 600;
  background: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

.route-description {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.map-section {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  height: fit-content;
}

.map-container {
  margin-bottom: 2rem;
}

.map-placeholder {
  background: #f8f6f1;
  border-radius: 15px;
  overflow: hidden;
}

.map-note {
  background: #e8f5e8;
  padding: 1.5rem;
  color: #4a6741;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
  border-left: 4px solid #6a8e73;
}

.sample-map iframe {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.map-link {
  padding: 0.8rem 1.5rem;
  background: #6a8e73;
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: #5a7a63;
  transform: translateY(-2px);
}

/* Parking Info */
.parking-info {
  background-color: #f8f6f1;
  padding: 4rem 0;
}

.parking-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.parking-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.parking-item {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(106, 142, 115, 0.1);
  text-align: center;
}

.parking-item h3 {
  color: #6a8e73;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.parking-item p {
  color: #3a3a3a;
  font-weight: 600;
  font-size: 1.1rem;
}

.parking-notes {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
}

.parking-notes h3 {
  color: #6a8e73;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.parking-notes ul {
  list-style: none;
}

.parking-notes li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #555;
  line-height: 1.6;
}

.parking-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6a8e73;
  font-weight: bold;
}

/* Access Tips */
.access-tips {
  padding: 4rem 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(106, 142, 115, 0.15);
}

.tip-card h3 {
  color: #6a8e73;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.tip-card p {
  color: #555;
  line-height: 1.7;
}

/* Responsive for Access Page */
@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .parking-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .info-label {
    font-weight: 600;
  }

  .route-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .map-links {
    flex-direction: column;
    align-items: center;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-methods {
  padding: 4rem 0;
  background-color: #f8f6f1;
}

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

.method-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(106, 142, 115, 0.15);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.method-card h3 {
  color: #6a8e73;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.method-info {
  color: #3a3a3a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.method-info strong {
  color: #6a8e73;
  font-size: 1.2rem;
}

.method-note {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.method-btn {
  display: inline-block;
  background: #6a8e73;
  color: white;
  padding: 1rem 2rem 0.75rem;
  border-radius: 32px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.method-btn:hover {
  background: #5a7a63;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(106, 142, 115, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: #3a3a3a;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.required {
  color: #e74c3c;
  font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "Yu Mincho", "YuMincho", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #6a8e73;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-text {
  color: #555;
  line-height: 1.6;
}

.privacy-link {
  color: #6a8e73;
}

.privacy-link:hover {
  text-decoration: underline;
}

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

.submit-btn {
  background: linear-gradient(135deg, #6a8e73, #8da88e);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 142, 115, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(106, 142, 115, 0.4);
}

.submit-note {
  color: #555;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: #f8f6f1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(106, 142, 115, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f6f1;
}

.faq-question h3 {
  color: #3a3a3a;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.faq-toggle {
  color: #6a8e73;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Contact Info Section */
.contact-info-section {
  padding: 4rem 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(106, 142, 115, 0.1);
  text-align: center;
}

.info-card h3 {
  color: #6a8e73;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.info-card p {
  color: #3a3a3a;
  line-height: 1.6;
}

.info-card small {
  color: #555;
  font-size: 0.9rem;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-container {
    padding: 2rem;
    margin: 0 1rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1rem;
  }

  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Parallax and Animation Styles */

/* Hero Section Parallax */
.hero {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  will-change: opacity, transform;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

/* Parallax Background Sections */
.parallax-bg {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(106, 142, 115, 0.1);
  z-index: 1;
}

.parallax-bg > * {
  position: relative;
  z-index: 2;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation */
.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}
.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}
.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}
.fade-in:nth-child(4) {
  transition-delay: 0.4s;
}
.fade-in:nth-child(5) {
  transition-delay: 0.5s;
}
.fade-in:nth-child(6) {
  transition-delay: 0.6s;
}

/* Enhanced Card Animations */
.link-card,
.menu-item,
.staff-card,
.review-card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.link-card:hover,
.menu-item:hover,
.staff-card:hover,
.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(106, 142, 115, 0.2);
}

/* Header Scroll Effect */
.header {
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(106, 142, 115, 0.15);
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(106, 142, 115, 0.3);
  }
  50% {
    box-shadow: 0 6px 25px rgba(106, 142, 115, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(106, 142, 115, 0.3);
  }
}

.cta-btn,
.reservation-btn {
  animation: pulse 2s infinite;
}

.cta-btn:hover,
.reservation-btn:hover {
  animation: none;
}

/* Improved Transitions */
* {
  transition-property: transform, opacity, background-color, color, border-color,
    box-shadow;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .mobile-device .parallax-bg {
    background-attachment: scroll;
  }

  .mobile-device .link-card:hover,
  .mobile-device .menu-item:hover,
  .mobile-device .staff-card:hover,
  .mobile-device .review-card:hover {
    transform: none;
  }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}
