@charset "UTF-8";

/**
 * CFLCalendar
 * カレンダーを表示するCSS
 * Ver.1.0.1 2017.01.06 ashizawa ・手前に表示されるように変更 ・JS内でクラス名が可変なので、スタイルでも簡単に変えられるように変数で宣言
 * Ver.1.0.0 2017.01.04 ashizawa
 */
.calendar {
	left: 0;
	right: 0;
	margin: -72px 0 0 -60px;
	text-align: center;
	z-index: 999;
}

.calendar .close {
	max-height: 0 !important;
	padding-bottom: 0 !important;
}

.calendar .inner_calendar {
	background: #fff;
	width: 334px;
	max-height: 440px;
	position: absolute;
	padding: 24px 8px;
	transition: 0.5s;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.10);
}

.calendar .inner_calendar .calendar_title {
	background: #ffffff;
	text-align: center;
	padding: 0 0 16px;
	font-weight: bold;
	font-size: 16px;
	color: #000000;
}

.calendar .inner_calendar .calendar_month_prev,
.calendar .inner_calendar .calendar_month_next {
	cursor: pointer;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 20px;
}

/* .calendar .inner_calendar .calendar_month_prev:after,
.calendar .inner_calendar .calendar_month_next:after {
	width: 100%;
	height: 100%;
	line-height: 30px;
	text-align: center;
	color: white;
} */

.calendar .inner_calendar .calendar_month_prev {
	background: url(../img/icon/calendar_prev.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	left: 28px;
}

/* .calendar .inner_calendar .calendar_month_prev:after {
    content: '\2190';
} */

.calendar .inner_calendar .calendar_month_next {
	background: url(../img/icon/calendar_next.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	right: 28px;
}

/* .calendar .inner_calendar .calendar_month_next:after {
    content: '\2192';
} */

.calendar .inner_calendar .calendar_main {
	width: 95%;
	margin: auto;
	border-collapse: collapse;
	border-spacing: 0;
}

.calendar .inner_calendar .calendar_main .calendar_header {
}

.calendar .inner_calendar .calendar_main th,
.calendar .inner_calendar .calendar_main td {
	text-align: center;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	font-weight: bold;
	cursor: default;
}

.calendar .inner_calendar .calendar_main td {
	cursor: pointer;
	font-weight: normal;
}

.calendar .inner_calendar .calendar_main td:hover {
	text-decoration: none;
	color: #cccccc;
}

.calendar .inner_calendar .calendar_main .week_0 {
	color: #CB1818;
}

.calendar .inner_calendar .calendar_main .week_6 {
	color: #202FBA;
}

.calendar .inner_calendar .calendar_choice_month {
	cursor: pointer;
	width: 192px;
	height: 40px;
	line-height: 40px;
	background-color: #fff;
	margin: auto;
	font-size: 12px;
	font-weight: normal;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
	border-radius: 8px;
}

.calendar .inner_calendar .calendar_clear {
	cursor: pointer;
	padding-top: 17px;
	text-decoration: underline;
	font-size: 14px;
	color: #000000;
}

/* モバイル用スタイル */
@media screen and (max-width: 1024px) {
	.calendar {
		width: 80%;
		margin: -50px 0 0 -60px;
	}

	.calendar .close {
		margin-top: 0 !important;
	}

	.calendar .inner_calendar {
		width: 100%;
	}
}

/* PC用スタイル */
@media screen and (min-width: 641px) {
	.calendar {
		width: 1000px;
	}

	.calendar .inner_calendar {
		width: 334px;
	}
}