@charset "UTF-8";
/********************************************************************************

page-top.css　トップページcss

********************************************************************************/
/*============================================================
 共通
*============================================================*/
#page-top #main-contents {
    padding-bottom: 0;
}

/* フェードイン 
---------------------------------------- */
#page-top .fadein {
  transform : translate(0, 250px);
  transition : all 1.5s;
}
#page-top .fadein.later {
  transition-delay: .3s;
}
#page-top .fadein.active{
  transform : translate(0, 0);
}

/* スクロールライン
---------------------------------------- */
#page-top .scroll-line {
  position: absolute;
    width: 2px;
    overflow: hidden;
    z-index: 1;
}
#page-top .scroll-line span {
    width: 2px;
    background: var(--common-color-main);
    display: block;
    position: absolute;
    left: 0;
}

/* セクションタイトル
---------------------------------------- */
#page-top .sec-title {
	margin-bottom: 32px;
}
#page-top .sec-title h2 {
	font-size: 36px;
	line-height: 1.4;
}
#page-top .sec-title .en {
	font-size: 56px;
	line-height: 1.2;
	font-weight: 900;
	font-family: var(--common-font-family-en);
	color: var(--common-color-main);
	margin-bottom: 16px;
}
#page-top h2.sec-title {
	font-size: 40px;
	margin-bottom: 48px;
	text-align: center;
	font-family: var(--common-font-family-en);
}

/*============================================================
 メインビジュアル
*============================================================*/
#page-top #mainvisual {
	position: relative;
	margin-bottom: 48px;
}
#page-top #mainvisual .video-box {
	overflow: hidden;
	height: 613px;
	position: relative;
}
#page-top #mainvisual .video-box .video {
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translatex(-50%);
	min-width: 100%;
	min-height: 100%;
}
#page-top #mainvisual .info {
	color: #fff;
	position: absolute;
	top: 185px;
	left: 0;
	width: 100%;
}
#page-top #mainvisual .info .site-title {
	font-size: 64px;
	font-weight: 900;
	line-height: 1.4;
	margin-bottom: 16px;
}
#page-top #mainvisual .info .lead {
	font-size: 24px;
	line-height: 1.6;
	font-weight: bold;
	margin-bottom: 32px;
}
#page-top #mainvisual .info .parts-btn {
	margin: 0;
}
#page-top #mainvisual .scroll-line {
	bottom: -230px;
	height: 300px;
    left: calc(50% - 570px);
	opacity: 1;
	transform: none;
}
#page-top #mainvisual .scroll-line span {
	height: 0;
	top: 0;
	transition: all 2s;
}
#page-top #mainvisual .scroll-line.active span {
	height: 300px;
}


/*============================================================
 MISSION
*============================================================*/
#page-top #sec-mission {
	margin-bottom: 120px;
}
#page-top #sec-mission .inner {
	position: relative;
}
#page-top #sec-mission .block {
	position: relative;
}
#page-top #sec-mission .block .info {
	width: 582px;
	margin-bottom: 0;
}
#page-top #sec-mission .block .info > p {
	margin-bottom: 32px;
}
#page-top #sec-mission .block .info > .parts-btn {
	margin: 0;
}
#page-top #sec-mission .block .img {
	position: absolute;
	top: 0;
	right: calc(50% - 642px);
	width: 540px;
}
#page-top #sec-mission .scroll-line {
	bottom: -300px;
	height: 380px;
    right: calc(50% - 542px);
	opacity: 1;
	transform: none;
}
#page-top #sec-mission .scroll-line span {
	height: 0;
	top: 0;
	transition: all 2s;
}
#page-top #sec-mission .scroll-line.active span {
	height: 380px;
}

