@charset "UTF-8";
/* ============================================
   開発実績（Works）ページ
   design: ALION Works.dc.html
============================================ */

/* ---- Hero ---- */
.wkHero {
	position: relative;
	background: #1A212F;
	overflow: hidden;
	padding: 172px 0 86px;
}

.wkHero-marquee {
	position: absolute;
	left: 0;
	bottom: -14px;
	z-index: 0;
	display: flex;
	width: max-content;
	animation: wkMqL 58s linear infinite;
	pointer-events: none;
}

.wkHero-marquee span {
	font-family: 'Chillax', 'Chillax-local', sans-serif;
	font-size: 200px;
	font-weight: 500;
	line-height: .9;
	letter-spacing: normal;
	color: rgba(255, 255, 255, .05);
	white-space: nowrap;
	padding-right: 70px;
	flex: 0 0 auto;
}

@keyframes wkMqL {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.wkHero-inner {
	position: relative;
	z-index: 1;
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
	color: #fff;
}

.wkHero-badge {
	display: inline-block;
	font-size: 14px;
	padding: 4px 14px;
	border-radius: 100px;
	color: #fff;
	background-color: #005FFF;
	font-weight: 600;
	line-height: 160%;
	letter-spacing: normal;
}

.wkHero-ttl {
	font-family: 'Chillax', 'Chillax-local', sans-serif;
	font-size: min(112px, 13vw);
	line-height: 104%;
	letter-spacing: normal;
	font-weight: 500;
	margin-top: 16px;
	color: #fff;
}

.wkHero-lead {
	font-size: min(17px, 4vw);
	line-height: 200%;
	letter-spacing: normal;
	color: rgba(255, 255, 255, .74);
	margin-top: 22px;
	max-width: 660px;
	text-wrap: pretty;
}

/* ---- Works Grid ---- */
.wkGrid-sec {
	background: #fff;
	padding: 60px 0 110px;
}

.wkGrid-inner {
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
}

.wkFilter {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.wkFilter-btn {
	padding: 11px 18px;
	border-radius: 100px;
	font-size: 14px;
	letter-spacing: normal;
	cursor: pointer;
	white-space: nowrap;
	transition: all .25s;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: inherit;
	border: 1px solid #E4E8EE;
	background: #fff;
	color: #5B6472;
	font-weight: 600;
}

.wkFilter-btn .cnt {
	font-size: 11px;
	font-weight: 700;
	border-radius: 100px;
	padding: 1px 8px;
	min-width: 22px;
	text-align: center;
	line-height: 1.6;
	color: #8A94A3;
	background: #F1F3F6;
}

.wkFilter-btn.is-active {
	border-color: #1A212F;
	background: #1A212F;
	color: #fff;
	font-weight: 700;
}

.wkFilter-btn.is-active .cnt {
	color: #1A212F;
	background: #fff;
}

.wkList {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 44px 30px;
	margin-top: 40px;
}

.wkCard {
	transition: transform .3s ease;
}

.wkCard:hover {
	transform: translateY(-5px);
}

.wkCard.is-hidden {
	display: none;
}

.wkCard-imgWrap {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 16 / 9;
	background: #EEF2F7;
	box-shadow: 0 14px 34px rgba(20, 40, 80, .10);
	border: 1px solid #EDF1F6;
}

.wkCard-img {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

.wkCard:hover .wkCard-img {
	transform: scale(1.05);
}

.wkCard-cat {
	position: absolute;
	top: 13px;
	left: 13px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	color: #1A212F;
	background: rgba(255, 255, 255, .93);
	backdrop-filter: blur(6px);
	border-radius: 100px;
	padding: 6px 13px;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.wkCard-body {
	padding-top: 20px;
}

.wkCard-client {
	font-size: 12px;
	color: #8A94A3;
	letter-spacing: normal;
	line-height: 1.5;
}

.wkCard-ttl {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: normal;
	margin-top: 6px;
	color: #1A212F;
	text-wrap: pretty;
}

.wkCard-desc {
	font-size: 13px;
	line-height: 1.95;
	color: #5B6472;
	letter-spacing: normal;
	margin-top: 10px;
	text-wrap: pretty;
}

.wkCard-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.wkCard-tags li {
	font-size: 11px;
	font-weight: 600;
	color: #005FFF;
	background: #F1F5FF;
	border-radius: 7px;
	padding: 5px 11px;
	letter-spacing: normal;
	line-height: 1;
}

.wkEmpty {
	text-align: center;
	color: #8A94A3;
	padding: 60px 0;
	font-size: 15px;
	display: none;
}

.wkEmpty.is-show {
	display: block;
}

.wkCard-link,
.wkCard > a {
	display: block;
	color: inherit;
}
