body {
	font-family: sans-serif;
	line-height: 1.7;
	margin: 0;
	background: #fff;
	color: #333;
}

.hero {
	position: relative;
	width: 100%;
	aspect-ratio: 107 / 35;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2em;
	font-weight: bold;
	text-shadow: 0 0 8px black;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	animation: slideShow 15s infinite;
	opacity: 0;
	z-index: 1;
}

.hero-slide:nth-child(1) {
	background-image: url('/img/slide1.jpg');
	animation-delay: 0s;
}

.hero-slide:nth-child(2) {
	background-image: url('/img/slide2.jpg');
	animation-delay: 4s;
}

.hero-slide:nth-child(3) {
	background-image: url('/img/slide3.jpg');
	animation-delay: 7s;
}

.hero-slide:nth-child(4) {
	background-image: url('/img/slide4.jpg');
	animation-delay: 10s;
}

@keyframes slideShow {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	30% {
		opacity: 1;
	}

	40% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.hero-text {
	position: relative;
	font-size: 3.5vw;
	/* 画面幅に応じて自動調整 */
	white-space: nowrap;
	/* 改行を防ぐ */
	text-align: center;
	padding: 0 1em;
	z-index: 2;
}

#lp-acstbj {
	max-width: 960px;
	margin: auto;
	padding: 2em 1em;
	font-family: "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	margin: 0;
	background: #fff;
	color: #222;
	line-height: 1.8;
	margin: auto;
}

#lp-acstbj h2 {
	font-size: 1.6em;
	font-weight: 600;
	border-left: 4px solid #b00000;
	padding-left: 0.5em;
	margin-bottom: 1em;
}

#lp-acstbj .two-column {
	display: flex;
	gap: 2em;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 3em;
}

#lp-acstbj .two-column .text {
	flex: 1 1 55%;
}

#lp-acstbj .two-column .image {
	flex: 1 1 40%;
}

#lp-acstbj .two-column img {
	width: 100%;
	border-radius: 10px;
}

#lp-acstbj .cta {
	text-align: center;
	margin: 1em 0;
}

#lp-acstbj .cta a {
	display: inline-block;
	background: #b00000;
	color: white;
	padding: 1em 2em;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1em;
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	transition: background 0.3s ease;
}

#lp-acstbj .cta a:hover {
	background: #900000;
}

#lp-acstbj ul {
	padding-left: 1.2em;
}

@media (max-width: 768px) {
	#lp-acstbj .hero-text {
		font-size: 1.4em;
		white-space: normal;
		padding: 0 1em;
		text-align: center;
	}
}