@charset "utf-8";
/*-------------------------------------------------

	Main Visual │ メインビジュアル

--------------------------------------------------*/
#mv {position: relative;z-index: 2;background: #3A67B1;}
#mv .splide__slide {display: flex;position: relative;}
#mv .splide__slide span:nth-child(1) {width: 70%;}
#mv .splide__slide span:nth-child(2) {position: absolute;top: 50%;right: 0;transform: translateY(-50%);width: 45%;}
#mv .splide__slide p {
	display: inline-block;
	position: absolute;
	bottom: 15%;
	left: 0;
	z-index: 2;
	padding: 1vw 1.5vw 1vw 5vw;
	background: rgba(9, 35, 90, .7);
	color: #fff;
	font-weight: bold;
	font-size: 2.7vw;
	line-height: 1.3;
}
#mv .splide__slide p {display: block;}
#mv .wrap {display: flex;gap: 2vw; position: fixed; bottom: 5%;right: 3vw;z-index: 2;}
#mv .wrap figure {width: 20vw;}
#mv .wrap figure a {transition: .3s;}
#mv .wrap figure a:hover {transform: scale(1.05);}
@media only screen and ( max-width : 767px ) {
	#mv .wrap figure {width: 45vw;}
	#mv .splide__slide p {bottom: 20%;padding: 2vw 2.5vw 2vw 5vw;font-size: 5.7vw;}
}
/*-------------------------------------------------

	Products │ 製品紹介

--------------------------------------------------*/
#products {background: url(../img/front/products/bg.webp) no-repeat center bottom / cover;}
/*-------------------------------------------------

	News │ ニュースリリース

--------------------------------------------------*/
#news {background: #FCFCFC;}
#news ul {margin-bottom: clamp(40px, calc(40px + 20 * ((100vw - 375px) / 1545)), 60px);}
#news ul li {
	opacity: 0;
	display: flex;
	align-items: center;
	gap: clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);
	position: relative;
	margin-bottom: 20px;
	padding: 25px 60px 25px 10px;
	background: repeat-x bottom left / 3px 1px;
	background-image : linear-gradient(to right, #707070 2px, transparent 2px);
}
#news ul li.isActive {animation: fadeLeft .8s ease forwards;}
@keyframes fadeLeft {
	from {opacity: 0;transform: translate3d(-50px, 0, 0);}
	to {opacity: 1;transform: translate3d(0, 0, 0);}
}
#news ul li:nth-of-type(1).isActive {animation-delay: .35s;}
#news ul li:nth-of-type(2).isActive {animation-delay: .4s;}
#news ul li:nth-of-type(3).isActive {animation-delay: .45s;}
#news ul li:first-child::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: repeat-x top left / 3px 1px;
	background-image : linear-gradient(to right, #707070 2px, transparent 2px);
}
#news ul li::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 1px solid #023059;
	border-radius: 50%;
	background: url(../img/common/Icon_arrowR-navy.svg) no-repeat center / 45%;
	transition: .3s;
}
#news ul li:hover::after {right: 5px;}
#news ul li:last-child {margin-bottom: 0;}
#news ul li dl {display: flex;gap: clamp(40px, calc(40px + 30 * ((100vw - 375px) / 1545)), 70px);}
#news ul li dl dt {display: flex;align-items: center;gap: clamp(30px, calc(30px + 20 * ((100vw - 375px) / 1545)), 50px);}
#news ul li dl dt time {font-size: clamp(16px, calc(16px + 4 * ((100vw - 375px) / 1545)), 20px);}
#news ul li dl dt span {
	display: block;
	width: 120px;
	padding: 5px 0;
	background: #081A40;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
#news ul li dl dt span.event {background: #3A67B1;}
#news ul li dl dt span.media {background: #92ADE8;}
#news ul li dl dt span.recruitment {background: #C7D3EA;}
#news ul li dl dd {color: #081A40;font-size: clamp(14px, calc(14px + 4 * ((100vw - 375px) / 1545)), 18px);}
@media only screen and ( max-width : 767px ) {
	#news ul li dl {display: block;}
	#news ul li dl dt {margin-bottom: 10px;}
}
@media only screen and ( max-width : 500px ) {
	#news ul li dl {display: block;}
}