@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600&display=swap');

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --color-main: #ff8f3c;
  --color-main-soft: #ffb877;
  --color-main-deep: #d9660a;
  --color-accent: #7cc9e0;
  --color-bg-soft: #fff8f1;
  --color-base: #ffffff;
  --color-text: #3a3a3a;
  --color-text-sub: #707070;
  --color-border: #f0e8e0;
  
  --font-family-base: 'Noto Sans JP', 'Inter', sans-serif;
  --font-family-serif: 'Noto Serif JP', serif;
  
  --header-height-pc: 80px;
  --header-height-sp: 60px;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 40px rgba(210,120,40,0.08);
}


/* ==========================================================================
   Accessibility
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: 8px;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-main-deep);
  outline-offset: 2px;
}

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

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

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--color-text);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

a {
  color: var(--color-main-deep);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4vw;
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.bg-light {
  background-color: var(--color-bg-soft);
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 48px;
  color: var(--color-text);
  position: relative;
  font-family: var(--font-family-serif);
  letter-spacing: 0.02em;
}



/* Utility */
.sp-only {
  display: none;
}
.align-left {
  text-align: left;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 40px;
  background-color: var(--color-main-deep);
  color: var(--color-base);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: var(--shadow-sm);
  border: none;
  min-height: 44px;
}

.btn-contact {
  color: var(--color-base) !important;
}
.btn-contact:hover {
  color: var(--color-base) !important;
}

.btn-hero {
  background-color: var(--color-main-deep);
  color: var(--color-base);
  font-size: 1.125rem;
  padding: 16px 48px;
  box-shadow: var(--shadow-md);
}
.btn-hero:hover {
  background-color: var(--color-main-deep);
  color: var(--color-base);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-main-deep);
  color: var(--color-main-deep);
}
.btn-outline:hover {
  background-color: var(--color-main-deep);
  color: var(--color-base);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 16px 48px;
}

.btn-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Header (Common)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-pc);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(20px, 3vw, 40px);
  max-width: 1440px;
  margin: 0 auto;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-main-deep);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

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

.gnav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 32px);
}

.gnav-item a {
  color: var(--color-text);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  white-space: nowrap;
  position: relative;
  display: block;
  padding: 4px 0;
}

.gnav-item a:hover {
  color: var(--color-main-deep);
}

.gnav-item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-main-deep);
  transition: width 0.3s ease;
}

.gnav-item a:hover::after {
  width: 100%;
}

.header-contact-pc {
  margin-left: clamp(24px, 3vw, 48px);
  flex-shrink: 0;
}
.header-contact-sp {
  display: none;
}

.hamburger {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: clamp(560px, 82vh, 760px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height-pc);
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #333;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.is-active {
  background-color: var(--color-main);
  transform: scale(1.2);
}

/* Removed .hero::before white gradient */

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 4vw;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-family: var(--font-family-serif);
  font-size: clamp(32px, 5vw, 64px) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-weight: 600;
  color: var(--color-base);
}

.hero-text {
  font-size: clamp(16px, 2vw, 18px) !important;
  margin-top: 40px !important;
  margin-bottom: 56px;
  line-height: 1.9 !important;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
  font-weight: 500;
  color: var(--color-base);
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-lead {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-main-deep);
  margin-bottom: 24px;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.feature-card {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  background: var(--color-base);
  overflow: hidden;
  border: none;
  padding: clamp(32px, 4vw, 48px) !important;
}

.feature-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 50px rgba(210,120,40,0.12) !important;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  color: var(--color-main);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--color-main-deep);
}

.feature-text {
  color: var(--color-text-sub);
  font-size: 0.95rem;
  text-align: left;
}

/* ==========================================================================
   Schedule (Timeline)
   ========================================================================== */
