/* トップページ
=========================================================================
=========================================================================*/
#home main a,
#home main a:visited {
	color: #333;
	text-decoration: none;
}

#home main a:hover {
	color: #333;
	text-decoration: underline;
}

/* Hero Space
-----------------------------------------------------------*/
#home .hero_space {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #000;
}

/* ローディング画面 */
#home .hero_space .progress {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: #000;
	z-index: 3;
}

#home .hero_space .progress .loader {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 165px;
	height: 168px;
	background: url(../img/home/hero_logo.svg) center center no-repeat;
	background-size: contain;
	animation: logo 0.75s linear;
}

@keyframes logo {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* スライドショー */
#home .hero_space #slide_wrapp {
	position: relative;
	overflow: hidden;
	height: 100%;
	background-color: #FFF;
	z-index: 1;
}

#home .hero_space #slide_wrapp .slide_item {
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 2s linear, transform 7.5s linear;
	position: relative;
	height: 100%;
}

#home .hero_space #slide_wrapp .slide_item:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

#home .hero_space #slide_wrapp .slide_item.show_ {
	opacity: 1;
}

#home .hero_space #slide_wrapp .slide_item.zoom_ {
	transform: scale(1.0);
}

#home .hero_space #slide_wrapp .slide_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

/* ----- オーバーレイ ----- */
#home .hero_space .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(111, 121, 128, .12);
	z-index: 2;
}

#home .hero_space .catch_copy {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 3;
}

#home .hero_space h1 {
	position: relative;
	margin: 0 auto;
	width: 856px;
	height: 100vh;
}

#home .hero_space h1 img {
	position: absolute;
	top: 42.18%;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 100%;
	filter: drop-shadow(3px 3px 9px rgba(0, 0, 0, 0.3));
}


/* News - Projects & Works
-----------------------------------------------------------*/
#home main .news_project {
	position: relative;
	padding: 84px 0 53px;
	background: linear-gradient(to bottom left, #E2F1FA, #8BC4C6);
}

#home main .news_project::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(../img/home/news_projrct_bg.png) left top no-repeat;
	background-size: cover;
}

/* --- News ------------------------------------------- */
#home main .news_project .news {
	position: relative;
	margin: 0 auto 102px;
	width: 960px;
}

#home main .news_project .news h2 {
	position: absolute;
	left: -42px;
	top: -27px;
	overflow: hidden;
	text-align: left;
	text-indent: 100%;
	white-space: nowrap;
	width: 114px;
	height: 33px;
	background: url(../img/home/news_title.svg) center center no-repeat;
	background-size: contain;
}

#home main .news_project .news ul {
	margin-bottom: 19px;
	padding: 24px 46px;
	background-color: #FFF;
}

#home main .news_project .news ul li {
	margin-bottom: .47em;
}

#home main .news_project .news ul li:last-child {
	margin-bottom: 0;
}

#home main .news_project .news ul li a {
	line-height: 1.53em;
	display: flex;
	justify-content: flex-start;
}

#home main .news_project .news ul li p {
	display: inline-block;
	width: calc(204 / 868 * 100%);
}

#home main .news_project .news ul li h3 {
	display: inline-block;
	width: calc(664 / 868 * 100%);
	overflow-wrap: break-word;
}

/* --- Projects & Works ------------------------------------------- */
#home main .news_project .projects {
	position: relative;
	margin: 0 auto;
	padding-left: 109px;
	width: 100%;
}

@media screen and (max-width:1246px) {
	#home main .news_project .projects {
		padding-left: 109px;
		padding-left: calc(109 / 1400 * 100%);
	}
}

#home main .news_project .projects h2 {
	overflow: hidden;
	text-align: left;
	text-indent: 100%;
	white-space: nowrap;
	margin: 0 auto 28px;
	width: 1006px;
	height: 33px;
	background: url(../img/home/projects_title.svg) center right no-repeat;
	background-size: contain;
}

@media screen and (max-width:1246px) {
	#home main .news_project .projects h2 {
		width: 100%;
		background: url(../img/home/projects_title.svg) center right 20px no-repeat;
	}
}

#home main .news_project .projects .inner {
	position: relative;
	overflow: hidden;
	padding-left: 40px;
}

#home main .news_project .projects .inner .bg {
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
}

