@charset "UTF-8";


/*---------------------------------------------------------
 compare
---------------------------------------------------------*/
.compare {
	display: grid;
	row-gap: 1em;
}
.compare > div {
	position: relative;
	text-align: center;
	background-color: var(--bg-color);
	padding: 9% 8% 12%;
}
.compare > div:first-of-type {
	background-color: rgba(74,190,188,0.2);
}
.compare hgroup {
	margin-bottom: 8%;
}
.compare .com_h__min {
	margin-bottom: .1em;
}
.compare .com_h__en {
	font-size: 113%;
}
.compare .box_img {
	max-width: max-content;
	margin: 0 auto 6%;
}
.compare .med_mer_dem {
	grid-template-columns: none;
	grid-template-rows: 50% 50%;
	row-gap: .8em;
}
.compare .med_mer_dem > dl {
	background-color: transparent;
	padding: 0;
}
.compare .med_mer_dem dt {
	padding-top: .6em;
	padding-bottom: .6em;
	margin-bottom: 1em;
}
/* PC,Tablet
------------------------------------------*/
@media only screen and (min-width: 768px) {

.compare {
	justify-content: space-between;
    grid-template-columns: repeat(3, min(32.5%,400px));
}
.compare > div {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	row-gap: 0;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.compare > div {
	padding: 10% 6%;
}
.compare .com_h__en {
	font-size: 3.8vw;
}
.compare .box_img {
	width: 90%;
	margin-bottom: 8%;
}
.med_mer_dem > dl:first-of-type {
	margin-bottom: 8%;
}
}


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

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

}

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

}