@charset "UTF-8";

/* カレンダー選択部品 */
.formPageWrapper div.modalCalendar {
	display: block;
}
.formPageWrapper div.modalCalendar a {
	color: inherit;
	display: table-cell;
	height: 36px;
	min-width: 200px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
	vertical-align: middle;
	text-decoration: none;
	cursor: pointer;
	background-color: #f6f7f7;
	border: 1px solid #dddddd;
	border-radius: 6px;
}
.formPageWrapper div.modalCalendar a input[type='text']{
	display: inline-block !important;
	width: auto !important;
	min-width: 230px !important;
	cursor: pointer !important;
	border: none !important;
	background-color: #f6f7f7 !important;
	text-decoration: none !important;
	color: inherit !important;
	padding: 0 0 3px 0 !important;
	margin: 0 !important;
	
	-webkit-touch-callout:none; /* リンク長押しのポップアップを無効化 */
	-webkit-user-select:none; /* テキスト長押しの選択ボックスを無効化 */
}
.formPageWrapper div.modalCalendar a input[type='text']::placeholder {
	color: inherit !important;
	opacity: 1 !important;
}
.formPageWrapper div.modalCalendar a input[type='text']::-ms-input-placeholder{ /* edge */
	color: inherit !important;
	opacity: 1 !important;
}


/* カレンダーダイアログ */
#modalCalendar{
	display: none;
}
#modalCalendar.open{
	display: block;
}
#modalCalendar .modal_bg{
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	background: #000;
	opacity: 0.8;
	z-index: 200;
}
#modalCalendar .modal_close{
	position: absolute;
	top: -28px;
	right: 0;
	display: inline-block;
	font-size: 24px;
	color:#FFF;
	cursor: pointer;
}
#modalCalendar .modal_content{
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: #FFF;
	padding: 15px;
	margin: auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
	width: 80vw;
	min-width: 730px;
	max-width: 90%;
	height: 80vh;
	max-height: 80%;
	z-index: 210;
}
#modalCalendar .modal_inner{
	overflow-y: scroll;
	width: 100%;
	height: 100%;
}


/* カレンダー表示エリア */
#modalCalendar .mc-calendar-view{
	display: inline-block;
	margin-left: .5em;
	margin-right: .5em;
	margin-bottom: 1em;
}
#modalCalendar .mc-calendar-view .ui-datepicker{
	width: 410px;
	min-height: 313px;
	border-color:#e95a83;
	border-radius: 8px;
	padding: 0;
}
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-header{
	border: none;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background-color:#e95a83;
	color:#FFF;
	font-weight: normal;
}
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-title{
	font-size: 1em;
	line-height: inherit;
	padding: 12px 0;
	font-size: 1.25em;/*追加*/
	font-weight: bold;/*追加*/
}
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-prev .ui-icon,
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-next .ui-icon {
	background-image:none;
}
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-prev {
	text-align: left;
	color: #FFF;
	padding: 12px 1em 12px .5em;
}
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-next {
	text-align: right;
	color: #FFF;
	padding: 12px .5em 12px 1em;
}
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-prev:before {
font-size: 22px;
	content:" ◀";
}
#modalCalendar .mc-calendar-view .ui-datepicker .ui-datepicker-next:before {
font-size: 22px;
	content:"▶ ";
}

