@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {	
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:400;
	font-size: 16px; 
	color: #282828;
	line-height: 2;
	-webkit-font-smoothing: antialiased; 
	-moz-osx-font-smoothing: grayscale; 
	  overflow: hidden;
}
a{
  color:#003B82;
  text-decoration: underline;
}
a:hover {
  color:#003B82;
	-webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
}
a img { 
	transition: opacity 0.2s linear; 
}
a:hover img { 
	opacity: 0.8;
}
.br-sp { 
  display:none;
}
.br-tb { 
  display:none;
}
.spmenu{
	display:none!important;
}
.tbmenu{
	display:none!important;
}


.mb5 {
	margin-bottom:5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb15 {
	margin-bottom: 15px !important;
}
.mb20 {
	margin-bottom:20px !important;
}
.mb30 {
	margin-bottom:30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom:50px !important;
}
.mb60 {
	margin-bottom:60px !important;
}
.mb70 {
	margin-bottom:70px!important;
}
.mt5 {
	margin-top:5px !important;
}
.mt10 {
	margin-top:10px !important;
}
.mt20 {
	margin-top:20px !important;
}
.mt30 {
	margin-top:30px !important;
}
.mt40 {
	margin-top:40px !important;
}
.mt50 {
	margin-top:50px !important;
}
.mt60 {
	margin-top:60px !important;
}
.mt70 {
	margin-top:70px !important;
}
.al_left{
	text-align: left;
}
.al_right{
	text-align: right;
}
.center {
	display: block;
	text-align: center;
	margin: 0 auto;
}

img{
	width:100%;
}

p{
	margin: 20px 0;
}


/* ヘッダー */
.container{
	max-width: 1160px;
	margin: 0 auto;
	padding: 0;
 	overflow: hidden;
}


/* ナビゲーション */
#head_wrap01{
	width:100%;
	transition: all ease .6s;
	position: fixed;
	height: 80px;
	background-color: #fff;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000;
	box-shadow: 0px 6px 6px -5px rgba(0,0,0,0.3);

}
.nav_back_trapezoid_wrap{
	width:100%;
	position: relative;
}
.nav_back_trapezoid{
	z-index: 0;
	position: absolute;
	top:0;
	right: 0;
	width: 860px;/* 幅 */
  height: 80px;
  border-bottom: 80px solid #CCD7E6; /* 高さ */
  border-left: 140px solid transparent; /* 左側下辺の伸び */
  box-sizing: border-box;
}
.sp_navi_menu{
	display:none;
}
.head_wrap{
	position: relative;
}

#menu {
}
/*==ナビゲーション全体の設定*/
nav{
  text-align: left;
}
nav ul li.head_logo{
	 position: absolute;
	 left: 0;
}
nav ul li.head_logo img{
  width:400px;
}
nav ul li.head_logo a {
  padding:13px 130px 13px 20px!important;
}
nav ul li.head_logo a:hover{
	background-color: transparent!important;
}

