@charset "UTF-8";

/*============================================
 Reset
============================================*/
html,body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin: 0;
	padding: 0;
	line-height: 1.5;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 100%;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol,ul {
	list-style: none;
}
fieldset,img {
	border: none;
}
img {
	vertical-align: bottom;
}

/*============================================
 style
============================================*/
body {
	text-align: center;
}

/*--------------------------------------------

 header

--------------------------------------------*/
header h1 {
	margin: 20px auto;
}

/* ナビゲーション
--------------------------------------------*/
nav ul {
	white-space: nowrap;
}
nav li {
	display: inline-block;
	margin: 0 15px 70px 15px;
}

/*--------------------------------------------

 main

--------------------------------------------*/
main {
	display: block;
	padding-bottom: 800px;
	background: url(images/back.jpg) no-repeat bottom;
	background-size: 100%;
}
section {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
}

/* 見出し
--------------------------------------------*/
section h1 {
	margin-bottom: 3em;
	text-align: center;
}

/* テキスト
--------------------------------------------*/
section p {
	line-height: 1.5;
	margin-bottom: 1em;
}
section a {
	color: #005AA0;
}
section a:hover {
	text-decoration: none;
}

/* モーダルウィンドウ
---------------------------------------*/
label {
	color: #005AA0;
	text-decoration: underline;
}
label:hover {
	text-decoration: none;
}
.button:hover {
	cursor: pointer;
}
.modal-box {
	height: 0;
}
.content {
	display: table;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right:0;
	width:1000px;
	margin: auto;
	padding: 40px 40px 20px 30px;
	box-sizing: border-box;
	background: #FFFFFF;
	z-index: -1;
	text-align: center;
}
.content:after {
	content: ""; 
	display: block;
	clear: both;
}
.content > span {
	display: table-cell;
}
.toggle-on {
	display: none;
}
.toggle-on:checked + .toggle-off + .content {
	z-index: 1;
}
.toggle-off {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	margin: 0 auto;
	background: rgba(0, 0, 0, .4);
	z-index: -1;
}
.toggle-on:checked + .toggle-off {
	opacity: 1;
	z-index: 1;
}
.toggle-button {
	display: block;
	margin-top: 10px;
	color: #0059B2;
}
.toggle-button:hover {
	cursor: pointer;
}
.ani-rotate {
	opacity: 0;
}
.toggle-on:checked + .toggle-off + .ani-rotate {
	opacity: 1;
}
.content h2 {
	margin-bottom: 30px;
}
.content p {
	margin: 0;
	font-size: 0.9em;
}
.content p:first-of-type {
	width: 310px;
	margin: 30px 0;
	text-align: left;
}
.content label {
	clear: both;
	font-size: 0.9em;
	text-align: right;
}
.content label:hover {
	text-decoration: underline;
}

/* pagetop
--------------------------------------------*/
.pageTop {
	position: fixed;
	bottom: 38px;
	right: 20px;
}
.pageTop a {
	display: inline-block;
}


/*--------------------------------------------

 footer

--------------------------------------------*/
footer {
	padding: 30px 0;
	border-top: 1px solid #8E8F98;
	font-size: 0.8em;
}
footer img {
	margin-right: 30px;
	vertical-align: middle;
}
footer p {
	margin: 15px auto 0 auto;
	color: #666666;
}
@media screen and ( max-width:640px ){
}