    /* ==========================================
       1. 基本リセット & 共通スタイル
       ========================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Zen Kaku Gothic New", sans-serif;
      background-color: #f7f5f0;
      color: #333;
      overflow-x: hidden;
    }

    /* ==========================================
       2. PC版の左右背景連動（PC閲覧時のみ有効）
       ========================================== */
    .pc-bg-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: -1;
      pointer-events: none;
    }

    .pc-bg-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    .pc-bg-item.bg-sec1 {
      background-image: url('../images/back.jpg');
    }
    .pc-bg-item.bg-sec2 {
      background-image: url('../images/back1.jpg');
    }
    .pc-bg-item.bg-sec3 {
      background-image: url('../images/back2.jpg');
    }


    .pc-bg-item.is-active {
      opacity: 1;
    }

    /* ==========================================
       3. 全体レイアウト（中央配置設定）
       ========================================== */
    .app-container {
      position: relative;
      width: 100%;
      max-width: 640px; /* 中央コンテンツの最大幅 */
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
      min-height: 100vh;
    }

 /* ==========================================
   4. 各コンテンツセクション
   ========================================== */
.scroll-section {
  position: relative;
  width: 100%;
  padding: 0 0 80px 0;
  background-color: #fff;
}

/* 画像エリアのコンテナ */
.image-container {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  padding: 0;
  background-color: #fff;
}

/* 
  メイン画像のコンテナ枠（3:4比率）
  ※最初は「枠あり（少し縮小された状態）」からスタート
*/
.content-img-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  height: 0 !important;
  padding-top: 133.33% !important; /* 3:4比率 */
  position: relative !important;
  overflow: hidden;

  /* 【初期状態】上下左右に4%の余白枠 */
  clip-path: inset(4% 4% 4% 4%);
  
  /* スムーズなアニメーション設定 */
  transition: clip-path 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 
  画像自体
  ※最初は少し引いたサイズ（等倍：scale(1)）にしておきます
*/
.content-img-wrapper .content-img {
  position: absolute !important;
  top: 0 !important;
  left: 15px !important;
  width: 95% !important;
  /* height: 100% !important;
  /* object-fit: cover !important;
  
  /* 初期サイズ（拡大前） */
  transform: scale(1);
  /* 枠の広がりと完全に同期するように、同じ速度でアニメーションさせます */
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
}

/* wrapper自体に .is-active が付いたら枠が広がる */
.content-img-wrapper.is-active {
  clip-path: inset(0% 0% 0% 0%) !important; 
}

/* wrapperに .is-active が付いたら中の画像が拡大する */
.content-img-wrapper.is-active .content-img {
  transform: scale(1.08) !important;
}

    /* ==========================================
       5. 情報コンテンツエリア
       ========================================== */
    .info-content-area {
      position: relative;
      width: 100%;
      padding-top: 32px;
    }

    /* テキスト情報（タイトル・説明文） */
    .section-info {
      text-align: center;
      width: 100%;
      padding: 0 20px;
      margin-bottom: 32px;
    }

    .section-info h2 {
      font-size: 2rem;
      font-weight: bold;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
      font-family: "DM Serif Display", serif !important;
    }

    .section-info p {
      font-size: 1.1rem;
      line-height: 1.6;
      letter-spacing: 0.1em;
      color: #666;
    }

/* ==========================================
   6. 商品リスト（レイアウト2種類）
   ========================================== */

/* ------------------------------------------
   パターンA：1カラム縦並び（画像左＋情報右＋ボタン）
   ------------------------------------------ */
.product-grid-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 20px;
}

.product-grid-list .product-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: opacity 0.2s ease-in-out;
}

.product-grid-list .product-card:hover {
  opacity: 0.8;
}

.product-grid-list .product-img-wrapper {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background-color: #f9f9f9;
  overflow: hidden;
  margin-right: 20px;
}

.product-grid-list .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid-list .product-info-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product-grid-list .product-name {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #333;
  font-weight: bold;
  margin-bottom: 4px;
}

