@charset "utf-8";

/*mainv
--------------------------------------------*/
body.home .main{
	position: relative;
	padding-bottom: 30px;
}
body.home .main .h1_box {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	max-width: 1200px;
	width: 100%;
}
body.home .main .h_tit {
	margin-bottom: 10px;
	font-size: 1.2rem;
	color: #7f7e7e;
}
@media screen and (max-width: 1280px){
	body.home .main .h_tit {
		padding: 0 10px;
	}
}
#top_mv {
	position: relative;
	/* background-image: url(../img/top/top_mv.jpg); */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	max-height: 100vh;
	z-index: 1;
	/* 以下、動画下の余白削除のために必須 */
	line-height: 100%;
	display:flex;
	align-items: end;
}

#top_mv:after{
	position: absolute;
	content: "";
	background-color: rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
#top_mv #bg-video{
	width: 100%;
	height: 100%;
}


#top_mv .mv-copy{
	position: absolute;
	width:100%;
	text-align: left;
	color: #fff;
	transform: translateX(-50%);
	left: 50%;
	bottom: 80px;
	z-index: 2;
}

#top_mv .mv-copy .copy-em{
	font-family: var(--font-family-serif);
	font-size: 7rem;
	letter-spacing: 0.2em;
	color: #fff;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 54px;
}

#top_mv .mv-copy .copy-sm{
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	font-weight: 500;
}

#top_mv .fade-copy {
    opacity: 0;
    animation: fadeIn 3s ease forwards;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@media screen and (max-width: 1280px){
	#top_mv .mv-copy{
		max-width: 1200px;
		bottom: 60px;
	}
	#top_mv .mv-copy .copy-em{
		font-family: var(--font-family-serif);
		font-size: 5rem;
		letter-spacing: 0.2em;
		color: #fff;
		font-weight: 400;
		line-height: 1.6;
		margin-bottom: 28px;
	}
	#top_mv .mv-copy .copy-sm{
		font-size: 2rem;
		letter-spacing: 0.1em;
		font-weight: 500;
	}
}



/*sec_top_years
--------------------------------------------*/
#sec_top_years{
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	height: 420px;
	background-image: url(../img/top/top_yars_bg.jpg);
	background-size: cover;
	background-position: center;
}

#sec_top_years .sec_top_years_inner{
	width: 100%;
}
#sec_top_years .txt{
	width:100%;
	text-align: right;
	color: #fff;
}
#sec_top_years .txt .en{
	display: block;
	font-family: var(--font-family-serif-en);
	font-size: 5.6rem;
	letter-spacing: 0.05em;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 14px;
}

#sec_top_years .txt .jp{
	display: block;
	font-family: var(--font-family-sans-serif);
	font-size: 2.0rem;
	letter-spacing: 0.12em;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 14px;
}

@media screen and (max-width: 1280px){
	#sec_top_years .sec_top_years_inner{
		max-width: 1200px;
		padding-left:10px;
		padding-right: 10px;
	}
}


/*sec_top_about
--------------------------------------------*/
#sec_top_about{
	position: relative;
	padding: 110px 0 70px;
	overflow-x: hidden;
	background: linear-gradient(to right, #fff calc(50% + 100px), #fff 50%, var(--light-gray-color) calc(50% + 100px), var(--light-gray-color) 100%);
}

/* #sec_top_about .media_overlap_list .item{
	position: relative;
	display: flex;
	align-items: flex-start;
	z-index: 0;
}

#sec_top_about .media_overlap_list .item .column-outside-right{
	flex: 1;
	margin-right: calc(50% - 50vw);
}

#sec_top_about .media_overlap_list .item .column-outside-left{
	flex: 1;
	margin-left: calc(50% - 50vw);
}

#sec_top_about .media_overlap_list .item.reverse{
	flex-direction: row-reverse;
}

#sec_top_about .media_overlap_list .item img{
	width: 100%;
	height: 630px;
	object-fit: cover;
	object-position: left;
}

#sec_top_about .media_overlap_list .item .body{
	background-color: #fff;
	padding: 38px 82px 30px 100px;
}

#sec_top_about .media_overlap_list .item .column{
	width: 47.5%;
	width: calc(50% + 36px);
	background-color: #fff;
} */