/*ナビゲーションを横並びに*/
nav ul{
  list-style: none;
  display: flex;
  justify-content: right;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
  position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a{
  display: block;
  text-decoration: none;
  padding:25px 22px;
  transition:all .3s;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:500 ;
	font-size: 15px;
	letter-spacing: 0;
	color:  #282828;
}
nav ul li a:hover{  
	transition:1s all;
	color:  #282828;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
  position: absolute;
  left:0;
  top:80px;
  z-index: 4;
    /*形状を指定*/
	opacity: 0.5;
  width:230px;
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
  transition: all .3s;
  	box-shadow: 6px 6px 6px -5px rgba(0,0,0,0.3);

}
/*2階層目以降は横並びにしない*/
nav ul ul{
  display: block;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav ul li li a{
	font-weight:500 ;
  padding:11px 15px;
  background-color:rgba(0,59,130,0.6);
}
nav li.has-child ul li a{
	font-weight:500 ;
  color: #fff;
  border-bottom:solid 1px #cccccc;
  padding:11px 15px;
  background-color:rgba(0,59,130,0.7);
}
nav li.has-child ul li.top-child a{
	display: none;
}
nav li.has-child ul li:last-child a{
  border-bottom:none;
}
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
  background-color:rgba(0,59,130,1);
}


/* top_mainvisual */
/* メインビジュアル */
.top_mainvisual{
	margin-top: 80px; 
	width:100%;	
	position: relative;
}

.top_main_ttl{
	position: absolute;
	top: 50%;
  left: 60px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 50px;
	color: #fff;
	line-height: 1.6;
	letter-spacing: 8px;
	z-index: 10;
	border-bottom: 1px solid #fff;
	padding-bottom: 15px;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.slide_ph{
 width: 100%;
 height: 80vh;
} 
.slide_ph img{
	width: 100%;
	 height: 80vh;
  object-fit: cover;	
}
/* メインビジュアル */
/* top_mainvisual */


/* top_sec01 */
.top_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;

}
.top_sec01_wrap{
	width: 94%;
	margin: 85px auto 0;
	display: flex;
	flex-wrap: wrap;
}
.top_sec01_left{
	width: 30%;
}
.top_sec01_right{
	width: 70%;
}
.ttl_wrap{
}
.ttl_jp{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	font-size: 20px; 
	color: #282828;
	letter-spacing: 3px;
	line-height: 1.3;
}
.ttl_en{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 60px;
	font-style: italic;	
	color: #003B82;
	line-height: 1.3;
}
ul.news_cate{
	margin-top: 10px;	
}
ul.news_cate li{
	border-bottom: 1px solid #ccc;
	padding: 10px;
}
ul.news_cate li a{
	color:#282828;
	text-decoration: none;
}
ul.news_cate li:hover{
  background-color: #EFF2F7;
	transition: 0.5s;
}
ul.news_cate li span.date{
	font-size: 16px;
	width:120px;
	display: block;
	float: left;
}
ul.news_cate li span.category_name{
	float: left;
	width: 120px;
	color: #fff;
	padding: 2px;
	font-size: 13px;
	text-align: center;
	background-color: #003B82;
	margin-right: 20px;	
	vertical-align: middle;
}
ul.news_cate li span.txt{
	font-size: 14px!important;
	line-height: 1.8;
}
.btn_01 {
	margin: 60px auto 100px;
	display: block;
}
a.btn_01 {
	position: relative;    
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width:270px;
	padding: 0.25rem;
	font-weight: 700;
	border: 2px solid #003B82;
	color: #003B82;
	transition: 0.5s;
	font-size: 14px;
}
a.btn_01:hover {
	color: #fff;
	background: #003B82;
}
a.arrow i{
	position: absolute;
  top:50%;
	transform:translateY(-50%);
	left:10px; 
	color: #003B82;
	font-size:18px;
}
a:hover.arrow i {
	color: #fff;
}

/* top_sec02 */
.top_sec02{
	margin: 0 auto;
	max-width: 100%;
	background-image: url('../img/top_sec02_back.jpg');
	background-size: cover;
	background-position: 50% 50%;
	height: auto;
	position:relative;
	padding-bottom: 80px;
}
.top_sec02_wrap{
	width: 100%;
	margin: 50px auto 0;
	border-left: 1px solid #003B82;
	padding-left: 40px;	
}
.top_sec02_Img{
	position: absolute;
	top:0;
	right: 0;
	width: 35%;
}
.top_sec02_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.6;
	color: #003B82;
	letter-spacing: 1px;
	border-bottom: 1px solid #003B82;
	display: inline-block;
	padding-bottom: 30px;	
	margin: 30px 0 15px;
}

/* top_sec03 */
.top_sec03{
	margin: 65px auto 0;
	max-width: 100%;
	background-image: url('../img/top_sec03_back.jpg');
   background-size: cover;
	background-position: 50% 100%;
}
.ttl_wrap_border{
	padding-bottom: 15px;
	border-bottom: 1px solid #003B82;
}
.top_sec03_wrap01{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 60px auto 0;
}
.top_sec03_contents01{
	margin: 12px;
	width:31.2%;
	border: 1px solid #003B82;
}
.top_sec03_contents01 a{
	text-decoration:none;	
}
.top_sec03_Img{
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
  height: 232px;	
}
.top_sec03_Img img{
	width:100%;
	transition:1s all;
}
.top_sec03_Img img:hover{
	transform:scale(1.2,1.2);
	transition:1s all;
}
.top_sec03_ttl_wrap{
	background-color: #fff;
	z-index: 1;	
	padding: 12px 10px;
}
.top_sec03_ttl01{
	font-weight:700;
	font-size: 20px; 
	color: #003B82;
	letter-spacing: 1px;
	line-height: 1.3;
	text-align: center;
	padding-bottom: 5px;
}
.top_sec03_txt{
	font-size: 14px; 
	color: #282828;
	margin: 0;
	text-align: center;
}

.top_sec03_wrap02{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 55px auto 0;
}

