@charset "utf-8";
.extraHdr {
		padding-top: 140px;
}
.worksAnchor {
		margin-top: -140px;
		padding-top: 140px;
		position: relative;
		pointer-events: none;
}
@media(max-width: 767px) {
		.extraHdr {
				padding-top: 100px;
		}
		.worksAnchor {
				margin-top: -100px;
				padding-top: 100px;
		}
}
.main_contents {
		padding-bottom: 180px;
}
@media(max-width: 767px) {
		.main_contents {
				padding-bottom: 80px;
		}
}
.works_lead {
		line-height: 2.2;
		text-align: justify;
		margin: 0 0 90px;
		font-weight: 600;
}
.works_hd_flex {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0 0 20px
}
.works_hd_flex h3 {
		font-size: 20px;
		font-weight: 600;
		margin: 0;
		padding: 0;
}
.reset_btn {
		width: 90px;
}
.reset_btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 40px;
		background: #1E1E1E;
		border: 1px solid #1E1E1E;
		color: #fff;
		text-decoration: none;
		transition: background 0.2s;
		border-radius: 60px;
}
@media (hover: hover) {
		.reset_btn a:hover {
				background: #fff;
				color: #1E1E1E;
		}
}
.works_tag_gr {
		margin-bottom: 80px;
}
.works_tag_list {
		display: flex;
		flex-wrap: wrap;
		list-style: none;
}
.works_tag_list li {
		margin: 0 9px 9px 0;
		font-size: 14px;
		font-weight: 500;
}
.works_tag_list li a, .works_tag_list li button {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 36px;
		background: #fff;
		border: 1px solid #3DAE35;
		border-radius: 60px;
		color: #3DAE35;
		text-decoration: none;
		padding: 0 20px;
		transition: background 0.2s;
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;
}
.works_tag_list li a.isCurrent, .works_tag_list li button.isCurrent {
		background: #3DAE35;
		color: #fff;
}
@media (hover: hover) {
		.works_tag_list li a:hover, .works_tag_list li button:hover {
				background: #3DAE35;
				color: #fff;
		}
}
.works_tag_list li a span {
		transform: translateY(-1px)
}
.works_grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 45px 24px;
}
.works_tile {
		opacity: 0;
		animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
		0% {
				opacity: 0;
		}
		100% {
				opacity: 1;
		}
}
.works_tile a {
		color: #1e1e1e;
		text-decoration: none;
}
.works_tile_thumb {
		margin: 0 0 7px;
		overflow: hidden;
		border-radius: 10px;
}
.works_tile_thumb img {
		width: 100%;
		height: auto;
		aspect-ratio: 10 / 6.9;
		object-fit: cover;
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
		.works_tile a:hover {
				color: #3DAE35;
		}
		.works_tile a:hover .works_tile_thumb img {
				transform: scale(1.05);
		}
}
.works_tile_name {
		font-size: 20px;
		font-weight: 600;
		margin: 0 0 5px;
		line-height: 1.6;
}
.works_tile_spec {
		font-size: 15px;
}
@media(max-width: 767px) {
		.works_hd_flex {
				margin: 0 0 15px
		}
		.works_hd_flex h3 {
				font-size: 15px;
		}
		.reset_btn {
				width: 80px;
				font-size: 15px;
		}
		.reset_btn a {
				r;
				height: 36px;
		}
		.works_tag_gr {
				margin-bottom: 40px;
		}
		.works_tag_list li {
				margin: 0 5px 7px 0;
				font-size: 13px;
		}
		.works_tag_list li a, .works_tag_list li button {
				height: 34px;
				padding: 0 12px;
				font-size: 13px;
		}
		.works_grid {
				display: grid;
				grid-template-columns: repeat(2, 1fr);
				gap: 25px 10px;
		}
		.works_tile_thumb {
				margin: 0 0 5px;
				border-radius: 4px;
		}
		.works_tile_name {
				font-size: 15px;
				margin-bottom: 0;
		}
		.works_tile_spec {
				font-size: 11px;
		}
}
.works_grid {
		position: relative;
		min-height: 200px;
}
.works_grid .no_match {
		position: absolute;
		top: 0px;
		left: 0;
		width: 100%;
}
.no_match p {
		text-align: center;
		line-height: 2.0;
		font-weight: 500;
		font-size: 18px;
		opacity: 0;
		animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}