@charset "UTF-8";

#program_calendar .prev_next_month {
	background: #004098;
	border-radius: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-js-display: flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 35px;
}
#program_calendar .prev_next_month span {
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: relative;
	display: inline-block;
	padding: 23px 15px 23px 15px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
#program_calendar .prev_next_month span:hover {
	color: #6dcdff;
}
#program_calendar .prev_next_month span:before {
	content: '';
	width: 35px;
	height: 35px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: -2px;
	bottom: 0;
	margin: auto;
	transition-duration: .3s;
	-moz-transition-duration: .3s;
	-webkit-transition-duration: .3s;
}
#program_calendar .prev_next_month span:hover:before {
	background: #6dcdff;
}
#program_calendar .prev_next_month span:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 11px;
	height: 11px;
	border-top: 1px solid #004098;
}
#program_calendar .prev_next_month span.prev_month {
	padding-left: 65px;
}
#program_calendar .prev_next_month span.prev_month:before {
	left: 20px;
}
#program_calendar .prev_next_month span.prev_month:after {
	border-left: 1px solid #004098;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	left: 35px;
}
#program_calendar .prev_next_month span.next_month {
	padding-right: 65px;
}
#program_calendar .prev_next_month span.next_month:before {
	right: 20px;
}
#program_calendar .prev_next_month span.next_month:after {
	border-right: 1px solid #004098;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	right: 35px;
}
#program_calendar .prev_next_month span.disabled {
	opacity: 0.3;
	cursor: default;
	pointer-events:none;
}
#program_calendar .slick-slide {
	padding: 0 25px;
}
#program_calendar .month_container {
	margin: 0 -25px;
	padding-bottom: 40px;
	justify-content: space-between;
}
#program_calendar .month h3 {
	font-size: 20px;
	font-weight: bold;
	color: #004098;
	margin-bottom: 8px;
}
#program_calendar .month h3 .month_num {
	font-size: 30px;
}
#program_calendar .calendar_table {
	width: 100%;
	text-align: center;
	border-spacing: 3px;
	border-collapse: separate;
}
#program_calendar .calendar_table th {
	width: 65px;
	font-size: 12px;
	font-weight: bold;
	background: #004098;
	color: #fff;
	border-radius: 50px;
	text-align: center;
}
#program_calendar .calendar_table th:first-child {
	background: #d2285c;
}
#program_calendar .calendar_table td {

	background: #e3edf0;
	border-radius: 10px;

}
#program_calendar .calendar_table td a {
	color: #000;
	font-size: 18px;
	padding: 31px 0;
	text-underline-offset: 3px;
	display: block;
	position: relative;
}
#program_calendar .calendar_table td a.holiday .num {
	color: #fff;
}
#program_calendar .calendar_table td a .num {
	text-decoration: underline;
}
#program_calendar .calendar_table td a .hd_hotel,
#program_calendar .calendar_table td a .hd_aq {
	bottom: 4px;
	width: 22px;
	height: 22px;
	display: block;
	padding-top: 1px;
	font-size: 11.5px;
	text-align: center;
	position: absolute;
	border: 2px solid #d2285c;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#program_calendar .calendar_table td a .hd_hotel {
	left: 8px;
	color: #d2285c;
	background-color: #fff;
}
#program_calendar .calendar_table td a .hd_aq {
	right: 8px;
	color: #fff;
	background-color: #d2285c;
}
#program_calendar .calendar_table td a .hd_hotel span,
#program_calendar .calendar_table td a .hd_aq span {
	display: none;
}
#program_calendar .calendar_table td .empty {
	height: 1.5em;
	display: block;
	font-size: 18px;
	padding: 31px 0;
	box-sizing: content-box;
}
#program_calendar .schedule_time_list {
	margin-top: 15px;
	margin-bottom: 5px;
	padding: 10px 22px;
	border: 2px solid #b3d2db;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}