.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 2px;
  background-color: var(--color-main-soft) !important;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-time {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background-color: var(--color-main);
  color: var(--color-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  box-shadow: 0 0 0 8px var(--color-base) !important;
  z-index: 1;
}

.timeline-content {
  background: var(--color-base);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.timeline-title {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--color-main-deep);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.news-item {
  border-bottom: 1px solid var(--color-border);
}

.news-item a {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  color: var(--color-text);
  transition: background-color 0.3s ease;
}

.news-item a:hover {
  background-color: var(--color-bg-light);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
  min-height: 44px;
}

.news-meta time {
  color: var(--color-text-sub);
  font-size: 0.95rem;
}

.news-category {
  background-color: var(--color-bg-soft);
  color: var(--color-main-deep);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

.news-title {
  font-size: 1rem;
  font-weight: 400;
  flex: 1;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  background-color: var(--color-bg-soft);
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  color: var(--color-main-deep);
  margin-bottom: 16px;
}

.cta-text {
  margin-bottom: 32px;
}

.cta-tel {
  margin-top: 24px;
  font-size: 1.25rem;
  font-weight: 500;
}

.cta-tel a {
  color: var(--color-text);
  font-size: 1.5rem;
}

.tel-note {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  font-weight: 300;
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.access-content {
  display: flex;
  gap: 40px;
  background: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.access-info {
  flex: 1;
  padding: 48px;
}

.access-name {
  font-size: 1.5rem;
  color: var(--color-main-deep);
  margin-bottom: 16px;
}

.access-address {
  margin-bottom: 24px;
}

.access-route h4 {
  font-size: 1rem;
  color: var(--color-text-sub);
  margin-bottom: 8px;
}

.access-route {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--color-border);
}

.access-map {
  flex: 1;
  min-height: 400px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Footer (Common)
   ========================================================================== */
.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 0 24px;
}

.footer a {
  color: #b0c4de;
}

.footer a:hover {
  color: #ffffff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-info {
  max-width: 400px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.footer-address {
  margin-bottom: 8px;
  color: #d1d9e6;
}

.footer-tel {
  font-size: 1.125rem;
  color: #d1d9e6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}

.copyright {
  font-size: 0.85rem;
  color: #8c9baf;
}

/* ==========================================================================
   Responsive (Tablet & SP)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .hero-title {
  font-family: var(--font-family-serif);
  font-size: clamp(32px, 5vw, 64px) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-weight: 600;
  color: var(--color-base);
}
  .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --header-height-sp: 60px;
  }
  
  .sp-only {
    display: inline-block;
  }
  
  .section {
  padding: clamp(64px, 10vw, 120px) 0;
}

  .section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 48px;
  color: var(--color-text);
  position: relative;
  font-family: var(--font-family-serif);
  letter-spacing: 0.02em;
}

  /* Header Mobile Menu */
  .header {
    height: var(--header-height-sp);
  }
  
  .header-inner {
    padding: 0 20px;
  }
  
  .header-logo a {
    font-size: 1.25rem;
  }
  
  .header-contact-pc {
    display: none;
  }
  
  .hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
  }
  
  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-main-deep);
    transition: all 0.3s ease;
  }
  
  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .hamburger span:nth-child(3) { bottom: 0; }
  
  /* Menu Open State */
  .hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  .gnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,0.98);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
    padding: 80px 20px 40px;
    overflow-y: auto;
  }
  
  .gnav.is-active {
    right: 0;
  }
  
  .gnav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .gnav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
  }
  
  .gnav-item a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
  }
  
  .gnav-item a::after {
    display: none;
  }
  
  .header-contact-sp {
    display: block;
    margin-top: 32px;
    text-align: center;
    width: 100%;
  }
  
  .header-contact-sp .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 40px;
  background-color: var(--color-main-deep);
  color: var(--color-base);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: var(--shadow-sm);
  border: none;
  min-height: 44px;
}

  /* Hero */
  .hero {
  height: clamp(560px, 82vh, 760px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height-sp);
}
  
  .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  z-index: 1;
}

  .hero-content {
  position: relative;
  z-index: 10;
  padding: 0 4vw;
  text-align: center;
  width: 100%;
}

  .hero-title {
  font-family: var(--font-family-serif);
  font-size: clamp(32px, 5vw, 64px) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-weight: 600;
  color: var(--color-base);
}

  .hero-text {
  font-size: clamp(16px, 2vw, 18px) !important;
  margin-top: 40px !important;
  margin-bottom: 56px;
  line-height: 1.9 !important;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
  font-weight: 500;
  color: var(--color-base);
}

  /* Features */
  .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
  
  /* News */
  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  /* CTA */
  .cta-title {
    font-size: 1.5rem;
  }

  /* Access */
  .access-content {
    flex-direction: column;
    gap: 0;
  }
  
  .access-info {
    padding: 32px 20px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================================================
   Page Header & Breadcrumb (STEP 2 Additions)
   ========================================================================== */
.breadcrumb {
  background-color: var(--color-base);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  margin-top: var(--header-height-pc);
  font-size: 0.85rem;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: var(--color-text-sub);
}
.breadcrumb a:hover {
  color: var(--color-main-deep);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: var(--header-height-sp);
  }
}

