@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
	padding: 0px;
	border: 0px;
	}

body {
	font-family:"Meiryo",Verdana,sans-serif,MS UI Gothic,MS Pゴシック,MS ゴシック;
	font-size: 90%;
	text-align:left;
	color: #242424;
	letter-spacing:0.05em;
    height: 100%;
    overflow-x: hidden;
    position: relative;
	background-color: #ffffff;
	}
a{text-decoration:underline; color:#1c7faf;}
a:hover{text-decoration:none;}
.f_bold{font-weight: bold;}
.c_red{color: #e62323;}

/*---------------------------------------------------------------------------------
wrapper
---------------------------------------------------------------------------------*/
#wrapper{
	width:100%;
	margin:0;
	padding:0;
	position:relative;
	overflow:hidden;
	}
#content{
	width:auto;
	margin:0 auto;
	padding:0;
	}

/*---------------------------------------------------------------------------------
header
---------------------------------------------------------------------------------*/
header{
	width:auto;
	margin:0 auto;
    background: #ffffff;
	border-bottom: solid 1px #f9f9f9;
	}
	header h1{
		width: auto;
		padding: 10px 40px 10px 10px;
		letter-spacing:0;
		}
		header h1 span{
			display: block;
			font-size: 30%;
			color: #007fda;
			font-weight: normal;
			margin: 0 0 3px;
			line-height: 1em;
			}
		header h1 a{
			display: block;
			text-decoration: none;			
			font-size: 52%;
			font-weight: normal;
			color: #0f47a1;
			line-height: 1em;
			}
		header h1 a:hover{
            opacity: 0.5;
            -webkit-transition: .3s;
            transition: .3s;
			}

/*---------------------------------------------------------------------------------
main
---------------------------------------------------------------------------------*/
main{
	width: auto;
	}
	main article{
		padding: 10px;
		}

/*---------------------------------------------------------------------------------
side
---------------------------------------------------------------------------------*/
#side{
	display: none;
	}

/*---nav---*/
nav#menu{
    overflow: hidden;
    display: block;
    clear: both;
	margin-bottom: 10px;
	}
	nav#menu ul{
		width: auto;
		margin: 0 auto;
		list-style: none;
		overflow: hidden;
		background: #0069ca;
		background: -moz-linear-gradient(top left, #0051ba, #0094e8);
	    background: -webkit-linear-gradient(top left, #0051ba, #0094e8);
		background: linear-gradient(to bottom right, #0051ba, #0094e8);
		}
		nav#menu ul li{
			border-bottom: 1px solid rgba(255, 255, 255, 0.4);
			font-size: 100%;
			}
			nav#menu ul li a{
				display: block;
				padding: 14px 10px 11px 30px;
				text-decoration: none;
				color: #ffffff;
				background: url(../img/arrow.png) 8px 50% no-repeat;
				background-size: 14px;
				}
			nav#menu ul li a:hover{
				-webkit-transition: .3s;
				transition: .3s;
				background: url(../img/arrow.png) 10px 50% no-repeat rgba(2, 32, 70, 0.5);
				background-size: 14px;
				}

/*---nav slide---*/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity .5s;
  }
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
  }
.menu_trigger {
    display: inline-block;
    /*display: none;*/
    width: 24px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 6px;
    right: 6px;
    z-index: 2000;
    border: solid #ffffff 6px;
	border-top: solid #ffffff 8px;
	border-bottom: solid #ffffff 8px;
    background: #ffffff;
	border-radius: 3px;
    }
.menu_trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #1963a2;
	transition: all .5s;
	}
	.menu_trigger.active span {background-color: #1963a2;}
	.menu_trigger span:nth-of-type(1) {top: 0;}
	.menu_trigger span:nth-of-type(2) {top: 9px;}
	.menu_trigger span:nth-of-type(3) {bottom: 0;}
	.menu_trigger.active span:nth-of-type(1) {transform: translateY(9px) rotate(-45deg);}
	.menu_trigger.active span:nth-of-type(2) {opacity: 0;}
	.menu_trigger.active span:nth-of-type(3) {transform: translateY(-9px) rotate(45deg);}

nav.slide_menu {
	width: 250px;
	height: 100%;
	padding-top: 10px;
	background: #0069ca;
    background: -moz-linear-gradient(top left, #0051ba, #0094e8);
    background: -webkit-linear-gradient(top left, #0051ba, #0094e8);
    background: linear-gradient(to bottom right, #0051ba, #0094e8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transform: translate(-250px);
	transition: all .5s;
	-webkit-overflow-scrolling: touch;
	}

nav.slide_menu.open {
	transform: translateZ(0);
	}
	nav.slide_menu ul {
		width: auto;
		height: 86%;
		overflow-y: scroll;
		-ms-overflow-style:none;
		padding: 0 15px;
		}
	nav.slide_menu ul::-webkit-scrollbar {
		display:none;
		}
		nav.slide_menu ul li {
			color: #ffffff;
			padding: 0;
			list-style: none;
			border-bottom: solid 1px rgba(255, 255, 255, 0.4);
			font-weight: normal;
			font-size: 15px;
			}
			nav.slide_menu ul li a{
				display: block;
				padding: 15px 5px 15px 30px;
				text-align: left;
				color: #ffffff;
				text-decoration: none;
				background: url(../img/arrow.png) 8px 50% no-repeat;
				background-size: 14px;
				}

			nav.slide_menu ul li a:hover{
				opacity: 0.5;
				-webkit-transition: .3s;
				transition: .3s;
				}

				nav.slide_menu ul li a img{
					display: block;
					height: 20px;
					margin: 0;
					}

/*---------------------------------------------------------------------------------
top
---------------------------------------------------------------------------------*/
.eyecatch{
	width: auto;
	}
	.eyecatch img{
		width: 100%;
		display: block;
		}

#top_main article h2{
    background: -moz-linear-gradient(top left, #0051ba, #0094e8);
    background: -webkit-linear-gradient(top left, #0051ba, #0094e8);
    background: linear-gradient(to bottom right, #0051ba, #0094e8);
	color: #ffffff;
	padding: 5px 15px;
	margin-bottom: 5px;
	font-size: 120%;
	}

#top_main article section ul{
	list-style: none;
	max-height: 340px;
	overflow-y: scroll;
	border: solid 1px #f1f1f1;
	}
	#top_main article section ul li{
		border-bottom: dotted #ccc 1px;
		padding: 10px 15px;
		word-wrap:break-word;

		}
		#top_main article section ul li span{
			display: block;
			margin-bottom: 5px;
			}

/*---------------------------------------------------------------------------------
page
---------------------------------------------------------------------------------*/
#page article{
	padding: 0 10px 10px;
	}
#page h2{
	padding: 10px 15px 6px;
    margin: 0 0 15px;
    font-size: 140%;
    color: #ffffff;
    background: -moz-linear-gradient(top left, #0051ba, #0094e8);
    background: -webkit-linear-gradient(top left, #0051ba, #0094e8);
    background: linear-gradient(to bottom right, #0051ba, #0094e8);
	}
#page h3{
	font-size: 120%;
    color: #0051ba;
    background: #f7f7f7;
    margin: 20px 0 10px;
    padding: 6px 6px 6px 10px;
    border-left: solid 8px #0051ba;
	}
#page p{
	padding: 0 10px 10px;
	}

#page ul, #page ol{
	padding: 10px;
	margin: 0 10px 10px 25px;
	}
	#page ul li, #page ol li{
		margin-bottom: 15px;
		}