.top_sec03_contents02{
	margin: 12px;
	width:47%;
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	position: relative;
  z-index: 1; 
}
.top_sec03_border{
	border: 8px solid #4C75A7;
	z-index: 2; 
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
}
.top_sec03_triangle{
 	position: absolute;
	top:0;
	left: 0;
	z-index: 3;
	width: 65px;
}
.top_sec03_contents02 img{
	width:100%;
}
.top_sec03_contents02 img:hover{
	transition:1s all;
}
.top_sec03_ttl02{
	font-weight:700;
	font-size: 26px; 
  color: #fff;
	letter-spacing: 4px;
	width: 100%;
	position: absolute;
	top:50%;
	z-index: 1;
	left: 50%;
	transform : translate(-50%, -50%);   
	text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.top_sec03_wrap03{
	display: flex;
	flex-wrap: wrap;
	width: 82%;
	margin: 70px auto 100px;
}
.top_sec03_banner{
	margin: 15px;
	width:30%;
}


/* tech_mainvisual */
/* メインビジュアル */
.tech_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/technology_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.main_black {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
}
.common_main_wrap{
	width: 1080px;
	margin: 0 auto;
	position: relative;
}
.tech_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}
.common_main_ttl{
	font-family: 'Noto Serif JP', serif;
	font-size: 42px;
	font-weight: 700;
  color: #fff;
	letter-spacing: 8px;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
	border-bottom: 1px solid #fff;
	padding-bottom: 4px;
	text-align: center;
}
.common_main_txt{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 22px;
	font-style: italic;	
	color: #fff;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 4px;
	margin: 12px 0;
}
/* tech_sec01 */
.tech_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}
#breadcrumbs {
	font-weight:400;
	font-size:12px;
	margin: 15px 0 50px;
	z-index: 5;
}
#breadcrumbs ul li{
	color:#282828;
	display: inline-block;
	margin: 0 0.5em;
	letter-spacing: 1px;
}
#breadcrumbs ul li a{
	color: #003B82;	
	display: inline-block;
}
#breadcrumbs a:hover{
	color: #003B82;	
	transition:1s all;
}

.tech_sec01_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 5px;
	margin: 0 auto;
	text-align: center;
	border-bottom: 1px solid #282828;
	padding-bottom: 5px;
	width: 500px;
}
.tech_sec01_wrap{
	width: 100%;
	margin: 50px 0;
}
.tech_sec01_left{
	float:left;
	width: 48%;
	margin: 0 20px 0 0;
}
.tech_sec01_right{
	float:right;
	width: 48%;
	margin: 0 0 0 20px;
}
.tech_ttl_wrap{
	width: 100%;
	border-bottom: 1px solid #003B82;	
	padding-bottom: 20px;
}
.tech_ttl_number{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 75px;
	font-style: italic;	
	color: #003B82;	
	line-height: 1;	
	display: inline-block;
}
.tech_ttl{
	font-weight: 700;
	font-size: 34px;
	color: #003B82;	
	line-height: 1;	
	display: inline-block;
	margin-left:18px;
	letter-spacing: 1px;
}

/* tech_sec02 */
.tech_sec02{
	margin: 0 auto;
	max-width: 100%;
	background-image: url('../img/tech_sec02_back.jpg');
	background-size: cover;
	background-position: 50% 50%;
	height: 450px;
}
.tech_sec02_wrap{
	width: 100%;
	margin: 50px 0;		
}
.tech_sec02_left{
	float:left;
	padding-top: 35px;
	width: 48%;
	margin: 0 20px 0 0;
}
.tech_sec02_right{
	float:right;
	width: 48%;
	margin: 0 0 0 20px;
	position: relative;
}
.tech_triangle{
	position: absolute;
	top:-50px;
	left:-46px;
	width: 489px;
	height: 281px;	
}

/* tech_sec03 */
.tech_sec03{
	margin: 0 auto;
	max-width: 100%;
}
.tech_sec03_wrap{
	width: 100%;
	margin: 100px 0;		
}
.tech_sec03_left{
	float:left;
	width: 48%;
	margin: 0 20px 0 0;
}
.tech_sec03_right{
	float:right;
	width: 48%;
	margin: 0 0 0 20px;
}
.tech_sec03_bnrph_wrap{
	margin: 0 auto;
	max-width: 100%;
	display: flex;
	flex-wrap: nowrap;
	margin: 75px auto 100px;
}
.tech_sec03_bnrph{
	width: 21.5%;
}


/* company_mainvisual */
/* メインビジュアル */
.company_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/company_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.company_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* company_sec01 */
.company_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}

