@charset "UTF-8";

/* ページ全体 */
.recommend-container {
  padding-top: 16px;
  padding-bottom: 40px;
}

/* セクションタイトル */
.section-title {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.18em;
  margin: 8px 0 4px;
}

.section-sub {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
}

/* タグタブ */
.tag-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.tag-tab {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
}

.tag-tab.is-active {
  background: #26c6da;
  border-color: #26c6da;
  color: #fff;
}

/* カード一覧 */
.pickup-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* カード本体 */
.pickup-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* サムネイル */
.pickup-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* テキスト部 */
.pickup-body {
  padding: 10px 14px 14px;
}

.pickup-label {
  font-size: 11px;
  color: #26c6da;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.pickup-title {
  font-size: 15px;
  margin-bottom: 6px;
}

.pickup-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.pickup-link {
  font-size: 13px;
  color: #007bff;
  text-decoration: underline;
}

/* 検索結果なし */
.no-result {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 24px;
}

/* PC幅時に2列表示にしてもOK */
@media (min-width: 768px) {
  .pickup-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pickup-card {
    width: calc(50% - 8px);
  }
}
/* タグチップ表示（カード内） */
.pickup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
  }
  
  .tag-chip {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid #e0f7fa;
    background: #e0f7fa;
    font-size: 10px;
    color: #00796b;
    line-height: 1.4;
  }
  