@charset "utf-8";
/*==================================================
	【トップ】ページ固有のスタイル
==================================================*/
/* お知らせ */
#top_info .box a {
	display: inline-block;
	background: #fff;
	width: 100%;
	min-height: 150px;
	padding: 25px;
	box-sizing: border-box;
	margin-bottom: 25px;
	color : #55533D;
}
#top_info .box a:hover {
	opacity: 1;
	background: #f6f4e9;
	text-decoration: underline;
}
#top_info .box .img {
	width: 100px;
	height: 100px;
	padding: 10px;
	border: 1px solid #efece7;
	display: flex;
	justify-content: center;
	align-items: center;
}
#top_info .box .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top_info .box dl {
	width: 925px;
	font-size: 98%;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */

}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#top_info .box a {
		padding: 15px;
		margin-bottom: 25px;
		min-height: 100px;
	}
	#top_info .box .img {
		padding: 5px;
	}
	#top_info .box dl {
		width: calc(100% - 115px);
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#top_ttl img {
		object-fit: cover;
		height: 250px;
	}
	#top_info .box .img {
		width: 80px;
		height: 80px;
	}
	#top_info .box dl {
		width: calc(100% - 90px);
	}
}