/* ===========================
   Fuwari - Dog Trimming Salon
   Design: Warm, cozy home salon with mint green accents
   Main Color: #76C7B0 (Mint Green)
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #76C7B0;
  --primary-light: #A8E6D5;
  --primary-dark: #5BA896;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #E8F5F1;
  --bg-white: #FFFFFF;
  --bg-mint: #76C7B0;
  --bg-mint-light: #C8E6D7;
  --border-color: #B8DFD1;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Typography */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  background-image: url('lace-flower.png');
  background-size: 400px 400px;
  background-repeat: repeat;
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.4;
}

/* ===========================
   Header & Navigation
   =========================== */

.header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}

.tel-icon {
  color: transparent;
  /* 影の色を好きな色（例: #3498db）に指定 */
  text-shadow: 0 0 0 #539e89;
}

.feature-icon {
  color: transparent;
  /* 影の色を好きな色（例: #3498db）に指定 */
  text-shadow: 0 0 0 #539e89;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.nav-link-logo {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link-logo:hover,
.nav-link-logo.active {
  color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.4rem;
  padding: 0.5rem;
}

.hamburger-menu span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
  gap: 1rem;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.nav-mobile.active {
  display: flex;
}

/* ===========================
   Main Content
   =========================== */

main {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem 0 4rem;
  min-height: 600px;
  background-image: url(hero-image.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

@media (max-width: 1024px) {
  .hero {
    /* 背景の固定を解除し、通常の挙動に戻す */
    background-attachment: scroll;

    /* スマホ用にパディングを調整（左右の余白を均等にする） */
    padding: 0 1.5rem;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    /* スマホでは中央寄せにすることが多いです */
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
    /* スマホに合わせて文字サイズを小さく調整 */
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(118, 199, 176, 0.7) 0%, rgba(168, 230, 213, 0.7) 100%);
  z-index: 1;
}

.hero::after {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 500px;
  padding: 2rem;
  color: var(--bg-white);
}

.hero-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--bg-white);
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}

.insta-link-container {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 3. 画像のサイズ調整（大きすぎる場合などに備えて） */
.insta-image {
  width: 50px;        /* 画像の幅（お好みで調整してください） */
  height: auto;       /* 縦横比を維持 */
  display: block;     /* aタグ内で画像の下に謎の隙間ができるのを防ぐため */
}

/*.hero-image-container {
  transform: translate(-50%, 0%);
  align-items: center;
  display: none;
}

.hero-image {
  display: none;
}*/

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--bg-white);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* ===========================
   About Section
   =========================== */

.about {
  padding: 4rem 2rem;
  background-color: var(--bg-mint-light);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url('lace-line.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  z-index: 10;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-description {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===========================
   Services Section
   =========================== */

.services {
  padding: 4rem 2rem;
  background-color: var(--bg-mint);
  color: var(--bg-white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url('lace-line.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  z-index: 10;
}

.services::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url('lace-line.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  z-index: 10;
}

.services .section-title {
  color: var(--bg-white);
}

.services .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid var(--primary-light);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--border-color);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

/* ===========================
   Owner Message Section
   =========================== */

.owner-message {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(118, 199, 176, 0.15) 0%, rgba(168, 230, 213, 0.15) 100%);
  position: relative;
}

.owner-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50,50 Q60,40 70,50 T90,50 M50,100 Q60,90 70,100 T90,100 M50,150 Q60,140 70,150 T90,150 M120,50 Q130,40 140,50 T160,50 M120,100 Q130,90 140,100 T160,100 M120,150 Q130,140 140,150 T160,150" stroke="rgba(118,199,176,0.08)" stroke-width="1" fill="none"/></svg>');
  background-size: 200px 200px;
  background-repeat: repeat;
  pointer-events: none;
}

.owner-content {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 12px;
}

/* ===========================
   CTA Section
   =========================== */

.cta {
  padding: 4rem 2rem;
  background-color: var(--bg-mint);
  text-align: center;
  color: var(--bg-white);
}

.cta .cta-title {
  color: var(--bg-white);
}

.cta .cta-description {
  color: rgba(255, 255, 255, 0.95);
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ===========================
   Calendar Section
   =========================== */

.calendar-section {
  padding: 3rem 2rem;
  background-color: var(--bg-mint-light);
  min-height: 100vh;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.calendar-container {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.calendar-nav {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.calendar-nav:hover {
  color: var(--primary-dark);
}

.calendar-month {
  font-size: 1.5rem;
  color: var(--text-dark);
  min-width: 200px;
  text-align: center;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.weekday {
  color: var(--primary-color);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.calendar-day.open {
  background-color: var(--primary-light);
  color: var(--bg-white);
}

.calendar-day.closed {
  background-color: #dfb9b8;
  color: var(--text-light);
}

.calendar-day.other-month {
  color: #ccc;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-color.open {
  background-color: var(--primary-light);
}

.legend-color.closed {
  background-color: #dfb9b8;
}

.calendar-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
}

.calendar-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.calendar-info p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

/* ===========================
   Menu Section
   =========================== */

.menu-section {
  padding: 3rem 2rem;
  background-color: var(--bg-mint-light);
  min-height: 100vh;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.menu-category {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.category-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.category-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-item {
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.category-item h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.price-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.price-table {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.table-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead {
  background-color: var(--primary-light);
  color: var(--bg-white);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover {
  background-color: var(--bg-light);
}

/* ===========================
   CTA Card
   =========================== */

.cta-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
  color: var(--bg-white);
}

.cta-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* ===========================
   Footer
   =========================== */

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-text a {
  color: var(--primary-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
  }

  .logo-title {
    font-size: 1.2rem;
  }

  .logo-subtitle {
    font-size: 0.65rem;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .menu-categories {
    grid-template-columns: 1fr;
  }

  .price-tables {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}


/* ===========================
   Page Header Section
   =========================== */

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--bg-white);
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.page-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

/* ===========================
   Access Page Styles
   =========================== */

.access-section {
  padding: 2rem 0;
  background-color: var(--bg-white);
}

.access-content {
  max-width: 900px;
  margin: 0 auto;
}

.address-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.address-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.access-note {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

.map-link-container {
  text-align: center;
  margin: 2rem 0;
}

.building-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.building-photo-item {
  text-align: center;
}

.building-photo-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

.parking-photo-container {
  width: fit-content;
  max-height: 243px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

.building-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.building-photo-label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.section-subtitle-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===========================
   Notice Page Styles
   =========================== */

.notice-section {
  padding: 2rem 0;
  background-color: var(--bg-white);
}

.notice-content {
  max-width: 900px;
  margin: 0 auto;
}

.notice-item {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.notice-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.notice-item-text {
  color: var(--text-dark);
  line-height: 1.7;
}

.notice-subsection {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-white);
  border-left: 3px solid var(--primary-light);
  border-radius: 4px;
}

.notice-subsection-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.consent-box {
  background-color: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.consent-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.consent-list {
  list-style: none;
  padding: 0;
}

.consent-list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  color: var(--text-dark);
  line-height: 1.7;
}

.consent-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===========================
   Responsive - Access & Notice
   =========================== */

@media (max-width: 768px) {
  .page-header {
    padding: 2rem 1rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .map-container {
    height: 300px;
  }

  .building-photos-grid {
    grid-template-columns: 1fr;
  }

  .notice-item {
    padding: 1rem;
  }

  .consent-box {
    padding: 1rem;
  }

  .consent-list li {
    padding: 0.5rem 0 0.5rem 1.25rem;
    font-size: 0.95rem;
  }
}


/* ===========================
   Menu & Pricing Page Styles
   =========================== */

.menu-section {
  padding: 3rem 0;
  background-color: var(--bg-white);
}

/* Service Overview */
.service-overview {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.service-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.service-category {
  padding: 1.5rem;
  background-color: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.category-heading {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  padding-left: 1.5rem;
  position: relative;
}

.service-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Menu Category Sections */
.menu-category-section {
  margin-bottom: 3rem;
}

.menu-category-section .section-title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

/* Price Tables */
.price-table-wrapper {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.table-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table thead {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.pricing-table th {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background-color: var(--bg-mint-light);
}

/* Options Section */
.options-section {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.option-category {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.option-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.option-category-title {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.option-list {
  list-style: none;
  padding: 0;
}

.option-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-mint-light);
  color: var(--text-dark);
}

.option-list li:last-child {
  border-bottom: none;
}

.option-name {
  font-weight: 500;
}

.option-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem;
}

.option-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-style: italic;
}

.option-set-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-white);
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
}

/* Hotel Information Section */
.hotel-info-section {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.hotel-info-category {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.hotel-info-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hotel-info-title {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hotel-info-list {
  list-style: none;
  padding: 0;
}

.hotel-info-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
  line-height: 1.6;
}

.hotel-info-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* CTA Card */
.cta-card {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-mint-light) 100%);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

/* ===========================
   Responsive - Menu & Pricing
   =========================== */

@media (max-width: 768px) {
  .menu-section {
    padding: 2rem 0;
  }

  .service-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-category {
    padding: 1rem;
  }

  .category-heading {
    font-size: 1.1rem;
  }

  .price-table-wrapper {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .table-title {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .options-section {
    padding: 1.5rem;
  }

  .option-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .option-category-title {
    font-size: 1rem;
  }

  .option-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .option-price {
    align-self: flex-start;
  }

  .hotel-info-section {
    padding: 1.5rem;
  }

  .hotel-info-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hotel-info-title {
    font-size: 1rem;
  }

  .cta-card {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .cta-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}


/* ===========================
   Shop Information Page Styles
   =========================== */

.shop-info-section {
  padding: 3rem 0;
  background-color: var(--bg-white);
}

.registration-info {
  margin-bottom: 3rem;
}

.registration-info h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.info-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.additional-info {
  background-color: var(--bg-mint-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.additional-info h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.additional-info p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-cta {
  display: flex;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .shop-info-section {
    padding: 2rem 0;
  }

  .registration-info h2 {
    font-size: 1.4rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-item {
    padding: 1rem;
  }

  .additional-info {
    padding: 1.5rem;
  }

  .additional-info h3 {
    font-size: 1.1rem;
  }
}
