<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

#mediaInfo h4 {
	font-weight: bold;
	font-size: 16px;
}
#mediaInfo dl {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #666 dashed 1px;
}

@media screen and (min-width: 639px) {
/* PC用のスタイル記述 */

#mediaInfo dl {
	overflow: hidden;
	_zoom:1;
}
#mediaInfo dl dt {
	float: left;
	width: 15%;
}
#mediaInfo dl dd {
	float: left;
	width:85%;
}
#mediaInfo dl dt img {
	width: 120px;
}

}

@media screen and (max-width: 640px) {
/* スマートフォン用のスタイル記述 */
#mediaInfo dl dt img {
	width: 110px;
	padding-bottom: 5px;
}

}
</pre></body></html>