@charset "UTF-8";

@import url(reset.css);

* html body {     
    background:url(null) fixed;
    width: 100%;
}  
html,body {
	-webkit-text-size-adjust: 100%;
}
body {
	margin:0;
	padding:0;
	color: #2b2b2b;
	background-color: #fff;
	font-family: "Noto Sans JP";
	animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

html {
	overflow-x:hidden;
} 

a {
	color: #1c4e93;
	text-decoration: none;
}
a:hover {
	color: #1c4e93;
	text-decoration: underline;
}

#wrapper {
  overflow: hidden;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1.5s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1.5s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*----------------------------------------------------------------

	header style

----------------------------------------------------------------*/
header {
	background: url(../img/heade_bg.jpg) center center / cover no-repeat fixed;
	width: 100vw;
	height: 100vh;
	text-align: center;
	position: relative;
}
header.recruit {
	background: url(../img/recruit_bg_02.jpg) center center / cover no-repeat fixed;
	width: 100vw;
	height: 100vh;
	text-align: center;
	position: relative;
}
header.achievements {
	background: url(../img/header_img_01.png) center center / cover no-repeat;
	width: 100vw;
	height: 400px;
	text-align: center;
	position: relative;
}
header .inner {
	padding: 40px;
}
header h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 48px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
header.achievements h2 {
	position: absolute;
	top: 55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 44px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
header.achievements h2 span {
	display: block;
	margin-top: 60px;
}
header.achievements h2:before {
	content: '';
	position: absolute;
	bottom: 70px;
	display: inline-block;
	width: 120px;
	height: 2px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #FFF;
}
header .scroll a {
	padding-top: 60px;
	position: absolute;
	color: #fff;
	bottom: 0px;
	left: 48%;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
}
header .scroll a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 46px;
	height: 46px;
	margin-left: -23px;
	border: 1px solid #fff;
	border-radius: 100%;
	box-sizing: border-box;
}
header .scroll a span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: '';
	width: 16px;
	height: 16px;
	margin: -12px 0 0 -8px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-sizing: border-box;
}
header .scroll a span::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 44px;
	height: 44px;
	box-shadow: 0 0 0 0 rgba(255,255,255,.1);
	border-radius: 100%;
	opacity: 0;
	-webkit-animation: sdb 3s infinite;
	animation: sdb 3s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*----------------------------------------------------------------

	見出し style

----------------------------------------------------------------*/
nav {
	padding: 20px 0;
	background-color: rgba(255,255,255,0.9);
}
nav ul {
	margin: 0 auto;
	width: 1034px;
	font-size: 16px;
}
nav li {
	padding: 0 25px;
	display: inline-block;
}
nav li:last-child {
	padding: 0;
}
nav li a {
	height: 40px;
	line-height: 40px;
	position: relative;
	display: inline-block;
	transition: .3s;
}
nav li a:hover {
	color: #143979;
	text-decoration: none;
}
nav li a::after {
	position: absolute;
	bottom: .3em;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #143979;
	opacity: 0;
	transition: .3s;
}
nav li a:hover::after {
	bottom: 0;
	opacity: 1;
}
nav li a.btncontact {
	padding: 0 25px;
	color: #fff;
	background-color: #143979;
}
nav li a.btncontact:hover {
	background-color: #516c9c;
}
nav li a.btncontact:hover::after {
	bottom: 0;
	opacity: 0;
}
.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
}


/*----------------------------------------------------------------

	見出し style

----------------------------------------------------------------*/
h3{
	position: relative;
	display: block;
	margin-bottom: 40px;
	padding-bottom: 10px;
	text-align: center;
}
h3:before {
	content: '';
	position: absolute;
	bottom: -10px;
	display: inline-block;
	width: 120px;
	height: 2px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #143979;
}


