.topCta {
	display: flex;
	gap: 12px;
	margin: 0 0 15px 0;
	padding: 0;
	list-style: none;
}
.topCta__item {
	flex: 1;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.topCta__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 4px;
	color: #ffffff;
	text-decoration: none;
}
.topCta__card:hover {
	color: #ffffff;
	opacity: 0.9;
}
.topCta__card--buy {
	background: linear-gradient(rgba(0, 0, 196, 0.6), rgba(0, 0, 196, 0.6)), url(/campaign/campaign-bg.png) center/cover no-repeat;
}
.topCta__card--sell {
	background: linear-gradient(rgba(0, 79, 196, 0.6), rgba(0, 79, 196, 0.6)), url(/campaign/campaign-bg.png) center/cover no-repeat;
}
.topCta--center {
	justify-content: center;
}
.topCta--center .topCta__card {
	align-items: center;
	text-align: center;
}
.topCta--center .topCta__title {
	text-align: center;
}
.topCta--center .topCta__btn {
	align-self: center;
}
.topCta__title {
	display: inline;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	color: #ffffff;
	padding: 8px 8px 8px 0;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.topCta__text {
	display: inline-block;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 1;
	color: #ffffff;
	padding: 4px 8px 4px 0;
}
.topCta__btn {
	display: block;
	align-self: flex-start;
	margin-top: 16px;
	padding: 10px 16px;
	border-radius: 6px;
	background-color: #ffffff;
	color: #1a5694;
	font-size: 16px;
	font-weight: bold;
	line-height: 120%;
}
.topCta__btn::after {
	content: "";
	display: inline-block;
	position: relative;
	top: -2px;
	width: 7px;
	height: 7px;
	margin-left: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	vertical-align: middle;
}
.topCta--thanks .topCta__title {
	display: block;
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.topCta--thanks .topCta__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #ffffff;
}
/* カードが 1 枚だけのときも 2 枚並びと同じ幅のまま中央に置く */
.topCta--thanks {
	justify-content: center;
}
.topCta--thanks .topCta__item:only-child {
	flex: 0 0 calc(50% - 6px);
}
.topCta--thanks .topCta__btn {
	align-self: stretch;
	text-align: center;
}
/* モバイル版は縦積みにする */
.topCta--sp {
	flex-direction: column;
	gap: 10px;
	margin: 0 0 20px;
}
.topCta--sp .topCta__card {
	padding: 20px 16px 18px;
	text-align: left;
}
.topCta--sp .topCta__title {
	font-size: 16px;
}