#home main .news_project .projects .inner div.eyecatch {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
	width: 100%;
	padding-top: 70.348837%;
}

#home main .news_project .projects .inner div.eyecatch img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	height: 100%;
	transition-duration: 0.3s;
}

#home main .news_project .projects .inner a:hover img {
	transform: translate(-50%, -50%) scale(1.025, 1.025);
	opacity: .8;
}

#home main .news_project .projects .inner a {
	display: block;
}

#home main .news_project .projects .inner a,
#home main .news_project .projects .inner a:visited {
	color: #333;
	text-decoration: none;
}

#home main .news_project .projects .inner p {
	margin-bottom: 22px;
	font-size: 1.2rem;
	line-height: 1.53em;
}

#home main .news_project .projects .inner h3 {
	font-size: 1.4rem;
	line-height: 1.53em;
	font-weight: 600;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

#home main .news_project .projects .innera:hover {
	color: #333;
	text-decoration: underline;
}

.swiper {
	overflow: visible;
}

.swiper-wrapper {
	display: flex;
}

.swiper-slide {
	margin-bottom: 100px;
	width: 344px;
}

@media screen and (max-width:1246px) {
	.swiper-slide {
		width: calc(344 / 1246 * 100%);
	}
}

.swiper-scrollbar {
	margin-bottom: 50px;
	left: calc(343 / 1252 * 100%) !important;
	width: 420px !important;
}

/* --- Contents link ------------------------------------------- */
#home main .contentes ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#home main .contentes ul li {
	position: relative;
	overflow: hidden;
}

#home main .contentes ul li::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background: #FFF;
	z-index: 1;
}

#home main .contentes ul li.start::before {
	animation: img-wrap .5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/* ----- 企業情報 ----- */
#home main .contentes ul li:nth-child(1) {
	margin-bottom: 3px;
	width: 100%;
	height: 522px;
	pointer-events: none;
}

#home main .contentes ul li:nth-child(1)::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background: url(../img/home/contentes_company_bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: -1;
	transition: all .3s;
}

#home main .contentes ul li:nth-child(1) .inner {
	margin: 118px auto 0;
	width: 930px;
}

#home main .contentes ul li:nth-child(1) h2 {
	position: relative;
	margin-bottom: 39px;
	padding-top: 126px;
	width: 100%;
	font-weight: bold;
	font-size: 4rem;
	line-height: 1em;
	color: #FFF;
}

#home main .contentes ul li:nth-child(1) h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 55px;
	top: 0;
	background: url(../img/home/contentes_company_title.svg) left top no-repeat;
	background-size: contain;
}

/* ボタン：もっと詳しく ----- */
#home main .contentes ul li:nth-child(1) .inner p {
	position: relative;
	width: 280px;
	height: 64px;
	background-color: #0051AF;
	border-radius: 5px;
}

#home main .contentes ul li:nth-child(1) .inner p a.button_company_more {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 64px;
	font-weight: bold;
	font-size: 1.5rem;
	color: #FFF;
	text-decoration: none;
	z-index: 2;
	pointer-events: auto;
}

#home main .contentes ul li:nth-child(1) .inner p a.button_company_more:hover {
	color: #0051AF !important;
}

#home main .contentes ul li:nth-child(1) .inner p a.button_company_more:visited {
	color: #FFF;
}

#home main .contentes ul li:nth-child(1) .inner p a.button_company_more::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	border-radius: 5px;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.3s;
	z-index: -1;
}

#home main .contentes ul li:nth-child(1) .inner p a.button_company_more:hover::before {
	transform: scale(1);
}

#home main .contentes ul li:nth-child(1):hover::after {
	transform: scale(1.025, 1.025);
	opacity: .8;
}

/* ----- 採用情報 ----- */
#home main .contentes ul li:nth-child(2) {
	position: relative;
	overflow: hidden;
	margin-bottom: 3px;
	width: calc(698 / 1400 * 100%);
	height: 326px;
}

#home main .contentes ul li:nth-child(2)::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background: url(../img/home/contentes_recuit_bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: -1;
	transition: all .3s;
}

#home main .contentes ul li:nth-child(2) a {
	display: block;
	width: 100%;
	height: 100%;
}

#home main .contentes ul li:nth-child(2) a:hover {
	text-decoration: none !important;
}

