@charset "UTF-8";

/* =========================================
   庭園紹介ページ (Garden) 特有のスタイル
   ========================================= */

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 20%;
}

.content-section {
  margin-bottom: 80px;
}

.content-section h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  font-family: "Yuji Syuku", serif;
}

.content-section h4 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 15px;
  font-family: "Shippori Mincho", serif;
}

.content-section p {
  font-size: 1rem;
  margin-bottom: 1.5em;
  color: var(--muted);
  line-height: 2;
}

/* 太字箇所のスタイル（より強調したい場合は色を変えるなども可能） */
.content-section strong {
  font-weight: 600;
  color: var(--ink); /* 文字色を少し明るくして強調 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 下線を引く */
}

.content-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* 庭園のディテールリスト */
.detail-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.detail-list li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--line);
}

.detail-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-list h5 {
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  color: var(--gold);
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
}

.back-action {
  text-align: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}