@charset "utf-8";



/*  l-specialKv
--------------------------------------------------*/
.l-specialKv {
	position: relative;
	width: 100%;
	height: 60.0rem;
	padding-top: 1.5rem;
	transition: opacity .8s linear,filter .8s linear;
}
.specialKv-photo {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	overflow: clip;
	opacity: 0;
	transition: opacity .5s linear;
}
.subLoaded .specialKv-photo {
	opacity: 1;
}
.specialKv-photo img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}
.specialKv-detail {
	position: relative;
	width: 100%;
	color: var(--white);
	text-align: center;
	opacity: 0;
	filter: blur(5px);
	transition: opacity .5s linear .5s,filter .5s linear .5s;
	z-index: 1;
}
.subLoaded .specialKv-detail {
	opacity: 1;
	filter: blur(0);
}
.specialKv-detail__enTtl {
	font-size: 2.6rem;
	letter-spacing: .1em !important;
	margin-bottom: 6.0rem;
}
.specialKv-detail__jpTtl {
	font-size: 7.0rem;
	line-height: 1;
	letter-spacing: .44em;
	margin-bottom: 7.0rem;
}
.specialKv-detail__desc {
	font-size: 2.0rem;
	line-height: 1.7875;
	letter-spacing: .1em;
}
@media screen and (max-width: 768px){
	.l-specialKv {
		height: 50.0rem;
    padding-top: 4.5rem;
	}
	.specialKv-detail__enTtl {
		font-size: 2.5rem;
		margin-bottom: 3.5rem;
	}
	.specialKv-detail__jpTtl {
		font-size: 5.0rem;
		margin-bottom: 3.5rem;
	}
	.specialKv-detail__desc {
		font-size: 1.6rem;
		line-height: 1.875;
	}
}




/*  l-archive
--------------------------------------------------*/
.l-archive {
	padding-block: 11.0rem 23.5rem;
	background: url('../../img/common/bg_diagonal.jpg') no-repeat center center/cover;
}
.archive-head {
	text-align: center;
	margin-bottom: 9.0rem;
}
.archive-head__enTtl {
	font-size: 5.0rem;
	letter-spacing: .12em !important;
	margin-bottom: 2.5rem;
}
.archive-head__jpTtl {
	font-size: 1.9rem;
	line-height: 1;
	letter-spacing: .04em;
}
.archive-contents {
	width: 100%;
}
.archive-list {
	position: relative;
	width: 100%;
}
.archive-list__item {
	position: relative;
	display: block;
	width: 100%;
	height: 35.0rem;
	padding-inline: 13.0rem;
	background: var(--black);
}
.archive-list__item + .archive-list__item {
	margin-top: 3.5rem;
}
.archive-list__item.soon {
	pointer-events: none;
	cursor: default;
}
.archive-list__item.soon::before {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: #666666;
	mix-blend-mode: multiply;
	z-index: 3;
}
.archive-list__item.soon::after {
	content: 'Coming Soon';
	font-size: 3.5rem;
	letter-spacing: .12em !important;
	color: var(--white);
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
}
.archive-list__item__photo {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	overflow: clip;
}
.archive-list__item__photo img {
	object-fit: cover;
	object-position: left center;
	width: 100%;
	height: 100%;
}
.archive-list__item__box {
	position: relative;
	width: 100%;
	height: 100%;
	padding-inline: 16.0rem;
}
.archive-list__item__box::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 6.4rem;
	height: 100%;
	background: url('../img/icon_line.svg') no-repeat top center/cover;
	z-index: 1;
}
.archive-list__item.new .archive-list__item__box::after {
	content: '';
	position: absolute;
	left: 6.0rem;
	top: -4.0rem;
	width: 11.5rem;
	aspect-ratio: 1 / 1;
	background: url('../img/icon_new.svg') no-repeat center center/cover;
	z-index: 1;
}
.archive-list__item__detail {
	position: relative;
	width: 100%;
  min-height: 23.0rem;
	z-index: 2;
}
.archive-list__item__detail__ttl {
	position: relative;
	max-width: 440px;
	width: 100%;
	font-size: 2.7rem;
	margin-bottom: 3.0rem;
}
.archive-list__item__detail__ttl::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--background-gradation);
}
.archive-list__item__detail__heading {
	width: 100%;
	font-size: 2.7rem;
	line-height: 1.76469259;
	letter-spacing: -.03em;
	color: var(--white);
	margin-bottom: 3.7rem;
	flex: auto;
}
.archive-list__item__detail__more {
	position: relative;
	max-width: 440px;
	width: 100%;
	height: 3.2rem;
	font-size: 1.4rem;
	text-align: center;
	background: var(--background-gradation);
}
@media (any-hover: hover){
	.archive-list__item__photo {
		transition: opacity .3s linear;
	}
	.archive-list__item:hover .archive-list__item__photo {
		opacity: .4;
	}
}
@media screen and (max-width: 768px){
	.l-archive {
		padding-block: 8.5rem 10.5rem;
	}
	.archive-head {
		margin-bottom: 6.0rem;
	}
	.archive-head__enTtl {
		font-size: 3.4rem;
		margin-bottom: 2.3rem;
	}
	.archive-head__jpTtl {
		font-size: 1.6rem;
	}
	.archive-list__item {
		height: 30.0rem;
		padding-inline: 1.5rem;
	}
	.archive-list__item + .archive-list__item {
		margin-top: 3.0rem;
	}
	.archive-list__item.soon::after {
		font-size: 2.8rem;
	}
	.archive-list__item__box {
		padding-inline: 4.5rem;
		padding-top: 1.0rem;
	}
	.archive-list__item__box::before {
		width: 2.8rem;
	}
	.archive-list__item.new .archive-list__item__box::after {
		left: 1.5rem;
		top: -3.0rem;
		width: 6.0rem;
	}
	.archive-list__item__detail {
    min-height: 20.5rem;
	}
	.archive-list__item__detail__ttl {
		max-width: none;
		font-size: 2.2rem;
	}
	.archive-list__item__detail__heading {
		font-size: 1.9rem;
		line-height: 2.1;
    white-space: nowrap;
	}
	.archive-list__item__detail__more {
		position: relative;
		max-width: none;
	}
}

