main{
	overflow: hidden;
}

/* メインビジュアル start */
.heroHeader{
	background-image: url("../img/front/img_01.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 4;
}
.heroHeader-inner {
	width: 100%;
	height: 100vh;
	position: relative;
}
.heroHeader .content{
	width: 100%;
	padding-left: 200px;
	position: absolute;
	top: 47%;
	left: 50%;
	transform: translate(-50% , -53%);
	z-index: 4;
}
.heroHeader .content .wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.heroHeader .content .image{
	width: 8vw;
	margin-right: 30px;
}
.heroHeader .content p{
	font-size: 3.6vw;
	font-weight: bold;
	color: #171D61;
	letter-spacing: 7px;
}
.heroHeader .content span{
	display: block;
	color: #111111;
	font-size: 1.1vw;
	font-weight: bold;
	letter-spacing: 5px;
	padding-left: 5px;
}
.heroHeader .textLoop{
	width: 100%;
	position: absolute;
	bottom: 0;
}
@-moz-document url-prefix(){
  .heroHeader .textLoop{
		bottom: 0;
	}
}
.wrapper{
  overflow: hidden;
  position: relative;
  margin-inline: auto;
}
.loop {
	animation: loop 40s linear infinite;
	width: 100%;
	font-size: 9.5vw;
	font-weight: bold;
	line-height: 0.8;
	letter-spacing: 0.8vw;
	color: #171D61;
	opacity: 0.07;
}
@-moz-document url-prefix(){
	.loop {
		font-size: 9.2vw;
	}
}
.loop2{
  position: absolute;
  top: 0; left: 0;
  animation: loop 40s -20s linear infinite;
}
@keyframes loop {
  0%{
    transform: translateX(100%);
  }
  100%{
    transform: translateX(-100%);
  }
}
.view{
	position: relative;
	overflow: hidden;
}
.view::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #171D61;
	transform: translateX(-100%);
	transition: all .3s ease-in-out .3s;
}
.view.js-on::after{
	animation: viewinMask 1s ease-in-out forwards;
}
.view02.js-on::after{
	animation-delay: 250ms;
}
@keyframes viewinMask{
	0%{
			transform: translateX(-100%);
	}
	40%{
			transform: translateX(0%);
	}
	60%{
			transform: translateX(0%);
	}
	100%{
			transform: translateX(101%);
	}
}
@keyframes viewinImg{
	0%{
			transform: translateX(-100%);
	}
	40%{
			transform: translateX(0%);
	}
	60%{
			transform: translateX(0%);
	}
	100%{
			transform: translateX(0%);
	}
}

:root {
  --delay: 0;
  --duration: 1000ms;
  --iterations: 1;
}
/* •·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•·•· */
.reveal-text,
.reveal-text::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 1000ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}
.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 1000ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  font-size: 10vw;
  animation-name: clip-text;
  color: #FFF;
  white-space: nowrap;
  cursor: default;
  &::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #171D61;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: text-revealer;
  }
}
@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;   
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/* メインビジュアル end */

/* front-ec (Engineer centric) start */
.front-ec .inner{
	max-width: 100%;
	padding: 150px 0;
}
.front-ec .wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
}
.front-ec .left{
	box-sizing: border-box;
	width: 65%;
	padding: 0 10vw;
	text-align: left;
}
.front-ec .left .secTitle-01{
	margin-bottom: 50px;
}
.front-ec .left .secTitle-01-left{
	margin-right: 0;
}
.front-ec .left .secTitle-01 h2{
	font-size: 1.5vw;
}
.front-ec .left .secTitle-01 h2 span{
	font-size: 3.3vw;
}
.front-ec .left .text p{
	font-size: 1.8rem;
	line-height: 2;
	margin-bottom: 20px;
}
.front-ec .right{
	box-sizing: border-box;
	width: 35%;
}
.front-ec .right img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* front-ec (Engineer centric) end */

