@charset "UTF-8";

/* ========================================
   事業案内ページ (Service Page)
======================================== */

/* --- ページヘッダー --- */
.service-header {
	background: url('../img/common/corporate-subpage-header-image.png') no-repeat center center / cover;
	padding: 35px 20px;
	text-align: center;
}

.service-header-title {
	color: #877469;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.5em;
}

/* --- 事業案内セクション --- */
.service-section {
	padding: 80px 0;
}

/* --- 事業リスト --- */
.service-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.service-item {
	display: flex;
	align-items: center;
	gap: 40px;
}

.service-item.reverse {
	flex-direction: row-reverse;
}

/* --- 事業画像 --- */
.service-item-image {
	flex: 1.85;
	max-width: 65%;
}

.service-item-image-inner {
	width: 100%;
	padding-top: 35%;
	background-color: #e0e0e0;
	position: relative;
	overflow: hidden;
}

.service-item-image-inner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- 事業テキスト --- */
.service-item-content {
	flex: 1;
	text-align: center;
}

.service-item-title {
	font-size: 1.3rem;
	color: #7cb342;
	margin: 0 0 20px 0;
	font-weight: 700;
}

.service-btn {
	display: block;
	background-color: #7cb342;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
	letter-spacing: 0.05em;
}

.service-btn:hover {
	background-color: #689f38;
	color: #fff;
}

/* ========================================
   レスポンシブ - タブレット
======================================== */
@media screen and (max-width: 1023px) {
	.service-header {
		padding: 40px 20px;
	}

	.service-header-title {
		font-size: 1.6rem;
	}

	.service-section {
		padding: 60px 0;
	}

	.service-item {
		gap: 30px;
	}

	.service-item-title {
		font-size: 1.1rem;
	}

}

/* ========================================
   レスポンシブ - スマホ
======================================== */
@media screen and (max-width: 767px) {
	.service-header {
		padding: 30px 15px;
	}

	.service-header-title {
		font-size: 1.3rem;
		letter-spacing: 0.2em;
	}

	.service-section {
		padding: 40px 0;
	}

	.service-list {
		gap: 30px;
	}

	.service-item,
	.service-item.reverse {
		flex-direction: column;
		gap: 15px;
	}

	.service-item-image {
		order: 1;
		width: 100%;
		max-width: 100%;
	}

	.service-item-content {
		order: 2;
		text-align: center;
		width: 100%;
	}

	.service-item-image-inner {
		padding-top: 0;
		position: static;
	}

	.service-item-image-inner img {
		position: static;
		width: 100%;
		height: auto;
	}

	.service-item-title {
		font-size: 1.3rem;
		margin-bottom: 15px;
		text-align: center;
	}

	.service-btn {
		padding: 10px 25px;
		font-size: 13px;
	}

}
