@charset "UTF-8";
/* Scss Document */

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.75px;
  line-height: 1.5;
  box-sizing: border-box;
  color: #111;
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
}
  body .wrap {
    height: auto;
    position: relative;
}
 


/*--------------------------------------------------------
　header
--------------------------------------------------------*/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 16;
    padding: 30px 0 0 0;
}
header .inner {
/*	display: flex;*/
    justify-content: center;
    padding: 0 0 0 0;
    width: 100%;
}
#gloval-nav {
	width: 1000px;
	margin: 0px 0 0 30px;
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}
#gloval-nav ul.header_nav-txt {
	display: block;
	background: #0081D4;
	padding: 0px;
	overflow: hidden;
	float: left;
	border-radius: 10px;
	line-height: 1.0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
#gloval-nav ul.header_nav-txt li {
}
#gloval-nav ul.header_nav-txt li a{
	display: block;
	color: #000;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.0;
	font-size: 16px;
	padding: 20px 40px 20px 40px;
	position:relative;
}
#gloval-nav ul.header_nav-txt li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom: 5px solid #FFF;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

#gloval-nav ul.header_nav-txt li a:hover {
	color:#0081D4;
}
#gloval-nav ul.header_nav-txt li a:hover::after {
  -webkit-transform: scaleX(1); 
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all .3s;
  transition: all .3s;
}
#gloval-nav ul.header_nav-txt li.head {
	display: block;
	color: #FFF;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.0;
	font-size: 16px;
	padding: 20px 25px 20px 25px;
	position: relative;
}
#gloval-nav ul.header_nav-txt li.head::after {
	content:"";
	border-right: 1px solid #FFF;
	margin-left: 20px;
	height: 30px;
	position: absolute;
	right: 0px;
	top: 50%;
	margin-top: -15px;
}
#gloval-nav ul.header_nav-txt li a{
	display: block;
	color: #FFF;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.0;
	font-size: 16px;
	padding: 20px 27px 20px 27px;
}
#gloval-nav ul.header_nav-txt li a:hover {
	color:#FFF;
}

#gloval-nav ul.header_nav-ico {
	display: inline-block;
	background: #0081D4;
	padding: 0px;
	overflow: hidden;
	border-radius: 10px;
	line-height: 1.0;
	float:left;
	margin-left:30px;
}
#gloval-nav ul.header_nav-ico li {
	position: relative;
}
#gloval-nav ul.header_nav-ico li a::before {
	content: "";
	background: url(../img/icon_recruit.png) no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: 10px;
}
#gloval-nav ul.header_nav-ico li a {
	float: left;
	padding: 20px 30px 20px 80px;
	color: #FFF;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.0;
	font-size: 16px;
	opacity: 1;
}
#gloval-nav ul.header_nav-ico li a:hover {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
	opacity:0.7;
}






@media screen and (max-width:768px) {
/*--------------------------------------------------------
　header SP
--------------------------------------------------------*/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 16;
    padding: 30px 0 0 0;
}
header .inner {
    justify-content: center;
    width: 100% !important;
}



.index {
	min-width: 100%;
	width:100%;
}



/***** CLOSE時のハンバーガー ******/
#nav-toggle {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 42px;
  height: 42px;
  padding: 11px;
  cursor: pointer;
  background: #f2f2f2;
  border-radius: 5px;
}
#nav-toggle > div {
  position: relative;
  width: 21px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #2d287f;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}

/*** OPEN時のハンバーガー ***/
#nav-toggle span:nth-child(1) { top: 0; }
#nav-toggle span:nth-child(2) { top: 8px; }
#nav-toggle span:nth-child(3) { top: 16px; }

.open #nav-toggle span {
	background: #2d287f;
}
.open #nav-toggle span:nth-child(1) {
	top: 8px;
	transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	top: 8px;
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}
/* z-index */
#nav-toggle {
	z-index: 1000;
}

#gloval-nav {
	width:100%;
	height: 100%;
	background: rgba(255,255,255,1);
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0;
	bottom: 0;
	z-index: 990;
	text-align: center;
	display: flex;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.6s;
}
/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav nav {
	width:100%;
	padding: 0px;
	margin: 0;
	position:relative;
	right:0px;
	top:0px;
	opacity: 1;
	text-align: center;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}
.open #gloval-nav nav {
	opacity: 1;
	width: 100%;
	margin: 0px auto;
	filter: none;
}

.open #gloval-nav nav ul {
	margin-top: 0%;
}
.open #gloval-nav nav ul li {
	width: 90%;
	margin: 0 auto;
	float: none;
	border-bottom: 1px solid #333;
	border-right: none;
	padding: 15px 0 15px 0;
}
.open #gloval-nav nav ul li a {
	color: #000;
	font-size: 16px;
}
.open #gloval-nav nav ul li.active a {
	font-weight: 600;
	color: #2d287f;
}


