@charset "utf-8";

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

.decay-list > li{
	display: flex;
	padding-bottom: 1rem;
	border-bottom: dotted 1px #bababa;
	margin-bottom: 1rem;
	width: 100%;
}

.decay-list > li:last-child{border-bottom:0;}


.decay-image{
	width: 100px;
	background-color: #f2faff;
	height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
}

.decay-image img{
	width: 100%;
	position: relative;
    bottom: -5px;
}

.decay-list dt{
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.decay-list-ttl{
	font-size: 0.9rem;
	background-color: #45c5d1;
	padding: 0.25rem 0.5rem 0.3rem;
	margin-right: 0.5rem;
	color: #FFF;
}


@media only screen and  (max-width: 834px) {
	.decay-list > li{
		flex-direction: column;
	}

	.decay-image{
		width: 160px;
		background-color: #FFF;
		margin: 0 auto 1rem;
	}
}