/*----------------------------------------------------------------

	overview style

----------------------------------------------------------------*/
section.overview {
	padding: 100px 0;
}
.overview h4 {
	margin-bottom: 40px;
	color: #143979;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.overview .text_box {
	margin-bottom: 80px;
	font-size: 16px;
	line-height: 36px;
	text-align: center;
}
.overview .point_01 {
	margin-bottom: 30px;
	padding: 70px 0 0;
	height: 444px;
	background: url(../img/point_img_01.jpg) right center no-repeat;
	background-size: cover;
}
.overview .point_01 h5.no01 {
	margin-bottom: 30px;
	padding-top: 90px;
	font-size: 40px;
	line-height: 56px;
	text-align: left;
	background: url(../img/point_no_01.png) left top no-repeat;
}
.overview .point_02 {
	margin-bottom: 30px;
	padding: 70px 0 0;
	height: 444px;
	text-align: right;
	background: url(../img/point_img_02.jpg) left center no-repeat;
	background-size: cover;
}
.overview .point_02 h5.no02 {
	margin-bottom: 30px;
	padding-top: 90px;
	font-size: 40px;
	line-height: 56px;
	text-align: right;
	background: url(../img/point_no_02.png) right top no-repeat;
}
.overview .point_03 {
	padding: 70px 0 0;
	height: 444px;
	background: url(../img/point_img_03.jpg) right center no-repeat;
	background-size: cover;
}
.overview .point_03 h5.no03 {
	margin-bottom: 30px;
	padding-top: 90px;
	font-size: 40px;
	line-height: 56px;
	text-align: left;
	background: url(../img/point_no_03.png) left top no-repeat;
}
.overview .inner {
	margin:0 auto;
	width: 1000px;
	color: #fff;
}
.overview .point_01 p,
.overview .point_03 p {
	padding-right: 42%;
	line-height: 36px;
	text-shadow: 2px 4px 3px rgba(67,97,148,0.3);
}
.overview .point_02 p {
	padding-left: 42%;
	line-height: 36px;
	text-align: left;
	text-shadow: 2px 4px 3px rgba(67,97,148,0.3);
}


/*----------------------------------------------------------------

	Movie style

----------------------------------------------------------------*/
section.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
section.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


