@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/*----------------------------------------
サイト共通 スタイルシート
----------------------------------------*/
.illegal {
  font-size: 1.6rem;
  padding: 6rem 0 6rem;
}
@media screen and (max-width: 768px) {
  .illegal {
    padding: 1rem 0 4rem;
  }
}

.borderNone {
  border-bottom: none !important;
}

.widthmax {
  width: 100%;
}

.widthHalf {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .widthHalf {
    max-width: 330px !important;
  }
}

/* ボタン */
.btn01,
.btnBack {
  justify-content: center;
}

.btn01 {
  background-color: #2B3588;
  color: #fff;
  width: 100%;
  border: none;
  cursor: pointer;
}
.btn01:before {
  background-color: #fff;
}
.btn01:after {
  border-top: 2px solid #2B3588;
  border-right: 2px solid #2B3588;
  transform: rotate(45deg);
  right: 2.6rem;
  top: 2.1rem;
}
.btn01 span {
  padding: 0 1rem 0 0;
}
.btn01.btnDisable {
  background-color: #DDDDDD;
}
.btn01.btnDisable:after {
  border-top-color: #DDDDDD;
  border-right-color: #DDDDDD;
}

.btnBack {
  border: 1px solid #2B3588;
  color: #2B3588;
}
.btnBack:before {
  right: auto;
  left: 1.7rem;
  background-color: #2B3588;
}
.btnBack:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: auto;
  top: 2.1rem;
  left: 2.7rem;
  transform: rotate(-135deg);
}
.btnBack:hover {
  background-color: #2B3588;
  color: #fff;
}
.btnBack:hover:before {
  background-color: #fff;
}
.btnBack:hover:after {
  border-top-color: #2B3588;
  border-right-color: #2B3588;
}
.btnBack:hover:visited {
  color: #fff;
}
.btnBack:visited {
  color: #2B3588;
}

#submitBtn:hover {
  opacity: 0.8;
}

.btnBox .btn01 {
  margin-bottom: 1.5rem;
}

label.error {
  display: block;
  font-size: 1.4rem;
  color: #F00;
  margin: 0.7rem 0;
  font-weight: bold;
}

