@charset "UTF-8";
a:hover {
	text-decoration:none;
}
#contents.calendar {
	width:100%;
	margin:0;
}
.flexbox {
	display:flex;
	flex-wrap:wrap;
}
.flexbox_detail {}
.calendar_heading {
	font-size:50px;
	font-weight:bold;
	font-family:serif;
	text-align:center;
	margin:0 auto;
	padding:60px 0;
}
.calendar_content_list {}
.calendar_content_item {
	width:33.33333333%;
}
.calendar_content_item:nth-of-type(n+10) {
	display:none;
}

.calendar_content_link {
	display:block;
}
.calendar_content_photo {
	overflow:hidden;
}
.calendar_content_image {
	width:100%;
	height:auto;
}
.calendar_content_item .calendar_content_image {
	transition:ease 250ms all;
	transform:scale(1.5,1.5);
	margin:0 auto;
}
.calendar_content_item .calendar_content_image:hover {
	transform:scale(1,1);
}
.calendar_content_info {
	text-align:center;
}
.calendar_content_photo + .calendar_content_info {
	margin-top:10px;
}
.calendar_content_info {
	margin:10px auto 30px;
}
.calendar_content_title,
.calendar_content_artist {
	font-size:16px;
}
.calendar_content_lead,
.calendar_content_details,
.calendar_content_desc {
	display:none;
}
.calendar_content_title + .calendar_content_artist {
	margin-top:5px;
}

.calendar_more {
	text-align:center;
	padding:10px 0 40px;
}
.calendar_more a {
	display:inline-block;
}
.calendar_more_text {
	font-size:16px;
	border-bottom:1px solid #000;
}
.js_viewContentItem.js_active {
	display:block;
}

.pop_calendar {
	display: none;
	width: 900px;
	background: #fff;
	opacity:0;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10000;
}
.pop_calendar .popup_top_close {
	display:block;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
}
.button_popup_top_close {
	display: inline-block;
	width: 26px;
	height: 26px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.button_popup_top_close:before {
	content:"";
	width:26px;
	height:2px;
	background:#000;
	position:absolute;
	top:50%;
	left:0px;
	transform:rotate(135deg);
}
.button_popup_top_close:after {
	content:"";
	width:26px;
	height:2px;
	background:#000;
	position:absolute;
	top:50%;
	left:0px;
	transform:rotate(45deg);
}
.pop_calendar .popup_bottom_close {
	text-align: center;
	padding: 2rem;
	background-color: #fff;
	position: relative;
}
.pop_calendar .popup_bottom_close:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #e5e5e5;
}
.button_popup_bottom_close {
	display: inline-block;
	width: 208px;
	font-size: 1.6rem;
	text-align: center;
	cursor: pointer;
	padding: 17px 10px;
	position: relative;
	background-color: #67696a;
	border-radius: 3px;
}
.button_popup_close_text {
	display: inline-block;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	position: relative;
}
.popup_navi_prev,
.popup_navi_next {
	display: block;
	width: 50px;
	height: 50px;
	outline: none;
	text-decoration: none;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background-color: rgba(255,255,255,0);
	position: absolute;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%);
	cursor: pointer;
}
.popup_navi_prev {
	left: -50px;
}
.popup_navi_prev:after {
	content: "";
	width: 22px;
	height: 22px;
	margin-top: -11px;
	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;
	transform: rotate(-135deg);
	position: absolute;
	top: 50%;
	left: 20px;
}
.popup_navi_next {
	right: -50px;
}
.popup_navi_next:after {
	content: "";
	width: 22px;
	height: 22px;
	margin-top: -11px;
	border-top: 2px solid #ccc;
	border-left: 2px solid #ccc;
	transform: rotate(135deg);
	position: absolute;
	top: 50%;
	right: 20px;
}
.pop_calendar_title {
	color: #000;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	padding: 2rem;
}
.pop_calendar_lead {
	color: #000;
	font-size: 1.25rem;
	line-height: 1.6;
	padding: 0rem 2rem 2rem 2rem;
}
.pop_calendar_detail {
	color: #000;
	font-size: 1.25rem;
	line-height: 1.6;
	padding: 2rem;
}
.calendar-mask {
	background-color: #000000;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: 1301;
}