@charset "utf-8";

@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}
@media only screen and (max-width:374px) {}



/* ==================================================
営業カレンダー
================================================== */

#nutsCalendarGrid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	column-gap: 25px !important;
	row-gap: 30px !important;
	width: 95% !important;
	max-width: none !important;
	margin: auto !important;
	padding: 0 !important;
	box-sizing: border-box !important;
}


/* カレンダー */

#nutsCalendarGrid > .nutsCalendarItem {
	display: block !important;
	float: none !important;
	clear: none !important;

	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;

	margin: 0 !important;
	padding: 0 !important;

	background: #fff;

	box-sizing: border-box !important;
}


/* ========================================
店舗名タイトル
======================================== */

#nutsCalendarGrid > .nutsCalendarItem > h3 {

	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 50px;
	margin: 0 !important;/*0 0 12px*/
	padding: 10px 15px !important;
	background: #f7f7f7;
	border-top: 3px solid #ef7b23;
	border-bottom: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
	box-sizing: border-box;
}
/* 店舗名の前のグリーンマーク */

#nutsCalendarGrid > .nutsCalendarItem > h3::before {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	margin-right: 10px;
	background: #70a53b;
	transform: rotate(45deg);
	flex-shrink: 0;
}


/* iframe */

#nutsCalendarGrid > .nutsCalendarItem > iframe {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	height: 370px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-sizing: border-box !important;
}


/* ==================================================
991px以下
3列
================================================== */

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

	#nutsCalendarGrid {
		grid-template-columns:
			repeat(3, minmax(0, 1fr)) !important;
	}

}


/* ==================================================
767px以下
2列
================================================== */

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

	#nutsCalendarGrid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr)) !important;

		column-gap: 20px !important;
		row-gap: 25px !important;
	}

}


/* ==================================================
550px以下
1列
================================================== */

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

	#nutsCalendarGrid {
		grid-template-columns:
			minmax(0, 1fr) !important;

		row-gap: 30px !important;
	}

}