.cont_ttl_wrap{
	width: 100%;
	border-bottom: 1px solid #003B82;	
	padding-bottom: 20px;
}
.cont_ttl_eng{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 30px;
	font-style: italic;	
	color: #282828;	
	line-height: 1;	
}
.cont_ttl_jp{
	font-weight: 700;
	font-size: 34px;
	color: #003B82;	
	line-height: 1.4;	
	letter-spacing: 3px;
}
.company_sec01_wrap{
	width: 100%;
	margin: 45px 0 0;		
}
.company_sec01_left{
	float:left;
	width: 50%;
	border-left:1px solid #003B82;
	padding-left: 40px;	
}
.company_sec01_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.6;
	color: #282828;
	letter-spacing: 1px;
	border-bottom: 1px solid #003B82;
	padding-bottom: 20px;	
	margin: 20px 0 10px;
}
.company_sec01_txt{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 2.5;
	letter-spacing: 1px;	
}
.company_sec01_sign{
	width: 330px;
	margin-left: auto;
	margin-top: 40px;	
}
.company_sec01_right{
	float:right;
	width: 50%;
}
.company_sec01_right img{
	width: 316px;
	margin: 0 auto;
	display: block;
}

/* company_sec02 */
.company_sec02{
	margin: 65px auto 0;
	max-width: 100%;
	position:relative;
}
.company_sec02_wrap{
	width: 100%;
	margin: 60px auto 0;
	padding-left: 40px;	
}
.company_sec02_Img{
	position: absolute;
	top:160px;
	right: 0;
	width: 35%;
}
.company_sec02 table{
	width: 61.5%;
}
.company_sec02 table th{
	width: 24%;
	background-color:#003B82;
	color: #fff;
	font-size: 14px;
	padding: 10px 15px;
	border: 1px solid #fff;	
	vertical-align: middle;
}
.company_sec02 table td{
	width: 76%;
	font-size: 16px;
	padding: 10px 15px;
	border: 1px solid #003B82;	
	vertical-align: middle;
}

/* company_sec03 */
.company_sec03{
	margin: 65px auto 0;
	max-width: 100%;
}
.company_sec03_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.8;
	letter-spacing: 1px;
	color:#003B82;
	text-align: center;
	margin: 40px 0 0;
}
.company_sec03_txt{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 2.2;
	letter-spacing: 1px;
	text-align: center;
}
.company_sec03_sign{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.8;
	letter-spacing: 1px;
	text-align: center;
}

/* company_sec04 */
.company_sec04{
	margin: 65px auto 0;
	max-width: 100%;
}
.company_sec04_wrap{
	width: 100%;
	margin: 40px 0 0;		
}
.company_sec04_left{
	float:left;
	width: 50%;
	margin: 0 20px 0 0;
}
.company_sec04_right{
	float:right;
	width: 46%;
	margin: 0 0 0 20px;
}

/* company_sec05 */
.company_sec05{
	margin: 65px auto 0;
	max-width: 100%;
}
.company_sec05_wrap{
	width: 100%;
	margin: 50px 0 0;	
}
.company_sec05_left{
	float:left;
	width: 66%;
	margin: 0 20px 0 0;
}
.company_sec05_right{
	float:right;
	width: 28%;
	margin: 0 0 0 20px;
}

.company_sec05_ttl{
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 1px;
	color: #fff;
	padding: 2px 15px;
	background-color:#003B82; 
}
.company_sec05_subttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 1px;
	line-height: 1.8;
	margin: 20px 0;	
}
.company_sec05_lead{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1.8;
	color:#003B82; 
	border-bottom: 1px solid #003B82; 
	padding-bottom: 5px;
	margin-bottom: 15px;
}
.company_sec05_txt{
	font-size: 14px;
	margin: 0;
	padding-left:1.5em;
	text-indent:-1.5em;
}
.company_sec05_txt:before{
	content: "◆";
 margin-right: 5px;
 color: #003B82; 
 }
 .company_sec05_logo_wrap{
	 width: 95%;
	 margin: 50px auto 0; 
 }
 
 /* company_sec06 */
.company_sec06{
	margin: 85px auto 100px;
	max-width: 100%;
}
.company_sec06_wrap{
	width: 100%;
	margin: 45px 0 0;
}
.company_sec06_left{
	float:left;
	width: 48%;
	margin: 0 20px 0 0;
}
.company_sec06_right{
	float:right;
	width: 48%;
	margin: 0 0 0 20px;
}
.gglmap{
	width: 100%;
	height: 340px;
}
.company_sec06_ttl{
	font-size: 20px;
	font-weight: 700;
	color: #003B82; 
	margin: 15px 0 0;
	letter-spacing: 1px;
}
.company_sec06_txt{
	font-size: 14px;
	margin: 0;
	letter-spacing: 1px;
	line-height: 1.4;
}

