#FV .fv-img h1 {
    position: absolute;
    top: 42%;
    left: 10.57%;
    word-break: keep-all;
    font-size: clamp(24px, 2.5vw, 48px)
}


#FV .fv-img .bread-crumbs {
    position: absolute;
    /* top: 1vw; */
    top: 0.156vw;
    left: 10.57%;
    font-size: 0.81rem;
    display: flex;
    gap: 10px;
    margin-block: 1rem;
}


.company-name {
	gap: 0;
}


.company-name span {
	background-color: transparent;
	font-size: inherit;
	letter-spacing: 0;
	font-weight: bold;
	padding: 0;
}

.company-name .initial-company-name {
	color: #b1000e;
}

.case-lead {
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
	color: #2f2f2f;
	text-align: center;
	margin-bottom: 3%;
}

.cases .campany-name {
	margin-bottom: 3%;
}

#selection, 
#process, 
#support {
	margin-bottom: 85px;
}

/* 事例紹介セクション */
.cases {
	padding: 50px 20px;
	/* background-color: #f9f9f9; */
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto 80px;
}

.case-grid a:hover {
	opacity: 0.7;
}

.case-item {
	border-bottom: 1px solid #ddd;
	padding: 20px;
	text-align: left;
	position: relative;
}

.case-item-title {
	font-size: 1.1rem;
}

.company-name {
	margin-bottom: 15px;
}

.case-item img {
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.case-link {
	position: absolute;
	/* 追加 */
	bottom: 0px;
	/* 追加 */
	right: 9px;
	/* 追加 */
	text-decoration: none;
	color: #ddd;
	font-size: 1.5em;
	/* 必要に応じて調整 */
}

.read-more a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #b1000e;
	color: #fff;
	width: 248px;
	margin-inline: auto;
	text-align: center;
	padding-block: 23px 22px;
	font-size: 1.1rem;
	position: relative;
}

.read-more a:hover {
	opacity: 0.7;
}

.read-more span {
	position: absolute;
	right: 29px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.case-grid {
		grid-template-columns: 1fr;
		/* 1列に変更 */
	}

	.read-more a {
		width: 35.6vw;
		font-size: 3.3vw;
		aspect-ratio: 561 / 136;
		padding-block: 0;
	}

	.read-more span {
		right: 9%;
	}

	#FV .fv-img .bread-crumbs {
		position: absolute;
		top: -5px;
		left: 4.57%;
		font-size: 2.5vw;
	}
	#FV .fv-img h1 {
		display: block;
		top: 30%;
		left: 3.9%;
	}
}