@charset "UTF-8";

/*---------------------------------------------------------
cephalogram
---------------------------------------------------------*/
.differ-box{
	box-sizing: border-box;
	border: 1px solid var(--color-taq);
	position: relative;
	padding: 2.8em;
}
.fuki{
	position: absolute;
	left: 20.5%;
	top: -5%;
	width: 11%;
}
.differ-box div{
	display: flex;
	justify-content: center;
	gap: 1.2em;
}
.differ-box div dl{
	width: 50%;
	font-weight: var(--fw-bold);
}
.differ-box div dl dt{
	color: #fff;
	background-color: var(--color-blu);
	padding: .6em;
	border-radius: 10px;
	letter-spacing: .12em;
}
.differ-box div dl:last-of-type dt{
	background-color: #84b250;
}
.differ-box div dl dd{
	color: var(--color-blu);
	width: fit-content;
	margin: 0 auto;
	text-align: left;
}
.differ-box div dl:last-of-type dd{
	color: #84b250;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.differ-box{
		padding: 2em;
	}
	.fuki{
		left: 18%;
		width: 12%;
	}
	.differ-box div dl dd{
		font-size: 90%;
	}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
	.differ-box{
		padding: 1.6em 1em;
	}
	.fuki{
		left: 3%;
		top: -3%;
		width: 25%;
	}
	.differ-box div{
		display: block;
	}
	.differ-box div dl{
		width: 100%;
		margin-bottom: 1.2em;
	}
	.differ-box div dl:last-of-type{
		margin-bottom: 0;
	}
	.differ-box div dl dt{
		margin-bottom: .5em;
	}
	.differ-box div dl dd{
		font-size: 92%;
		width: 100%;
	}
}



/*---------------------------------------------------------

---------------------------------------------------------*/

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

}