
@charset "UTF-8";
/* 共通style*/

body{
	font-family: sans-serif;
	overflow-x: hidden;

}

/* オープニングシャッター */

.wrapper::before{
  content: "";
  position: fixed;/*固定表示*/
  top:50vh;
  left: 0;
  width: 100vw;
  height: 50vh;
  z-index: 999; /*他のスタッキングコンテキストとかち合った時用*/
  background: #171c61; /*シャッターの色*/
  animation: min-anim .5s forwards; /*アニメーション付与*/
  animation-delay: 0.5s; /*好みで遅延*/
  transform-origin: bottom; /*変化の起点*/
}

.wrapper::after{
  content: "";
  position: fixed;/*固定表示*/
  top:0;
  left: 0;
  width: 100vw;
  height: 50vh;
  z-index: 999; /*他のスタッキングコンテキストとかち合った時用*/
  background: #171c61; /*シャッターの色*/
  animation: min-anim .5s forwards; /*アニメーション付与*/
  animation-delay: 0.5s; /*好みで遅延*/
  transform-origin: top; /*変化の起点*/
}

/*背景が縮むアニメーション*/
@keyframes min-anim{
  0% {
    transform: scaleY(1);/*画面全体を覆う*/
  }
  100% {
    transform: scaleY(0);/*高さ0*/
  }
}

.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#171c61;
  z-index:9999;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
}

.shutter {
  -webkit-animation: byeShutter 1.5s forwards;
          animation: byeShutter 1.5s forwards;
}

.shutter::before {
  -webkit-animation: shutterOpen 1.5s forwards;
          animation: shutterOpen 1.5s forwards;
}

@keyframes byeShutter {
  100% {
    display: none;
    z-index: -9999;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  30% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
/* オープニングシャッターEND */

/* 要素フェードイン */
.fadein {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 800ms;
	}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

	/* 2つ目の要素に200msのdelayをかける */
#effect2{
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
/* 3つ目の要素に400msのdelayをかける */
#effect3{
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}

/* 要素フェードインEND */

@media only screen and (max-width:800px){
	.wrapper{
		width:100%;
		max-width: 800px;
		margin: 0 auto;
		overflow-x: hidden;
		overflow: hidden;
	}
}


.page_wrapper{
	width:100%;
	background: #E2E2EC;
	margin:0;
	padding:0 0 80px 0;
	overflow-x: hidden;
}

.page_wrapper2{
	width:100%;
	background: #fff;
	margin:0;
	padding:0 0 80px 0;
}

.sp{
	display: none;
}

@media only screen and (max-width:800px){
.sp{
		display: initial;
}

.sp a:hover{
		opacity: initial;
}

.pc{
	display: none;
}
}

body,p,h1{
	margin: 0;
	padding: 0;
}

p{
	font-size: 17px;
	line-height: 1.6em;
}

.clear{
	clear:both;
}


ol, ul {
  list-style: none;
	box-sizing: border-box;
}

img{
	vertical-align: bottom;
}

a{
    text-decoration: none;
		margin: 0;
		padding: 0;
		color:#000;
}

.contents{
	width:1240px;
	margin:20px auto 0 auto;
}

@media only screen and (max-width:800px){
.contents{
	width:98%;
	margin:0 auto;
	float: none;
}
}

/* ヘッダー */

#header{
	width:100%;
	height:80px;
	position: absolute;
	top:0;
	box-sizing: border-box;
}

.header_area{
	width:1240px;
	margin: 0 auto;
}

#header_logo{
	width:300px;
	margin:20px 0 0 0;
	float: left;
}

@media only screen and (max-width:800px){
#header{
	width:100%;
	height:auto;
	padding:20px 0;
	position: absolute;
	top:0;
}

#header_logo{
	width:60%;
	max-width:280px;
	margin:0 0 0 20px;
	float: initial;
}
}


.header_link_area{
	font-family: 'Noto Sans JP', sans-serif;
	margin:-50px 0 0 600px;
	float: left;
	font-weight: 400px;
}

.header_link{
	margin-left: 20px;
	position: relative;
  display: inline-block;
	color: #fff;
}

.header_link_area:first-child{
	margin-left: 0;
}

.header_link::after{
	position: absolute;
  bottom: -10px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #B6000F;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .2s;
}

