@charset "UTF-8";

/*
 * トップページ「お客様レポート」ピックアップ枠
 * 本番表示と提案デモで共通使用
 */
/* 以下の2クラスは、提案用プレビューページだけで使用 */
.report-pickup-preview-page {
	margin: 0;
	padding: 55px 20px;
	background: #eeeeee;
}

.report-pickup-preview-page__content {
	max-width: 940px;
	margin: 0 auto;
	padding: 24px;
	background: #ffffff;
	box-shadow: 0 5px 24px rgba(0, 0, 0, 0.12);
}

.report-pickup {
	position: relative;
	margin: 12px 0 34px;
	border: 1px solid #d5d5d5;
	border-top: 4px solid #d90000;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.report-pickup::after {
	position: absolute;
	right: -8px;
	bottom: -31px;
	content: "REPORT";
	color: rgba(0, 0, 0, 0.035);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 78px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.03em;
	pointer-events: none;
}

.report-pickup__heading {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 20px;
	background: #252525;
	color: #ffffff;
}

.report-pickup__eyebrow,
.report-pickup__guide,
.report-pickup__period,
.report-pickup__customer,
.report-pickup__excerpt {
	margin: 0;
}

.report-pickup__eyebrow {
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.04em;
}

.report-pickup__eyebrow span {
	display: inline-block;
	margin-right: 10px;
	padding: 5px 9px 4px;
	background: #d90000;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	letter-spacing: 0.09em;
}

.report-pickup__guide {
	margin-top: 7px;
	color: #d2d2d2;
	font-size: 12px;
	line-height: 1.5;
}

.report-pickup__period {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
}

.report-pickup__period span {
	margin-right: 3px;
	padding: 3px 7px;
	border: 1px solid #777777;
	color: #dddddd;
	font-family: "メイリオ", Meiryo, sans-serif;
	font-size: 10px;
	font-weight: normal;
}

.report-pickup__period b {
	color: #999999;
	font-weight: normal;
}

.report-pickup__body {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	padding: 24px 22px;
}

.report-pickup__content {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 24px;
}

.report-pickup__labels {
	margin-bottom: 10px;
}

.report-pickup__labels span {
	display: inline-block;
	margin-right: 6px;
	padding: 3px 10px;
	font-size: 11px;
	line-height: 1.5;
}

.report-pickup__category {
	background: #777777;
	color: #ffffff;
}

.report-pickup__vehicle {
	border: 1px solid #cccccc;
	background: #ffffff;
	color: #555555;
}

.report-pickup__title {
	margin: 0 0 10px;
	color: #222222;
	font-size: 23px;
	font-weight: bold;
	line-height: 1.45;
}

.report-pickup__customer {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 13px;
	color: #777777;
	font-size: 12px;
	line-height: 1.6;
}

.report-pickup__customer span + span::before {
	margin: 0 9px;
	color: #c4c4c4;
	content: "/";
}

.report-pickup__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #444444;
	font-size: 13px;
	line-height: 1.85;
}

/* 抜粋内では連続する改行を1つにまとめ、空行を表示行数に含めない */
.report-pickup__excerpt br + br {
	display: none;
}

.report-pickup__action {
	flex: 0 0 190px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-left: 22px;
	border-left: 1px solid #dddddd;
}

.report-pickup__button {
	display: block;
	width: 100%;
	padding: 13px 12px;
	background: #d90000;
	box-shadow: 0 3px 0 #9d0000;
	color: #ffffff !important;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.report-pickup__button:hover,
.report-pickup__button:focus {
	background: #b80000;
	box-shadow: 0 1px 0 #800000;
	transform: translateY(2px);
}

.report-pickup__button i {
	margin-left: 6px;
	font-size: 10px;
}

.report-pickup__action small {
	margin-top: 12px;
	color: #999999;
	font-family: Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 991px) {
	.report-pickup__heading {
		align-items: flex-start;
	}

	.report-pickup__body {
		padding: 21px 18px;
	}

	.report-pickup__content {
		padding-right: 18px;
	}

	.report-pickup__action {
		flex-basis: 170px;
		padding-left: 18px;
	}
}

@media screen and (max-width: 767px) {
	.report-pickup-preview-page {
		padding: 20px 10px;
	}

	.report-pickup-preview-page__content {
		padding: 12px;
	}

	.report-pickup {
		margin: 9px 0 28px;
	}

	.report-pickup::after {
		font-size: 55px;
	}

	.report-pickup__heading,
	.report-pickup__body {
		display: block;
	}

	.report-pickup__heading {
		padding: 15px 14px;
	}

	.report-pickup__eyebrow {
		font-size: 14px;
	}

	.report-pickup__eyebrow span {
		margin-right: 7px;
		font-size: 11px;
	}

	.report-pickup__period {
		margin-top: 12px;
		font-size: 13px;
	}

	.report-pickup__body {
		padding: 19px 15px 17px;
	}

	.report-pickup__content {
		padding-right: 0;
	}

	.report-pickup__title {
		font-size: 20px;
		line-height: 1.5;
	}

	.report-pickup__customer {
		display: block;
	}

	.report-pickup__customer span {
		display: inline-block;
	}

	.report-pickup__excerpt {
		font-size: 12px;
		line-height: 1.8;
	}

	.report-pickup__action {
		display: block;
		margin-top: 18px;
		padding: 17px 0 0;
		border-top: 1px solid #dddddd;
		border-left: 0;
	}

	.report-pickup__action small {
		display: block;
		margin-top: 10px;
		text-align: center;
	}
}