/*============================================================
 COMPANY
*============================================================*/
#page-top #sec-company {
	margin-bottom: 200px;
}
#page-top #sec-company .inner {
	position: relative;
}
#page-top #sec-company .block {
	position: relative;
}
#page-top #sec-company .block .info {
	width: 582px;
	margin: 0 0 0 auto;
}
#page-top #sec-company .block .info > p {
	margin-bottom: 32px;
}
#page-top #sec-company .block .info > .parts-btn {
	margin: 0;
}
#page-top #sec-company .block .img {
	position: absolute;
	top: 0;
	left: calc(50% - 642px);
	width: 540px;
}
#page-top #sec-company .scroll-line {
	bottom: -152px;
	height: 152px;
    left: calc(50% - 570px);
	opacity: 1;
	transform: none;
}
#page-top #sec-company .scroll-line span {
	height: 0;
	top: 0;
	transition: all 0.5s;
	/*height: 152px;
	top: -152px;
	-webkit-animation: 2s ease-out 2s infinite forwards running expansion3;
    animation: 2s ease-out 2s infinite forwards running expansion3;*/
}
#page-top #sec-company .scroll-line.active span {
	height: 152px;
}
@keyframes expansion3 {
  0%{
    top: -152px;
  }
  100%{
    top: 152px;
  }
}
#page-top #sec-company .scroll-line.white {
	bottom: -390px;
	height: 270px;
}
#page-top #sec-company .scroll-line.white span {
	height: 0;
	top: 0;
	transition: all 1s;
	transition-delay: 0.5s;
	background: #fff;
}
#page-top #sec-company .scroll-line.white.active span {
	height: 270px;
}
@keyframes expansion4 {
  0%{
    top: -270px;
  }
  100%{
    top: 270px;
  }
}


/*============================================================
 FEATURE
*============================================================*/
#page-top #sec-feature {
	margin-bottom: 48px;
	position: relative;
	color: #fff;
}
#page-top #sec-feature:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 459px;
	background: var(--common-color-main);
	z-index: -1;
	top: -80px;
	left: 0;
}
#page-top #sec-feature .sec-title .en {
	color: #fff;
}
#page-top #sec-feature .block {
	gap: 24px;
}
#page-top #sec-feature .block .info {
	width: 50%;
}
#page-top #sec-feature .block .img {
	width: 47%;
	margin-top: -115px;
}
#page-top #sec-feature .block .img .col01 {
	max-width: 400px;
	margin: 0 0 0 auto;
}
#page-top #sec-feature .block .img .col02 {
	max-width: 315px;
	margin-top: -130px;
}
#page-top #sec-feature .block .img .link {
	margin: -40px 0 0 auto;
	padding: 32px 24px;
	max-width: 342px;
	position: relative;
	background: #000;
	color: #fff;
}
#page-top #sec-feature .block .img .link p {
	font-size: 20px;
	margin-bottom: 24px;
}
#page-top #sec-feature .block .img .link .parts-btn {
	margin: 0 0 0 auto;
}

/*============================================================
 CASE
*============================================================*/
#page-top #sec-case {
	margin-bottom: 80px;
}
#page-top #sec-case .inner {
	position: relative;
}
#page-top #sec-case .inner:before {
	content: "";
	position: absolute;
	background-image: url(../images/top/label-case.svg);
	background-repeat: no-repeat;
	width: 194px;
	height: 649px;
	background-size: contain;
	bottom: -100px;
	left: -72px;
}
#page-top #sec-case .slick-arrow {
	top: 50%;
	transform: translatey(-50%);
	position: absolute;
	cursor: pointer;
}
#page-top #sec-case .prev-arrow {
	left: 0;
}
#page-top #sec-case .next-arrow {
	right: 0;
}
#page-top #sec-case .sec-title {
	color: var(--common-color-main);
	margin-bottom: 24px;
}
#page-top #sec-case .item {
	width: 1000px;
	margin: 0 40px;
}
#page-top #sec-case .item a{
	flex-wrap: nowrap;
	padding-top: 24px;
	transition: all .3s;
}
#page-top #sec-case .item a:hover {
	opacity: 0.7;
}
#page-top #sec-case .item-img {
	width: 500px;
	position: relative;
}
#page-top #sec-case .item-info {
	margin-top: 24px;
	width: 564px;
	min-height: 310px;
	margin-left: -92px;
	color: #fff;
	background: var(--common-color-sub);
	padding: 40px 40px 40px 88px;
}
#page-top #sec-case .item-info .tag {
	gap: 24px;
	margin-bottom: 20px;
}
#page-top #sec-case .item-info .tag .cat {
	background:var(--common-color-main);
	color: #fff;
	font-weight: bold;
	padding: 8px 38px;
}
#page-top #sec-case .item-info .tag .client {
	font-weight: bold;
}
#page-top #sec-case .item-info h3 {
	font-size: 28px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/*============================================================
 RECRUIT
*============================================================*/
#page-top #sec-recruit {
	position: relative;
	padding: 104px 0;
	background: var(--common-color-main);
	color: #fff;
	text-align: center;
	margin-bottom: 0;
}
#page-top #sec-recruit .inner {
	position: relative;
}
#page-top #sec-recruit .inner:before {
	content: "";
	position: absolute;
	background-image: url(../images/top/label-recruit.svg);
	background-repeat: no-repeat;
	width: 1012px;
	height: 173px;
	background-size: contain;
	bottom: -108px;
	left: -204px;
}
#page-top #sec-recruit .sec-lead {
	font-size: 40px;
	margin-bottom: 16px;
}
#page-top #sec-recruit p {
	margin-bottom: 24px;
}

