h1.title {
	font-size: 1.5em;
	margin: 20px 0;
	color: #005c3f;
}

.news_list_wrap {
	width: 960px;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 0;
	row-gap: 0;
}

/* --------------------------------
   各記事
-------------------------------- */

.news_list_wrap dl {
	width: auto;
	height: 170px;
	margin: 0 0 2em 0;
	padding: 5px 14px 10px;
	box-sizing: border-box;

	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	grid-template-rows: 20px 1fr;
	column-gap: 10px;

	border: 0;
	border-bottom: 0;

	/* 既存CSSの影響を防ぐ */
	float: none;
	min-width: 0;

	/* 文字の崩れ防止 */
	letter-spacing: normal;
	word-spacing: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

/* 左右の縦線 */
.news_list_wrap dl:nth-child(even) {
	border-left: 1px solid #999;
}

/* --------------------------------
   日付
-------------------------------- */

.news_list_wrap dl>dt:first-child {
	grid-column: 1 / 3;
	grid-row: 1;

	margin: 0;
	padding: 0;

	font-size: 11px;
	font-weight: bold;
	line-height: 20px;
	color: #222;

	letter-spacing: normal;
	white-space: nowrap;
}

/* --------------------------------
   画像
-------------------------------- */

.news_list_wrap dl>dt.icon {
	grid-column: 1;
	grid-row: 2;

	width: 128px;
	height: 128px;
	margin: 0;
	padding: 0;

	overflow: hidden;
}

.news_list_wrap dl>dt.icon img {
	display: block;

	width: 128px;
	height: 128px;

	margin: 0;
	padding: 0;

	object-fit: cover;
	border: 0;
}

/* --------------------------------
   テキスト
-------------------------------- */

.news_list_wrap dl>dd {
	grid-column: 2;
	grid-row: 2;

	min-width: 0;
	margin: 0;
	padding: 0;

	font-size: 11px;
	line-height: 1.4;

	color: #222;

	letter-spacing: normal;
	word-spacing: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

/* --------------------------------
   タイトル
-------------------------------- */

.news_list_wrap dl>dd>a:first-child {
	display: block;

	margin: 0 0 10px;
	padding: 0;

	color: #00843d;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.35;

	text-decoration: none;

	letter-spacing: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

/* --------------------------------
   説明
-------------------------------- */

.news_list_wrap dl>dd p {
	margin: 0 0 8px;
	padding: 0;

	font-size: 1.3em;
	line-height: 1.4;

	letter-spacing: normal;
	word-spacing: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

/* --------------------------------
   店舗名
-------------------------------- */

.news_list_wrap dl>dd>a:last-child {
	display: block;

	margin: 0;
	padding: 0;

	color: #333;
	font-size: 10px;
	line-height: 1.35;

	text-decoration: none;

	letter-spacing: normal;
	word-spacing: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

/* SHOP */
.news_list_wrap dl>dd>a:last-child::before {
	content: "SHOP";
	display: block;

	margin: 0 0 2px;

	color: #00843d;
	font-size: 9px;
	font-weight: bold;
	line-height: 1.2;

	letter-spacing: 1px;
}


/* ========================================
   タブレット・スマートフォン
======================================== */

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

	.news_list_wrap {
		width: 100%;
		padding: 0 12px;

		display: block;
		box-sizing: border-box;
	}

	.news_list_wrap dl {
		width: 100%;
		height: auto;
		min-height: 145px;

		padding: 10px 0 20px;

		grid-template-columns: 115px minmax(0, 1fr);
		grid-template-rows: 20px auto;

		column-gap: 10px;

		border-left: none !important;
		border-bottom: 1px solid #999;
		margin: 0;
	}

	.news_list_wrap dl:last-child {
		border-bottom: none;
	}

	.news_list_wrap dl>dt.icon {
		width: 115px;
		height: 115px;
	}

	.news_list_wrap dl>dt.icon img {
		width: 115px;
		height: 115px;
	}

	.news_list_wrap dl>dd>a:first-child {
		font-size: 1.5em;
	}

	.news_list_wrap dl>dd p {
		font-size: 1.4em;
	}

	.news_list_wrap dl>dd>a:last-child {
		font-size: 9px;
	}
}


/* ========================================
   SP
======================================== */

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

	.news_list_wrap {
		padding: 0 12px;
	}

	.news_list_wrap dl {
		grid-template-columns: 115px minmax(0, 1fr);
		column-gap: 10px;
	}

	.news_list_wrap dl>dd {
		min-width: 0;
	}

	.news_list_wrap dl>dd>a:first-child {
		font-size: 1.5em;
		line-height: 1.35;
	}

	.news_list_wrap dl>dd p {
		font-size: 1.4em;
		line-height: 1.4;
	}

	.news_list_wrap dl>dd>a:last-child {
		font-size: 1.2em;
		line-height: 1.35;
	}
}