@charset "utf-8";
/*font*/
body {
	font: 100% / 1.5 "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	color: #333;
	font-family: 'Noto Serif JP', serif;
	font-family: 'Lato', sans-serif;
	font-family: 'Crimson Text', serif;
	font-family: 'Open Sans', sans-serif;
}

.wrapper {
	display: flex;
	animation-name: fadeIn;
	animation-duration: 5s;
	animation-timing-function: ease;
	z-index: 1;
}
/*@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}*/
/*.menu {
	z-index: 2;
}*/
h1 {
	padding-top: 150px;
	padding-left: 200px;
	padding-right: 200px;
	font-size: 16px;
	letter-spacing: 0.1em;
}
.contents {
	padding-bottom: 100px;
	width: 680px;
	flex: auto;
}
#concept {
	padding-top: 150px;
	padding-bottom: 100px;
	margin-bottom: 100px;
	border-bottom: 1px solid #CCC;	
}
#concept, #designer {
	width: 500px;
}
h2 {
	font-size: 0.8rem;
	padding-bottom: 50px;
	letter-spacing: 0.1em;
}
#concept-ja {
	font-size: 0.68rem;
	padding-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
	line-height: 1.5em;
}
#concept-en {
	font-size:0.7rem;
	font-family: 'Noto Serif JP', serif;
}
#designer-ja {
	font-size: 0.68rem;
	padding-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
	line-height: 1.5em;
}
#designer-en {
	font-size: 0.7rem;
	font-family: 'Noto Serif JP', serif;
}
#designer-name {
	padding-bottom: 4px;
}
/*about-image*/
.container {
	position: relative;
	padding-bottom: 30px;
}
.about-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	animation-name: changeImage;
	animation-duration: 5s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	background-image: url(../../images/about-image.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

@keyframes changeImage {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		z-index: 0;
	}
}
.br-sp {
	display: none;
}
footer {
	margin-top: 0px;
}

/*----------------------------
	media query
-----------------------------*/
/*561px~1024px*/
@media screen and (max-width: 1024px){
	h1 {
		padding-left: 100px;
		padding-right: 100px;
		padding-top: 220px;
	}
	h2 {
		padding-bottom: 60px;
	}
	.contents {
		padding-top: 70px;
		padding-left: 50px;
		width: 480px; 
	}
	#concept {
		padding-bottom: 140px;
		margin-bottom: 120px;
	}
	#concept, #designer {
	width: 400px;
}
	.br-sp {
		display: none;
	}
	.about-image {
		display: none;
	}
	
}

/*961px~1024px*/
@media screen and (min-width: 961px) and (max-width: 1024px){
	h1 {
		padding-left: 150px;
		padding-right: 150px;
	}
}

/*~560px*/
@media screen and (max-width: 560px){
	.wrapper {
		display: block;
	}
	h1 {
		text-align: center;
		font-size: 33px;
		padding-top: 180px;
	}
	.contents {
		padding-left: 20px;
		padding-right: 20px;
		width: auto;
	}
	#concept {
		padding-top: 90px;
	}
	#concept, #designer {
		width: auto;
	}
	h2 {
		padding-bottom: 55px;
	}
	.br-pc {
	display: none;
	}
	.br-sp {
	display: inline-block;
	}
	.about-image {
		display: none;
	}
	footer {
		padding-top: 25px;
		padding-bottom: 10px;
	}
	footer a {
		padding-top: 18px;
	}
}


