@charset "UTF-8";

/*---------------TOP　about*/
.top_about {
	position: relative;
	padding-top: 120px;
	padding-bottom: 106px;
}
.top_about::before {
	content: "";
	display: block;
	width: 600px;
	height: 507px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
	background-image: url("../img/common/bg_leftup.webp");
	background-repeat: no-repeat;
	background-size: 600px auto;
}
.top_about .top_about_inner {
	display: flex;
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.top_about .top_about_inner.fadeIn.active {
	top: 0;
	opacity: 1;
}
.top_about .top_about_inner .t_about_img {
	width: 50%;
	clip-path: polygon(0 0, 100% 0, calc(100% - 100px) 100%, 0 100%);
	position: relative;
}
.top_about .top_about_inner .t_about_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 74% 50%;
}
.top_about .top_about_inner .t_about_text {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	padding: 4em 4em 4em 2em;
	position: relative;
	top: 106px;
}
.top_about .top_about_inner .t_about_text::after {
	content: "";
	display: block;
	width: calc(100% + 200px);
	height: 100%;
	clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
	background-color: #193c8c;
	position: absolute;
	left: -200px;
	top: 0;
	z-index: -1;
}
.top_about .top_about_inner .t_about_text .text_img {
	width: calc(100% - 4em);
	min-width: 600px;
	position: absolute;
	right: 0;
	top: -106px;
	opacity: .5;
	z-index: 1;
}
.top_about .top_about_inner .t_about_text .text_img img {
	width: 100%;
}
.top_about .top_about_inner .t_about_text .t_about_title {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 1em;
}
.top_about .top_about_inner .t_about_text .img_strength {
	max-width: 500px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.top_about {
		padding-top: 80px;
		padding-bottom: 0;
	}
	.top_about::before {
		width: 100%;
		height: 0;
		padding-bottom: 84.5%;
		background-size: contain;
	}
	.top_about .top_about_inner {
		flex-direction: column;
	}
	.top_about .top_about_inner .t_about_img {
		width: 96%;
		aspect-ratio: 3 / 2;
		clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
	}
	.top_about .top_about_inner .t_about_text {
		width: 96%;
		padding: 3em 3em 3em 5em;
		position: relative;
		top: 0;
		left: 4%;
	}
	.top_about .top_about_inner .t_about_text::after {
		width: 100%;
		height: calc(100% + 60px);
		clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
		position: absolute;
		left: 0;
		top: -60px;
	}
	.top_about .top_about_inner .t_about_text .text_img {
		width: 86%;
		min-width: unset;
		top: 20px;
		opacity: .2;
	}
	.top_about .top_about_inner .t_about_text .t_about_title {
		font-size: 2.6rem;
	}
	.top_about .top_about_inner .t_about_text .img_strength {
		width: 80%;
	}
}
@media screen and (max-width: 480px) {
	.top_about .top_about_inner .t_about_text {
		padding: 3em 2em 3em 4em;
		position: relative;
	}
	.top_about .top_about_inner .t_about_text .t_about_title {
		font-size: 2.2rem;
	}
	.top_about .top_about_inner .t_about_text .img_strength {
		width: 90%;
	}
}

