.lp-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

/* タイトル */
.lp-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

/* バナー画像 */
.lp-banner img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;   /* cover → contain に変更 */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* 説明文 */
.lp-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* 各商品セクション */
.lp-section {
  padding: 25px 15px;
  border-radius: 10px;
  margin-bottom: 45px;
}
/* バナー画像 */
.item-banner img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;   /* cover → contain に変更 */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}
/* 見出し */
.lp-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.lp-subheading {
  margin: 15px 0;
  font-size: 18px;
  font-weight: bold;
}

/* 商品２列 */
.lp-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lp-item img {
  width: auto;         /* ← ここをautoにするのが重要 */
  max-width: 100%;
  max-height: 340px;
  display: block;
  margin: 0 auto;       /* ← 真ん中寄せ */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.lp-name {
  font-size: 13px;
  font-weight: bold;
}

.lp-sale {
  font-size: 18px;
  font-weight: bold;
  color: #d6006b;
  margin: 3px 0;
}

.lp-price {
  font-size: 20px;
  color: #e60000;
  font-weight: bold;
}
.lp-off {
  font-size:  14px;
  color: #fff;
  background: #c00;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}
/* スマホ調整 */
@media (max-width: 600px) {
  .lp-items {
    grid-template-columns: 1fr 1fr; /* スマホでも2列固定 */
  }
  .lp-title {
    font-size: 26px;
  }
}

/* LP全体中央寄せのベース ここから */
.lp-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
  text-align: center; /* ← 全要素の基準を中央寄せ */
}

/* セクションごとに左寄りに戻したい場合は .lp-text-align-left を付ければ戻せる仕様に */
.lp-wrap .lp-text-align-left {
  text-align: left;
}

/* グリッド（商品画像の横並び）は中央揃えを維持 */
.lp-items {
  display: grid;
  gap: 18px;
  justify-content: center; /* グリッド全体の位置を中央へ */
}

/* 商品画像の中央寄せ */
.lp-item img {
  width: auto;
  max-width: 100%;
  max-height: 340px;
  display: block;
  margin: 0 auto; /* ← 中央寄せ */
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* 商品名などテキストも中央寄せキープ */
.lp-name,
.lp-sale,
.lp-price {
  text-align: center;
  margin: 0 auto;
  display: block;
}

/* LP全体中央寄せのベース ここまで */