.header_link:hover::after{
	transform: scale(1, 1);
}

.header_contact{
	padding: 10px 20px;
	text-align: center;
	background: #B6000F;
	color: #fff;
	margin-left:50px;
}

.header_contact:hover{
	opacity: 0.8;
}

/* ヘッダーEND */

/* ヘッダー固定ページ */
.page_title_wrap{
	width:100%;
	height:528px;
	background:url(../images/business_details/header.png)no-repeat;
	background-position: center bottom;
	padding-top: 150px;
	box-sizing: border-box;
}

@media only screen and (max-width:800px){
.page_title_wrap{
	width:100%;
	height:528px;
	background:url(../images/SP/business_details/header.png)no-repeat;
	background-position: center bottom;
	padding-top: 150px;
	box-sizing: border-box;
}
}

.page_title{
	font-size: 45px;
	font-family: 'Noto Sans JP', sans-serif;
	color:#fff;
	text-align: center;
}

.page_overview{
	width:95%;
	max-width: 900px;
	margin: 30px auto 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #fff;
}

.page_contents_title{
	width:300px;
	margin: 0 auto;
	font-size: 45px;
	font-family: 'Noto Sans JP', sans-serif;
	color:#171c61;
	text-align: center;
}

@media only screen and (max-width:800px){
.page_contents_title{
	width:initial;
	text-align: center;
	font-size: 28px;
	font-family: 'Noto Sans JP', sans-serif;
	color:#171c61;
	text-align: center;
}

.page_title{
	font-size: 28px;
	font-family: 'Noto Sans JP', sans-serif;
	color:#fff;
	text-align: center;
}

}

.title_border{
	width:80px;
	height:5px;
	border-bottom:5px solid #B6000F;
	padding:0;
	margin: 0 auto;
}
/* ヘッダー固定ページEND */

/* フッター */

.footer{
	width:100%;
	background:#EBEBEC;
	padding:20px 0 10px 0;
}

.footer_area{
	width:1240px;
	margin: 0 auto;
}

.footer_logo_area{
	width:520px;
	float: left;
}

.footer_logo{
	display: block;
	width:300px;
	height:66px;
	background: url(../images/top/footer/footer_logo.png) no-repeat;
	background-size: contain;
}

.footer_text{
	padding-left:40px;
	margin-top: 10px;
}

.footer_nav{
	float: right;
	margin-right: 50px;

}

.footer_menu{
	display: block;
	margin-top: 15px;
}

.footermenu_text{
	color: #005BAC;
	margin-left: 10px;
	line-height:10px;
}

.footermenu_text img{
	vertical-align: middle;
}

.footermenu_text span{
	vertical-align: middle;
}

.copy{
	margin-top: 20px;
	text-align: center;
}

@media only screen and (max-width:800px){
	.sp_footer_navarea{
		width:100%;
		margin: -30px 0 0 0 ;
	}

	.sp_footer_nav{
		display: block;
		width:100%;
		background: #CFD0D0;
		border-bottom: 1px solid #fff;
		font-size:25px;
		padding:10px 0 10px 20px;
		color: #005bac;
		box-sizing: border-box;
	}

.footer_nav_icon{
	color:#ed3242;
	font-size: 15px;
	vertical-align: middle;
}

.sp_footer{
	width:100%;
	background: #CFD0D0;
	padding:30px 0;
	margin-bottom: -20px;
}

.sp_footer_logo{
	width:80%;
	max-width: 550px;
	margin:0 auto;
}

.sp_footer_text1{
	font-size: 20px;
	font-weight:bold;
	text-align: center;
	margin-top: 10px;
}

.sp_footer_text2{
	text-align: center;
}

}

/* フッターEND */

/* spバーガーメニュー */

.menu_btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #f5f5f5;
    position: absolute;
}
.menu_btn span:before {
    bottom: 8px;
}
.menu_btn span:after {
    top: 8px;
}

#menu_btn_check{
	display: none;
}

#menu_btn_check:checked ~ .menu_btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu_btn_check:checked ~ .menu_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
		background-color: #171c61;
}
#menu_btn_check:checked ~ .menu_btn span::after {
    top: 0;
    transform: rotate(-45deg);
		background-color: #171c61;
}