/* recruit_mainvisual */
/* メインビジュアル */
.recruit_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/recruit_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.recruit_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* recruit_sec01 */
.recruit_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}
.recruit_sec01_wrap{
	width: 100%;
	margin: 45px 0 0;		
}
.recruit_sec01_left{
	float:left;
	width: 63%;
	border-left:1px solid #003B82;
	padding-left: 40px;	
}
.recruit_sec01_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.8;
	color: #282828;
	letter-spacing: 5px;
	margin: 20px 0 10px;
}
.recruit_sec01_txt{
	font-size: 16px;
	line-height: 2;
}
.recruit_sec01_right{
	float:right;
	width: 37%;
}
.recruit_sec01_right img{
	width: 359px;
	margin: 0 auto;
	display: block;
}
.recruit_sec01_ph{
	max-width: 1160px;
	margin: 60px auto 0;
}
.recruit_sec01_ph img{
	padding-left: 80px;
}

/* recruit_sec02 */
.recruit_sec02{
	margin: 65px auto 60px;
	max-width: 100%;
}
.recruit_sec02 table{
	margin: 60px auto 0;	
	width: 82.8%;
}
.recruit_sec02 table th{
	width: 17%;
	background-color:#003B82;
	color: #fff;
	font-size: 14px;
	padding: 10px 15px;
	border: 1px solid #fff;	
	vertical-align: middle;
}
.recruit_sec02 table td{
	width: 83%;
	font-size: 16px;
	padding: 10px 15px;
	border: 1px solid #003B82;	
	vertical-align: middle;
}
.btn_04 {
	margin: 60px auto;
	display: block;
}
a.btn_04 {
	position: relative;    
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width:416px;
	padding: 0.6rem;
	font-weight: 700;
	border: 2px solid #003B82;
	color: #003B82;
	transition: 0.5s;
	font-size: 18px;
}
a.btn_04:hover {
	color: #fff;
	background: #003B82;
}
a.arrow03 i{
	position: absolute;
  top:50%;
	transform:translateY(-50%);
	left:10px; 
	color: #003B82;
	font-size:24px;
}
a:hover.arrow03 i {
	color: #fff;
}



/* construction_mainvisual */
/* メインビジュアル */
.construction_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/construction_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.construction_main_ttl_wrap{
	width: 280px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* construction_sec01 */
.construction_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}
.construction_sec01_txt{
	margin:0px;
	text-align: center;
	letter-spacing: 1px;
}
.construction_sec01_wrap{
	width: 100%;
	margin: 50px auto 0;
}

.construction_sec01_wrap ul{
	width: 100%;
}
.construction_sec01_wrap li{
	border-top: 1px solid #003B82;	
	padding: 15px 60px;
	position: relative;
}
.construction_sec01_wrap li:last-child{
	border-bottom: 1px solid #003B82;
}
.construction_sec01_wrap li a{
	text-decoration: none;
	color: #282828;
}
.construction_sec01_wrap li img{
	width:34px;
	position: absolute;
	top:8px;
	left:8px;
}
.construction_sec01_wrap li i{
	font-size: 34px;
	position: absolute;
	top:25%;
	right: 0px;
	color:#003B82;
}



/*アコーディオン全体*/
.accordion-area {
	margin: 60px auto 160px;
	max-width: 100%;
}

/*アコーディオンタイトル*/
.accordion-area_title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    border: solid 1px #003B82;
		background-color: #E4EEFA;
		color:#003B82;
		font-weight: 700;
		font-size: 20px;
		padding: 16px 30px;
    transition: all .3s ease;
}
.accordion-area_title.close {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    border: solid 1px #003B82;
		background-color: #ffffff;
		color:#003B82;
		font-weight: 700;
		font-size: 20px;
		padding: 16px 30px;
    transition: all .3s ease;
}

/*アイコンの＋と×*/
.accordion-area_title::before,
.accordion-area_title::after{
    position: absolute;
    content:'';
    width: 30px;
    height: 4px;
    border-radius:2px; 
    background-color: #003B82;   
}
.accordion-area_title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);    
}
.accordion-area_title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.accordion-area_title.close::before{
  transform: rotate(45deg);
}

.accordion-area_title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion-area_box {
  display: none;/*はじめは非表示*/
  padding: 0 20px;
}


