@charset "UTF-8";

/* CSS Document */

/*==================================================

container
=================================================*/

html {
	background: #ffffff;
}
body {
    position: relative;
    left: 0;
}

html:before,
html:after,
body:before,
body:after {
  content: "";
  position: fixed;
  display: block;
  z-index: 120;
}

/* 上 */
html:before {
  height: 5px; 
  width: 100vw;
  left: 0;
  top: 0;
  background: -moz-linear-gradient(left, #009fe5, #1f489d);
  background: -webkit-linear-gradient(left, #009fe5, #1f489d);
  background: linear-gradient(to right, #009fe5, #1f489d);
}

/* 右 */
html:after {
  width: 5px;
  height: 100vh;
  right: 0;
  top: 0;
  background: #1f489d;
}

/* 下 */
body:before {
  height: 5px;
  width: 100vw;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(left, #009fe5, #1f489d);
  background: -webkit-linear-gradient(left, #009fe5, #1f489d);
  background: linear-gradient(to right, #009fe5, #1f489d);
}

/* 左 */
body:after {
  width: 5px;
  height: 100vh;
  top: 0;
  left: 0;
  background: #009ee4;
}

@media only print{/* 上 */
html:before {
  height: 0px; 
}

/* 右 */
html:after {
  width: 0px;
}

/* 下 */
body:before {
  height: 0px;
}

/* 左 */
body:after {
  width: 0px;
}

}


img {
width:100%;
max-width: 100%;
height: auto;
}

.tC{
	text-align: center;
}
.tS{
	font-size: 80%;
}
.mwh{
	max-width: 460px;
	margin: 0 auto;
}
.mw6{
	max-width: 600px;
	margin: 0 auto;
}
.selector {
  font-feature-settings: "palt";
}

.layer{
    display: none;
    width: 100%;
    height: 100%;
	position: fixed;
    top: 0;
	left: 0;
    background: rgba(0, 0, 0, 0.8);
	z-index: 1002!important;
}
body.open{
	width: 100%;
    position: fixed;
}

#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

/*==================================================

header
=================================================*/

header {
	width: 100%;
	position: fixed;
	min-width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 7!important;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 20;
	height: 70px;
}

#header-inner {
	width: 100%;
	max-width: 1500px;
	position: relative;
	margin: 0 auto;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	height: 70px;
}

.headerbg {
	background-color: rgba(255,255,255, 0.8);
	top: 0;
}
.headerbg #header-inner {
	margin: 0 auto;
}

/* cf */

#header-inner:after,#header-logo-wrapper:after {
    content:" ";
    display:block;
    clear:both;
}

/* header PC */

#header-logo {
	width: 25%;
	max-width: 400px;
	position: absolute;
	line-height: 0;
	
	top: 20px;
	left: 20px;

	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	
	z-index: 5!important;
	
}
/* header img */

#header-logo img {
	width: 100%;
	max-width:240px;
	height: auto;
}

/* header SP */

.header-spmenu {
	width: 70px;
	display: none;
	float: right;
	text-align: center;
	cursor: pointer;
	padding: 15px;
}
.header-spmenu img {
	width: 100%;
	max-width: 100%;
	height: auto;
}


/*==================================================

Navi
=================================================*/

/* header menu */

nav {
	width: 70%;
	max-width:800px;
	position: relative;
	float: right;
}

nav > ul {
	width: 100%;
	position: relative;
	display: table;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
}

/* cf */

nav:after,nav ul:after {
    content:" ";
    display:block;
    clear:both;
}
nav > ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
nav > ul > li {
	width: 16.6666%;
	position: relative;
}
nav > ul > li > a,
nav > ul > li > span {
	width: 100%;
	display: block;
	font-size: 1.4rem;
	color: #111;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	margin: 15px 0;
	padding: 0 5px;
}

/* メインメニューの背景 オーバー */

nav > ul > li > ul {
	width: 180px;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	transition: .2s;
	top: 100%;
	left: 50%;
	-webkit-transform: translate(-40%, 0); /* Safari用 */
	transform: translate(-40%, 0);
	
    background-color: rgba(255,255,255,0.9);
	padding: 0;
}

nav li ul li a {
	visibility: hidden;
	opacity: 0;
	transition: .2s;
}
nav li:hover ul li a {
	visibility: visible;
	opacity: 1;
}


/* サブメニュー詳細設定 */

nav > ul > li > ul li {
	width: 100%;
	float: none;
	border-bottom: 1px solid #dfdfdf;
	padding: 0 2px;
}
nav > ul > li > ul li a {
	width: 100%;
	display: block;
	font-size: 1.3rem;
	line-height: 180%;
	color: #333;
	text-align: left;
	text-decoration: none;
	background-size: auto;
	padding: 12px 10px 12px 16px;
	position: relative;
	vertical-align: middle;
}

/*  img */

nav > ul > li > ul li a img {
	width: 100%;
	display: block;
	max-width: 100%;
	height: auto;
	margin-bottom: 8px;
}

.pc-only {
	display: block;
}
.sp-only {
	display: none;
}

/* 印刷時 */

@media print {
	header {
		position: absolute;
	}
}




/*==================================================

table
=================================================*/

.fColRed {
	color: #F00;
}
table{
	width: 96%;
	margin: 20px auto 30px;
}

table th,
table td{
	padding: 10px 20px;
}
table th{
	white-space: nowrap;
	font-weight: normal;
	letter-spacing: 0.1em;
}
table td{
	letter-spacing: 0.05em;
	line-height: 1.7em;
}
table td dl{
	overflow: hidden;
}
table td dl dt{
	width: 240px;
	float: left;
	font-size: 0.9em;
	clear: both;
}
table td dl dd{
	margin-left: 240px;
}

/*==================================================

footer
=================================================*/

.pagetop {
	width: 60px;
	height: 60px;
	right: 10px;
	bottom:20px;
	position: fixed;
	z-index: 11;
}

footer {
  margin: 50px 0 0;
  padding: 30px 10px;
  color: #fff;
  font-size: 16px;
  background: -moz-linear-gradient(left, #009fe5, #1f489d);
  background: -webkit-linear-gradient(left, #009fe5, #1f489d);
  background: linear-gradient(to right, #009fe5, #1f489d);
	position: relative;
	
}
footer .footerIn{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
}
footer .footerIn .footerlogo {
  width: 25%;
	margin: 0 auto;
  padding: 0;
  text-align: left;
}
footer .footerIn .footerlogo img {
  width: 100%;
  height: auto;
	max-width: 300px;
}
footer .footerIn .fnews a{
	color: #fff;
	border: 1px solid #fff;
	padding:10px 0px;
	margin: 20px auto 20px 0;
	display: block;
	text-align: center;
	letter-spacing: 0.05em;
	width: 80%;
	max-width: 250px;
}
footer .footerIn .footerlogo ul li a{
	color: #fff;
	padding: 0 5px;
	display: block;
  font-size: 14px;
	text-align: left;
}
footer .footerLink {
  position: relative;
  overflow: hidden;
	margin-left: 5%;
	width: 70%;
	display: flex;
	justify-content: flex-start;
	flex-wrap:wrap;
}
footer .footerLink ul {
  position: relative;
  margin: 0;
  padding: 0px 10px 5px;
	width: 33.3333%;
}
footer .footerLink ul ul{
	width: 100%;
  padding: 0px 10px 5px;
}
footer .footerLink ul li {
  position: relative;
  list-style: none;
  text-align: left;
  padding: 20px 0 0;
	font-size: 15px;
}
footer .footerLink ul ul li{
  padding: 0;
	font-size: 14px;
}
footer .footerLink ul li:last-child {
  margin: 0;
}
footer .footerLink ul li a,
footer .footerLink ul li span {
  color: #fff;
	text-align: left;
}
footer .copy {
  margin: 30px auto 0px;
  text-align: center;
  font-size: 11px;
	color: #fff;
}


@media print, screen and (min-width: 960px) {
/* メインメニューのオーバーカラー */

nav > ul > li > a:hover {
	color: #ccc;
}

/* サブメニュー表示設定 */

nav li:hover ul:not(.touchlink) {
  	visibility: visible;
	top: 100%;
	left: 50%;
	-webkit-transform: translate(-50%, 0); /* Safari用 */
	transform: translate(-50%, 0);
	
	opacity: 1;
}
nav > ul > li > ul li a::before{
position: absolute;
top: 0;
bottom: 0;
left: 0;
margin: auto;
content: "";
vertical-align: middle;
left: 3px;
width: 6px;
height: 6px;
border-top: 2px solid #29afed;
border-right: 2px solid #29afed;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}

nav > ul > li > ul li a:hover {
	color: #29afed;
}
}

@media print, screen and (min-width:1px) and (max-width: 960px) {
	/*==================================================
	
	header
	=================================================*/


#header-logo {
	width: 50%;
	max-width: 220px;
	left: 10px;
	top:15px;	
}
	
	/* header SP*/
	.header-spmenu {
		display: block;
	}
	
	.headerbg {
		background-color: rgba(255, 255, 255, 1);
	}
	.headerbg nav > ul > li > a {
		padding: 5%;
	}
	
	
	/*==================================================
	
	Navi
	=================================================*/
	
	
	nav {
		/* モバイルメニュー幅 */
		width: 240px;
		height: 100%;
		position: fixed;
		display: block;
		background-color: #4694ca;
		top: 0;
		right: -240px;
		-webkit-transform: translate(0, 0); /* Safari用 */
		transform: translate(0, 0);
		margin-top: 0;
		padding: 0;
		z-index: 1003!important;
	}
	
	nav > ul {
		width: 100%;
		height: 100%;
		position: relative;
		display: block;
		padding: 0;
		overflow: hidden;
	}
	nav > ul > li {
		width: 100%;
		display: block;
		border-bottom: 1px solid #0079da;
	}

	nav > ul > li > a {
		width: 100%;
		display: block;
		font-size: 1.3rem;
		line-height: 2.5em;
		text-align: left;
		color: #FFF;
		padding: 10px;
	margin: 0;
	}
	nav > ul > li > span {
		width: 100%;
		display: block;
		font-size: 1.3rem;
		line-height: 2.5em;
		text-align: left;
		color: #FFF;
		padding: 10px;
	margin: 0;
	}

nav > ul > li.nav_rec a {
	color: #fff;
	background: #e87942;
	border-radius: 0px;
}


	nav > ul > li > ul {
		width: 100%;
		position: relative;
		background-color: #efefef;
		visibility: visible;
		opacity: 1;
		transition: 0s;
		left: 0;
		-webkit-transform: translate(0, 0); /* Safari用 */
		transform: translate(0, 0);
		padding: 0;
		z-index: 2000 !important;
	}
	
	nav li:hover ul {
		top: 0;
		left: 0;
		-webkit-transform: translate(0, 0); 
		transform: translate(0, 0);
	}
	
	/* サブメニュー表示設定*/

	nav li:hover ul {
		visibility: visible;
		top: 100%;
		right: 0;
		opacity: 1;
	}
	nav li ul li a {
		visibility: visible;
		opacity: 1;
		transition: 0s;
	}
	nav li:hover ul li a {
		visibility: visible;
		opacity: 1;
	} 

	/* サブメニュー詳細設定 */

	nav > ul > li > ul li {
		width: 100%;
		float: none;
		border-top: 1px solid #666;
		border-bottom: 0;
		padding: 0;
	}
	nav > ul > li > ul li a {
		width: 100%;
		display: block;
		text-align: left;
		text-decoration: none;
		padding: 5% 5% 5% 20px;
		color: #4694ca;
	}
	nav > ul > li > ul li a:hover {
		color: #007cdb;
	}

	/*  img */

	nav > ul > li > ul li a img {
		display: none;
	}
	
	.close-button {
		width: 50%;
		cursor: pointer;
		font-size: 1.2rem;
		color: #FFF;
		text-align: center;
		border: 1px solid #FFF;
		margin: 20px auto;
		padding: 2px;
		
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.close-button:hover {
		color: #666;
		background-color: #FFF;
	}
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	
footer .footerIn .footerlogo {
  width: 100%;
	margin: 0 auto;
  padding: 0 20px;
}
footer .footerLink {
  position: relative;
  overflow: hidden;
	margin-left: 0;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: flex-start;
	flex-wrap:wrap;
}

}

@media only screen and (min-width:1px) and (max-width: 768px) {

	/*==================================================
	
	table
	==================================================*/
	
table{
	width: 96%;
	margin: 20px auto 30px;
}
table th,
table td{
	width: 100%;
	display: block;
	padding: 5px 10px;
	text-align: left;
	line-height: 1.6em;
	font-size: 1.4rem;
}
table td dl dt{
	font-size: 0.9em;
	width: 150px;
}
table td dl dd{
	margin-left: 150px;
}

	/*==================================================
	
	footer
	=================================================*/

footer .footerLink ul {
  padding: 0px 5px 5px;
	width: 50%;
}
footer .footerLink ul ul{
	width: 100%;
}		
footer .footerIn .footerlogo {
  width: 100%;
	margin: 0 auto;
  padding: 0 10px;
}
footer .footerLink {
  position: relative;
  overflow: hidden;
	margin-left: 0;
	width: 100%;
	padding: 10px;
	display: flex;
	justify-content: flex-start;
	flex-wrap:wrap;
}
}

@media only screen and (min-width:1px) and (max-width: 480px) {
	
	
	/*==================================================
	
	header
	==================================================*/

header {
	height: 70px;
}

#header-inner {
	height: 70px;
}
#header-logo {
	width: 70%;
	max-width: 200px;
	left: 5px;
	top: 15px;
	
}
	
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/

	
	/*==================================================
	
	table
	==================================================*/
	
table td dl dt{
	font-size: 0.9em;
	width: 100%;
	float: none;
}
table td dl dd{
	margin-left: 20px;
}
	
	/*==================================================
	
	footer
	==================================================*/
	.pagetop {
	width: 30px;
	height: 30px;
	right: 10px;
	bottom:50px;
	position: fixed;
	z-index: 11;
}
	
	
}


@media print{
	header,.navopen{
		position: absolute;
	}
	nav{
		display: none;
	}
	
}