@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);
@import url(http://fonts.googleapis.com/css?family=Open+Sans);


html {
	font: normal normal normal 62.5%/1 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}

body {
	margin: 0;
	padding: 0;
	background-color: #F2F2F2;
	background-color: rgba(255, 254, 253, 1);
	position: relative;
	color: #333;
	color: rgba(0, 0, 0, .8);
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
	color: #000;
	color: rgba(0, 0, 0, 1);
	text-decoration: underline;
	-webkit-transition: all 300ms ease;
	        transition: all 300ms ease;
}

a:hover {
	text-decoration: none;
}

a,
input,
select,
textarea,
button,
*:before,
*:after {
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

img {
	width: 100%;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
	interpolation-mode: bicubic;
}

br {
	display: block;
	letter-spacing:0;
	white-space:normal;
}

/*------------------------------------*/
@media screen and (min-width: 801px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 800px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}
/*------------------------------------*/



#header {
	padding: 0 0;
	background-color: rgba(11, 50, 144, .9);
	box-sizing: border-box;
}

.header-logo a {
	display: block;
}

.header-nav-list {
	height: 80px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
}

.header-nav-list-item a {
	font-weight: bold;
	text-decoration: none;
	color: #FFFFFF;
}

.header-nav-list-item a:hover,
.header-nav-list-item a.active {
	color: #aaaaaa;
}

.header-nav-list .bg-orange {
	background-color: #FE6C00;
	padding: 15px;
	padding-top: 20px;
	height: auto;
}

#menu {
	width: 25px;
	height: 25px;
	display: none;
	background-image: url(../img/img_menu.png);
	background-position: center top;
	background-size: 100%;
	cursor: pointer;
}

.ie9 .header-wrap {
	width: 100%;
	display: table;
}


@media screen and ( min-width: 801px ) {

	.header-wrap {
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
				align-items: center;
	}

	.header-logo {
		width: 250px;/* 180px(20231122)*/
		margin-left: 20px;
	}
	
	.header-nav {
		margin-left: auto;
	}

	.header-nav-list-item {
		margin-left: calc(1px + 2vw);/* 3vw */
		font-size: 1.4rem;
		line-height: 2rem;
		text-align:center;
	}

.ie9 .header-logo,
.ie9 .header-nav {
	display: table-cell;
	vertical-align: middle;
}

.ie9 .header-nav-list {
	display: table;
	margin-left: auto;
}

.ie9 .header-nav-list-item {
	padding-left: calc(1px + 4vw);
	display: table-cell;
	vertical-align: middle;
}

}


@media screen and ( max-width: 800px ) {

	#header {
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
	}

	.header-logo {
		width: 150px;/* 130px(20231122)*/
		/* height: 50px; */
/* 		margin: 0 auto; */
/*
		display: -webkit-flex;
		display: flex;
*/
		position: relative;
		z-index: 150;
/*
		-webkit-justify-content: center;
				justify-content: center;
		-webkit-align-items: center;
				align-items: center;
*/
	}

	.header-logo a {
		height: 50px;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
				justify-content: center;
		-webkit-align-items: center;
				align-items: center;
	}
	
	.header-logo span {
		display: none;
	}
	
	.header-nav {
		width: 100%;
		height: 100vh;
		background-color: rgba(11, 50, 144, .9);
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
		display: none;
	}

	.visible .header-nav {
		display: block;
		z-index: 100;
		margin-top: 30px;/*20240504修正*/
	}

