* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #2f2b24;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Hiragino Kaku Gothic ProN", Meiryo, serif;
  line-height: 1.85;
  background: #f8f5ee;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img[src=""] {
  display: none;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e7decd;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}

.site-logo a {
  color: #4a2d22;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 7px 11px;
  border-radius: 6px;
  color: #3d362d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: #8f2f23;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 46px 0 40px;
}

.hero-image,
.photo-box,
.guide-card,
.place-card,
.item-card,
.map-box {
  background: #ebe1d1;
}

.hero-image {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image img,
.photo-box img,
.guide-card img,
.place-card img,
.item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  padding: 18px 0;
}

.hero h1,
.page-title h1 {
  margin: 0 0 16px;
  color: #4a2d22;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.hero p,
.page-title p {
  margin: 0;
  color: #665a4d;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.image-placeholder {
  margin: 0;
  padding: 30px 16px;
  color: #756757;
  text-align: center;
  font-weight: 700;
}

.page-title {
  padding: 44px 0 24px;
  border-bottom: 1px solid #e7decd;
}

.section {
  padding: 40px 0;
}

.section h2,
.guide-card h3,
.place-card h2,
.item-card h2,
.event-item h2 {
  margin: 0 0 14px;
  color: #4a2d22;
  line-height: 1.45;
}

.section h2 {
  font-size: 28px;
}

.section p {
  margin-top: 0;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e7decd;
  border-radius: 8px;
}

.news-list time {
  color: #8f2f23;
  font-weight: 700;
}

.news-list p {
  margin: 0;
}

.guide-grid,
.place-grid,
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.guide-card,
.place-card,
.item-card {
  overflow: hidden;
  border: 1px solid #e7decd;
  border-radius: 8px;
}

.guide-card img,
.place-card img,
.item-card img,
.guide-card .image-placeholder,
.place-card .image-placeholder,
.item-card .image-placeholder {
  aspect-ratio: 4 / 3;
}

.guide-card h3,
.guide-card p,
.guide-card a,
.place-card h2,
.place-card p,
.item-card h2,
.item-card p {
  margin-left: 20px;
  margin-right: 20px;
}

.guide-card h3,
.place-card h2,
.item-card h2 {
  margin-top: 20px;
  font-size: 22px;
}

.guide-card a {
  display: inline-block;
  margin-bottom: 20px;
  color: #8f2f23;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.photo-box {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e7decd;
  border-radius: 8px;
}

.info-table th,
.info-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #e7decd;
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  width: 190px;
  color: #4a2d22;
  background: #f0e7d8;
}

.notice-box,
.contact-note {
  padding: 24px;
  background: #ffffff;
  border-left: 5px solid #b98a46;
  border-radius: 8px;
}

.price {
  color: #8f2f23;
  font-weight: 700;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #e7decd;
  border-radius: 8px;
}

.event-month {
  display: grid;
  place-items: center;
  min-height: 78px;
  color: #ffffff;
  background: #8f2f23;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 700;
}

.map-box {
  display: grid;
  place-items: center;
  min-height: 300px;
  border-radius: 8px;
  color: #756757;
  font-weight: 700;
}

.contact-area {
  max-width: 760px;
}

.button {
  display: inline-block;
  margin: 14px 0 24px;
  padding: 13px 28px;
  border-radius: 6px;
  color: #ffffff;
  background: #8f2f23;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  background: #6f2118;
}

.button-sub {
  color: #8f2f23;
  background: #ffffff;
  border: 1px solid #8f2f23;
}

.button-sub:hover {
  color: #ffffff;
}

.site-footer {
  margin-top: 40px;
  padding: 28px 16px;
  color: #ffffff;
  text-align: center;
  background: #4a2d22;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.template-credit {
  font-size: 13px;
  opacity: 0.9;
}

.template-credit a {
  color: #ffffff;
}

@media (max-width: 900px) {
  .header-inner {
    display: block;
  }

  .site-logo {
    margin-bottom: 12px;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    text-align: center;
  }

  .hero,
  .two-column,
  .guide-grid,
  .place-grid,
  .item-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  main,
  .header-inner {
    width: min(100% - 24px, 1120px);
  }

  .site-nav ul,
  .news-list article,
  .event-item {
    grid-template-columns: 1fr;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .hero-image {
    min-height: 260px;
  }
}
