/* ベース設定 */
body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* ヘッダー */
header {
  background-color: #e0f5e9; /* 緑の柔らかいトーン */
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #2f6c4f; /* 深緑系 */
}

/* メインビジュアル */
.main-image {
  text-align: center;
  margin: 2rem 0;
}

.main-image img {
  max-width: 90%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
}

/* ナビゲーション */
.menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.menu a {
  text-decoration: none;
  color: #2f6c4f;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.menu a:hover {
  border-bottom: 2px solid #8c1c13; /* 差し色：赤 */
  color: #8c1c13;
}

/* Shopリンク（別枠） */
.shop-link {
  text-align: center;
  margin: 3rem 0;
}

.shop-link a {
  text-decoration: none;
  background-color: #2f6c4f;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.shop-link a:hover {
  background-color: #8c1c13;
}
