/* ---------------------------------
   全体リセット・ベーススタイル
--------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
  background-color: #ffffff; /* 背景白 */
  color: #019999; /* フォントカラー（ベースカラーと同じ） */
}
/* リンクカラー */
a {
  color: #019999; /* ベースカラー */
  text-decoration: none;
}
a:hover {
  color: #E9F5EF; /* 効かせ色 */
}
/* ---------------------------------
   ヘッダー
--------------------------------- */
header {
  background-color: #ffffff; /* 背景白 */
  padding: 20px;
  text-align: center;
}
header h1 {
  font-size: 2rem;
  color: #019999; /* タイトルベースカラー */
}
/* ---------------------------------
   メインコンテンツ
--------------------------------- */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}
.hotel-list {
  display: flex;
  gap: 20px; /* アイテム間の隙間 */
}
.hotel-item {
  border: 1px solid #ccc;
  padding: 10px;
  width: 180px; /* 必要に応じて調整 */
  text-align: center;
}
.spot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.spot-item {
  flex: 1 1 260px;
  text-align: center;
}
.spot-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
section {
  color: #222; /* 文字色 */
}
.spot-list {
  display: flex;
  justify-content: center; /* 横並び中央寄せ */
  gap: 20px; /* アイテム間の隙間 */
  margin-top: 20px;
}
.spot-item {
  text-align: center;
}
section hr {
  border: none; /* 既存の線を消す */
  height: 1px; /* 線の高さは維持 */
  background: none; /* 背景色もなし */
  margin: 10px 0; /* 上下の余白は調整可能 */
}
/* ---------------------------------
   フッター
--------------------------------- */
footer {
  background-color: #E9F5EF; /* 効かせ色 */
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #019999;
}
/* ---------------------------------
   見出し
--------------------------------- */
h1, h2, h3 {
  margin-bottom: 1rem;
  color: #019999;
}
h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}
/* ---------------------------------
   リスト
--------------------------------- */
ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1rem;
}
/* ---------------------------------
   投稿・固定ページ
--------------------------------- */
.post-thumbnail img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
.post-meta {
  font-size: 0.9rem;
  color: #019999;
  margin-bottom: 1rem;
}
.post-content p {
  margin-bottom: 1rem;
}
/* ---------------------------------
   施設情報（サポート・ホテル用）
--------------------------------- */
.hotel-info, .service-info {
  background-color: #E9F5EF; /* 効かせ色 */
  padding: 15px;
  border-radius: 5px;
  margin-top: 1.5rem;
}
.hotel-info h2, .service-info h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #019999;
}