.fukubukuro-page {
  max-width: 900px;
  margin: auto;
  font-family: sans-serif;
  line-height: 1.6;
}

/* FV */
.hero {
  text-align: center;
  padding: 40px 20px;
}
.catch {
  font-size: 18px;
}
.lead {
  color: #555;
}

/* FVボタン */
.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background: #f2f2f2;
  color: #333;
  padding: 12px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.hero-btn:hover {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-2px);
}

/* 共感 */
.intro {
  padding: 20px;
}

/* 診断 */
.diagnose {
  background: #fff7f0;
  padding: 20px;
  border-radius: 10px;
}
.question-card {
  background: #fff;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
}
.choice {
  display: block;
  margin-top: 8px;
  background: #ff7a00;
  color: #fff;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
}

/* タイプ */
.types {
  display: block;
}

.type-card {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  text-align: center;
}

.type-card.highlight {
  border: 2px solid #ff7a00;
  background: #fff7f0;
}

/* &#9989; 商品画像（ここ重要：限定してる） */
.type-card img,
.item img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* 商品名 */
.item-name {
  font-weight: bold;
  margin: 10px 0;
}

/* 説明 */
.desc {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

/* おまかせ */
.item-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.item {
  background: #fafafa;
  border-radius: 8px;
  padding: 12px;
}

/* ボタン */
.btn {
  display: block;
  background: #ff7a00;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

/* 小ボタン */
.btn.small {
  font-size: 13px;
  padding: 8px;
}

/* タグ */
.tag {
  background: #ff7a00;
  color: #fff;
  padding: 3px 8px;
  display: inline-block;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 8px;
}

/* クロージング */
.closing {
  text-align: center;
  margin: 40px 0;
}

/* スマホ */
@media(max-width:600px) {
  .hero-buttons {
    flex-direction: column;
  }

  .type-card img {
    max-width: 100%;
  }
}





/* 商品リスト横幅制御（外枠） */
.custom-itemlist {
  max-width: 900px;
  margin: 0 auto;
}