#sec_top_about .media_overlap_list .item .body .ttl{
	position: relative;
	font-size: 2.5rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	padding-bottom: 30px;
	margin-bottom: 35px;
}

#sec_top_about .media_overlap_list .item .body .ttl:after{
	position: absolute;
	content: "";
	width: 48px;
	height: 3px;
	background-color: var(--main-color);
	bottom: 0;
	left: 0;
}

#sec_top_about .media_overlap_list .item .body .detail{
	font-size: 1.5rem;
	margin-bottom: 42px;
}

#sec_top_about .top_about_img{
	position: absolute;
	width: calc(50% - 600px);
	bottom: 65px;
}

#sec_top_about .top_about_img img{
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: right;
}
@media screen and (max-width: 1200px){
	#sec_top_about .media_overlap_list .item .body{
		padding: 20px 40px;
	}
}


/*sec_top_service
--------------------------------------------*/
#sec_top_service {
	background-color: var(--light-gray-color);
	padding-top: 80px;
	padding-bottom: 0;
}

#sec_top_service .item{
	gap: 177px;
	margin-top: -35px;
	margin-bottom: 94px;
}

#sec_top_service .column{
	width: 44.4%;
}

#sec_top_service .item .body{
	width: calc( 100% - 177px - 44.4% );
}

#sec_top_service .sec_ttl01.sec_ttl01_left{
	margin-top: 55px;
	margin-bottom: 48px;
}

#sec_top_service .sec_ttl01.sec_ttl01_left:before{
	content: "SERVICE";
}

#sec_top_service .ttl{
	font-size: 2.5rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	padding-bottom: 30px;
}

#sec_top_service .detail{
	margin-bottom: 42px;
}

@media screen and (max-width: 1200px){
	#sec_top_service .sec_inner{
		padding-left: 10px;
		padding-right: 10px;
	}
	#sec_top_service .item{
		gap: 50px;
	}
	#sec_top_service .item .body{
		width: calc(100% - 50px - 44.4%);
	}
}

/*タイトル背景スライダー*/
#sec_top_service .top_service_slider .slider_img {
	margin-right: 40px;
}

.top_service_slider .slider_img img {
	width: 1384px;
	height: auto;
	display: block;
}

/*画像スライダー*/
#sec_top_service .top_service_slider02_wrapper{
	background-color: #fff;
	padding: 10px 0;
}
#sec_top_service .top_service_slider02 .slider_img {
  margin-right: 10px;
}

#sec_top_service .top_service_slider02 .slider_img img {
  width: 470px;
  height: auto;
  display: block;
}



/*sec_top_works
--------------------------------------------*/
#sec_top_works {
	position: relative;
	background-color: #0F2A55;
	padding-top: 90px;
	padding-bottom: 94px;
	overflow: hidden;
	z-index: 0;
}

/* 背景装飾 */
#sec_top_works:after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 39vw solid #f6f6f6;
    border-right: 52.5vw solid transparent;
	opacity: 0.1;
	z-index: 1;
}

#sec_top_works .sec_inner{
	position: relative;
	z-index: 2;
}
#sec_top_works .works_header{
	margin-bottom: 35px;
}

#sec_top_works .sec_ttl01{
	color: #fff;
	margin-bottom: 60px;
}

#sec_top_works .sec_ttl01:before{
	content: "WORKS";
	color: #fff;
}

#sec_top_works .lead{
	color: #fff;
}

#sec_top_works .slider_wrapper{
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

#sec_top_works .posts_slider .card{
	/* position: relative; */
	display: flex;
	align-items: center;
	width: auto !important;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	padding-top: 30px;
	margin: 0 25px;
}