/*----------------------------------------------------------------

	Equipment style

----------------------------------------------------------------*/
section.equipment {
	padding: 100px 0;
}
.equipment h4 {
	margin-bottom: 40px;
	color: #143979;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.equipment .text_box {
	margin-bottom: 60px;
	font-size: 16px;
	line-height: 36px;
	text-align: center;
}
.pattern {
    margin: 0 auto 10px;
	width: 1000px;
	overflow: hidden;
}
.pattern div {
	margin-bottom: 10px;
	float: left;
	overflow: hidden;
	position: relative;
	width: calc((100% - 40px) / 4);
	border: 1px solid #efefef;
}
.pattern_1col {
    margin: 0 auto;
	width: 1000px;
	overflow: hidden;
}
.pattern_1col div {
	margin-bottom: 15px;
	overflow: hidden;
	position: relative;
	border: 1px solid #efefef;
}
.pattern_2col {
    margin: 0 auto;
	width: 1000px;
	overflow: hidden;
}
.pattern_2col div {
	margin-bottom: 15px;
	float: left;
	overflow: hidden;
	position: relative;
	width: calc((100% - 20px) / 2);
	border: 1px solid #efefef;
}
.pattern_3col {
    margin: 0 auto;
	width: 1000px;
	overflow: hidden;
}
.pattern_3col div {
	margin-bottom: 15px;
	float: left;
	overflow: hidden;
	position: relative;
	width: calc((100% - 45px) / 3);
	border: 1px solid #efefef;
}
.pattern3col {
    margin: 0 auto 20px;
	width: 740px;
	overflow: hidden;
}
.pattern3col div {
	margin-bottom: 10px;
	float: left;
	overflow: hidden;
	position: relative;
	width: calc((100% - 38px) / 3);
	border: 1px solid #efefef;
}
.pattern div:not(:first-child),
.pattern3col div:not(:first-child) {
	margin-left: 10px;
}
.pattern_2col div:nth-child(even) {
	margin-left: 15px;
}
.pattern_3col div:nth-child(2),
.pattern_3col div:nth-child(3),
.pattern_3col div:nth-child(5),
.pattern_3col div:nth-child(6) {
	margin-left: 19px;
}
.pattern img,
.pattern_1col img,
.pattern_2col img,
.pattern_3col img,
.pattern3col img {
	max-width :100%;
	max-height: 100%;
	object-fit: cover;
}
.pattern a img,
.pattern_1col a img,
.pattern_2col a img,
.pattern_3col a img,
.pattern3col a img {
	-moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
}
.pattern a:hover img,
.pattern_1col a:hover img,
.pattern_2col a:hover img,
.pattern_3col a:hover img,
.pattern3col a:hover img {
	-moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
	-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.pattern .caption,
.pattern_1col .caption,
.pattern_2col .caption,
.pattern_3col .caption,
.pattern3col .caption {
    position:absolute;
    left:0;
    bottom:0px;
	width: 100%;
    min-height: 70px;
    color:#fff;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	background-color: rgba(44, 94, 153, 0.7);
}
.pattern div:focus,
.pattern_1col div:focus,
.pattern_2col div:focus,
.pattern_3col div:focus,
.pattern3col div:focus {
  outline: none;
}
.equipment center {
	margin: 0 auto 40px;
	padding: 10px 0;
	width: 996px;
	clear: both;
	color:#fff;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
	background-color: rgba(44, 94, 153, 1);
}



/*----------------------------------------------------------------

	Achievements style

----------------------------------------------------------------*/
section.achievements {
	padding: 100px 0;
	background-color: #143979;
	background-size: cover;
}
.achievements h3:before {
	background-color: #fff;
}
.achievements h4 {
	margin-bottom: 40px;
	color: #fff;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.achievements .text_box {
	margin-bottom: 40px;
	color: #fff;
	font-size: 16px;
	line-height: 36px;
	text-align: center;
}
.achievements .thumb-item {
	max-width: 760px;
	margin: 0 auto 10px;
	padding: 0 5px;
}
.achievements .thumb-item img {
	width: 760px;
}
.achievements .thumb-item .caption {
    padding-right: 20px;
    position:absolute;
    left:0;
    bottom:0px;
	width: 740px;
    color:#fff;
	font-size: 14px;
	line-height: 50px;
	text-align: right;
	background-color: rgba(44, 94, 153, 0.7);
}
.achievements .thumb-item-nav {
	max-width: 760px;
	margin: 0 auto;
}
.achievements .thumb-item-nav li img {
	margin: 5px;
	width: 180px;
}
.thumb-item-nav .slick-prev,
.thumb-item-nav .slick-next {
    display: none !important;
}
.achievements article {
	margin: 0 auto;
	width:1000px;
}
.achievements #more_btn {
	margin: 40px auto;
	width: 280px;
	color: #FFF;
	line-height: 50px;
	text-align: center!important;
	background-color: #143979;
	border: 2px solid #FFF;
	border-radius: 25px;
}