/* achivements_mainvisual */
/* メインビジュアル */
.achivements_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/achivements_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.achivements_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* achivements_single_sec01 */
.achivements_single_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto 100px;
}
.achivements_single_sec01_wrap{
	width: 90%;
	margin: 50px auto 60px;
}
.single_ttl{
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
	padding: 0 0 0 1em;
	background: transparent;
  border-left: solid 8px #003B82;	
  margin-bottom: 20px;
}
.single_sec01_Img01{
	width: 100%;
	display: block;
	overflow: hidden;
	height:auto;
	border: 1px solid #003B82;	 
}
table.achivements_single_t{
	width: 100%;
	margin-top: 50px;
}
table.achivements_single_t th{
	width: 15%;
	background-color:#003B82;
	color: #fff;
	font-size: 14px;
	padding: 10px 15px;
	border-top: 2px solid #003B82;	
	border-left: 2px solid #003B82;		
	border-right: 2px solid #003B82;		
	border-bottom: 2px solid #fff;	
	vertical-align: middle;
	text-align: center;
}
table.achivements_single_t tr:last-child th{
	border-bottom: 2px solid #003B82;		
}
table.achivements_single_t td{
	width: 85%;
	font-size: 14px;
	line-height: 1.6;
	padding: 10px 15px;
	border: 2px solid #003B82;	
	vertical-align: middle;
}
.achivements_single_sec01_ph_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.single_sec01_ph{
	width: 45%;
	margin: 10px 20px;
}
.single_sec01_Img02{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.single_sec01_cap{
	font-size: 13px;
	line-height: 1.4;
	margin: 8px 0;
}

.single_navi_area{
	width:90%;
	margin: 100px auto 0;
}
.single_navi_area ul{
	width:100%;
	display: flex;
	flex-wrap: nowrap;

}
.single_navi_area li.left{
	display: block;
	width:50%;
}
.single_navi_area li.left a{
	display: block;
	text-align: left;
	vertical-align: middle;
	text-decoration: none;
	width:100%;
	padding: 0.5rem 1rem;
	font-weight: 700;
	border: 2px solid #003B82;
	color: #003B82;
	transition: 0.5s;
	font-size: 18px;
	margin-right:-2px;
}

.single_navi_area ul li.left a:hover{
	border:2px solid #003B82;	
	background-color: #003B82;
	color: #fff;	
} 
.single_navi_area ul li.right{
	display: block;
	width:50%;
}
.single_navi_area li.right a{
	display: block;
	text-align: right;
	vertical-align: middle;
	text-decoration: none;
	width:100%;
	padding: 0.5rem 1rem;
	font-weight: 700;
	border: 2px solid #003B82;
	color: #003B82;
	transition: 0.5s;
	font-size: 18px;
	margin-left:-2px;
}

.single_navi_area li.right a:hover{
	border:2px solid #003B82;	
	background-color: #003B82;	
	color: #fff;
} 
.single_button_area{
	width:65%;
	margin: 60px auto 0;
	display: flex;
	flex-wrap: nowrap;
}
.btn_02 {
	display: block;
	margin: 0 20px;
}
a.btn_02 {
	position: relative;    
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width:340px;
	padding: 0.25rem;
	font-weight: 700;
	border: 2px solid #003B82;
	color: #003B82;
	transition: 0.5s;
	font-size: 14px;
}
a.btn_02:hover {
	color: #fff;
	background: #003B82;
}

/* achivements_cate_sec01 */
.achivements_cate_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto 40px;
}
.achivements_cate_txt{
	margin-top: 20px;
	margin-bottom: 0px;
	text-align: center;
	letter-spacing: 1px;
}
.achivements_cate_sec01_wrap{
	width: 100%;
	margin: 20px auto 0;
	display: flex;
	flex-wrap: wrap;
}

.achivements_cate_sec01_1,
.achivements_cate_sec01_2{
	width:100%;
	margin: 50px auto 0;
	border-bottom: 5px solid #F4F4F4;
}
.achivements_cate_sec01_3{
	width:100%;
	margin: 50px auto 0;
}
.achivements_cate_sec01_1_wrap,
.achivements_cate_sec01_2_wrap,
.achivements_cate_sec01_3_wrap{
	width: 100%;
	margin: 20px auto 0;
	display: flex;
	flex-wrap: nowrap;
}
.cate_wrap{
	width:23%;
	margin: 20px 10px;
}
.cate_wrap a{
	text-decoration: none!important;
}
.cate_thumnail{
	width: 100%;
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	height: 150px;
}
.cate_thumnail img{
	width:100%;
	transition:1s all;
}
.cate_thumnail img:hover{
	transform:scale(1.2,1.2);
	transition:1s all;
}
.seko_cate_ttl{
	font-weight: 400;
	color: #282828;
	font-size: 14px;
	margin-top: 10px;
	line-height: 1.5;
}
.btn_03 {
	display: block;
	margin: 30px auto 60px;
}
a.btn_03 {
	position: relative;    
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width:340px;
	padding: 0.25rem;
	font-weight: 700;
	border: 2px solid #003B82;
	color: #003B82;
	transition: 0.5s;
	font-size: 14px;
}
a.btn_03:hover {
	color: #fff;
	background: #003B82;
}
.pagenation{
	display: block;
	padding: 60px 0!important;
	margin:0 auto;
	text-align: center;
	color: #003B82;
}
.wp-pagenavi a, .wp-pagenavi span{
	background-color: #fff;
	text-decoration: none;
	padding: 8px 8px!important;
  border: 2px solid #003B82;

}

 /*ここからwp-pagenaviデザイン用CSS !!WP構築したら消すこと！*/

  .wp-pagenavi{text-align: center; }
   .wp-pagenavi .pages{
	 	.wp-pagenavi span, a{
    display: inline-block;
    margin: 4px;
    padding: 10px 12px;
    color: #fff;
    line-height: 1;
    font-size: 14px;
    text-decoration: none;
    background: #fff;
    border: 1px solid #003B82; 
  	}

  }
