/* ページ全体の背景カラー */
body {
  margin: 0; 
  padding: 0;
  background-color: #fff3e3;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
}



/* LP全体で共通で使えるブロック用のベース */
.lp-block {
  width: 100%;
}

/* バナー全体の背景色を付けたい場合はここで指定（不要なら削除OK） */
.lp-banner {
  background-color: #ffffff;
}

/* 中身の最大幅を制御（PCは1400px、中央寄せ） */
.lp-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* 画像はブロック要素にして横いっぱいに表示 */
.lp-banner-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* SP向け：最大幅750pxを想定 */
@media (max-width: 768px) {
  .lp-banner-inner {
    max-width: 750px;
  }
}
.lp-banner {
  background-color: #fff3e3;
}


/* 各画像ブロックの共通設定 */
.lp-img-block {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 中身の最大幅（PC1400 / SP750） */
.lp-img-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;           
}

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

/* 半透明カラーのレイヤー */
.lp-img-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.7; /* 不透明度70% */
}

/* ▼ 烏野の背景画像＋背景色 f18101（70%） */
.bg1 {
  background-image: url("https://gigaplus.makeshop.jp/loward/lp/haikyu6/back_dot_wh.png");
  background-size: cover;
  background-position: center;
}
.bg1::before {
  background-color: #f18101;
}

/* ▼ 音駒の背景画像＋背景色 dd2d44（70%） */
.bg2 {
  background-image: url("https://gigaplus.makeshop.jp/loward/lp/haikyu6/back_dot_wh.png");
  background-size: cover;
  background-position: center;
}
.bg2::before {
  background-color: #dd2d44;
}

/* ▼ 梟谷の背景画像＋背景色 cac585（70%） */
.bg3 {
  background-image: url("https://gigaplus.makeshop.jp/loward/lp/haikyu6/back_dot_wh.png");
  background-size: cover;
  background-position: center;
}
.bg3::before {
  background-color: #cac585;
}


/* 購入ボタンブロック */
.lp-buy-btn {
  text-align: center;
  padding: 40px 0; /* ボタン上下の余白 */
}

/* 購入ボタン本体 */
.buy-btn {
  display: inline-block;
  background-color: #ec6619; /* ボタン背景色 */
  color: #ffffff;           /* 文字色 */
  padding: 16px 40px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px; /* 角丸 */
  transition: opacity 0.3s ease;
}

/* ホバー時（PC） */
.buy-btn:hover {
  opacity: 0.8;
}



/* テキスト＋画像ブロック */
.lp-text-image {
  padding: 60px 0;
}

.lp-text-image-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* テキストと画像を縦中央揃え（PC） */
  gap: 40px;
}

/* テキスト側（PC左） */
.lp-text-image-text {
  flex: 1;
  text-align: center; /* テキスト中央寄せ（改行も中央） */
}

.lp-text-image-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.lp-text-image-text p {
  font-size: 16px;
  line-height: 1.8;
}

/* 画像側（PC右） */
.lp-text-image-img {
  flex: 1;
}

.lp-text-image-img img {
  width: 60%; 
  max-width: 500px; /* ← 画像の最大幅の上限を設定（お好みで変更） */
  height: auto;
  display: block;
  margin: 0 auto;  /* ← 中央揃え */
}

/* SP：1列で「テキスト → 画像」の順に縦並び */
@media (max-width: 768px) {
  .lp-text-image-inner {
    flex-direction: column; /* 上下並びに変更 */
  }

  .lp-text-image {
    padding: 40px 16px; /* 余白少し調整（お好みで） */
  }
}


/* タイトル画像ブロック（区切り用） */
.lp-title-block {
  padding: 40px 0 20px; 
}

/* ▼ タイトル画像：SPだけ下余白を詰める ▼ */
@media (max-width: 768px) {
  .lp-title-block {
    padding-bottom: 10px; /* ← お好みで 0〜20px くらい */
  }
}


.lp-title-inner {
  width:80%; 
  margin: 0 auto;
}

.lp-title-inner img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: 0; 
  margin-right: auto;
}

/* SP：最大幅750px想定 */
@media (max-width: 768px) {
  .lp-title-inner {
    width: 80%;
  }
}


/* ギャラリーブロック全体 */
.lp-gallery {
  padding: 40px 0;
}

.lp-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;;
}

/* メイン画像エリア（PC左） */
.lp-gallery-main {
  flex: 2;
}

.lp-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

/* サムネイルエリア（PC右） */
.lp-gallery-thumbs {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-auto-rows: 1fr;
    gap: 12px;
    height: 100%;  
}

