@charset "utf-8";

@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background:linear-gradient(45deg, #f06e40,#FAB27B,#ff0000);
    background-size: 200% 200%;
    animation: bggradient 20s ease infinite;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1020;
}
#loading div {
    width: 150px;
	height: 150px;
	background: url("../img/new/job_text.png") no-repeat center;
	background-size: contain;
    -webkit-animation: loading 20s linear 0s infinite normal;
    -moz-animation: loading 20s linear 0s infinite normal;
    animation: loading 20s linear 0s infinite normal;
    position: absolute;
    top: calc(50% - 75px);
    left:calc(50% - 75px);
}


.pos {
	position: absolute;
}

.slide-btns {
	width: 130px;
	position: absolute;
	right: 190px;
	top: 100px;
}
.slide-btns .swiper-button-prev,
.slide-btns .swiper-button-next {
    width: 60px;
    height: 60px;
    left: 0;
    border: solid 2px var(--main-color);
    border-radius: 1000px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.slide-btns .swiper-button-prev {
	left: 0;
}
.slide-btns .swiper-button-next {
	right:0;
    left: auto;
}
.slide-btns .swiper-button-prev:after,
.slide-btns .swiper-button-next:after {
    color: var(--main-color);
    font-size: 24px;
}
.slide-btns .swiper-button-prev:hover,
.slide-btns .swiper-button-next:hover {
    background: var(--main-color);
}
.slide-btns .swiper-button-prev:hover:after,
.slide-btns .swiper-button-next:hover:after {
    color: #fff;
}

@media (max-width: 815px) {



}

/*--------------------------
main-fv
--------------------------*/
body {
	padding-top: 0;
}

#main-fv {
	background: url("../img/new/fv_bg.png") no-repeat center;
	background-size: cover;
	overflow: hidden;
}
#main-fv .inner {
    padding-right: 0;
}
.fv-text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.fv-text01 {
	opacity: 0;
	font-size: 65px;
	font-weight: 600;
	color: var(--main-color);
    transition: all .5s ease-in-out;
    transition-duration: .5s;
}
.fv-text02 {
	opacity: 0;
	line-height: 2;
	margin-top: 30px;
    transition: all .5s ease-in-out;
    transition-duration: .5s;
}
.fv-img {
    text-align: right;
    height: 100vh;
    padding-left: 30%;
}
.fv-img img {
    position: relative;
    right: -70px;
	opacity: 0;
    filter: blur(10px);
    transition: all 1s ease-in-out;
    transition-duration: 1s;
    z-index: -1;
}

#main-fv.on .fv-text01,
#main-fv.on .fv-text02 {
	opacity: 1;
}
#main-fv.on .fv-img img {
	opacity: 1;
    filter: blur(0);
}



@media (max-width: 815px) {

	.fv-text {
		width: 70%;
	}
	.fv-text01 {
		font-size: 32px;
	}
	.fv-text02 {
		margin-top: 15px;
	}
	.fv-text02 span {
		background: rgba(255, 255, 255, 0.8);
		padding: 2px 5px;
	}
	.fv-img {
		height: 400px;
	}
	.fv-img img {
		right: -40px;
	}
}


/*--------------------------
news
--------------------------*/
#news {
	padding: 140px 0;
    margin-top: -110px;
    z-index: 10;
}
#news:after {
	content: '';
	width: 100%;
	height: 100%;
	background: url("../img/new/news_bg_wave.png") repeat-x center;
	background-size: auto 100%;
	position: absolute;
	left: 0;
	top:0;
	z-index: -1;
}

#news h2 {
	color: var(--main-color);
	font-size: 44px;
	font-family: var(--font-en);
    text-align: center;
	margin-bottom: 30px;
}
.news__list {
	width: 560px;
	margin: auto;
}
.news__list >li {
	font-size: 14px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: solid 2px #fff;
}
.news__list >li a {
	color: var(--base-color);
    display: flex;
    align-items: center;
}
.news__list .news-date {
    width: 90px;
}
.news__list .news-category {
    color: #fff;
    background: var(--sub-color);
    width: 90px;
    text-align: center;
    border-radius: 1000px;
    margin-right: 20px;
}
.news__list .news-title {
    width: calc(100% - 200px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-more {
    position: absolute;
    right: 180px;
    top: 20px;
}
.news-more a {
    display: block;
    font-size: 15px;
    color: var(--main-color);
    background: #fff;
    padding: 5px 20px;
    line-height: 1;
    border-radius: 1000px;
}

#news .pos.fig01 {
    top: -200px;
}
#news .pos.pic01 {
    bottom: -200px;
}
#news .pos.pic02 {
    bottom: -140px;
	right: 0;
}

@media (max-width: 815px) {

	.news__list {
		width: 100%;
	}
	.news__list >li {
		font-size: 12px;
	}
	.news__list >li a {
		display: block;
	}
	.news__list .news-date {
		width: auto;
		margin-right: 10px;
	}
	.news__list .news-category {
		width: auto;
		margin: 0;
		padding: 1px 15px 2px;
	}
	.news__list .news-title {
		font-weight: 500;
		display: block;
		width: auto;
		white-space: normal;
		margin-top: 10px;
	}
	.news-more {
		position: relative;
		right: auto;
		top: auto;
		text-align: center;
		margin-top: 30px;
	}
	.news-more a {
		display: inline-block;
		padding: 10px 30px;
	}
	#news .pos.fig01 {
		max-width: 15%;
	}
	#news .pos.pic01 {
		max-width: 20%;
	}
	#news .pos.pic02 {
		max-width: 20%;
	}

}