.spmenu_content {
	width:-webkit-calc(100% + 40px) ;
	width: calc(100% + 40px) ;
    height: 100%;
    position: fixed;
    top: -20px;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
		background: #12124E;
	  color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
		overflow-y: scroll;
}

.spmenu_content a{
	display: block;
}

#menu_btn_check:checked ~ .spmenu_content {
    left: -40px;/*メニューを画面内へ*/

}

/* バーガーメニューアコーディオン */

.sp_menu_item {
  background: #12124E;
  color: #fff;
  cursor: pointer;
  display: block;
  margin-bottom: 1px;
	border-bottom: 1px solid #fff;
}

.spmenu_logoarea{
	width:100%;
	padding: 20px 0;
	background: #fff;
}

.spmenu_logoarea2{
	width:100%;
	padding: 20px 0;
}

.spmenu_logo{
	width:50%;
	max-width:355px;
	margin: 0 0 0 5%;
}

.spmenu_logo2{
	width:50%;
	max-width:355px;
	margin: 0 auto;
}

.sp_menu_item_link2 {
  color: #fff;
	font-weight: bold;
  display: block;
  padding:18px 1rem;
  position: relative;
	text-decoration: none;
}

.spmenu_arrow{
	width:30px;
	position: relative;
	top:-45px;
	left:88%;
	margin-bottom: -25px;
}
/* バーガーメニューアコーディオンEND */
/* spバーガーメニューEND */
/* ヘッダーEND */

/* 共通スタイルEND */

/* TOP */

/* メインビジュアル */
.main_visual{
	width:100%;
	height:875px;
	background: url(../images/top/header/main_visual.jpg) no-repeat;
	background-position: center top;
}

.main_decoration1{
	width:100%;
	height:260px;
	background: url(../images/top/header/header_main_visual_1.png) no-repeat;
	background-position: center top;
	position: absolute;
	top:0;
}

.main_decoration2{
	width:100%;
	height:199px;
	background: url(../images/top/header/header_main_visual_2.png) no-repeat;
	background-position: center top;
	position: absolute;
	top:678px;
}

.main_catch{
	width:660px;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
	font-size: 55px;
	color:#171c61;
	position: absolute;
	top:380px;
	left: -webkit-calc(50% - 330px) ;
  left: calc(50% - 330px) ;
	text-shadow: 1px 2px 2px #FFF;
}

@media only screen and (max-width:800px){
.main_visual{
	width:100%;
	height:750px;
	background: url(../images/SP/top/header/main_visual.jpg) no-repeat;
	background-position: center bottom;
	position: relative;
}

.main_decoration1{
	width:100%;
	height:236px;
	background: url(../images/SP/top/header/header_main_visual_1.png) no-repeat;
	background-position: center bottom;
	position: absolute;
	top:0;
}

.main_decoration2{
	width:100%;
	height:149px;
	background: url(../images/SP/top/header/header_main_visual_2.png) no-repeat;
	background-position: center top;
	position: absolute;
	top:602px;
}

.main_catch{
	width:95%;
	margin: 0 auto;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
	font-size: 28px;
	color:#171c61;
	position: absolute;
	top:250px;
	left: 2.5%;
	text-align: center;
	text-shadow: 1px 2px 2px #FFF;
}
}

@media only screen and (max-width:365px){
	.main_catch{
		font-size: 25px;
		text-shadow: 1px 2px 2px #FFF;
	}
}

/* NEWS */
.news_area{
	width:100%;
	max-width:1240px;
	margin:0 auto;
	background: #fff;
	position: relative;
	top:650px;
	padding:2px 0 2px 0;
}

.news_icon{
	width:100px;
	text-align: center;
	background: #12124D;
	padding:12px 40px 12px 40px;
	margin:-23px 50px 0 -40px;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	float: left;
}

.news_link{
	display: block;
	width:1100px;
}

.news_area ul{
	width:100%;
}

.news_area li{
	margin-top: 20px;
	padding: 0 0 0px 0;

}

span.news_ymd {
  font-size: 18px;
}

span.news_title {
  font-size: 18px;
}

span.newsCate {
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  border-radius: 10px;
  -webkit-border-radius: 10px;/* for Safari and Chrome 対応*/
  -moz-border-radius: 10px;/* for Firefox 対応*/
}

