@charset "UTF-8";

@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:100;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:200;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:300;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Medium");
  font-weight:400;
}
@font-face{
  font-family:"Yu Gothic";
  src:local("Yu Gothic Bold");
  font-weight:bold;
}

/* reset
-----------------------------------------------*/
html{
	margin-top: 64px;
}
@media screen and (max-width: 1300px) {
	html{
		margin-top: 100px;
	}
}
@media screen and (max-width: 750px) {
	html{
		margin-top: 60px;
	}
}
body{
	border-top: none;
}
header,footer{
  font-family:"Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
header ul,header li,header p,header h1,header h2,header h3,footer ul,footer li,footer p,footer h3{
	margin: 0;
	padding: 0;
}
header li,footer li{
	list-style-type:none;
}
header a,footer a{
	color: #333;
	cursor:pointer;
	text-decoration:none !important;
	-webkit-tap-highlight-color:transparent;
}
header a:visited,footer a:visited,
header a:link,footer a:link{
	color: #333;
}
header img,footer img{
	vertical-align:top;
	max-width:100%;
	height:auto;
	-webkit-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	backface-visibility:hidden;
}
header a img,footer a img{
	vertical-align:top;
	-webkit-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	backface-visibility:hidden;
}
header input, 
header textarea, 
header select,
header button,
header label{
  outline:none;
	-webkit-tap-highlight-color:transparent;
}
header :focus {
	outline: 0;
  border-color: orange;
}

/* header
-----------------------------------------------*/
header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 64px;
	box-sizing: border-box;
	padding: 0 40px;
	background: #003459;
	text-align: left;
}
header::before{
	content: "";
	display: block;
	width: 100%;
	height: 100vh;
	background: rgba(0,26,44,0.6);
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	transform: translate(-100%,0%);
	transition: transform 0s .4s cubic-bezier(.210, .60, .350, 1),opacity .2s .2s  cubic-bezier(.210, .60, .350, 1);
}
header.active::before{
	transition: transform 0s cubic-bezier(.210, .60, .350, 1),opacity .2s  cubic-bezier(.210, .60, .350, 1);
	opacity: 1;
	transform: translate(0%,0%);
}
header.searchon::before{
	display: none;
}
header .hInner{
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}
header .hLogo{
	position: absolute;
	top: 24px;
	left: 0;
	font-size: 10px;
	line-height: 1.2;
	font-weight: normal;
}
header .hLogo a{
	height: 14px;
	display: block;
	color: #fff;
	transition: opacity .2s  cubic-bezier(.210, .60, .350, 1);
}
header .hLogo a:hover{
	opacity: 0.6;
}
header .hLogo a::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 110px;
	height: 14px;
	margin-right: 8px;
	margin-bottom: 2px;
	background: url("/common/images/corporate/logo-header.svg") no-repeat center;
	background-size: 100%;
}
header #hMenuBtn{
	display: none;
}
header #hMenuSp{
	display: none;
}
header #search{
	position: absolute;
	top: 24px;
	right: 0;
	z-index: 100;
	width: 14px;
	height: 14px;
}
header #search span{
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%,-50%);
	width: 100%;
	height: 100%;
	font-size: 0;
	background: url("/common/images/corporate/icn-search_01.png") no-repeat center;
	background-size: 100%;
	cursor: pointer;
}
header #search span::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url("/common/images/corporate/icn-search_01_on.png") no-repeat center;
	background-size: 100%;
	opacity: 0;
	transition: opacity .2s  cubic-bezier(.210, .60, .350, 1);
}
header #search:hover span::after,
header #search.active span::after{
	opacity: 1;
}
header.touchDevice #search:hover span::after{
	opacity: 0;
}
header.touchDevice #search.active span::after{
	opacity: 1;
}
header #search #searchBg{
	display: block;
	width: 100%;
	height: 100vh;
	background: rgba(0,26,44,0.6);
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translate(-100%,0%);
	transition: transform 0s .4s cubic-bezier(.210, .60, .350, 1),opacity .2s .2s  cubic-bezier(.210, .60, .350, 1);
}
header #search.active #searchBg{
	transition: transform 0s cubic-bezier(.210, .60, .350, 1),opacity .2s  cubic-bezier(.210, .60, .350, 1);
	opacity: 1;
	transform: translate(0%,0%);
}
header #search form{
	display: block;
}
header #search form input[type="text"]{
	font-size: 16px;
	letter-spacing: 0.01em;
	padding: 0 0 0 30px;
	background: url("/common/images/corporate/icn-search_02.png") no-repeat left center;
	background-size: 14px 14px;
	border: none;
}
header #search form input[type="submit"]{
	display: none;
}
header #search #searchClose{
	position: absolute;
	top: 50%;
	right: -2px;
	width: 30px;
	height: 30px;
	transform: translate(0%,-50%);
	cursor: pointer;
}
header #search #searchClose::before,
header #search #searchClose::after{
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: #003459;
	position: absolute;
	top: 50%;
	left: 0;
	transition: background .2s cubic-bezier(.210, .60, .350, 1);
}
header #search #searchClose::before{
	transform: translate(0%,-50%) rotate(45deg);
}
header #search #searchClose::after{
	transform: translate(0%,-50%) rotate(-45deg);
}
header #search #searchClose:hover::before,
header #search #searchClose:hover::after{
	background: #00afdd;
}
header.touchDevice #search #searchClose:hover::before,
header.touchDevice #search #searchClose:hover::after{
	background: #003459;
}
header #gNavi{
	position: absolute;
	top: 0;
	right: 127px;
	height: 100%;
}
header #gNavi > ul{
	height: 100%;
}
header #gNavi ul::after{
	content: "";
	display: block;
	clear: both;
}
header #gNavi > ul > li{
	float: left;
	height: 100%;
	padding-left: 5px;
	padding-right: 15px;
	cursor: pointer;
}
header #gNavi > ul > li:first-child{
	padding-left: 0;
}
header #gNavi > ul > li:last-child{
	padding-right: 0;
}
header #gNavi > ul > li > a,
header #gNavi > ul > li > span{
	display: block;
	height: 100%;
	font-size: 15px;
	line-height: 64px;
	font-weight: bold;
	color: #fff;
	position: relative;
	cursor: pointer;
	transition: color .2s cubic-bezier(.210, .60, .350, 1);
}
header #gNavi > ul > li > a:hover,
header #gNavi > ul > li > span:hover{
	color: #00afdd;
}
header.touchDevice #gNavi > ul > li > a:hover,
header.touchDevice #gNavi > ul > li > span:hover{
	color: #fff;
}
header #gNavi > ul > li.active > a,
header #gNavi > ul > li.active > span,
header.touchDevice #gNavi > ul > li.active > a,
header.touchDevice #gNavi > ul > li.active > span{
	color: #00afdd;
}
header #gNavi > ul > li > a::before,
header #gNavi > ul > li > span::before{
	content: "";
	display: block;
	width: 0;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #00afdd;
	transition: width .2s cubic-bezier(.210, .60, .350, 1);
}
header #gNavi > ul > li > a:hover::before,
header #gNavi > ul > li > span:hover::before{
	width: 100%;
}
header.touchDevice #gNavi > ul > li > a:hover::before,
header.touchDevice #gNavi > ul > li > span:hover::before{
	width: 0;
}
header #gNavi > ul > li.active > a::before,
header #gNavi > ul > li.active > span::before,
header.touchDevice #gNavi > ul > li.active > a::before,
header.touchDevice #gNavi > ul > li.active > span::before{
	width: 100%;
}
header #gNavi > ul > li.inMegaMenu > a::after,
header #gNavi > ul > li.inMegaMenu > span::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 5px;
	height: 5px;
	box-sizing: border-box;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
	margin-top: -4px;
	margin-left: 8px;
	transform: rotate(45deg);
	transition: border-color .2s cubic-bezier(.210, .60, .350, 1);
}
header #gNavi > ul > li.inMegaMenu > a:hover::after,
header #gNavi > ul > li.inMegaMenu > span:hover::after{
	border-right-color: #00afdd;
	border-bottom-color: #00afdd;
}
header.touchDevice #gNavi > ul > li.inMegaMenu > a:hover::after,
header.touchDevice #gNavi > ul > li.inMegaMenu > span:hover::after{
	border-right-color: #fff;
	border-bottom-color: #fff;
}
header #gNavi > ul > li.inMegaMenu.active > a::after,
header #gNavi > ul > li.inMegaMenu.active > span::after,
header.touchDevice #gNavi > ul > li.inMegaMenu.active > a::after,
header.touchDevice #gNavi > ul > li.inMegaMenu.active > span::after{
	border-right-color: #00afdd;
	border-bottom-color: #00afdd;
}
header .megaMenu{
	position: fixed;
	top: 64px;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 33px 40px 50px;
	background: #fff;
	display: none;
	letter-spacing: 0.01em;
  cursor: auto;
}
header #search .megaMenu{
	padding: 33px 40px;
}
header .megaMenu .inner{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}
header #search .megaMenu .inner{
	position: relative;
}
header .megaMenu h2{
	font-size: 16px;
	line-height: 1.2;
	padding-bottom: 30px;
	border-bottom: solid 1px #f0f0f0;
	margin-bottom: 24px;
}
header .megaMenu h2 a{
	display: inline-block;
	padding-right: 14px;
	position: relative;
	transition: color .2s cubic-bezier(.210, .60, .350, 1);
}
header .megaMenu h2 a:hover{
	color: #00afdd;
}
header .megaMenu h2 a::after{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	box-sizing: border-box;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%,-50%) rotate(45deg);
	transition: border-color .2s cubic-bezier(.210, .60, .350, 1);
}
header .megaMenu h2 a:hover::after{
	border-color: #00afdd;
}
header .megaMenu .subNavi + .subNavi{
	margin-top: 20px;
	border-top: solid 1px #f0f0f0;
	padding-top: 24px;
}
header .megaMenu .subNavi::after{
	content: "";
	display: block;
	clear: both;
}
header .megaMenu .subNavi li{
	font-size: 14px;
	line-height: 1.5;
	margin-top: 16px;
	float: left;
}
header .megaMenu .subNavi > li{
	width: 22.75%;
	margin-left: 3%;
}
header .megaMenu .subNavi > li:nth-child(-n+4){
	margin-top: 0;
}
header .megaMenu .subNavi > li:first-child,
header .megaMenu .subNavi > li:nth-child(4n+1){
	margin-left: 0;
}
header .megaMenu .subNavi.column2 > li{
	width: 48.5%;
}
header .megaMenu .subNavi.column2 > li p{
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 16px;
}
header .megaMenu .subNavi.column2 > li ul::after{
	content: "";
	display: block;
	clear: both;
}
header .megaMenu .subNavi.column2 > li ul li{
	width: 46.9%;
	margin-left: 6.18%;
}
header .megaMenu .subNavi.column2 > li ul li:nth-child(-n+2){
	margin-top: 0;
}
header .megaMenu .subNavi.column2 > li ul li:nth-child(2n+1){
	margin-left: 0;
	clear: left;
}
header .megaMenu .subNavi.column2 > li ul.column0 li,
header .megaMenu .subNavi.column4 > li ul.column0 li{
	float: none;
	width: auto;
	margin-left: 0;
	margin-top: 16px;
}
header .megaMenu .subNavi.column2 > li ul.column0 li:first-child,
header .megaMenu .subNavi.column4 > li ul.column0:first-child li:first-child{
	margin-top: 0;
}
header .megaMenu .subNavi > li.clear{
  clear: both;
}
header .megaMenu .subNavi li a{
	transition: color .2s cubic-bezier(.210, .60, .350, 1);
}
header .megaMenu .subNavi li a:hover{
	color: #00afdd;
}
header .megaMenu .subNavi > li a .thumb{
	margin-bottom: 10px;
	position: relative;
}
header .megaMenu .subNavi > li a .thumb::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #333;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
header .megaMenu .subNavi > li a p {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.3;
}
header .megaMenu .subNavi > li a:hover .thumb::after{
	opacity: 0.2;
}
header .megaMenu .bnrNavi{
	margin-top: 33px;
}
header .megaMenu .bnrNavi::after{
	content: "";
	display: block;
	clear: both;
}
header .megaMenu .bnrNavi li{
	float: left;
	width: 31.33%;
	margin-left: 3%;
}
header .megaMenu .bnrNavi li:first-child{
	margin-left: 0;
}
header .megaMenu .bnrNavi li a{
	display: table;
	width: 100%;
	min-height: 96px;
	position: relative;
	background: #003459;
}
header .megaMenu .bnrNavi li a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
header .megaMenu .bnrNavi li a:hover::after{
	opacity: 0.2;
}
header .megaMenu .bnrNavi li a .thumb{
	display: table-cell;
	vertical-align: middle;
	width: 45.47%;
	position: relative;
	overflow: hidden;
}
header .megaMenu .bnrNavi li a .thumb img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: auto;
	max-width: none;
	height: 100%;
}
header .megaMenu .bnrNavi li a .txt{
	display: table-cell;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1.71;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
header .megaMenu .contactWrap{
	display: table;
	width: 100%;
}
header .megaMenu .telWrap{
	display: table-cell;
	vertical-align: top;
	width: 412px;
	color: #003459;
}
header .megaMenu .telWrap h3{
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 5px;
}
header .megaMenu .telWrap p{
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
}
header .megaMenu .telWrap .telBox{
	font-size: 36px;
	line-height: 1.2;
	font-weight: bold;
	letter-spacing: 0.1em;
}
header .megaMenu .telWrap .telBox .tel-link{
	display: inline-block;
	color: #003459;
}
header .megaMenu .telWrap .telBox .tel-link::before{
	content: "";
	display: inline-block;
	vertical-align: text-top;
	width: 35px;
	height: 35px;
	background: url("/common/images/corporate/icn-tel.png") no-repeat center;
	background-size: 100%;
	margin-right: 12px;
}
header .megaMenu .linkWrap{
	display: table-cell;
	vertical-align: top;
}
header .megaMenu .linkWrap .contactBtn{
	display: table;
	width: 100%;
	height: 96px;
	margin-bottom: 22px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
}
header .megaMenu .linkWrap .contactBtn a{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	background: #e3e9f1;
	color: #003459;
	border-radius: 4px;
	padding: 10px;
	position: relative;
}
header .megaMenu .linkWrap .contactBtn a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	border-radius: 4px;
	opacity: 0;
	transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
header .megaMenu .linkWrap .contactBtn a:hover::after{
	opacity: 0.2;
}
header .megaMenu .linkWrap .contactBtn a span{
	font-size: 12px;
	display: inline-block;
	margin: 0 8px;
}
header .megaMenu .linkWrap .contactBtn a strong{
	display: inline-block;
	margin: 0 8px;
	padding-right: 14px;
	position: relative;
}
header .megaMenu .linkWrap .contactBtn a strong::after{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	box-sizing: border-box;
	border-top: solid 2px #003459;
	border-right: solid 2px #003459;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%,-50%) rotate(45deg);
}
header .megaMenu .linkWrap .msContact h3 {
	padding-bottom: 4px;
	margin-bottom: 10px;
	border-bottom: solid 1px #f0f0f0;
	font-size: 14px;
	font-weight: 500;
}
header .megaMenu .linkWrap .msContact ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
}
header .megaMenu .linkWrap .msContact ul li a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
header .megaMenu .linkWrap .msContact ul li a span {
	position: relative;
	padding-right: 14px;
	font-size: 14px;
}
header .megaMenu .linkWrap .msContact ul li a span::after {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	box-sizing: border-box;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%,-50%) rotate(45deg);
	transition: border-color .2s cubic-bezier(.210, .60, .350, 1);
}
/* header .megaMenu .linkWrap ul::after{
	content: "";
	display: block;
	clear: both;
}
header .megaMenu .linkWrap ul li{
	float: left;
	width: 47.71%;
	font-size: 14px;
	line-height: 1.5;
	margin-left: 4.56%;
	margin-top: 16px;
}
header .megaMenu .linkWrap ul li:nth-child(-n+2){
	margin-top: 0;
}
header .megaMenu .linkWrap ul li:nth-child(2n+1){
	margin-left: 0;
	clear: left;
} */
header .megaMenu .linkWrap ul li a{
	transition: color .2s cubic-bezier(.210, .60, .350, 1);
}
header .megaMenu .linkWrap ul li a:hover{
	color: #00afdd;
}
header .megaMenu .linkWrap .msContact ul li a:hover span::after {
	border-color: #00afdd;
}
header #globalLink{
	position: absolute;
	top: 24px;
	right: 40px;
	font-size: 12px;
	line-height: 1.2;
	font-weight: bold;
}
header #globalLink a{
	display: block;
	height: 100%;
	color: #fff;
	transition: color .2s cubic-bezier(.210, .60, .350, 1);
}
header #globalLink a:hover{
	color: #00afdd;
}
@media screen and (max-width: 1300px) {
	header{
		height: 100px;
	}
	header #search span{
		background-position: center top;
	}
	header #search span::after{
		background-position: center top;
	}
	header #gNavi{
		width: 100%;
		height: 40px;
		top: 60px;
		right: auto;
		left: 0;
		text-align: center;
	}
	header #gNavi > ul{
		display: inline-block;
		text-align: left;
	}
	header #gNavi > ul > li > a,
	header #gNavi > ul > li > span{
		line-height: 1.2;
	}
	header .megaMenu .bnrNavi li a .txt{
		font-size: 13px;
	}
	header .megaMenu{
		top: 100px;
	}
}
@media screen and (max-width: 1180px) {
	header .megaMenu .contactWrap {
		display: flex;
		flex-direction: column;
	}
	header .megaMenu .telWrap {
		display: grid;
		width: 100%;
	}
	header .megaMenu .telWrap h3 {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	header .megaMenu .telWrap p {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	header .megaMenu .telWrap .telBox {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
	}
}
@media screen and (max-width: 750px) {
	header{
		height: 60px;
		padding: 0 16px;
	}
	header::before{
		display: none !important;
	}
	header .hLogo{
		width: 296px;
		font-size: 0;
		top: 50%;
		left: 40px;
		transform: translate(0%,-50%);
	}
	header .hLogo a{
		height: 12px;
	}
	header .hLogo a::before{
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		background: url("/common/images/corporate/logo-header_sp.svg") no-repeat center;
		background-size: 100%;
	}
	header #hMenuBtn{
		display: block;
		width: 18px;
		height: 18px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0%,-50%);
		cursor: pointer;
	}
	header #hMenuBtn span{
		content: "";
		display: block;
		font-size: 0;
		width: 18px;
		height: 2px;
		background: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	header #hMenuBtn::before,
	header #hMenuBtn::after{
		content: "";
		display: block;
		width: 18px;
		height: 2px;
		background: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transition: width .2s cubic-bezier(.210, .60, .350, 1), transform .2s cubic-bezier(.210, .60, .350, 1);
	}
	header #hMenuBtn::before{
		transform: translate(-50%,-7px);
	}
	header #hMenuBtn::after{
		transform: translate(-50%,5px);
	}
	header #hMenuBtn.active::before,
	header #hMenuBtn.active::after{
		width: 26px;
	}
	header #hMenuBtn.active span{
		display: none;
	}
	header #hMenuBtn.active::before{
		transform: translate(-50%,-50%) rotate(45deg);
	}
	header #hMenuBtn.active::after{
		transform: translate(-50%,-50%) rotate(-45deg);
	}
	header #hMenuPc{
		display: none;
	}
	header #hMenuSp{
		background: rgba(0,26,44,0.6);
		height: 100vh;
		width: 100%;
		padding-bottom: 60px;
		box-sizing: border-box;
		position: fixed;
		top: 60px;
		left: 0;
		display: block;
		overflow-y: auto;
		transform: translate(-100%,0%);
		transition: transform .5s cubic-bezier(.210, .60, .350, 1);
	}
	header #hMenuBtn.active + #hMenuSp{
		transform: translate(0%,0%);
	}
	header #hMenuInner{
		background: #fff;
		box-sizing: border-box;
		padding: 20px 16px 28px;
		letter-spacing: 0.01em;
	}
	header #hMenuInner::after{
		content: "";
		display: block;
		clear: both;
	}
	header #searchSp{
		width: 100%;
	}
	header #searchSp span{
		display: none;
	}
	header #searchSp form{
		display: block;
		position: relative;
		height: 40px;
	}
	header #searchSp form input[type="text"]{
		background: #e3e9f1;
		border-radius: 20px;
		font-size: 13px;
		padding: 0 40px 0 15px;
		width: 100%;
		height: 100%;
		border: none;
		box-sizing: border-box;
		letter-spacing: 0.01em;
	}
	header #searchSp form input[type="submit"]{
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 0;
		right: 0;
		font-size: 0;
		cursor: pointer;
		border: none;
		margin: 0;
		padding: 0;
		background: url("/common/images/corporate/icn-search_02.png") no-repeat 8px center;
		background-size: 14px 15px;
	}
	header #gNaviSp{
		margin-top: 20px;
	}
	header #gNaviSp > ul{
		border-bottom: solid 2px #f0f0f0;
	}
	header #gNaviSp > ul > li{
		border-top: solid 2px #f0f0f0;
	}
	header #gNaviSp > ul > li > span,
	header #gNaviSp > ul > li > a{
		display: block;
		color: #333;
		height: 54px;
		line-height: 54px;
		font-size: 16px;
		font-weight: bold;
		position: relative;
		cursor: pointer;
		transition: color .2s cubic-bezier(.210, .60, .350, 1);
	}
	header #gNaviSp > ul > li > span:hover,
	header #gNaviSp > ul > li > a:hover{
		color: #00afdd;
	}
	header.touchDevice #gNaviSp > ul > li > span:hover,
	header.touchDevice #gNaviSp > ul > li > a:hover{
		color: #333;
	}
	header #gNaviSp > ul > li > span::after{
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		width: 6px;
		height: 6px;
		margin: -2px 2px 0 0;
		border-right: solid 1px #333;
    border-bottom: solid 1px #333;
		transform: translate(0%,-50%) rotate(45deg);
		transition: border-color .2s cubic-bezier(.210, .60, .350, 1), transform .2s cubic-bezier(.210, .60, .350, 1), margin-top .2s cubic-bezier(.210, .60, .350, 1);
	}
	header #gNaviSp > ul > li > span:hover::after{
		border-right-color: #00afdd;
		border-bottom-color: #00afdd;
	}
	header.touchDevice #gNaviSp > ul > li > span:hover::after{
		border-right-color: #333;
		border-bottom-color: #333;
	}
	header #gNaviSp > ul > li.active > span::after{
		margin-top: 0;
		transform: translate(0%,-50%) rotate(-135deg);
	}
	header .subMenu{
		display: none;
	}
	header .subMenu .inner{
		padding: 18px 18px 20px;
		border-top: solid 2px #f0f0f0;
	}
	header .subMenu .subNavi li{
		font-size: 13px;
		margin-top: 24px;
	}
	header .subMenu .subNavi li:first-child{
		margin-top: 0;
	}
	header .subMenu .subNavi li a{
		display: block;
		transition: color .2s cubic-bezier(.210, .60, .350, 1);
	}
	header .subMenu .subNavi li a:hover{
		color: #00afdd;
	}
	header.touchDevice .subMenu .subNavi li a:hover{
		color: #333;
	}
	header .subMenu .bnrNavi li{
		width: 100%;
		max-width: 375px;
		margin: 24px auto 0;
	}
	header .subMenu .bnrNavi li a{
		display: table;
		width: 100%;
		min-height: 96px;
		position: relative;
		background: #003459;
	}
	header .subMenu .bnrNavi li a::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background: #fff;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
	}
	header .subMenu .bnrNavi li a:hover::after{
		opacity: 0.2;
	}
	header.touchDevice .subMenu .bnrNavi li a:hover::after{
		opacity: 0;
	}
	header .subMenu .bnrNavi li a .thumb{
		display: table-cell;
		vertical-align: middle;
		width: 50%;
		position: relative;
		overflow: hidden;
	}
	header .subMenu .bnrNavi li a .thumb img{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
	}
	header .subMenu .bnrNavi li a .thumb img.h100{
		width: auto;
		max-width: none;
		height: 100%;
	}
	header .subMenu .bnrNavi li a .txt{
		display: table-cell;
		vertical-align: middle;
		font-size: 12px;
		line-height: 1.71;
		font-weight: bold;
		color: #fff;
		text-align: center;
	}
	header #contactSp{
		margin-top: 18px;
		text-align: center;
	}
	header #contactSp h3{
		font-size: 13px;
		line-height: 1.5;
	}
	header #contactSp p{
		font-size: 12px;
		margin-top: 8px;
	}
	header #contactSp .telBox{
		margin-top: 8px;
		height: 49px;
		font-size: 24px;
		line-height: 49px;
		font-weight: bold;
		letter-spacing: 0.1em;
	}
	header #contactSp .tel-link{
		display: block;
		background: #e3e9f1;
		border-radius: 2px;
		color: #003459;
	}
	header #contactSp .tel-link::before{
		content: "";
    display: inline-block;
    vertical-align: text-top;
    width: 27px;
    height: 27px;
    background: url(/common/images/corporate/icn-tel.png) no-repeat center;
    background-size: 100%;
    margin-right: 12px;
	}
	header #contactSp .contactBtn{
		margin-top: 10px;
		font-size: 16px;
		line-height: 1.5;
	}
	header #contactSp .contactBtn a{
		display: block;
		background: #e3e9f1;
		color: #003459;
		padding: 15px 10px;
		border-radius: 2px;
		position: relative;
	}
	header #contactSp .contactBtn a span{
		display: block;
		font-size: 12px;
		font-weight: bold;
	}
	header #contactSp .contactBtn a::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #000;
		border-radius: 2px;
		opacity: 0;
		transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
	}
	header #contactSp .contactBtn a:hover::after{
		opacity: 0.2;
	}
	header.touchDevice #contactSp .contactBtn a:hover::after{
		opacity: 0;
	}
	header #contactSp .msContact {
		margin-top: 16px;
	}
	header #contactSp .msContact h3 {
		margin-bottom: 8px;
	}
	header #contactSp .msContact ul {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 24px;
	}
	header #contactSp .msContact ul li {
		width: 45%;
	}
	header #contactSp .msContact ul li a {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	header #contactSp .msContact ul li a img {
		display: block;
		height: 86px;
	}
	header #contactSp .msContact ul li a span {
		position: relative;
		width: 100%;
		font-size: 11px;
		text-align: left;
	}
	header #contactSp .msContact ul li a span:after {
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		box-sizing: border-box;
		border-top: solid 1px #333;
		border-right: solid 1px #333;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0%,-50%) rotate(45deg);
		transition: border-color .2s cubic-bezier(.210, .60, .350, 1);
	}
	/* header #contactSp ul{
		margin-right: -16px;
		margin-top: 16px;
		text-align: left;
	} */
	/* header #contactSp ul::after{
		content: "";
		display: block;
		clear: both;
	}
	header #contactSp ul li{
		float: left;
		width: 50%;
		margin-top: 12px;
		font-size: 10px;
		line-height: 1.5;
		font-weight: bold;
	}
	header #contactSp ul li:nth-child(-n+2){
		margin-top: 0;
	}
	header #contactSp ul li:nth-child(2n+1){
		clear: left;
	} */
	header #contactSp ul li a{
		/* display: block;
		margin-right: 16px; */
		transition: color .2s cubic-bezier(.210, .60, .350, 1);
	}
	header #contactSp ul li a:hover{
		color: #00afdd;
	}
	header.touchDevice #contactSp ul li a:hover{
		color: #333;
	}
	header #globalLinkSp{
		text-align: right;
		font-size: 10px;
		font-weight: bold;
		margin-top: 16px;
	}
	header #globalLinkSp a{
		color: #003459;
		transition: color .2s cubic-bezier(.210, .60, .350, 1);
	}
	header #globalLinkSp a:hover{
		color: #00afdd;
	}
	header.touchDevice #globalLinkSp a:hover{
		color: #003459;
	}
}
@media screen and (max-width: 374px) {
	header .hLogo{
		width: 250px;
	}
	header .hLogo a{
		height: auto;
	}
	header .hLogo a::before{
		height: 0;
		padding-top: 4.05405%;
	}
}


