.circle-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #ccc; /* 落ち着いたゴールド */
  border-radius: 50%;
  color: black;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 46px; /* 垂直中央揃え */
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: opacity 0.4s ease, background-color 0.3s, color 0.9s;

  /* 最初は非表示 */
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.circle-button.show {
  opacity: 1;
  pointer-events: auto;
}

.circle-button:hover {
  background-color: black;
  color: #bfa145;
  border-color: #bfa145;
}




/* ===== 基本 ===== */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #fff;
  overflow-x: hidden;

  /* 背景画像を画像サイズに合わせる */
  background-image: url('lp_img/bc_04.jpg'); /* 画像パスを指定 */
  background-size: cover;       /* 画面幅いっぱいに表示 */
  background-position: center;  /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返さない */
}







.space40{ height: 40px; }

iframe {
  overflow: hidden;      /* iframe のスクロールバーを非表示 */
  width: 100%;
  height: 100vh;         /* 高さを画面いっぱいに */
  border: none;
}



/* ===== フェードイン ===== */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== ヘッダー ===== */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
  background: rgba(255,255,255,0);
}

/* ===== ハンバーガー ===== */
.hamburger {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  touch-action: manipulation;
  margin-right: 40px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #666;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}

.hamburger.active span {
  background: #fff; /* 白に変更 */
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 14px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -14px);
}

/* ===== ハンバーガー文字 ===== */
.hamburger-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #ccc;
  pointer-events: none;
  transition: all 0.4s ease;
}
.hamburger.active + .hamburger-label,
.hamburger.active ~ .hamburger-label {
  color: red;
}

/* ===== 全画面メニュー ===== */
.nav {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 900;
}
.nav.active {
  opacity: 1;
  pointer-events: auto;
}
.nav a {
  color: #fff;
  font-size: 1rem;
  margin: 20px 0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav a:hover {
  color: #f0a500;
}

/* 下部スマホボタン：PCは非表示 */
.bottom-buttons {
  display: none; /* PCでは非表示 */
}

/* スマホ用 */
@media (max-width: 768px) {
  .bottom-buttons {
    display: flex; /* スマホで表示 */
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 998;
    padding: 5px 0;
    transform: translateY(100%); /* 下に隠す */
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .bottom-buttons.show {
    transform: translateY(0);
    opacity: 1;
  }

  .bottom-buttons a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    padding: 8px 0;
    border-right: 1px solid #ccc;
  }

  .bottom-buttons a:last-child {
    border-right: none;
  }

  .bottom-buttons a.monitor {
    font-size: 14px;
    font-weight: bold;
    padding: 12px 0;
    background-color: #bfa145;
    color: #fff;
    border-radius: 5px;
    margin: 0 5px;
  }

  .bottom-buttons a:hover {
    background-color: #000;
    color: #fff;
  }
}

/* ===== フッター全体 ===== */
.site-footer {
  background-image: url('lp_img/bc_04.jpg'); /* 画像パスを指定 */
  background-size: cover;       /* 画面幅いっぱいに表示 */
  background-position: center;  /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返さない */
  color: #666;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  padding: 50px 20px 60px; /* 下の余白を減らす */
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

/* 内側レイアウト */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* 左：会社名 */
.footer-left .company {
  font-family: "Noto Serif JP","Yu Mincho",serif;
  font-weight: 700;
  color: #bfa145;
  font-size: 1.3rem;
  margin: 0;
}

/* 右：ナビリンク */
.footer-right .footer-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #666;
  font-size: 0.85rem;
}
.footer-right .footer-nav a:hover {
  color: #000;
}

/* 下段：Copyright */
.footer-bottom {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #666;
  width: 100%;
  margin-top: 20px; /* 内側コンテンツとの距離を少なめに */
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-right .footer-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  .footer-right .footer-nav a {
    margin: 0;
  }
  .footer-bottom {
    margin-top: 10px;
    margin-bottom: 50px; /* 下部3ボタンの上に少し余白 */
  }
}


/* ===== スライドショー（ズーム付き） ===== */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;   /* 横スクロール禁止 */
  overflow-y: hidden;   /* 縦スクロールも不要なら */
  background-color: #fff; /* 背景を白に */
}
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;          /* ビューポート幅に固定 */
  height: 100vh;         /* ビューポート高に固定 */
  object-fit: cover;     /* 画面いっぱいに画像表示 */
  opacity: 0;
  animation: fadeZoom 21s infinite;
  animation-fill-mode: forwards;
  box-sizing: border-box; /* はみ出し防止 */
}