@media only screen and (max-width:800px){
	.news_area{
		width:95%;
		max-width:800px;
		margin:0 auto;
		background: #fff;
		position: relative;
		top:500px;
		overflow: hidden;
	}

	.news_icon{
		width:95%;
		text-align: center;
		background: #171c61;
		margin:0 auto;
		padding: 10px 0;
		font-size: 30px;
		font-weight: bold;
		color: #fff;
		box-sizing: border-box;
		position: absolute;
		top:440px;
		left:2.5%;
	}

	.news_area ul{
		width:100%;
	}

	.news_area li{
		margin-top: 20px;
		padding: 0;
	}

	.news_link{
		width:100%;
	}

	span.news_ymd {
	  font-size: 16px;
	}

	span.news_title {
	  font-size: 16px;
	}

	span.newsCate {
	  margin-left: 20px;
	  margin-right: 0;
	  padding-left: 10px;
	  padding-right: 10px;
	  font-size: 16px;
	  border-radius: 10px;
	  -webkit-border-radius: 10px;/* for Safari and Chrome 対応*/
	  -moz-border-radius: 10px;/* for Firefox 対応*/
	}
}

/* NEWS END */




/* メインビジュアルEND */

/* TOP */

.top_introduction{
	width:100%;
	height:936px;
	background: url(../images/top/imai_global_works/content_bg_1.png) no-repeat;
	background-position: center;
	margin: 100px 0 0 0;
}

.top_greeting{
	padding-top: 50px;
}

.top_recruit{
	padding:100px 0 0 0;
}

.top_greeting_textarea,
.top_recruit_textarea{
	width:550px;
	float: left;
	margin-left: 20px;
}

.top_greeting_textarea h2,
.top_recruit_textarea h2{
	text-align: center;
	color:#171c61;
	font-size:40px;
	margin: 0;
	padding:0;
}

.top_greeting_textarea p{
	margin-top: 10px;
}

.top_recruit_textarea p{
	margin-top: -80px;
}

.president_image,
.recruit_image{
	width:550px;
	float: left;
	margin-left: 55px;
}

@media only screen and (max-width:800px){
	.top_introduction{
		width:100%;
		max-width: 800px;
		height:1246px;
		background: url(../images/SP/top/imai_global_works/content_bg_1.png) no-repeat;
		background-position: center;
		margin: 400px 0 0 0;
	}

	.top_greeting{
		width:95%;
		max-width: 800px;
		margin: 0 auto;
	}

	.president_image{
		width:100%;
		margin: -400px auto 0 auto;
		float: initial;
	}

	.top_recruit{
		padding:80px 0 0 0;
		width:95%;
		margin: 0 auto;
	}


	.recruit_image{
		width:616px;
		float: left;
		margin: 0;
	}

	.top_greeting_textarea,
	.top_recruit_textarea{
		width:100%;
		float: initial;
		margin:30px 0 0 0;
	}

	.top_greeting_textarea h2,
	.top_recruit_textarea h2{
		text-align: center;
		color:#171c61;
		font-size:28px;
		margin: 0;
		padding:0;
	}

	.top_greeting_textarea p{
		margin-top: 10px;
	}

	.top_recruit_textarea p{
		margin-top: 20px;
	}

	.recruit_image{
		width:100%;
		float: initial;
}
}

.top_contents_wrap{
	width:100%;
	height:850px;
	background:url(../images/top/content/content_bg.jpg) no-repeat;
	background-position: center bottom;
	margin-bottom: 50px;
}

.top_contents_wrap_bg{
	width:100%;
	height:850px;
	padding: 80px 0 0 0;
	background:rgba(27,91,181,0.55);
	position: relative;
	box-sizing: border-box;

}

.contents_detail{
	width:1240px;
	margin: 0 auto;
	box-sizing: border-box;
}


h3.title{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 50px;
	color:#fff;
	text-align: center;
	margin: 0 0 50px 0 ;
	padding: 0;
}

.contents_detailarea1{
	width:380px;
	float: left;
}

.contents_detailarea2{
	width:380px;
	float: left;
	margin-left: 50px;
}

.contents_title{
	width:100%;
	padding:15px 0;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	color: #fff;
	background-color: #171c61;
}

