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

/* =========================
   メインスライダー
========================= */
.casedetail .img-box .slide {
	position: relative;
	overflow: hidden;
}

.casedetail .img-box .slide .slick-list {
	overflow: hidden;
}

.casedetail .img-box .slide .slick-track {
	display: block !important;
}

.casedetail .img-box .slide .item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.casedetail .img-box .slide .item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* =========================
   サムネイル一覧
========================= */
.casedetail .img-box .slide-navigation {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
	padding-top: 15px;
}

.casedetail .img-box .slide-navigation .item {
	width: calc((100% - 40px) / 6);
	cursor: pointer;
}

.casedetail .img-box .slide-navigation .item img {
	display: block;
	width: 100%;
	height: auto;
}

/* 選択中サムネイル */
.casedetail .img-box .slide-navigation .item.current {
	opacity: 0.7;
}

/* =========================
   テキストまわり
========================= */
.casedetail .webgene-blog .webgene-item .titleitem {
	justify-content: flex-start;
	gap: 10px 20px;
}

.casedetail .webgene-blog .webgene-item .titleitem .cate {
	padding: 2px 10px;
	border-radius: 2px;
	border: 1px solid #373B3E;
	font-weight: 500;
}
.casedetail .txtbox{
    font-weight: 500;
}
.casedetail .webgene-blog .webgene-item .contents {
	gap: 40px;
}

.casedetail .webgene-blog .webgene-item .contents > div {
	width: calc(50% - 20px);
}

.casedetail .webgene-blog .webgene-item .contents .titlebox .title {
	padding-bottom: 15px;
	margin-bottom: 20px;
	position: relative;
}

.casedetail .webgene-blog .webgene-item .contents .titlebox .title::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #D8D7D6;
	z-index: 1;
}

.casedetail .webgene-blog .webgene-item .contents .titlebox .title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 1px;
	background-color: #373B3E;
	z-index: 2;
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
}

/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
}

/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
	.casedetail .img-box .slide-navigation .item {
		width: calc((100% - 24px) / 4);
	}

	.casedetail .webgene-blog .webgene-item .contents {
		flex-direction: column;
		gap: 30px;
	}

	.casedetail .webgene-blog .webgene-item .contents > div {
		width: 100%;
	}
}

/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
	.casedetail .img-box .slide-navigation .item {
		width: calc((100% - 16px) / 3);
	}
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {
}