/*ここまでwp-pagenaviデザイン用CSS !!WP構築したら消すこと！*/
	

/* news_mainvisual */
/* メインビジュアル */
.news_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/news_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.news_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* news_cate_sec01 */
.news_cate_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto 100px;
}
.news_cate_sec01_wrap{
	width: 90%;
	margin: 50px auto 0px;
}

/* news_single_sec01*/
.news_single_sec01{
	margin: 0 auto;
}
.news_single_sec01_wrap{
	width: 90%;
	margin: 50px auto 60px;
}
.news_single_sec01_wrap ul{
	vertical-align: middle;	
}
li.single_date{
	font-size: 18px;
	float:left;
}
li.single_cate a{
	float:left;
	width: 120px;
	color: #fff;
	padding: 2px;
	font-size: 13px;
	text-align: center;
	background-color: #003B82;
	margin-left: 20px;	
	vertical-align: middle;
	text-decoration: none;
}
li.single_cate a:hover{
	transition: 0.5s;
	opacity: 0.8;
}
.single_sec01_contents{
	display: block;
	margin-top: 30px;
}
.single_sec01_contents.aligncenter{
	margin:0 auto!important;
	display:block;
}
.single_sec01_contents.alignright{
margin-left: auto;
        margin-right: 0;
        	display:block;
}
.single_sec01_contents.alignleft{
margin-right: auto;
        margin-left: 0;
        	display:block;
}
.single_sec01_contents p{
	line-height: 2;
}
.single_sec01_contents h3{
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 2.8;	
	margin-top: 20px;
}
.single_wrap01 strong{
	font-weight: 700;
}
.single_sec01_contents img{
	display: block;
	height:auto;
	margin: 60px auto!important;
	display: block;
}

/* privacy_mainvisual */
/* メインビジュアル */
.privacy_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/privacy-policy_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.privacy_main_ttl_wrap{
	width: 400px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* privacy_sec01 */
.privacy_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto 100px;
}
.privacy_ttl_wrap{
	width: 100%;
	margin: 30px 0 10px;
}
.privacy_ttl_number{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 40px;
	font-style: italic;	
	color: #003B82;	
	line-height: 1;	
	display: inline-block;
}
.privacy_ttl_jp{
	font-weight: 700;
	font-size: 26px;
	color: #003B82;	
	line-height: 1;	
	display: inline-block;
	margin-left:18px;
	letter-spacing: 1px;
}
.privacy_sec01 p{
	margin: 0;
	font-size: 14px;
}
.privacy_ttl_jp_subttl{
	font-weight: 700;
	font-size: 20px;
	color: #003B82;	
	line-height: 1;	
	margin: 50px 0 10px;
	letter-spacing: 1px;
}

/* contact_mainvisual */
/* メインビジュアル */
.contact_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/contact_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.contact_main_ttl_wrap{
	width: 300px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* contact_sec01 */
.contact_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}
.contact_sec01_b_txt{
	margin:0px;
	text-align: center;
	letter-spacing: 1px;
	font-weight: 700;
}
.contact_sec01 h4{
	font-size: 28px;
	font-weight: 700;
	color: #003B82;	
	text-align: center;
	margin:0 0 60px ;
}
.contact_sec01_txt{
	text-align: center;
	letter-spacing: 1px;
	margin: 0 0 100px;
}

.contact_sec01_wrap{
	border: 5px solid #CCD7E6;
	padding: 20px;
	width: 640px;
	margin: 25px auto;
}
.contact_sec01_logo{
	width: 336px;
	text-align: center;
	margin: 0 auto;
}
.contact_tel{
	font-weight: 700;
	font-size: 28px;
	color: #003B82;	
	text-align: center;
	margin: 0 0 5px;
	letter-spacing: 1px;
}
.contact_txt{
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	margin: 0;
	letter-spacing: 1px;
}
.contact_privacy_wrap{
	width: 90%;
	margin: 50px auto 0;
	border-top:1px solid #003B82;
}
.contact_privacy_ttl{
	font-size: 18px;
	font-weight: 700;
	color:#003B82;
	text-align: center;
	margin: 30px 0;
	letter-spacing: 1px;
}