/* フォーム
---------------------------------------------- */
#contactForm {
  margin-bottom: 6.5rem;
  padding-top: 1rem;
}
@media screen and (min-width: 769px) {
  #contactForm {
    margin-bottom: 10rem;
  }
}
#contactForm .contactTable {
  width: 100%;
  margin-bottom: 5rem;
}
#contactForm .contactTable tr {
  border-bottom: 1px dashed #D3CEC8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #contactForm .contactTable tr {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0;
  }
}
#contactForm .contactTable tr th {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  padding-bottom: 1rem;
}
@media screen and (min-width: 769px) {
  #contactForm .contactTable tr th {
    max-width: 25rem;
    width: 25%;
    margin-right: 2rem;
    line-height: 1.6;
    padding: 2rem 0;
  }
}
#contactForm .contactTable tr th .requiredIcon {
  color: #F00;
  border: 1px solid #F00;
  font-size: 1.4rem;
  padding: 0.1rem 0.5rem;
  line-height: 1;
  margin-left: 1rem;
}
#contactForm .contactTable tr td {
  display: block;
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  #contactForm .contactTable tr td {
    width: 75%;
    padding: 2rem 0;
  }
}
#contactForm .contactTable tr td input {
  padding: 1rem 0.5rem 1rem 1rem;
  box-sizing: border-box;
  border: 1px solid #ddd;
  background-color: #fff;
  position: relative;
  height: 4rem;
  max-width: 620px;
  width: 100%;
}
#contactForm .contactTable tr td input {
  background-color: #fff;
  color: #13141C;
}
#contactForm .contactTable tr td input:focus {
  background-color: #fff;
  color: #13141C;
}
#contactForm .contactTable tr td input:active {
  background-color: #fff;
  color: #13141C;
}
#contactForm .contactTable tr td select {
  background-color: #fff;
  color: #000;
  border: 1px solid #ddd;
  padding: 1rem 0.5rem 1rem 1rem;
  height: 4rem;
  cursor: pointer;
}
#contactForm .contactTable tr td .is-empty {
  color: #85858a;
}
#contactForm .contactTable tr td select option {
  background-color: #fff;
  color: #13141C;
  border-bottom: 1px solid #F4F4F4;
}
#contactForm .contactTable tr td select option:first-child {
  color: #bdbec0;
}
#contactForm .contactTable tr td select::-ms-expand {
  display: none;
}
#contactForm .contactTable tr td select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contactForm .contactTable tr td .selectBox {
  cursor: pointer;
  position: relative;
  max-width: 33rem;
  width: 100%;
}
#contactForm .contactTable tr td .selectBox:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-top: 2px solid #AFAFAF;
  border-right: 2px solid #AFAFAF;
  width: 1rem;
  height: 1rem;
  transform: rotate(135deg);
  right: 1.5rem;
  top: 1.3rem;
  transition: all 0.3s;
}
#contactForm .contactTable tr td .selectBox.open:after {
  transition: all 0.3s;
  transform: rotate(-45deg);
  top: 1.8rem;
}
#contactForm .contactTable tr td textarea {
  width: 100%;
  border: 1px solid #ddd;
  resize: none;
  padding: 0.8rem 1rem;
  position: relative;
  height: 25rem;
  line-height: 1.4;
  overflow-x: hidden;
  overflow-y: auto;
}
#contactForm .contactTable tr td #PostalCode {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 320px) {
  #contactForm .contactTable tr td #PostalCode {
    max-width: 160px;
  }
}
#contactForm .contactTable tr td .zipBtn {
  border: 1px solid #2B3588;
  background-color: #fff;
  color: #2B3588;
  padding: 1rem;
  max-width: 140px;
  width: 100%;
  border-radius: 5px;
  margin-left: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 320px) {
  #contactForm .contactTable tr td .zipBtn {
    max-width: 110px;
    margin-left: 0.5rem;
  }
}
#contactForm .contactTable tr td .zipBtn:hover {
  background-color: #2B3588;
  color: #fff;
}
#contactForm .contactTable tr td .caution {
  display: block;
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #contactForm #departureBox td {
    display: flex;
    align-items: center;
  }
}
#contactForm #departureBox #Departure {
  background-color: transparent;
}
#contactForm #departureBox #iconCalendar {
  margin-left: -4rem;
}
#contactForm #departureBox #iconCalendar img {
  margin-top: -0.1rem;
}
#contactForm #people {
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (min-width: 769px) {
  #contactForm #people th {
    padding-top: 3rem;
    max-width: 13rem;
    width: 13%;
  }
}
@media screen and (min-width: 769px) {
  #contactForm #people td {
    width: 80%;
  }
}
#contactForm #people td > div:not(:last-of-type) {
  margin-bottom: 2rem;
}
#contactForm #people td label:not(.error) {
  font-weight: bold;
  margin-right: 2rem;
  font-size: 1.4rem;
  display: inline-block;
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #contactForm #people td label:not(.error) {
    margin-bottom: 0.8rem;
  }
}
#contactForm #people td .preschoolerBox {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #contactForm #people td .preschoolerBox {
    justify-content: space-between;
  }
}
#contactForm #people td .preschoolerBox div {
  width: 48%;
  position: relative;
}
@media screen and (min-width: 769px) {
  #contactForm #people td .preschoolerBox div {
    display: flex;
    align-items: center;
    width: 50%;
  }
  #contactForm #people td .preschoolerBox div:first-of-type {
    width: 60%;
  }
  #contactForm #people td .preschoolerBox div:first-of-type label:not(.error) {
    width: 30%;
  }
  #contactForm #people td .preschoolerBox div:last-of-type {
    margin-left: 4rem;
  }
  #contactForm #people td .preschoolerBox div:last-of-type label:not(.error) {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
