@charset "UTF-8";

/* #main */
.main_img {
  width: 100%;
  height: 100vh;
  background: url(../img/main_img.png);
  /*background-attachment: fixed;*/
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.message_area{
	position: absolute;
	top: 32%;
	left: 56%;
}
.main_img .txt_name{
  font-size: 75px;
  line-height: initial;
	font-weight: bold;
	position: relative;
	margin-bottom: 40px;
}
.main_img .txt_calc{
	font-size: 27px;
	line-height: initial;
	position: relative;
	margin-bottom: 30px;
	padding-left: 20px;
}
.main_img .txt_calc .main_txt.txt02{
	position: relative;
}
.main_img .txt_calc span.kakko,
.main_img .txt_calc span.kakko2{
	height: 46px;
	width: 12px;
	text-indent: 150%;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	position: absolute;
	top: -2px;
}
.main_img .txt_calc span.kakko{
	background: url(../img/kakko_left.png);
    background-repeat: no-repeat;
    background-size: contain;
		background-position: left center;
		left: -20px;
}
.main_img .txt_calc span.kakko2{
	background: url(../img/kakko_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
		right: -20px;
}
.main_img .txt_exp{
	font-size: 16px;
	line-height: 1.8rem;
	margin-bottom: 30px;
}
.main_img .txt_exp p{
  margin-bottom: 3px;
	position: relative;
}
.main_img .news_box{
	font-size: 16px;
	line-height: initial;
	display: flex;
	border: 2px solid #fff;
	padding: 24px;
}
.main_img .news_box .news_title{
	position: relative;
	padding-right: 24px;
	display: flex;
	align-items: center;
}
.main_img .news_box .news_title::after{
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	top: 0;
	right: 0;
	background-color: #fff;
}
.main_img .news_box .news_detail{
	position: relative;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
}
.main_img .news_box .news_detail .date{
	font-size: 11px;
	margin-bottom: 2px;
}
.main_img .news_box .news_detail a{
	color: #fff;
}
.main_img .icon_scroll{
	position: absolute;
	color: #fff;
	text-decoration: none;
	bottom: 3%;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	text-align: center;
	padding: 20px 0;
}
.main_img .icon_scroll::before{
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin: auto;
	border: 1px solid #fff;
	width: 30px;
	height: 45px;
	border-radius: 15px;
}
.main_img .icon_scroll::after{
	content: "";
	position: absolute;
	top: -33px;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	width: 3px;
	height: 8px;
	animation: scroll 1.5s infinite;

}

@keyframes scroll {
	0% {
			opacity: 1
	}
	100% {
			opacity: 0;
			transform: translateY(25px);
	}
}


#header {
  background: transparent;
}
#news_area{
	padding: 70px 0 55px;
}
#news_area .inner{
	display: flex;
	align-items: flex-start;
}
#news_area .box{
	padding-left: 120px;
	padding-top: 22px;
}
#news_area .box .news_title{
	font-weight: bold;
	display: flex;
	flex-direction: column;
	margin-bottom: 26px;
}
#news_area .box .news_title .date{
	color: #999999;
	font-size: 15px;
	margin-bottom: 5px;
}
#news_area .box .news_title .ttl{
	color: #03b6ff;
	font-size: 22px;
	letter-spacing: 1px;
}
#news_area .box .news_detail{
	font-size: 16px;
	line-height: 1.5;
}
#service_area {
  padding: 70px 0 55px;
  background: #03b6ff;
}
#service_area h2,
#contact_area h2,
#news_area h2 {
  color: #fff;
  font-size: 50px;
  position: relative;
  display: inline-block;
  margin-bottom: 110px;
  line-height: initial;
}
#contact_area h2{
	color: #0e243d;
}
#news_area h2{
	color: #03b6ff;
}
#service_area h2 span.main_txt,
#contact_area h2 span.main_txt,
#news_area h2 span.main_txt {
	transform: translate(0, 30%);
	opacity: 0;
  transition: all 0.75s ease;
	transition-delay: .35s;
}
#service_area h2.active span.main_txt,
#contact_area h2.active span.main_txt,
#news_area h2.active span.main_txt{
	transform: translate(0, 0);
	opacity: 1;
}
#service_area h2 span.sub_txt,
#contact_area h2 span.sub_txt,
#news_area h2 span.sub_txt{
  font-size: 22px;
  position: absolute;
  bottom: -40px;
  right: 0;
  display: inline-block;
  padding-right: 10px;
	transform: translate(0, -30%);
	opacity: 0;
  transition: all 0.75s ease;
	transition-delay: .45s;
}
#service_area h2.active span.sub_txt,
#contact_area h2.active span.sub_txt,
#news_area h2.active span.sub_txt{
	transform: translate(0, 0);
	opacity: 1;
}

