@charset "utf-8";
/* GLOBAL */

/* ARCHIVES */
#exhibits{
	width: 100%;
	padding: 5vw 0;
}
#exhibits > .inner{
	margin-left: 40vw;
}
#list{
	display: block;
	width: 40vw;
	padding: 3vw 0 1vw 0;
}
#exhibits article{
	margin-bottom: 5vw;
}
#exhibits article .inner{
	display: block;
}
#exhibits article .inner a{
	display: block;
	position: relative;
}

#list .image{
	opacity: 0.85;
	z-index: 1;
	transition: all 0.3s;
}
#list .image img{
	display: block;
	position: relative;
	left: 0vw;
	width: 100%;
	transition: all 1.0s ease;
}
#list .title{
	position: absolute;
	top: 1.6em;
	left: -16px;
	width: fit-content;
	height: 1em;
	background: rgba(55,44,33,0.65);
	color: #fff;
	text-align: left;
	line-height: 1;
	font-size: 16px;
	font-weight: 200;
	opacity: 1;
	z-index: 2;
	transition: all 0.5s ease;
}
#list .meta{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	top: 3.6em;
	left: -16px;
	width: fit-content;
	height: 1em;
	background: rgba(55,44,33,0.65);
	text-align: left;
	line-height: 1;
	color: #fff;
	font-size: 13px;
	font-weight: 200;
	z-index: 3;
}
#list .meta li{
	position: relative;
}
#list .meta li:nth-child(n+2){
	margin-left: 0.5em;
}
#list .meta li.year{ padding-left:1.7em; }
#list .meta li.location{ padding-left:1.6em; }
#list .meta li.year::before, #list .meta li.location::before{
	content: "";
	position: absolute;
	left: 1px;
	top: -0.2em;
	width: 1.4em;
	height: 1.4em;
}
#list .meta li.year::before{ background: url("../img/metaIconTime.svg") no-repeat 0.2em 50% / auto 1.2em; }
#list .meta li.location::before{ background: url("../img/metaIconPin.svg") no-repeat 0.2em 50% / auto 1.2em; }

#list .title::after, #list .meta::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0em;
	width: 1%;
	height: 100%;
	background: #df0;
	opacity: 0;
	z-index: -1;
	transition: all 0.5s ease 0.1s;
}

#list a:hover{
}
#list a:hover .title, #list a:hover .meta{
	left: -16px;
	color: #6b665f;
	opacity: 1;
}
#list a:hover .title::after, #list a:hover .meta::after{
	left: 0em;
	width: 100%;
	background: #df0;
	opacity: 1.0;
}
#list a:hover .image{
	opacity: 1;
}
#list a:hover .image img{
	left: 30px;
	transition: all 0.5s ease;
}


@media screen and (max-width:800px) {
	#exhibits > .inner{
		margin-top: 120px;
		margin-left: 15vw;
	}
	#list{
		display: block;
		width: 75vw;
		padding: 0 0 20vw 0;
	}
	#list article{
		margin-bottom: 7vw;
	}
	#list .image{
		width: 65vw;
		margin: 0 auto 0 auto;
	}
	#list .title, #list .meta{
		display: block;
		position: relative;
		top: -0;
		left: 0;
		height: auto;
	}
	#list .title{
		font-size: 4vw;
	}
	#list .meta{
		font-size: 2.75vw;
	}
	#list .meta li{
		display: inline-block;
	}
	
	#list a:hover .title, #list a:hover .meta{
		left: -10px;
		color: #6b665f;
		opacity: 1;
	}
	#list a:hover .image img{
		left: 10px;
	}
}













/* SINGLE */
#exhibit article{
	margin: 10vw 0;
	padding: 0;
}

#exhibit article .inner{
	position: relative;
	max-width: 800px;
	margin: 0 15vw 0 25vw;
	padding: 2em;
	border: solid 10px #fff;
}

#exhibit .postDate,
#exhibit .postTitle,
#exhibit .postBody,
#exhibit .postTag{
	position: relative;
	padding: 0.5em 0;
}

#exhibit .postCat{
	position: absolute;
	background: #fff;
	top: -0.5em;
	left: 100%;
	transform-origin: 0% 100%;
	transform: rotate(90deg);
}
#exhibit .postCat a{
	display: block;
	padding: 0.25em 1em 0.5em 1em;
	transition: 0.3s ease;
}
#exhibit .postCat a:hover{
	color: #f98;
}

#exhibit .postDate{
	font-size: 12px;
}
#exhibit .postDate::before{
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	bottom: 0.3em;
	width: 100%;
	height: 10px;
	background: rgba(255,255,255,1.0);
	z-index: -1;
}

#exhibit .postTitle{
	padding-bottom: 0.25em;
	font-size: 32px;
	font-weight: 200;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

#exhibit .postBody{
	text-align: justify;
	line-height: 2;
	font-size: 16px;
}
#exhibit .postBody p{
	margin-bottom: 1.5em;
}
#exhibit .postBody a{
	text-decoration: underline;
	cursor: pointer;
}
#exhibit .postBody img{
	max-width: 100%;
	height: auto;
}

#exhibit .postTag li{
	display: inline-block;
}
#exhibit .postTag li:nth-child(n+2){
	margin-left: 1em;
}
#exhibit .postTag li a{
	display: inline-block;
	position: relative;
	padding: 0.25em 0.3em;
	border: solid 1px rgba(255,255,255,0);
	border-radius: 3px;
	line-height: 1;
	transition: 0.3s;
}
#exhibit .postTag li a::before{
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 0%;
	height: 10px;
	background: rgba(255,255,255,0.9);
	z-index: -1;
	transition: all 0.5s ease 0.1s;
}
#exhibit .postTag li a:hover{
	color: #f98;
}
#exhibit .postTag li a:hover::before{
	left: 20px;
	width: calc(100% - 20px);
}

#exhibit .postBody iframe{
	width: 100%;
}



@media screen and (max-width:800px) {
	#exhibit > .inner{
		margin-top: 150px;
	}
	
	#exhibit article{
		margin: 0 0 20vw 0;
	}

	#exhibit article .inner{
		box-sizing: border-box;
		width: 80vw;
		margin: 0 auto;
		padding: 3vw;
		border: solid 7px #fff;
	}
	#exhibit .postTitle{
		font-size: 5.5vw;
		line-height: 1.25;
	}
	#exhibit .postBody{
		text-align: left;
		font-size: 3.2vw;
		letter-spacing: 0.05em;
	}
	#exhibit .postBody img{
		height: auto;
	}
}









