@charset "UTF-8";

/* fv
***************************************************************/
.fv {
	position: relative;
	padding: 0;
}
.fv::before {
	content: "";
	display: inline-block;
	width: 17px;
	height: 82px;
	background-image: url(../../images/icon-scroll.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	left: 50%;
	bottom: -5vw;
	transform: translate(0 , -50%);
	z-index: 10;
}
.fv .slide {
	position: relative;
	height: 800px;
	overflow: hidden;
}
.fv .slide-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	animation: slider-1 24s linear infinite;
}
.fv .slide-image:nth-child(1) {
	background-image: url(../../images/img-FV-1.jpg);
	animation-delay: -4s;
}
.fv .slide-image:nth-child(2) {
	background-image: url(../../images/img-FV-2.jpg);
	animation-delay: 8s;
}
.fv .slide-image:nth-child(3) {
	background-image: url(../../images/img-FV-3.jpg);
	animation-delay: 16s;
}
@keyframes slider-1 {
	0% {
		opacity: 0;
		transform: scale(1);
	}
	4.16% {
		opacity: 1;
	}
	33.33% {
		opacity: 1;
	}
	41.66% {
		opacity: 0;
		transform: scale(1.2);
	}
	100% {
		opacity: 0;
	}
}
.fv .textBox {
	background: #fff;
	padding: 40px 60px;

	position: absolute;
	top: 10vw;
	right: 115px;
	z-index: 10;
}
.fv .textBox p {
	font-size: 70px;
	line-height: 1.14;
}
.fv .textBox h1 {
	font-size: 30px;
	border-top: 1px solid #B2B2B2;
	margin-top: 6px;
	padding-top: 6px;
}