#sec_top_works .posts_slider .card_img{
	position: relative;
	margin-bottom: 0;
	overflow: hidden;
}
#sec_top_works .posts_slider .card img{
	width: 375px !important;
	height: 250px !important;
	object-fit: cover;
	object-position: center;
	transition: transform .6s ease;
}

#sec_top_works .posts_slider .card:hover img{
	transform: scale(1.1);
}

#sec_top_works .slick-list{
    overflow: visible;
}

#sec_top_works .slick-track {
	display: flex;
	align-items: center;
}

#sec_top_works .posts_slider .card .cat{
	position: absolute;
	display: inline-block;
	color: #fff;
	font-size: 1.3rem;
	top: 11px;
	left: 10px;
	border-radius: 2px;
	background-color: var(--main-color);
	padding: 0 8px;
	margin-right: 20px;
}

#sec_top_works .posts_slider .card .card_footer{
	padding: 14px 20px;
}
#sec_top_works .posts_slider .card .note{
	color: #c3c3c3;
	font-size: 1.3rem;
	font-weight: 400;
}

#sec_top_works .posts_slider .card .ttl{
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
}

#sec_top_works .btn_wrapper{
	position: relative;
	z-index: 2;
}

#sec_top_works .sec_footer{
	padding-top: 42px;
}

#sec_top_works .sec_footer .btn_wrapper{
	text-align: right;
}

#sec_top_works .sec_footer .btn01{
	color: #fff;
}

#sec_top_works .sec_footer .btn01:before{
	background-color: #fff;
	border: 1px solid #fff;
}

#sec_top_works .sec_footer .btn01:after{
	background-image: url(../img/cmn/arrow_blue.png);
}

#sec_top_works .sec_footer .btn01:hover:before{
	background-color: transparent;
}

#sec_top_works .sec_footer .btn01:hover:after{
	background-image: url(../img/cmn/arrow_white.png);
}


/* arrow */
#sec_top_works .prev-arrow {
	transform: rotate(180deg);
}

#sec_top_works .prev-arrow,
#sec_top_works .next-arrow {
	position: absolute;
	display: inline-block;
	top: -80px;
	width: 40px;
	height: 40px;
	border: 1px #fff solid;
	border-radius: 50%;
}

#sec_top_works .prev-arrow{
	right: 60px;
	transition: all .5s;
}

#sec_top_works .next-arrow{
	right: 0;
	transition: all .5s;
}

#sec_top_works .prev-arrow:hover, 
#sec_top_works .next-arrow:hover{
	opacity: 0.5;
}

#sec_top_works .prev-arrow::before, 
#sec_top_works .next-arrow::before {
	position: absolute;
	content: "";
	background-image: url(../img/cmn/arrow_white.png);
	width: 16px;
	height: 12px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	transition: all .3s ease;
}

/* ドットナビゲーション */
#sec_top_works .slick-dotted.slick-slider{
	margin-bottom: 0 !important;
}
#sec_top_works .slick-dots{
	position: absolute;
	bottom: -70px;
	width: auto;
}

.slick-dots li button,
.slick-dots li button:before,
.slick-dots li{
	width: 10px;
	height: 10px;
}
.slick-dots li button:before{
	color: #63A5D7;
	opacity: 1 !important;
	font-size: 8px;
	line-height: 10px;
}

.slick-dots li.slick-active button:before{
	color: #fff;
	opacity: 1 !important;
}
@media screen and (max-width: 1280px){
	#sec_top_works .prev-arrow{
		right: 70px;
	}

	#sec_top_works .next-arrow{
		right: 10px;
	}
}

/*sec_top_company
--------------------------------------------*/
#sec_top_company {
	position: relative;
	/* background-color: var(--light-gray-color); */
	background: linear-gradient(to left, var(--light-gray-color) calc(50% + 670px), var(--light-gray-color) 50%, #fff calc(50% + 670px), #fff 100%);
	padding-top: 112px;
	padding-bottom: 94px;
	overflow: hidden;
	z-index: 0;
}

#sec_top_company:before{
	position: absolute;
	content: url(../img/top/bg_illust.png);
	transform: translateX(-50%);
	top:0;
	left: calc(50% + 490px);
}