/*
	.header-nav-list {
		padding-top: 30px;
	}
*/

	.header-nav-list {
		height: calc(100vh - 50px);
		display: -webkit-flex;
		display: flex;
		position: relative;
		top: 10px;
		box-sizing: border-box;
		-webkit-justify-content: center;
				justify-content: center;
		-webkit-align-items: center;
				align-items: center;
		-webkit-flex-direction: column;
				flex-direction: column;
	}

	.header-nav-list-item {
		width: 100%;
		font-size: 2rem;
		line-height: 3rem;/*20240504修正*/
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}

	.header-nav-list-item:first-child {
		border-top: 1px solid rgba(255, 255, 255, .1);
	}

	.header-nav-list-item a {
		padding: 10px 0;
		display: block;
		text-align: center;
	}

	.header-nav-list .bg-orange {
		padding-top: 0px;
		padding: 0px;/*20240504修正*/
		height: 55px;
		vertical-align: middle;
	}
	
	#menu {
		display: block;
		position: fixed;
		right: 20px;
		top: 12px;
		z-index: 200;
	}

	.visible #menu {
		background-position: center bottom;
	}

	.ie9 .header-logo {
		padding-top: 10px;
		box-sizing: border-box;
	}

	.ie9 .header-nav {
		display: none;
	}

	.ie9 .visible .header-nav {
		display: table;
	}

	.ie9 .header-nav-list {
		display: table-cell;
		vertical-align: middle;
	}

}


/*------------------------------------*/


#footer {
	padding: 0 calc(20px + .5vw);
}

.footer-wrap {
	display: -webkit-flex;
	display: flex;
}

.footer-logo {
	width: 155px;
}


.footer-list-item a {
	text-decoration: none;
}

.footer-list-item a:hover,
.footer-list-item a.active {
	color: #1879c0;
}

.footer-copyright {
	font-size: 1.1rem;
	line-height: 2.5rem;
}


@media screen and ( min-width: 801px ) {

	.footer-wrap {
		height: 100px;
		-webkit-align-items: center;
				align-items: center;
	}
	.footer-list {
		display: -webkit-flex;
		display: flex;
		font-size: 1.4rem;
		line-height: 2.5rem;
		-webkit-align-items: center;
				align-items: center;
	}
	.footer-logo {
		margin-right: calc(40px + 3vw);
	}

	.footer-list-item {
		margin-right: calc(20px + 1vw);
	}

	.footer-copyright {
		margin-left: auto;
	}

.ie9 .footer-wrap {
	width: 100%;
	display: table;
}

.ie9 .footer-logo,
.ie9 .footer-list,
.ie9 .footer-copyright {
	display: table-cell;
	vertical-align: middle;
}

.ie9 .footer-logo {
	padding-right: 60px;
}

.ie9 .footer-list-item {
	display: inline-block;
	vertical-align: middle;
}

.ie9 .footer-copyright {
	text-align: right;
}

}


@media screen and ( max-width: 800px ) {

#footer {
	padding: 0;
}
	
	.footer-wrap {
		padding: 25px 0 0 0;
		-webkit-flex-direction: column;
				flex-direction: column;
	}

	.footer-logo {
		margin: 0 auto;
		padding-bottom: 1%;
		-webkit-order: 0;
				order: 0;
	}

	.footer-list {
		-webkit-order: 2;
		order: 2;
	}

	.footer-wrap ul{
		background:#EEE;
	}
	.footer-wrap ul li{
		float:left;
		width:50%;
		box-sizing:border-box;
		border-top:1px solid #FFF;
	}
	.footer-wrap ul li:nth-child(1){
		border-right:1px solid #FFF;
	}
	.footer-wrap ul li:nth-child(3){
		border-bottom:1px solid #FFF;
		border-right:1px solid #FFF;
	}
	.footer-wrap ul li:nth-child(4){
		border-bottom:1px solid #FFF;
	}
	.footer-wrap ul li:nth-child(5){
		border-top:none;
		border-bottom:1px solid #FFF;
		border-right:1px solid #FFF;
	}
	.footer-wrap ul li a{
		display:block;
		padding:13px 0 13px 13px;
		font-size:12px;
		text-align:center
	}


	.footer-copyright {
		margin: 10px 20px 20px 20px;
		display: block;
		text-align: center;
		-webkit-order: 1;
				order: 1;
	}

}