/* footer
-----------------------------------------------*/
footer{
	background-color: #fff;
	letter-spacing: 0.01em;
	padding: 75px 40px 40px;
	text-align: left;
	position: relative;
	border-top: solid 1px #ccc;
	margin-top: 35px;
}
footer a{
	color: #333 !important;
	transition: color .2s  cubic-bezier(.210, .60, .350, 1);
}
footer.touchDevice a:hover{
	color: #333 !important;
}
footer a:hover{
	color: #00afdd !important;
}
footer .fInner{
	max-width: 1200px;
	margin: 0 auto;
}
footer #fNavi {
	font-size: 0;
	margin: 0 auto;
	padding-bottom: 30px;
}
footer #fNavi .fInner::after{
	content: "";
	display: block;
	clear: both;
}
footer #fNavi .col {
	float: left;
	width: 18.33%;
	margin-left: 2.08%;
}
footer #fNavi .col:nth-child(1) {
	margin-left: 0;
}
footer #fNavi .fBox + .fBox,
footer #fNavi .fBox + .fSns{
	margin-top: 50px;
}
footer #fNavi h3 {
	font-size: 14px;
	margin-bottom: 20px;
}
footer #fNavi h3 a + span{
	display: none;
}
footer #fNavi ul{
	font-size: 12px;
	line-height: 1.5;
}
footer #fNavi ul ul {
	margin-left: 1em;
	padding-bottom: 15px;
}
footer #fNavi .col:nth-child(4) ul ul{
  padding-bottom: 0;
}
footer #fNavi ul li:last-child ul{
	padding-bottom: 0;
}
footer #fNavi ul li {
	margin-top: 0.5em;
	font-size: 12px;
	line-height: 1.5;
}
footer #fNavi ul li:first-child{
	margin-top: 0;
}
footer #fNavi ul li li:first-child{
	margin-top: 0.5em;
}
footer #fNavi .fSns {
	font-size:0;
}
footer #fNavi .fSns ul{
	font-size: 0;
}
footer #fNavi .fSns li{
	display: inline-block;
	vertical-align: middle;
	margin-left: 15.45%;
	margin-top: 0;
	width: 10.9%;
}
footer #fNavi .fSns li:first-child{
	margin-left: 0;
}
footer #fNavi .fSns li:nth-child(3),
footer #fNavi .fSns li:nth-child(4){
	width: 11.36%;
}
footer #fNavi .fSns li a{
	display: block;
	position: relative;
	transition: opacity .2s  cubic-bezier(.210, .60, .350, 1);
}
footer #fNavi .fSns li a::before{
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-top: 100%;
}
footer #fNavi .fSns li a:hover{
	opacity: 0.6;
}
footer #fNavi .fSns li a img{
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%,-50%);
}
footer #fBtm{
	max-width: 1200px;
	border-top: solid 1px #e3e9f1;
	padding-top: 30px;
	margin: 0 auto;
}
footer #fBtm .fInner{
	overflow: hidden;
}
footer #fBtm ul {
	float:left;
	text-align: left;
	font-size: 0;
	width: auto;
}
footer #fBtm ul li {
	display: inline-block;
	position:relative;
	padding: 0 8px;
	font-size: 12px;
}
footer #fBtm ul li:first-child{
	padding-left: 0;
}
footer #fBtm ul li:after {
	content: "";
	background-color: #333;
	position: absolute;
	width: 1px;
	height: 12px;
	top: 50%;
	right: 0;
	margin-top: -6px;
}
footer #fBtm ul li:last-child:after {
	display: none;
}
footer #fBtm ul li:last-child {
	margin-right:0;
}
footer #fBtm  .fInner p {
	float:right;
	text-align:right;
	line-height: 1.2;
	font-size: 12px;
}
#pageTop{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 10;
	width: 56px;
	height: 56px;
	background: #e3e9f1;
	border-top-left-radius: 10px;
	cursor: pointer;
}
#pageTop::before{
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	box-sizing: border-box;
	border-top: solid 3px #003459;
	border-left: solid 3px #003459;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 4px;
	transform: translate(-50%,-50%) rotate(45deg);
}
#pageTop::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #333;
	border-top-left-radius: 10px;
	opacity: 0;
	transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