.achievements_sub {
	margin-top: 40px;
	padding-bottom: 150px;
	background-color: #F2F2F2;
}
.achievements_sub .navi {
	margin: 0 auto;
	padding: 55px 0;
	width: 950px;
	display: flex;
	justify-content: center;
}
.achievements_sub .navi p a {
	color: #2C2C2C;
	position: relative;
}
.achievements_sub .navi p a:hover {
	color: #143979;
	text-decoration: none;
}
.achievements_sub .navi p a::after {
	position: absolute;
	bottom: .3em;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #143979;
	opacity: 0;
	transition: .3s;
}
.achievements_sub .navi p a:hover::after {
	bottom: -10px;
	opacity: 1;
}
.achievements_sub .navi a.current {
	color: #143979;
	text-decoration: none;
}
.achievements_sub .navi a.current::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #143979;
	opacity: 1;
	transition: .3s;
}
.achievements_sub .navi p {
	padding: 0 0 0 50px;
	line-height: 36px;
}
.achievements_sub .navi p:nth-child(1) {
	padding: 0 50px 0;
	border-right: 1px solid #707070;
}
.achievements ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.achievements_sub .box {
	padding-bottom: 80px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.achievements_sub .box::after {
	display: block;
	content:"";
	width: 32%;
}
.achievements ul li {
	position: relative;
	overflow: hidden;
	margin-right: 1%;
	margin-bottom: 1%;
	width: 24%;
}
.achievements ul li:nth-child(1),
.achievements ul li:nth-child(2) {
	position: relative;
	margin-right: 1%;
	margin-bottom: 1%;
	width: 33%;
}
.achievements ul li:nth-child(3) {
	position: relative;
	margin-right: 0;
	margin-bottom: 1%;
	width: 32%;
}
.achievements_sub .box li {
	position: relative;
	overflow: hidden;
	margin-right: 1%;
	margin-bottom: 1%;
	width: 33%;
}
.achievements_sub .box li:nth-of-type(3n) {
	position: relative;
	margin-right: 0;
	margin-bottom: 1%;
	width: 32%;
}
.achievements ul li img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.2s linear;
}
.achievements_sub .box li img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: transform 0.2s linear;
}
.achievements ul li:nth-child(1) img,
.achievements ul li:nth-child(2) img,
.achievements ul li:nth-child(3) img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}
.achievements ul li :hover img,
.achievements_sub .box li :hover img {
	transition: transform 0.2s linear;
	transform: scale(1.1);
}
.achievements ul li span,
.achievements_sub .box li span {
	position:absolute;
	left:0;
	bottom:0px;
	width: 100%;
	min-height: 40px;
	color:#fff;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(44, 94, 153, 0.7);
}
.achievements a.link_btn {
	display: block;
	margin: 120px auto 40px;
	width: 280px;
	color: #FFF;
	line-height: 50px;
	text-align: center!important;
	background-color: #143979;
	border: 2px solid #FFF;
	border-radius: 25px;
	transition: .4s;
}
.achievements_sub a.link_btn {
	display: block;
	margin: 0 auto;
	width: 280px;
	color: #FFF;
	line-height: 50px;
	text-align: center!important;
	background-color: #143979;
	border: 2px solid #FFF;
	border-radius: 25px;
	transition: .4s;
}
.achievements a.link_btn:hover {
	color: #143979;
	text-decoration: none;
	background-color: #FFF;
}
.achievements_sub a.link_btn:hover {
	color: #143979;
	text-decoration: none;
	border: 2px solid #143979;
	background-color: #FFF;
}
.achievements_sub .box li.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding:0;
}
.achievements_sub .more {
  text-align: center;
}
.achievements_sub button {
  display: block;
	cursor: pointer;
	margin: 0 auto;
	width: 280px;
	color: #143979;
	font-size: 18px;
	line-height: 50px;
	text-align: center!important;
	border: 2px solid #143979;
	border-radius: 30px;
	transition: .4s;
}
.achievements_sub button:hover {
  color: #FFF;
	text-decoration: none;
	background-color: #143979;
	border: 2px solid #FFF;
}
.modaal-outer-wrapper {
	background-color: rgba(255, 255, 255, 0.6);
}
.modaal-container {
	position: relative;
	width: auto;
	height: 600px;
	border: 10px solid #FFF;
}
.modaal-container img {
	width: auto;
	object-fit: cover;
	margin-top: 20px;
}
.modaal-gallery-label {
	position:absolute;
	left:0;
	bottom:0px;
	width: 100%;
	min-height: 50px;
	color:#fff;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(44, 94, 153, 0.7);
}
.modaal-close:before,
.modaal-close:after {
	background-color: #404040!important;
}
.modaal-close {
	background-color: #FFF!important;
}

