/* 背景 */
.p-cta__inner {
	position: relative;
	padding: var(--g-sec--md) 0;
}
.p-cta__inner::before {
    position: absolute;
    content: "";
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	background: var(--c-light);
    opacity: 60%;
	z-index: -999;
}
.p-cta__bg {
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
	height: 100%;
	object-fit: cover;
	z-index: -1000;
}

/* コンテンツ */
.p-cta__content {
	max-width: 60rem;
	background: var(--c-light);
	margin-inline: auto;
	padding: var(--g-sec--md) 1rem;
	box-shadow: 0 4px 16px 0 rgba(51, 51, 51, 0.1);
}
.p-cta__ttl {
	margin-bottom: var(--g-sec--xs);
}
.p-cta__description {
	text-align: center;
	font-weight: var(--fw-md);
	margin-bottom: var(--g-sec--sm);
}

/* ボタン */
.p-cta__btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1rem, 2.29vw + .44rem, 2.5rem);
}