@charset "utf-8";


#archives{
	width: 100%
}
#archives .inner{
	margin-left: 50vw;
}

#list{
	display: block;
	width: 30vw;
	padding: 3vw 0 1vw 0;
}
#list a{
	display: block;
	position: relative;
	margin-bottom: 2vw;
	cursor: pointer;
}
#list .title{
	position: absolute;
	bottom: 1.6em;
	right: 2.0em;
	width: auto;
	height: 1em;
	text-align: left;
	line-height: 1;
	font-size: 16px;
	font-weight: 200;
	opacity: 0;
	z-index: 2;
	transition: all 0.5s ease;
}
#list .title::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -2em;
	width: 10%;
	height: 1em;
	background: #df0;
	opacity: 0;
	z-index: -1;
	transition: all 0.5s ease 0.1s;
}
#list .image{
	opacity: 1.0;
	z-index: 1;
	transition: all 0.3s;
}
#list .image img{
	display: block;
	position: relative;
	left: 0vw;
	width: 100%;
	transition: all 1.0s ease;
}

#list a:hover{
}
#list a:hover .title{
	right: -1em;
	opacity: 1;
}
#list a:hover .title::after{
	left: 0em;
	width: 100%;
	opacity: 0.9;
}
#list a:hover .image{
	opacity: 0.85;
}
#list a:hover .image img{
	left: -30px;
	transition: all 0.5s ease;
}


@media screen and (max-width:800px) {
	#archives .inner{
		margin-top: 120px;
		margin-left: 40vw;
	}
	#list{
		width: 45vw;
		padding-top: 10vw;
	}
	#list a{
		margin-bottom: 4vw;
	}
}








/* --------------- SINGLE PAGE --------------- */
#work{
}

#thePic{
	position: relative;
	max-width: 70vw;
	max-height: 80vh;
	margin: auto;
	z-index: 1;
}
#thePic img{
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: 1em auto;
}
#thePic h1, #thePic .info, #thePic dd{
	display: inline-block;
	position: relative;
}
#thePic h1{
	font-size: 14px;
	letter-spacing: 0.05em;
}
#thePic .info{
	margin-left: 2em;
	font-size: 11px;
}
#thePic .info dd p{
	display: inline-block;
}
#thePic dd:nth-child(n+2)::before{
	content: "/";
	display: inline-block;
	padding: 0 0.5em;
}
#thePic .tags{
	display: block;
	font-size: 11px;
}
#thePic .tags .tag{
	display: inline-block;
}
#thePic .tags .tag a{
	color: #b9b0ab;
}
#thePic .tags .tag a:hover{
	text-decoration: underline;
}
#thePic .tags .tag a::before{
	content: '#';
}
#thePic .tags .tag:nth-child(n + 2){
	margin-left: 1em;
}



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

	/* SINGLE PAGE */
	body.single .post-navigation{
		display:none;
	}
	
	#thePic{
		max-width: 80vw;
		max-height: 80vh;
	}
	#thePic .info{
		display: block;
		margin-left: 0;
		font-size: 11px;
	}
	#thePic .info dd{
		display: block;
		line-height: 1.65;
	}
	#thePic .info dd::before{
		content: "- ";
		display: inline-block;
		padding: 0 0.5em;
	}
}









/*--------------------------------------------------------------
## CURSOR
--------------------------------------------------------------*/
#cursorShadow.hover.subA{
	width: 20vw;
	height: 20vw;
	background-color: #f98;
	opacity: 0.85;
}






