@charset "utf-8";

/* ===============================
  基本
=============================== */
.fukubukuro {
  font-family:
    'Zen Kaku Gothic New',
    'Montserrat',
    'Hiragino Kaku Gothic ProN',
    'Noto Sans JP',
    Meiryo,
    sans-serif;
}

/* ===============================
  H2 ボックス
=============================== */
.fuku-h2box {
  max-width: 800px;
  margin: 30px 0 20px;
  padding: 20px 26px;
  background: linear-gradient(135deg, #f8fbfe 0%, #eef3f8 100%);
  border: 1px solid rgba(50, 70, 100, 0.28);
  border-left: 4px solid #bfa24a;
  color: #2f4053;
  box-sizing: border-box;
}

.fuku-h2box h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.fuku-h2box-flex {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.fuku-h2text {
  flex: 1;
}

.fuku-sub {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.fuku-h2bonus {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fuku-h2bonus img {
  max-width: 100%;
  height: auto;
}

/* ===============================
  福袋カセット一覧
=============================== */
.fukubukuro-list {
  max-width: 800px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 18px;
}

/* カセット本体 */
.fukubukuro-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.fukubukuro-thumb img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 14px;
  display: block;
}

/* 価格 */
.fuku-title {
  color: #c34040;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 6px;
  text-align: center;
}

/* 福袋キャッチ */
.fuku-catch {
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0 14px;
  text-align: center;
  line-height: 1.3;
}

/* ===============================
  中身リスト
=============================== */
.fuku-items {
  max-width: 360px;
  margin: 0 auto;
  padding: 0;
}

.fuku-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.item-thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 6px;
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}

.item-catch {
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
}

/* 注釈 */
.fuku-size-note {
  font-size: 13px;
  color: #555;
  margin: 6px 0 8px;
}

/* ===============================
  ボタン
=============================== */
.fuku-btn-wrap {
  margin-top: auto;
}

.fuku-btn {
  display: block;
  text-align: center;
  background: #2a288c;
  color: #fff !important;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid #ddc667;
  transition: background 0.2s ease;
}

.fuku-btn:hover {
  background: #ddc667;
  color: #2a288c !important;
}

/* ===============================
  SP（768px以下）
=============================== */
@media (max-width: 768px) {

  .fuku-h2box h2 {
    letter-spacing: normal;
  }

  .fuku-h2box-flex {
    flex-direction: column;
    align-items: center;
  }

  .fuku-h2bonus {
    width: 100%;
    margin-top: 12px;
  }

  .fukubukuro-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fukubukuro-item {
    padding: 14px;
  }

  .fukubukuro-thumb img {
    max-width: 260px;
  }

  .fuku-items {
    max-width: 100%;
  }

  .item-thumb {
    width: 80px;
    height: 80px;
  }

  .fuku-btn {
    font-size: 14px;
  }
}
