body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* 共通 */
.section {
  padding: 80px 40px;
}

/* ヒーロー */
.hero {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  bottom: 10%;
  left: 8%;
}
.hero-overlay h1 {
  font-size: 70px;
  letter-spacing: 5px;
}

/* ナビ */
.main-nav {
  display: flex;
}
.main-nav a {
  flex: 1;
  padding: 40px;
  text-align: center;
  background: #111;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}
.main-nav a:hover {
  background: #c00;
}

/* カード */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card-item {
  position: relative;
  overflow: hidden;
}
.card-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}
.card-item:hover img {
  transform: scale(1.1);
}
.card-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 18px;
}

/* NEWS */
.news h2 {
  margin-bottom: 20px;
}

/* 店舗 */
.shop {
  background: #111;
  text-align: center;
}

/* フッター */
.footer {
  text-align: center;
  padding: 30px;
  background: #000;
  font-size: 12px;
}