@charset "UTF-8";
/*-------------------------
 * 
 * 
 * 
 * Layout
 * 
 * 
 * 
-------------------------*/

#projectContentsWrapper > .inner {
	width: 100%;
}

@media (max-width: 1024px) {

}

@media (max-width: 640px) {

}

/*-------------------------
 * 
 * 
 * 
 * Hero
 * 
 * 
 * 
-------------------------*/

#projectHero {
	width: 100%;
	height: 100dvh;
	position: relative;
}

#projectHero .projectHeroImg {
	width: 100%;
	height: 100%;
	background: #111 no-repeat center center/cover;
	position: absolute;
	top: 0;
	left: 0;
}

#projectHero .layer {
	width: 100%;
	height: 100%;
	background: linear-gradient(to Bottom,rgba(26,26,26,.24),rgba(26,26,26,1));
	position: absolute;
	top: 0;
	left: 0;
}

#projectHero > .inner {
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

#projectHero .projectMeta {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#projectHero .projectName {
	font-size: 40px;
	line-height: 1.5;
}

#projectHero .projectMetaBody {
	padding-bottom: 72px;
}

#projectHero .projectMetaItem {
	width: 100%;
	max-width: 33%;
	display: flex;
	line-height: 1;
	margin-bottom: 16px;
}

#projectHero .projectMetaItem:last-of-type {
	margin-bottom: 0;
}

#projectHero .projectMetaItemHeading {
	flex-shrink: 0;
	width: 8em;
	opacity: .4;
}

#projectHero .projectMetaItem a {
	position: relative;
}

#projectHero .projectMetaItem a:link,
#projectHero .projectMetaItem a:visited {
	text-decoration: underline;
}

#projectHero .projectMetaItem a:link,
#projectHero .projectMetaItem a:visited {
	opacity: 1;
	text-decoration: underline;
}

#projectHero .projectMetaItem a:hover,
#projectHero .projectMetaItem a:active {
	opacity: .7;
	text-decoration: none;
}

#projectHero .projectMetaRolesItems {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#projectHero .projectMetaRolesItem {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 8px;
}

#projectHero .projectMetaRolesItem::after {
	display: block;
	content: '/';
	margin: 0 .33em;
}

#projectHero .projectMetaRolesItem:last-of-type::after {
	display: none;
}

#projectHero .projectMetaItemDesc a[target=_blank]:before {
	display: block;
	content: '';
	width: 14px;
	height: 14px;
	background: url(../images/common/icon/icon_external_w.svg) no-repeat center center/cover;
	position: absolute;
	top: 4px;
	right: -24px;
}


@media (max-width: 1024px) {

	#projectHero .projectMeta {
		gap: 32px;
	}

	#projectHero .projectName {
		font-size: 36px;
	}

	#projectHero .projectMetaBody {
		padding-bottom: 48px;
	}

	#projectHero .projectMetaItem {
		max-width: initial;
		margin-bottom: 16px;
	}

}

@media (max-width: 640px) {

	#projectHero .projectMeta {
		gap: 28px;
	}

	#projectHero .projectName {
		font-size: 24px;
	}

	#projectHero .projectMetaBody {
		padding-bottom: 36px;
	}

	#projectHero .projectMetaItemDesc a[target=_blank]:before {
		width: 12px;
		height: 12px;
		top: 3px;
		right: -20px;
	}

}

/*-------------------------
 * 
 * 
 * 
 * Main
 * 
 * 
 * 
-------------------------*/

#projectMain > .inner {
	padding: 160px 0 40px;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

#projectMain .projectMainItemWrapper {
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: 1s ease;
}

#projectMain .projectMainItemWrapper.isActive {
	opacity: 1;
	visibility: visible;
}

#projectMain .projectMainItemWrapper .projectMainItem {
	width: 100%;
	overflow: hidden;
	position: relative;
	opacity: 0;
	overflow: hidden;
	transform: scale(1.1);
	filter: blur(8px);
	transition: 1s ease;
}

#projectMain .projectMainItemWrapper.isActive .projectMainItem {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	filter: blur(0);
}

#projectMain .projectMainItemWrapper .projectMainVideo {
	display: block;
	width: 100%;
	height: auto;
}

#projectMain .projectMainItem .projectMainImg img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 1024px) {

	#projectMain > .inner {
		padding: 104px 0 64px;
		gap: 32px;
	}

}

@media (max-width: 640px) {

	#projectMain > .inner {
		padding: 64px 0 40px;
		gap: 16px;
	}

}

/*-------------------------
 * 
 * 
 * 
 * Screen Shot
 * 
 * 
 * 
-------------------------*/

#projectScreenShotWrapper {
    position: relative;
}

#projectScreenShotWrapper > .inner {
	width: 96%;
	height: 100dvh;
	margin-left: 4%;
}

#projectScreenShotWrapper .projectScreenShotItems {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 auto;
	opacity: 0;
	visibility: hidden;
	transition: 1s ease;
}

