/* ==========================================================================
   L1 旅行・体験特集トップ 共通スタイル (feature-experience.css)
========================================================================== */

.feature-l1travel {
  padding: 16px 0 60px;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}
.feature-l1travel * {
  box-sizing: border-box;
}
.feature-l1travel a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.feature-l1travel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* --------------------------------------
   ヒーローエリア (キービジュアル)
-------------------------------------- */
.fl1-hero {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #222 url('https://images.unsplash.com/photo-1503899036084-c55cdd92da26?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.fl1-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.fl1-hero__badge {
  display: inline-block;
  width: max-content;
  background-color: #d93a3a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.fl1-hero__title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.fl1-hero__lead {
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

/* --------------------------------------
   セクション共通
-------------------------------------- */
.feature-l1travel__section {
  background-color: #f7f6f2; /* 薄いベージュ */
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.feature-l1travel__section-header {
  margin-bottom: 20px;
}
.feature-l1travel__section-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}
.feature-l1travel__section-lead {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* --------------------------------------
   1. ピックアップ特集 (4列×3行)
-------------------------------------- */
.fl1-pickup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fl1-pickup-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fl1-pickup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.fl1-pickup-card__img-wrap {
  width: 100%;
  aspect-ratio: 682 / 380;
  overflow: hidden;
  background-color: #f1f1f1;
}
.fl1-pickup-card:hover .fl1-pickup-card__img-wrap img {
  transform: scale(1.03);
}
.fl1-pickup-card__body {
  padding: 10px 12px;
  flex-grow: 1;
}
.fl1-pickup-card__title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  line-height: 1.4;
}
.fl1-pickup-card__desc {
  font-size: 11px;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

/* --------------------------------------
   2. カテゴリから探す (3列 + タグ)
-------------------------------------- */
.fl1-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fl1-cat-item {
  display: flex;
  flex-direction: column;
}
.fl1-cat-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
  margin-bottom: 10px;
}
.fl1-cat-card:hover {
  transform: translateY(-2px);
}
.fl1-cat-card:hover img {
  transform: scale(1.03);
}
.fl1-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  padding: 16px 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.fl1-cat-card__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 2px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fl1-cat-card__sub {
  font-size: 11px;
  margin: 0;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* カテゴリ下部のタグリスト */
.fl1-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fl1-cat-tag__link {
  display: inline-block;
  padding: 5px 12px;
  background-color: #fff;
  border: 1px solid #dcdce0;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #444;
  transition: all 0.2s ease;
}
.fl1-cat-tag__link:hover {
  background-color: #f2f2f5;
  border-color: #b0b0b8;
  color: #111;
}

/* --------------------------------------
   3. 地域から探す (4列)
-------------------------------------- */
.fl1-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fl1-nav-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e2e8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}
.fl1-nav-card:hover {
  border-color: #d93a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.fl1-nav-card__body {
  flex-grow: 1;
  min-width: 0;
}
.fl1-nav-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}
.fl1-nav-card__desc {
  font-size: 11px;
  color: #777;
  margin: 2px 0 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fl1-nav-card__arrow {
  font-size: 14px;
  color: #888;
  font-weight: bold;
  margin-left: 8px;
  flex-shrink: 0;
}

/* フッター戻るボタン */
.feature-l1travel__back-wrap {
  margin-top: 36px;
  text-align: center;
}
.feature-l1travel__back-link {
  display: inline-flex !important;
  width: auto !important;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}
.feature-l1travel__back-link:hover {
  text-decoration: underline;
}

/* --------------------------------------
   レスポンシブ (タブレット・スマホ)
-------------------------------------- */
@media (max-width: 1024px) {
  .fl1-pickup-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fl1-cat-grid,
  .fl1-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .fl1-hero {
    height: 180px;
  }
  .fl1-hero__title {
    font-size: 22px;
  }
  .fl1-hero__lead {
    font-size: 12px;
  }
  .fl1-pickup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }
  .fl1-cat-grid,
  .fl1-card-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .feature-l1travel__section {
    padding: 16px;
  }
}