@charset "utf-8";
#reservation dl {
  border-top: 1px solid #96D2E6;
  line-height: 1.6;
}
#reservation dl:last-of-type {
  border-bottom: 1px solid #96D2E6;
}
#reservation dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 16px;
}
#reservation dt span {
  font-weight: 700;
}
#reservation dt span.small {
  font-size: 0.9em;
  font-weight: 400;
}
#reservation dt span.mandatory {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 8px;
  margin: 1px 0 0;
  background-color: #FF96C8;
  border-radius: 3px;
  line-height: normal;
}
#reservation dt span.optional {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 8px;
  background-color: #CCC;
  border-radius: 3px;
  line-height: normal;
}
#reservation dd p.asterisk {
  text-indent: -1.1em;
  padding-left: 1.1em;
}
@media screen and (min-width: 768px) {
  #reservation dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 0;
  }
  #reservation dt {
    width: 330px;
    font-weight: 700;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #reservation dd {
    width: calc(100% - 370px);
  }
  #reservation dd a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  #reservation dl {
    padding: 15px 0 25px;
  }
  #reservation dt {
    font-weight: 700;
    padding: 0 0 15px;
  }
  #reservation dt span.small {
    font-size: 12px;
  }
  #reservation dt br.pc + span.small {
    margin-left: 10px;
  }
  #reservation dt span.mandatory, #reservation dt span.optional {
    margin-left: 10px;
  }
  #reservation dd {
    margin: 0;
  }
  #reservation dd a[href^="tel:"] {
    text-decoration: underline;
  }
}
.formError.inline .formErrorContent {
  margin: 5px 0 0;
  line-height: 1.4;
}
/* input
--------------------------------------------------*/
#reservation input::placeholder {
  color: #a0a0a0;
}
#reservation input[type="text"], #reservation input[type="email"], #reservation input[type="tel"], #reservation textarea, #reservation select {
  border-radius: 6px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  background-color: rgba(150, 210, 230, 0.1);
  outline: 0 !important;
  line-height: 1.6;
  color: #000;
  -webkit-appearance: none;
}
#reservation input[type="text"]:focus, #reservation input[type="email"]:focus, #reservation input[type="tel"]:focus, #reservation textarea:focus, #reservation select:focus {
  border: 1px solid #dcdcdc;
  background-color: rgba(150, 210, 230, 0.1);
  outline: 0 !important;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/select_arrow.svg) no-repeat right 10px center;
}
select::-ms-expand {
  display: none;
}
@media screen and (min-width: 768px) {
  #reservation textarea {
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  #reservation textarea {
    height: 180px;
  }
}
/* radio button / check box
--------------------------------------------------*/
#reservation ul.single.mhidden, #reservation ul.multiple.mhidden {
  margin: 0 0 -25px;
}
#reservation p + ul.single.mhidden, #reservation p + ul.multiple.mhidden {
  margin-top: 10px;
}
#reservation ul.single li, #reservation ul.multiple li {
  position: relative;
  list-style-type: none;
  padding-left: 35px;
  margin: 0 0 20px;
}
#reservation ul.single li:last-child, #reservation ul.multiple li:last-child {
  margin: 0;
}
#reservation ul.single li input[type="radio"], #reservation ul.multiple li input[type=checkbox] {
  display: none;
}
#reservation ul.single li input[type="radio"] + label, #reservation ul.multiple li input[type=checkbox] + label {
  cursor: pointer;
}
#reservation ul.single li input[type="radio"] + label:before, #reservation ul.multiple li input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background-color: rgba(150, 210, 230, 0.1);
}
#reservation ul.single li input[type="radio"]:checked + label:before, #reservation ul.multiple li input[type=checkbox]:checked + label::before {
  border: 1px solid #96D2E6;
  background-color: #96D2E6;
}
#reservation ul.single li input[type="radio"]:checked + label:after, #reservation ul.multiple li input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 5px;
  width: 11px;
  height: 6px;
  margin-top: -7px;
  border-left: 3px solid #FFF;
  border-bottom: 3px solid #FFF;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {}