#projectScreenShotWrapper.isActive .projectScreenShotItems {
	opacity: 1;
	visibility: visible;
}

#projectScreenShotWrapper .projectScreenShotItem {
	width: calc(calc(100% - 48px) / 2.85);
	min-width: 560px;
	flex-shrink: 0;
	border-radius: 4px;
	overflow: hidden;
}

#projectScreenShotWrapper .projectScreenShotItem img {
	display: block;
	width: 100%;
}

@media (max-width: 1024px) {

	#projectScreenShotWrapper > .inner {
		width: 92%;
		height: auto;
		margin: 0 auto;
	}

	#projectScreenShotWrapper .projectScreenShotItems {
		width: 100%;
		height: auto;
		flex-direction: column;
		gap: 24px;
	}

	#projectScreenShotWrapper .projectScreenShotItem {
		width: 100%;
		min-width: initial;
	}
	
	#projectScreenShotWrapper .projectScreenShotItem img {
		opacity: 0;
		transform: scale(1.1);
		filter: blur(8px);
		transition: 1s ease;
	}

	#projectScreenShotWrapper .projectScreenShotItem.isActive img {
		opacity: 1;
		visibility: visible;
		transform: scale(1);
		filter: blur(0);
	}
	
}

@media (max-width: 640px) {

	#projectScreenShotWrapper .projectScreenShotItems {
		gap: 16px;
	}

}

/*-------------------------
 * 
 * 
 * 
 * Contents
 * 
 * 
 * 
-------------------------*/

#projectContents > .inner {
	width: 74%;
	margin: 0 10% 0 16%;
	padding: 200px 0 400px;
	display: flex;
	flex-direction: column;
	gap: 240px;
}

#projectContents .projectContent {
	opacity: 0;
	visibility: hidden;
	transition: 1s ease;
}

#projectContents .projectContent.isActive {
	opacity: 1;
	visibility: visible;
}

#projectContents .projectContent > .inner {
	width: 100%;
	display: flex;
	align-items: flex-start;
}

#projectContents .projectContentHeader {
	width: 40%;
	position: sticky;
	top: 200px;
	padding: 0 0 120px;
}

#projectContents .projectContentHeading {
	font-size: 40px;
	line-height: 1;
	text-transform: uppercase;
}

#projectContents .projectContentBody {
	width: 55%;
	margin: 0 0 0 auto;
}

#projectContents .projectContentBody > .inner {
	width: 100%;
	min-height: 75dvh;
	padding: 120px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	filter: blur(8px);
	transition: 1s ease;
}

#projectContents .projectContentBody.isActive > .inner {
	opacity: 1;
	visibility: visible;
	filter: blur(0);
}

#projectContents .creditItems {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#projectContents .creditItem {
	display: flex;
	line-height: 1;
	gap: 24px;
	color: var(--white);;
}

#projectContents .creditItemHeading {
	width: 12em;
	flex-shrink: 0;
	opacity: .4;
}

#projectContents .creditItemDesc ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (max-width: 1024px) {

	#projectContents > .inner {
		width: 92%;
		margin: 0 auto;
		padding: 80px 0 104px;
		gap: 64px;
	}

	#projectContents .projectContent > .inner {
		flex-direction: column;
		gap: 40px;
	}

	#projectContents .projectContentHeader {
		width: 100%;
		position: relative;
		top: auto;
		padding: 0;
	}

	#projectContents .projectContentHeading {
		font-size: 36px;
	}

	#projectContents .projectContentBody {
		width: 100%;
		min-height: initial;
		margin: 0 auto;
	}

	#projectContents .projectContentBody > .inner {
		min-height: initial;
		padding: 0;
		justify-content: flex-start;
		transform: translate(0, 40px);
	}

	#projectContents .projectContentBody.isActive > .inner {
		transform: translate(0, 0);
	}

}

@media (max-width: 640px) {

	#projectContents > .inner {
		padding: 56px 0 64px;
		gap: 40px;
	}

	#projectContents .projectContent > .inner {
		gap: 32px;
	}

	#projectContents .projectContentHeading {
		font-size: 30px;
	}

	#projectContents .creditItemDesc ul {
		gap: 12px;
	}

	#projectContents .creditItem {
		flex-direction: column;
		gap: 12px;
	}

	#projectContents .creditItemHeading {
		width: 100%;
		font-size: 12px;
	}

}

/*-------------------------
 * 
 * 
 * 
 * Other Projects
 * 
 * 
 * 
-------------------------*/

#otherProject {
	opacity: 0;
	visibility: hidden;
	transition: 1s ease;
}

#otherProject.isActive {
	opacity: 1;
	visibility: visible;
}

#otherProject > .inner {
	width: 74%;
	margin: 0 10% 0 16%;
	padding: 0 0 80px;
	display: flex;
	flex-direction: column;
}