.page-header {
  padding: 120px 0 60px;
  background-color: var(--color-bg-soft);
  text-align: center;
}

.page-title {
  font-family: var(--font-family-serif);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--color-main-deep);
  letter-spacing: 0.05em;
  margin-top: 8px;
}


/* ==========================================================================
   Generic Components (STEP 2 Additions)
   ========================================================================== */
.content-box {
  background-color: var(--color-base);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  max-width: 900px;
  margin: 0 auto;
}
.text-center { text-align: center; }

/* About Page */
.mission-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 80px;
}
.mission-item {
  flex: 1;
  background-color: var(--color-bg-light);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  border-top: 4px solid var(--color-main);
}
.mission-item h3 {
  font-size: 1.5rem;
  color: var(--color-main-deep);
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .mission-wrap { flex-direction: column; }
}

/* Guide Page (Table & Steps) */
.step-list {
  max-width: 800px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-base);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 24px;
  position: relative;
}
.step-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-main-deep);
  margin-bottom: 8px;
}
.step-item h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-base);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-style: hidden;
}

.info-table th {
  background-color: var(--color-bg-soft);
  color: var(--color-main-deep);
  font-family: var(--font-family-serif);
  font-weight: 500;
  width: 30%;
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
@media screen and (max-width: 768px) {
  
}

/* Activities Page */
.event-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.event-list li {
  margin-bottom: 8px;
}
.note {
  font-size: 0.85rem;
  color: var(--color-text-sub);
}

/* FAQ Page (Accordion) */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover {
  color: var(--color-main-deep);
}
.accordion-header .icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.accordion-header .icon::before, .accordion-header .icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-main-deep);
  transition: transform 0.3s ease;
}
.accordion-header .icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.accordion-header .icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.accordion-header.is-active .icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-content {
  padding: 0 16px 24px;
  display: none;
}
.accordion-content.is-open {
  display: block;
}

/* Contact Page (Form) */
.contact-methods {
  text-align: center;
}
.contact-method-item .tel-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 8px 0;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}
.required {
  background-color: #e74c3c;
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-main-deep);
  box-shadow: 0 0 0 2px rgba(75,184,227,0.2);
}

/* Privacy Page */
.privacy-title {
  font-size: 1.25rem;
  color: var(--color-main-deep);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
/* Split Layout (Alternating Image & Text) */
.split-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.split-layout.reverse {
  flex-direction: row-reverse;
}
.split-image {
  flex: 1;
}
.split-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.split-text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .split-layout, .split-layout.reverse {
    flex-direction: column;
    gap: 24px;
  }
}

/* 2x2 Grid for Service Page */
.features-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.features-grid-2x2 .feature-card {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  background: var(--color-base);
  overflow: hidden;
  border: none;
  padding: clamp(32px, 4vw, 48px) !important;
}
.features-grid-2x2 .feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.features-grid-2x2 .feature-card .feature-content {
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  .features-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

.contact-input:focus, .contact-textarea:focus {
  border-color: var(--color-main-deep);
  box-shadow: 0 0 0 4px rgba(200, 90, 0, 0.1);
  outline: none;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .js-fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
  .js-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-main);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-header .section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 48px;
  color: var(--color-text);
  position: relative;
  font-family: var(--font-family-serif);
  letter-spacing: 0.02em;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}
.zigzag-img {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.zigzag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.zigzag-row:hover .zigzag-img img {
  transform: scale(1.03);
}
.zigzag-text {
  flex: 1;
}
.zigzag-text h3 {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 24px;
  color: var(--color-main-deep);
}
@media (max-width: 768px) {
  .zigzag-row, .zigzag-row:nth-child(even) {
    flex-direction: column;
    gap: 32px;
  }
}

/* Enhanced Features Card */
.feature-card {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  background: var(--color-base);
  overflow: hidden;
  border: none;
  padding: clamp(32px, 4vw, 48px) !important;
}
.feature-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 50px rgba(210,120,40,0.12) !important;
}
.feature-content {
  padding: 0 !important;
}