@media only screen and (max-width:800px){
.top_contents_wrap{
	width:100%;
	height:auto;

	box-sizing: border-box;
	background:url(../images/SP/top/content/content_bg_2_original_image.jpg) no-repeat;
	background-position: center bottom;
	margin:10% auto 50px auto;
}

.top_contents_wrap_bg{
	width:100%;
	height:auto;
	padding: 50px 0;
	background:rgba(27,91,181,0.55);
	position: relative;
	box-sizing: border-box;
}
}

@media only screen and (max-width:800px){
.contents_detail{
	width:95%;
	max-width: 600px;
	margin: 0 auto;
}


h3.title{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size:28px;
	color:#fff;
	text-align: center;
	margin: 0 0 50px 0 ;
	padding: 0;
}

.contents_detailarea1{
	width:100%;
	float: initial;
}

.contents_detailarea2{
	width:100%;
	float: initial;
	margin:80px 0 0 0;
}

.contents_title{
	width:100%;
	padding:15px 0;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	color: #fff;
	background-color: #171c61;
}
}

.top_contact_wrap{
	width:100%;
}

.top_contact_left{
	width:41.6%;
	max-width: 800px;
	height:400px;
	background:url(../images/top/contact/contact_image.png) no-repeat;
	background-position: left;
	float: left;
}

.top_contact_right{
	width:58.4%;
	height:400px;
	background:linear-gradient(to right, #171c61, #005bac);
	float: left;
	padding:50px 0 0 60px;
	box-sizing: border-box;
}

.top_contact_title{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	color: #fff;
}

.top_contact_text{
	color: #fff;
	margin-top: 30px;


}

@media only screen and (max-width:800px){
.top_contact_wrap{
	width:100%;
	margin: 0px 0 0 0;
}

.top_contact_left{
	width:100%;
	max-width: 800px;
	height:300px;
	background:url(../images/top/contact/contact_image.png) no-repeat;
	background-position: center;
	float: initial;
}

.top_contact_right{
	width:100%;
	height:auto;
	background:linear-gradient(to right, #171c61, #005bac);
	float: initial;
	padding:20px 0 50px 0;
}

.top_contact_title{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	color: #fff;
	text-align: center;
}

.top_contact_text{
	color: #fff;
	width:95%;
	margin: 30px auto 0 auto;
}
}
/* TOP END */

/* BUSINESS END */
.business_contents{
	width:1240px;
	padding:50px 30px;
	background: #fff;
	margin: 50px auto 0 auto;
	box-sizing: border-box;
}

.business_title{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	color: #171c61;
	font-weight: 400;
}

.business_text{
	width:95%;
	margin: 30px 0 30px 30px;
}

.business_imgarea{
	width:1084px;
	margin: 0 auto;
}

.business_img:first-child{
	margin-left: 0;
}

.business_img{
	width:256px;
	float: left;
	margin-left: 20px
}

@media only screen and (max-width:800px){
.business_contents{
	width:95%;
	padding:20px 20px 30px 20px;
	background: #fff;
	margin: 50px auto 0 auto;
	box-sizing: border-box;
}

.business_title{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 28px;
	color: #171c61;
	font-weight: 400;
}

.business_text{
	width:100%;
	margin: 30px 0 0 0;
}

.business_imgarea{
	width:100%;
	margin: 0 auto;
}

.business_img:nth-child(2n+1){
	margin-left: 0;
}

.business_img{
	width:47.5%;
	float: left;
	margin-left: 5%;
	margin-top:30px;
}
}
/* BUSINESS END */

/* ABOUT */
.about_contents{
	width:1240px;
	padding:50px 50px;
	background: #fff;
	margin: 50px auto 0 auto;
	box-sizing: border-box;
}

.about_title{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	font-weight: 400;
}

#about_table{
	margin: 20px 0 0 0;
}

.about_td1{
	font-size: 18px;
	text-align: center;
}

.about_td2{
	font-size: 18px;
	padding-left: 50px;
}

#greeting{
	width:100%;
	margin:50px 0 0 0;
}

.greeting_bg{
	width:58%;
	height:520px;
	background: #171c61;
	float: left;
}

.greeting_bg2{
	width:152px;
	height:520px;
	background:url(../images/company_guide/president_coment_bg.png)no-repeat;
	float: left;
}