#page ul li dl, #page ol li dl{
	margin: 10px 0 20px;
    padding: 15px 15px 10px;
    border: solid 2px #0051ba;
    border-radius: 12px;
    }
	#page ul li dl dt, #page ol li dl dt{
		font-weight: bold;
		}
	#page ul li dl dd, #page ol li dl dd{
		margin-bottom: 10px;
		}

.link_btn{
	display: inline-block;
    padding: 8px 8px 6px 34px;
    margin: 10px auto;
    background: url(../img/arrow.png) 8px 50% no-repeat;
    background-size: 20px;
    background-color: #0051ba;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    font-size: 120%;
    text-decoration: none;
	}
.link_btn:hover{
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0.6;
	}
.link_arrow{
	display: inline-block;
	padding: 0 0 0 20px;
	background: url(../img/arrow_b.png) 2px 50% no-repeat;
	background-size: 14px;
	}

.greeting{
	overflow: hidden;
	clear: both;
	margin: 20px 0;
	display: table;
	width: 100%;
	vertical-align: bottom;
	text-align: center;
	}
	.greeting > div{
		overflow: hidden;
		display: table-cell;
		width: 50%;
		vertical-align: bottom;
		padding: 0 10px 0 0;
		}
		.greeting > div > div{
			height: 130px;
			text-align: center;
			width: 100%;
			}
			.greeting > div > div img{
				height: 100%;
				display: inline-block;
				}
		#page .greeting > div > p{
			padding: 5px 0 0;
			font-size: 90%;
			}
			.greeting > div > p span{
				font-size: 75%;
				display: block;
				}

table.tb_1{
	display: block;
	border-collapse: collapse;
	margin: 4px 15px 15px 15px;
}

table.tb_1 th{
	font-weight: normal;
	padding: 8px 8px;
	background-color: #eef6fd;
	border: 1px #ddd solid;
}

table.tb_1 td{
	font-weight: normal;
	padding: 8px 8px;
	background-color: #f8fbfd;
	border: 1px #ddd solid;
}

/*---------------------------------------------------------------------------------
box_info
---------------------------------------------------------------------------------*/
.box_info{
	display: block;
	overflow: hidden;
	margin: 20px 10px 4px 10px;
	padding: 15px;
	border: 3px #A81C1C solid;
}

/*---------------------------------------------------------------------------------
footer
---------------------------------------------------------------------------------*/
footer{
	clear: both;
	margin: 0 0 38px;
	padding-top: 40px;
	letter-spacing: normal;
	}
	footer > div{
		display: block;
		background: #f9f9f9;
		padding: 20px 5px 15px;
		}
	footer > div > div{
		display: block;
		width: 40%;
		margin: 0 12px 10px 10px;
		float: right;
		text-align: center;
		}
		footer > div > div img{
			display: block;
			width: 100%;
			margin: 0;
			border: solid 1px #d3d3d3;
			}
    footer > div dl{
        padding: 0 10px;
        font-size: 90%;
        letter-spacing:0;
        line-height: 1.3em;
        }
        footer > div dl dt{
            font-weight: bold;
            margin: 0 0 10px;
            }
        footer > div dl dd{
            margin: 0;
            }
            footer > div dl dd span{
                font-size: 85%;
                }

footer small{
    clear: both;
    background: #004ba3;
	color: #ffffff;
    display: block;
    text-align: center;
    margin: 0 0 -38px;
    padding: 10px;
	font-size: 50%;
	}
/*---------------------------------------------------------------------------------
END
---------------------------------------------------------------------------------*/