@charset "UTF-8";

/* ================================================================================
kv
================================================================================ */
@media print, screen
{

#kv {
	width: 100%;
	position: relative;
	overflow: hidden;

	padding: 0;
}
#kv img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 2540 / 890;
}

}
@supports not (aspect-ratio: 1)
{

#kv {
	height: 0;
	padding-top: 35.04%;
	position: relative;
}
#kv img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

}
@media screen and (max-width: 767px)
{

#kv img {
	aspect-ratio: 768 / 700;
}

}

/* ================================================================================
news
================================================================================ */
@media print, screen
{

#news {
	max-width: 1420px;
	margin: 0 auto;
	padding: 70px 110px;
	border-bottom: 1px solid #cecece;
}
#news *{	line-height: 1.7;	}

#news .news-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
}
#news .news-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
	flex: 1;
}
#news .news-list li {
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 15px;
}
#news .news-list li span:first-child {
	flex: 0 0 125px;
	font-size: 16px;
}
#news .news-list li a {
	text-decoration: none;
	font-size: 16px;
	/* color: #000; */
	position: relative;
	transition: all 0.3s ease;
}
#news .label {
	color: white;
	background: var(--Ctheme1);
	padding: 2px 20px;
	margin-right: 8px;
	font-size: 13px;
	text-align: center;
	min-width: 120px;
}

}
@media screen and (max-width: 767px)
{

#news {
	padding: 8% 6% 6%;
}
#news .news-wrapper {
	display: block;
}

}
@media screen and (max-width: 425px)
{

#news .news-list li span:first-child{	flex: 0;	}
#news .news-list li {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	border-top: 1px solid #dddddd;
}
#news .news-list li span:nth-child(1),
#news .news-list li span:nth-child(2) {
	display: inline-block;
	margin-right: 8px;
}
#news .news-list li a {
	display: block;
	margin-top: 2px;
}

}


/* ================================================================================
company-business
================================================================================ */
@media print, screen
{

#company-business {
	max-width: 1420px;
	margin: 0 auto;
	border-bottom: 1px solid #cecece;
}
#company-business > .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
	padding: 60px 0 70px;

	max-width: unset;
}
#company-business .block img {
	width: 100%;
	max-width: 670px;
	margin-top: 20px;
	height: auto;
	transition: transform 0.6s ease, filter 0.6s ease;
	display: block;
}
#company-business .block:hover img {
	transform: scale(1.05);
	filter: brightness(1.1);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

}
@media (max-width: 767px)
{

#company-business > .inner {
	padding: 7%;
}
#company-business .block img {
	margin-top: 0;
}

}


/* ================================================================================
results
================================================================================ */
@media print, screen
{

#results {
	text-align: center;
	padding: 40px 20px 80px;
}
#results *{	line-height: 1.7;	}

#results .results-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
}
#results .results-title + p{	font-size: 16px;	}
#results .logos-scroll {
	overflow: hidden;
	position: relative;
	height: 250px;
	margin-top: 40px;
}
#results .logos-track {
	display: flex;
	gap: 40px;
	animation: scroll-left 13s linear infinite;
	flex-shrink: 0;
}
#results .logos-track img {
	height: 250px;
	border: 1px solid #e5e5e5;
	flex-shrink: 0;
}
#results .paused {
	animation-play-state: paused !important;
}
/* 
#results .logos-scroll:hover .logos-track {
	animation-play-state: paused;
}
 */
@keyframes scroll-left {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}

}
@media (max-width: 767px) {
	#results {
		padding: 5% 6% 8%;
	}
	#results .results-title {
		font-size: 34px;
		margin-bottom: 4%;
	}
	#results p {
		text-align: left;
	}
	#results .logos-scroll {
		height: 100px;
	}
	#results .logos-track {
		gap: 20px;
	}
	#results .logos-track img {
		height: 100px;
	}
	#results .logos-track {
		animation: scroll-left 5s linear infinite;
	}
	
}


/* ================================================================================
common
================================================================================ */

/* ========================================
home-title
======================================== */
@media print, screen
{

.home-title
{
	font-size: 24px;
	line-height: 1.7;
}

.home-title a {
	min-width: 120px;
	line-height: 0.5;
	text-decoration: none;
	color: #000;
	font-weight: 700;
}
.home-title a .en {
	font-size: 35px;
	font-family: var(--Arimo);
}
.home-title a .ja {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
}

}
@media screen and (max-width: 767px)
{

.home-title {
	margin-bottom: 5%;
}

}



/* ======================================== end ======================================== */
