@charset "utf-8";

body {
	margin: 0px;
	background-color: #888888;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Meiryo"," sans-serif";
	color: #000000;
	font-size: 16px;
	line-height: 1.5em;
}

a {
	color: #000000;
}

a:hover {
	color: #D0000E;
}

.bg-wrap {
	width: 900px;
	margin-right: auto;
	margin-left : auto;
	background-color: #FFFFFF;
}

.main-wrap {
	height: auto;
	width: 100%;
	text-align: center;
}

.header-pc {
	height: 40px;
	background-color: #000000;
	color: #FFFFFF;
	font-size: 14px;
}

.header-pc a {
	text-decoration: none;
	color: #FFFFFF;
}

.header-pc a:hover {
	color: #D0000E;
}

.header-sp {
	display: none;
}

.top {
	display: inline-block;
	position: relative;
	left: 150px;
}

.contact {
	display: inline-block;
	position: relative;
	left: 650px;
}


.sns {
	display: inline-block;
	position: relative;
	top: 6px;
	left: 705px;
}

.facebook {
	margin-left: 15px;
}

.blue {
	color: #1E247F;	
}

.red {
	color: #D0000E;
}

.map {
	text-decoration: none;
	background-color: #1E247F;
	color: #FFFFFF;
}

.bg-red {
	background-color: #D0000E;
	color: #FFFFFF;
}

.top-msg a {
	text-decoration: none;
}

.top-msg a:hover {
	text-decoration: underline;
}

.frame {
	display: block;
	height: auto;
	width: 880px;
	margin: 0px 9px 30px 9px;
	border: 1px solid #1E247F; 
}

.font-size-0 {
	font-size: 0;
}

h1 {
	font-size: 24px;
	font-weight: heavy;
}


h2 {
	font-size: 20px;
	font-weight: 600;
	background-image: url("../images/common/pointmark.png");
	background-size: 22px 20px;
	background-repeat: no-repeat;
	padding: 0px 0px 0px 26px;
	vertical-align: top;
	text-align: left;
}

footer {
	height: 90px;
	background-color: #000000;
	color: #FFFFFF;
}

footer img {
	margin: 15px 0 0 30px;
}

.copyright {
	display: inline-block;
	position: relative;
	left: 520px;
	font-size: 12px;
}

#pagetop {
	position: fixed;
	bottom: 80px;
	right: 30px;
	opacity: 0.5;
}

table,th,td {
	border-collapse: collapse;
	border: 1px solid #888888;
}

.font-14 {
	font-size: 14px;
}

.page-title {
	margin-top: 30px;
	margin-right: 30px;
	margin-left: 30px;
}

.page-title-sub {
	margin: 0px 60px 30px 60px;
	text-align: left;
}

.content-left {
	margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 120px;
	padding-right: 120px;
	text-align: left;
}

.left {
	text-align: left;
}

.strike {
	text-decoration: line-through;
}

.logo-s {
	margin-top: 10px;
	margin-left: 10px;
	text-align: left;
}



/* SP */
@media screen and (max-width: 900px){

body {
	font-size: 20px;
}

.header-pc {
	display: none;
}

.header-sp {
	display: block;
	padding: 10px;
}

#nav-drawer {
	position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 60px;
	height: 44px;
	vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 6px;/*線の太さ*/
	width: 50px;/*長さ*/
	border-radius: 6px;
	background: #000000;
	display: block;
	content: '';
	cursor: pointer;
}

#nav-open span:before {
	bottom: -8px;
}

#nav-open span:after {
	bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 400px;/*最大幅（調整してください）*/
	height: 100%;
	background: #000000;/*背景色*/
	color: #FFFFFF;
	font-size: 24px;
	text-align: center;
	line-height: 3em;
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
}

.menu-sp {
	width: 80%;
	margin-right: auto;
	margin-left : auto;
	margin-top :30px;
}

.menu-sp hr {
	background-color: #888888;
}

.menu-sp a {
	text-decoration: none;
	color: #FFFFFF;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.sns-sp {
	display: inline-block;
	vertical-align: -8px;
	float: right;
}

.facebook-sp {
	margin-left: 15px;
	margin-right: 15px;
}

.bg-wrap {
	width: 640px;
}

h1 {
	font-size: 28px;	
}

h2 {
	font-size: 24px;
	font-weight: 600;
	background-image: url("../images/common/pointmark.png");
	background-size: 29px 26px;
	background-repeat: no-repeat;
	padding: 0px 0px 0px 35px;
	vertical-align: top;
	text-align: left;
}

.frame {
	width: 620px;

}

.copyright {
	left: 220px;
	font-size: 16px;
}

.font-14 {
	font-size: 16px;
}

.content-left {
	padding-left: 30px;
	padding-right: 30px;
}

.logo-s {
	display: none;
}

.logo-s-sp {
	height: 70px;
	padding-top: 25px;
	vertical-align: middle;
	background-color: #FFFFFF;
}

}

/* SP */