/* front-sl start */
.front-sl .inner{
	max-width: 100%;
	padding: 30px;
	background-color: #171D61;
}
.front-sl .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.front-sl .box{
	box-sizing: border-box;
	width: calc(50% - 15px);
	border-radius: 40px;
	overflow: hidden;
	position: relative;
}
.box-inner {
	display: block;
  cursor: pointer;
  position: relative;
}
.box-inner img {
  width: 100%;
	height: 100%;
	object-fit: cover;
}
.hover-mask {
	width: 100%;
  align-items: center; /* テキストの中央揃え */
  background: rgba(23, 29, 97, .8); /* マスクの色(黒の50%) */
  bottom: 0;
  color: #fff; /* テキストの色 */
  display: flex; /* テキストの中央揃え */
  height: auto;
  justify-content: center; /* テキストの中央揃え */
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.front-sl .box:hover .hover-mask{
	background: rgba(23, 29, 97, .3); /* マスクの色(黒の50%) */
	transition: .6s;
}
.front-sl .content{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	text-align: center;
}
.front-sl .content .miniTitle{
	display: inline-block;
	font-weight: bold;
	color: white;
	letter-spacing: 3px;
	border-bottom: solid 1px white;
	margin-bottom: 25px;
}
.front-sl .content h2{
	font-size: 2.5vw;
	font-weight: bold;
	color: white;
	letter-spacing: 5px;
}
.front-sl .content p{
	font-weight: bold;
	color: white;
	letter-spacing: 3px;
	margin: 2.5vw 0 3.5vw;
}
.front-sl .box:hover a .circle-anim {
	animation: draw .5s linear forwards;
}
.front-sl .box:hover a .arrow-group {
	animation: arrowMove 0.4s ease forwards;
	animation-delay: .5s; /* 円のアニメ終了後に発火 */
}
.front-sl .btn span{
	color: white;
}
.front-sl .circle-anim {
	stroke: white;
}
.front-sl .arrow-line,
.front-sl .arrow-head {
	stroke: #fff;
}
/* front-sl end */

/* front-about start */
.front-about{
	padding-bottom: 150px;
}
.front-about .inner{
	max-width: 100%;
}
.front-about .container{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.front-about .left {
	box-sizing: border-box;
	width: 45vw;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.front-about .upper{
	border-bottom: solid 1px #DEDEDE;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.front-about .upper .secTitle-01{
	margin-bottom: 20px;
}
.front-about .upper .secTitle-01{
	margin-bottom: 30px;
}
.front-about .upper .text p{
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 2;
}
.front-about .bottom .name{
	margin-bottom: 20px;
}
.front-about .bottom .name h4{
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 2;
}
.front-about .bottom .name h4 span{
	display: block;
}
.front-about .bottom .detail p{
	line-height: 2;
}
.front-about .btn{
	margin-top: 30px;
}
.front-about .right{
	box-sizing: border-box;
	width: 55vw;
}
/* front-about end */

/* front-blog start */
.front-blog{
	display: none;
	background-image: linear-gradient(rgb(245, 245, 245), rgb(255, 255, 255));
	padding: 50px;
}
.front-blog .inner{
	max-width: 100%;
	padding: 100px 25px 30px;
	background-color: #fff;
	border-radius: 30px;
}
.front-blog .secHeader{
	margin-bottom: 90px;
	padding: 0 70px;
}
.front-blog .secHeader .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.front-blog .content ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}
.front-blog .content ul li{
	box-sizing: border-box;
	width: 33.3333%;
	padding: 0 25px;
	margin-bottom: 70px;
}
.front-blog .content ul li a{
	display: block;
}
.front-blog .content ul li .eyecatch{
	box-sizing: border-box;
	width: 100%;
	height: 18vw;
	overflow: hidden;
	border-radius: 10px;
}
.front-blog .content ul li .eyecatch img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.front-blog .content ul li a:hover .eyecatch img{
	transform: scale(1.1);
	transition: 0.3s ease-in-out;
}
.front-blog .content ul li .info{
	padding-top: 15px;
}
.front-blog .content ul li .info time{
	font-size: 1.5rem;
	display: inline-block;
	color: #555555;
	margin-bottom: 5px;
}
.front-blog .content ul li .info p{
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 2px;
}
.front-blog .content ul li a:hover .eyecatch{
	border: solid 2px #f2f2f2;
}
.front-blog .btn.spOnly{
	display: none;
}
.front-blog .noPost{
	width: 100%;
	font-size: 2rem;
	padding: 70px 0;
	text-align: center;
}
/* front-blog end */



@media screen and (max-width:767px){
	
	
	
	/* メインビジュアル start */
	.heroHeader {
    background-image: url("../img/front/img_01_sp.jpg");
}
	.heroHeader .content {
		padding-left: 0px;
		top: 45%;
    left: 50%;
    transform: translate(-50%, -55%);
		text-align: center;
	}
	.heroHeader .content .wrapper{
		display: inline-block;
	}
	.heroHeader .content .image {
    width: 16.5vw;
    margin: 0 auto 20px;
}
	.heroHeader .content .text{
		display: inline-block;
	}
	.heroHeader .content p{
		font-size: 8vw;
		text-align: center;
		margin-bottom: 10px;
	}
	.heroHeader .content span{
		font-size: 5vw;
		letter-spacing: 3px;
		text-align: center;
	}
	.heroHeader .textLoop{
		bottom: auto;
		top: 80px;
	}
	.view::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		background: #171D61;
		transform: translateX(-100%);
		transition: all .3s ease-in-out .3s;
	}
	/* メインビジュアル end */
	

	/* front-ec (Engineer centric) start */
	.front-ec .inner{
		padding: 70px 0 50px;
	}
	.front-ec .wrapper{
		display: block;
	}
	.front-ec .left {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
    text-align: left;
	}
	.front-ec .left .secTitle-01{
		margin-bottom: 30px;
	}
	.front-ec .left .text p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 15px;
	}
	.front-ec .right {
    display: none;
	}
	.front-ec .left .secTitle-01 h2 {
    font-size: 1.8rem;
	}
	.front-ec .left .secTitle-01 h2 span{
		font-size: 2.5rem;
		font-weight: bold;
	}
	/* front-ec (Engineer centric) end */
	

	/* front-sl start */
	.front-sl .inner {
    padding: 0;
}
	.front-sl .wrapper{
		display: block;
	}
	.front-sl .box{
		width: 100%;
		border-radius: 0;
	}
	.front-sl .box .hover-mask{
		width: 0;
	}
	.front-sl .content{
		box-sizing: border-box;
		position: static;
		top: auto;
		left: auto;
		transform: none;
		padding: 25px 20px;
	}
	.front-sl .content .miniTitle{
		font-size: 1.2rem;
		margin-bottom: 15px;
	}
	.front-sl .content h2{
		font-size: 2.2rem;
	}
	.front-sl .content p{
		font-size: 1.3rem;
		margin: 15px 0 20px;
	}
	/* front-sl end */
	

	/* front-about start */
	.front-about{
		padding-bottom: 20px;
	}
	.front-about .inner{
		padding: 0;
	}
	.front-about .container{
		flex-wrap: wrap;
	}
	.front-about .left{
		width: 100%;
		order: 2;
		padding: 40px 25px;
	}
	.front-about .upper{
		padding-bottom: 30px;
    margin-bottom: 30px;
	}
	.front-about .upper .secTitle-01{
		margin-bottom: 20px;
	}
	.front-about .upper .text p{
		font-size: 1.6rem;
	}
	.front-about .bottom .name{
		margin-bottom: 15px;
	}
	.front-about .btn {
    margin-top: 10px;
	}
	.front-about .right{
		width: 100%;
		order: 1;
	}
	/* front-about end */
	

	/* front-blog start */
	.front-blog{
		display: none;
		padding: 20px;
	}
	.front-blog .inner{
		padding: 50px 30px 30px;
		border-radius: 20px;
	}
	.front-blog .secHeader{
		padding: 0;
		margin-bottom: 50px;
	}
	.front-blog .secHeader .container{
		display: block;
	}
	.front-blog .secTitle-01{
		width: 100%;
		margin-bottom: 30px;
	}
	.front-blog .secTitle-01 .wrapper{
		display: flex;
		align-items: flex-start;
	}
	.front-blog .secTitle-01-left{
		box-sizing: border-box;
		width: 120px;
	}
	.front-blog .secTitle-01-right{
		box-sizing: border-box;
		width: calc(100% - 120px);
		margin-top: 0;
	}
	.front-blog .content ul{
		display: block;
	}
	.front-blog .content ul li{
		width: 100%;
		padding: 0;
		margin-bottom: 40px;
	}
	.front-blog .content ul li .eyecatch{
		height: 200px;
	}
	.front-blog .content ul li .info{
		padding-top: 10px;
	}
	.front-blog .content ul li .info time{
		font-size: 1.2rem;
	}
	.front-blog .content ul li .info p{
		font-size: 1.5rem;
	}
	.front-blog .btn-inner{
		justify-content: center;
	}
	.front-blog .btn.spOnly{
		display: block;
	}
	.front-blog .noPost{
		font-size: 1.5rem;
		padding: 30px 0;
		text-align: center;
	}
	/* front-blog end */
	
	

	
}