#contactForm #people td .preschoolerBox div label.error {
  position: absolute;
  left: 0;
  top: 3.5rem;
}
@media screen and (max-width: 768px) {
  #contactForm #people td .preschoolerBox div label.error {
    top: 6rem;
  }
}
#contactForm #people td .preschoolerBox div input {
  max-width: 260px;
}
#contactForm #contactComment {
  align-items: flex-start;
}
#contactForm #privacyText {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
#contactForm #privacyText a {
  display: inline-block;
  color: #2B3588;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.4rem;
  font-weight: 700;
}
#contactForm #privacyText a:hover {
  text-decoration: none;
  opacity: 1;
}
#contactForm #privacyCheck {
  text-align: center;
}
#contactForm #privacy {
  display: inline-block;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 5rem 0;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
#contactForm #privacy input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contactForm #privacy input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
}
#contactForm #privacy input[type=checkbox]::before,
#contactForm #privacy input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
#contactForm #privacy input[type=checkbox]::before {
  background-color: #F4F4F4;
  border-radius: 50%;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
#contactForm #privacy input[type=checkbox]::after {
  opacity: 0;
  background-color: #2B3588;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  top: -7px;
  left: 8px;
}
#contactForm #privacy input[type=checkbox]:checked::after {
  opacity: 1;
}
#contactForm #privacy span {
  padding-left: 0.8rem;
}
#contactForm #Privacy-error {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin-top: 3.5rem;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #8C8D91;
  opacity: 1 !important;
}

input::placeholder,
textarea::placeholder {
  color: #8C8D91;
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  _::-webkit-full-page-media, _:future, :root #contactForm #privacy input[type=checkbox]::after {
    top: calc(100% - 15px);
  }
}

/* カレンダー調整 */
#contactWrap {
  /* 土曜日の色変更 */
  /* 日曜日の色変更 */
}
#contactWrap #ui-datepicker-div {
  box-shadow: 1px 1px 5px #ccc;
  font-size: 1.7rem;
}
#contactWrap .ui-widget-header {
  background: none;
  border: none;
}
#contactWrap .ui-datepicker td span,
#contactWrap .ui-datepicker td a {
  text-align: center;
}
#contactWrap .ui-state-default,
#contactWrap .ui-widget-content .ui-state-default,
#contactWrap .ui-widget-header .ui-state-default,
#contactWrap .ui-button,
#contactWrap .ui-button.ui-state-disabled:hover,
#contactWrap .ui-button.ui-state-disabled:active {
  background: #fff;
  border: 1px solid #fff;
}
#contactWrap .ui-state-hover,
#contactWrap .ui-widget-content .ui-state-hover,
#contactWrap .ui-widget-header .ui-state-hover,
#contactWrap .ui-state-focus,
#contactWrap .ui-widget-content .ui-state-focus,
#contactWrap .ui-widget-header .ui-state-focus,
#contactWrap .ui-button:hover,
#contactWrap .ui-button:focus {
  background: none;
  border: 1px solid #fff;
}
#contactWrap .ui-datepicker .ui-datepicker-prev-hover,
#contactWrap .ui-datepicker .ui-datepicker-next-hover {
  top: 2px;
  border: none;
}
#contactWrap .ui-datepicker .ui-datepicker-prev,
#contactWrap .ui-datepicker .ui-datepicker-next {
  top: 5px;
}
#contactWrap .ui-datepicker .ui-datepicker-prev,
#contactWrap .ui-datepicker .ui-datepicker-prev-hover {
  left: 50px;
  cursor: pointer;
}
#contactWrap .ui-datepicker .ui-datepicker-next,
#contactWrap .ui-datepicker .ui-datepicker-next-hover {
  right: 50px;
  cursor: pointer;
}
#contactWrap .ui-datepicker .ui-datepicker-prev span,
#contactWrap .ui-datepicker .ui-datepicker-next span {
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
#contactWrap .ui-datepicker .ui-datepicker-prev span {
  left: 20px;
  top: 17px;
  transform: rotate(-135deg);
}
#contactWrap .ui-datepicker .ui-datepicker-next span {
  left: 12px;
  top: 16px;
  transform: rotate(45deg);
}
#contactWrap .ui-widget-header .ui-icon {
  background: none;
  cursor: pointer;
}
#contactWrap .ui-state-hover .ui-icon,
#contactWrap .ui-state-focus .ui-icon,
#contactWrap .ui-button:hover .ui-icon,
#contactWrap .ui-button:focus .ui-icon {
  background: none;
}
#contactWrap .ui-corner-all, #contactWrap .ui-corner-bottom, #contactWrap .ui-corner-right, #contactWrap .ui-corner-br {
  border-radius: 0px;
  border: none;
}
#contactWrap .ui-widget-content .ui-state-default.ui-state-hover,
#contactWrap .ui-widget-content .ui-state-default.ui-state-focus {
  background: #fff;
  border: 1px solid #fff;
  position: relative;
}
#contactWrap .ui-widget-content .ui-state-default.ui-state-hover:after,
#contactWrap .ui-widget-content .ui-state-default.ui-state-focus:after {
  content: "";
  display: inline-block;
  border: 1px solid #7A7A7A;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 3px;
  top: -3px;
}
#contactWrap .ui-widget-content .ui-state-active {
  position: relative;
}
#contactWrap .ui-widget-content .ui-state-active:after,
#contactWrap .ui-widget-content .ui-state-active:after {
  content: "";
  display: inline-block;
  border: 1px solid #7A7A7A;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 3px;
  top: -3px;
}
#contactWrap td.ui-datepicker-week-end:last-child a.ui-state-default {
  color: #5299f1;
}
#contactWrap td.ui-datepicker-week-end:first-child a.ui-state-default {
  color: #ee4e16;
}

