@charset "utf-8";

.cosmetic-list{
	margin-top: 1rem;
}

.cosmetic-list li{
	display: flex;
	align-items: stretch;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px dotted #bababa;
}

.cosmetic-list li:last-child{
	margin-bottom: 0;
    padding-bottom: 0;
	border-bottom:0;
}

.cosmetic-list-image{
	width: 25%;
	border-radius: 8px;
	overflow: hidden;
}

.cosmetic-list-image img{
	width: 100%;
	vertical-align: bottom;
}

.cosmetic-list dl{
	width: 75%;
	padding-left: 1rem;
	box-sizing: border-box;
}

.cosmetic-list dt{
	color: #2a3f5e;
	font-size: 1.2rem;
	font-weight: bold;
	display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}




@media only screen and  (max-width: 834px) {

.cosmetic-list li{
	flex-direction: column;
}

.cosmetic-list dl{
	width: 100%;
	padding-left: 0;
}

.cosmetic-list-image{
	width: 55%;
	margin: 0 auto 1rem;
}

.cosmetic-list dt{justify-content: center;}

}