/*----------------------------------------------------------------

	Company style

----------------------------------------------------------------*/
section.company {
	padding: 100px 0 0;
	background:
        url(../img/compant_bg_01.png) left top no-repeat,
        url(../img/compant_bg_02.png) right bottom no-repeat;
}
.company h4 {
	margin-bottom: 40px;
	color: #143979;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.company .message_box {
	margin: 0 auto 60px;
	padding: 80px 400px 80px 0;
	width: 600px;
	font-size: 14px;
	line-height: 36px;
	background: url(../img/compant_img_01.png) 90% bottom no-repeat;
}
.company .message_box h5 {
	margin: 0 0 30px;
	color: #143979;
	font-size: 36px;
	font-weight: bold;
}
.company .message_box p {
	margin-top: 20px;
	text-align: right;
}
.company dl.idea {
	margin: 0 auto 60px;
	width: 1000px;
	overflow: hidden;
}
.company dl.idea dt {
	margin-bottom: 40px;
	float: left;
	width: 200px;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	line-height: 58px;
	text-align: center;
	background-color: #143979;
}
.company dl.idea dd {
	margin-bottom: 40px;
	float: left;
	width: 799px;
	font-size: 20px;
	line-height: 56px;
	text-align: center;
	border-top: 1px solid #143979;
	border-bottom: 1px solid #143979;
	border-right: 1px solid #143979;
}
.company .about_box {
	margin: 0 auto;
	padding: 0 0 300px;
	width: 1100px;
	font-size: 14px;
	line-height: 36px;
	background: url(../img/compant_img_02.png) 0 bottom no-repeat;
}
.company .about_box h5 {
	margin: 0 0 30px 45px;
	color: #143979;
	font-size: 36px;
	font-weight: bold;
}
.company .about_box table {
	margin: 0 auto;
	width: 1000px;
	border-top: 1px solid #afafaf;
}
.company .about_box table tr {
	border-bottom: 1px solid #afafaf;
}
.company .about_box table th {
	padding: 5px 0;
	text-align: left;
}
.company .about_box table td {
	padding: 5px 0;
	text-align: left;
}


/*----------------------------------------------------------------

	Recruit style

----------------------------------------------------------------*/
section.recruit {
	padding: 100px 0 40px;
	background:url(../img/recruit_bg_01.jpg) center center no-repeat;
	background-size: cover;
}
.recruit h3:before {
	background-color: #fff;
}
.recruit h4 {
	margin-bottom: 60px;
	color: #fff;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.recruit .text_box {
	margin: 0 auto 60px;
	padding: 0;
	color: #fff;
	width: 1000px;
	font-size: 16px;
	line-height: 36px;
}
.recruit .text_box h5 {
	margin-right: 80px;
	padding: 50px 0;
	float: left;
	font-size: 40px;
}
.recruit .text_box p {
	padding: 60px 0 0;
	text-align: center;
}
.recruit .text_box p a:hover {
	filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
	transition: .3s;
}


/*----------------------------------------------------------------

	News style

----------------------------------------------------------------*/
section.news {
	padding: 100px 0;
}
.news h4 {
	margin-bottom: 40px;
	color: #143979;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.news dl.newsbox {
	margin: 0 auto;
	width: 550px;
	overflow: hidden;
	font-size: 16px;
	line-height: 40px;
}
.news dl.newsbox dt {
	float: left;
	width: 120px;
}
.news dl.newsbox dd {
	float: left;
	width: 430px;
}
.news dl.newsbox dd a {
	color: #143979;
	text-decoration: underline;
}
.news dl.newsbox dd a:hover {
	text-decoration: none;
}


