@charset "UTF-8";

img {
		max-width: 100%;
		height: auto;
	}

#main {
    max-width: 100%;
	margin: 0 auto;
    padding: 50px 0 0;
}

#main h1 {
	margin: 0 3% 50px;
	color: inherit;
}

.block {
	margin: 0 3% 60px;
	font-size: 14px;
	text-align: center;
	min-height: 2000px;
}


.block h2 {
	margin: 0 0 10px;
	font-size: 120%;
	font-weight: bold;
}

/* 固定バナー */

.fixed_banner {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 10;
}

.fixed_banner img {
	width: 150px;
	height: auto;
	border: 2px solid #999;
	transition: .2s;
}

.fixed_banner a:hover img {
	opacity: .7;
}

/* 閉じるボタン */

.fixed_banner .close {
	position: absolute;
	bottom: 100%;
	right: 0;
	background: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
}