/* datetime
--------------------------------------------------*/
#reservation dd .datetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 20px;
}
#reservation dd .datetime p {
  white-space: nowrap;
}
#reservation dd .datetime input.date {
  background-image: url(../images/icon_calendar.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 30px;
  padding: 12px 12px 12px 60px;
  border: 1px solid #dcdcdc;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  cursor: pointer;
}
#reservation dd .datetime input.date::placeholder {
  color: #000;
}
#reservation dd select.time {
  background-image: url(../images/icon_clock.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 30px;
  padding: 12px 12px 12px 60px;
  border: 1px solid #dcdcdc;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  cursor: pointer;
}
@media (min-width: 768px) {
  #reservation dd .datetime p {
    padding: 13px 0;
    line-height: 1.6;
  }
  #reservation dd .datetime .dateContainer {
    width: 160px;
    margin: 0 20px;
  }
  #reservation dd .datetime .timeContainer {
    width: 160px;
  }
  #reservation dd .datetime + p.asterisk {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  #reservation dd .datetime p {
    width: 100%;
    font-size: 16px;
    margin: 0 0 5px;
  }
  #reservation dd .datetime .dateContainer {
    width: calc((100% - 15px) / 2);
    margin: 0 15px 0 0;
  }
  #reservation dd .datetime .timeContainer {
    width: calc((100% - 15px) / 2);
  }
}
/* datepicker
--------------------------------------------------*/
.ui-datepicker {
  font-size: 20px;
  z-index: 1000 !important;
}
.ui-datepicker td span, .ui-datepicker td a {
  padding: 0.65em 0;
  text-align: center;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #c5c5c5;
  background-color: rgba(250, 150, 150, 0.2);
  color: #000;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid #c5c5c5;
  background: #FA9696;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ui-datepicker {
    width: calc(100% - 40px);
    box-sizing: border-box;
  }
}
/* Button
--------------------------------------------------*/
#contents .button {
  text-align: center;
}
#contents .button p {
  color: #b40000;
  font-weight: 700;
  font-size: 1.2em;
  margin: 0 0 10px;
}
#contents .button button {
  display: inline-block;
  background-color: #969696;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  width: 300px;
  max-width: 100%;
  padding: 15px 0 15px 15px;
  border-radius: 6px;
  border: none;
  position: relative;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.2);
}
#contents .button button#myreset::after {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}
#contents .button button[type="submit"]::after {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}
@media screen and (min-width: 768px) {
  #contents .button {
    text-align: center;
    margin: 50px 0 0;
  }
  button {
    cursor: pointer;
  }
  #contents #confirm .button button {
    width: 250px;
  }
  #contents #confirm .button button:first-of-type {
    margin-right: 50px;
  }
  #contents .button button:hover {
    background-color: #787878;
    transition: 0.3s;
  }
  #contents .button button[type="submit"]:hover {
    background-color: #78C8DC;
  }
}
@media screen and (max-width: 767px) {
  #contents .button {
    text-align: center;
    margin: 40px 0 0;
  }
  #contents #confirm .button {
    margin: 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #contents .button button {
    padding: 15px 0;
    font-size: 14px;
    width: 155px;
  }
  #contents #confirm .button button {
    margin: 30px 0 0;
  }
}
#contents .button button#myreset {
  padding: 15px 0 15px 20px;
}
#contents .button button#myreset::after {
  left: 20px;
}
#contents .button button[type="submit"] {
  background-color: #96D2E6;
  padding: 15px 20px 15px 0;
}
#contents .button button[type="submit"]::after {
  right: 20px;
}
#contents .button button#submit[disabled] {
  background-color: #999999;
  cursor: not-allowed;
}
/* 確認・エラー画面(check,error)
--------------------------------------------------*/
#reservation table {
  width: 100%;
  margin: 30px 0 0;
  background-color: #FFF;
}
#reservation th {
  line-height: 1.8;
}
#reservation td {
  line-height: 1.8;
}
#contents strong.error {
  color: #FF0000;
}
.message {
  text-align: center;
  line-height: 1.6;
}
#contents span.error {
  color: #FF0000;
}
@media screen and (min-width: 768px) {
  #reservation th {
    font-weight: 700;
    padding: 15px 20px;
    width: 300px;
    text-align: left;
    border-bottom: 1px solid #96D2E6;
  }
  #reservation td {
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid #96D2E6;
  }
  #reservation tr:last-child th, #reservation tr:last-child td {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  #reservation table {
    margin: 20px 0 0;
  }
  #reservation th {
    font-weight: 700;
    display: block;
    padding: 10px 15px 5px;
    text-align: left;
  }
  #reservation td {
    display: block;
    padding: 0 15px 10px;
    border-bottom: 1px solid #96D2E6;
  }
  #reservation tr:last-child td {
    border-bottom: none;
  }
}
/* 送信完了(completion.html)
--------------------------------------------------*/
#reservation.completion {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#reservation.completion .success {
  line-height: 1.8;
  font-size: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #reservation.completion {
    height: calc(100vh - 200px);
  }
}
@media screen and (max-width: 767px) {
  #reservation.completion {
    height: calc(100vh - 150px);
  }
  #reservation.completion .success {
    font-size: 16px;
  }
}