/*------------------------------------*/


.fbanner {
	padding: calc(20px + 1vw) calc(20px + .5vw);
	background-color: #e5e5e5;
}

.fbanner-wrap {
	max-width: 1000px;/* 1200px(20231122)*/
	margin: 0 auto;
}

.fbanner-list {
	border-radius: 5px;
	position: relative;
	flex: 1;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
}

.fbanner-list:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.fbanner-list.fd {
	background-color: rgba(0, 0, 0, 1);
}

.fbanner-list.recruit {
	background-color: rgba(0, 0, 0, 1);
}

.fbanner-list.fd:before {
	background-image: url(../img/img_finding.png);
	opacity: .8;
}

.fbanner-list.recruit:before {
	background-image: url(../img/img_recruit.png);
	opacity: .6;
}

.fbanner-list a {
	height: calc(150px + 10vw);
	max-height: 300px;
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	position: relative;
	z-index: 1;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	-webkit-align-items: center;
			align-items: center;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-flex-direction: column;
			flex-direction: column;
}

.fbanner-list.fd .font-eng {
	max-width: 283px;
/* 	height: 100px; */
	margin-bottom: calc(10px + 1vw);
	display: block;
}

.fbanner-list.recruit .font-eng {
	max-width: 283px;
/* 	height: 100px; */
	margin-bottom: calc(10px + 1vw);
	display: block;
}

.fbanner-list-title {
	margin-bottom: calc(10px + 1vw);
	display: block;
	font-weight: bold;
	line-height: 2rem;
}

.ie9 .fbanner-wrap {
	width: 100%;
	overflow: hidden;
}

.ie9 .fbanner-list {
	display: table;
	float: left;
	letter-spacing: normal;
}

.ie9 .fbanner-list a {
	display: table-cell;
	vertical-align: middle;
}

.ie9 .font-eng,
.ie9 .fbanner-list-title,
.ie9 .fbanner-list .btn {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}


@media screen and ( min-width: 801px ) {

	.fbanner-wrap {
		-js-display: flex;
		display: -webkit-flex;
		display: flex;
	}

	.fbanner-list {
		margin-left: calc(20px + 1vw);
	}

	.fbanner-list:first-child {
		margin: 0;
	}

	.fbanner .font-eng {
		font-size: 6rem;
		line-height: 6rem;
	}

	.fbanner-list-title {
		font-size: 1.6rem;
	}

	.ie9 .fbanner-list {
		width: calc((100% - (22px + 1vw)) / 2);
	}

}


@media screen and ( max-width: 800px ) {

	.fbanner-list {
		margin: 10px 0;
	}

	.fbanner-list.fd .font-eng {
		max-width: 200px;
	}

	.fbanner .font-eng {
		font-size: 4rem;
		line-height: 4rem;
	}

	.fbanner-list-title {
		font-size: 1.4rem;
	}

	.ie9 .fbanner-list {
		width: 100%;
	}

}


/*------------------------------------*/


.contents {
	overflow: hidden;
}