.rule{
	width: 90%;
	margin: 0 auto;
	height: 210px;
	padding: 15px;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	margin-top: 30px;
	overflow-y: scroll;	
	font-size: 13px;
}
.contact_privacy{
	text-align: center;
	margin: 40px 0;
	font-size: 16px;
}
.contact_sec01 table{
	margin: 30px auto 0;
	width: 75%;
	font-size: 16px;
}

.contact_sec01 th{
	width: 30%;
	padding: 28px 20px;
	vertical-align: middle;
	font-weight: 400;	
}
.contact_sec01 td{
	width: 70%;
	padding: 28px 20px;
	vertical-align: middle;
}

.contact_sec01 th.date_1_2{
	padding: 15px 20px 0;
	vertical-align: middle;
	}

.contact_sec01 td.date_1_3{
	width: 72%;
	padding: 15px 20px;
	vertical-align: middle;
}

.required{
	font-family: 'Noto Sans JP', sans-serif;
  font-size:13px;
  padding: 2px 10px;
  background:#DB3131;
  color: #fff;
  margin-left: 1em; 
}
.contactform td p.fot30,.contactform th p.fot30{
	font-size: 14px;
}
.frm_button_wrp{
	width: 100%;
	text-align: center;
	margin: 50px 0 100px;
}
.frm_button{
width: 520px;
color:#fff;
font-weight: 700;
font-size: 18px;
background-color:#003B82;
padding: 24px;
margin: 0 auto;
display: inline-block;
text-decoration: none;
letter-spacing: 2px;
text-align: center;
border:none;
cursor: pointer;
position: relative;
margin: 0 10px;
}

.frm_button:hover{
	color: #fff;
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
}
.thx_button{
width: 520px;
color:#fff;
font-weight: 700;
font-size: 18px;
background-color:#003B82;
padding: 18px;
margin: 0 auto;
display: inline-block;
text-decoration: none;
letter-spacing: 2px;
text-align: center;
border:none;
cursor: pointer;
position: relative;
margin: 0 10px;
}
.thx_button a{
	text-decoration: none;
	color: #fff;
}
.thx_button:hover{
	color: #fff;
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
}
.arrow02 i{
	position: absolute;
  top:50%;
	transform:translateY(-50%);
	left:10px; 
	color: #fff;
	font-size:30px;
}
a.arrow02 i{
	position: absolute;
  top:50%;
	transform:translateY(-50%);
	left:10px; 
	color: #fff;
	font-size:30px;
}

.wpcf7-spinner{
	display: none!important;
}
.use_icon{
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.contactform input[type="text"],.contactform input[type="email"],.contactform input[type="tel"],
.contactform textarea{
  width: 100%;
  padding: 16px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: 0.25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
	font-size: 16px;
}
select{
  width: 30%;
  padding: 16px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: 0.25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
	font-size: 16px;
}

.contactform input[type="date"]{
	width: 100%;
  padding: 16px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: 0.25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08)!important;
	font-size: 16px;
}

.date_ttl{
	font-size: 22px;
}


.contact_sec01 p.error_messe{
	 color:#DB3131;
}





/* footer01 */
.footer01{
	max-width:100%;
	border-top:5px solid #F4F4F4;
	z-index: 1;
}
.footer_back_trapezoid_wrap{
	max-width:100%;
	background-image: url("../img/foot_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:left 30vw top 0;
  z-index: 0;
  overflow: hidden;
  height: 338px;	
}

.foot_logo_wrp{
	width: 78%;
	margin: 20px auto 0;
	display: flex;
	flex-wrap: nowrap;
}
.foot_logo img{
	width: 380px;
}
.foot_logo{
	width: 45%;
}
.foot_address{
	width: 45%;
	font-size: 14px;
	letter-spacing: 1px;	
	line-height: 1.6;
	margin-left: 45px;
}
.foot_address a{
	text-decoration: none!important;
}
.foot_address span{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 700;
	color: #003B82;	
}
.foot_wrp{
	width: 60%;
	margin: 25px auto 30px;
	display: flex;
	flex-wrap: nowrap;
}
.foot_wrp ul{
	width:50%;
}
.foot_wrp ul li{
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
}
.foot_wrp li i{
	font-size: 14px;
	color:#003B82;	
	margin-right: 0.5em;
}
.foot_wrp ul li a{
	text-decoration: none;
	color: #282828;
}
.footer_copy{
	width:100%;
	display: block;
	font-weight: 400;
	font-size: 12px;
	text-align:center;
	letter-spacing: 1px;
	padding-bottom: 15px;
	z-index: 1;
}

/*トップへ戻るボタン*/
.page_top {
	position: fixed;
	bottom: 0;
	right: 20px;
	padding-bottom: 20px;
	z-index: 1000;

}
body {
  position: relative;/*トップへ戻るボタンに必要な様です*/

}
