@charset "UTF-8";
/* CSS Document */

html,
body {
	padding: 0;
	margin: 0;
}
img {
	width: 100%;
	border: none;
}
a {
	text-decoration: none;
	color: #FFF;
}
#lp_wrap {
	background: #111111;
	position: relative;
	padding-bottom: 5%;
	font-size: 0.875rem;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

/* ===== 目次 ===== */
.index {
  padding: 0 0.5em;
  position: relative;
  border: 2px solid #555;
  background: #171717;
  font-weight: bold;
}

.index li {
  line-height: 1.5;
  padding: 0.8em;
  color: #fff;
  border-bottom: dashed 1px #555;
  list-style-type: none!important;
}

.index li:last-of-type {
  border-bottom: none;
}

.index-title {
  padding: 6px; 
  background: #555;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
}

/* ===== ホバーボタン ===== */
.chase-btn { 
  position: fixed;
  bottom: 16px;
  right: 10%;
  padding: 12px 24px;
  border-radius: 2rem;
  background: #53268a;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 99999;
}
.chase-btn:hover {
  opacity: 90%;
}


.section {
	max-width: 1000px;
	width: 94%;
	margin: 0 auto 2rem;
}

.section h2 {
  padding: 8px;
  margin: 2rem auto;
  border-bottom: solid 2px #ddd;
  font-size: 1.2rem;
  font-weight: bold;
  color: #eee;
}

.section p {
  padding: 6px;
  margin: 1rem auto;
  color: #eee;
}

.price p {
  margin: 1rem auto;
  line-height: 1.5;
  padding: 8px;
  color: #555;
  font-weight: bold;
  background: #eee;
}

/* 交互アイテム */
.item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 4px;
  margin-bottom: 2.5rem;
  background: #171717;
}

/* 画像 */
.item-img {
  width: 100%;
  max-width: 480px;
}

.item-img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* テキスト */
.item-text {
  flex: 1;
  width: 100%;
}

.item-text h3{
  padding: 4px;
  margin-bottom: 0.8rem;
  border-bottom: solid 2px #333;
  font-size: 1rem;
  font-weight: bold;
  color: #eee;
}

.item-text p {
  line-height: 1.8;
  color: #eee;
}

/* 偶数番目だけ左右を反転 */
.item:nth-child(odd) {
  flex-direction: row-reverse;
}

/* スマホ */
@media (max-width: 768px) {
  .item {
    flex-direction: column;
    gap: 20px;
  }

  /* 交互指定を無効化 */
  .item:nth-child(odd) {
    flex-direction: column;
  }

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


/* スライダー */
.slick-slide {
	height: auto;
}
.slider-items img {
  display: block;
  width: 100%;
  padding: 0.3rem;
	box-sizing: border-box;
}

.slider p {
  text-align: left;
  font-size: 0.8rem;
  margin: 0.125rem 0;
}

/* ボタン */
.buy {
  text-align:center;
  margin: 2rem auto;
}

.buy-button {
    display: inline-block;
    background: #53268a;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 48px;
    border-radius: 999px;
    transition: .25s;
  }

.buy-button:hover{
    opacity: .9;
    transform: translateY(-2px);
  }
	.js-webComponents {
		display: flex;
		flex-wrap: nowrap;
		gap:2%;
	}
.js-webComponents p {
	    font-size: 0.8rem;
    margin: 0.125rem 0;
	padding: 0;
}

@media (max-width: 768px) {
	.slick-next {
		right: 10px;
	}
	.slick-prev {
		left: 10px;
		z-index: 10
	}
	.js-webComponents {
		display: flex;
		flex-wrap: wrap;
	}
	.x2 a {
		width: 48%;
		display: block;		
		margin-bottom: 10px;
	}
	.x3 a {
		width: 31.333%;
		display: block;
			

	}
}
.section,.item {
	opacity: 0;
	transition: 1s all 0s ease;
}
.section.ac,.item.ac {
	opacity: 1;
}