#sec_top_company:after{
	position: absolute;
	content: "";
	background-color: #fff;
	height: 280px;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: -1;
}

#sec_top_company .sec_ttl01{
	margin-top: 0;
}

#sec_top_company .sec_ttl01.sec_ttl01_left:before{
	position: initial;
	content: "COMPANY";
	margin-right: 10px;
}

#sec_top_company .img_link{
	gap: 60px;
	align-items: flex-start;
}

#sec_top_company .img_link .item{
	position: relative;
	overflow: hidden;
	width: 360px;
	height: 400px;
}

#sec_top_company .img_link .item:after{
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background-image: url(../img/top/top_company01.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition:transform .6s ease;
}

#sec_top_company .img_link .item:nth-of-type(2){
	margin-top: 80px;
}

#sec_top_company .img_link .item:nth-of-type(2):after{
	background-image: url(../img/top/top_company02.jpg);
}

#sec_top_company .img_link .item:nth-of-type(3):after{
	background-image: url(../img/top/top_company03.jpg);
}

#sec_top_company .img_link .item:hover:after{
	transform: scale(1.1);
}

#sec_top_company .img_link .item a{
	position: relative;
	display: flex;
    flex-direction: column-reverse;
	background-image: linear-gradient(transparent, transparent 62.5%, #051939);
	width: 100%;
	height: 100%;
	transition: all .4s;
	z-index: 1;
}

#sec_top_company .img_link .item a:hover{
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

#sec_top_company .img_link .item a:before{
	position: absolute;
	content: "";
	width: 45px;
	height: 45px;
	border: 1px solid #fff;
	border-radius: 50px;
	bottom: 33px;
	right: 25px;
	transition: all .5s;
	z-index: 1;
}

#sec_top_company .img_link .item a:hover:before{
	background-color: #63A5D7;
	border: 1px solid #63A5D7;
}


#sec_top_company .img_link .item a:after{
	position: absolute;
	content: "";
	background-image: url(../img/cmn/arrow_white.png);
	background-size:initial;
	background-position: center;
	background-repeat: no-repeat;
	width: 46px;
	height: 46px;
	bottom: 33px;
	right: 25px;
	z-index: 1;
}

#sec_top_company .img_link .item a span.cover{
	position: relative;
	width: 100%;
	height: 100%;
	transition: all .4s;
}

#sec_top_company .img_link .item a span.cover::before{
	position: absolute;
	content: "";
	background: linear-gradient(180deg, rgba(11, 54, 122, 0.00) -10.13%, #051939 89.87%);
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .4s;
}

#sec_top_company .img_link .item a:hover span.cover::before{
	opacity: 1;
}

#sec_top_company .img_link .item .txt{
	position: absolute;
	font-size: 2.6rem;
	color: #fff;
	bottom: 33px;
	left: 33px;
	z-index: 3;
}

#sec_top_company .img_link .item .txt span{
	display: block;
	font-family: var(--font-family-serif-en);
	font-size: 1.6rem;
	color: #fff;
	line-height: 1;
}

@media screen and (max-width: 1280px){
	#sec_top_company .img_link{
		gap: 20px;
		justify-content: center;
	}
}

@media screen and (max-width: 980px){
	#sec_top_company .img_link .item .txt{
		bottom: 98px;
	}
}


/*sec_top_divider
--------------------------------------------*/
#sec_top_divider{
	width: 100%;
	height: 400px;
	background-image: url(../img/top/top_divider.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/*sec_top_news
--------------------------------------------*/
#sec_top_news{
	display: flex;
	align-items: flex-start;
	gap: 38px;
	padding: 130px 0 100px;
	overflow: hidden;
}


#sec_top_news .sec_top_news_inner{
		position: relative;
	width: 100%;
	align-items: flex-start;
}

#sec_top_news .sec_top_news_inner:before{
	position: absolute;
	content: url(../img/top/bg_illust02.png);
	top: -125px;
    left: -105px;
}