.greeting_textarea{
	float: right;
	width:650px;
	margin: 30px 80px 0 0;
}

.greeting_title{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 35px;
	font-weight: 400;
	color:#fff;
}

.greeting_text{
	color: #fff;
	line-height: 1.8em;
}

.president_bg{
	width:795px;
	height:520px;
	position: absolute;
	margin: 15px 0 0 65px;
	background:url(../images/company_guide/president_image.png)no-repeat;
}

@media only screen and (max-width:800px){
	.about_contents{
		width:95%;
		padding:30px 20px;
		background: #fff;
		margin: 50px auto 0 auto;
		box-sizing: border-box;
	}

	.about_title{
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 28px;
		font-weight: 400;
	}

	#about_table{
		margin: 20px 0 0 0;
	}

	.about_td1{
		width:18%;
		font-size: 16px;
		text-align: center;
	}

	.about_td2{
		font-size: 16px;
		padding-left: 20px;
	}

	#greeting{
		position: relative;
		margin-bottom:-100px;
	}

	.greeting_bg{
		width:-webkit-calc(100% - 165px) ;
	  width: calc(100% - 165px) ;
		height:auto;
		background: #171c61;
		float: initial;
		position: relative;
		padding-bottom:100px;
	}

	.greeting_bg2{
		width:165px;
		height:100%;
		background:url(../images/SP/company_guide/president_coment_bg.png)no-repeat;
		float: initial;
		position: absolute;
		right:-163px;
		top:0;
		z-index: 0;


	}

	.greeting_textarea{
		width:120%;
		float: initial;
		margin:0 auto;
		position: relative;
		top:30px;
		left:30px;
		z-index: 1;

	}

	.greeting_title{
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 20px;
		font-weight: 400;
		color:#fff;
	}

	.greeting_text{
		color: #fff;
		line-height: 1.8em;
		font-size: 15px;
		line-height: 1.5em;
	}

	.president_bg{
		width:100%;
		max-width: 500px;
		height:auto;
		background:initial;
		float:right;
		position: relative;
		margin:-50px 0 0 0;
	}
}
/* ABOUT END */



/* 採用情報 */

.recruit_contents{
	margin-top: 80px;
}

.recruit_title{
	padding:5px 0 5px 20px;
	border-left: 5px solid #171c61;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 35px;
	font-weight: 400;
	color:#171c61;
	box-sizing: border-box;
}

.recruit_text{
	margin-top:20px;
	width:92%;
	line-height: 1.8em;
}

.recruit_img{
	width:1200px;
	margin: 30px auto;
}

.voice{
	/* 斜め配置 clip-path */
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  background-color:#D3D5E1;
  padding: 200px 0 200px 0;
	margin-top: 80px;
	box-sizing: border-box;
}

.voice_contnets{
	width:1240px;
	margin: 80px auto 0 auto;
	padding:30px;
	box-sizing: border-box;
	background: #fff;
}

.voice_image{
	width:256px;
	float: left;
	box-sizing: border-box;
}

.voice_text{
	width:-webkit-calc(100% - 286px) ;
  width: calc(100% - 286px) ;;
	margin-left: 30px;
	float: left;
	box-sizing: border-box;
}

#recruit_table{
	width:1000px;
	margin: 80px auto 0 auto;
	border-collapse: separate;
}

.recruit_td1{
	background: #D3D5E1;
	width:30%;
	padding:15px 0;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color:#171c61;
	box-sizing: border-box;

}

.recruit_td2{
	background: #fff;
	width:70%;
	padding:15px 0 15px 30px;
	box-sizing: border-box;
	border: 1px solid #DDDDDD;

}

