body {
  max-width: 100%;
}
h3 { display: none; }
.random_img { display: none; }

ul.wp-block-latest-posts__list.news_list.wp-block-latest-posts li {
  padding: 8px 0 2px;
  color: #7D4634;
  border-bottom: 1px dotted #7D4634;
}
.wp-image-7803:hover,
.wp-image-7804:hover,
.wp-image-7818:hover {
  outline: 3px solid blue;
  overflow: hidden;
  display: block;
}
.wp-block-columns { padding: 0 20px; }

/* ── ニュースリスト ── */
section { margin: 0; padding: 0; }

.wp-block-latest-posts__list.news_list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.news_list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}
.news_list li:last-child { border-bottom: none; }
.news_list .wp-block-latest-posts__post-title {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}
.news_list .wp-block-latest-posts__post-title:hover { color: #7D4634; }
.news_list .wp-block-latest-posts__post-date {
  font-size: 0.85rem;
  color: #999;
  justify-self: end;
  white-space: nowrap;
}
.news_list li:hover { background-color: #f9f9f9; }
@media (max-width: 600px) {
  .news_list li { grid-template-columns: 1fr; row-gap: 0.5rem; }
  .news_list .wp-block-latest-posts__post-date { justify-self: start; font-size: 0.8rem; }
}

/* ── ヒーロースライダー ── */
.hero {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 10px;
}
.hero .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute;
  color: white;
  font-size: 2rem;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

/* ── トップメニュー ── */
.top_menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.top_menu a { display: block; overflow: hidden; border-radius: 6px; }
.top_menu img.onM {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.top_menu a:hover img.onM {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .top_menu { grid-template-columns: repeat(2, 1fr); }
  .wp-block-columns { padding: 0 40px; }
}
@media (max-width: 480px) {
  .top_menu { grid-template-columns: 1fr; }
}