.slide-img {
  animation: fadeZoom 21s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out; /* これで加速・減速を滑らかに */
}


/* スライド切り替えのタイミング */
.slide-img:nth-child(1) { animation-delay: 0s; }
.slide-img:nth-child(2) { animation-delay: 6s; }
.slide-img:nth-child(3) { animation-delay: 12s; }
.slide-img:nth-child(4) { animation-delay: 18s; }

/* アニメーション定義 */
@keyframes fadeZoom {
  0%   { opacity: 0; transform: scale(1); }
  10%  { opacity: 1; transform: scale(1.05); }
  33%  { opacity: 1; transform: scale(1.1); }
  43%  { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1); }
}
/* ===== スライド上オーバーレイ文字 ===== */
.slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  max-width: 95vw; /* 横幅が画面からはみ出ない */
  padding: 0 10px;
}

/* 文字サイズ */
.slider-overlay h1 {
  font-size: 3.5rem;
  letter-spacing: 0.1em; /* 文字間を少し広げる */
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  white-space: nowrap;
}
.slider-overlay p {
  font-size: 1.4rem;
  margin: 0;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* ===== スマホ対応 ===== */
@media (max-width: 600px) {
  .slider-overlay {
    text-align: left;
  }
  .slider-overlay h1 {
    font-size: 2rem;
  }
  .slider-overlay p {
    font-size: 1rem;
  }

  .slide-img {
    width: 100vw; /* 横幅を画面幅に固定 */
    height: 100vh;
  }
}



/* スライド上にバナー画像を重ねる */
/* スライド上に右下バナー */
.slider-banner-img {
  position: absolute;
  bottom: -170px;    /* 下からの距離 */
  right: 20px;     /* 右からの距離 */
  z-index: 100;
  display: block;
  max-width: 380px; /* 必要に応じて調整 */
}

.slider-banner-img img {
  width: 100%;     /* バナー画像は親に合わせる */
  height: auto;
  display: block;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .slider-banner-img {
    max-width: 220px;  /* 小さい画面用に縮小 */
  }
}


/* スマホ対応 */
@media (max-width: 600px) {
  .slider-banner-img {
    max-width: 220px;  /* 小さい画面用に縮小 */
    bottom: -80px;    /* 位置を調整 */
    right: -80px;       /* 右固定を解除 */
    left: 50%;         /* 左基準で配置 */
    transform: translateX(-50%); /* 中央寄せ */
  }
}




/* ===== パララックス（背景スクロール対応） ===== */
.parallax {
  height: 20vh;
  background-image: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .parallax { background-attachment: scroll; }
}

/* ===== iPad ===== */
.parallax-wrapper {
  position: relative;
  height: 60vh;          /* 高さはお好みで */
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 120%;          /* 少し大きめにしてズレに対応 */
  background-image: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  will-change: transform;
}

.parallax-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}


/* ===== セクション ===== */
.section {
  width: 100%;
  background: #fafaf8;
  padding: 40px 0px;
  color: #333;
  box-sizing: border-box; /* ← padding含めて幅100% */
}

/* ===== セクション内の中身 ===== */
.section .content {
  max-width: 1200px;
  width: 90%;
  margin: 5px auto;
  box-sizing: border-box;
}


/* ===== セクション ===== */
.section2 {
  position: relative;          /* 背景やコンテンツの基準 */
  width: 100%;
  background: url("lp_img/bc_02.jpg") no-repeat center center;
  background-size: cover;      /* 画像をセクションいっぱいに表示 */
  padding: 20px 20px;
  color: #333;
  box-sizing: border-box;      /* paddingを含めて幅100% */
}

/* ===== セクション ===== */
.section3 {
  width: 100%;
  color: #333;
  box-sizing: border-box; /* ← padding含めて幅100% */
}


/* ===== セクション内の中身 ===== */
.section2 .content {
  max-width: 1200px;
  width: 90%;
  margin: 10px auto;
  box-sizing: border-box;
}




/* ===== 2カラム ===== */
.two-column {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap; /* ← 画面幅狭いとき折り返す */
}

.two-column .text,
.two-column .image {
  flex: 1;
  min-width: 0; /* ← 横スクロール防止 */
}

