html{
	scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background: #000000;
}
.container {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  text-align: center; /* ボタンを中央寄せ */
}
.container img {
  display: block;
  width: 100%;
  height: auto;
}
/* ボタンデザイン */
.cta-button {
  display: inline-block;
  background: #fbfe08; /* 黄色 */
  color: #000; /* 文字は黒 */
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  margin: 20px 0;
  border-radius: 30px; /* 丸みをつける */
  text-decoration: none; /* リンクの下線消す */
  box-shadow: 0 5px 0 #c6c800, /* 下に濃い影で立体感 */ 0 8px 15px rgba(0, 0, 0, 0.3); /* ふんわり影 */
  transition: all 0.2s ease; /* ホバー時にアニメーション */
}
.cta-button:hover {
  transform: translateY(2px); /* 少し押し込まれる感じ */
  box-shadow: 0 3px 0 #c6c800, 0 6px 10px rgba(0, 0, 0, 0.3);
}
#item-con {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
}
#item-con a {
  color: #FFFFFF;
  font-size: 12px;
}
#item-con th {
  font-size: 14px;
}
#item-con td {
	color: #FF0004;
	font-weight: bold;
}
#item-con img {
  width: 100%;
  max-width: 400px;
}
.item-box01 {
  width: 100%;
  max-width: 400px;
  justify-content: space-between;
}
.item-box02 {
  width: 100%;
  max-width: 400px;
  justify-content: space-between;
}
.btn-ye{
	margin-bottom: 80px;
}