#program_calendar .schedule_time_list ul {
	font-size: 0;
}
#program_calendar .schedule_time_list ul li {
	font-size: 14px;
	padding-left: 16px;
	margin-right: 31px;
	position: relative;
	display: inline-block;
}
#program_calendar .schedule_time_list ul li i {
	display: inline-block;
	width: 8px;
	height: 0;
	padding-top: 8px;
	position: absolute;
	top: -2px;
	bottom: 0;
	left: 0;
	margin: auto;
	overflow: hidden;
}
#program_calendar .calendar_table td.a_time {
	background: #42d5ff;
}
#program_calendar .calendar_table td.b_time {
	background: #3bbda5;
}
#program_calendar .calendar_table td.b_time_ar {
	background: #89cb5f;
}
#program_calendar .calendar_table td.c_time {
	background: #e5d067;
}
#program_calendar .calendar_table td.d_time {
	background: #f7a17e;
}
#program_calendar .calendar_table td.e_time {
	background: #ef787e;
}
#program_calendar .calendar_table td.s_time {
	background: #d3a7e2;
}
#program_calendar .calendar_table td.ss_time {
	background: #6d7fe5;
}
#program_calendar .calendar_table td.p_time {
	background: #888888;
}
#program_calendar .calendar_table td.p_time a {
	color: #fff;
}
#program_calendar .schedule_time_list ul li.a_time:before {
	background: #42d5ff;
}
#program_calendar .schedule_time_list ul li.b_time:before {
	background: #3bbda5;
}
#program_calendar .schedule_time_list ul li.b_time_ar:before {
	background: #89cb5f;
}
#program_calendar .schedule_time_list ul li.c_time:before {
	background: #e5d067;
}
#program_calendar .schedule_time_list ul li.d_time:before {
	background: #f7a17e;
}
#program_calendar .schedule_time_list ul li.e_time:before {
	background: #ef787e;
}
#program_calendar .schedule_time_list ul li.s_time:before {
	background: #d3a7e2;
}
#program_calendar .schedule_time_list ul li.ss_time:before {
	background: #6d7fe5;
}
#program_calendar .schedule_time_list ul li.p_time:before {
	background: #888888;
}
.modal__bg {
	background: rgba(0,64,152,0.8);
	height: 100vh;
	position: relative;
	width: 100%;
}
.modal__bg:before {
	content: '';
	width: 70px;
	height: 70px;
	background: #004098;
	position: absolute;
	top: 145px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	transform: translateX(465px);
	cursor: pointer;
}
.modaal-container {
	box-shadow: none !important;
}
.modaal-container .modaal-content-container {
	padding-left: 0;
	padding-right: 0;
}
.modaal-content-container .close {
	width: 70px;
	height: 70px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
	cursor: pointer;
	background: #004098;
}
.modaal-content-container .close:before, .modaal-content-container .close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px; /* 棒の幅（太さ） */
	height: 30px; /* 棒の高さ */
	background: #fff;
}
.modaal-content-container .close:before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.modaal-content-container .close:after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.modaal-content-container .print {
	width: 70px;
	height: 70px;
	position: absolute;
	top: 70px;
	right: 0;
	z-index: 2;
	display: block;
	cursor: pointer;
	background: #e0eaee;
	margin-top: 0;
	text-align: center;
}
.modaal-content-container .print a {
	font-size: 11px;
	font-weight: bold;
	color: #004098;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	text-decoration: none;
	padding-top: 42px;
	position: relative;
}
.modaal-content-container .print a:before {
	content: "";
	width: 24px;
	height: 26px;
	background-image: url(/resources/images/print_icon.svg);
	background-size: 100%;
	position: absolute;
	top: -18px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}