#sec_top_news .l-block{
	text-align: left;
	width: 36.666%;
	padding-left: 100px;
}

#sec_top_news .r-block{
	width: 63.333%;
}

#sec_top_news .sec_ttl01.sec_ttl01_left{
	margin-top: 46px;
	margin-bottom: 38px;
}
#sec_top_news .sec_ttl01.sec_ttl01_left:before{
	content: "NEWS";
	margin-right: 10px;
}

#sec_top_news .ctg_list{
	gap: 20px 40px;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

#sec_top_news .ctg_list a{
	font-weight: 500;
	transition: all .4s;
}

#sec_top_news .ctg_list a:hover{
	opacity: 0.5;
}

#sec_top_news .ctg_list .current-cat a{
	position: relative;
	color: #63A5D7;
	font-weight: 600;
}

#sec_top_news .ctg_list .current-cat a:before{
	position: absolute;
	content: "";
	background-color: #63A5D7;
	width: 6px;
	height: 6px;
	border-radius: 10px;
	transform: translateX(-50%);
	top: -10px;
	left: 50%;
}

#sec_top_news .blog_list{
	font-size: 1.4rem;
	min-height: 305px;
}

#sec_top_news .blog-item{
	position: relative;
	border-bottom: 1px solid #B4B4B4;
}

#sec_top_news .blog-item a{
	display: inline-block;
	width: 100%;
	padding: 20px 0;
	transition: all .4s;
}

#sec_top_news .blog-item a .ttl{
	transition: all .4s;
}

#sec_top_news .blog-item a:hover .ttl{
	opacity: 0.6;
}

#sec_top_news .blog-item:last-of-type{
	margin-bottom: 0;
}

#sec_top_news .blog-item .item_header{
	margin-bottom: 10px;
}

#sec_top_news .blog-item .cat span{
	font-size: 1.2rem;
	display: inline-block;
	color: #fff;
	background-color: var(--main-color);
	border-radius: 2px;
	padding: 2px 10px;
	margin-left: 5px;
}

#sec_top_news .blog-item .date{
	font-size: 1.3rem;
	font-weight: 400;
}

#sec_top_news .blog-item a:before{
	position: absolute;
	content: "";
	width: 26px;
	height: 26px;
	border: 1px solid var(--main-color);
	border-radius: 50px;
	right: 0;
	transform: translateY(-50%);
	top: 50px;
	transition: all .4s;
}

#sec_top_news .blog-item a:after{
	position: absolute;
	content: "";
	background-image: url(../img/cmn/arrow_blue.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 10px;
	height: 8px;
	right: 9px;
	transform: translateY(-50%);
	top: 50px;
	transition: all .4s;
}

#sec_top_news .blog-item a:hover:before{
	border: 1px solid var(--main-color);
	background-color: var(--main-color);
}

#sec_top_news .blog-item a:hover:after{
	background-image: url(../img/cmn/arrow_white.png);
}

@media screen and (max-width: 1200px){
	#sec_top_news{
		display: block;
		padding: 90px 10px 100px;
	}
	#sec_top_news .sec_top_news_inner{
		gap: 60px;
		max-width: 980px;
	}
	#sec_top_news .l-block{
		width: 250px;
		padding-left: 0;
	}
	#sec_top_news .r-block{
		width: calc(100% - 250px - 60px);
	}


}


/*sec_top_sdgs
--------------------------------------------*/
#sec_top_sdgs{
	padding-bottom: 100px;
}

#sec_top_sdgs .sec_top_sdgs_inner{
	display: flex;
	align-items: center;
	height: 280px;
	width: 100%;
}

#sec_top_sdgs .sec_top_sdgs_inner a{
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background-image: url(../img/top/top_sdgs_bg.jpg);
	padding: 60px;
	transition: all .4s;
}

#sec_top_sdgs .sec_top_sdgs_inner a:hover{
	opacity: 0.8;
}


#sec_top_sdgs .sec_top_sdgs_inner .sec_ttl01.sec_ttl01_left{
	width: 100%;
	color: #fff;
	margin-top: 95px;
	margin-bottom: 0;
}

