@charset "UTF-8";

/* reset --------------------------------------------------------------------------- */

body,header,p,ul,li,a,figure,h1,h2 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	list-style-type: none;
	text-decoration: none;
}

body {
	overflow-x: hidden;
}

#contents {
	width: 100%;
}

/* --------------------------------------------------------------------------- */

a {
	color: #00aded;
}
#fade {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	z-index: 999;
	transition: all 1s;
	pointer-events: none;
}
#fade.loadcomplete {
	opacity: 0;
	transition: all 1s;
}
#title p {
	width: 100%;
}

h2 {
	position: relative;
	margin-bottom: 20px;
}


/* new ------------------------------------------------ */

.new::after {
	content: " ";
	background: url( ../img/new.png );
	position: absolute;
	right: -10px;
	top: -10px;
	width: 64px;
	height: 24px;
	z-index: 100;
	-webkit-animation: blink 1.8s infinite;
	animation: blink 1.8s infinite;
	pointer-events: none;
}



@-webkit-keyframes blink {
	to, from { opacity: 1; }
	50% { opacity: 0; }
}
@keyframes blink {
	to, from { opacity: 1; }
	50% { opacity: 0; }
}







/* フッター ====================================================================== */

footer {
	padding: 0 0 30px;
	text-align: center;
	background-color: #7abbed;
	color: white;
	font-size: 0.9em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "游ゴシック", sans-serif;
}
footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 20px 0 10px;
}
footer li {
	margin: 0 3px;
}
footer li img {
	width: 130px;
}

footer .snsicon {
	background-color: rgba(255,255,255,0.4);
	width: 100%;
	padding: 5px 0 0;
	margin: 0 auto 15px;
}

footer .snsicon img:hover {
	opacity: 0.7;
	transition: all 0.3s;
}