@charset "utf-8";
canvas {
  position: absolute;
  top: -90px;
  left: 0;
}
.top_hero {
	min-height: 760px;
	background: url(../images/top_hero_bg_pc.jpg) no-repeat center bottom;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.top_hero .light_cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 760px;
	height: 100%;
	background: url(../images/hero_light_1.png) no-repeat center bottom;
	background-size: cover;
	opacity: 0;
}
.top_hero .light_cover::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 760px;
	height: 100%;
	background: url(../images/hero_light_2.png) no-repeat center bottom;
	background-size: cover;
	opacity: 0;
}

.light_cover.flash {
	animation: flash 1.6s  forwards;
}
.light_cover.flash::after {
	animation: flash 1.4s  forwards;
	animation-delay: 0.1s;
}

@keyframes flash {
0% {
	opacity: 0;
	transform: scale(1);
}
50% {
	opacity: 0;
	transform: scale(1);
}
70% {
	opacity: 0;
	transform: scale(1.02);
}
75% {
	opacity: 1;
	filter: brightness(150%);
	transform: scale(1.02);
}
80% {
	opacity: 0.2;
	filter: brightness(100%);
	transform: scale(1.02);
}

90% {
	opacity: 0.2;
	transform: scale(1);
}
95% {
	opacity: 0.8;
	filter: brightness(150%);
	transform: scale(1);
}
100% {
	opacity: 1;
	filter: brightness(100%);
	transform: scale(1);
}
}

.top_hero::after {
	content: '';
	display: block;
	width: 100%;
	height: 300px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	mix-blend-mode: multiply;
}

span.inner_text {
	opacity: 0;
	
	transition: opacity 0.5s;
}
.start span.inner_text {
	opacity: 1;
	transition-delay: 0.5s;
}



span.outer_text {
	position: relative;
	display: inline-block;	
}
span.outer_text::after {
    content: '';
    display: inline-block;
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(255,255,255,1);
	transform-origin: left center;
}

.start span.outer_text::after {
	animation: textSlideBg 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.start  span.second::after {
	animation-delay: 0.2s;	
}
.start  span.third::after {
	animation-delay: 0.4s;	
}
.start  span.fourth::after {
	animation-delay: 0.6s;	
}



@keyframes textSlideBg {
0% {
	left: 0;
	width: 0%;
}
50% {
	left: 0;
	width: 100%;
}
51% {
	left: 0;
	width: 100%;
}
100% {
	left: 100%;
	width: 0%;
}
}


.hero_inner {
	max-width: 1200px;
	min-height: 760px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: flex-end;
}

.hero_inner h2 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	margin: 0 0 60px;
	position: relative;
	z-index: 1;
}
.hero_inner h2 span.extra {
	font-size: 48px;
	font-weight: 400;
}

.section_feature {
	background: #fff;
	padding: 70px 20px  200px;
}

.feature_upper,
.feature_bottom {
	max-width: 1200px;
	margin: 0 auto 30px;
	display: flex;
	justify-content: space-between; 
}
.feature_upper_col {
	width: 278px;
	cursor: pointer;
}
.feature_upper.third .feature_upper_col {
	width: 380px;
}