/*----------------------------------------------------------------

	Conatct style

----------------------------------------------------------------*/
section.contact {
	padding: 100px 0;
	background-color: #143979
}
.contact h3:before {
	background-color: #fff;
}
.contact h4 {
	margin-bottom: 60px;
	color: #fff;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.contact .text {
	margin:  0 auto 60px;
	color: #fff;
	width: 920px;
	overflow: hidden;
}
.contact .text .column {
	float: left;
	position: relative;
	width: calc((100% - 40px) / 2);
}
.contact .text .column:not(:first-child) {
	margin-left: 40px;
}
.contact .text .column h5 {
	margin-bottom: 20px;
	display: block;
	font-size: 58px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.contact .text .column span {
	margin-bottom: 40px;
	display: block;
	font-size: 24px;
	font-weight: bold;
}
.contact .text .column b {
	margin-bottom: 10px;
	display: block;
	font-size: 20px;
}
.contact .text .column i {
	margin-bottom: 30px;
	display: block;
	font-size: 18px;
}
.contact dl.form {
	margin: 0 auto 20px;
	color: #fff;
	width: 680px;
}
.contact dl.form dt {
	margin-bottom: 10px;
	margin-top: 30px;
	font-size: 14px;
}
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	margin-bottom: 0;
	width: 650px;
	border:none;
	box-shadow: none;
	padding: 15px;
	font-size: 18px;
	color: #2b2b2b;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input.wpcf7-form-control.wpcf7-text.text {
	margin-bottom: 20px;
	margin-left: 10px;
	width: 100px;
	border:none;
	box-shadow: none;
	padding: 15px;
	font-size: 18px;
	color: #2b2b2b;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}
.wpcf7-form .wpcf7-select, select {
	margin-bottom: 10px;
	width: 680px;
	height: 50px;
	border:none;
	box-shadow: none;
	font-size: 18px;
	color: #2b2b2b;
}
div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng,
div.wpcf7-spam-blocked,
div.wpcf7-validation-errors {
	margin: 0 auto 20px;
	color: #ffffff;
	width: 600px;
	line-height: 30px;
}
.grecaptcha-badge {
  margin-right:auto;
  margin-left:auto;
  text-align: center;
  width:300px;
  margin-top:20px;
}


/*----------------------------------------------------------------

	overview style

----------------------------------------------------------------*/
section.recruitoverview {
	padding: 100px 0;
}
.recruitoverview h4 {
	margin-bottom: 40px;
	color: #143979;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.recruitoverview .text_box {
	font-size: 16px;
	line-height: 36px;
	text-align: center;
}


/*----------------------------------------------------------------

	Interview style

----------------------------------------------------------------*/
section.interview {
	padding: 0;
}
.interview h4 {
	margin-bottom: 60px;
	color: #143979;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.interview .staff_box {
	background:
        url(../img/compant_bg_01.png) left top no-repeat,
        url(../img/compant_bg_02.png) right 90% no-repeat;
}
.interview .staff_box .item_01 {
	margin: 0 auto 40px;
	padding: 230px 0;
	width: 1000px;
	background: 
		url(../img/recruit_img_01.png) 80% bottom no-repeat,
        url(../img/recruit_img_02.png) left 85% no-repeat;
}
.interview .staff_box .item_02 {
	margin: 0 auto 40px;
	padding: 230px 0;
	width: 1000px;
	background: 
		url(../img/recruit_img_05.png) 80% bottom no-repeat,
        url(../img/recruit_img_04.png) left 85% no-repeat;
}
.interview .staff_box .item_01 h5,
.interview .staff_box .item_02 h5 {
	margin-left: 200px;
	margin-bottom: 40px;
	font-size: 46px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.interview .staff_box .item_01 h5 span,
.interview .staff_box .item_02 h5 span {
	margin-left: 20px;
	font-size: 16px;
	font-weight: normal;
}
.interview .staff_box .item_01 p,
.interview .staff_box .item_02 p {
	margin-left: 200px;
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: bold;
}
.interview .voice_box {
	margin:  0 auto 80px;
	width: 920px;
	overflow: hidden;
}
.interview .voice_box .column {
	float: left;
	position: relative;
	width: calc((100% - 80px) / 2);
}
.interview .voice_box .column:not(:first-child) {
	margin-left: 80px;
}
.interview .voice_box .p120 {
	padding-top: 150px;
}
.interview .voice_box h6 {
	margin-bottom: 40px;
	color: #143979;
	font-size: 26px;
	font-weight: bold;
	line-height: 42px;
}
.interview .voice_box p {
	margin-bottom: 100px;
	padding-bottom: 100px;
	font-size: 14px;
	line-height: 28px;
	border-bottom: 1px solid #143979;
}
.interview .voice_box .column p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.interview .voice_photo img {
	width: 100%;
}


/*----------------------------------------------------------------

	Application Guidelines style

----------------------------------------------------------------*/
section.guideline {
	padding: 100px 0;
}
.guideline h4 {
	margin-bottom: 60px;
	color: #143979;
	font-size: 46px;
	line-height: 56px;
	font-weight: bold;
	text-align: center;
}
.ChangeElem_Btn_Content {
	margin: 0 auto 60px;
	width: 604px;
	display: table;
}
.ChangeElem_Btn {
	width: 300px;
	font-size: 24px;
	line-height: 70px;
	color: #143979;
	cursor: pointer;
	display: table-cell;
	flex: 1;
	position: relative;
	background-color: #fff;
	border: 1px solid #143979;
	transition: all .3s ease-in-out;
	vertical-align: middle;
}
.ChangeElem_Btn:hover,
.ChangeElem_Btn.is-active {
	color: #fff;
	background-color: #143979;
	border: 1px solid 143979;
	box-sizing: border-box;
}
.ChangeElem_Panel{
	display: none;
}
.guideline .ChangeElem_Panel table {
	margin: 0 auto;
	width: 1000px;
	font-size: 14px;
	border-top: 1px solid #afafaf;
}
.guideline .ChangeElem_Panel table tr {
	border-bottom: 1px solid #afafaf;
}
.guideline .ChangeElem_Panel table th {
	padding: 15px 0;
	width: 200px;
	text-align: left;
}
.guideline .ChangeElem_Panel table td {
	padding: 15px 0;
	text-align: left;
}


/*----------------------------------------------------------------

	フッター

----------------------------------------------------------------*/
footer {
	padding: 80px 0 40px;
	clear: both;
	color: #fff;
	background-color: #404857;
}
footer .inner {
	margin:  0 auto;
	width: 1000px;
	overflow: hidden;
}
footer .data {
	float: left;
	width: 400px;
	font-size: 15px;
	line-height: 1.4em;
}
footer .data h5 {
	margin-bottom: 50px;
}
footer .link {
	float: right;
	width: 300px;
}
footer .link ul {
	float: left;
	position: relative;
	width: calc((100% - 30px) / 2);
}
footer .link li {
	margin-bottom: 30px;
}
footer .link a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
footer .link a:hover {
	text-decoration: underline;
}
footer .link ul:not(:first-child) {
	margin-left: 30px;
}
footer address {
	padding-top: 60px;
	clear: both;
	font-size: 14px;
	text-align: center;
}


/*----------------------------------------------------------------

	ページトップ

----------------------------------------------------------------*/
#pagetop {
	position: fixed;
	right: 5px;
	bottom: 100px;
	z-index: 1000;
}
#pagetop a:hover {
    opacity:0.7;
}