/*============================================================
 BLOG
*============================================================*/
#page-top #sec-blog {
	position: relative;
	padding: 80px 0;
	background: var(--common-color-sub);
	color: #fff;
}
#page-top #sec-blog .inner {
	position: relative;
}
#page-top #sec-blog .inner:before {
	content: "";
	position: absolute;
	background-image: url(../images/top/label-blog.svg);
	background-repeat: no-repeat;
	width: 206px;
	height: 692px;
	background-size: contain;
	bottom: -87px;
	right: -82px;
}
#page-top #sec-blog .sec-title {
	color: #fff;
}
#page-top #sec-blog .wrap {
	width: 100vw;
    margin-left: calc(50% - 50vw);
}
#page-top #sec-blog .item {
	margin: 0 24px;
	width: 300px;
	color: var(--common-color-text);
}

/*============================================================
 NEWS
*============================================================*/
#page-top #sec-news {
	position: relative;
	margin-bottom: 72px;
}
#page-top #sec-news .block-news {
	margin-bottom: 48px;
}


/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Tablet
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 1128px) {
	/*============================================================
	 共通
	*============================================================*/
	#page-top .sec-title .en {
		font-size: 32px;
	}
	#page-top .sec-title h2 {
		font-size: 32px;
	}
	
    /*============================================================
     メインビジュアル
    *============================================================*/
	#page-top #mainvisual .scroll-line {
		left: 10px;
	}
	#page-top #mainvisual .info .site-title {
		font-size: 56px;
	}
	#page-top #mainvisual .scroll-line {
		bottom: -200px;
		height: 240px;
	}
	
	/*============================================================
	 MISSION
	*============================================================*/
	#page-top #sec-mission {
		margin-bottom: 64px;
	}
	#page-top #sec-mission .block .info {
		width: 55%;
	}
	#page-top #sec-mission .block .img {
		right: -24px;
		width: 45%;
		z-index: -1;
	}
	#page-top #sec-mission .scroll-line {
		right: 10px;
		height: 280px;
		bottom: -230px;
	}
	
	/*============================================================
	 COMPANY
	*============================================================*/
	#page-top #sec-company {
		margin-bottom: 140px;
	}
	#page-top #sec-company .block .info {
		width: 55%;
	}
	#page-top #sec-company .block .img {
		left: -24px;
		width: 45%;
		z-index: -1;
	}
	#page-top #sec-company .scroll-line {
		left: 10px;
		height: 100px;
	}
	#page-top #sec-company .scroll-line.white {
		bottom: -290px;
		height: 230px;
	}
	
	/*============================================================
	 FEATURE
	*============================================================*/
	#page-top #sec-feature .block .img {
		width: 46%;
		margin-top: 0;
	}
	#page-top #sec-feature .block .img .col01 {
		display: none;
	}
	#page-top #sec-feature .block .img .col02 {
		margin-top: 0;
		max-width: 88%;
	}
	#page-top #sec-feature .block .img .link {
		margin: -56px -48px 0 auto;
	}
	
	/*============================================================
	 CASE
	*============================================================*/
	#page-top #sec-case .item {
		width: 840px;
	}
	#page-top #sec-case .item-info {
		width: 52%;
	}
	#page-top #sec-case .item-img {
		width: 48%;
	}

	#page-top #sec-case .item-info {
		padding-left: 56px;
	}
	
	/*============================================================
	 RECRUIT
	*============================================================*/
	#page-top #sec-recruit .sec-lead {
		font-size: 32px;
	}
}

