@charset "utf-8";
/* CSS Document */

/*-------------------------------------------------
	ジャンルカテゴリ ページ用CSS
-------------------------------------------------*/


/* 見出し */
.common_headline1_ {
  font-size: 2em;
  font-weight: bold;
  margin: 1.5em 0;
}

/* 販促物ダウンロードボタン */
.promotional-material-container {
  text-align: center;
  margin-bottom: 2em;
}

.promotional-material-link {
  display: inline-block;
  background-color: #f0a26c; /* 通常時のオレンジ（淡め） */
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 4px;
  font-size: 1.1em;
  text-decoration: none;
  border: 1px solid #e66628;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* ホバー時：濃いオレンジ */
.promotional-material-link:hover {
  background-color: #e66628; /* GAIAオレンジ */
  transform: translateY(-2px);
}

/* eventブロック */
.event {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5em 2em;
  background-color: #f9f9f9;
  border-radius: 8px;
  line-height: 1.8;
  font-size: 1em;
  color: #333;
}

.event_h2 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.8em;
  text-align: left;
  color: #444;
}

/* 赤文字部分 */
.event font[color="red"] {
  color: #c0392b;
  font-weight: bold;
}

/* --- 商品カテゴリーリンク（ミルク＆ホワイトなど） --- */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px; /* 上下・左右の間隔 */
  margin: 32px auto;
  max-width: 900px;
}

/* 各ボタン */
.category-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 52px;
  padding: 0 1em;
  background-color: #f7f6f3;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  font-size: 0.95em;
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.25s ease;
}

/* ホバー時：GAIAオレンジ */
.category-buttons a:hover {
  border-color: #e66628;
  color: #e66628;
  background-color: #fff;
  transform: translateY(-2px);
}

/* スマホ調整 */
@media (max-width: 600px) {
  .category-buttons a {
    min-width: 100%;
    height: 48px;
    font-size: 0.9em;
  }
}

/* カテゴリで絞り込むボタン */
.category-button {
  text-align: center;
  margin: 2.5em 0 2em;
}

.category-button a {
  display: inline-block;
  background-color: #66715d; /* GAIAのグリーングレー */
  color: #fff;
  font-size: 1.05em;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.9em 2.8em;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.category-button a:hover {
  background-color: #7d8a6f; /* ホバー時は少し明るいグリーンへ */
  transform: translateY(-2px);
}
