/*===============================
MVのカレンダー
===============================*/
#mv_bottom_cal_wrap {
	width: 100%;
	max-width: 4.00rem;
	position: absolute;
	top: 50%;
	right: 0.60rem;
	transform: translateY(-50%);
	background-color: #FFF;
	padding: 0.20rem;
	border-radius: 0.10rem;
}

@media screen and (max-width: 599px) {
	#mv_bottom_cal_wrap {
		position: relative;
		padding: 0.30rem 0.20rem;
		top: auto;
		right: auto;
		transform: none;
		box-sizing: border-box;
		border-radius: 0;
		border-bottom: 1px solid #DDD;
		max-width: 100%;
	}
}

/* 月ごと */
#mv_bottom_cal_wrap .cal_box {
	position: relative;
}

/* 年月 */
#mv_bottom_cal_wrap .cal_box .cal_title {
	font-size: 0.20rem;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.075em;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#mv_bottom_cal_wrap .cal_box .cal_title {
		font-size: 0.16rem;
	}
}

/* 月送りのリンク */
#mv_bottom_cal_wrap .cal_prev {
	position: absolute;
	left: 0;
	top: 0.04rem;
	z-index: 1;
	width: 0.30rem;
	height: 0.16rem;
	background-image: url(../common/img/slider_prev_icon.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	transition: all 0.3s;
}

#mv_bottom_cal_wrap .cal_prev:hover {
	opacity: 0.7;
	left: -0.04rem;
}

#mv_bottom_cal_wrap .cal_next {
	position: absolute;
	right: 0;
	top: 0.04rem;
	z-index: 1;
	width: 0.30rem;
	height: 0.16rem;
	background-image: url(../common/img/slider_next_icon.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	transition: all 0.3s;
}

#mv_bottom_cal_wrap .cal_next:hover {
	opacity: 0.7;
	right: -0.04rem;
}

/*ここからループさせないときの指定例*/
#mv_bottom_cal_wrap .cal_prev.slick-disabled,
#mv_bottom_cal_wrap .cal_next.slick-disabled {
    opacity: 0.3;
	filter:grayscale(100%);
}

#mv_bottom_cal_wrap .cal_prev.slick-disabled:hover {
    opacity: 0.3;
	left: 0;
}

#mv_bottom_cal_wrap .cal_next.slick-disabled:hover {
    opacity: 0.3;
	right: 0;
}

/* ドット有効時 */
#mv_bottom_cal_wrap .slick-dotted.slick-slider {
	margin-bottom: 0.20rem;
}

/* カレンダーテーブル */
#mv_bottom_cal_wrap table {
	width: 100%;
	text-align: center;
	font-size: 0.16rem;
	border-collapse: collapse;
	font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 599px) {
#mv_bottom_cal_wrap table {
	font-size: 0.14rem;
}
}

#mv_bottom_cal_wrap table th {
	padding: 0.10rem;
	border-bottom: 1px solid #666;
	font-size: 0.15rem;
}

@media screen and (max-width: 599px) {
#mv_bottom_cal_wrap table th {
	font-size: 0.14rem;
	padding: 0.06rem
}
}

#mv_bottom_cal_wrap table td {
	padding: 0.15rem 0;
	border-bottom: 3px solid #FFF;
}

@media screen and (max-width: 599px) {
#mv_bottom_cal_wrap table td {
	padding: 0.08rem 0;
	border-bottom: 2px solid #FFF;
}
}

/* 日曜日 */
#mv_bottom_cal_wrap table .sun {
	color: #c1272d;
}

/* 土曜日 */
#mv_bottom_cal_wrap table .sat {
	color: #0071bc;
}

/* イベント01（自然からの贈り物）*/
#mv_bottom_cal_wrap table .event01 {
	background-color: #FFBDD5;
	color: #c1272d;
}

/* イベント02（自然からの贈り物）*/
#mv_bottom_cal_wrap table .event02 {
	background-color: #FCE57C;
	color: #c1272d;
}

/* イベント02（自然からの贈り物）*/
#mv_bottom_cal_wrap table .event01-02 {
	background: linear-gradient(135deg, #ffbdd5 0%,#ffbdd5 50%,#fce57c 50%,#fce57c 100%);
	color: #c1272d;
}

/* 凡例 */
.calendar_event_caption {
	padding-top: 0.15rem;
}

.calendar_event_caption .list {
	display: block;
}

.calendar_event_caption .list .detail {
	font-size: 0.14rem;
	line-height: 1.5;
}

@media screen and (max-width: 599px) {
	.calendar_event_caption .list .detail {
		font-size: 0.13rem;
		letter-spacing: 0;
	}
}

.calendar_event_caption .list .detail span {
	font-size: 0.12rem;
}
@media screen and (max-width: 599px) {
	.calendar_event_caption .list .detail span {
		font-size: 0.10rem;
	}
}

.calendar_event_caption .list .detail::before {
	content: "";
	width: 0.13rem;
	height: 0.13rem;
	display: inline-block;
	margin-right: 0.06rem;
	position: relative;
	top: 0.02rem;
}

.calendar_event_caption .list .detail.event01::before {
	background-color: #FFBDD5;
}

.calendar_event_caption .list .detail.event02::before {
	background-color: #FCE57C;
}

.calendar_event_caption .list .detail.event01-02::before {
	background: linear-gradient(to bottom, #ffbdd5 0%,#ffbdd5 50%,#fce57c 50%,#fce57c 100%);
}

.calendar_event_caption .caption {
	font-size: 0.12rem;
	line-height: 1.5;
	padding-top: 0.10rem;
	text-indent: -0.13rem;
	margin-left: 0.13rem;
}

@media screen and (max-width: 599px) {
	.calendar_event_caption .caption {
		font-size: 0.11rem;
		text-indent: -0.12rem;
		margin-left: 0.12rem;
	}
}