@media screen and (max-width: 900px) {
	/*============================================================
	 CASE
	*============================================================*/
	#page-top #sec-case .item {
		width: 720px;
	}

}



/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 SP
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 767px) {
	/*============================================================
	 共通
	*============================================================*/
	#page-top .fadein {
		transform: translate(0, 100px);
		transition: all 1s;
	}

	#page-top h2.sec-title {
		margin-bottom: 32px;
	}
	
    /*============================================================
     メインビジュアル
    *============================================================*/
	#page-top #mainvisual .info .site-title {
		font-size: 48px;
	}
	#page-top #mainvisual .info .site-title .forSP {
		display: none;
	}
	#page-top #mainvisual .info .lead .forSP {
		display: none;
	}
	
	/*============================================================
	 MISSION
	*============================================================*/
	#page-top #sec-mission {
		margin-bottom: 0;
	}
	#page-top #sec-mission .block .info {
		width: 100%;
	}
	#page-top #sec-mission .block .img {
		width: 60%;
		position: static;
		margin: 0 -24px 0 auto;
	}
	#page-top #sec-mission .scroll-line {
		height: 520px;
		bottom: -470px;
	}
	
	/*============================================================
	 COMPANY
	*============================================================*/
	#page-top #sec-company {
		margin-top: -100px;
	}
	#page-top #sec-company .block {
		justify-content: flex-end;
	}
	#page-top #sec-company .block .img {
		width: 60%;
		margin: 0 0 0 -24px;
		position: static;
		order: 1;
	}
	#page-top #sec-company .block .info {
		width: 100%;
		order: 2;
	}
	
	/*============================================================
	 FEATURE
	*============================================================*/
	#page-top #sec-feature .block {
		flex-direction: column;
	}
	#page-top #sec-feature .block .info {
		width: 100%;
		margin-bottom: 32px;
	}
	#page-top #sec-feature .block .img {
		width: 100vw;
		margin-left: calc(50% - 50vw);
		position: relative;
	}
	#page-top #sec-feature .block .img .col02 {
		max-width: 100%;
		max-height: 300px;
		overflow: hidden;
	}
	#page-top #sec-feature .block .img .col02 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#page-top #sec-feature .block .img .link {
		position: absolute;
		top: -32px;
		right: 24px;
		margin: 0;
	}
	
	/*============================================================
	 CASE
	*============================================================*/
	#page-top #sec-case .inner:before {
		width: 170px;
		height: 630px;
		left: -24px;
	}
	#page-top #sec-case .prev-arrow {
		left: calc(50% - 240px);
	}
	#page-top #sec-case .next-arrow {
		right: calc(50% - 240px);
	}
	#page-top #sec-case .sec-title {
		margin-bottom: 16px;
	}
	#page-top #sec-case .item {
		width: 400px;
		max-width: 100%;
		margin: 0 80px;
	}
	#page-top #sec-case .item a {
		flex-direction: column;
	}
	#page-top #sec-case .item-img {
		width: 97%;
	}
	#page-top #sec-case .item-info {
		width: 97%;
		margin: -12px 0 0 auto;
		min-height: initial;
		z-index: -1;
	}
	#page-top #sec-case .item-info .tag .cat {
		padding: 8px 16px;
	}
	#page-top #sec-case .item-info h3 {
		font-size: 24px;
	}
		
	/*============================================================
	 RECRUIT
	*============================================================*/
	#page-top #sec-recruit {
		padding: 48px 0;
	}
	#page-top #sec-recruit .inner:before {
		width: 100%;
		left: 0;
	}
	#page-top #sec-recruit .sec-lead {
		font-size: 22px;
	}
	
	/*============================================================
	 BLOG
	*============================================================*/
	#page-top #sec-blog {
		margin-bottom: 40px;
	}
	
	/*============================================================
	 NEWS
	*============================================================*/
	#page-top #sec-news {
		margin-bottom: 48px;
	}
}

