/* ============================================================
   lp-gisu.css
   あきたこまち雄勝郷の米 LP 専用スタイル
   命名規則: FLOCSS + プレフィックス (.lp-gisu__)
   ============================================================ */


/* ============================================================
   Foundation
   ============================================================ */

/* CSS変数・スコープリセット */
.lp-gisu {
  /* --- カラー --- */
  --lp-color-green:       #2d5a27;
  --lp-color-green-mid:   #4a7c3f;
  --lp-color-gold:        #c8860a;
  --lp-color-gold-light:  #e8a820;
  --lp-color-beige:       #f0ebe0;
  --lp-color-beige-dark:  #e2d9c8;
  --lp-color-brown:       #5c3d1e;
  --lp-color-text:        #2c2416;
  --lp-color-white:       #faf8f3;

  /* --- フォント --- */
  --lp-font-serif: 'Hiragino Mincho ProN', 'Yu Mincho', '游明朝', Georgia, serif;

  /* --- スペーシング --- */
  --lp-section-padding-v: 48px;
  --lp-section-padding-h: 24px;
  --lp-inner-max-width:   720px;
  --lp-radius:            2px;

  /* --- ベース --- */
  box-sizing: border-box;
  font-family: var(--lp-font-serif);
  color: var(--lp-color-text);
  background: var(--lp-color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.lp-gisu *,
.lp-gisu *::before,
.lp-gisu *::after {
  box-sizing: inherit;
}

.lp-gisu img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   Layout
   ============================================================ */

/* セクション共通 */
.lp-gisu__l-section {
  padding: var(--lp-section-padding-v) var(--lp-section-padding-h);
}

.lp-gisu__l-section--beige {
  background: var(--lp-color-beige);
}

.lp-gisu__l-section--green {
  background: var(--lp-color-green);
  color: #fff;
}

.lp-gisu__l-section--white {
  background: var(--lp-color-white);
}

/* インナー（コンテンツ幅制限） */
.lp-gisu__l-inner {
  max-width: var(--lp-inner-max-width);
  margin-right: auto;
  margin-left: auto;
}


/* ============================================================
   Component
   ============================================================ */

/* セクション見出し */
.lp-gisu__c-section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.5;
  padding-bottom: 14px;
  position: relative;
}

.lp-gisu__c-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--lp-color-gold);
  margin: 10px auto 0;
}

.lp-gisu__l-section--green .lp-gisu__c-section-title::after {
  background: var(--lp-color-gold-light);
}

/* CTAボタン */
.lp-gisu__c-btn {
  display: inline-block;
  background: var(--lp-color-green);
  color: #fff;
  font-family: var(--lp-font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 18px 56px;
  border: none;
  border-radius: var(--lp-radius);
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1;
}

.lp-gisu__c-btn:hover {
  background: var(--lp-color-green-mid);
  color: #fff;
  text-decoration: none;
}

.lp-gisu__c-btn--block {
  display: block;
  width: 100%;
  text-align: center;
  padding-right: 0;
  padding-left: 0;
}

/* 画像ブロック */
.lp-gisu__c-img-block {
  width: 100%;
  overflow: hidden;
}

.lp-gisu__c-img-block__img {
  width: 100%;
  height: auto;
  display: block;
}

/* 区切り線 */
.lp-gisu__c-divider {
  border: none;
  border-top: 1px solid var(--lp-color-beige-dark);
  margin: 0;
}

/* 商品情報テーブル */
.lp-gisu__c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.lp-gisu__c-table__th,
.lp-gisu__c-table__td {
  padding: 12px 16px;
  border: 1px solid var(--lp-color-beige-dark);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.lp-gisu__c-table__th {
  background: var(--lp-color-beige);
  color: var(--lp-color-brown);
  font-weight: 700;
  width: 30%;
  white-space: nowrap;
}

.lp-gisu__c-table__td {
  background: var(--lp-color-white);
}


/* ============================================================
   Project
   ============================================================ */

/* ヒーロー
   ---------------------------------------- */
.lp-gisu__p-hero {
  position: relative;
  width: 100%;
  background: var(--lp-color-beige);
  overflow: hidden;
}

.lp-gisu__p-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-gisu__p-hero__band {
  background: var(--lp-color-green);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.15em;
}

/* CTA（価格・購入ボタン）
   ---------------------------------------- */
.lp-gisu__p-cta {
  text-align: center;
  padding: 40px var(--lp-section-padding-h);
  background: var(--lp-color-white);
  border-top: 1px solid var(--lp-color-beige-dark);
  border-bottom: 1px solid var(--lp-color-beige-dark);
}

.lp-gisu__p-cta__price-label {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.lp-gisu__p-cta__price {
  font-size: 42px;
  font-weight: 700;
  color: var(--lp-color-brown);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.lp-gisu__p-cta__price > span {
  font-size: 18px;
  font-weight: 400;
}

.lp-gisu__p-cta__price-note {
  font-size: 13px;
  color: var(--lp-color-green);
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-gisu__p-cta__limit {
  font-size: 12px;
  color: #888;
  margin-top: 14px;
  line-height: 1.7;
}

/* ニーズチェックリスト
   ---------------------------------------- */
.lp-gisu__p-checklist {
  list-style: none;
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.lp-gisu__p-checklist__item {
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-color-brown);
  padding: 10px 0 10px 36px;
  border-bottom: 1px solid var(--lp-color-beige-dark);
  position: relative;
}

.lp-gisu__p-checklist__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lp-color-green-mid);
  font-size: 18px;
  font-weight: 700;
}

/* こだわりポイント
   ---------------------------------------- */
.lp-gisu__p-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-gisu__p-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--lp-color-white);
  padding: 24px 20px;
  border-left: 4px solid var(--lp-color-green-mid);
}

.lp-gisu__p-point__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-color-green);
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
  font-family: Georgia, serif;
}