.font-eng {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.paagetitle {
	height: calc(185px + 10vw);
	max-height: none;
	display: block;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.paagetitle .font-eng {
	margin-bottom: 10px;
	padding-bottom: 5px;
	display: table;
	color: #FFFFFF;
	border-bottom: 1px solid #1879c0;
	font-size: 5rem;
	line-height: 6rem;
}

.paagetitle-name {
	display: table;
	color: #FFFFFF;
	font-size: 1.6rem;
	line-height: 2rem;
}

.paagetitle .font-eng,
.paagetitle-name {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 5;
}

.paagetitle .font-eng {
	margin-top: calc(30px + 4vw);
}

.paagetitle:before {
	content: "";
	width: 100%;
	height: calc(200px + 15vw);
	max-height: 380px;
	display: block;
	background-image: url(../img/img_service.jpg);
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}



.ie9 .paagetitle {
	padding-top: 0;
}

.contents-title {
	margin: 0 auto;
	position: relative;
	z-index: 5;
	margin-bottom: calc(20px + 1vw);
	padding-bottom: 10px;
	display: table;
	border-bottom: 2px solid rgba(0, 0, 0, .5);
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: bold;
}

.ie9 .contents-title {
	width: auto;
}

.contents-title.font-eng {
	font-size: 3rem;
}

a.btn,
a .btn,
input.btn {
	width: calc(100px + 2vw);
	max-width: 140px;
	padding: 10px 0;
	display: block;
	background-color: transparent;
	border: 2px solid #1879c0;
	border-radius: 3px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 2rem;
	text-align: center;
	text-decoration: none;
	color: #1879c0;
	box-sizing: border-box;
	transition: all 300ms ease;
}

a:hover.btn,
a:hover .btn {
	background-color: #1879c0;
	color: rgba(255, 255, 255, 1);
}

a.btn.wt,
a .btn.wt {
	border-color: rgba(255, 255, 255, 1);
	color: rgba(255, 255, 255, 1);
}

a:hover.btn.wt,
a:hover .btn.wt {
	background-color: rgba(255, 255, 255, 1);
	color: #1879c0;
}

a.btn.bk,
a .btn.bk {
	border-color: rgba(0, 0, 0, 1);
	color: rgba(0, 0, 0, 1);
}

a:hover.btn.bk,
a:hover .btn.bk {
	background-color: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

a.btn-og,
a .btn-og,
input.btn-og {
	display: none;
}
a.btn-og.og,
a .btn-og.og {
	display: none;
}


@media screen and ( max-width: 801px ) {

	.paagetitle {
		height: calc(250px + 10vw);
/* 		height: 250px; */
/* 		margin-bottom: 20px; */
	}

/*
	.paagetitle .font-eng {
		margin-top: -100px;
	}
*/

	.paagetitle:after {
/* 		height: 220px; */
		background-size: auto 100%;
/* 		bottom: -50px; */
	}

	.paagetitle .font-eng {
		border-bottom: 3px solid #1879c0;
		font-size: 3.5rem;
		line-height: 4rem;
	}

	.paagetitle-name {
		font-size: 1.4rem;
	}
}


@media screen and ( max-width: 800px ) {

	.contents {
		margin-top: 50px;
		overflow: hidden;
	}

	.contents-title {
		padding-bottom: 10px;
		font-size: 2.5rem;
		line-height: 3rem;
	}
}

@media screen and ( min-width: 801px ) {
.w90{
	max-width:90% ;
}
	
}

.about_002 .td5{
	font-size:16px;
	color: #F30;
	
	line-height:20px
}

.conpany-wrap2 {
	width:  860px;
	margin: 0 auto;
	padding: 20px 0 20px;
	position: relative;
	z-index:0;
}
@media screen and ( max-width: 800px ) {

	.conpany-wrap2 {
		width:100%;
		padding: 0;
	}
}

.bgf5{
	background:#f5f5f5;
}

.bgfa{
	background:#fafafa;
}

.menu10off{
	padding:2px 10px;
	margin-left:10px;
	display:inline-block;
	font-weight:bold;
	color:#fff;
	background:#E9282C;
	
}


@media screen and ( max-width: 600px ) {
.pc-only { display: none; }
.mobile-only { display: block; }
}

@media screen and ( min-width: 601px ) {
.pc-only { display:block; }
.mobile-only { display:none; }	
}

.map10{
	background: url(../img/map.jpg);
	background-position:center;
	background-repeat:no-repeat;
	min-height:250px;
}

.map11{
	background: url(../img/map2.jpg);
	background-position:center;
	background-repeat:no-repeat;
	min-height:250px;
}

.faqbox{
	border: #999 solid 1px;
	padding:15px;
	line-height:24px;
	margin:auto;
	max-width:868px;
	margin-top:20px;
	font-size:16px;
	text-align:center;
}
	
@media screen and ( max-width: 600px ) {
.youtube-movie{
	margin:0 auto; 
	text-align:center;
	background:#fafafa; 
	padding:20px 0;
	position: relative;
}

.youtube-movie iframe{
  width: 100%;
  height:240px;
}
	
}

@media screen and ( min-width: 601px ) {
.youtube-movie{
	margin:0 auto; 
	text-align:center;
	background:#fafafa; 
	padding:40px 0;
}

.youtube-movie iframe{
  width: 560px;
  height:315px;
}

}

@media screen and (max-width: 600px) {
    .br-sp2 { display:none; }
	
}

@media screen and (min-width: 601px) {
	.nav-keeper{
		font-size: 19px;
	}
}

@media only screen and (min-width : 801px) and (max-width : 1260px) {
	.header-nav-list-item {
		margin-left: calc(1px + 3vw);
	}
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}
.clearfix {
	zoom: 1
}


  /*ヘッダー部分 20240521追記*/
	.header-logo {
		width: 360px;
	}
	
	.header-logo a {
		display: flex;
	}
	
	.header-logo_link {
		text-decoration: none;
	}
	
	.header-logo_link img {
		width:150px;
	}
	
	.header-logo_text {
		padding: 17px 15px;
		color: #fff;
		width:200px;
		font-size: 16px;
	}
	
	.header-nav-list-item {
		position: relative;
		
	}
	
	
	@media screen and (max-width:600px) {
		.header-logo {
			width: 300px;
		}
		.header-logo span {
			display: inline;
			font-size: 14px;
		}
	
		.header-logo_link img {
			width:125px;
		}

		.gnavi__list .menu-none {
			display: none;
		}

	}
	
	@media screen and (min-width:600px) {
	
	
	/*.gnavi__wrap {
		width: 1200px;
		margin: 0 auto;
	}
	*/
	.gnavi__lists {
		display: flex;
	}
	.gnavi__list {
		/*width: 20%;*/
		height: 60px;
		/*background-color: #E5F0F8;*/
		position: relative;
		transition: all .3s;
	}
	.gnavi__list:hover {
		background-color: #0071BB;
	}
	/*
	.gnavi__list:not(:first-child)::before {
		content: "";
		width: 1px;
		height: 100%;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
		transition: all .3s;
	}
	*/
	.gnavi__list:hover::before {
		background-color: #0071BB;
		;/*#0071BB*/
	}
	.gnavi__list a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		text-decoration: none;
		/*color: #1b4059;*/
		font-size: 15px;
		letter-spacing: 0.05em;
		font-weight: 600;
		transition: all .3s;
	}
	.gnavi__list:hover a {
		color: #fff;
	}
	
	
	.dropdown__lists {
		display: none;/*デフォルトでは非表示の状態にしておく*/
		width: 100%;
		position: absolute;
		top: 60px;
		left: 0;
		z-index: 10;
	}
	.header-nav-list-item:hover .dropdown__lists {
		display: block;/*Gナビメニューにホバーしたら表示*/
	}
	.dropdown__list {
		background-color: rgba(11, 50, 144, .9);/*rgb(78 94 132)*/
		height: 60px;
		transition: all .3s;
		position: relative;
		width:180px;
	}
	.dropdown__list:not(:first-child)::before{
		content: "";
		width: 100%;
		height: 1px;
		background-color: #3492d1;
		position: absolute;
		top: 0;
		left: 0;
	}
	.dropdown__list:hover {
		background-color: #003558;
	}
	.dropdown__list a {
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		text-decoration: none;
		position: relative;
	}
	.dropdown__list a::before {
		content: '';
		display: block;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-left: 2px solid #fff;
		transform: rotate(135deg);
		position: absolute;
		right: 10px;
		top: calc(50% - 0px);
	}
	}