@charset "utf-8";
/* =============================
   ColumnCta（新築分譲住宅一覧の上に表示するCTA）
   ============================= */
#ColumnCta {
	padding: 40px 15px 30px 15px;
	box-sizing: border-box;
}
#ColumnCta .content {
	max-width: 850px;
	margin: 0 auto;
}
.column_cta_text {
	text-align: center;
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 1.7;
	margin: 0 0 24px 0;
	color: #164237;
}
.column_cta_btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	padding: 0;
	margin: 0;
	list-style: none;
}
.column_cta_btn {
	flex: 1 1 0;
	max-width: 410px;
	display: flex;
}
.column_cta_btn a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 38px 26px;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.2s;
	box-sizing: border-box;
	min-height: 150px;
}
.column_cta_btn a:hover {
	opacity: 0.92;
}
.column_cta_btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}
.column_cta_btn_request a {
	background-image: url(../img/cta_request.jpg);
}
.column_cta_btn_request a::before {
	background: rgba(29, 96, 117, 0.82);
}
.column_cta_btn_member a {
	background-image: url(../img/cta_member.jpg);
}
.column_cta_btn_member a::before {
	background: rgba(213, 82, 61, 0.82);
}
.column_cta_btn_icon,
.column_cta_btn_text,
.column_cta_btn_arrow {
	position: relative;
	z-index: 1;
}
.column_cta_btn_icon {
	font-size: 3.4rem;
	flex-shrink: 0;
	line-height: 1;
}
.column_cta_btn_text {
	flex: 1;
	min-width: 0;
}
.column_cta_btn_title {
	display: block;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 4px;
}
.column_cta_btn_sub {
	display: block;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 6px;
	opacity: 0.95;
}
.column_cta_btn_arrow {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: 1.5px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}
@media screen and (max-width: 580px) {
	#ColumnCta {
		padding: 30px 15px 20px 15px;
	}
	.column_cta_text {
		font-size: 1.6rem;
		line-height: 1.6;
		margin-bottom: 18px;
	}
	.column_cta_btns {
		flex-direction: column;
		gap: 10px;
	}
	.column_cta_btn {
		max-width: 100%;
	}
	.column_cta_btn a {
		padding: 24px 18px;
		gap: 12px;
		min-height: 110px;
	}
	.column_cta_btn_icon {
		font-size: 2.4rem;
	}
	.column_cta_btn_title {
		font-size: 2.2rem;
	}
	.column_cta_btn_sub {
		font-size: 1.3rem;
	}
	.column_cta_btn_arrow {
		width: 28px;
		height: 28px;
		font-size: 1.2rem;
	}
}