/* サムネイルボタン */
.lp-gallery-thumb {
  padding: 0;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  cursor: pointer;
  width: 100%;
  height: 100%;    
}

.lp-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* 選択中のサムネイル */
.lp-gallery-thumb.is-active {
  border: 2px solid #0066cc; /* お好みで色変更 */
}

/* SPレイアウト：縦並びにして下にサムネを並べる */
@media (max-width: 768px) {
  .lp-gallery-inner {
    flex-direction: column;
  }

  .lp-gallery-thumbs {
    width: 100%;
    grid-template-columns: repeat(4, 1fr); /* 4列並び。3列にしたければ 3 に変更 */
    gap: 8px;
  }
}


/* ABOUTブロック全体 */
.lp-about {
  padding: 60px 0;
  color: #000;  /* ← 文字色を黒に */
}

.lp-about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* 左のテキスト2カラム */
.lp-about-texts {
  flex: 2;
  display: flex;
  gap: 40px;
}

.lp-about-item {
  flex: 1;
}

.lp-about-label {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: #000; /* 黒文字に統一 */
}

.lp-about-logo img {
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.lp-about-body {
  font-size: 14px;
  line-height: 1.8;
  color: #000; /* 黒文字に統一 */
}

/* 右のKV画像 */
.lp-about-visual {
  flex: 1;
}

.lp-about-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* SPレイアウト */
@media (max-width: 768px) {
  .lp-about {
    padding: 40px 0;
  }

  .lp-about-inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .lp-about-texts {
    flex-direction: column;
    gap: 24px;
  }

  .lp-about-logo img {
    max-width: 200px;
  }
}

/* ▼ 専用クラスを付けたブロックだけ左揃えにする */
.lp-text-image.left-with-btn .lp-text-image-text {
  text-align: left;
}

/* ▼ 中のボタンを少しだけ上と余白を空ける（必要なら調整） */
.lp-text-image.left-with-btn .buy-btn {
  margin-top: 20px;
}

/* ▼ もしボタンを少し小さめにしたい時 */
.buy-btn.small {
  font-size: 16px;
  padding: 12px 28px;
}

/* ▼ フッター共通 ▼ */
.lp-footer {
  background-color: #000;     /* 黒背景 */
  color: #fff;                /* 白文字 */
  text-align: center;         /* 中央揃え */
  padding: 30px 20px;         /* 上下余白 */
  font-size: 14px;
  line-height: 1.8;
}

.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}


/* ▼ バナー下テキスト ▼ */
.lp-banner-text {
  padding: 40px 16px;       /* 上下余白 */
  text-align: center;       /* 文字中央揃え */
  background-color: #fff3e3; /* 背景色（LPと合わせる） */
}

.lp-banner-text-inner {
  max-width: 1000px;        /* 横幅制限 */
  margin: 0 auto;           /* 中央寄せ */
}

.lp-banner-text p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

/* SP調整 */
@media (max-width: 768px) {
  .lp-banner-text p {
    font-size: 16px;
  }
}


/* ▼ ハンバーガーメニュー（右上固定） ▼ */
.lp-hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 3px 0;
}

/* 開いてる時の× */
.lp-hamburger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.lp-hamburger.is-open span:nth-child(2) { opacity: 0; }
.lp-hamburger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.lp-hamburger span { transition: transform .2s ease, opacity .2s ease; }

/* 背景オーバーレイ */
.lp-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

/* ドロワー本体 */
.lp-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 86vw);
  height: 100vh;
  background: #000;
  z-index: 9999;
  transform:none;
  transition: transform .2s ease;
  padding: 80px 20px 20px;
  box-sizing: border-box;
}

.lp-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-drawer-list a {
  display: block;
  padding: 14px 6px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 16px;
}

/* ホバー時（PC） */
.lp-drawer-list a:hover {
  background-color: rgba(255,255,255,0.1);
}

/* 開いた状態 */
.lp-menu-open .lp-drawer { transform: translateX(0);  right: 0; }
.lp-menu-open .lp-drawer-overlay { opacity: 1; pointer-events: auto; }

/* メニュー開閉中の背景スクロール止め */
.lp-menu-open { overflow: hidden; }

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

/* 改行制御 */
.pc-only { display: inline; }
.sp-only { display: none; }

@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

@media screen and (max-width: 768px) {
  #shop .lp-text-image-text {
    text-align: center;
    margin: 0 auto;
  }

  #shop .buy-btn {
    display: inline-block;
    margin: 20px auto 0;
  }
}