/*-------------------------------------------------------------*/
/* modal */
.modal {
  font-size: 128%;
}
.modal_collect {}
.modal_collect .inner {}
.modal_collect_form {}
.modal_collect_form_setting {
  color: var(--site-c-gray);
  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: 700;
}
/*-------------------------------------------------------------*/
.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;
  transition: all 0.5s ease;
  color: #78ca9b;
  font-size: 20px;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -0.5em;
}
.active.accordion_head:after {
  transform: rotateX(180deg);
  color: var(--site-c-disabledgray);
}
.accordion_text {
  display: none;
}
.active + .accordion_text {
  display: block;
}
/*-------------------------------------------------------------*/
.box_input_calendar {
  position: relative;
}
.box_input_calendar__ttl {
  background: var(--site-c-lightgray);
  color: var(--font-c);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
  margin: 0 0 30px;
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
}
.box_input_calendar__ttl::before {
  content: '';
  display: block;
  border-left: solid 4px var(--site-c-main);
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.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 {
  box-shadow: none;
  border-radius: 8px;
  background: var(--site-c-lightgray);
}
.box_input_calendar > div::-webkit-scrollbar-thumb {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: var(--site-c-main);
}
.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 var(--site-c-main);
}
.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: solid 1px var(--site-c-main);
  font-size: 13px;
  text-align: center;
  height: 15px;
  white-space: nowrap;
}
.input_calendar > thead > tr > th, .input_calendar > tbody > tr > th {
  font-weight: normal;
}
.input_calendar > thead > tr > th {
  background: var(--site-c-main);
  color: #fff;
  height: 30px;
}
.input_calendar > tbody > tr > th {
  background:  var(--site-bg-c-ribbon);
  color: var(--site-c-gray);
}
.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: -15px;
  margin-top: -15px;
  transition: opacity 0.2s ease;
}
.input_calendar .icon_off:before, .input_calendar .icon_on:before {
  display: inline-block;
  font-family: "Ionicons";
  font-size: 15px;
  width: 15px;
  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.svg") 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.svg") 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;
}
/*-------------------------------------------------------------*/