@media screen and (max-width: 768px) {
	section.fv {
		padding: 0;
	}
	.fv {
		position: relative;
	}

	.fv::before {
		content: "";
		display: inline-block;
		width: 17px;
		height: 82px;
		background-image: url(../../images/icon-scroll.svg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		vertical-align: middle;
		position: absolute;
		left: 50%;
		bottom: -23px;
		transform: translate(0, -50%);
		z-index: 10;
	}

	.fv .slide {
		height: 463px;
	}

	.fv .slide-image:nth-child(1) {
		background-image: url(../../images/img-fv-sp1.jpg);
	}

	.fv .slide-image:nth-child(2) {
		background-image: url(../../images/img-fv-sp2.jpg);
	}

	.fv .slide-image:nth-child(3) {
		background-image: url(../../images/img-fv-sp3.jpg);
	}

	.fv .textBox {
		padding: 17px 21px;

		position: absolute;
		top: 331px;
		right: 0;
	}

	.fv .textBox p {
		font-size: 33px;
		letter-spacing: 0.15em;
		line-height: 1.03;
	}

	.fv .textBox h1 {
		font-size: 18px;
		margin-top: 7px;
		padding-top: 7px;
	}
}

/* section1
***************************************************************/
.sec1 {
	background-color: #F7F7F7;
	overflow: hidden;
}
.sec1_slider {
	margin-top: 50px;
}
.sec1_slider .slick-list {
	margin-left: 620px;
	overflow: unset;
}
.sec1_slider li {
	width: 530px;
	margin: 0 42.5px;
}

.sec1_slider .slick-prev,
.sec1_slider .slick-next {
	position: absolute;
	top: 33%;
	cursor: pointer;
	background-image: url(../../images/icon-arrow-black.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 50px;
	width: 50px;
	z-index: 10;
}
.sec1_slider .slick-prev {
	left: calc(50% - 633px);

}
.sec1_slider .slick-next {
	right: calc(50% - 640px);
	transform: rotate(180deg);
}
.sec1 .sec1_slider li a {
	position: relative;
}
.sec1 .sec1_slider li a span.category {
	position: absolute;
	top: 0;
	right: 0;
	background: #333;
	color: #fff;
	width: 117px;
	text-align: center;
	padding: 7px 0;
}
.sec1 .sec1_slider li a p.text {
	font-size: 17px;
	padding: 11px 0;
	position: relative;
}
.sec1 .sec1_slider li a p.text::before {
	content: "";
	display: inline-block;
	width: 100%;
	height: 1px;
	background-image: url(../../images/icon-border.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	left: 0;
	bottom: 0;
}
.sec1 .sec1_slider li a h3.title {
	font-size: 20px;
	margin-top: 20px;
}
.sec1 .sec1_slider li a p.text2 {
	font-size: 20px;
	margin-top: 20px;
}
@media screen and (min-width: 1920px) {
	.sec1_slider .slick-list {
		margin-left: 716px;
		overflow: unset;
	}

	.sec1_slider li {
		width: 631px;
		margin: 0 42.5px;
	}
	.sec1_slider .slick-prev {
		left: calc(50% - 743px);

	}

	.sec1_slider .slick-next {
		right: calc(50% - 740px);
		transform: rotate(180deg);
	}
}
@media screen and (max-width: 1440px) {
	.sec1_slider .slick-prev {
		left: 0;

	}
	
	.sec1_slider .slick-next {
		right: 0;
	}
}

@media screen and (max-width: 768px) {
	.sec1 {
		padding: 130px 0 50px;
	}

	.sec1_slider {
		margin-top: 50px;
	}

	.sec1_slider .slick-list {
		margin-left: 0;
		overflow: unset;
	}

	.sec1_slider li {
		width: 100%;
		margin: 0;
	}

	.sec1_slider .slick-prev,
	.sec1_slider .slick-next {
		position: absolute;
		top: 33%;
		cursor: pointer;
		height: 25px;
		width: 25px;
		z-index: 10;
	}

	.sec1_slider .slick-prev {
		left: 0;

	}

	.sec1_slider .slick-next {
		right: 0;
	}

	.sec1 .sec1_slider li a {
		position: relative;
		display: block;
	}
		/* .sec1 .sec1_slider li a img {
			height: 270px;
		} */
	
	.sec1 .sec1_slider li a span.category {
		width: 70px;
		font-size: 12px;
		text-align: center;
		padding: 2px 0;
	}
	.sec1 .sec1_slider li a .textBox {
		padding: 0 20px;
	}
	.sec1 .sec1_slider li a p.text {
		font-size: 14px;
		padding: 11px 0;
		position: relative;
	}

	.sec1 .sec1_slider li a h3.title {
		font-size: 14px;
		margin-top: 2px;
	}

	.sec1 .sec1_slider li a p.text2 {
		font-size: 14px;
		margin-top: 6px;
	}
}

/* section2
***************************************************************/

.sec2 .inner .textWrap {
	margin: 120px 0;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	position: relative;
}
.sec2 .inner .textWrap::before {
	content: "";
	display: inline-block;
	width: 50%;
	height: 100%;
	background: #ECECEC;
	position: absolute;
	left: -70px;
	bottom: -70px;
	z-index: -1;
}
.sec2 .inner .textWrap::after {
	content: "";
	display: inline-block;
	width: 50%;
	height: 100%;
	background: #EBF8FA;
	position: absolute;
	top: -70px;
	right: -70px;
	z-index: -5;
}
.sec2 .inner .textWrap .imgBox a {
	position: relative;
	padding: 90px 80px;
	text-align: center;
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.sec2 .inner .textWrap .imgBox a img.bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: scale(1.0);
	transition: .3s;
}

.sec2 .inner .textWrap .imgBox img.img1 {
	width: 126px;
}

.sec2 .inner .textWrap .imgBox h3.title {
	font-size: 24px;
	margin-top: 10px;
}

.sec2 .inner .textWrap .imgBox p.text {
	margin-top: 20px;
	font-weight: 500;
	text-align: left;
}
.sec2 .inner .textWrap .imgBox:nth-of-type(2) {
	padding: 0;
}
.sec2 .inner .textWrap .imgBox .imgBox2 a {
	padding: 36px 94px;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.sec2 .inner .textWrap .imgBox .imgBox2 a img.bg {
	transform: scale(1.0);
	transition: .3s;
}


@media screen and (min-width: 681px) {
	.sec2 .inner .textWrap .imgBox a:hover img.bg {
			transform: scale(1.1, 1.1);
		}
	.sec2 .inner .textWrap .imgBox .imgBox2 a:hover img.bg {
		transform: scale(1.1,1.1);
	}
}

@media screen and (max-width: 768px) {
	.sec2 .inner .textWrap {
		margin:0;
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
	}

	.sec2 .inner .textWrap::before {
		display: none;
	}

	.sec2 .inner .textWrap::after {
		display: none;
	}

	.sec2 .inner .textWrap .imgBox a {
		padding: 20px;
		width: 100%;
	}

	.sec2 .inner .textWrap .imgBox img.img1 {
		width: 48px;
	}

	.sec2 .inner .textWrap .imgBox h3.title {
		font-size: 17px;
		margin-top: 5px;
	}

	.sec2 .inner .textWrap .imgBox p.text {
		margin-top: 5px;
		font-size: 14px;
	}

	.sec2 .inner .textWrap .imgBox:nth-of-type(2) {
		display: flex;
		flex-flow: column;
		gap: 30px;
	}

	.sec2 .inner .textWrap .imgBox .imgBox2 a {
		padding: 20px;
	}

}

/* section3
***************************************************************/
.sec3 {
	background-image: url(../../images/img-bg-achievement.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.sec3 .slider .slick-slide {
	margin: 0 10px;
}

.sec3 .slider a p {
	margin: 8px 0;
}

@media screen and (min-width: 681px) {}

@media screen and (max-width: 768px) {
	.sec3 {
		background-image: url(../../images/img-bg-achievement-sp.jpg);
	}

	.sec3 .slider .slick-slide {
		margin: 0 12.5px;
	}
	.sec3 .slider a h3 {
		font-size: 14px;
	}
	.sec3 .slider a p {
		margin: 5px 0 3px;
		font-size: 14px;
	}
}

/* section4
***************************************************************/

.sec4 .inner .textWrap {
	display: flex;
	align-items: center;
	gap: 85px;
	margin-left: calc(50% - 50vw);
}
.sec4 .inner .textWrap:nth-of-type(3) {
	margin: 60px calc(50% - 50vw) 60px 0;
	flex-flow: row-reverse;
}

.sec4 .inner .textWrap img {
	width: calc(50vw + 55px);
	height: 426px;
}

.sec4 .inner .textWrap .textBox {
	text-align: center;
	width: 363px;
}

.sec4 .inner .textWrap .textBox span {
	font-size: 15px;
	font-weight: bold;
	position: relative;
}
.sec4 .inner .textWrap .textBox span::before {
	content: "";
	display: inline-block;
	width: 20px;
	border-top: 2px solid #333;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translate(-50%,0);
}
.sec4 .inner .textWrap .textBox h3 {
	margin-top: 30px;
	font-size: 22px;
	font-weight: bold;
}

.sec4 .inner .textWrap .textBox p {
	margin-top: 20px;
	text-align: left;
}

.sec4 .inner .textWrap .textBox a.btn {
	margin: 30px auto 0;
}
@media screen and (max-width: 1440px) {
	.sec4 .inner .textWrap {
		margin-left: 0;
	}
	.sec4 .inner .textWrap:nth-of-type(3) {
		margin: 60px 0;
	}
		.sec4 .inner .textWrap img {
			width: 50%;
			height: 330px;
		}

}

@media screen and (max-width: 768px) {
	.sec4 .inner .textWrap {
		flex-flow: column;
		gap: 30px;
		margin-left:0;
	}

	.sec4 .inner .textWrap:nth-of-type(3) {
		margin: 30px 0;
		flex-flow: column;
	}

	.sec4 .inner .textWrap img {
		margin: 0 calc(50% - 50vw);
		width: 100vw;
		height: 188px;
	}

	.sec4 .inner .textWrap .textBox {
		width: 100%;
	}

	.sec4 .inner .textWrap .textBox h3 {
		margin-top: 15px;
		font-size: 20px;
		font-weight: bold;
	}

	.sec4 .inner .textWrap .textBox p {
		margin-top: 15px;
		text-align: left;
		font-size: 14px;
	}

	.sec4 .inner .textWrap .textBox a.btn {
		margin: 25px auto 0;
	}
}

/* section5
***************************************************************/

.sec5 {
	background: #F7F7F7;
	padding: 80px 0  280px;
}

.sec5 .inner .textWrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}
.sec5 .inner .textWrap .textBox {
	
}

.sec5 .inner .textWrap .textBox a {
	transition: 0.3s;
}

.sec5 .inner .textWrap .textBox a img {}

.sec5 .inner .textWrap .textBox a time {
	margin-top: 12px;
	font-size: 17px;
	color: #C5CFD1;
	display: inline-block;
}

.sec5 .inner .textWrap .textBox a h3 {
	margin-top: 6px;
	font-size: 19px;
}

.sec5 .inner .textWrap .textBox a p {
	margin-top: 9px;
}

.sec5 .inner .textWrap ul {
	display: flex;
	flex-flow: column;
}

.sec5 .inner .textWrap ul li {
	padding-bottom: 22px;
	border-bottom: 1px solid #BDDEE5;
	margin-bottom: 23px;
}

.sec5 .inner .textWrap ul li:nth-last-child(1) {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: unset;
}
.sec5 .inner .textWrap ul li a {
	display: flex;
	align-items: center;
	gap: 27px;
	transition: 0.3s;
}

.sec5 .inner .textWrap ul li a img {
	width: 189px;
}

.sec5 .inner .textWrap ul li a .textBox2 {}

.sec5 .inner .textWrap ul li a .textBox2 time {
	font-size: 17px;
	color: #C5CFD1;
}

.sec5 .inner .textWrap ul li a .textBox2 h3 {
	margin-top: 7px;
	font-size: 17px;
}

.sec5 .inner a.btn {}

@media screen and (min-width: 681px) {
	.sec5 .inner .textWrap .textBox a:hover,
	.sec5 .inner .textWrap ul li a:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width: 680px) {
	.sec5 {
			background: #F7F7F7;
			padding: 50px 0 520px;
		}
	
	.sec5 .inner .textWrap {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
		padding: 0 18px;
	}

	.sec5 .inner .textWrap .textBox {
		display: flex;
		grid-template-columns: repeat(2,1fr);
		gap: 15px;
	}
	.sec5 .inner .textWrap .textBox a{
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.sec5 .inner .textWrap .textBox a img {
		width: 116px;
	}

	.sec5 .inner .textWrap .textBox a time {
		margin-top: 0;
		font-size: 12px;
	}

	.sec5 .inner .textWrap .textBox a h3 {
		margin-top: 5px;
		font-size: 14px;
	}

	.sec5 .inner .textWrap .textBox a p {
		margin-top: 0;
	}

	.sec5 .inner .textWrap ul {
		display: flex;
		flex-flow: column;
	}

	.sec5 .inner .textWrap ul li {
		padding-bottom: 13px;
		border-bottom: 1px solid #BDDEE5;
		margin-bottom: 13px;
	}

	.sec5 .inner .textWrap ul li:nth-of-type(1) {
		padding-top: 13px;
		margin-top: 13px;
		border-top: 1px solid #BDDEE5;
	}

	.sec5 .inner .textWrap ul li a {
		gap: 15px;
	}

	.sec5 .inner .textWrap ul li a img {
		width: 116px;
	}
	
	.sec5 .inner .textWrap ul li a .textBox2 time {
		font-size: 12px;
	}

	.sec5 .inner .textWrap ul li a .textBox2 h3 {
		margin-top: 5px;
		font-size: 14px;
	}

}