/* セクション全体 */
.custom-category-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.section-title {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}
.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* 8個のグリッド配置（PCは横2列、スマホは1列） */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; /* カード同士の隙間 */
}

/* カード基盤 */
.category-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 16px; /* 角丸 */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); /* 軽い影 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 画像とテキストを重ねるためのコンテナ */
.card-image-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
}
.card-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像の下部に重なるテキスト帯（千茶荘風アースカラー） */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(186, 163, 133, 0.9); /* 千茶荘風のベージュ（少し透過） */
  padding: 20px 24px;
  display: flex;
  justify-content: space-between; /* 左右に割り振り */
  align-items: center;
  line-height: 1.5;
}

/* カテゴリ名 */
.card-info h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* もっと見る */
.more-text {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.9;
  white-space: nowrap;
}

/* スマートフォン表示（画面幅768px以下は縦1列に） */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-info {
    padding: 15px 20px;
  }
  .card-info h3 {
    font-size: 16px;
  }
}