body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fafafa;
}

.lp {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #fff;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

h2 {
  margin-top: 40px;
  font-size: 20px;
  border-left: 5px solid #d33;
  padding-left: 10px;
}

.intro p {
  margin-bottom: 10px;
}


/* ランキング */
.ranking {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  min-height: 420px;
  position: relative;
}

/* バッジ */
.badge {
  position: absolute;
  top: -10px;
  left: -10px;
  background: gold;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 5px;
}

/* キャッチ */
.catch {
  font-size: 14px;
  color: #666;
}

/* 画像 */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin: 10px 0;
}

/* リスト */
.card ul {
  padding-left: 20px;
  margin: 10px 0;
}

.target {
  font-size: 13px;
  margin-top: 10px;
  color: #555;
}

/* ボタン */
.btn {
  display: block;
  text-align: center;
  background: #e60023;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-top: auto;
  text-decoration: none;
}

.btn:hover {
  background: #c4001a;
}


/* 選び方 */
.point h3 {
  margin-top: 15px;
}

/* FAQ */
.faq p {
  margin-bottom: 10px;
}

/* 商品一覧 */
.list-intro {
  margin-top: 10px;
}


/* スマホ対応 */
@media (max-width: 768px) {
  .ranking {
    grid-template-columns: 1fr;
  }
}



.mv {
  margin: 15px 0 25px;
}

.mv img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}