#service_area h2::before,
#contact_area h2::before,
#news_area h2::before{
  content: "";
  position: absolute;
  width: 100vw;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #fff;
	transform: translate(-50%, 0);
	opacity: 0;
  transition: all 0.75s ease;
}
#contact_area h2::before{
	background: #0e243d;
}
#news_area h2::before{
	background: #03b6ff;
}
#service_area h2.active::before,
#contact_area h2.active::before,
#news_area h2.active::before{
	transform: translate(0, 0);
	opacity: 1;
}

#service_area .flex {
  flex-flow: nowrap;
}
#service_area .flex:nth-of-type(even) {
  flex-direction: row-reverse;
}
#service_area .text_box,
#service_area .img_box {
  width: 100%;
  flex-basis: 50%;
	transform: translate(0, 5%);
	opacity: 0;
  transition: all 0.75s ease;
}
#service_area .text_box p{
  font-size: 14px;
  line-height: 2;
  }
#service_area .flex.active .text_box,
#service_area .flex.active .img_box {
transform: translate(0, 0);
opacity: 1;
}
#service_area .flex.active .text_box{
	transition-delay: .35s;
}
#service_area .text_box {
  background: #fff;
  font-size: 12px;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}
#service_area .flex:nth-of-type(odd) .text_box::before,
#service_area .flex:nth-of-type(even) .text_box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}
#service_area .flex:nth-of-type(odd) .text_box::before {
  border-right: 18px solid #fff;
  left: -28px;
}
#service_area .flex:nth-of-type(even) .text_box::before {
  border-left: 18px solid #fff;
  right: -28px;
}

#service_area h3 {
  font-size: 24px;
  line-height: initial;
  margin-bottom: 30px;
}
#service_area .link_box {
  text-align: right;
	position: relative;
	transform: translate(-5%, 0);
	opacity: 0;
  transition: all 0.75s ease;
}
#service_area .link_box.active {
	transform: translate(0, 0);
	opacity: 1;
}
#service_area .link_box a {
  display: inline-block;
  position: relative;
  font-size: 21px;
  color: #fff;
  padding: 20px 0 20px 150px;
  text-decoration: none;
  padding-right: 20px;
}
#service_area .link_box a::before,
#service_area .link_box a::after {
  right: 0px;
  top: 4px;
  bottom: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  margin: auto;
  content: "";
  transition: all 0.35s ease;
}
#service_area .link_box a::after {
  right: 6px;
}
#service_area .link_box a:hover::before {
  right: -6px;
}
#service_area .link_box a:hover::after {
  right: 0px;
}
#service_area .link_box::before {
  right: 90px;
  top: 5px;
  bottom: 0;
  width: 100px;
  height: 1px;
  position: absolute;
  margin: auto;
  content: "";
  transition: all 0.75s ease;
  background: #fff;
}

#info_area {
  background: #f7f7f7;
  padding: 60px 0 70px;
}
#info_area h2 {
  font-size: 27px;
  position: relative;
  line-height: initial;
  text-align: center;
  margin-bottom: 50px;
	transform: translate(0, 20%);
	opacity: 0;
  transition: all 0.75s ease;
}
#info_area.active h2 {
	transform: translate(0, 0);
	opacity: 1;
}
#info_area.active .company_area h2 {
	transition-delay: .2s;
}
#info_area h2 span {
  font-size: 14px;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
	transform: translate(0, 5%);
	opacity: 0;
  transition: all 0.75s ease;
}
#info_area.active h2 span {
	transform: translate(0, 0);
	opacity: 1;
	transition-delay: .35s;
}
#info_area.active .company_area h2 span{
	transition-delay: .55s;
}
#info_area .flex {
  flex-flow: nowrap;
}
#info_area .recruit_area,
#info_area .company_area {
  width: 100%;
  position: relative;
	z-index: 1;
	overflow: hidden;
}
#info_area .recruit_area .img_box,
#info_area .company_area .img_box{
	transform: translate(0, 5%);
	opacity: 0;
  transition: all 0.75s ease;
}
#info_area.active .recruit_area .img_box,
#info_area.active .company_area .img_box {
	transform: translate(0, 0);
	opacity: 1;
	transition-delay: .7s;
}
#info_area.active .company_area .img_box{
	transition-delay: .9s;
}

#info_area .recruit_area {
  margin-right: 90px;
}
#info_area .recruit_area a,
#info_area .company_area a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 2;
}
#info_area .recruit_area img,
#info_area .company_area img {
		transition: transform .35s;
		position: relative;
}

#info_area .recruit_area:hover img,
#info_area .company_area:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
#info_area .recruit_area .img_box,
#info_area .company_area .img_box {
	overflow: hidden;
}
#info_area .recruit_area .img_box::before,
#info_area .company_area .img_box::before {
content: "";
width: 100%;
height: 100%;
background: #03b8ffc0;
left: 0;
top: 0;
position: absolute;
z-index: 1;
transform: translate(-30%, 0);
opacity: 0;
transition: all 0.55s ease;
}
#info_area .recruit_area:hover .img_box::before,
#info_area .company_area:hover .img_box::before {
	transform: translate(0, 0);
	opacity: 1;

}