.two-column img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%; /* ← 横スクロール防止 */
  object-fit: cover;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .section .content {
    width: 90%;
    text-align: left;
  }
}

#concept {
  text-align: center;   /* 中央寄せ */
  max-width: 1200px;    /* 中身の最大幅 */
  width: 90%;           /* 幅を調整 */
  margin: 0 auto;       /* セクション自体を中央に */
  padding: 40px 20px;
  color: #333;
}

h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; /* 明朝体 */
  font-size: 1.8rem; /* PC基準16px */
  letter-spacing: -0.1em; /* 文字間を少し広げる */
  color: #333;      /* 全体文字色 */
  margin: 0 0 1em 0; /* 下マージンで段落間隔 */
}


p {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; /* 明朝体 */
  font-size: 1rem; /* PC基準16px */
  line-height: 1.5; /* 読みやすさ */
  letter-spacing: 0.01em; /* 文字間を少し広げる */
  color: #333;      /* 全体文字色 */
  margin: 0 0 1em 0; /* 下マージンで段落間隔 */
}

/* スマホ調整 */
@media (max-width: 768px) {
  p {
    font-size: 0.9rem; /* 少し小さめ */
  }
}


 .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
  }
  .gallery img {
    width: 100%;
    display: block;
    cursor: pointer;
    border-radius: 0;
    transition: transform 0.9s ease;
  }
  .gallery img:hover {
    transform: scale(1.05);
  }

  /* ライトボックス */
  .lightbox {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    z-index: 1000;
  }
  .lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
  }
  .lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .caption {
    margin-top: 10px;
    color: #ccc;
    font-size: 0.9rem;
  }


  .close, .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
    z-index: 1001;
  }
  .close {
    top: 10px;
    right: 10px;
    transform: none;
  }
  .prev { left: 60px; }
  .next { right: 60px; }

  /* スマホ調整 */
  @media (max-width: 768px) {
    .prev { left: 10px; }
    .next { right: 10px; }
    .close { top: 10px; right: 10px; font-size: 1.5rem; }
  }



/* ===== コンテナ ===== */
.tab-container {
  max-width: 1200px;
  margin: 40px auto;
  font-family: "Yu Mincho","Hiragino Mincho ProN",serif;
  padding: 15px 15px;
}

/* ===== タブボタン ===== */
.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.tab-button {
  flex: 1;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  transition: color 0.3s;
}
.tab-button.active {
  color: #000;
  font-weight: bold;
}
.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
}

