/* -------------------------- */
/* 1. メインビジュアル (park.jpg) */

.banner-img {
  max-width: var(--content-width); 
  margin: 1.5rem auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.park-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 30rem; 
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro-container {
  max-width: var(--content-width); 
  margin: 2rem auto;
  padding: 0 1.25rem;
}

.intro-card {
  background-color: #fff;
  border-left: 6px solid var(--primary-yellow); 
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 0 1rem 1rem 0;
}

.intro-title {
  font-size: 1.5rem;
  color: var(--text-yellow); 
  margin: 0 0 0.75rem 0;
  font-weight: bold;
}

.intro-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 0;
  color: #333;
}

@media (max-width: 768px) {
  .intro-title { font-size: 1.25rem; }
  .intro-lead { font-size: 1rem; }
}

/* -------------------------- */
/* 2. お知らせセクション (notice.inc) */

.important-notice-section {
  max-width: var(--content-width);
  margin: 2.5rem auto;
  padding: 0 1.25rem;
}

.important-notice-card {
  background-color: #fff;
  border: 1px solid var(--soft-yellow);
  border-top: 4px solid var(--primary-yellow); 
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.05);
}

.important-notice-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--soft-yellow);
}

.important-notice-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-yellow);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* リストとアコーディオン */
.important-notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.important-notice-item {
  border-bottom: 1px solid #f0f0f0;
}

.important-notice-item:last-child {
  border-bottom: none;
}

/* ボタン（日付＋タイトルの行） */
.important-notice-link {
  transition: background-color 0.2s;
}

.important-notice-link:hover {
  background-color: var(--bg-yellow-light) !important;
}

.notice-date {
  font-size: 0.95rem;
  color: #6f6f6f !important;
}

.notice-text {
  font-size: 1.1rem;
  color: #333;
}

/* 本文エリア */
.notice-body {
  display: none;
  padding: 0 1rem 1.5rem 0; 
  margin-top: 0.45rem;
  margin-left: 7.5rem; 
  
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  white-space: normal; 
  word-break: break-all;
}

/* -------------------------- */
/* 3. 予約方法セクション (reserve.inc) */

.quick-search-section {
  max-width: var(--content-width);
  margin: 2.5rem auto;
  padding: 0 1.25rem;
}

.quick-search-card {
  background-color: var(--bg-yellow-light); 
  border: 1px solid var(--soft-yellow);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.search-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-yellow);
  margin: 0;
}

.search-info-text {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

/* -------------------------- */
/* 4. レスポンシブ調整（スマホ） */

@media (max-width: 768px) {
  .important-notice-card,
  .quick-search-card {
    padding: 1.5rem 1rem;
  }
  
  .important-notice-title,
  .search-card-title {
    font-size: 1.25rem;
  }

  .notice-date {
    margin-right: 1rem !important;
  }

  .notice-body {
    padding-left: 1rem !important; 
  }
}