@media screen and (max-width: 480px) {
	/*============================================================
	 共通
	*============================================================*/
	#page-top .sec-title {
		margin-bottom: 24px;
	}
	#page-top .sec-title .en {
		font-size: 40px;
		margin-bottom: 8px;
	}
	#page-top .sec-title h2 {
		font-size: 24px;
	}
	#page-top h2.sec-title {
		margin-bottom: 24px;
	}
	
	/*============================================================
	 メインビジュアル
	*============================================================*/
	#page-top #mainvisual .info {
		top: 130px;
	}
	#page-top #mainvisual .info .site-title .forSP {
		display: block;
	}
	#page-top #mainvisual .info .lead {
		font-size: 20px;
	}
	#page-top #mainvisual .info .lead .forSP {
		display: block;
	}
	#page-top #mainvisual .scroll-line {
		bottom: -180px;
		height: 210px;
	}
	
	/*============================================================
	 MISSION
	*============================================================*/
	#page-top #sec-mission .block .img {
		width: 90%;
		margin-right: -24px;
	}
	#page-top #sec-mission .scroll-line {
		height: 280px;
		bottom: -266px;
	}
	
	/*============================================================
	 COMPANY
	*============================================================*/
	#page-top #sec-company {
		margin-top: -180px;
		margin-bottom: 108px;
	}
	#page-top #sec-company .block .img {
		width: 90%;
		margin-left: -24px;
	}
	#page-top #sec-company .scroll-line {
		height: 100px;
	}
	#page-top #sec-company .scroll-line.white {
		bottom: -250px;
		height: 190px;
	}
	
	/*============================================================
	 FEATURE
	*============================================================*/
	#page-top #sec-feature:before {
		height: 390px;
		top: -48px;
	}
	#page-top #sec-feature .block .img {
		margin-top: -6px;
	}
	#page-top #sec-feature .block .img .link {
		padding: 24px;
	}
	#page-top #sec-feature .block .img .link p {
		font-size: 16px;
		margin-bottom: 8px;
	}
	
	/*============================================================
	 CASE
	*============================================================*/
	#page-top #sec-case {
		margin-bottom: 48px;
	}
	#page-top #sec-case .inner:before {
		bottom: -140px;
	}
	#page-top #sec-case .prev-arrow {
		left: calc(50% - 188px);
	}
	#page-top #sec-case .next-arrow {
		right: calc(50% - 188px);
	}
	#page-top #sec-case .item {
		width: 280px;
		margin: 0 40px;
	}
	#page-top #sec-case .item-info {
		padding: 28px 16px 24px;
	}
	#page-top #sec-case .item-info .tag {
		margin-bottom: 8px;
	}
	#page-top #sec-case .item-info .tag .cat {
		font-size: 12px;
	}
	
	/*============================================================
	 RECRUIT
	*============================================================*/
	#page-top #sec-recruit .inner:before {
		background: url(../images/top/label-recruit-sp.svg) no-repeat;
		background-size: contain;
		width: 405px;
		height: 405px;
		top: -48px;
		left: 0;
	}
	#page-top #sec-recruit p {
		font-size: 12px;
	}
	
	/*============================================================
	 BLOG
	*============================================================*/
	#page-top #sec-blog {
		padding: 40px 0;
	}
	#page-top #sec-blog .inner:before {
		width: 114px;
		height: 380px;
		right: -32px;
		top: -40px;
		bottom: auto;
	}
	#page-top #sec-blog .slider {
		margin-left: 12px;
	}
	#page-top #sec-blog .item {
		margin: 0 20px;
	}
	
	/*============================================================
	 NEWS
	*============================================================*/
	#page-top #sec-news .block-news {
		margin-bottom: 24px;
	}


}
