/* リセット */
body {
  margin: 0;
}

/* ヘッダー */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  height: 100px;
  width: auto;
}

/* メニュー */
.nav {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* メインビジュアル */
.hero {
  height:70vh; /* ←ここで高さ調整 */
  overflow: hidden;
}

.mv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト */
.mv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 36px;
  font-weight: bold;
}

.latest-posts {
  padding: 60px 20px;
}

.posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.post-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid #ddd;
}