.lp-gisu__p-point__body {
  flex: 1;
}

.lp-gisu__p-point__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-color-green);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.lp-gisu__p-point__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* 本文ストーリーテキスト
   ---------------------------------------- */
.lp-gisu__p-story {
  font-size: 15px;
  line-height: 2;
  text-align: center;
  color: var(--lp-color-text);
}

/* 認定バッジエリア
   ---------------------------------------- */
.lp-gisu__p-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px;
  background: var(--lp-color-white);
  border: 1px solid var(--lp-color-beige-dark);
}

.lp-gisu__p-badge__img {
  width: 110px;
  height: auto;
  flex-shrink: 0;
}

.lp-gisu__p-badge__text {
  font-size: 14px;
  line-height: 2;
  color: #444;
}

.lp-gisu__p-media-badge {
  text-align: center;
  background: var(--lp-color-beige);
  padding: 20px 24px;
  border: 1px solid var(--lp-color-beige-dark);
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-color-brown);
  line-height: 2;
}

/* お客様の声
   ---------------------------------------- */
.lp-gisu__p-reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-gisu__p-review {
  background: var(--lp-color-white);
  border-left: 4px solid var(--lp-color-gold);
  padding: 20px 20px 16px;
}

.lp-gisu__p-review__text {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}

.lp-gisu__p-review__name {
  text-align: right;
  font-size: 13px;
  color: #999;
  margin-top: 10px;
  font-style: italic;
}

/* FAQ
   ---------------------------------------- */
.lp-gisu__p-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-gisu__p-faq__item {
  /* 質問・回答セットのラッパー */
}

.lp-gisu__p-faq__q {
  background: var(--lp-color-green);
  color: #fff;
  padding: 14px 18px 14px 48px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  line-height: 1.6;
}

.lp-gisu__p-faq__q::before {
  content: 'Q';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  font-family: Georgia, serif;
  color: var(--lp-color-gold-light);
}

.lp-gisu__p-faq__a {
  background: var(--lp-color-white);
  border: 1px solid var(--lp-color-beige-dark);
  border-top: none;
  padding: 16px 18px 16px 48px;
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  position: relative;
}

.lp-gisu__p-faq__a::before {
  content: 'A';
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 18px;
  font-weight: 700;
  font-family: Georgia, serif;
  color: var(--lp-color-green-mid);
}


/* ============================================================
   Utility
   ============================================================ */

.lp-gisu__u-text-center { text-align: center; }

.lp-gisu__u-mt-sm { margin-top: 12px; }
.lp-gisu__u-mt-md { margin-top: 24px; }
.lp-gisu__u-mt-lg { margin-top: 40px; }

.lp-gisu__u-mb-sm { margin-bottom: 12px; }
.lp-gisu__u-mb-md { margin-bottom: 24px; }
.lp-gisu__u-mb-lg { margin-bottom: 40px; }


/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 480px) {
  .lp-gisu__p-cta__price {
    font-size: 32px;
  }

  .lp-gisu__c-btn {
    font-size: 16px;
    padding: 16px 36px;
  }

  .lp-gisu__l-section {
    padding: 36px 16px;
  }

  .lp-gisu__p-badge {
    flex-direction: column;
    text-align: center;
  }

  .lp-gisu__c-table__th {
    white-space: normal;
    width: 35%;
  }
}