@charset "utf-8";

/*-----------------------------------
リセット
-----------------------------------*/
*{ margin: 0; padding: 0;}
a { text-decoration : none;}
ul, ol { list-style : none;}
img { border-style:none;}
*, *:before, *:after { box-sizing: border-box; }
body { -webkit-text-size-adjust: 100%; }

/*-----------------------------------
基本設定
-----------------------------------*/
body {
    color:#000;
	background-color:#FFF;
	text-align:center;
	font-size:16px;
	line-height: 28px;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	
	opacity: 0;
	animation: OpenIn 2.5s ease;
	animation-fill-mode: forwards;
	
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
@keyframes OpenIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

a {
	color:#F00;
	transition:0.4s;
}
a:hover {
	color:#FC0;
	transition:0.4s;
}
a:hover img	{
	opacity: 0.7;
	transition:0.4s;
}

img {
	width: 60%;
	max-width: 360px;
	margin-bottom: 20px;
}

h1 {
	font-weight: 500;
	font-size: 21px;
	letter-spacing: 0.2em;
}

h2 {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 40px;
}


/*-----------------------------------
Contents
-----------------------------------*/
section {
	max-width: 940px;
	margin: 0 auto;
}
.copyright {
	font-size: 10px;
}