body {
  font-family: "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
  /* background-color: rgba(0, 0, 0); */
  /* background-color: #f3f4f6; */
  color: #FFFFFF;
  /* background-image: url("/images/it.png"); */
  /* background-repeat: repeat; */
  /* background-position: bottom; */
  /* background-size: contain; */
}

/* body 自体は黒い背景色を持ち、コンテンツを保持する */
body {
  background-color: black; /* すでに設定されていた背景色 */
  position: relative; /* 疑似要素の位置の基準とする */
  z-index: 0; /* コンテンツが背景画像より上に表示されるように */
  /* その他の既存のスタイルがあればここに残す */
}

/* ::before 疑似要素を使って背景画像を表示し、透過度を設定する */
body::before {
  content: '';
  position: fixed; /* 画面全体に固定（スクロールしても動かない） */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* 透過させたい背景画像を設定 */
  background-image: url("/images/it.png");
  background-size: cover; /* 画面全体を覆うように拡大縮小 */
  background-position: center;
  /* background-repeat: no-repeat; */
  
  /* 透過度を設定 (0.0〜1.0で指定。例：0.2は80%透過) */
  opacity: 0.6; 
  
  /* コンテンツより背面に配置 */
  z-index: -1; 
}




/* モーダルの背景（初期は非表示） */
.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed; /* 画面に固定 */
  z-index: 1000; /* 他の要素より手前に表示 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* 内容が画面を超えたらスクロール可能に */
  background-color: rgba(0,0,0,0.7); /* 半透明の黒 */
}

/* モーダルの内容エリア */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto; /* 上から10%、左右中央に配置 */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* 幅 */
  max-width: 400px; /* 最大幅 */
  border-radius: 10px;
  text-align: center;
}

/* 閉じるボタン */
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* QRコードが表示されるエリアのスタイル（任意） */
#qrcode {
  margin: 20px auto;
  width: fit-content;
  padding: 10px;
  border: 1px solid #ccc;
}

/* 質問のクリック可能な部分にカーソルを合わせる */
.click-trigger {
  cursor: pointer;
}

/* 💡 すべての要素にborder-boxを適用するCSSリセット */
*,
*::before,
*::after {
box-sizing: border-box;
}

/* 従来のtoggle-textのスタイル (再掲) */
.toggle-text {
  max-height: 0;
  overflow: hidden;
  /* transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out; */
  padding: 0 5px 0 5px; /* 非表示時もパディングを固定し、幅のブレを防ぐ */
  /* background-color: #333; */
  /* 💡 必要であれば、この要素の幅を固定する (例: width: 100%;) */
}

.toggle-text.active {
  max-height: 500px; 
  padding: 10px; /* 表示時のパディングは、上下の調整が主 */
}

/* スライドショー */
/* --- 基本設定 (モバイル優先 / 1枚表示) --- */

.slideshow-container {
  max-width: 300px; /* モバイルでは1枚表示のため300pxに設定 */
  position: relative;
  margin: auto;
  overflow: hidden; /* はみ出したスライドを隠す */
}

.mySlides {
  display: none; /* モバイル初期状態は非表示（JSで1枚表示） */
}

/* --- PC版設定 (@media) --- */
@media (min-width: 768px) {
  .slideshow-container {
      max-width: 900px; /* 3枚表示分 (300px x 3) の幅を確保 */
  }

  /* スライドトラック: Flexboxを使って横並びにし、JSで移動させる */
  .slide-track {
      display: flex;
      width: 100%; /* (スライド数 4枚) x 100% = 400% */
      transition: transform 0.5s ease-in-out; 
      transform: translateX(0);
  }

  /* 個別スライドの幅を33.33%に設定 */
  .mySlides {
      display: block; /* PCでは全て表示状態にする */
      min-width: 33.333%; /* 3枚表示するため、コンテナ幅の1/3 */
      flex-shrink: 0; /* 縮小させない */
      padding: 0 10px; /* スライド間の隙間 */
      box-sizing: border-box; 
  }
  
  /* 説明テキストは画像の下に配置するため、絶対配置を解除 */
  .text {
      position: static;
      background-color: transparent;
      color: #333;
      margin-top: 10px;
  }
  
  /* ドットナビゲーションは非表示 */
  .dot {
      display: none;
  }
}

/* スライド画像 */
.mySlides img {
  vertical-align: middle;
  border: 1px solid #ccc; /* 枠線を追加して見やすく */
}

/* 説明テキスト */
.text {
  color: #333;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 0;
  width: 100%;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の背景 */
  box-sizing: border-box;
}

/* 次へ/前へ ボタンのスタイル */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 次へボタンの位置調整 */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* ホバー時の背景色 */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* ドットナビゲーションのスタイル */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* アクティブなドットとホバー時の色 */
.active, .dot:hover {
  background-color: #717171;
}

/* フェードアニメーション */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}