@charset "UTF-8";

/* ベース設定 */
body {
  margin: 0;
  padding: 0;
  background-color: #F8F5EE;
}

#keiro-lp-container {
  background-color: #F8F5EE; /* 薄いベージュ */
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #333;
  padding-bottom: 50px;
}

/* 画像の基本設定 */
#keiro-lp-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* メッセージエリア */
.lp-message-area {
  padding: 40px 20px;
  text-align: center;
}

.lp-title {
  color: #CC4433; /* 赤系 */
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 0;
}

/* テキスト全体をまとめる枠 */
.lp-text-wrapper {
  display: inline-block;
  text-align: left;
  max-width: 650px;
  width: 100%;
}

.lp-text {
  font-size: 0.95rem;
  line-height: 2;
  margin-top: 0;
  margin-bottom: 1.5em;
}

/* ページ内リンク (A〜D) */
.lp-anchor-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
  list-style: none;
  padding: 0 15px 30px;
  margin: 0;
}

.lp-anchor-links li {
  width: 23%;
}

.lp-anchor-links a {
  display: block;
  text-decoration: none;
}

.lp-anchor-links img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* セクション共通 */
.lp-section {
  margin-bottom: 40px;
}

/* セクションタイトル（h3） */
.lp-section-title {
  color: #C1A25B; /* 黄土色系 */
  font-size: 1.6rem;
  padding: 0 20px;
  margin: 40px 0 30px;
  text-align: left;
  border: none !important;
  text-decoration: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* 商品リスト（リンク付き画像） */
.lp-item-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-item a {
  display: block;
}

.lp-item.item-small {
  padding: 0 10%;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* 2カラム商品グリッド */
.lp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 0 20px;
}

/* PC・SP共通 2列並びの画像グリッド (セクションC バナー等用) */
.lp-grid-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
  padding: 0 20px;
  margin-top: 20px;
}

.lp-grid-2cols .lp-item a {
  display: block;
}

/* セクションD用 3列アンカーリンク */
.lp-anchor-links-3cols {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0 15px 30px;
  margin: 0;
}

.lp-anchor-links-3cols li {
  width: 32%;
}

.lp-anchor-links-3cols a {
  display: block;
  text-decoration: none;
}

.lp-anchor-links-3cols img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

/* =========================================
   追加: 4カラム商品グリッド (セクションD プチギフト等用)
========================================= */
.lp-product-grid-4cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 20px;
}

/* 4カラム表示時は枠幅が狭くなるため、文字サイズを少し縮小(PC時) */
.lp-product-grid-4cols .lp-product-name {
  font-size: 0.85rem;
  margin-bottom: 5px !important;
}
.lp-product-grid-4cols .lp-product-price {
  font-size: 0.95rem;
}
.lp-product-grid-4cols .lp-product-option {
  font-size: 0.75rem;
}

/* 商品カード（白背景の枠） */
.lp-product-card {
  background-color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
}

.lp-product-img-link {
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}

/* テキスト情報の共通設定 */
.lp-product-info {
  color: #333;
}

.lp-product-info p {
  margin: 0;
}

/* 商品名（左寄せ） */
.lp-product-name {
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px !important;
}

/* 価格（右寄せ・赤色） */
.lp-product-price {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: right;
  color: #CC4433;
  margin-bottom: 5px !important;
}

/* オプション（右寄せ） */
.lp-product-option {
  font-size: 0.9rem;
  font-weight: bold;
  text-align: right;
  line-height: 1.5;
}

/* =========================================
   スマートフォン用レスポンシブ調整
   （画面幅が767px以下の場合に適用）
========================================= */
@media screen and (max-width: 767px) {
  
  /* ページ内リンク（A〜D）をスマホで2列並びに変更 */
  .lp-anchor-links {
    row-gap: 10px;
  }
  .lp-anchor-links li {
    width: 48%;
  }

  /* セクション見出し */
  .lp-section-title {
    font-size: 1.3rem;
    margin: 30px 0 20px;
  }

  /* 余白調整 */
  .lp-item.item-small {
    padding: 0 3%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* 2列並び商品の調整 */
  .lp-product-grid {
    gap: 10px;
    padding: 0 10px;
  }
  
  /* 4カラムグリッドをスマホでは2カラムに変更 */
  .lp-product-grid-4cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .lp-product-card {
    padding: 8px;
  }

  /* 文字サイズ縮小 */
  .lp-product-name {
    font-size: 0.85rem;
    margin-bottom: 6px !important;
  }

  .lp-product-price {
    font-size: 0.95rem;
  }

  .lp-product-option {
    font-size: 0.75rem;
  }

  /* PC・SP共通2列グリッド */
  .lp-grid-2cols {
    gap: 5px 10px;
    padding: 0 10px;
  }
}

/* =========================================
   スクロールアニメーション（ふわっと上がる）
========================================= */
/* 初期状態（透明＆少し下に配置） */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 画面内に入った時の状態（不透明＆元の位置へ） */
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}