@charset "utf-8";

/*====================
Start SP
====================*/
/*MV*/
#page_case .mv_wrap {
	position: relative;
	width: 100%;
	height: 52.5vw;
	background-image: url("../img/index_2025/pc_mv2.webp");
	background-size: cover;
	background-position: center;
}
#page_case .mv_wrap .mv_txt {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#page_case .mv_wrap .mv_txt .title {
	font-size: 11.25vw;
	font-weight: bold;
	margin: 0 0 2.5vw;
}
#page_case .mv_wrap .mv_txt .subtitle {
	font-size: 3.75vw;
	font-weight: bold;
	margin: 0;
}
/*Section*/
#page_case .case_wrap {
	margin-bottom: 18.75vw;
}
/*LIST*/
#page_case .list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 16.25vw;
	width: 100%;
	padding: 28.4375vw 0 0;
	margin: 0;
	list-style: none;
}

#page_case .list .cont {
	width: 100%;
}

#page_case .list .cont a {
	display: block;
	overflow: hidden;
}
#page_case .list .cont .thumbnail {
	position: relative;
	width: 100%;
	margin: 0 0 2.5vw;
	overflow: hidden;
}
#page_case .list .cont .thumbnail:before {
	content: "";
	display: block;
	padding-top: 57.5vw;
}
#page_case .list .cont .thumbnail img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	max-width: inherit;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*カテゴリ*/
#page_case .list .cont .category {
	position: absolute;
	bottom: 4.68vw;
	left: 0;
	padding: 1vw 2.5vw;
	color: #fff;
	font-size: 3.125vw;
}
/*タイトル*/
#page_case .list .cont .post_title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 4.375vw;
	line-height: 1.6;
	margin-bottom: 1.5vw;
}
/*ディスクリプション*/
#page_case .list .cont .excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 3.75vw;
	line-height: 1.6;
	margin: 0;
}

/*ローディング*/
#page_case .loader,
#page_case .no_more {
	padding: 12.5vw 0 5vw;
}
#page_case .loader .txt,
#page_case .no_more .txt {
	font-size: 3vw;
	padding: 5vw 0;
	margin: 0;
	text-align: center;
}

/*読み込み中*/
.wave {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.wave .bar-item {
	width: 4px;
	height: 40px;
	background-color: #000;
	border-radius: 1.5px;
	animation: wave-animation 1.2s ease-in-out infinite;
}
.wave .bar-item:nth-child(1) {
	animation-delay: 0s;
}
.wave .bar-item:nth-child(2) {
	animation-delay: 0.1s;
}
.wave .bar-item:nth-child(3) {
	animation-delay: 0.2s;
}
.wave .bar-item:nth-child(4) {
	animation-delay: 0.3s;
}
.wave .bar-item:nth-child(5) {
	animation-delay: 0.4s;
}
@keyframes wave-animation {
	0%,
	100% {
		transform: scaleY(0.5);
	}
	50% {
		transform: scaleY(1);
	}
}
/*====================
End SP
====================*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*====================
Start Tablet
====================*/
@media only screen and (min-width: 641px) {
	/*MV*/
	#page_case .mv_wrap {
		height: 30vw;
	}
	#page_case .mv_wrap .mv_txt .title {
		font-size: 7.5vw;
		margin: 0 0 1.875vw;
	}
	#page_case .mv_wrap .mv_txt .subtitle {
		font-size: 1.875vw;
	}
	/*Section*/
	#page_case .case_wrap {
		margin-bottom: 11.875vw;
	}
	/*LIST*/
	#page_case .inner {
		padding: 0 2.5vw;
	}
	#page_case .list {
		gap: 6.25vw 5vw;
		padding: 11.875vw 0 0;
	}

	#page_case .list .cont {
		width: calc(100% / 3 - 10vw / 3);
	}

	#page_case .list .cont .thumbnail {
		margin: 0 0 1.25vw;
	}
	#page_case .list .cont .thumbnail:before {
		padding-top: 67%;
	}
	/*カテゴリ*/
	#page_case .list .cont .category {
		bottom: 0.781vw;
		left: 0;
		padding: 0.469vw 1.25vw;
		font-size: 0.9375vw;
	}
	/*タイトル*/
	#page_case .list .cont .post_title {
		font-size: 1.25vw;
		margin-bottom: 0.9375vw;
	}
	/*ディスクリプション*/
	#page_case .list .cont .excerpt {
		font-size: 1.25vw;
	}

	/*ローディング*/
	#page_case .loader,
	#page_case .no_more {
		text-align: center;
		padding: 6.25vw 0 3.125vw;
	}
	#page_case .loader .txt,
	#page_case .no_more .txt {
		font-size: 1.25vw;
		padding: 1.25vw 0 0;
	}

	.wave .bar-item {
		width: 0.3125vw;
		height: 3.125vw;
	}
}
/*====================
End Tablet
====================*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*====================
Start PC
====================*/
@media only screen and (min-width: 1280px) {
	/*MV*/
	#page_case .mv_wrap {
		height: 384px;
	}
	#page_case .mv_wrap .mv_txt .title {
		font-size: 96px;
		margin: 0 0 24px;
	}
	#page_case .mv_wrap .mv_txt .subtitle {
		font-size: 24px;
	}
	/*Section*/
	#page_case .case_wrap {
		margin-bottom: 152px;
	}
	/*LIST*/
	#page_case .list {
		gap: 80px 64px;
		padding: 152px 0 0;
	}

	#page_case .list .cont {
		width: 384px;
	}
	#page_case .list .cont .thumbnail {
		margin: 0 0 16px;
	}
	#page_case .list .cont .thumbnail:before {
		padding-top: 67%;
	}
	/*カテゴリ*/
	#page_case .list .cont .category {
		bottom: 10px;
		left: 0;
		padding: 6px 16px;
		font-size: 12px;
	}
	/*タイトル*/
	#page_case .list .cont .post_title {
		font-size: 1.6rem;
		margin-bottom: 12px;
	}
	/*ディスクリプション*/
	#page_case .list .cont .excerpt {
		font-size: 1.4rem;
	}

	/*ローディング*/
	#page_case .loader,
	#page_case .no_more {
		text-align: center;
		padding: 80px 0 40px;
	}
	#page_case .loader .txt,
	#page_case .no_more .txt {
		font-size: 16px;
		padding: 16px 0 0;
	}

	.wave .bar-item {
		width: 4px;
		height: 40px;
		background-color: #000;
		border-radius: 1.5px;
		animation: wave-animation 1.2s ease-in-out infinite;
	}
}
/*====================
End PC
====================*/