/*---------------TOP　business*/
.top_business {
	position: relative;
	margin-top: 120px;
}
.top_business .top_business_bg {
	background-image: url("../img/top/bg_business.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.top_business .top_business_bg.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.top_business .top_business_bg.fadeIn.active {
	top: 0;
	opacity: 1;
}
.top_business .top_business_inner {
	padding: 3.5em 5%;
	height: 640px;
	display: flex;
	align-items: flex-end;
}
.top_business .top_business_inner .top_business_text {
	max-width: 470px;
}
.top_business .top_business_inner .top_business_text .title {
	font-size: 9rem;
	font-weight: 700;
	line-height: 1;
	color: #193c8c;
	margin-bottom: 0.3em;
}
.top_business .top_business_inner .top_business_text .text {
	color: #ffffff;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.top_business .top_business_inner .top_business_text .btn_link {
	margin-top: 2.4em;
}
.business_img_slide_wrap {
	overflow: hidden;
	display: flex;
	align-items: center;
	margin-top: 80px;
}
.business_img_slide_wrap.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.business_img_slide_wrap.fadeIn.active {
	top: 0;
	opacity: 1;
}
.business_img_slide_wrap .business_img_slide {
	display: flex;
	animation: loop-slide 90s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.business_img_slide_wrap .business_img_slide li {
	width: 300px;
	/*width: 19vw;*/
	aspect-ratio: 1 / 1;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
}
.business_img_slide_wrap .business_img_slide li img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
@media screen and (max-width: 768px) {
	.top_business {
		margin-top: 80px;
	}
	.top_business .top_business_inner {
		padding: 3em 6%;
		height: 560px;
	}
	.top_business .top_business_inner .top_business_text {
		max-width: 100%;
	}
	.top_business .top_business_inner .top_business_text .title {
		font-size: 6rem;
	}
	.top_business .top_business_inner .top_business_text .btn_link {
		margin-top: 2em;
	}
	.business_img_slide_wrap {
		margin-top: 60px;
	}
	.business_img_slide_wrap .business_img_slide li {
		width: 200px;
	}
}
@media screen and (max-width: 480px) {
	.top_business .top_business_inner {
		height: 460px;
	}
	.top_business .top_business_inner .top_business_text .title {
		font-size: 4.6rem;
	}
	.business_img_slide_wrap .business_img_slide li {
		width: 160px;
		margin-right: 14px;
	}
}

/*---------------TOP　Company / Recruit*/
.top_menu {
	position: relative;
	margin-top: 120px;
}
.top_menu .top_menu_inner {
	margin: 0 5%;
}
.top_menu .top_menu_inner .menu_wrap {
	display: flex;
	flex-wrap: wrap;
}
.top_menu .top_menu_inner .menu_wrap.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.top_menu .top_menu_inner .menu_wrap.fadeIn.active {
	top: 0;
	opacity: 1;
}
.top_menu .top_menu_inner .menu_wrap .menu_item {
	width: 50%;
}
.top_menu .top_menu_inner .menu_wrap .menu_item a {
	width: 100%;
	aspect-ratio: 5 / 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.top_menu .top_menu_inner .menu_wrap .menu_item a::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(5, 40, 125, 0.3);
	position: absolute;
	left: 0;
	top: 0;
	transition: .3s;
}
.top_menu .top_menu_inner .menu_wrap .menu_item a:hover::after {
	background-color: rgba(5, 40, 125, 1);
}
.top_menu .top_menu_inner .menu_wrap .menu_item a img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
.top_menu .top_menu_inner .menu_wrap .menu_item a .titlebox {
	position: relative;
	text-align: center;
	z-index: 1;
}
.top_menu .top_menu_inner .menu_wrap .menu_item a .titlebox .title_jp {
	color: #ffffff;
	font-weight: 700;
}
.top_menu .top_menu_inner .menu_wrap .menu_item a .titlebox .title_en {
	color: #ffffff;
	font-size: 3.6rem;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.top_menu {
		margin-top: 80px;
		}
	.top_menu .top_menu_inner {
		margin: 0 6%;
	}
	.top_menu .top_menu_inner .menu_wrap {
		flex-direction: column;
	}
	.top_menu .top_menu_inner .menu_wrap .menu_item {
		width: 100%;
	}
	.top_menu .top_menu_inner .menu_wrap .menu_item a .titlebox .title_en {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 480px) {
	.top_menu .top_menu_inner .menu_wrap .menu_item a .titlebox .title_en {
		font-size: 2.2rem;
	}
}

/*---------------TOP 最新情報*/
.top .top_news {
	margin-top: 120px;
	padding-bottom: 120px;
	position: relative;
}
.top .top_news::before {
	content: "";
	display: block;
	width: 1000px;
	height: 500px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -2;
	background-image: url("../img/common/bg_rightbottom.png");
	background-repeat: no-repeat;
	background-size: 1000px auto;
}
.top .top_news .top_news_inner {
	margin: 0 5%;
	display: flex;
	flex-wrap: wrap;
}
.top .top_news .top_news_inner.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.top .top_news .top_news_inner.fadeIn.active {
	top: 0;
	opacity: 1;
}
.top .top_news .top_news_inner .title_area {
	width: 24%;
}
.top .top_news .top_news_inner .title_area .section_title {
	font-size: 3.6rem;
	font-weight: 700;
	color: #05287d;
}
.top .top_news .top_news_inner .title_area .btn_link {
	width: 150px;
	margin-top: 2em;
}
.top .top_news .top_news_inner .contents_area {
	width: 76%;
}
.top .top_news .top_news_inner .contents_area .news {
	max-height: 220px;
	overflow-y: scroll;
	margin: 0 auto 30px;
}
.top .top_news .top_news_inner .contents_area .news .news_list .news_item {
	border-bottom: 1px solid #dddddd;
}
.top .top_news .top_news_inner .contents_area .news .news_list .news_item a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.5em 30px 1.5em 20px;
	transition: .2s;
	position: relative;
}
.top .top_news .top_news_inner .contents_area .news .news_list .news_item a::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-left: 10px solid #05287d;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.top .top_news .top_news_inner .contents_area .news .news_list .news_item a:hover {
	background-color: rgba(130, 170, 230, 0.2);
	cursor: pointer;
}
.top .top_news .top_news_inner .contents_area .news .news_list .news_item a .date {
	width: 150px;
	line-height: 1.6;
}
.top .top_news .top_news_inner .contents_area .news .news_list .news_item a .news_title {
	width: calc(100% - 150px);
	line-height: 1.6;
}
@media screen and (max-width: 768px) {
	.top .top_news {
		margin-top: 80px;
		padding-bottom: 80px;
	}
	.top .top_news::before {
	width: 100%;
	height: 0;
	padding-bottom: 50%;
	background-size: contain;
}
	.top .top_news .top_news_inner {
		margin: 0 6%;
		flex-direction: column;
	}
	.top .top_news .top_news_inner .title_area {
		width: 100%;
		display: flex;
		align-items: flex-end;
		margin-bottom: 30px;
	}
	.top .top_news .top_news_inner .title_area .section_title {
		font-size: 2.6rem;
	}
	.top .top_news .top_news_inner .title_area .btn_link {
		width: 130px;
		margin-top: 0;
		margin-left: auto;
	}
	.top .top_news .top_news_inner .contents_area {
		width: 100%;
	}
	.top .top_news .top_news_inner .contents_area .news {
		max-height: 180px;
		margin: 0 auto 3em;
	}
	.top .top_news .top_news_inner .contents_area .news .news_list .news_item a {
		flex-direction: column;
		padding: 1em 30px 1em 20px;
	}
	.top .top_news .top_news_inner .contents_area .news .news_list .news_item a .date {
		width: 100%;
		margin-bottom: 8px;
	}
	.top .top_news .top_news_inner .contents_area .news .news_list .news_item a .news_title {
		width: 100%;
	}
}




