*{
	box-sizing:border-box;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

body{
	padding:0;
	margin:0;
	background: #F0F0F0;
}

.inner{
	max-width:900px;
	width:100%;
	padding:0 20px;
	margin:0 auto;
	box-sizing:border-box;
}

/* portfolio
-----------------------------------*/
#portfolio{
	padding: 20px;
	border: 1px solid #ccc;
	background: #FFF;
}

#portfolio ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

#portfolio ul li{
	padding: 0;
	margin: 0;
	display: flex;
}

#portfolio ul li:hover{
	background: #CCC;
}

#portfolio ul li span{
	height: 40px;
	display: inline-block;
	padding: 5px 5px;
	margin-right: 10px;
	cursor: pointer;
	font-size: 1.2em;
}

#portfolio ul li:hover span.image{
	transform-origin: center center;
	transform: scale(2.0);
}

#portfolio ul li:hover span.image .fas.color{
	color: #ffa500;
}

#portfolio ul li span.image:hover .fas.color{
	color: #F00;
}

#lightbox img{
	cursor: pointer;
}


#portfolio ul li a{
	display: block;
	padding: 0;
	margin: 0;
}

#portfolio ul li a span{
	margin-right: 10px;
}

/* footer
-----------------------------------*/



footer{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 15px 0;
	background: #ccc;
}

footer #Copyright{
	font-size: 13px;
	color: #FFF;
	text-align: center;
}

/* lightbox
-----------------------------------*/
#lightbox{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #0006;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	pointer-events: none;
	opacity: 0;
}

#lightbox #close{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

#lightbox #close span{
	display: block;
	width: 40px;
	height: 40px;
	color: #FFF;
	font-size: 30px;
	margin: 0 0 0 auto;
	cursor: pointer;
}

#portfolio li.select{
	background: #F002;
}

#lightbox.open{
	opacity:1;
	pointer-events:auto;
}

#lightbox span{
	font-size: 30px;
	color: #FFF;
	margin: 0 10px;
	font-weight: bold;
	cursor: pointer;
}

#lightbox img{
	width: 70%;
	height: 70%;
	max-width: 600px;
	max-height: 600px;
	object-fit: contain;
}
