@charset "UTF-8";

.cvsupport-v2 {
	position: relative;
	background-color: #2f4365;
	padding: 60px 0;
	overflow: hidden;
}

.cvsupport-v2__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 58.19%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.cvsupport-v2__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cvsupport-v2__inner {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.cvsupport-v2__title {
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	text-shadow:
		0 -3px 5px rgba(14, 27, 44, 0.45),
		0 3px 5px rgba(14, 27, 44, 0.45);
}

/* ---------- Cards ---------- */
.cvsupport-v2__cards {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.cvsupport-v2__cards > li {
	display: flex;
}

.cvsupport-v2__card {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 24px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.2);
	color: #2d3840;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
  &:hover{
    opacity: 0.8;
    text-decoration: none;
  }
}

.cvsupport-v2__card:link,
.cvsupport-v2__card:visited {
	color: #2d3840;
}

.cvsupport-v2__card-body {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cvsupport-v2__card-head {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cvsupport-v2__card-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #0a819a;
}

.cvsupport-v2__card-icon svg {
	width: 24px;
	height: 24px;
}

.cvsupport-v2__card-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	color: #2d3840;
}

.cvsupport-v2__card-desc {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #2d3840;
}

.cvsupport-v2__card-arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #2d3840;
}

/* ---------- Tel ---------- */
.cvsupport-v2__tel {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
}

.cvsupport-v2__tel-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	color: #fff;
	white-space: nowrap;
}

.cvsupport-v2__tel-free {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}

.cvsupport-v2__tel-hours {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
}

.cvsupport-v2__tel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: #fff;
}

.cvsupport-v2__tel-icon svg {
	width: 100%;
	height: 100%;
}

.cvsupport-v2__tel-number {
	margin: 0;
	font-style: normal;
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
	white-space: nowrap;
}

.cvsupport-v2__tel-number a:link,
.cvsupport-v2__tel-number a:visited {
	color: #fff;
	text-decoration: none;
	pointer-events: none;
}

/* ---------- Links ---------- */
.cvsupport-v2__links {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 35.6px;
  a{
    color: #fff;
  }
}

/* ---------- Tablet ---------- */
@media screen and (max-width: 1023px) {
	.cvsupport-v2__inner {
		padding: 0 24px;
	}

	.cvsupport-v2__cards {
		gap: 16px;
	}

	.cvsupport-v2__card {
		padding: 20px;
	}

	.cvsupport-v2__card-title {
		font-size: 18px;
	}

	.cvsupport-v2__tel-number {
		font-size: 44px;
	}
}

/* ---------- SP ---------- */
@media screen and (max-width: 767px) {
	.cvsupport-v2 {
		padding: 40px 0;
	}

	.cvsupport-v2__bg {
		width: 100%;
	}

	.cvsupport-v2__bg::after {
		content: "";
		position: absolute;
		inset: 0;
		background-color: rgba(47, 67, 101, 0.55);
	}

	.cvsupport-v2__inner {
		gap: 24px;
		padding: 0 20px;
	}

	.cvsupport-v2__title {
		font-size: 18px;
		line-height: 1.6;
	}

	.cvsupport-v2__cards {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.cvsupport-v2__card {
		padding: 16px 20px;
	}

	.cvsupport-v2__card-body {
		gap: 8px;
	}

	.cvsupport-v2__card-title {
		font-size: 18px;
	}

	.cvsupport-v2__card-desc {
		font-size: 14px;
	}

	.cvsupport-v2__tel {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 12px;
	}

	.cvsupport-v2__tel-meta {
		flex-direction: row;
		align-items: baseline;
		gap: 8px;
		order: 1;
		width: 100%;
		justify-content: center;
	}

	.cvsupport-v2__tel-icon {
		width: 32px;
		height: 32px;
		order: 2;
	}

	.cvsupport-v2__tel-number {
		font-size: 34px;
		order: 3;
	}

	.cvsupport-v2__tel-number a:link,
	.cvsupport-v2__tel-number a:visited {
		pointer-events: auto;
	}

	.cvsupport-v2__links {
		gap: 8px 20px;
	}

	.cvsupport-v2__links a {
		font-size: 14px;
	}
}
