
/* =====================================
   基本設定（全体やボディなど）
===================================== */
/* 共通のbody設定（最上部にまとめる） */
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color 0.5s ease;

  background-color: #2e2e2e;  /* ← ここが重要！グレーを明示 */
  background-image: radial-gradient(#1d1d1d  10px, transparent 5px);
  background-size: 100px 100px;
}

    .section {
      padding: 40px 20px;
    }
    .title {
      text-align: center;
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 20px;
    }


/* スマホ用にドット小さく */

@media screen and (max-width: 768px) {
  body {
    background-size: 50px 50px; /* 元100px→半分の大きさに */
  }
}
/* =====================================
　キャメルのセクション
===================================== */
.camel-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* メイン画像＋テキストラップ */
.camel-image-wrapper {
  position: relative;
  z-index: auto;
}

.camel-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト画像の重なり位置 */
.camel-overlap-text {
  position: relative;
  margin-top: -60px;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.camel-text-image {
  width: 60% !important;
  max-width: 600px;
  display: block;
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* スライダー */
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto; /* ← あるいは min-height: 300px; などでもOK */
  margin: 0 auto 20px;
  overflow: hidden;
}


.slider-wrapper img {
  position: absolute;  /* ← これが必要 */
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.slider-wrapper img.active {
  opacity: 1;
  z-index: 2;
  position: relative;  /* ← activeな画像だけ flow に乗せる */
}


/* 商品情報 */
.product-info {
  text-align: center;
  margin-top: 20px;
}

.price-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.buy-button {
  background-color: black;
  color: white;
  padding: 5px 15px;
  margin-left: 10px;
  border: none;
  cursor: pointer;
}



/* =====================================
　黒のセクション
===================================== */

.black-image-wrapper {
  position: relative;
  z-index: auto;
  margin-bottom: 0;
  padding-bottom: 0;
}

.black-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキストが画像にかぶさるように */
.black-overlap-text {
  position: absolute;
  margin-top: -60px;
  bottom: 20px; /* または top: 〇〇px にしているなら、それに応じて */
  left: 10px;
  z-index: 2;
  color: white;
  font-size: 1.8rem;
  line-height: 1.8;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

  /* 追加・変更箇所 ↓↓↓ */
  width: 100%;
  max-width: 900px;       /* ← 画像と同じ幅に合わせる */
  margin-left: auto;       /* ← 左右中央を解除 */
  margin-right: auto;      /* ← 左右中央を解除 */
  padding-left: 0;         /* ← 不要ならリセット */
  text-align: left;        /* ← 左寄せ */
}



.overlap-text {
  position: absolute;
  top: 20px;   /* ←画像の上にどれくらい被せるか */
  left: 5%;
  right: 5%;
  color: white;
  font-size: 1rem;
  line-height: 1.8;
  z-index: 2;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


.black-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1000px;  /* ← camelと同じに */
  margin: 0 auto;     /* ← 中央に寄せる */
  padding: 0 16px;    /* ← 余白つける（調整可） */
}

.black-left {
  position: relative;
  margin-bottom: 60px; /* テキストの重なり余白 */
}

/* 左下テキストのスタイル */
.black-text-overlay {
  position: absolute;
  bottom: 30px;
  left: 20px;
  color: #ffffff;
  background: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

    .slider-container {
      position: relative;
      overflow: hidden;
    }
    .slider-images {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slider-images img {
      width: 100%;
      flex-shrink: 0;
    }
    .dots {
      text-align: center;
      margin-top: 10px;
    }
    .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }
    .dot.active {
      background-color: #333;
    }
    .product-description {
      font-size: 0.85rem;
      color: #555;
      margin-top: 15px;
    }
    .product-price {
      margin-top: 10px;
      font-weight: bold;
    }
    .buy-button {
      background-color: black;
      color: white;
      padding: 5px 15px;
      margin-left: 10px;
      border: none;
      cursor: pointer;
    }



@media (min-width: 769px) {
  .black-text-image {
    width: 80% !important;       /* ← 今より大きくしたいので 60% → 80% に変更 */
    max-width: 100%;             /* ← 最大サイズ制限をなくす（必要なら） */
    height: auto;
    display: block;
    margin-left: 0 !important;
    margin-right: auto !important;
    position: relative;          /* ← 上下移動させるために必要 */
    top: 0px;                  /* ← 上にかぶせるために追加（値は調整OK） */
    z-index: 2;                  /* ← 背景画像より前面に出すために追加（必要なら） */
  }
}



 /* レスポンシブ（モバイル用） */

@media (max-width: 768px) {
  .black-text-image {
    width: 90%;
    max-width: 90%;
    height: auto;
    position: relative;   /* ← 位置調整を可能にする */
    left: 8px;          /* ← 負の値で左に、正の値で右に動かせる */
    margin-top: -80px;    /* 上にかぶせる調整 */
  }
}



 
@media (max-width: 768px) {
  .black-flex {
    flex-direction: column;
  }

  .black-left,
  .black-right {
    width: 100%;
  }

  .black-text-overlay {
    font-size: 1.6rem;
    padding: 0.6rem;
    bottom: 30px;
    left: 10px;
  }
}
    @media (max-width: 600px) {
      .black-text-overlay {
        font-size: 1.2rem;
        padding: 0.6rem;
      }
    }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================
   指定の時背景色が変わる指示
===================================== */

body.gray-bg {
  background-color: #2e2e2e;
}

body.camel-bg {
  background-color: #c6a57f;
}


body.white-bg {
  background-color: white;
}

body.gray {
  background-color: #2e2e2e;
  transition: background-color 0.5s ease;
}

body.camel {
  background-color: #c6a57f;
  transition: background-color 0.5s ease;
}

body.black-bg {
  background-color: #2e2e2e;
  color: white;
  background-image: radial-gradient(#1d1d1d 10px, transparent 5px);
  background-size: 100px 100px;  /* ← 追加 */
}

/* 背景色切り替え用 */
.black-bg {
  background-color: #2e2e2e; /* または黒背景にしたい色 */
  transition: background-color 0.5s ease;
}

.camel-bg {
  background-color: #c6a57f; /* キャメルっぽい色に調整してください */
  transition: background-color 0.5s ease;
}



/* =====================================
   ふわっと出すアニメーション
===================================== */
/* アニメーション初期状態 */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示時に追加されるクラス */
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

.camel-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1000px; /* ここで横幅を固定 */
  margin: 0 auto;     /* 中央寄せ */
  padding: 0 16px;    /* スマホで見切れ防止 */
}
.camel-left {
  position: relative;
  width: 100%; /* 必要に応じて */
  /* flex: 1; は削除 */
}

.camel-text-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: white;
  font-size: 1.2em;
  padding: 8px 12px;
  border-radius: 4px;
}

.camel-right {
  /* flex: 1; 削除 */
  /* display: flex; 削除 */
  width: 100%;
  text-align: center; /* 必要であれば中央揃え */
}


/* =====================================
   各セクションタイトル画像
===================================== */

.title-image {
  width: 50%;
  max-width: 400px; /* PCでの最大表示サイズ */
  height: auto;
  display: block;
  margin: 0 auto;
}


@media screen and (max-width: 480px) {
  .title-image {
    max-width: 250px; /* スマホでの表示サイズをここでコントロール */
  }
}


/* =====================================
   POINT
===================================== */
.point-section {
  padding: 60px 20px;
}

.point-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.point-container {
  background-color: #ae8d68; /* 要素自体に色をつける */
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 横並びベース設定 */
.point-item {
  display: flex;
  align-items: center;
  justify-content: center; /* ← これを追加！ */
  gap: 24px;
}

/* 左の画像 */
.point-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

/* 右のテキスト */
.point-text {
  font-size: 1rem;
  line-height: 1.6;
  width: 100%;
  max-width: 320px;           /* 全項目同じ最大幅 */
  overflow-wrap: break-word;  /* 単語が長い場合でも折り返し */
  word-break: break-word;     /* 日本語でも確実に折り返し */
}

/* スマホ対応：画像と説明を縦並びに */
@media screen and (max-width: 768px) {
  .point-item {
    flex-direction: column;
    align-items: center;  /* ← 中央寄せに変更 */
    text-align: left;
  }

  .point-image {
    max-width: 90%;
  }

  .point-text {
    font-size: 0.9rem;         /* 文字少し小さく */
    max-width: 90%;            /* 背景色からはみ出ない */
    text-align: center;        /* 中央寄せにしたい場合 */
  }
}



/* =====================================
リンクの指示など
===================================== */

.product-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.product-link:hover {
  background-color: rgba(255, 255, 255, 0.1); /* ふわっと白く */
}

.product-description {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: inherit;
  text-decoration: none;
  background-color: #f9f9f9;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.price-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: filter 0.3s ease;
}

.price-link:hover {
  filter: brightness(150%);
}

.price {
  font-size: 16px;
  font-weight: bold;
}


.product-price:hover {
  background-color: rgba(255, 255, 255, 0.6);
}


.buy-button {
  background-color: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #333;
}


/* =====================================
   ヘッダー画像
===================================== */
.main-header picture,
.main-header picture img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.main-header {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('1000.jpg');  /* PC用画像 */
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

/* スマホ用画像に切り替え */
@media screen and (max-width: 768px) {
  .main-header {
    background-image: url('750.jpg');  /* スマホ用画像 */
    aspect-ratio: 1 / 1;               /* 正方形比率に調整 */
    background-attachment: scroll;     /* fixedだと不具合が出やすい */
  }
}

/* =====================================
   イントロダクションセクション
===================================== */
main,
.intro-message,
.product-section {
  padding-top: 1500px; /* ← ヘッダーの高さと揃えて調整！ */
}

/* 最初のセクションがヘッダーに隠れないようにする */
.intro-message {
  padding-top: 80px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: transparent;
  color: white;
  text-align: center;
}

.intro-message p {
  font-size: 1.1rem;
  line-height: 1.2;          /* 読みやすく行間調整 */
  margin-bottom: 40px;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: pre-line;  /* 改行や <br> をそのまま反映 */
}

.intro-button {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.intro-button:hover {
  background-color: #000;
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.button-wrapper {
  text-align: center;
  margin: 40px 0;
}

/* 初期はスマホ用表示、PC用非表示 */
.pc-br { display: none; }
.sp-br { display: inline; }

/* 769px以上（PC）は逆にする */
@media (min-width: 769px) {
  .pc-br { display: inline; }
  .sp-br { display: none; }
}



/* =====================================
   フローティングリンク（固定）
===================================== */
.floating-link {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 16px;
  font-size: 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.floating-link:hover {
  opacity: 1;
  background-color: #000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* =====================================
   商品セクションの基本構造
===================================== */

.product-section {
  display: flex;               /* ← 絶対必要！ */
  align-items: center; /* 中央寄せでバランス良く */
  justify-content: center;
  gap: 24px; /* 要素間の余白調整 */
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  flex-direction: column; /* ← row から column に変更 */
  transition: all 1s ease;
}

.product-section.show {
  opacity: 1;
  transform: translateY(0);
}

.product-image img {
  width: 100%;
  max-width: 80%; /* 横幅を少し控えめにして中央寄せ */
  height: auto;
  transition: opacity 0.5s ease;
  display: block;
  margin: 0 auto;
}

.product-image a:hover img {
  opacity: 0.7;
}

.product-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}


.product-description p:first-child {
  margin-top: 0;
}

.product-description p:last-child {
  margin-bottom: 0;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

.section-sale-link {
  text-align: center;
  margin: 24px 0 40px;
}

/* =====================================
   商品情報（ジャンル・タイトル・価格・ボタン）
===================================== */
/* ← ホバー時に白い半透明レイヤーを上にかぶせる */


.product-link-box:hover {
  opacity: 0.4; /* ← 画像と同じ白さ */
}


.product-link-box {
  display: block;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.product-row {
  position: relative;
  z-index: 2;
}

.genre,
.title,
.price {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.price-check-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.check-button {
  background-color: #000;
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
/* =====================================
   スライダー
===================================== */
/* スライダーの枠 */
#blackSlider {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 1; /* 画像の比率に応じて調整。ここでは横長に仮設定 */
  overflow: hidden;
  margin-top: 20px; /* 上と余白空ける */
}

/* 中の画像（フェード切り替え） */
#blackSlider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* 表示中の画像 */
#blackSlider img.active {
  opacity: 1;
  z-index: 1;
}

/* =====================================
   レスポンシブ対応
===================================== */

@media (max-width: 600px) {
  .thumbnail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .product-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .product-row .title,
  .product-row .price,
  .product-row .detail-button {
    width: 100%;
  }

  .floating-link {
    font-size: 0.65rem;
    padding: 6px 12px;
    bottom: 16px;
    right: 16px;
  }

  .staff-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .insta-button {
    width: 100%;
    text-align: center;
  }
}

.thumbnail-heading {
  text-align: center;
  font-size: 1.4rem;
  font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  margin: 60px 0 20px;
  color: #333;
  letter-spacing: 1px;
}