#home main .contentes ul li:nth-child(2):hover::after {
	transform: scale(1.025, 1.025);
	opacity: .8;
}

#home main .contentes ul li:nth-child(2) h2 {
	position: relative;
	margin-top: 150px;
	padding-top: 30px;
	width: 100%;
	font-weight: bold;
	font-size: 1.9rem;
	line-height: 1em;
	color: #FFF;
	text-align: center;
}

#home main .contentes ul li:nth-child(2) h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 13px;
	top: 0;
	background: url(../img/home/contentes_recuit_title.svg) center center no-repeat;
	background-size: contain;
}

/* ----- 事業領域 ----- */
#home main .contentes ul li:nth-child(3) {
	position: relative;
	overflow: hidden;
	margin-bottom: 3px;
	width: calc(698 / 1400 * 100%);
	height: 326px;
}

#home main .contentes ul li:nth-child(3)::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background: url(../img/home/contentes_business_bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: -1;
	transition: all .3s;
}

#home main .contentes ul li:nth-child(3) a {
	display: block;
	width: 100%;
	height: 100%;
}

#home main .contentes ul li:nth-child(3) a:hover {
	text-decoration: none !important;
}

#home main .contentes ul li:nth-child(3):hover::after {
	transform: scale(1.025, 1.025);
	opacity: .8;
}

#home main .contentes ul li:nth-child(3) h2 {
	position: relative;
	margin-top: 150px;
	padding-top: 30px;
	width: 100%;
	font-weight: bold;
	font-size: 1.9rem;
	line-height: 1em;
	color: #FFF;
	text-align: center;
}

#home main .contentes ul li:nth-child(3) h2::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 13px;
	top: 0;
	background: url(../img/home/contentes_business_title.svg) center center no-repeat;
	background-size: contain;
}

/*  1044px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:1044px) {

	/* News - Project & Works
	-----------------------------------------------------------*/
	/* --- News ------------------------------------------- */
	#home main .news_project .news {
		padding: 0 30px;
		width: 100%;
	}

	#home main .news_project .news h2 {
		left: 20px;
	}
}

/*  970px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:970px) {

	/* Hero Space
	-----------------------------------------------------------*/
	#home .hero_space .progress .loader {
		width: calc(165 / 1400 * 100%);
	}

	#home .hero_space h1 {
		width: 85%;
	}

	/* --- Contents link ------------------------------------------- */
	#home main .contentes ul li:nth-child(1) .inner {
		padding: 0 20px;
		width: 100%;
	}
}