.feature_bottom_col {
	width: 585px;
	cursor: pointer;
}
.feature_thumb {
	overflow: hidden;	
}
.feature_thumb img {
	width: 100%;
	height: auto;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature_caption {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 25px;
	position: relative;
	box-sizing: border-box;
}
.feature_caption a {
	color: #333;
	text-decoration: none;
}
.feature_caption::before {
	content: '';
	display: block;
	width: 4px;
	height: 50px;
	background: #C11F24;
	position: absolute;
	top: 0;
	left: 0;
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature_caption::after {
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	border-top: 2px solid #C11F24;
	border-right: 2px solid #C11F24;
	position: absolute;
	right: 15px;
	top: calc(50% - 4px);
	transform: rotate(45deg);
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature_bottom_col  {
	position: relative;	
}

.feature_bottom_col .feature_caption {
	width: 278px;
	position: absolute;
	bottom: 0;
	left: inherit;
	right: 0;
	z-index: 5;
	background: #fff;
}

.feature_upper_col:hover .feature_caption::before,
.feature_bottom_col:hover .feature_caption::before {
	width: 15px;
	background: #E30C14;
}
.feature_upper_col:hover  .feature_caption::after ,
.feature_bottom_col:hover  .feature_caption::after {
	border-top: 2px solid #E30C14;
	border-right: 2px solid #E30C14;
}
.feature_upper_col:hover  .feature_thumb img,
.feature_bottom_col:hover  .feature_thumb img {
	transform: scale(1.15);
}

.feature_upper_col:hover a,
.feature_bottom_col:hover a {
	color: #E30C14;
}

@media(max-width: 1240px) {
.feature_upper_col {
	width: 23%;
}
.feature_upper.third .feature_upper_col {
	width: 32%;
}
.feature_bottom_col {
	width: 48%;
}
}


.section_business {
	background: #fff;
	padding: 0 0 240px;
	position: relative;
	overflow: hidden;

}
canvas {
	display: block;
	vertical-align: bottom;
}
.section_business #particles-js {
	width: 2000px;
	height: 500px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}
@media(max-width: 1200px) {
	
}

.count-particles,
.js-count-particles,
#stats, .count-particles,
.count-particles  {
	display: none;
}



.business_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;	
}


.business_hdr {
	margin: 0 0 35px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.business_hdr h3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
}


.link_btn a {
	display: block;
	width: 300px;
	height: 60px;
	background: #C11F24;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 500;
	position: relative;
	transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.link_btn a::before,
.link_btn a::after {
	height: 2px;
	content: '';
	position: absolute;
	top: 50%;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.link_btn a::before {
	width: 50px;
	background: #C11F24;
	left: -50px;
}
.link_btn a::after {
	width: 20px;
	background: #FFF;
	left: 0;
}
.link_btn a:hover::before {
	left: -20px;
	background: #E30C14;
}
.link_btn a:hover::after {
	width: 50px;
}
.link_btn a:hover {
	background: #E30C14;
}



.business_caption_flex {
	display: flex;
	justify-content: space-between;
}
.business_caption_flex .left_caption {
	margin: 0;
	width: 500px;
	position: relative;
}
.business_caption_flex .right_caption {
	width: 590px;
	margin-left: 50px;
}
.business_inner .swiper-container {
    padding-bottom: 0;
    padding-right: 0;
}



.left_caption p {
	font-size: 15px;
	line-height: 1.8;
	margin: 0 0 1.5em;	
}

.business_inner {
	position:relative;	
}
.business_inner .business_thumb {
	position: absolute;
	bottom: 0;
	right: 690px;
	width: 800px;
}


.swiper-container .swiper-wrapper {
    transition-timing-function: linear !important;
}


@media(max-width: 1240px) {
.business_caption_flex .left_caption {
	width: 45%;
}
.business_caption_flex .right_caption {
	width: 49%;
	margin-left: 25px;
}
.business_inner .business_thumb {
	right: 55%;
	width: 50%;
	bottom: -100px;
}
}

.section_concept {
	padding: 100px 0 150px;
	position: relative;
}
.section_concept::before {
	content: '';
	display: block;
	width: 100%;
	height: 580px;
	background: #EDEFF2;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.concept_inner h3 {
	font-size: 30px;
	line-height: 1.5;
	font-weight: 700;
	margin: 0 0 40px;	
}
.concept_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 5;
}

.business_inner .link_btn,
.concept_inner .link_btn {
	position: absolute;
	top: 0;
	right: 0;	
}

.concept_flex {
	display: flex;
	align-items: start;
	position: relative;
}
.concept_figure {
	width: 490px;
}
.concept_figure img {
	width: 100%;
	height: auto;	
}
.concept_caption {
	flex: 1;	
}
.concept_caption p {
	line-height: 1.8;
	margin-left: 50px;
}

.concept_caption_catch {
	background: #102848;
	color: #fff;
	margin-top: 150px;
}
.concept_caption_catch h4 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	padding: 60px 0 60px 60px;	
}


.recruit_bnr {
	height: 285px;
	max-width: 1200px;
	margin: 0 auto;
	background: url(../images/top_recruit_bg_pc.png) no-repeat 0 0;
	background-size: 100%;
	box-sizing: border-box;
	padding: 15px 40px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.recruit_bnr_inner h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 40px;
}

.recruit_btn .link_btn {
	display: flex;
	justify-content: flex-end;
}

.foot_contact {
	margin: 150px auto;
	display: flex;
	justify-content: center;
}
.foot_contact a {
	color: #fff;
	text-decoration: none;	
}
.foot_contact_btn {
	width: 180px;
	height: 180px;
	transform: rotate(45deg);
	background: rgba(0,0,0,0.6);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #fff;
}
.foot_contact_btn::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.foot_contact_btn:hover::after {
	opacity: 1;
	transform: translateX(8px) translateY(-10px);
}

.foot_contact_btn p {
	font-size: 20px;
	transform: rotate(-45deg);
	text-shadow: 0px 0px 10px #000000;
	position: relative;
	z-index: 5;

	
}



@media(max-width: 768px) {


.top_hero {
    min-height: inherit;
    background: url(../images/top_hero_bg_pc.jpg) no-repeat center bottom;
    background-size: cover;
    position: relative;
}
.top_hero::after {
	height: 50vh;
	background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}
.hero_inner {
	min-height: inherit;
	box-sizing: border-box;
	padding: 20px;	
}
.hero_inner h2 {
    font-size: 9.5vw;
    margin: 0 0 20px;
}
.hero_inner h2 span.extra {
	font-size: 85%;	
}
.section_feature {
	padding-top: 30px;
	padding-bottom: 60px;
}
.feature_upper {
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 0;
}
.feature_upper_col,
.feature_bottom_col,
.feature_upper.third .feature_upper_col {
	width: calc(50% - 5px);
	margin: 0 0 10px;
}
.feature_bottom_col .feature_caption {
    width: 100%;
    position: static;
	position: relative;
	left: inherit;
	bottom: inherit;
}

.feature_caption {
    font-size: 13px;
    padding-left: 9px;
	height: 40px;

}
.feature_caption::before {
    width: 2px;
	height: 40px;
}
.feature_upper_col:hover .feature_caption::before,
.feature_bottom_col:hover .feature_caption::before {
    width: 2px;
}
.feature_caption::after {
    height: 5px;
    width: 5px;
    position: absolute;
    right: 10px;
    top: calc(50% - 2px);
    border-top: 1px solid #C11F24;
    border-right: 1px solid #C11F24;
}


.business_inner {
    padding: 0 20px;
}
.business_hdr {
    margin: 0 0 35px;
    display: block;
}
.business_hdr h3 {
	font-size: 20px;
	margin: 0 0 35px;
}

.business_caption_flex {
	display: block;	
}
.business_caption_flex .left_caption {
    margin: 0 0 30px;
    width: auto;
}
.business_caption_flex .right_caption {
    width: 100%;
	margin: 0 auto 20px;
}
.business_inner .business_thumb {
    position: static;
    bottom: inherit;
    right: inherit;
    width: calc(100% + 40px);
	transform: translateX(-20px);
}
.section_business {
	padding-bottom: 100px;	
}
.business_inner .link_btn {
	position: static;
	margin-top: 50px;	
}
.business_inner .link_btn_flex {
	display: flex;
	justify-content: flex-end;
}


.section_concept {
    padding: 40px 20px 60px;
	background: #EDEFF2;
	margin-bottom: 60px;
}
.section_concept::before {
	display: none;
}

.concept_inner {
	padding-left: 0;
	padding-right: 0;	
}
.concept_inner h3 {
    font-size: 18px;
    margin: 0 0 30px;
}
.concept_flex {
	display: flex;
	flex-direction: column-reverse;
}
.concept_caption {
	flex: inherit;	
}
.concept_caption p {
	margin: 0 0 40px;
}

.concept_caption_catch_right {
	display: flex;
	justify-content: flex-end;
}

.concept_caption_catch {
    margin-top: 0;
	transform: translateY(-60px) translateX(20px);
	margin-bottom: -60px;
	position: relative;
	width: 90vw;
}
.concept_caption_catch h4 {
    font-size: 18px;
    padding: 35px 10px 35px 20px;
}


.concept_figure {
    width: 85%;
	transform: translateX(-20px);
}

.concept_inner .link_btn {
	position: static;
	margin-top: 50px;	
}
.concept_inner .link_btn_flex {
	display: flex;
	justify-content: flex-end;
}



.recruit_bnr {
	height: 110vw;
	margin: 0 auto;
	background: url(../images/top_recruit_bg_sp.jpg) no-repeat 0 0;
	background-size: 100%;
	box-sizing: border-box;
	padding: 15px 20px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.recruit_bnr_inner {
	width: 100%;	
}

.recruit_bnr_inner h3 {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 30px;
}
.recruit_btn {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}





.link_btn a {
	width: 66vw;
	height: 44px;
	font-size: 16px;
}
.link_btn a::before {
	width: 40px;
	left: -40px;
}
.link_btn a::after {
	width: 20px;
}
.link_btn a:hover::before {
	left: -40px;
}
.link_btn a:hover::after {
	width: 20px;
}

.foot_contact {
	margin: 100px auto;
}
.foot_contact_btn {
	width: 36vw;
	height: 36vw;
}

.foot_contact_btn:hover::after {
	opacity: 1;
	transform: translateX(0px) translateY(0px);
}

.foot_contact_btn p {
	font-size: 16px;
}

.section_business #particles-js {
	width: 100%;
	height: 400px;
	bottom: -100px;
}

}


@media(max-width: 320px) {
.left_caption p {
	font-size: 14px;
}
.business_hdr h3 {
	font-size: 17px;
	margin: 0 0 30px;
}
.concept_inner h3 {
	font-size: 16px;
}
.concept_caption_catch h4 {
	font-size: 17px;
}
.recruit_bnr_inner h3 {
	font-size: 16px;	
}

}