#modalCalendar .mc-calendar-view .ui-datepicker table{
	background-color:#FFF;
	border-collapse: collapse;
	margin-bottom: 15px;
	font-size: 1em;
}
#modalCalendar .mc-calendar-view .ui-datepicker table thead tr th{
	background-color:rgba( 233, 90, 131, .4); /* #e95a83 alpha=0.4 */
	border-right: 2px solid #fff;
}
#modalCalendar .mc-calendar-view .ui-datepicker table thead tr th:last-child{
	border-right: none;
}
#modalCalendar .mc-calendar-view .ui-datepicker table tbody td {
	width: 60px;
	text-align: center;
	box-sizing: border-box;
}
#modalCalendar .mc-calendar-view .ui-datepicker table tbody td a,
#modalCalendar .mc-calendar-view .ui-datepicker table tbody td span {
	border-right: 2px solid rgba( 233, 90, 131, .4) !important; /* #e95a83 alpha=0.4 */
	border-bottom: 2px solid rgba( 233, 90, 131, .4) !important; /* #e95a83 alpha=0.4 */
	border-top: none !important;
	border-left: none !important;
	background: inherit;
	text-align: center;
	margin: 2px;
	font-weight: bold;
}
#modalCalendar .mc-calendar-view .ui-datepicker table .calendar-dayofweek-satuday a,
#modalCalendar .mc-calendar-view .ui-datepicker table .calendar-dayofweek-satuday span {
	color: #00F;
}
#modalCalendar .mc-calendar-view .ui-datepicker table .calendar-dayofweek-sunday a,
#modalCalendar .mc-calendar-view .ui-datepicker table .calendar-dayofweek-sunday span {
	color: #F00;
}
#modalCalendar .mc-calendar-view .ui-datepicker table .ui-state-active {
	display: inline-block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba( 233, 90, 131, .4); /* #e95a83 alpha=0.4 */
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
	border-bottom: none !important;
	margin: 0;
	padding: 0;
	color: #FFF;
	box-sizing: border-box;
}

#modalCalendar .mc-calendar-view .ui-datepicker table .ui-state-hover {
	background: #e95a83;
}


/* 時間選択 */
#modalCalendar .mc-calendar-time-view  {
	margin-left: .5em;
	margin-right: .5em;
}
#modalCalendar .mc-calendar-time-view .reserveDate {
	display: inline-block;
	width: 340px;
	border-color:#e95a83;
	border-radius: 8px;
	padding: 0;
	background: rgba( 233, 90, 131, .4); /* #e95a83 alpha=0.4 */
}
#modalCalendar .mc-calendar-time-view .reserveDate .dateHeader {
	width: 100%;
	border-radius: 8px 8px 0 0;
	background: #e95a83;
	padding: 22px 0 21px 0;
	line-height: 1;
	text-align: center;
	color: #ffffff;/*#675c57*/
	font-weight: bold;/*追加*/
	font-size: 1.15em;/*追加*/
	border-radius: 8px 8px 0 0;
}
#modalCalendar .mc-calendar-time-view .reserveDate .dateTime {
	border-radius: 0px 0px 8px 8px;
	width: 260px; /* 2列だったので 260 270に変更 */
	margin: 0 auto;
	padding: 18px 14px 15px 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}
#modalCalendar .mc-calendar-time-view .reserveDate .dateTime p{
	margin: 0;
}
#modalCalendar .mc-calendar-time-view .reserveDate .dateTime a {
	display: block;
	width: 76px;
	margin: 8px 2px;
	background: #fff;
	border: 2px solid #e95a83;
	border-radius: 8px;
	font-weight: bold;
	text-align: center;
	color:#675c57;
	padding: 5px 0;
}

#modalCalendar .calendar-select-panel{
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

/* ------------------------------
メールフォームプロ
日付ピッカー月移動ボタンのホバー表示
css強制上書き
--------------------------------*/
.mc-calendar-view.hasDatepicker .ui-state-hover {
  border: 1px solid #e95a83 !important;
  background: #e95a83 !important; }
/*------------------------------*/

@media screen and (max-width:768px) { 
	/* スマホ向け */
	.formPageWrapper div.modalCalendar a {
		padding-left: 20px;
		padding-right: 20px;
	}
	#modalCalendar .modal_content{
		width: 80vw;
		min-width: 90%;
		max-width: 90%;
		height: 85vh;/*80vh*/
		max-height: 85%;/*70%*/
	}
	#modalCalendar .mc-calendar-view .ui-datepicker{
		width: 280px;
	}
	#modalCalendar .mc-calendar-time-view .reserveDate {
		width: 280px;
	}
}


/* ------------------------------
メールフォームプロ
追加修正カレンダーまわり
--------------------------------*/

.ui-datepicker .ui-datepicker-title {

｝





