@charset "UTF-8";

.result {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 50px 40px;
}

.result_post {
	line-height: 1.6;
}

.result_post_link {
	display: block;
}

.result_post_img {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--c-border);
	aspect-ratio: 1;
}

[data-shop] .result_post_img::after {
	display: block;
	display: inline-flex;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 10px;
	color: var(--c-white);
	font-size: 14px;
	font-family: var(--font-en);
}

[data-shop="pearlv"] .result_post_img::after {
	content: "Pearl.V";
	background: var(--c-red);
}

[data-shop="lasora"] .result_post_img::after {
	content: "La SORA";
	background: var(--c-blue);
}

.result_post_img > img {
	width: 100%;
	height: 100%;
	transition: transform 0.3s;
	object-fit: cover;
}

.result_post_img > span {
	transition: transform 0.3s;
}

.result_post_link:hover .result_post_img > span,
.result_post_link:hover .result_post_img > img {
	transform: scale(1.05);
}

.result_post_img > .icon-pearlv {
	color: var(--c-red);
}

.result_post_img > .icon-lasora {
	color: var(--c-blue);
}

.result_post_ttl {
	display: -webkit-box;
	margin-top: 12px;
	overflow: hidden;
	font-weight: bold;
	font-size: 18px;

	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.result_post_info {
	display: flex;
	align-items: center;
	margin-top: 12px;
	color: var(--c-text-sub);
	font-size: 14px;
	line-height: 1;
}

.result_post_info > time {
	display: inline-block;
	font-weight: 600;
	font-family: var(--font-en);
}

.result_post_info > span {
	display: inline-block;
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid var(--c-border);
}

.pager {
	display: flex;
	justify-content: center;
	margin-top: 100px;
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
}

.wp-pagenavi > a,
.wp-pagenavi > span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 32px;
	font-family: var(--font-en);
}

.wp-pagenavi > a {
	/* width: 40px; */ /* height: 40px; */ /* font-size: 20px; */
}

.wp-pagenavi > a.page {
	color: var(--c-red);
}

.wp-pagenavi > a.previouspostslink {
	margin-right: 10px;
	background: var(--c-red);
	color: var(--c-white);
}

.wp-pagenavi > a.nextpostslink {
	margin-left: 10px;
	background: var(--c-red);
	color: var(--c-white);
}

.wp-pagenavi > span.current {
	background: var(--c-red);
	color: var(--c-white);
}

.wp-pagenavi > span.extend {
	width: auto;
}

.post {
}

.post_hd {
	margin-bottom: 45px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--c-border);
	line-height: 1.6;
}

.post_hd_shop {
	margin-bottom: 20px;
}

.post_hd_shop > span {
	display: inline-flex;
	padding: 0 10px;
	color: var(--c-white);
	font-size: 14px;
	font-family: var(--font-en);
}

.post_hd_shop > span.-pearlv {
	background: var(--c-red);
}

.post_hd_shop > span.-lasora {
	background: var(--c-blue);
}

.post_hd_ttl {
	font-weight: bold;
	font-size: 25px;
}

.post_hd_info {
	display: flex;
	margin-top: 10px;
	color: var(--c-text-sub);
	font-size: 14px;
	line-height: 1;
}

.post_hd_info > time {
	display: inline-block;
	font-weight: bold;
	font-family: var(--font-en);
}

.post_hd_info > span {
	display: inline-block;
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px solid var(--c-border);
}

.post_body {
}

.post_body p {
	margin: 1.5em 0;
}

.post_staff {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	margin-top: 50px;
	padding: 30px 35px;
	background: var(--c-neutral-both);
}

.post_staff_img {
	flex-shrink: 0;
}

.post_staff_img > img {
	object-fit: cover;
}

.post_staff_cnt {
	flex: 1;
	line-height: 1.6;
}

.post_staff_info {
}

.post_staff_name {
	font-size: 25px;
}

.post_staff_link {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.post_ft {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-top: 50px;
	padding-top: 45px;
	border-top: 1px solid var(--c-border);
}

.post_ft .c_arrow_btn.-left {
	position: absolute;
	left: 0;
}

.post_ft .c_arrow_btn.-right {
	position: absolute;
	right: 0;
}

@media screen and (max-width: 1239.98px) {
}

@media screen and (max-width: 767.98px) {
	.result {
		grid-template-columns: repeat(2, 1fr);
		gap: 26px;
	}

	.result_post {
	}

	.result_post_link {
	}

	.result_post_img {
	}

	[data-shop] .result_post_img::after {
	}

	[data-shop="pearlv"] .result_post_img::after {
	}

	[data-shop="lasora"] .result_post_img::after {
	}

	.result_post_img > img {
	}

	.result_post_img > span {
		font-size: 30px;
	}

	.result_post_link:hover .result_post_img > span,
	.result_post_link:hover .result_post_img > img {
	}

	.result_post_img > .icon-pearlv {
	}

	.result_post_img > .icon-lasora {
	}

	.result_post_ttl {
		font-size: 16px;

		-webkit-line-clamp: 3;
	}

	.result_post_info {
		font-size: 13px;
	}

	.result_post_info > time {
	}

	.result_post_info > span {
	}

	.pager {
		margin-top: 50px;
	}

	.wp-pagenavi {
	}

	.wp-pagenavi > a,
	.wp-pagenavi > span {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.wp-pagenavi > a {
	}

	.wp-pagenavi > a.page {
	}

	.wp-pagenavi > a.previouspostslink {
	}

	.wp-pagenavi > a.nextpostslink {
	}

	.wp-pagenavi > span {
	}

	.post {
		margin-top: 60px;
	}

	.post_hd {
		margin-bottom: 40px;
	}

	.post_hd_shop {
		margin-bottom: 10px;
	}

	.post_hd_shop > span {
	}

	.post_hd_shop > span.-pearlv {
	}

	.post_hd_shop > span.-lasora {
	}

	.post_hd_ttl {
		font-size: 20px;
	}

	.post_hd_info {
	}

	.post_hd_info > time {
	}

	.post_hd_info > span {
	}

	.post_body {
	}

	.post_body p {
	}

	.post_staff {
	}

	.post_staff_img {
	}

	.post_staff_cnt {
	}

	.post_staff_info {
	}

	.post_staff_name {
	}

	.post_staff_link {
	}

	.post_ft {
		padding-top: 40px;
	}

	.post_ft .c_btn {
		width: auto;
	}

	.post_ft .c_arrow_btn.-left {
	}

	.post_ft .c_arrow_btn.-right {
	}
}
