/* 全体の基本設定 */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
}

/* ヘッダー全体 */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* ロゴ画像 */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 48px;
}

/* ナビゲーション（PC用） */
.nav-links {
  display: flex;
  gap: 60px;
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

/* ショッピングカート*/
.cart {
   font-size: 30px;
}
/* ハンバーガーアイコンのスタイル */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #333;
  display: block;
}
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: 48px;
  color: white;
  /* text-shadow 削除 */
  margin: 0;
}

.hero-text p {
  font-size: 20px;
  color: white;
  /* text-shadow 削除 */
  margin-top: 16px;
}

/* レスポンシブ対応まとめ（1つに統合） */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px;
  }

  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid #eee;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .right-section {
    display: none;
  }

  nav a {
    padding: 12px 0;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .logo img {
    height: 28px;
  }

  /* ▼ レスポンシブ対応 */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  header {
    padding: 12px 16px;
  }
}
}