/*  767px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {

	/* Hero Space
	-----------------------------------------------------------*/
	#home .hero_space .progress .loader {
		width: calc(117 / 375 * 100%);
		max-width: 117px;
	}

	/* スライドショー */
	#home .hero_space #slide_wrapp .slide_item {
		transform: scale(1.15);
	}

	#home .hero_space h1 {
		width: 100%;
	}

	#home .hero_space h1 img {
		/*top: 471px;
		top: calc(471 / 667 * 100%);*/
		left: 0;
		right: 0;
		top: auto;
		bottom: 37%;
		margin: 0 auto;
		width: calc(531 / 750 * 100%);
		filter: drop-shadow(3px 3px 12px rgba(0, 0, 0, 0.3));
	}

	/* News - Project & Works
	-----------------------------------------------------------*/
	#home main .news_project {
		padding: 70px 0 50px;
	}

	#home main .news_project::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		background: url(../img/home/news_projrct_bg@2x.png) left top no-repeat;
		background-size: cover;
	}

	/* --- News ------------------------------------------- */
	#home main .news_project .news {
		margin: 0 auto 30px;
	}

	#home main .news_project .news h2 {
		top: -15px;
		width: 66px;
		height: 19px;
	}

	#home main .news_project .news ul {
		margin-bottom: 20px;
		padding: 20px 15px;
	}

	#home main .news_project .news ul li a {
		font-size: 1.2rem;
	}

	/* --- Projects & Works ------------------------------------------- */
	#home main .news_project .projects {
		padding-left: 0;
	}

	#home main .news_project .projects h2 {
		margin: 0 auto 15px;
		height: 19px;
		background-size: contain;
	}

	#home main .news_project .projects .inner {
		position: relative;
		overflow: hidden;
		padding-left: 40px;
	}

	#home main .news_project .projects .inner .bg {
		top: 70px;
	}

	#home main .news_project .projects .inner div.eyecatch {
		margin-bottom: 20px;
	}

	#home main .news_project .projects .inner a,
	#home main .news_project .projects .inner a:visited {
		font-size: 1.2rem;
	}

	#home main .news_project .projects .inner p {
		margin-bottom: 11px;
		font-size: 1.1rem;
	}

	#home main .news_project .projects .inner h3 {
		font-size: 1.2rem;
	}

	.swiper-wrapper {
		display: flex;
		justify-content: space-between;
	}

	.swiper-slide {
		margin-bottom: 70px;
		width: calc(240 / 375 * 100%);
	}

	.swiper-scrollbar {
		margin-bottom: 15px;
		left: auto;
		width: calc(247 / 375 * 100%) !important;
	}

	/* --- Contents link ------------------------------------------- */
	/* ----- 企業情報 ----- */
	#home main .contentes ul li:nth-child(1) {
		margin-bottom: 1px;
		height: 380px;
	}

	#home main .contentes ul li:nth-child(1)::after {
		background: url(../img/home/contentes_company_bg@2x.jpg) center center no-repeat;
		background-size: cover;
	}

	#home main .contentes ul li:nth-child(1) .inner {
		margin: 68px auto 0;
		padding: 0;
		width: calc(280 / 375 * 100%);
	}

	#home main .contentes ul li:nth-child(1) h2 {
		margin-bottom: 49px;
		padding-top: 67px;
		font-weight: bold;
		font-size: 2.9rem;
	}

	#home main .contentes ul li:nth-child(1) h2::before {
		height: 40px;

	}

	/* ボタン：もっと詳しく ----- */
	#home main .contentes ul li:nth-child(1) .inner p {
		width: 100%;
		height: 58px;
	}

	#home main .contentes ul li:nth-child(1) .inner p a.button_company_more {
		line-height: 58px;
		font-size: 1.6rem;
	}

	#home main .contentes ul li:nth-child(1) .inner p a.button_company_more:hover {
		color: #FFF !important;
	}

	#home main .contentes ul li:nth-child(1) .inner p a.button_company_more::before {
		display: none;
	}

	#home main .contentes ul li:nth-child(1):hover::after {
		transform: scale(1, 1);
		opacity: 1;
	}

	/* ----- 採用情報 ----- */
	#home main .contentes ul li:nth-child(2) {
		margin-bottom: 1px;
		width: calc(187 / 375 * 100%);
		height: 140px;
	}

	#home main .contentes ul li:nth-child(2)::after {
		background: url(../img/home/contentes_recuit_bg@2x.jpg) center center no-repeat;
		background-size: cover;
	}

	#home main .contentes ul li:nth-child(2):hover::after {
		transform: scale(1, 1);
		opacity: 1;
	}

	#home main .contentes ul li:nth-child(2) h2 {
		margin-top: 55px;
		padding-top: 17px;
		font-weight: bold;
		font-size: 1.6rem;
	}

	#home main .contentes ul li:nth-child(2) h2::before {
		height: 8px;
	}

	/* ----- 事業領域 ----- */
	#home main .contentes ul li:nth-child(3) {
		margin-bottom: 1px;
		width: calc(187 / 375 * 100%);
		height: 140px;
	}

	#home main .contentes ul li:nth-child(3)::after {
		background: url(../img/home/contentes_business_bg@2x.jpg) center center no-repeat;
		background-size: cover;
	}

	#home main .contentes ul li:nth-child(3):hover::after {
		transform: scale(1, 1);
		opacity: 1;
	}

	#home main .contentes ul li:nth-child(3) h2 {
		margin-top: 55px;
		padding-top: 17px;
		font-weight: bold;
		font-size: 1.6rem;
	}

	#home main .contentes ul li:nth-child(3) h2::before {
		height: 8px;
	}
}

/*  480px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:480px) {

	/* --- News ------------------------------------------- */
	#home main .news_project .news ul li p {
		width: calc(116 / 281 * 100%);
	}

	#home main .news_project .news ul li h3 {
		width: calc(165 / 281 * 100%);
	}
}
