@charset "utf-8";

#result-report.new-result {
	background-color: #0A0425;
	margin: 40px 0;
	padding: 50px 0;
	color: #fff;
	overflow: hidden;
	.result-report__ttl {
		text-align: center;
		margin-bottom: 30px;
	}

.result-report__swiper {
	position: relative;
	margin-bottom: 30px;
	.swiper-pagination {
		text-align: center;
	}
}
.result-report__box {
	margin-bottom: 40px;
}
.report-box__inner {
	color: #fff;
	text-decoration: none;
	.report-box__img {
		position: relative;
		margin-bottom: 10px;
		height: 255px;
		img {
			object-fit: cover;
			width: 100%;
			height: 100%;
			border-radius: 10px;
		}
		&::before {
			position: absolute;
			content: url(../svg/result-report_icon.svg);
			display: inline-block;
			width: 20px;
			height: 20px;
			top: 12px;
			right: 12px;
		}
	}
}
.report-box__info {
	padding: 0 6px;
	.report-box__date {
		font-size: 1.3rem;
	}
	.report-box__category {
		font-size: 1.5rem;
	}
	.report-box__name {
		font-size: 1.4rem;
	}
	.report-box__ttl {
		font-size: 1.4rem;
	}
	.report-box__price {
		font-size: 1.2rem;
		.price-num {
			padding-left: 6px;
			font-size: 2rem;
			font-weight: bold;
		}
	}
}
.result-report__link {
	text-align: center;
	.report-link__btn {
		display: inline-block;
		margin-bottom: 10px;
		padding: 1em 0;
		width: 380px;
		background: linear-gradient(90deg, #2C2D42 0%, #4A5C63 100%);
		color: #fff;
		font-size: 18px;
		border: 1px solid rgba(255, 255, 255, 0.45);
		text-decoration: none;
	}
	.report-link__txt {
		font-size: 14px;
	}
}

.swiper-button-next {
	width: 28px;
	height: 28px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	.swiper-button-button__in {
	&::before,
	&::after {
		right: -12px;
		transform-origin: calc(100% - 1px) 50%;
	}
	}
}
.swiper-button-prev {
	width: 28px;
	height: 28px;
	background: #fff;
	border-radius: 50%;
	.swiper-button-button__in {
	&::before,
	&::after {
		right: -12px;
		transform-origin: 1px 50%;
	}
	}
}
.swiper-button-button__in {
	position: relative;
	display: inline-block;
	width: 7.7px;
	height: 13.3px;
	cursor: pointer;
	&::before,
	&::after {
		content: "";
		position: absolute;
		top: 8px;
		width: 10px;
		height: 2px;
		border-radius: 9999px;
		background-color: #000000;
	}
	&::before {
		transform: rotate(45deg);
	}
	&::after {
		transform: rotate(-45deg);
	}
}
.result-report__control {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}
.result-report__control .swiper-pagination-bullet{
	display: inline-block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 4px;
}
.result-report__control .swiper-pagination-bullet:not(.swiper-pagination-bullet-active){
	background: #fff;
}
.result-report__control .swiper-pagination-bullet-active{
	background: #0A0425;
	border: 1px solid #fff;
}
}

#top #result-report.new-result {
	margin-bottom: 0;
}
