/*-------------------------------------------------------------*/
/* 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;
}
/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
.box_input_calendar {
  position: relative;
}
.box_input_calendar > div {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  padding: 0 0 8px;
  box-shadow: -6px 0px 12px -6px rgba(0, 0, 0, 0.19) inset;
}
.box_input_calendar > div::-webkit-scrollbar {
  width: 8px;
}
.box_input_calendar > div::-webkit-scrollbar-track {
  border-radius: 4px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
.box_input_calendar > div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 50, .5);
  border-radius: 4px;
  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: 6px 0px 12px -6px 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: #fd7686;
  color: #fff;
  height: 3rem;
}
.input_calendar > tbody > tr > th {
  background-color: #faf7e8;
  color: #9f9f9f;
}
.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: 5px;
  left: 0px;
  width: 25px;
  height: 25px;
  background: url("../images/check_off.png") center center / 25px no-repeat;
}
.input_calendar .icon_on:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 5px;
  left: 0px;
  width: 25px;
  height: 25px;
  background: url("../images/check_on.png") center center / 25px 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;
}
/*-------------------------------------------------------------*/