#otherProject .otherProjectHeader {
	width: 100%;
	position: sticky;
	top: 200px;
	z-index: 0;
	margin-bottom: 160px;
}

#otherProject .otherProjectHeader > .inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 120px;
}

#otherProject .otherProjectTitle {
	font-size: 144px;
	line-height: 1;
	text-transform: uppercase;
	opacity: 1;
	visibility: visible;
	transition: .5s ease;
}

#otherProject .otherProjectTitle.isPassive {
	opacity: .08;
}

#otherProject .otherProjectTitle.isHidden {
	opacity: 0;
	visibility: hidden;
}

#projectItems {
	opacity: 0;
	visibility: hidden;
	transition: 1s ease;
}

#projectItems.isActive {
	opacity: 1;
	visibility: visible;
} 

#projectItems > .inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 5%;
}

#projectItems .projectItem {
    width: 47.5%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#projectItems .projectItem:nth-of-type(2n) {
	margin-top: 6%;
}

#projectItems .projectItem > a {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

#projectItems .projectItem > a .projectItemImgWrapper {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

#projectItems .projectItem > a .projectItemImgWrapper::before {
	display: block;
	content: '';
	width: calc(100% + 2px);
	height: 100%;
	background: #1f1f1f;
	pointer-events: none;
	position: absolute;
	inset: 0 -1px;
	z-index: 1;
	transition: .5s ease;
}

#projectItems .projectItem.isActive > a .projectItemImgWrapper::before {
	animation: projectItemImgWrapper .7s cubic-bezier(1,-0.08,.27,.97) forwards;
}

@keyframes projectItemImgWrapper {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(100%);
	}
}

#projectItems .projectItem > a .projectItemImg {
	position: relative;
	z-index: 0;
	overflow: hidden;
	opacity: 0;
	filter: blur(8px);
	transform: scale(1.25);
	transition: 1s ease;
}

#projectItems .projectItem.isActive > a .projectItemImg {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
}

#projectItems .projectItem.isActive > a .projectItemImg picture {
	display: block;
	filter: blur(0);
	transform: scale(1);
	transition: .3s ease;
}

#projectItems .projectItem.isActive > a:hover .projectItemImg picture {
    filter: blur(4px);
    transform: scale(1.05);
}

#projectItems .projectItemContent > .inner {
	width: 100%;
	padding: 0 8% 0 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

#projectItems .projectItemHeading {
	font-size: 32px;
	line-height: 1.5;
}

#projectItems .projectItemHeading br {
	display: none;
}

#projectItems .projectItem .projectItemDesc {
	display: flex;
	flex-direction: column;
	gap: 16px;
	opacity: 0;
	visibility: hidden;
	transform: translate(0,16px) scale(1.05);
	filter: blur(8px);
	transition: 1s ease;
}

#projectItems .projectItem.isActive .projectItemDesc {
	opacity: 1;
	visibility: visible;
	filter: blur(0);
	transform: translate(0,0) scale(1);
}

#projectItems .projectItem .projectItemText br {
	display: none;
}

#projectItems .projectItem .projectItemCategory {
	opacity: 0;
	visibility: hidden;
	transform: translate(0,16px) scale(1.05);
	filter: blur(8px);
	transition: 1s ease;
}

#projectItems .projectItem.isActive .projectItemCategory {
	opacity: 1;
	visibility: visible;
	transform: translate(0,0) scale(1);
	filter: blur(0);
}

#projectItems .projectItemCategory ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

#projectItems .projectItemCategoryItem a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 24px;
	padding: 0 12px;
	border: 1px solid var(--white);
	border-radius: 4px;
	opacity: .5;
}

#projectItems .projectItemCategoryItem a:hover,
#projectItems .projectItemCategoryItem a:active {
	opacity: 1;
}

@media (max-width: 1024px) {

	#otherProject > .inner {
		width: 92%;
		margin: 0 auto;
		padding-bottom: 0;
	}

	#otherProject .otherprojectHeader {
		top: 160px;
		margin-bottom: 64px;
	}

	#otherProject .otherprojectTitle {
		font-size: 80px;
	}

	#projectItems .projectItem > a {
		gap: 24px;
	}

	#projectItems .projectItemHeading {
		font-size: 24px;
	}

	#projectItems .projectItem .projectItemText {
		font-size: 14px;
	}

}

@media (max-width: 640px) {

	#otherProject .otherprojectHeader {
		top: 96px;
		margin-bottom: 40px;
	}

	#otherProject .otherprojectTitle {
		font-size: 44px;
	}

	#projectItems > .inner {
		flex-direction: column;
		gap: 32px;
	}

	#projectItems .projectItem {
		width: 100%;
		gap: 16px;
	}

	#projectItems .projectItem:nth-of-type(2n) {
		margin-top: 0;
	}

	#projectItems .projectItem > a {
		gap: 20px;
	}

}