/* ===== タブコンテンツ ===== */
.tab-content {
  position: absolute;
  top: 0;
  left: 5px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tab-content.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== アイテムレイアウト ===== */
.tab-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.tab-item img {
  width: 30%;
  border-radius: 6px;
  object-fit: cover;
}

.tab-text {
  flex: 1;
  text-align: left;
}
.tab-text h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.tab-text p {
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .tab-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tab-item img {
    width: 100%;
    max-width: 320px;
  }

  .tab-text {
    margin-top: 12px;
  }
}




/* 縦長バナー：常に表示 */
.monitor-banner {
  position: fixed;
  top: 50px;
  left: 0;
  width: 60px;
  height: 200px;
  background-color: #bfa145;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-align: center;
  font-family: 'Yu Mincho','Hiragino Mincho ProN', serif;
  font-weight: bold;
  border-radius: 0 10px 10px 0;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.9s, background 0.9s;
}

.monitor-banner:hover {
  transform: translateX(0px);
  box-shadow: 4px 4px 20px rgba(255,215,0,0.7);
  background: linear-gradient(180deg, #ffd700, #bfa145);
}

/* お問い合わせボタン：PCのみ */
.monitor-contact-btn {
  position: fixed;
  top: 260px; /* バナー下に配置 */
  left: 0;
  width: 60px;
  height: 160px;
  background-color: #fff; /* 白ベース */
  color: #bfa145;         /* 文字色ゴールド */
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-align: center;
  font-family: 'Yu Mincho','Hiragino Mincho ProN', serif;
  font-weight: bold;
  border-radius: 0 10px 10px 0;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9998;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.5s, background 0.5s;
}

.monitor-contact-btn:hover {
  transform: translateX(0px);
  box-shadow: 4px 4px 15px rgba(255,215,0,0.7);
  background: linear-gradient(180deg, #ccc, #fff);
}

/* ===== スマホ非表示（768px以下） ===== */
@media (max-width: 768px) {
  .monitor-contact-btn {
    display: none !important;
  }
}
/* ===== スマホ非表示（768px以下） ===== */
@media (max-width: 768px) {
  .monitor-banner,
  .monitor-contact-btn {
    display: none !important;
  }
}




html {
  scroll-behavior: smooth;
}



/* スマホ対応 */
@media (max-width: 768px) {
  .monitor-banner {
    width: 50px;
    height: 150px;
    font-size: 14px;
  }
}




/* ===== 共通の枠 ===== */
.monitor-wrapper {
  border: 2px solid #bfa145;
  background: #000;
  padding: 20px;
  max-width: 1200px;
  width: 95%;
  margin: 50px auto;
  box-sizing: border-box;
  color: #bfa145;
}

/* ===== 上段：モニター募集 ===== */
.monitor-box {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.monitor-box img {
  width: 500px;
  object-fit: cover;
}

.monitor-content {
  flex:1;
}

.monitor-content h2 {
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 0px;
  font-weight: normal;
}

.monitor-content h3 {
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 0px;
}

.monitor-content ul {
  list-style: none;
  letter-spacing: 2px;
  padding: 0;
  margin: 0;
}

.monitor-content li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.monitor-content li:last-child {
  border-bottom: none;
}

/* ===== 下段：特典ブロック ===== */
.bonus-section-wrapper {
  margin-top: 40px;
}

.bonus-title {
  text-align: center;
  font-size: 24px;
  color: #bfa145;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

/* 特典3つ */
.bonus-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bonus-item {
  text-align: center;
  flex: 1 1 30%;
  max-width: 250px;
  background: #111;
  padding: 15px;
  border: 1.5px solid #bfa145;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.7);
}

.bonus-item h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: 2px;
  color: #bfa145;
}

.bonus-item img {
  width: 100%;
  border-radius: 6px;
  display: block;
  margin-bottom: 10px;
}

.bonus-item p {
  margin: 0;
  font-family: 'Yu Mincho','Hiragino Mincho ProN', serif;
  color: #fff;
  font-size: 14px;
}



/* トータル説明文の装飾 */
.bonus-description {
  margin-top: 20px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: left; /* 左揃え */
  background: rgba(191, 161, 69, 0.15); /* 薄いゴールド背景 */
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid rgba(191, 161, 69, 0.3); /* 枠線で高級感 */
}



/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .monitor-wrapper {
    width: 100%;   /* 幅を95%にして左右の余白を狭く */
  }

  .monitor-box {
    flex-direction: column;
    text-align: left;
  }


  .bonus-section {
    flex-direction: column;
    align-items: center;
  }

  .bonus-item {
    max-width: 100%;  /* 幅を95%に */
    margin-bottom: 0px;
  }
}

/* スマホ用（768px以下の画面幅） */
@media (max-width: 768px) {
  .monitor-box img {
    width: 100%;
  }
}

/* スマホ用（768px以下） */
@media (max-width: 768px) {
  .bonus-description {
    font-size: 11px; /* スマホ用に少し小さく */
    line-height: 1.6; /* 読みやすい行間 */
  }
}



/* 360度回転用のコンテナ */
.rotate360 {
  width: 450px;          /* 表示サイズ */
  margin: 40px auto;     /* セクション内中央 */
  position: relative;    /* JSで回転させるため relative のまま */
  overflow: hidden;
  touch-action: pan-y;   /* スマホ横スワイプ対応 */
}

/* 画像 */
.rotate360 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
/* スマホ表示 */
@media (max-width: 767px) {
  .rotate360 {
    width: 300px; /* 小さめに調整 */
    margin: 20px auto; /* 上下マージンも少し小さく */
  }
}




 /* デフォルトはスマホ1列 */
.photo-comment-section {
  display: grid;
  grid-template-columns: 1fr; /* スマホは1列 */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.photo-comment {
  background: #fff;
  text-align: center;
}

.photo-comment img,
.photo-comment video {
  width: 100%;     /* 横幅はコンテナに合わせる */
  height: auto;    /* 縦横比を保持 */
  margin-bottom: 10px;
  display: block;
}

/* PCでは2列 */
@media (min-width: 768px) {
  .photo-comment-section {
    grid-template-columns: repeat(2, 1fr);
  }
}



