@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#technology .bg_gray::after {
	content: "CO-MEDICAL";
	position: absolute;
	right: calc(((100vw - 100%) / 2) * -1);
	top: -35px;
	color: #fff;
	font-size: 85px;
	font-family: var(--font-com);
}
#technology .list {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	gap: 55px;
}
#technology .list a {
	width: 330px;
	background: #fff;
	position: relative;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
	overflow: hidden;
	color : #333;
	font-weight: 500;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
}
#technology .list a::before {
	content: "";
	width: 9px;
	height: 9px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	bottom: 10px;
	right: 12px;
	margin-top: -4px;
	z-index: 1;
}
#technology .list a::after {
	content: "";
	position: absolute;
	background: var(--color-primary);
	border-radius: 50%;
	right: -43px;
	bottom: -43px;
	width: 86px;
	height: 86px;
}
#technology .list a .img {
	height: 141px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#technology .bg_gray::after {
		font-size: 40px;
		top: -16px;
	}
	#technology .list {
		gap: 15px 2%;
	}
	#technology .list a {
		width: 32%;
		height: 33vw;
	}
	#technology .list a .img {
		margin-bottom: 0;
		transform: scale(0.8);
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#technology .bg_gray::after {
		font-size: 30px;
		top: -10px;
	}
	#technology .list {
		gap: 10px 2%;
		margin-top: 20px;
	}
	#technology .list a {
		width: 48%;
		height: 50vw;
		padding-top: 10px;
		padding-bottom: 30px;
	}
	#technology .list a::before{
		bottom: 7px;
		right: 7px;
	}
	#technology .list a::after {
		right: -30px;
		bottom: -30px;
		width: 60px;
		height: 60px;
	}
}
@media only screen and (max-width: 320px){ /* スマホ */
	#technology .list a {
		height: 50vw;
	}
	#technology .list a .img {
		transform: unset;
		height: 90px;
	}
	#technology .list a .img img {
		transform: scale(0.6);
	}
	#technology .list a .ttl {
		font-size: 12px;
	}
}