#info_area .recruit_area .img_box p,
#info_area .company_area .img_box p {
	color: #fff;
	text-align: center;
	position: absolute;
	left: calc(50% - 60px);
	top: calc(50% - 20px);
	margin: auto;
	z-index: 2;
	font-size: 30px;
	padding: 15px 20px;
	box-sizing: border-box;
	}
	#info_area .recruit_area .img_box p span,
	#info_area .company_area .img_box p span {
		display: inline-block;
		transform: translate(0, 30%);
		opacity: 0;
		transition: all 0.55s ease;
		transition-delay: .2s;
	}
	#info_area .recruit_area:hover .img_box p span,
#info_area .company_area:hover .img_box p span{
	transform: translate(0, 0);
	opacity: 1;
}
#info_area .recruit_area .img_box p::before,
#info_area .company_area .img_box p::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #fff;
	left: 0;
	bottom: 0;
	position: absolute;
	z-index: 1;
  transform: scale(0, 1);
	opacity: 0;
	transition: all 0.55s ease;
	}
	#info_area .recruit_area:hover .img_box p::before,
	#info_area .company_area:hover .img_box p::before {
	transform: translate(0, 0);
	opacity: 1;
  transform: scale(1, 1);
}

#contact_area {
  background: #fff;
  padding: 60px 0 70px;
  font-size: 16px;
}
#contact_area .flex {
  flex-flow: nowrap;
  text-align: center;
}

#contact_area .tel_box,
#contact_area .mail_box {
  padding: 40px 90px;
  box-sizing: border-box;
	width: 100%;
	transform: translate(0, 5%);
	opacity: 0;
	transition: all 0.75s ease;
}
#contact_area .flex.active .tel_box,
#contact_area .flex.active .mail_box {
	transform: translate(0, 0);
	opacity: 1;
}
#contact_area .flex.active .mail_box {
	transition-delay: .35s;
}
#contact_area .tel_box {
  border-right: 1px dashed #0e243d;
}
#contact_area h5 {
  font-size: 18px;
  margin-bottom: 25px;
}
#contact_area .tel_number {
  font-size: 40px;
  line-height: initial;
  font-weight: bold;
}
#contact_area .img_box {
  width: 100px;
  height: 100px;
  margin: 0 auto 50px;
}
#contact_area .img_box img {
  width: auto;
}
#contact_area .mail_box .img_box {
  position: relative;
}
#contact_area .mail_box .img_box::before,
#contact_area .mail_box .img_box::after {
  position: absolute;
  top: 0;
  bottom: -40px;
  right: -25px;
  margin: auto;
  content: "";
}
#contact_area .mail_box .img_box::before {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #0e243d;
}

#contact_area .mail_box .img_box::after {
  right: -4px;
  top: 1px;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#contact_area .contact_btn {
  display: inline-block;
  color: #fff;
  background: #0e243d;
  font-size: 24px;
  padding: 20px 70px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s;
  position: relative;
}
#contact_area .contact_btn:hover {
  background: #ff6969;
}
.main_img .main_txt{
  opacity: 0;
  will-change: opacity;
}
.main_img .mask{
  display: block;
    position: absolute;
    top: 0;
    left: 0%;
    right: inherit;
    width: 0%;
    height: 100%;
    background: #fff;
    will-change: animation;
}
.main_img .mask02{
height: calc(100% + 7px);
top: -3px;
left:-33px;
}

.main_img .mask01{
	animation: maskIn 1s ease .4s 1 normal forwards;
}
.main_img .mask02{
	animation: maskIn 1s ease .55s 1 normal forwards;
}
.main_img .mask03{
	animation: maskIn 1s ease .7s 1 normal forwards;
}
.main_img .mask04{
	animation: maskIn 1s ease .85s 1 normal forwards;
}
.main_img .mask05{
	animation: maskIn 1s ease 1s 1 normal forwards;
}

@keyframes maskIn {
	0% {
		width: 0%;
		left: 0%;
	}
	50% {
		width: 100%;
		left: 0%;
	}
	100% {
		width: 0%;
		left: 100%;
	}
}
@keyframes maskIn2 {
	0% {
		width: 0%;
		left: -20px;
	}
	50% {
    width: calc(100% + 0px);
    left: -20px;
          }
	100% {
		width: 0%;
		left: calc(100% - 20px);
	}
}

.main_img .txt01 {
	animation: eleIn .1s ease 1s 1 normal forwards;
}
.main_img .txt02 {
	animation: eleIn .1s ease 1.15s 1 normal forwards;
}
.main_img .txt03 {
	animation: eleIn .1s ease 1.3s 1 normal forwards;
}
.main_img .txt04 {
	animation: eleIn .1s ease 1.45s 1 normal forwards;
}
.main_img .txt05 {
	animation: eleIn .1s ease 1.6s 1 normal forwards;
}
.main_img .txt06 {
	animation: eleIn .1s ease 1.75s 1 normal forwards;
}

@keyframes eleIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


#wrap{
  display: none;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace.pace-inactive .pace-progress {
  display: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #03b6ff;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 10px;
}