.modaal-container {
	background: none !important;
}
.modaal-content-container {
	padding: 0;
}
.modal__content {
	width: 1000px;
	background: #fff;
	position: relative;
	box-sizing: border-box;
	padding: 46px 40px 115px;
	margin-top: 60px;
}
.modal__content h4 {
	font-size: 30px;
	font-weight: bold;
	color: #004098;
	text-align: center;
	margin-bottom: 69px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	position: relative;
}
.modal__content h4:after {
	content: '';
	width: 104px;
	height: 24px;
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: auto;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(../../resources/images/wave_skyblue.svg);
}
.modal__content h4 .year_txt {
	font-size: 24px;
}
.modal__content h4 .month_day_num_txt {
	font-size: 40px;
}
.modal__content h4 .month_day_txt {
	font-size: 24px;
}
.modal__content .category_list {
	width: 920px;
	margin: 0 auto;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-js-display: flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.modal__content .category_list li {
	width: 300px;
	display: inline-block;
	background: #004098;
	border-radius: 60px;
	margin-left: 10px;
	margin-bottom: 10px;
	position: relative;
}
.modal__content .category_list li:hover {
	background: #155cbe;
}
.modal__content .category_list li.category_bus {
	background: #6dcdff;
}
.modal__content .category_list li.category_bus:hover {
	background: #70d8ff;
}
.modal__content .category_list li:before {
	content: '';
	width: 43px;
	height: 43px;
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 11px;
	margin: auto;
}
.modal__content .category_list li.category_parformance:before {
	background-image: url(../../resources/images/event/program_parformance_icon.svg);
}
.modal__content .category_list li.category_feeding:before {
	background-image: url(../../resources/images/event/program_feeding_icon.svg);
}
.modal__content .category_list li.category_pelican:before {
	background-image: url(../../resources/images/event/program_pelican_icon.svg);
}
.modal__content .category_list li.category_discovery:before {
	background-image: url(../../resources/images/event/program_discovery_icon.svg);
}
.modal__content .category_list li.category_bus:before {
	background-image: url(../../resources/images/event/program_bus_icon.svg);
}
.modal__content .category_list li:nth-child(3n + 1) {
	margin-left: 0;
}
.modal__content .category_list li:after {
	content: "";
	position: absolute;
	top: -6px;
	bottom: 0;
	right: 21px;
	margin: auto;
	width: 9px;
	height: 9px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
}
.modal__content .category_list li a {
	min-height: 60px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	display: block;
	text-align: left;
	padding: 18px 0 0 63px;
	box-sizing: border-box;
	position: relative;
	text-decoration: none;
}
.modal__content .category_list li.category_feeding a,
.modal__content .category_list li.category_discovery a{
	line-height: 19px;
	padding-top: 12px;
}
.modal__content .category_list li.category_bus a {
	color: #004098;
}
.english .modal__content .category_list li.category_bus a {
	padding-top: 10px;
}
.english .modal__content .category_list li.category_discovery a {
	padding-top: 7px;
}
.english .modal__content .category_list li.category_feeding a,
.tchinese .modal__content .category_list li.category_feeding a,
.schinese .modal__content .category_list li.category_feeding a,
.korean .modal__content .category_list li.category_feeding a {
	padding-top: 22px;
}
.modal__content .category_list li a .means {
	font-size: 12px;
	font-weight: normal;
}
.modal__content .open {
	color: #004098;
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
	text-align: center;
	margin: -1em auto 2em;
}
.modal__content .open span {
	color: #000;
	display: block;
	font-size: 20px;
}
.modal__content h5 {
	font-size: 18px;
	font-weight: bold;
	color: #004098;
	border-bottom: 2px solid #e5e5e5;
	position: relative;
	padding: 9px 0 0 20px;
	margin-top: 47px;
	margin-bottom: 29px;
	height: 48px;
	box-sizing: border-box;
}
.modal__content h5:before {
	content: '';
	width: 5px;
	height: 48px;
	background: #004098;
	position: absolute;
	top: 0;
	left: 0;
}
.modal__content table {
	width: 850px;
	border-top: 2px solid #004098;
	border-bottom: 2px solid #004098;
	margin: 0 auto;
}
.modal__content table th {
	width: 120px;
	background: #004098;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding: 14px;
	box-sizing: border-box;
}
.modal__content table td {
	width: 180px;
	color: #004098;
	font-size: 14px;
	text-align: center;
	border-right: 1px solid #c9c9c9;
	border-bottom: 1px solid #004098;
	box-sizing: border-box;
	padding: 14px 20px;
	min-height: 45px;
}
.modal__content table td:first-child {
	background: #e3edf0;
}
.modal__content table.parformance_table td {
	padding: 0 20px;
}
.modal__content table.parformance_table td:nth-child(odd) {
/*	background: #fff;*/
}
.modal__content table.parformance_table td:nth-child(even) {
	background: #e3edf0;
}
.modal__content table td:last-child {
	border-right: none;
}
.modal__content table td time {
	color: #333;
	margin-left: 10px;
}
.modal__content table td time:first-child {
	margin-left: 0;
}
.modal__content table.parformance_table .place td {
	background: #6dcdff;
	border-right: 1px solid #fff;
}
.modal__content table .place td:last-child {
	border-right: none;
}
.modal__content table .program td {
	font-size: 14px;
	font-weight: bold;
	padding: 5px 0;
}
.modal__content table .program td img {
	width: 93px;
	margin-top: 5px;
	border-radius: 46% 54% 41% 59% / 54% 40% 60% 46%;
}
.modal__content table td a {
	color: #004098;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.modal__content table.parformance_table tbody td {
	font-size: 24px;
	color: #004098;
}
.modal__content table.feeding_table thead th,
.modal__content table.pelican_table thead th,
.modal__content table.discovery_table thead th,
.modal__content table.bus_table thead th {
	border-right: 1px solid #fff;
	border-bottom: none;
}
.modal__content table.feeding_table thead th:last-child,
.modal__content table.pelican_table thead th:last-child,
.modal__content table.discovery_table thead th:last-child {
	border-right: none;
}
.modal__content table.feeding_table tbody td,
.modal__content table.discovery_table tbody td {
	text-align: left;
}
.modal__content table.feeding_table tbody td:nth-child(1),
.modal__content table.pelican_table tbody td:nth-child(1),
.modal__content table.discovery_table tbody td:nth-child(1) {
	font-weight: bold;
}
.modal__content table.feeding_table tbody td:nth-child(2),
.modal__content table.discovery_table tbody td:nth-child(2) {
	background: #6dcdff;
	color: #004098;
}
.modal__content table.feeding_table tbody td:nth-child(3),
.modal__content table.discovery_table tbody td:nth-child(3) {
	text-align: center;
}
.modal__content p {
	font-size: 14px;
	width: 850px;
	margin: 0 auto;
	margin-top: 15px;
	line-height: 2.14;
}
.modal__content p + p {
	margin-top: 0;
}
.modal__content p a {
	color: #333;
	text-decoration: underline;
	text-underline-offset: 3px;
	display: inline-block;
}
.modal__content p a:hover {
	opacity: 0.7;
}
.modal__content .closed_area p,
.modal__content .closed_area ul {
	font-size: 14px;
	line-height: 1.5;
}
.modal__content .closed_area > div {
	margin: 8px 0;
	border-radius: 5px;
	background: #eaeaea;
	padding: 30px 40px 60px;
}
.modal__content .closed_area > div h5 {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	display: inline-block;
	padding: 10px 2em;
	margin-top: 0;
	margin-bottom: 30px;
	border-radius: 50px;
}
.modal__content .closed_area > div h5:before {
	content: none;
}
.modal__content .closed_area > div h6 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}
.modal__content .closed_area > div.sea_closed h5 { background: #004098; }
.modal__content .closed_area > div.sea_closed h6 { color: #004098; }
.modal__content .closed_area > div.hotel_closed h5 { background: #af9358; }
.modal__content .closed_area > div.hotel_closed h6 { color: #af9358; }
.modal__content .closed_area .mb-40 {
	margin-bottom: 40px;
}
.modal__content .closed_area + .category_list {
	margin-top: 70px;
}
@media screen and (max-height: 1000px) and (min-width: 769px){
	.modal.js-modal {
		margin-top: 55px;
	}
}
@media (max-width: 768px){
	/*カレンダーモーダルここから*/
	#program_calendar .prev_next_month {
		border-radius: 50px;
		margin-bottom: 22px;
	}
	#program_calendar .prev_next_month span {
		font-size: 12px;
		padding: 14px 15px 13px 15px;
	}
	#program_calendar .prev_next_month span:before {
		width: 26px;
		height: 26px;
		top: -2px;
		bottom: 0;
		margin: auto;
	}
	#program_calendar .prev_next_month span:after {
		width: 9px;
		height: 9px;
		border-top: 1px solid #004098;
	}
	#program_calendar .prev_next_month span.prev_month {
		padding-left: 47px;
	}
	#program_calendar .prev_next_month span.prev_month:before {
		left: 12px;
	}
	#program_calendar .prev_next_month span.prev_month:after {
		left: 23px;
	}
	#program_calendar .prev_next_month span.next_month {
		padding-right: 47px;
	}
	#program_calendar .prev_next_month span.next_month:before {
		right: 12px;
	}
	#program_calendar .prev_next_month span.next_month:after {
		right: 23px;
	}
	#program_calendar .month_container {
		padding: 0 0 11px;
		display: block;
	}
	#program_calendar .month h3 {
		font-size: 14px;
		margin-bottom: 3px;
	}
	#program_calendar .month h3 .month_num {
		font-size: 22px;
	}
	#program_calendar .calendar_table th {
		width: 100px;
		font-size: 10px;
		border-radius: 6px;
	}
	#program_calendar .calendar_table td {
		border-radius: 6px;
	}
	#program_calendar .calendar_table td a {
		font-size: 14px;
		padding: 20px 0;
		text-underline-offset: 2px;
	}
	#program_calendar .calendar_table td .empty {
		font-size: 14px;
		padding: 20px 0;
	}
	#program_calendar .schedule_time_list {
		margin-bottom: 15px;
	}
	#program_calendar .schedule_time_list ul {
		font-size: 0;
	}
	#program_calendar .schedule_time_list ul li {
		font-size: 10px;
		padding-left: 16px;
		margin-right: 13px;
	}
	#program_calendar .schedule_time_list ul li:before {
		width: 6px;
		height: 6px;
		top: -2px;
		left: 4px;
	}
	#program_calendar .calendar_table td a .hd_aq {
		right: 2px;
	}
	#program_calendar .calendar_table td a .hd_hotel {
		left: 2px;
	}
	.modaal-content-container .close {
		top: 0;
		right: 0;
		z-index: 2;
		width: 45px;
		height: 45px;
	}
	.modaal-content-container .close:before, .modaal-content-container .close:after {
		right: 45%;
		width: 2px;
		height: 20px;
	}
	.modaal-content-container .print {
		width: 45px;
		height: 45px;
		top: 45px;
	}
	.modaal-content-container .print a {
		font-size: 9px;
		padding-top: 25px
	}
	.modaal-content-container .print a:before {
		content: "";
		width: 19px;
	    height: 21px;
	    top: -15px;
	    background-repeat: no-repeat;
	}
	.modal__content{
		width: auto;
		padding: 23px 20px 70px;
		margin-top: 20px;
	}
	.modal__content h4 {
		font-size: 24px;
		text-align: center;
		margin-bottom: 50px;
		line-height: 1.2;
	}
	.modal__content h4:after {
		width: 78px;
		height: 18px;
		bottom: -30px;
	}
	.modal__content h4 .year_txt {
		font-size: 24px;
	}
	.modal__content h4 .month_day_num_txt {
		font-size: 32px;
	}
	.modal__content h4 .month_day_txt {
		font-size: 24px;
	}
	.modal__content .category_list {
		width: 100%;
	}
	.modal__content .category_list li {
		width: 100%;
		border-radius: 8px;
		margin-left: 0;
		margin-bottom: 9px;
		vertical-align: middle;
	}
	.modal__content .category_list li:before {
		width: 32px;
		height: 32px;
		left: 11px;
	}
	.modal__content .category_list li:nth-child(3n + 1) {
		margin-left: 0;
	}
	.modal__content .category_list li:after {
		top: -6px;
		right: 21px;
		width: 9px;
		height: 9px;
	}
	.modal__content .category_list li a {
		min-height: 50px;
		font-size: 11px;
		padding: 0 25px 0 55px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		line-height: 1.181;
	}
	.modal__content .category_list li.category_feeding a,
	.modal__content .category_list li.category_discovery a{
		line-height: 16px;
		padding-top: 2px;
	}
	.modal__content .category_list li a .means {
		font-size: 11px;
	}
	.modal__content h5 {
		font-size: 15px;
		padding: 7px 0 7px 20px;
		margin-top: 26px;
		margin-bottom: 20px;
		height: auto;
		overflow: hidden;
		line-height: 1.3;
	}
	.modal__content h5:before {
		height: 100px;
	}
	.modal__content table {
		width: 100%;
	}
	.modal__content table th {
		width: auto;
		font-size: 12px;
		padding: 8px;
	}
	.modal__content table td {
		width: 180px;
		font-size: 10px;
		padding: 8px 8px;
		min-height: 45px;
	}
	.modal__content table.parformance_table .place td {
		padding: 8px 0;
	}
	.modal__content table.parformance_table td {
		padding: 0 8px;
	}
	.modal__content table td time {
		margin-left: 4px;
	}
	.modal__content table .program td {
		font-size: 12px;
		padding: 5px 0;
	}
	.modal__content table .program td img {
		width: 100%;
		margin-top: 5px;
	}
	.modal__content table td a {
		text-underline-offset: 2px;
	}
	.modal__content table.parformance_table tbody td {
		font-size: 20px;
	}
	.modal__content table.discovery_table thead th {
		width: calc(100% / 3);
	}
	.modal__content p {
		font-size: 12px;
		width: 100%;
		margin-top: 10px;
		line-height: 1.8;
	}
	.modal__content p a {
		text-underline-offset: 2px;
	}
	.modal__content p a img {
		width: 100%;
	}
	.english .modal__content .category_list li.category_bus a {
		padding-top: 0;
	}
	.english .modal__content .category_list li.category_discovery a {
		padding-top: 0;
	}
	.english .modal__content .category_list li.category_feeding a,
	.tchinese .modal__content .category_list li.category_feeding a,
	.schinese .modal__content .category_list li.category_feeding a,
	.korean .modal__content .category_list li.category_feeding a {
		padding-top: 0;
	}
}


.holidayText .hd_aq,
.holidayText .hd_hotel {
	width: 14px;
	height: 14px;
	font-size: 12px;
	text-align: center;
	line-height: 14px;
	display: inline-block;
	vertical-align: middle;
	border: 2px solid #d2285c;
	border-radius: 50%;
	margin-top: -2px;
}
.holidayText .hd_aq {
	color: #fff;
	background: #d2285c;
}
.holidayText .hd_hotel {
	color: #d2285c;
	background: #fff;
}