/*-------------------------------------------------------------*/
/* sp menu button */
.icon_on {
	display: none;
}
.icon_off {}
.active .icon_on {
	display: inline;
}
.active .icon_off {
	display: none;
}
/*-------------------------------------------------------------*/
/* modal */
.modal {
	font-size: 128%;
}
.modal_collect {}
.modal_collect .inner {}
.modal_collect_form {}
.modal_collect_form_setting {
	color: #999;
	font-size: 90%;
	margin: 1em 0 0;
	text-align:right;
}
.modal_collect_form_setting > span {
	margin-right: 1em;
}
.modal_collect_form_setting > span:last-child {
	margin-right: 0;
}
.modal_collect_form_setting > span em {
	font-weight: bold;
}
/*-------------------------------------------------------------*/
.accordion_head {
	position: relative;
	cursor: pointer;
}
.accordion_head::after {
	content: "\f3d0";
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	color: #78ca9b;
	font-size: 2rem;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	margin-top: -0.5em;
}
.active.accordion_head::after {
	-ms-transform: rotateX(180deg);
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	color: #f9fbf1;
}
.accordion_text {
	display: none;
}
.active + .accordion_text {
	display: block;
}
/*-------------------------------------------------------------*/
.box_input_calendar {
	position: relative;
}
.box_input_calendar > div {
	overflow-x: auto;
	overflow-y: visible;
	width: 100%;
	padding: 0 0 0.5rem;
	box-shadow: -0.375rem 0 0.75rem -0.375rem rgba(0, 0, 0, 0.19)inset;
}
.box_input_calendar > div::-webkit-scrollbar {
	width: 0.5rem;
}
.box_input_calendar > div::-webkit-scrollbar-track {
	border-radius: 5px;
	box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, .1);
}
.box_input_calendar > div::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 50, .5);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}
.input_calendar_label {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	box-shadow: 0.375rem 0 0.75rem -0.375rem rgba(0, 0, 0, 0.19);
}
.input_calendar {
	table-layout: fixed;
	width: auto;
}
/* input_calendar */
.input_calendar {}
.input_calendar > caption + thead > tr:first-child > th, .input_calendar > colgroup + thead > tr:first-child > th, .input_calendar > thead:first-child > tr:first-child > th, .input_calendar > caption + thead > tr:first-child > td, .input_calendar > colgroup + thead > tr:first-child > td, .input_calendar > thead:first-child > tr:first-child > td, .input_calendar > tbody > tr:first-child > th, .input_calendar > tbody > tr:first-child > td {
	border-top: 1px solid #ff8391;
}
.input_calendar > thead > tr > th, .input_calendar > tbody > tr > th, .input_calendar > tfoot > tr > th, .input_calendar > thead > tr > td, .input_calendar > tbody > tr > td, .input_calendar > tfoot > tr > td {
	padding: 0.5em 1em;
	border: 1px solid #ff8391;
	font-size: 0.83rem;
	text-align: center;
	height: 1.5rem;
	white-space: nowrap;
}
.input_calendar > thead > tr > th, .input_calendar > tbody > tr > th {
	font-weight: normal;
}
.input_calendar > thead > tr > th {
	background-color: #ff9397;
	color: #fff;
	height: 3rem;
}
.input_calendar > tbody > tr > th {
	background-color: #faf7e8;
	color: #595757;
}
.input_calendar label {
	height: 100%;
	width: 100%;
	display: block;
	position: relative;
	cursor: pointer;
}
.input_calendar .icon_off, .input_calendar .icon_on {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -0.75rem;
	margin-top: -0.75rem;
	-webkit-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.input_calendar .icon_off::before, .input_calendar .icon_on::before {
	display: inline-block;
	font-family: "Ionicons";
	font-size: 1.5rem;
	width: 1.5rem;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: center;
	color: #158142;
}
.input_calendar .icon_off::before {
	content: "";
	display: inline-block;
	position: relative;
	top: 0.3125rem;
	left: 0;
	width: 1.5625rem;
	height: 1.5625rem;
	background: url("../images/check_off.png")center center / 1.5625rem no-repeat;
}
.input_calendar .icon_on::before {
	content: "";
	display: inline-block;
	position: relative;
	top: 0.3125rem;
	left: 0;
	width: 1.5625rem;
	height: 1.5625rem;
	background: url("../images/check_on.png")center center / 1.5625rem no-repeat;
}
.input_calendar label input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.input_calendar .icon_on, .input_calendar .icon_off {
	display: block;
}
.input_calendar .icon_on {
	opacity: 0;
}
.input_calendar label input:checked + .icon_off {
	opacity: 0;
}
.input_calendar label input:checked + .icon_off + .icon_on {
	opacity: 1;
}
.input_calendar small {
	display: block;
}
/*-------------------------------------------------------------*/