#gloval-nav {
	width: 100%;
	margin: 0px 0 0 0px;
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}
#gloval-nav ul.header_nav-txt {
	width:100%;
	background: none;
	padding: 0px;
	overflow: auto;
	float: none;
	border-radius: 0;
	line-height: 1.0;
	display: block;
}
#gloval-nav ul.header_nav-txt li {
}
#gloval-nav ul.header_nav-txt li.head {
	color:#0081D4;
}
#gloval-nav ul.header_nav-txt li a{
	display: block;
	color: #000;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.0;
	font-size: 16px;
	padding: 10px 0px 10px 0px;
}
#gloval-nav ul.header_nav-txt li a:hover {
	color: #000;
	opacity: 0.7;
}
#gloval-nav ul.header_nav-ico {
	width:100%;
	display: block;
	background: none;
	color:#0081D4;
	padding: 0px;
	overflow: hidden;
	float: none;
	border-radius: 0px;
	line-height: 1.0;
}
#gloval-nav ul.header_nav-ico li {
	position: relative;
}
#gloval-nav ul.header_nav-ico li a::before {
	content: "";
	background: url(../img/icon_recruit.svg) no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 25%;
	left: 20px;
	margin-top: 10px;
}
#gloval-nav ul.header_nav-ico li a {
	float: none;
	padding: 25px 0px 25px 0px;
	color:#0081D4 !important;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.0;
	font-size: 16px;
	display: block;
}

} /**** END media screen *****/

/*--------------------------------------------------------
　footer PC
--------------------------------------------------------*/
footer {
	width: 1000px;
	margin: 0 auto;
}
footer .logo {
	width: 65px;
	margin: 0 auto 50px auto;
}
footer .logo img {
	width: 100%;
}
footer ul {
	width: 60%;
	min-width: 600px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
footer ul li {
	border-right: 1px solid #000;
	padding-right: 30px;
	line-height: 1.0;
}
footer ul li a {
	font-size: 16px;
	color: #000;
	text-decoration: none;
}
footer ul li a:hover {
	text-decoration: underline;
}
footer ul li:last-child {
	border-right: none;
}
footer small {
	display: block;
	text-align: center;
	font-size: 12px;
	padding-top: 30px;
	padding-bottom: 10px;
}



@media screen and (max-width:768px) {
/*--------------------------------------------------------
　footer SP
--------------------------------------------------------*/
footer {
	width: 100%;
	margin: 50px auto 10px auto;
}
footer .logo {
	width: 40px;
	margin: 0 auto 50px auto;
}
footer .logo img {
	width: 100%;
}
footer ul {
	width: 100%;
	min-width: 100%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: inline-block;
	border-top: 1px solid #000;
}
footer ul li {
	width:50%;
	border-bottom: 1px solid #000;
	line-height: 1.0;
	float: left;
}
footer ul li:nth-child(odd) {
	border-right: 1px solid #000;
}
footer ul li a {
	text-align: center;
	padding: 15px 0 15px 0;
	width:100%;
	font-size: 16px;
	display: block;
	color: #333;
	text-decoration: none;
}
footer ul li:last-child {
	border-right: 1px solid #000;
}
footer small {
	display: block;
	text-align: center;
	font-size: 12px;
	padding-top: 30px;
}
} /**** END media screen *****/




/* --- pagetop --- */

.pagetop {
	position: fixed;
	bottom: 58px;
	right: 8px;
	opacity: 0;
	filter: alpha(opacity=0);
	transform: scale(0.3);
	transition: all .6s;
}

.pagetop a {
	background: rgba(0, 129, 212, 1);
	display: table-cell;
	width: 60px;
	height: 60px;
	text-align: center;
	vertical-align: middle;
	color: #fff !important;
	font-size: 1.6rem;
	text-decoration: none;
	background: -moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 50px;
}

.pagetop.show {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

.pagetop a:hover {
	background: rgba(0, 129, 212, 0.7);
	text-decoration: none;
}



/* # =================================================================
   # ページ共通設定
   # ================================================================= */
/* フォードイン設定 */
.scroll-fade{opacity: 0; transition: all 2s/*処理にかかる時間*/; }
.scroll-up{opacity: 0; transform: translateY(100px)/*スクロールアップする距離*/; transition: all 2s/*処理にかかる時間*/; }
.scroll-up.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}
.scroll-up1{opacity: 0; transform: translateY(100px)/*スクロールアップする距離*/; transition: all 1s/*処理にかかる時間*/; }
.scroll-up1.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}
.scroll-up2{opacity: 0; transform: translateY(100px)/*スクロールアップする距離*/; transition: all 2s/*処理にかかる時間*/; }
.scroll-up2.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}
.scroll-up3{opacity: 0; transform: translateY(100px)/*スクロールアップする距離*/; transition: all 3s/*処理にかかる時間*/; }
.scroll-up3.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}
.load-fade {opacity : 0; transition : all 2s/*処理にかかる時間*/;}
.load-up{opacity: 0; transform: translateY(100px)/*スクロールアップする距離*/; transition: all 2s/*処理にかかる時間*/;}
.load-up.done, .load-fade.done{opacity : 1; transform : translate(0, 0);}




.pcLayer {
	display: block;
}
.spLayer {
	display: none;
}

@media screen and (max-width:768px) {
.pcLayer {
	display: none;
}
.spLayer {
	display: block;
}

body {
	min-width:100%;
}
footer {
	width: 100%;
}
footer .logo {
	width: 65px;
	margin: 0 auto 50px auto;
}
footer .logo img {
	width: 100%;
}
footer ul {
	width: 100%;
	min-width: 100%;
}

} /**** END media screen *****/