/*カレンダーのサイズ変更*/
.ui-widget {
  font-size: 1.7em;
}

.ui-widget-header {
  background: none;
  border: none;
}

.ui-state-default, .ui-widget-content .ui-state-default {
  border: none;
  background: none;
}

/* 土曜日の色変更 */
td.ui-datepicker-week-end:last-child a.ui-state-default {
  color: #5299f1;
}

/* 日曜日の色変更 */
td.ui-datepicker-week-end:first-child a.ui-state-default {
  color: #ee4e16;
}

.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 {
  font-weight: bold;
  background: #d2e3fc !important;
  color: #185abc;
  border-radius: 5px;
}

.ui-datepicker td span, .ui-datepicker td a {
  text-align: center;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  font-weight: bold;
  color: #ffffff;
  background: #1a73e8 !important;
  border-radius: 5px;
}

/* お問い合わせ内容確認画面
---------------------------------------------- */
.contact_form_confirm #contactForm {
  padding-top: 2rem;
}
.contact_form_confirm #contactForm .contactTable tr {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .contact_form_confirm #contactForm .contactTable #people {
    padding-bottom: 0;
  }
}
.contact_form_confirm #contactForm .contactTable #people th {
  max-width: 12rem;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .contact_form_confirm #contactForm .contactTable #people th {
    padding-top: 0;
  }
}
.contact_form_confirm #contactForm .contactTable #people dl div {
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  .contact_form_confirm #contactForm .contactTable #people dl div {
    display: flex;
  }
}
.contact_form_confirm #contactForm .contactTable #people dl dt {
  font-weight: bold;
  margin-right: 2rem;
  min-width: 11rem;
}
@media screen and (max-width: 768px) {
  .contact_form_confirm #contactForm .contactTable #people dl dt {
    margin: 0;
    padding-bottom: 1rem;
  }
}
.contact_form_confirm #contactForm .contactTable #contactComment td {
  line-height: 1.6;
}

/* お問い合わせ送信完了画面
---------------------------------------------- */
#resultWrap {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  #resultWrap {
    padding: 6rem 0;
  }
}
#resultWrap h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #2B3588;
  letter-spacing: 0.025rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #resultWrap h2 {
    font-size: 1.9rem;
    line-height: 1.36;
    letter-spacing: 0.019rem;
    margin-bottom: 4rem;
  }
}
#resultWrap p {
  font-size: 1.7rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #resultWrap p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
#resultWrap p span {
  font-size: 1.4rem;
}
#resultWrap .btn {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #resultWrap .btn {
    margin-top: 4rem;
  }
}/*# sourceMappingURL=contact.css.map */