@charset "utf-8";
/* CSS Document */

body,ul,li,h1,p{
	margin: 0;
	padding: 0;
}

body{
	letter-spacing: 3px;
	font-size: 75%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color: #676767;
	background-color: #F2DBD8;
	width: 100%;
	overflow-x: hidden;
	transition: 1s all;
}

a{
	text-decoration: none;
	color: #676767;
}

a:hover{
	color: #BEBEBE;
	transition: 1s all;
}

header{
	padding: 100px 10%;
}


h1{
	font-weight: bold;
	font-size: 200%;
	margin-bottom: 20px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif"
}


main{
	margin-top: 50px;
	margin-left: 10%;
	padding: 10%;
	width: 100%;
	background-color: #FFFFFF;
}

article{
	background-color: #FFFFFF;
	height: 500px;
	padding-bottom: 20px;
	margin-bottom: 100px;
}

.name{
	width: 20%;
	float: left;
	padding-top: 20px;
}

.images{
	width: 40%;
	padding-right: 20%;
	float: left;
}

.images img{
	width: 100%;
}

span{
	font-size: 50%;
}

.caption{
	font-size: 70%;
	margin-top: 10px;
}

.up{
	position: fixed;
	z-index: 100;
	right: 5%;
	bottom: 5%;
	width: 5%;
	opacity: 0;
	transition: 1s all;
}





footer{
	color: #888888;
	margin-top: 100px;
	padding: 100px 10%;
	background-color: #2C2C2C;
	position: relative;
	height: 200px;
}

footer a{
	color: #c2c2c2;
}

footer a:hover{
	color: #888;
	transition: 1s all;
}

footer h3{
	font-weight: lighter;
	font-size: 150%;
}

footer li{
	list-style-type: none;
	line-height: 30px;
}









@media screen and (max-width: 640px){
	header{
		padding: 10%;
	}
	
	.up{
		width: 10%;
		right: 10%;
	}
	
	main{
		margin-top: 5px;
		margin-left: 0;
		padding: 10%;
	}
	
	article{
		margin-bottom: 10px;
	}
	
	.name,.images{
		clear: both;
		width: 80%;
	}
	
	.name{
		margin-bottom: 20px;
	}
	
	footer{
		margin-top: 0;
	}
}