@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Anton|Covered+By+Your+Grace|Gochi+Hand|Noto+Serif+JP:200,400,600,700,900|Sawarabi+Mincho');
@import url('https://fonts.googleapis.com/earlyaccess/hannari.css');
@import url('https://fonts.googleapis.com/css?family=Montserrat');
html {
	font-size: 67.5%;
}:root {
	--f1: 5rem;
	--f2: 5rem;
	--f3: 4rem;
	--f4: 3.2rem;
	--f5: 2.5rem;
	--f6: 1.8rem;
	--f7: 1.6rem;
	--f8: 1.4rem;
	--f9: 1.2rem;
}
.sawarabi {
	font-family: "Sawarabi Mincho";
}
.hannari {
	font-family: "Hannari", "Sawarabi Mincho";
}
.anton {
	font-family: 'Anton', sans-serif;
}
.coverd {
	font-family: 'Covered By Your Grace', cursive;
}
.Gochi {
	font-family: 'Gochi Hand', cursive;
}
.montserrat {
	font-family: 'Montserrat', sans-serif;
}

body {
	font-size: 160%;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	position: relative;
	color: #eeeeee;
	width: 100%;
	height: 100vh;
}
header {
	position: absolute;
	display: block;
	width: 30vw;
	max-width: 400px;
	height: 300px;
	top: 0px;
	left: 0;
	right: 0;
	margin: 0 auto;
	filter: blur(20px);
	z-index: 90;
	transition: blur 5s ease;
}
header.fade {
	display: block;
	top: 100px;
	filter: blur(0);
	opacity: 1;
	animation: 2s headerFade;
}
article {
	position: absolute;
	top: 300px;
	left: 0;
	right: 0;
	animation-duration: 8s;
	animation-name: articleFade;
}
#wrapper {}
.imgFull {
	max-width: 300px;
	width: 100%;
	height: auto;
}
.genre {
	font-size: 80%;
}
#firstView {
	width: 100vw;
	min-height: 100vh;
	position: relative;
	z-index: 3;
	text-align: center;
	margin: 0 auto;
	color: #888;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
#firstViewOuter {
	width: 100%;
	min-height: 100vh;
	padding: 50px;
	box-sizing: border-box;
	background-color: hsla(240, 58%, 26%, 0.76);
	z-index: 3;
	position: relative;
}
.addScrollAction {
	animation: scrollAction 3s ease;
	visibility: visible;
}
@keyframes scrollAction {
	0% {
		margin-top: 0;
		opacity: 0;
	}
	30% {
		opacity: 1;
		filter: blur(20px);
	}
	100% {
		filter: blur(0);
	}
}
#about {
	width: 100%;
	min-height: 100vh;
	padding: 50px 0 200px;
	box-sizing: border-box;
	background-color: hsla(24, 54%, 47%, 0.62);
	z-index: 2;
	position: relative;
}
#contact {
	width: 100%;
	min-height: 100vh;
	padding: 50px;
	box-sizing: border-box;
	background-color: hsla(338, 54%, 47%, 0.62);
	z-index: 2;
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
#firstView ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#firstView ul li {
	width: 10vw;
	max-width: 200px;
	min-width: 150px;
	height: 10vw;
	max-height: 200px;
	min-height: 150px;
	background-color: hsla(42, 28%, 93%, 0.73);
	border-radius: 50%;
	margin-right: 3vw;
	padding: 20px 5px;
}
#firstView ul li:last-child {
	margin-right: 0;
}
.button {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	width: 200px;
	margin: 20px auto 0;
	text-align: center;
}
.button i {
	font-size: 60px;
}
.button a {
	color: #d7000f !important;
	transition: 1.2s opacity ease,1.2s color ease;
}
.button a:hover {
	color: #fff!important;
	opacity: 0.7;
}
.infoTitle {
	font-size: 4rem;
	margin-bottom: 20px;
}
.infoOuter {
	overflow: hidden;
	border-bottom: solid 1px #cccccc;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.infoInnerHeader {
	width: 30%;
	float: left;
	font-weight: 700;
}
.infoInnerBody {
	width: 65%;
	float: right;
	margin-left: 5%;
}
@keyframes headerFade {
	0% {
		display: none;
		opacity: 0;
	}
	50% {
		display: block;
		opacity: 0;
		transform: translateY(-80px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes articleFade {
	0% {
		display: none;
		opacity: 0;
	}
	70% {
		display: block;
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes backgroundFade {
	0% {
		display: none;
		opacity: 0;
	}
	30% {
		display: block;
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes backgroundFade {
	0% {
		display: none;
		opacity: 0;
	}
	30% {
		display: block;
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*toTop*/
#totop {
	overflow: hidden;
	width: 60px;
	height: 60px;
	display: block;
	position: fixed;
	right: 0;
	bottom: 8vh;
	padding-bottom: 40px;
	z-index: 100;
}
#totop p {
	display: inline;
	width: 60px;
	height: 60px;
	text-align: center;
	font-size: 60px;
}
#totop p img {
	width: 60px;
	height: 60px;
}
#totop a {
	color: #844E41;
}
#totop a:hover {
	opacity: 0.7;
}
@-webkit-keyframes sdb {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
	}
	20% {
		-webkit-transform: rotate(-45deg) translate(-10px, 10px);
	}
	40% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
	}
}
@keyframes sdb {
	0% {
		transform: rotate(-45deg) translate(0, 0);
	}
	20% {
		transform: rotate(-45deg) translate(-10px, 10px);
	}
	40% {
		transform: rotate(-45deg) translate(0, 0);
	}
}

/*********************************************
Form
*********************************************/
.sendButton {
	padding: 18px;
	transition: 0.6s all ease;
}
.sendButton[type="submit"] {
	box-shadow: 3px 3px 8px 1px rgba(50,50,50,0.7);
	transition: 0.6s all ease;
}
.sendButton[type="submit"]:hover {
	box-shadow: 0px 0px 2px 0px rgba(97,33,34,0.70);
}


/*********************************************
MediaQuery
*********************************************/
@media screen and (max-width:980px) {
	.spClearFix {
		clear: both;
	}
	header {
		margin-top: 0;
	}
	#firstView {
	}
	#firstView ul {
		display: flex;
		justify-content: space-around;
		flex-wrap:wrap;
	}
	#firstView ul li {
		background-color: hsla(42, 28%, 93%, 0.73);
		border-radius: 50%;
		padding: 10px 5px;
		margin-bottom: 10px;
	}
}
@media screen and (max-width:767px) {
	.infoOuter {
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: none;
	}
	.infoInnerHeader {
		width: 100%;
		padding: 5px;
		margin-bottom: 10px;
		float: none;
		text-align: center;
		background-color: #ffffff;
		color: #666666;
		border-radius: 10px;
	}
	.infoInnerBody {
		width: 100%;
		float: none;
		margin-left: 0;
		text-align: center;
	}
}