/* ニュースリスト */
.news {
	width: 100%;
}

/* スクロールバーのスタイル */
.news::-webkit-scrollbar {
	width: 5px;
}

.news::-webkit-scrollbar-track {
	background: #f7f7f7;
}

.news::-webkit-scrollbar-thumb {
	background: #dddddd;
}

/* 各ニュース項目 */
.news li {
	padding: 15px 20px;
	font-family: "游明朝 Light", YuMincho, "Noto Serif", "Sawarabi Mincho",
		"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3,
		"ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: bold;
	border-bottom: 1px dotted #cccccc;
	line-height: 1.3em;
}

.news li:nth-child(odd) {
	background: #f7f7f7;
}

.news li a {
	text-decoration: none;
	color: #222222;
}

/* ニュース内のspan（ラベル） */
.news li span {
	display: inline-block;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic,
		'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro',
		メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 500;
	font-size: 0.9em;
	padding: 5px;
	margin: 0 0 5px 10px;
	text-align: center;
	background: #5d0009;
	color: #960;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	width: 130px;
	line-height: 1em;
}

/* 特定のラベル（お知らせ） */
.news li span.info {
	background: #f4d7d9;
}
.news li span.ootori {/* 鳳店 */
	background:#e4dcec;
}
.news li span.tsukuno {/* 津久野店 */
	background:#d4ebea;
}
.news li span.higashikishiwada {/* 東岸和田店 */
	background:#d1e5bc;
}
.news li span.ootori-higashikishiwada {/* 鳳店・東岸和田店 */
	background:#feffba;
}
