/* Hero */
.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(180, 150, 88, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* was inline style on hero button */
.hero-btn {
  border-color: #fff;
  color: #fff;
}

/* Services */
.services-section {
  padding: var(--spacing-xl) 0;
}

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

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: rgba(180, 150, 88, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* About */
.about-section {
  background-color: var(--color-white);
  padding: var(--spacing-xl) 0;
}

.about-layout {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.about-image {
  flex: 1;
  height: 400px;
  background-color: #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.about-image-inner {
  text-align: center;
}

.about-image-caption {
  margin-top: 10px;
}

.about-content {
  flex: 1;
}

.about-content h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.about-text {
  margin-bottom: 1.5rem;
  color: #555;
}

/* Section subtext (was inline style) */
.section-subtext {
  margin-top: 1rem;
  color: #666;
}

/* Access */
.access-section {
  padding: var(--spacing-xl) 0;
  background-color: #f1f5f9;
}

.access-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: 8px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.access-info {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.info-row--last {
  border-bottom: none;
}

.info-label {
  width: 120px;
  font-weight: bold;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Map Style (NEW) */
.access-map-container {
  margin-top: 2rem;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background-color: #f0f0f0; /* ロード中の背景色 */
}

.access-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.access-btn-wrapper {
  max-width: 320px;
  margin: 1.5rem auto 0; /* 中央寄せ */
}

.access-map-btn {
  min-width: 200px;
  max-width: 320px;
  width: 100%;
}

/* Contact CTA (was inline section styles) */
.contact-cta {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.contact-cta__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-cta__text {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.contact-cta__btn {
  background-color: var(--color-accent);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    gap: 1.5rem;
  }

  .nav-list.active {
    display: flex;
  }

  .about-layout {
    flex-direction: column;
  }

  .about-image {
    width: 100%;
    height: 250px;
  }
}

/* 特徴リスト */
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--color-primary);
}
.feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}