@charset "UTF-8";

html {
	overflow: visible;
}

body {
	background-image: none;
}

select {
	appearance: auto;
}

.content {
	display: flex;
}

.content::before {
	content: "";
	position: absolute;
	z-index: -1;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	width: 160px;
	background: #D4CFC7;
}

@media screen and (max-width: 768px) {
	.content {
		display: block;
	}
	.content::before {
		display: none;
	}
}

.content-left {
	width: 160px;
	min-width: 160px;
	padding: 30px 20px;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.content-left {
		width: auto;
		min-width: auto;
		padding: 30px 15px;
		background: #D4CFC7;
	}
}

.content-right {
	width: 100%;
	padding: 30px 50px;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.content-right {
		width: 100%;
		padding: 30px 15px;
	}
}

.menu {
	text-align: center;
}

.menu li {
	margin-bottom: 8px;
	box-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
	.menu {
		margin: 0 0 -3% -3%;
		display: flex;
		flex-wrap: wrap;
	}
	.menu li {
		margin: 0 0 3% 3%;
		width: 47%;
	}
}

.menu li a {
	display: block;
	padding: 8px;
	background: #FFF;
	color: #333;
	text-decoration: none;
}

.menu li a:hover {
	opacity: 0.8;
}

.menu li.active {
	display: block;
	padding: 8px;
	background: #000;
	font-weight: bold;
	color: #A8935E;
	box-sizing: border-box;
}

.calendar-header {
	position: relative;
	margin-bottom: 10px;
}

.title-yearmonth {
	font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 20px;
	line-height: 34px;
}

.arrow-prev {
	position: absolute;
	top: 0;
	right: 45px;
}

.arrow-prev a {
	display: block;
	background: #000;
	width: 34px;
	height: 34px;
	border-radius: 34px;
	font-size: 0;
}

.arrow-prev a::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 14px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(-135deg);
}

.arrow-prev a:hover {
	opacity: 0.8;
}

.arrow-next {
	position: absolute;
	top: 0;
	right: 0;
}

.arrow-next a {
	display: block;
	background: #000;
	width: 34px;
	height: 34px;
	border-radius: 34px;
	font-size: 0;
}

.arrow-next a::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 14px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
}

.arrow-next a:hover {
	opacity: 0.8;
}

.title-underline {
	margin-bottom: 30px;
	padding-bottom: 5px;
	font-size: 20px;
	line-height: 1.5;
	font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
	.title-underline {
		margin-bottom: 20px;
	}
}

.table-calendar {
	width: 100%;
	border-collapse: collapse;
	background: #FFF;
}

.table-calendar th {
	padding: 7px;
	border: 1px solid #D6CFC5;
	background: #F2F0EA;
	text-align: center;
}

.table-calendar td {
	padding: 12px;
	border: 1px solid #D6CFC5;
	vertical-align: top;
}

@media screen and (max-width: 768px) {
	.table-calendar th {
		padding: 4px;
	}
	.table-calendar td {
		padding: 4px;
	}
	.table-calendar td button {
		padding: 0;
		line-height: 1.2;
	}
}

.day {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.1;
}

@media screen and (max-width: 768px) {
	.day {
		margin-bottom: 6px;
	}
}

.date {
	text-align: center;
}

.color-red {
	color: #F00;
}

.color-blue {
	color: #004EEB;
}

.bgcolor-lightred {
	background-color: #FFEEF0;
}

.bgcolor-lightblue {
	background-color: #E0F2FF;
}

.soldout {
	font-size: 22px;
	line-height: 1;
	color: #F00;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.soldout {
		font-size: 18px;
	}
}
