@charset "utf-8";

/* ============================================
   プランページ CTAボタン
   ============================================ */
.p-plan__cta {
	margin: 40px auto;
}

.p-plan__cta-lead {
	color: #333;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.p-plan__cta-lead strong {
	font-weight: 700;
}

.p-plan__cta-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 16px;
}

.p-plan__cta-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	width: 280px;
	height: 48px;
	padding: 0 26px;
	border-radius: 24px;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	filter: drop-shadow(2px 2px 5px rgba(155, 155, 155, 0.6));
	transition: opacity 0.3s ease;
}

.p-plan__cta-btn:hover {
	color: #fff;
	opacity: 0.8;
}

/* アイコン（::before） */
.p-plan__cta-btn::before {
	content: "";
	display: block;
	flex-shrink: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

/* 矢印（::after） */
.p-plan__cta-btn::after {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	background: url("../images/plan/ico_arrow_w.svg") no-repeat center center;
	background-size: contain;
}

.p-plan__cta-btn--survey {
	background-color: #8464cd;
}

.p-plan__cta-btn--survey::before {
	width: 33px;
	height: 33px;
	margin-right: -8px;
	background-image: url("../images/plan/logo_survey.svg");
}

.p-plan__cta-btn--contact {
	background-color: #fb540c;
}

.p-plan__cta-btn--contact::before {
	width: 24px;
	height: 24px;
	margin-right: -7px;
	background-image: url("../images/plan/logo_tel.svg");
}

.p-plan__cta-txt {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	.p-plan__cta {
		margin: 30px 0;
	}

	.p-plan__cta-btns {
		flex-direction: column;
		gap: 16px;
	}

	.p-plan__cta-btn {
		width: 100%;
		max-width: 280px;
	}
}