#sec_top_sdgs .sec_top_sdgs_inner .sec_ttl01.sec_ttl01_left:before{
	content: "SDGs";
	color: #fff;
}

#sec_top_sdgs .sec_top_sdgs_inner a:before{
	position: absolute;
	content: "";
	width: 45px;
	height: 45px;
	border: 1px solid #fff;
	border-radius: 50px;
	transform: translateY(-50%);
	top: 50%;
	right: 60px;
	transition: all .5s;
}

#sec_top_sdgs .sec_top_sdgs_inner a:after{
	position: absolute;
	content: "";
	background-image: url(../img/cmn/arrow_white.png);
	background-size:initial;
	background-position: center;
	background-repeat: no-repeat;
	width: 46px;
	height: 46px;
	transform: translateY(-50%);
	top: 50%;
	right: 60px;
	transition: all .5s;
}

#sec_top_sdgs .sec_top_sdgs_inner a:hover:before{
	border: 1px solid var(--main-color);
	background-color: var(--main-color);
}

#sec_top_sdgs .sec_top_sdgs_inner a:hover:after{
	background-image: url(../img/cmn/arrow_white.png);
}


/*sec_top_recruit
--------------------------------------------*/
#sec_top_recruit{
	background-image: url(../img/top/top_recruit_bg.jpg);
	background-position: center;
	background-repeat:  no-repeat;
	background-size: cover;
	padding-top: 110px;
}

#sec_top_recruit .sec_inner{
	margin-bottom: 42px;
}

#sec_top_recruit .item{
	flex-direction: row-reverse;
	gap: 0;
}

#sec_top_recruit .body{
	width: 480px;
	color: #fff;
	background: linear-gradient(133deg, #0B367A 9.95%, #4182B4 105.19%);
	box-shadow: 0px 0px 40px 0px rgba(11, 54, 122, 0.10);
	padding:80px 50px 65px;
}

#sec_top_recruit .img{
	flex: 1;
	margin-left: -100px;
}


#sec_top_recruit .sec_ttl01{
	color: #fff;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.6;
	margin-top: 95px;
	margin-bottom: 55px;
}

#sec_top_recruit .sec_ttl01:before{
	content: "RECRUIT";
	color: #fff;
	font-size: 5rem;
	top: -72px;
}

#sec_top_recruit .body .detail{
	text-align: center;
	margin-bottom: 40px;
}

#sec_top_recruit .body .btn_wrapper{
	text-align: center;
}

/*テキストスライダー*/
#sec_top_recruit .top_recruit_slider .slider_img {
	margin-right: 60px;
	height: 75px;
}

#sec_top_recruit .top_recruit_slider .slider_img img {
	width: 2248px;
	height: auto;
	display: block;
}

/*画像スライダー*/
#sec_top_recruit .top_recruit_slider02_wrapper {
	overflow: hidden;
	background-color: #fff;
	padding: 30px 0;
}

.infinite-slider {
	display: flex;
}

.slider-track {
	display: flex;
	will-change: transform;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-name: scrollLoop;
}

.slider_img {
  margin-right: 30px;
  flex-shrink: 0;
}

.slider_img img {
  display: block;
  height: auto;
}

.size282 { width: 282px; }
.size180 { width: 180px; }
.size360 { width: 360px; }
.size481 { width: 481px; }
.size480 { width: 480px; }

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance, -1000px));
  }
}

@media screen and (max-width: 1280px){
	#sec_top_recruit .item{
	display: block;
}
#sec_top_recruit .img{
	text-align: center;
	margin-left: 0;
}
#sec_top_recruit .body{
	width: 90%;
	max-width: 450px;
	color: #fff;
	background: linear-gradient(133deg, #0B367A 9.95%, #4182B4 105.19%);
	box-shadow: 0px 0px 40px 0px rgba(11, 54, 122, 0.10);
	padding:20px 20px 30px;
	margin: -250px auto 0;
}
}
