@charset "UTF-8";

/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, div, section, header, footer, main {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.6;
}

/* 基本設定 */
body {
  background-color: #f3e9dd;
  color: #5c3b1e;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

/* コンテナ（重複を統合） */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff; 
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* タイトル */
header {
  margin-bottom: 40px;
}
header h1 {
  font-size: 52px;
  font-weight: bold;
  color: #b22222;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
header .hero {
  width: 100%;
  height: auto;
  display: block;
}

/* セクション */
section {
  margin-bottom: 64px;
}

/* h2画像 */
h2 {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 1;
}
h2 img {
  width: 256px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

/* 共通ブロック */
section div {
  margin-bottom: 24px;
  text-align: left;
}
p {
  margin: 8px 0 0;
}

/* 共通画像 */
section img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 見出し */
h3 {
  font-size: 20px;
  margin-top: 10px;
  color: #5c3b1e;
}
h4 {
  font-size: 18px;
  margin-top: 5px;
  color: #7a4b2b;
}

/* リスト */
ol, ul {
  padding-left: 20px;
  text-align: left;
}
li {
  margin-bottom: 5px;
}

/* イベント：横並び */
.flex-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.flex-row .tall {
  width: 38%;
}
.flex-row .text {
  width: 62%;
}

/* みどころ・グルメ：グリッド */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  text-align: left;
}
.card .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.card h3, .card h4 {
  margin-top: 8px;
}

/* グルメ画像：丸くする */
.gourmet .card .thumb {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  display: block;
}

/* マスコット */
.mascot-character .mascot {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 8px;
}
.mascot-character .unakichi,
.mascot-character .bko {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.mascot-character .bko {
  flex-direction: row-reverse;
}
.mascot-character .text {
  flex: 1;
  text-align: left;
}

/* アクセス */
.access-information .access-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.access-information .map {
  width: 320px;
  border-radius: 8px;
}
.access-information .text {
  flex: 1;
  text-align: left;
}

/* 情報 */
.info-block {
  text-align: left;
}
.info-block h3 {
  margin-bottom: 8px;
}
.info-block ul {
  padding-left: 20px;
}
.info-block li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

/* フッター */
footer {
  text-align: center;
  padding: 32px 0;
  background-color: #f5e6d8;
}
footer p {
  font-size: 14px;
  color: #7a4b2b;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .container {
    padding: 12px;
  }

  header h1 {
    font-size: 36px;
  }

  h2 img {
    width: 96px;
    margin-bottom: 16px;
  }

  .flex-row {
    flex-direction: column;
  }
  .flex-row .tall,
  .flex-row .text {
    width: 100%;
  }

  .grid-3col {
    grid-template-columns: 1fr;
  }

  .mascot-character .unakichi,
  .mascot-character .bko,
  .access-information .access-block {
    flex-direction: column;
    text-align: center;
  }

  .mascot-character .mascot {
    width: 100%;
    height: auto;
  }

  .access-information .map {
    width: 100%;
  }

  .mascot-character .text,
  .access-information .text {
    text-align: left;
  }
}
