* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f8f4ef;
  font-family: sans-serif;
}

/* ページ全体 */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* LP画像 */
.lp-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ボタンエリア */
.btn-wrap {
  text-align: center;
  margin-top: 40px;
}

/* minneボタン */
.btn {
  display: inline-block;
  background: #8c5562;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 16px 56px;
  border-radius: 3px;
}

.btn:hover {
  background: #6d3f4b;
}


/* ==============================
   商品ラインナップページ（lineup.html）
============================== */

/* ヘッダー */
.lu-header {
  text-align: center;
  padding: 52px 24px 36px;
  background: #f8f4ef;
  border-bottom: 1px solid #d7bf91;
}

.lu-back {
  display: inline-block;
  color: #7d6650;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.lu-back:hover { color: #4a3824; }

.lu-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  color: #4a3824;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.lu-lead {
  color: #7d6650;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* カードグリッド */
.lu-grid {
  max-width: 960px;
  margin: 48px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* 商品カード */
.lu-card {
  background: #fff;
  border: 1px solid #d7bf91;
}

/* 商品画像エリア（画像がない間はプレースホルダーを表示） */
.lu-img {
  height: 240px;
  background: #ede5d8 center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像がセットされたらプレースホルダーテキストを隠す */
.lu-img[style*="url("] .lu-img-placeholder { visibility: hidden; }

.lu-img-placeholder {
  color: #b89145;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.lu-body {
  padding: 20px 22px 24px;
}

.lu-body h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #4a3824;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.lu-price {
  font-size: 20px;
  color: #4a3824;
  margin-bottom: 12px;
}

.lu-price small {
  font-size: 13px;
  color: #7d6650;
}

.lu-desc {
  font-size: 14px;
  color: #7d6650;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* 各商品のminneボタン */
.lu-btn {
  display: inline-block;
  background: #8c5562;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 10px 32px;
  border-radius: 3px;
}

.lu-btn:hover { background: #6d3f4b; }

/* フッター */
.lu-footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid #d7bf91;
}

.lu-footer-link {
  color: #7d6650;
  text-decoration: none;
  font-size: 14px;
}

.lu-footer-link:hover { color: #4a3824; }

/* レスポンシブ（〜600px） */
@media (max-width: 600px) {
  .lu-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lu-title { font-size: 24px; }
}