/* Hero Overhaul */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 4vw;
  text-align: center;
  width: 100%;
}
.hero-title {
  font-family: var(--font-family-serif);
  font-size: clamp(32px, 5vw, 64px) !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-weight: 600;
  color: var(--color-base);
}
.hero-text {
  font-size: clamp(16px, 2vw, 18px) !important;
  margin-top: 40px !important;
  margin-bottom: 56px;
  line-height: 1.9 !important;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
  font-weight: 500;
  color: var(--color-base);
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.hero-slide.is-active img {
  animation: kenBurns 8s infinite alternate ease-in-out;
}

/* Animations & 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;
  }
  .js-fade-up { opacity: 1 !important; transform: none !important; }
  .hero-slide.is-active img { animation: none !important; }
}

/* Timeline */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 2px;
  background-color: var(--color-main-soft) !important;
}
.timeline-time {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background-color: var(--color-main);
  color: var(--color-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  box-shadow: 0 0 0 8px var(--color-base) !important;
  z-index: 1;
}
.timeline-content {
  box-shadow: var(--shadow-md) !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 40px;
  background-color: var(--color-main-deep);
  color: var(--color-base);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: var(--shadow-sm);
  border: none;
  min-height: 44px;
}
.btn:hover {
  background-color: #b95506;
  color: var(--color-base);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-main-deep);
  color: var(--color-main-deep);
}
.btn-outline:hover {
  background-color: var(--color-main-deep);
  color: var(--color-base);
}
.btn-lg {
  padding: 20px 48px;
  font-size: 1.125rem;
}

section {
  scroll-margin-top: var(--header-height-pc);
}

.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }

/* 2x2 Grid for Reasons Section */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

.reasons-grid .feature-card {
  height: 100%;
}

.reasons-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.reasons-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
.reasons-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }
.reasons-grid .feature-card:nth-child(4) { transition-delay: 0.24s; }

/* ========================
   Logo Images
======================== */
.header-logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .header-logo-img {
    max-height: 50px;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-logo-img {
  max-height: 60px;
  width: auto;
  vertical-align: middle;
}
.footer-logo a {
  display: block;
  transition: opacity 0.3s;
}
.footer-logo a:hover {
  opacity: 0.8;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.lightbox-content-wrapper {
  position: relative;
  z-index: 10000;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
}
.lightbox-img-container {
  display: flex;
  align-items: center;
  position: relative;
}
.lightbox-image {
  display: block;
  max-width: 92vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.lightbox-prev, .lightbox-next {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
}
.lightbox-prev {
  left: -50px;
}
.lightbox-next {
  right: -50px;
}
@media (max-width: 768px) {
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  .lightbox-close { top: -35px; right: 10px; }
  .lightbox-image { max-width: 95vw; max-height: 80vh; }
}
/* Lightbox triggers inside gallery-grid */
.gallery-grid .lightbox-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-grid .lightbox-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid .lightbox-trigger:hover img {
  transform: scale(1.05);
}

/* 4 columns layout for PC */
@media (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Access Exterior */
.access-exterior {
  margin-top: 40px;
  text-align: center;
}
.access-exterior h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f39800;
}
.exterior-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.access-exterior-note {
  margin-top: 15px;
}
.access-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.access-photo-item {
  margin: 0;
}
.access-photo-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.access-photo-item figcaption {
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .access-photo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

button.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  overflow: hidden;
  cursor: zoom-in;
}
button.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}
button.gallery-item:hover img {
  transform: scale(1.02);
}
button.gallery-item:focus-visible {
  outline: 3px solid var(--color-main-deep, #005a9e);
  outline-offset: 4px;
}

/* ==========================================
   Form Alerts
========================================== */
.form-alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-weight: 500;
}
.form-alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.form-alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.consent-group {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 5px;
  width: 18px;
  height: 18px;
}
.turnstile-group {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.btn-contact:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}
