@charset "utf-8";

/* Kinoko House css
-----------------------------------------------------*/
#contents {
	background: #fff;
}

/* ==============================================
    topmain
============================================== */
#topmain {
	text-align: center;
	position: relative;
}
#topmain h2 {
	position: absolute;
	top: 150px;
	width: 100%;
	text-align: center;
	opacity: 0;
	animation: catch 1s ease-in-out forwards 1s;
}
@keyframes catch {
	0% {}
	100% { opacity: 1; }
}

@media screen and (max-width: 700px) {

}


/* ==============================================
    bnr
============================================== */
div.bnr {
	padding: 50px 0;
}

div.bnr ul {
	list-style: none;
	display: flex;
	justify-content: center;
}
div.bnr li {
	margin: 0 10px;
	text-align: center;
}

@media screen and (max-width: 700px) {
	div.bnr {
		padding-bottom: 30px;
	}
	div.bnr ul {
		display: block;
	}
	div.bnr li {
		margin: 10px 0;
	}
}

