.sub-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* デジタル・Web・スマホのイメージ */
	background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
	opacity: 0.3;
	z-index: 1;
}
.sub-hero h1 {
	font-size: 2.2rem;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.sub-hero p {
	font-size: 0.9rem;
	opacity: 0.9;
	font-family: var(--font-base);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* --- セクション共通 --- */
section {
	padding: 5rem 0;
	scroll-margin-top: 80px;
}
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}
.section-subtitle {
	display: block;
	font-size: 0.9rem;
	color: var(--color-secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 1rem;
}
.section-title {
	font-size: 2.2rem;
	color: var(--color-primary);
	position: relative;
	display: inline-block;
}
.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--color-secondary);
	margin: 1rem auto 0;
}

/* --- 詳細コンテンツレイアウト (Zigzag) --- */
.feature-block {
	margin-bottom: 5rem;
}
.feature-img-wrapper {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	height: 100%;
	min-height: 350px;
}
.feature-img-wrapper1SP {
	background: url(../images/feature-img-wrapper1SP.jpeg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.feature-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.feature-img-wrapper:hover img {
	transform: scale(1.05);
}
.feature-content {
	padding: 2rem;
}
.feature-title {
	font-size: 1.8rem;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	border-left: 5px solid var(--color-secondary);
	padding-left: 1rem;
}
.feature-desc {
	font-size: 1rem;
	color: #555;
	margin-bottom: 1.5rem;
}
.feature-list {
	list-style: none;
	padding: 0;
}
.feature-list li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: 0.8rem;
	font-weight: 500;
	color: var(--color-text-body);
}
.feature-list li::before {
	content: "\f26a"; /* Bootstrap Icons: check-circle-fill */
	font-family: "bootstrap-icons";
	position: absolute;
	left: 0;
	top: 4px;
	color: var(--color-secondary);
}
/* SNSアイコン用カラー */
.feature-list li.icon-line::before { content: "\f646"; color: #06c755; }
.feature-list li.icon-insta::before { content: "\f437"; color: #E1306C; }
.feature-list li.icon-web::before { content: "\F633"; color: #0b2c4d; }

/* --- お問い合わせ (共通) --- */
.cta-section {
	padding: 6rem 0;
	background: linear-gradient(rgba(11, 44, 77, 0.9), rgba(11, 44, 77, 0.9)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=2070') center/cover fixed;
	color: #fff;
	text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1.5rem; }
.btn-cta-primary {
	background-color: var(--color-secondary);
	color: #fff;
	padding: 1rem 3rem;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-block;
	margin-top: 2rem;
	border: 2px solid var(--color-secondary);
}
.btn-cta-primary:hover {
	background-color: transparent;
	color: #fff;
}

/* レスポンシブ調整 */
@media (max-width: 991px) {
	.feature-block { margin-bottom: 3rem; }
	.feature-img-wrapper { min-height: 250px; margin-bottom: 1.5rem; }
	.sub-hero h1 { font-size: 1.8rem; }
	.feature-content {
		padding: 2rem 0;
	}
}