@charset "UTF-8";
/* ========================================================================
   service.css : 支援内容トップ（一覧）ページ
   ======================================================================== */


/* ---------- ページ固有の mvLower 背景画像 ---------- */
.mvLower {
	background-image: url("/img/service/bg_mv.jpg");
}


/* ============================================================
   イントロ（中央揃え）
   ============================================================ */
.serviceLower__intro {
	padding: 80px 0 48px;
}
.serviceLower__intro-h2 {
	font-size: 21px;
	font-weight: 700;
	color: var(--color-corp);
	margin-bottom: 20px;
	text-align: center;
}
.serviceLower__intro-txt {
	font-size: 16px;
	color: #333;
	line-height: 1.85;
	max-width: 760px;
	margin: 0 auto;
}


/* ============================================================
   カードグリッド（3列・行間 0px）
   ============================================================ */
.serviceLower__cards-wrap {
	padding-bottom: 150px;
}
.serviceLower__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.serviceLower__card {
	position: relative;
	min-height: 33.333%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 15px;
	text-decoration: none;
	color: #FFF;
	background-color: #d9d9d9;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity .25s;
	overflow: hidden;
}
/* 写真の上に薄い暗幕（文字可読性確保） */
.serviceLower__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,.35);
	z-index: 0;
}
.serviceLower__card:hover {
	opacity: .85;
}

/* 各カードのグレー濃淡（写真未読込時のフォールバック） */
.serviceLower__card--g1 { background-color: #E5E5E5; }
.serviceLower__card--g2 { background-color: #D9D9D9; }
.serviceLower__card--g3 { background-color: #C9C9C9; }

/* 各カード背景写真 */
.serviceLower__cards .serviceLower__card:nth-child(1) { background-image: url("/img/service/bg_menu_01.jpg"); }
.serviceLower__cards .serviceLower__card:nth-child(2) { background-image: url("/img/service/bg_menu_02.jpg"); }
.serviceLower__cards .serviceLower__card:nth-child(3) { background-image: url("/img/service/bg_menu_03.jpg"); }
.serviceLower__cards .serviceLower__card:nth-child(4) { background-image: url("/img/service/bg_menu_04.jpg"); }
.serviceLower__cards .serviceLower__card:nth-child(5) { background-image: url("/img/service/bg_menu_05.jpg"); }

.serviceLower__card-content {
	text-align: center;
	position: relative;
	z-index: 1;
}
.serviceLower__card-ja {
	font-size: 21px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 5px;
}
.serviceLower__card-en {
	font-family: var(--font-en);
	font-size: 12px;
	color: #FFF;
	letter-spacing: .1em;
	margin-bottom: 56px;
}

.serviceLower__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 165px;
	height: 35px;
	border: 1px solid var(--color-corp);
	border-radius: 9999px;
	color: var(--color-corp);
	font-size: 12px;
	font-weight: 700;
	background-color: #FFF;
	transition: background-color .3s, color .3s;
}
.serviceLower__card:hover .serviceLower__card-btn {
	background-color: var(--color-corp);
	color: #FFF;
}

.serviceLower__card-ph {
	position: absolute;
	right: 16px;
	bottom: 12px;
	font-family: var(--font-en);
	font-size: 12px;
	color: #FFF;
	letter-spacing: .15em;
	z-index: 1;
}


/* ============================================================
   SP（〜767px）
   ============================================================ */
@media screen and (max-width: 767px){
	.serviceLower__intro {
		padding: 60px 0 32px;
	}
	.serviceLower__intro-h2 {
		font-size: 18px;
		margin-bottom: 18px;
	}
	.serviceLower__intro-txt {
		font-size: 14px;
		line-height: 1.85;
	}

	.serviceLower__cards-wrap {
		padding-bottom: 60px;
	}
	.serviceLower__cards {
		grid-template-columns: 1fr;
	}
	.serviceLower__card {
		min-height: 220px;
		padding: 48px 24px;
	}
	.serviceLower__card-ja {
		font-size: 18px;
	}
	.serviceLower__card-en {
		font-size: 11px;
		margin-bottom: 32px;
	}
	.serviceLower__card-btn {
		font-size: 12px;
		padding: 8px 24px;
	}
}