@media only screen and (max-width:800px){

.recruit_contents{
	margin: 80px auto 0 auto;
	width:95%;
}

.recruit_title{
	padding:5px 0 5px 20px;
	border-left: 5px solid #171c61;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 25px;
	font-weight: 400;
	color:#171c61;
	box-sizing: border-box;
}

.recruit_text{
	margin:20px auto 0 auto;
	width:100%;
	line-height: 1.8em;
}

.recruit_img{
	width:100%;
	margin: 30px auto;
}

.voice{
	/* 斜め配置 clip-path */
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  clip-path:       polygon(0 0, 100% 70px, 100% 100%, 0 3175px);
  background-color:#D3D5E1;
  padding: 200px 0 200px 0;
	box-sizing: border-box;
}

.voice_contnets{
	width:95%;
	margin: 80px auto 0 auto;
	padding:50px 0;
	box-sizing: border-box;
	background: #fff;
}

.voice_image{
	width:256px;
	margin: 0 auto;
	float: initial;
	box-sizing: border-box;
}

.voice_text{
	width:90%;
	margin:30px auto 0 auto;
	float: initial;
	box-sizing: border-box;
	line-height: 1.8em;
}

#recruit_table{
	width:95%;
	margin: 80px auto 0 auto;
	border-collapse: separate;
}

.recruit_td1{
	background: #D3D5E1;
	width:30%;
	padding:15px 0;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color:#171c61;
	box-sizing: border-box;

}

.recruit_td2{
	background: #fff;
	width:70%;
	padding:15px 0 15px 30px;
	box-sizing: border-box;
	border: 1px solid #DDDDDD;

}
}

/* 採用情報END */

/* お問い合わせ */

.contact_table{
	width:1000px;
	margin: 80px auto 0 auto;
	border-collapse: collapse;

}

.contact_td1{
	background: #D3D5E1;
	width:25%;
	padding:15px 0 15px 15px;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color:#171c61;
	box-sizing: border-box;
	border: 1px solid #171c61;
	border-right: none;
}

.contact_td2{
	width:5%;
	background: #D3D5E1;
	border: 1px solid #171c61;
	border-right: none;
	border-left: none;
}

.contact_td2 span{
	background: red;
	padding: 3px 8px ;
	color:#fff;
	font-size: 12px;
}

.contact_td3{
	background: #fff;
	width:70%;
	padding:15px 0 15px 30px;
	box-sizing: border-box;
	border: 1px solid #171c61;

}

.contact_select{
	width:30%;
	padding:10px 5px;
}

.last_name{
	width:30%;
	margin-right: 20px;
	padding:10px 5px;
}

.first_name{
	width:30%;
	padding:10px 5px;
}

.company{
	width:90%;
	padding:10px 5px;
}

.address1,.address2{
	width:30%;
	padding:10px 5px;
	margin-bottom: 20px;
}

.address3,.address4{
	width:79.5%;
	padding:10px 5px;
	margin-bottom: 20px;
}

.tel_number{
	width:90%;
	padding:10px 5px;
}

.email{
	width:90%;
	padding:10px 5px;
}

.contact_contents{
	width:90%;
}

.submit{}

@media only screen and (max-width:800px){
	.contact_table{
		width:95%;
		margin: 80px auto 0 auto;
		border-collapse: collapse;
	}

	.contact_td1{
		background: #D3D5E1;
		width:21%;
		padding:15px 0 15px 5px;
		text-align: left;
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 15px;
		color:#171c61;
		box-sizing: border-box;
		border: 1px solid #171c61;
		border-right: none;
	}

	.contact_td2{
		width:12%;
		background: #D3D5E1;
		border: 1px solid #171c61;
		border-right: none;
		border-left: none;
	}

	.contact_td2 span{
		background: red;
		padding: 3px 8px ;
		color:#fff;
		font-size: 12px;
	}

	.contact_td3{
		background: #fff;
		width:65%;
		padding:15px 0 15px 5px;
		box-sizing: border-box;
		border: 1px solid #171c61;
		font-size: 13px

	}

	.contact_select{
		width:95%;
		padding:5px 5px;
	}

	.last_name{
		width:30%;
		margin-right: 10px;
		padding:10px 5px;
	}

	.first_name{
		width:30%;
		padding:10px 5px;
	}

	.company{
		width:90%;
		padding:10px 5px;
	}

	.address1{
		width:30%;
		padding:10px 5px;
		margin-bottom: 20px;
	}

	.address2{
		width:50%;
		padding:10px 5px;
		margin-bottom: 20px;
	}

	.address3,.address4{
		width:79.5%;
		padding:10px 5px;
		margin-bottom: 20px;
	}

	.tel_number{
		width:90%;
		padding:10px 5px;
	}

	.email{
		width:90%;
		padding:10px 5px;
	}

	.contact_contents{
		width:90%;
	}

	.submit{}
}

/* お問い合わせEND */