/*--------------------------
interview
--------------------------*/
#interview {
	background: url("../img/new/interview_bg01.png") left top no-repeat;
}
#interview .swiper-container {
	overflow: visible;
}
#interview .swiper-slide a {
	display:block;
	color: var(--base-color);
}
.interview-img {
	position:relative;
	margin-bottom: 15px;
}
.interview-img img {
    border-radius: 100% 100% 0 0;
    overflow: hidden;
}
.interview-catch {
    position: absolute;
	left: -20px;
	bottom: 50px;
}
.interview-catch span {
	display: inline-block;
	font-size: 18px;
	color: #fff;
	background: var(--main-color);
	margin:2px 0;
	padding: 1px 5px;
}
.interview-info-type {
	font-size: 22px;
	font-weight: 500;
	color: var(--main-color);
}
.interview-info-office {
	font-size: 14px;
	line-height: 1.6;
	margin-top: 5px;
}

@media (max-width: 815px) {

	.interview-catch {
		left: -10px;
	}
	.interview-catch span {
		font-size: 13px;
	}


}



/*--------------------------
voice
--------------------------*/
#voice .swiper-container {
	overflow: visible;
	padding: 50px 0;
}
#voice .swiper-container:after {
	content: '';
	width: 200vw;
	height: 100%;
	background: #ffefe9;
	position: absolute;
	left: -50vw;
	top:0;
	z-index: -1;
}
#voice .swiper-slide {
	height: auto;
}
#voice .swiper-slide a {
	display:block;
	height: 100%;
	color: var(--base-color);
	padding: 20px;
	background: #fff;
	border-radius: 10px;
}
.voice-img {
	margin-bottom: 15px;
}
.voice-img img {
	border-radius: 10px;
	overflow: hidden;
}
.voice-year {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 1.4;
    background: var(--main-color);
    border-radius: 1000px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px;
}
.voice-info-type {
	font-size: 22px;
	font-weight: 500;
	color: var(--main-color);
}
.voice-info-desc {
	font-size: 14px;
	line-height: 1.6;
	margin-top: 5px;
}

@media (max-width: 815px) {
	
	.voice-year {
		font-size: 12px;
		width: 60px;
		height: 60px;
	}
	.voice-info-type {
		font-size: 16px;
	}
	.voice-info-desc {
		font-size: 12px;
	}


}



/*--------------------------
job
--------------------------*/
#job {
	padding-top: 0;
}
#job:after {
    content: '';
    width: 882px;
    height: 867px;
    background: url("../img/new/job_bg03.png") right top no-repeat;
    background-size: contain;
    position: absolute;
    right: calc(50% - 882px);
    bottom: -240px;
    z-index: -1;
}



#job .pos.fig01 {
    top: -200px;
}
#job .pos.fig02 {
	top: 120px;
    right: -50px;
}


@media (max-width: 815px) {
	

	#job .pos.fig01 {
		top: -100px;
		max-width: 20%;
	}

}



/*--------------------------
merit
--------------------------*/
#merit:after {
    content: '';
    width: 1199px;
    height: 1088px;
    background: url("../img/new/merit_bg01.png") right top no-repeat;
    background-size: contain;
    position: absolute;
    left: calc(50% - 1199px);
    top: 0;
    z-index: -1;
}
.merit-in {
    display: flex;
}
.merit-title {
    width: 440px;
}
.merit-info {
    width: calc(100% - 440px);
}
.merit-info__list >li {
    border: solid 2px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}
.merit-info__list >li:last-child {
	margin-bottom: 0;
}
.merit-info__list a {
	display: block;
	color: var(--base-color);
}
.merit-info-in {
	background: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.merit-info-img {
    width: 206px;
}
.merit-info-img img {
    border-radius: 10px;
}
.merit-info-text {
    width: calc(100% - 236px);
}
.merit-info-text h3 {
    color: var(--main-color);
    font-size: 24px;
}
.merit-info-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
}



@media (max-width: 815px) {
	
	#merit:after {
		left: -800px;
	}
	.merit-in {
		display: block;
	}
	.merit-title {
		width: 100%;
	}
	.merit-info {
		width: 100%;
	}
	.merit-info__list >li {
		margin-bottom: 20px;
	}
	.merit-info-in {
		display: block;
		padding: 10px 10px 20px;
	}
	.merit-info-img {
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
	.merit-info-text {
		width: 100%;
	}
	.merit-info-text h3 {
		font-size: 18px;
		text-align: center;
	}
	.merit-info-text p {
		font-size: 12px;
		line-height: 2;
	}

}


/*--------------------------
top-entry
--------------------------*/
#top-entry {
    color: #fff;
    background: var(--main-color);
}
#top-entry .cmn-title h2 {
    color: #fff;
}



@media (max-width: 815px) {
	


}


/*--------------------------
top-insta
--------------------------*/
#top-insta {
	border-bottom: dotted 1px #eee;
}


@media (max-width: 815px) {
	


}