#pageTop:hover::after{
	opacity: 0.2;
}
footer.touchDevice #pageTop:hover::after{
	opacity: 0;
}
@media screen and (max-width: 980px) {
	footer #fNavi .col{
		width: 31.666%;
		margin-left: 2.5%;
	}
	footer #fNavi .col:last-child{
		margin-top: 36px;
	}
	footer #fNavi .col:nth-child(4){
    clear: both;
    margin-left: 0;
		margin-top: 36px;
  }
	footer #fBtm ul{
		float: none;
	}
	footer #fBtm .fInner p{
		float: none;
		margin-top: 16px;
		text-align: left;
	}
}
@media screen and (min-width: 751px) {
	footer #fNavi .fBox > ul{
		display: block !important;
	}
}
@media screen and (max-width: 750px) {
	footer{
		padding: 40px 16px 30px;
	}
	footer #fNavi{
		padding-bottom: 28px;
	}
	footer #fNavi .col{
		float: none;
		width: 100%;
		margin: 0;
	}
	footer #fNavi .col:last-child,
	footer #fNavi .col:nth-child(4){
		margin-top: 0;
	}
	footer #fNavi .fBox,
	footer #fNavi .fSns{
		border-top: solid 1px #e3e9f1;
		margin-top: 0 !important;
	}
	footer #fNavi .fSns{
		padding-top: 14px;
		text-align: center;
	}
	footer #fNavi h3{
		font-size: 13px;
	}
	footer #fNavi .fBox h3{
		line-height: 49px;
		height: 49px;
		margin-bottom: 0;
	}
	footer #fNavi .fSns h3{
		margin-bottom: 14px;
	}
	footer #fNavi h3 a{
		display: none;
	}
	footer #fNavi h3 span{
		display: block !important;
		height: 100%;
		transition: color .2s  cubic-bezier(.210, .60, .350, 1);
		font-weight: bold;
	}
	footer #fNavi h3 span:hover{
		color: #00afdd;
	}
	footer.touchDevice #fNavi h3 span:hover{
		color: #333;
	}
	footer #fNavi h3.sp a,
	footer #fNavi h3.sp span{
		position: relative;
		cursor: pointer;
	}
	footer #fNavi h3.sp a::after,
	footer #fNavi h3.sp span::after{
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		width: 6px;
		height: 6px;
		margin: -2px 2px 0 0;
		border-right: solid 1px #003459;
    border-bottom: solid 1px #003459;
		transform: translate(0%,-50%) rotate(45deg);
		transition: border-color .2s cubic-bezier(.210, .60, .350, 1), transform .2s cubic-bezier(.210, .60, .350, 1), margin-top .2s cubic-bezier(.210, .60, .350, 1);
	}
	footer #fNavi h3.active > a::after,
	footer #fNavi h3.active > span::after{
		margin-top: 0;
		transform: translate(0%,-50%) rotate(-135deg);
	}
	footer #fNavi h3 a:hover::after,
	footer #fNavi h3 span:hover::after{
		border-right-color: #00afdd;
		border-bottom-color: #00afdd;
	}
	footer.touchDevice #fNavi h3.sp a:hover::after,
	footer.touchDevice #fNavi h3.sp span:hover::after{
		border-right-color: #003459;
		border-bottom-color: #003459;
	}
	footer #fNavi .fBox > ul{
		border-top: solid 1px #e3e9f1;
		padding: 14px 0;
		display: none;
	}
	footer #fNavi ul li{
		margin-top: 1em;
	}
	footer #fNavi ul li li:first-child{
		margin-top: 1em;
	}
	footer #fNavi .fSns ul{
		text-align: center;
	}
	footer #fNavi .fSns li{
		width: 19px !important;
		height: 19px;
		margin: 0 13.5px !important;
	}
	footer #fBtm{
		padding-top: 16px;
		text-align: center;
	}
	footer #fBtm ul{
		text-align: center;
	}
	footer #fBtm .fInner p{
		text-align: center;
	}
	#pageTop{
		position: relative;
		bottom: auto;
		right: auto;
		width: 169px;
		height: 24px;
		border-top-left-radius: 2px;
		box-shadow: none;
		margin: 26px auto 0;
	}
	#pageTop::before{
		width: 9px;
		height: 9px;
		border-top: solid 2px #003459;
		border-left: solid 2px #003459;
		margin-top: 2px;
	}
	#pageTop::after{
		border-top-left-radius: 2px;
	}
}
@media screen and (max-width: 565px) {
	footer #fBtm ul li {
		margin-top: 1em;
	}
	footer #fBtm ul li:nth-child(3){
		padding-right: 0;
	}
	footer #fBtm ul li:nth-child(3)::after{
		display: none;
	}
	/* footer #fBtm ul li:last-child{
		display: block;
		margin: 14px auto 0;
		padding: 0;
	} */
}


/* print
-----------------------------------------------*/
@media print {
body {
	width: 1500px;
	zoom: 0.7;
}
header{
	position: absolute;
}
}