@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
header {
    background: url(../img/heade_bg.jpg) 0 center no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    text-align: center;
	position: relative;
}
header h2 {
	position: absolute;
	top: 30%;
	left: 50%;
    width: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 48px;
	font-weight: bold;
}
}


/*----------------------------------------------------------------

	抗菌粉体塗装

----------------------------------------------------------------*/
.main_title {
	padding: 115px 0 120px;
	text-align: center;
	background: url(../img/kokin_maintitle.png) 0 0 no-repeat;
	background-size: cover;
}
.main_title h1 {
	margin-bottom: 38px;
}
.main_title h2 {
	color: #153979;
	font-size: 60px;
	line-height: 72px;
}
.main_title h2 span {
	display: block;
	font-size: 38px;
}

section.kokin {
	padding: 0 0 80px;
	background-color: #F9FAFC;
}
section.kokin .lead {
	padding: 80px 0;
	font-size: 18px;
	line-height: 38px;
	background-color: #FFF;
}
section.kokin .lead p {
	margin: 0 auto;
	width: 996px;
}
section.kokin .item_box {
	padding: 80px 0;
}
section.kokin .item_box h3 {
	color: #153979;
	font-size: 36px;
	border: none;
}
section.kokin .item_box h3:before {
	display: none;
}
section.kokin .item_box p {
	margin: 0 auto 20px;
	padding-left: 45px;
	width: 640px;
	font-size: 26px;
	line-height: 38px;
	background: url(../img/kokin_icon.png) 0 center no-repeat;
}
section.kokin .item_box aside {
	position: relative;
	margin: 120px auto 20px;
	padding: 0 60px;
	width: 870px;
	text-align: center;
	border: 3px solid #153979;
	border-radius: 50px;
}
section.kokin .item_box aside h4 {
	position: relative;
	top: -38px;
	margin: 0 auto 60px;
	width: 650px;
	color: #FFF;
	font-size: 36px;
	line-height: 72px;
	background-color: #153979;
}
section.kokin .item_box aside h5 {
	margin-bottom: 100px;
	font-size: 18px;
}
section.kokin .item_box aside img {
	margin-bottom: 30px;
	display: inline-block;
}
section.kokin .item_box aside img.img_01 {
	margin-right: 80px;
}
section.kokin .item_box aside img.img_02 {
	margin-right: 120px;
}
section.kokin .item_box aside img.img_03 {
	margin-right: 120px;
}
section.kokin .table_box {
	margin: 0 auto;
	padding: 0 0 80px;
	width: 996px;
}
section.kokin .table_box h3 {
	color: #153979;
	font-size: 36px;
	border: none;
}
section.kokin .table_box h3:before {
	display: none;
}
section.kokin .table_box .desc {
	margin-bottom: 80px;
	font-size: 18px;
	line-height: 38px;
}
section.kokin .table_box h4 {
	margin-bottom: 20px;
	font-size: 18px;
	text-align: center;
}
section.kokin table sup {
	font-size: 12px;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
section.kokin table {
	margin: 0 auto 10px;
	width: 760px;
	border-left: 1px solid #262626;
	border-top: 1px solid #262626;
}
section.kokin table th {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	background-color: #E7F1FA;
	border-right: 1px solid #262626;
	border-bottom: 1px solid #262626;
}
section.kokin table td {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid #262626;
	border-bottom: 1px solid #262626;
}
section.kokin .table_box .text_tb_01 {
	margin: 0 auto 40px;
	width: 760px;
	line-height: 28px;
}
section.kokin .table_box .text_tb_02 {
	margin: 0 auto 80px;
	width: 760px;
	line-height: 28px;
}


.contact .text_kokin {
	margin-bottom: 40px;
	color: #FFF;
	font-size: 18px;
	text-align: center;
}
.contact .text_kokin h5 {
	margin-bottom: 20px;
	display: block;
	font-size: 58px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.contact .text_kokin span {
	margin-bottom: 40px;
	display: block;
	font-size: 24px;
	font-weight: bold;
}
.contact .text_kokin b {
	margin-bottom: 10px;
	display: block;
	font-size: 20px;
}
.contact .text_kokin i {
	margin-bottom: 30px;
	display: block;
	font-size: 18px;
}
.contact .text_kokin p {
	margin-bottom: 50px;
}


.banner_box {
	margin: 0 auto;
	padding-top: 100px;
	width: 620px;
	text-align: center;
}
.banner_box a {
	transition: .4s;
}
.banner_box a:hover {
	opacity: 0.7;
	transition: .3s;
}