.product-grid-list .product-price-box {
  font-size: 1rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 12px;
}

.product-grid-list .web-store-btn {
  display: inline-block;
  padding: 6px 16px;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s, color 0.2s;
  border-radius: 30px; 
}

.product-grid-list .product-card:hover .web-store-btn {
  background-color: #000;
  color: #fff;
}

/* ------------------------------------------
   パターンB：2カラム横並び（画像が上＋下が商品名・価格）
   ------------------------------------------ */
.product-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 15px;
  width: 100%;
  padding: 0 20px;
}

.product-grid-2col .product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: opacity 0.2s ease-in-out;
}

.product-grid-2col .product-card:hover {
  opacity: 0.8;
}

.product-grid-2col .product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f9f9f9;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-grid-2col .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid-2col .product-name {
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.product-grid-2col .product-price-box {
  font-size: 0.95rem;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: baseline;
}

/* 共通パーツ（税込表記） */
.product-tax {
  font-size: 0.7rem;
  color: #666;
  font-weight: normal;
  margin-left: 4px;
}

/* スマホ用レスポンシブ微調整 */
@media screen and (max-width: 640px) {
  .product-grid-list {
    gap: 16px;
    padding: 0 16px;
  }
  .product-grid-list .product-img-wrapper {
    width: 100px;
    height: 100px;
    margin-right: 16px;
  }
  .product-grid-2col {
    gap: 15px 12px;
    padding: 0 15px;
  }
}

    /* ==========================================
       7. スマートフォン（SP）向けの調整
       ========================================== */
    @media screen and (max-width: 640px) {
      .pc-bg-container {
        display: none;
      }
      .app-container {
        max-width: 100%;
        box-shadow: none;
      }
      .product-grid {
        gap: 15px 12px;
        padding: 0 15px;
      }
      .product-name {
        font-size: 0.8rem;
      }
    }

/* ==========================================
   9. 動きのない静的なコンテンツ
   ========================================== */
.static-content-area {
  width: 100%;
  background-color: #fff;
  padding: 0 0 60px 0;
}

/* シンプルに画像を100%で表示する設定 */
.simple-static-img {
  width: 100%;
  height: auto; /* 画像本来の比率を維持します */
  display: block; /* 画像の下にできる謎の数ミリの隙間を消すおまじない */
}

/* 画像と画像の間や、テキストとの間に少し隙間をあけたい場合（お好みで） */
.simple-static-img + .simple-static-img {
  margin-top: 2px; /* 2枚目の画像の上の隙間。不要なら0に */
}

/* テキスト部分のスタイリング */
.static-info {
  text-align: center;
  width: 100%;
  padding: 40px 20px 0 20px;
}

.static-info h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-family: "DM Serif Display", serif !important;
}

.static-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #666;
}

/* ==========================================
   7. セクション末尾の角丸ボタン
   ========================================== */
.section-btn-wrapper {
  width: 100%;
  text-align: center;
  padding: 30px 20px 10px 20px; /* 前後の余白調整 */
}

.rounded-link-btn {
  display: inline-block;
  width: 100%;
  max-width: 320px; /* ボタンの最大幅 */
  padding: 14px 24px;
  background-color: #000; /* ボタンの背景色（黒） */
  color: #fff;            /* 文字色（白） */
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 30px;    /* 完全な角丸（カプセル型）にする設定 */
  border: 1px solid #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* ほんのり上品な影 */
  transition: all 0.3s ease;
}

/* ホバー時（またはタップ時）の動き */
.rounded-link-btn:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px); /* ふわっと少し上に浮く */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* テキストカード（背景透過などで動画を見せる） */
    .content-box2 {
      background: #eaeaea;
      border: 1px solid #eaeaea;
      padding: 40px 30px;
      border-radius: 8px;
      backdrop-filter: blur(4px); /* 背景をほんのりぼかす */
      max-width: 90%;
      margin: 50px 30px;
    }
