@charset "UTF-8";
/* CSS Document */
/*
	websolution 
-----------------------------------------------------------------------------------------------*/
.websolutionList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 140px 80px;
}
.websolutionList .websolutionLink {
	width: 500px;
}
.websolutionList .websolutionLink .titArea {
	overflow: hidden;
}
.websolutionList .websolutionLink .titArea .ffJa{
	display: inline-block;
	position: relative;
	line-height: 100%;
	padding: 0 0 0 15px;
}
.websolutionList .websolutionLink .titArea .ffJa::before {
	content: '';
	height: 8px;
	width: 8px;
	border: var(--clRed) 2px solid;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 50%;
	margin: -3px 0 0 0;
}
.websolutionList .websolutionLink .titArea .ffJa::after {
	content: '';
	height: 1px;
	border-top: 1px solid #e5e5e5;
	position: absolute;
	left: 110%;
	width: calc(1080px - 100%);
	top: 50%;
}
.websolutionList .websolutionLink .titArea .ffJa .ftS {
	font-size: 1.2rem;
	margin: 0 0 0 10px;
}
.signBoard {
	background: #fff;
	border: 1px solid #000;
	font-size: 1.2rem;
	line-height: 2rem;
	padding: 3px 15px;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: -20px;
}
.websolutionList .websolutionLink .websolutionInner{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin: 20px 0 0;
}
.websolutionList .websolutionLink .websolutionInner .imgArea{
	background: var(--clLightGray);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 0;
	width: 290px;
	position: relative;
}
.websolutionList .websolutionLink .websolutionInner .imgArea img{
	max-width: 200px;
}
.websolutionList .websolutionLink .websolutionInner .linkList {
	width: calc(100% - 300px);
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	position: relative;
}


@media screen and (width <= 812px){
	.websolutionList .websolutionLink .titArea .ffJa {
		font-size: 1.6rem;
	}
	.websolutionList {
		flex-direction: column;
		gap: 50px 0;
	}
	.websolutionList .websolutionLink {
		width: 100%;
	}
	.websolutionList .websolutionLink .websolutionInner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.websolutionList .websolutionLink .websolutionInner .imgArea {
		width: 100%;
		padding: 30px;
	}
	.websolutionList .websolutionLink .websolutionInner .imgArea img {
		width: 55%;
	}
	.websolutionList .websolutionLink .websolutionInner .linkList {
		width: 100%;
		margin: 10px 0 0 0;
		gap: 5px 0;
	}
	.signBoard {
		position: relative;
		top: 0;
	}
}


/*
	hover
-----------------------------------------------------------------------------------------------*/
@media (hover: hover) {
	
}


