@charset "UTF-8";
/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Component - Base

コンポーネント設定。  
各ページでよく使い回す記述。  
このサイト専用の共通設定。


*/
.badge-required {
  display: none;
}

.red_text {
  color: palette("red", "alert");
}

/*
## - form input select textarea

<div class="_h3">input select textarea</div>

*/
.caution_area {
  border: 2px solid palette("red", "alert");
  border-radius: 24px;
  color: #ff0000;
  padding: 5px 10px;
}

.caution_area p {
  margin-bottom: 1px;
}

.text_frame input {
  width: 100%;
  font-size: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
          box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
  border: 1px solid #f6f6f7;
  height: 50px;
  padding: 0.2em 1em 0;
  padding-right: 0.5em;
}
@media screen and (max-width: 999px) {
  .text_frame input {
    border-radius: 10px;
  }
}
.text_frame input:focus, .text_frame input:active {
  outline: 2px solid palette("color", "outline");
  outline-offset: -2px;
}
.text_frame input::-webkit-input-placeholder {
  color: #929bbb;
}
.text_frame input::-moz-placeholder {
  color: #929bbb;
}
.text_frame input:-ms-input-placeholder {
  color: #929bbb;
}
.text_frame input::-ms-input-placeholder {
  color: #929bbb;
}
.text_frame input::placeholder {
  color: #929bbb;
}
.text_frame-age input {
  width: 7em;
  margin-right: 1em;
}
.text_frame-zip .cell {
  margin-right: 1em;
}
@media screen and (max-width: 575px) {
  .text_frame-zip .cell {
    margin-right: 0.5em;
  }
}
.text_frame-zip input {
  width: 7em;
}
@media screen and (max-width: 575px) {
  .text_frame-zip input {
    width: 5em;
  }
}

.form__text {
  border-radius: 24px;
  background-color: #fff;
}
@media screen and (max-width: 999px) {
  .form__text {
    border-radius: 10px;
  }
}
.form__submit {
  border: 1px solid #fff;
  background-color: palette("blue");
  font-weight: normal;
}
.form-color__text {
  border: 0 none;
  color: palette("color");
}

.custom-select,
.select_frame {
  min-width: 130px;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 24px;
  font-size: 1rem;
  z-index: 1;
  position: relative;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 52px;
  border: 0 none;
  -webkit-user-modify: read-write-plaintext-only;
  -moz-user-modify: read-write-plaintext-only;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 40px;
  padding-left: 15px;
  margin: 0;
  border: 0 none;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  width: 100%;
  height: 50px;
  border-radius: 24px;
  cursor: pointer;
  -webkit-box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
          box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
  background-color: #fff;
  border: 1px solid #f6f6f7;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/select_arrow.png) no-repeat center right 15px/13px 9px #fff;
}
@media screen and (max-width: 999px) {
  .custom-select,
.select_frame {
    border-radius: 10px;
  }
}
.custom-select::-ms-expand,
.select_frame::-ms-expand {
  display: none;
}
.custom-select:focus + .select_frame__display, .custom-select:active + .select_frame__display,
.select_frame:focus + .select_frame__display,
.select_frame:active + .select_frame__display {
  outline: 2px solid palette("color", "outline");
  outline-offset: -2px;
}
.custom-select option,
.select_frame option {
  padding: 0 15px;
}

.date_input_area__year {
  width: 44%;
}
@media screen and (max-width: 575px) {
  .date_input_area__year {
    width: 100%;
  }
}
.date_input_area__month, .date_input_area__day {
  width: 28%;
}
@media screen and (max-width: 575px) {
  .date_input_area__month, .date_input_area__day {
    width: 50%;
  }
}
.date_input_area__year select, .date_input_area__month select, .date_input_area__day select {
  min-width: auto;
}

.date_input_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.date_input_area .input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5em;
  margin-right: 1.5em;
}
.date_input_area .birth__unit {
  position: absolute;
  right: -1.5em;
  display: inline-block;
  text-align: left;
  width: 1em;
}
@media screen and (max-width: 767px) {
  .date_input_area .birth__unit {
    right: -1.5em;
  }
}

.textarea_frame textarea {
  width: 100%;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5em;
  margin: 0;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
          box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
  border: 1px solid #f6f6f7;
  border-radius: 10px;
  padding: 1em;
  resize: none;
}
.textarea_frame textarea:focus, .textarea_frame textarea:active {
  outline: 2px solid palette("color", "outline");
  outline-offset: -2px;
}
.textarea_frame textarea::-webkit-input-placeholder {
  color: #929bbb;
}
.textarea_frame textarea::-moz-placeholder {
  color: #929bbb;
}
.textarea_frame textarea:-ms-input-placeholder {
  color: #929bbb;
}
.textarea_frame textarea::-ms-input-placeholder {
  color: #929bbb;
}
.textarea_frame textarea::placeholder {
  color: #929bbb;
}
.textarea_frame-m textarea {
  height: 5em;
}

.radio_frame {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
}
.radio_frame > label {
  display: table;
  width: 100%;
  height: 100%;
}
.radio_frame__input {
  position: absolute;
  -webkit-user-modify: read-write-plaintext-only;
  -moz-user-modify: read-write-plaintext-only;
  z-index: 1;
  left: 0;
  width: 14px;
  opacity: 0;
  padding: 0;
  margin: 0;
  border: 0 none;
}
.radio_frame__input:focus + .radio_frame__label, .radio_frame__input:active + .radio_frame__label {
  outline: 2px solid red;
  outline-offset: -2px;
}
.radio_frame__label {
  cursor: pointer;
  border: 1px solid #cfcfcf;
  border-radius: 24px;
  color: #888;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 999px) {
  .radio_frame__label {
    border-radius: 10px;
  }
}
.radio_frame .radio_frame__input:checked + .radio_frame__label {
  color: #fff;
  background-color: palette("red", "3");
}

.radio_list .radio_frame {
  height: 100%;
}
.radio_list .radio_frame > label {
  display: table;
  width: 100%;
  height: 100%;
}
.radio_list .radio_frame__label {
  height: 100%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-right-width: 0;
  vertical-align: middle;
  display: table-cell;
  width: 100%;
  background-color: #eee;
}

.check_frame {
  position: relative;
  top: 0;
  left: 0;
  min-width: 19px;
  min-height: 19px;
}
.check_frame-focus .check_frame__display {
  outline: 2px solid palette("color", "outline");
}
.check_frame__icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.check_frame__display {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
}
.check_frame__input {
  cursor: pointer;
  position: absolute;
  -webkit-user-modify: read-write-plaintext-only;
  -moz-user-modify: read-write-plaintext-only;
  z-index: 1;
  left: 0;
  width: 19px;
  height: 19px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  padding: 0;
  margin: 0;
  border: 0 none;
}
.check_frame__input:focus + .check_frame__display {
  outline: 2px solid palette("color", "outline");
  outline-offset: -2px;
}
.check_frame__display, .check_frame__input {
  top: 0.25em;
}
.check_frame__label {
  margin-left: 24px;
  display: block;
}
.check_frame__input:checked + .check_frame__display .check_frame__icon {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Project

特定ページ専用、効果範囲が限定的な記述。  
コンテンツ内容に密接で、汎用性がなく、機能の付け替えを想定していない。


*/
.form-alert {
  color: #c73d42;
}

.red_label {
  color: palette("red", "alert");
  margin-left: 0.5em;
  line-height: 26px;
  height: 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}

.contact {
  margin-left: auto;
  margin-right: auto;
}
.contact__explanation .ex {
  max-width: 650px;
  margin: auto;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact__explanation .ex {
    margin-bottom: 30px;
  }
  .contact__explanation .ex br {
    display: none;
  }
}
@media screen and (min-width: 1000px), print {
  .contact__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 999px) {
  .contact__head {
    margin-bottom: 30px;
  }
}
.contact__body {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.contact input,
.contact textarea,
.contact select,
.contact option {
  font-size: 16px;
}
@media screen and (min-width: 1000px), print {
  .contact .textarea_frame textarea {
    height: 150px;
  }
}
@media screen and (max-width: 999px) {
  .contact .textarea_frame textarea {
    height: 150px;
  }
}
.contact__gr {
  min-height: 40px;
}
@media screen and (min-width: 1000px), print {
  .contact__gr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 999px) {
  .contact__gr {
    padding-bottom: 25px;
  }
}
.contact__gr-submit {
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1000px), print {
  .contact__gr-submit {
    padding-top: 45px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact__gr-submit {
    padding-top: 45px;
    padding-bottom: 0;
  }
}
.contact__gr-submit .link_arrow-prev {
  position: absolute;
  top: 65px;
  left: 0;
}
.contact__gr input[type=radio],
.contact__gr input[type=checkbox] {
  margin-right: 0.4em;
}
.contact__gr.input_text_name input {
  max-width: 20em;
}
.contact__th {
  font-size: 1.125rem;
  color: #1b1b1b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1000px), print {
  .contact__th {
    min-width: 270px;
    padding-top: 0.5em;
  }
}
@media screen and (max-width: 999px) {
  .contact__th {
    font-size: 1rem;
    padding-bottom: 0.6em;
    margin-bottom: 0;
  }
}
.contact__th .red_text {
  margin-left: 0.2em;
}
.form-confirm .contact__th, ._form_confirm .contact__th, .mw_wp_form_confirm .contact__th, .contact__th-listgroup {
  padding-top: 0;
}
.contact__td {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  color: #1b1b1b;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1000px), print {
  .contact__td {
    padding-left: 30px;
  }
  .contact__td._border {
    border-bottom: 1px solid #929bbb;
  }
}
@media screen and (max-width: 999px) {
  .contact__td {
    padding: 0 0.5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.contact__td ul {
  padding-top: 7px;
}
.contact__td li {
  display: inline-block;
  margin-right: 1em;
}
.contact__td li:not(:last-child) {
  margin-bottom: 0.7em;
}
.contact__td .radio_list .icheck-primary:not(:last-child),
.contact__td .radio_list .mwform-radio-field:not(:last-child) {
  margin-bottom: 0.7em;
}
@media screen and (min-width: 768px) {
  .contact__td .radio_list .icheck-primary,
.contact__td .radio_list .mwform-radio-field {
    display: inline-block;
    margin-right: 1.5em;
  }
  .contact__td .radio_list .icheck-primary:not(:last-child),
.contact__td .radio_list .mwform-radio-field:not(:last-child) {
    margin-bottom: 0.7em;
  }
}
@media screen and (max-width: 767px) {
  .contact__td .radio_list .icheck-primary,
.contact__td .radio_list .mwform-radio-field {
    display: block;
  }
  .contact__td .radio_list .icheck-primary:not(:last-child),
.contact__td .radio_list .mwform-radio-field:not(:last-child) {
    margin-bottom: 1em;
  }
}
.contact__td .radio_list .icheck-primary input[type=radio],
.contact__td .radio_list .mwform-radio-field input[type=radio] {
  display: none;
}
.contact__td .radio_list .icheck-primary label,
.contact__td .radio_list .mwform-radio-field label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.contact__td .radio_list .icheck-primary label:hover,
.contact__td .radio_list .mwform-radio-field label:hover {
  opacity: 0.8;
}
.contact__td .radio_list .icheck-primary input[type=radio] + label::before,
.contact__td .radio_list .mwform-radio-field input[type=radio] + label::before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
          box-shadow: inset 0px 4px 2px 0px rgba(4, 0, 0, 0.1);
  border: 1px solid #eeeeee;
  left: 0;
  top: 50%;
  margin-top: -10px;
}
.contact__td .radio_list .icheck-primary input[type=radio] + label::after,
.contact__td .radio_list .mwform-radio-field input[type=radio] + label::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3e3e3e;
  left: 6px;
  top: 50%;
  margin-top: -2px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__td .radio_list .icheck-primary input[type=radio]:checked + label::after,
.contact__td .radio_list .mwform-radio-field input[type=radio]:checked + label::after {
  opacity: 1;
}
.form-confirm .contact__td, ._form_confirm .contact__td, .mw_wp_form_confirm .contact__td {
  word-break: break-all;
}
.contact__td .contact__gr {
  display: block;
}
.contact__td .contact__th {
  margin-bottom: 0.3em;
}
.contact__td .text_frame-unit input {
  margin-right: 0.5em;
}
@media screen and (min-width: 1000px), print {
  .contact__td .text_frame-unit input {
    width: 93%;
  }
}
@media screen and (max-width: 999px) {
  .contact__td .text_frame-unit input {
    width: 90%;
  }
}
.contact__td .text_frame-md input {
  max-width: 15em;
}
@media screen and (min-width: 1000px), print {
  .contact__td .text_frame-age input {
    width: 10em;
  }
}
.contact__td .text_frame .unit {
  color: #222;
}
@media screen and (min-width: 1000px), print {
  .contact__td .text_frame .unit {
    font-size: 16px;
  }
}
.contact__td .time_frame {
  margin-top: 0.5em;
}
.contact__td .time_frame .cell {
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.contact__td .time_frame select {
  width: 4em;
}
.contact__ex {
  margin-top: 0.5em;
}
.contact__ex-php {
  margin-top: 0;
}
.contact__ex-alert {
  background-color: palette("red", "alert");
  color: #fff;
  padding: 0.3em 1em;
  border-radius: 24px;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.contact__ex-alert.ng-enter {
  opacity: 0;
}
.contact__ex-alert.ng-enter.ng-enter-active {
  opacity: 1;
}
.contact__ex-alert.ng-leave {
  opacity: 1;
}
.contact__ex-alert.ng-leave.ng-leave-active {
  opacity: 0;
}
.contact__ex + .contact__ex-alert {
  margin-top: 0.5em;
}
.contact__foot {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact__foot {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact__foot {
    padding-bottom: 30px;
  }
}
.contact .privacy_policy_area {
  background-color: #fff;
  border: 1px solid #b1b1b1;
}
.contact .privacy_policy_area__scroll {
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .contact .privacy_policy_area__scroll {
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .contact .privacy_policy_area__scroll {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .contact .privacy_policy_area__inner {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact .privacy_policy_area__inner {
    padding: 15px;
  }
}
.contact .privacy_policy_area .title {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.contact .privacy_policy_area .group:not(:last-child) {
  margin-bottom: 2em;
}
.contact .required {
  color: #e44466;
  font-size: 0.875rem;
  font-weight: bold;
  position: relative;
  top: -0.6em;
  left: 0;
}
.contact .required-ml0 {
  margin-left: 0;
}
.contact .explanation {
  margin-top: 15px;
  background: #f5f5f5;
  padding: 26px;
  border-radius: 5px;
}
.contact .explanation p,
.contact .explanation a {
  font-size: 0.813rem;
}
.contact .explanation .link_list li {
  margin-bottom: 0.1em;
}
.contact .button_area {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact .button_area {
    display: block;
    text-align: center;
  }
}
.contact .button_area .link-prev {
  width: 120px;
  border: 0 none;
  height: 50px;
  background-color: #c1c1c1;
  color: #fff;
  padding: 15px;
  cursor: pointer;
}
.contact .button_area .link-prev::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .contact .button_area .link-prev {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact .button_area .link-prev {
    position: relative;
    margin-top: 2.5em;
    display: inline-block;
    width: 80%;
    margin-top: 0.5em;
  }
}
.root .imain_content .contact .button_area .link-prev {
  text-decoration: none;
  border: 0 none;
  padding: 0 0 0 23px;
  display: block;
  background: url("/common/img/icon/arrow/prev.png") 0 center/9px 13px no-repeat transparent;
}
.root .imain_content .contact .button_area .link-prev:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1000px), print {
  .root .imain_content .contact .button_area .link-prev {
    margin-top: 15px;
  }
}
.contact .button_area .btn {
  letter-spacing: 0.02em;
  border: 0 none;
  background-color: #006cc0;
  color: #fff !important;
  text-align: center;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 80px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 360px;
  font-weight: 600;
}
@media screen and (max-width: 999px) {
  .contact .button_area .btn {
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact .button_area .btn {
    width: 100%;
  }
}
.contact .button_area .btn::before {
  content: "";
  display: block;
  width: 80px;
  height: 100%;
  background: -webkit-linear-gradient(45deg, #0860a4 25%, #005ba1 25%, #005ba1 50%, #0860a4 50%, #0860a4 75%, #005ba1 75%, #005ba1);
  background: linear-gradient(45deg, #0860a4 25%, #005ba1 25%, #005ba1 50%, #0860a4 50%, #0860a4 75%, #005ba1 75%, #005ba1);
  background-size: 10px 10px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 999px) {
  .contact .button_area .btn::before {
    width: 60px;
  }
}
.contact .button_area .btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 999px) {
  .contact .button_area .btn::after {
    right: 24px;
  }
}
.contact .button_area .btn:hover {
  opacity: 0.9;
}
.contact .button_area .btn:hover::before {
  width: 0;
}
@media screen and (min-width: 1000px), print {
  .contact .button_area .btn {
    font-size: 18px;
    height: 80px;
    width: 360px;
  }
}
@media screen and (max-width: 999px) {
  .contact .button_area .btn {
    font-size: 18px;
    height: 60px;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .contact .button_area .btn {
    font-size: 16px;
    width: 100%;
    min-width: 180px;
    height: 60px;
  }
}
.contact .birth_group .bgroup {
  display: inline-block;
  margin-right: 0.4em;
}
.contact .birth_group .bgroup .unit {
  padding-left: 0.4em;
  padding-right: 0.4em;
}
.contact .birth_group br {
  display: none;
}
@media screen and (min-width: 1000px), print {
  .contact .radio_list {
    padding-top: 7px;
  }
}
@media screen and (max-width: 999px) {
  .contact .radio_list .icheck-primary,
.contact .radio_list .mwform-radio-field {
    margin-bottom: 10px;
  }
}
.contact .mw_wp_form_complete p {
  display: block;
}
.contact input[type=text] + br {
  display: none;
}
.contact .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.contact .text_frame br {
  display: none;
}
.contact .form_head {
  padding-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
}
.contact .form_container {
  padding-top: 1em;
}

.js-form_content._form_input .confirm_text {
  display: none;
}
.js-form_content._form_confirm .input_text {
  display: none;
}
.js-form_content._form_confirm .contact__gr {
  min-height: 46px;
}
.js-form_content._form_confirm .contact__th,
.js-form_content._form_confirm .contact__td {
  line-height: 1.7;
}
@media screen and (min-width: 1000px), print {
  .js-form_content._form_confirm .contact__th,
.js-form_content._form_confirm .contact__td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .js-form_content._form_confirm .contact__th,
.js-form_content._form_confirm .contact__td {
    font-size: 0.938rem;
  }
}
.js-form_content._form_confirm .select_frame__display {
  display: none;
}
.js-form_content._form_finish h3 {
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1.5;
  color: palette("blue", "h2");
}
@media screen and (min-width: 1000px), print {
  .js-form_content._form_finish h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 999px) {
  .js-form_content._form_finish h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.js-form_content._form_finish .finish_html {
  max-width: 650px;
  margin: auto;
}

.contact_section-form_thanks {
  margin-bottom: 60px;
}

.main_content .mw_wp_form .error {
  display: inline-block;
}

.main_content .mw_wp_form .text_frame-unit .error {
  display: block;
}

.root .mw_wp_form .error {
  background-color: palette("red", "alert");
  color: #fff;
  padding: 0.3em 1em;
  border-radius: 24px;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  margin-top: 0.5em;
}

/**************************
adjust form manage
*/
.contact__td .row,
.contact__td .input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__td .row-prepend,
.contact__td .input-group-prepend {
  margin-right: 0.5em;
}
.contact__td .row-prepend .fa-calendar-alt,
.contact__td .input-group-prepend .fa-calendar-alt {
  font-size: 19px;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-danger {
  color: #ffffff;
  background: palette("red", "alert");
  border-color: palette("red", "alert");
}
.alert-dismissible {
  margin-bottom: 3em;
}
.alert-dismissible h5 {
  font-size: 1.063rem;
}

.form-input .alert,
.form-public .alert {
  margin-top: 0.4em;
  margin-bottom: 0.2em;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

/*******************
ファイルアップローダー
*******************/
.drop_area {
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 10px;
  background-image: url("../img/drop_zone_bg.png");
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 5px solid #ffffff;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.drop_area:hover {
  opacity: 0.7;
}

.drop_area > div {
  text-align: center;
  padding: 10px;
}

.drop_area > div i {
  font-size: 1.8rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5ex;
  color: #8abac2;
}

.drop_area .filelist {
  display: none;
  text-align: left;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  width: 96%;
  margin: auto;
  list-style-type: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
}

.drop_area .filelist .li {
  margin: 0;
  padding: 0;
}

.drop_area .filelist .li label {
  display: block;
  margin: 0;
  font-weight: normal;
  word-break: break-all;
}

.drop_area .filelist .li i {
  margin: 0 0.5ex;
}

.drop_area .file_input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}

.alert-info {
  color: #fff;
  background-color: #16A2B8;
  border-radius: 6px;
  margin-top: 1em !important;
  margin-bottom: 0.5em !important;
  padding-top: 0.4em !important;
  padding-bottom: 0.4em !important;
}

/*******************
フォーム独自のスタイル
*******************/
.js-toggle_radio_button {
  display: block;
}
.js-toggle_radio_button .contact__th {
  padding: 0;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.js-toggle_radio_button .contact__td {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.js-toggle_radio_button .contact__td > * {
  min-height: 0%;
  max-width: 100%;
}
.js-toggle_radio_button .radio_list {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  display: block;
}
.js-toggle_radio_button .js-tglbtn[data-status=false] {
  width: 360px;
  height: 70px;
  background-color: #e8eef6;
  color: #006cc0;
  font-weight: bold;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  position: relative;
  border: 0 none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .js-toggle_radio_button .js-tglbtn[data-status=false] {
    width: 280px;
  }
}
.js-toggle_radio_button .js-tglbtn[data-status=false]::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/plus.png) no-repeat center center/cover;
  margin-right: 6px;
}
.js-toggle_radio_button .js-tglbtn[data-status=false]:hover {
  opacity: 0.7;
}
.js-toggle_radio_button .js-tglbtn[data-status=true] {
  width: 200px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #006cc0;
  border-radius: 25px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: transparent;
}
.js-toggle_radio_button .js-tglbtn[data-status=true]::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 13px;
  background: url(../img/delete.png) no-repeat center center/cover;
  margin-right: 6px;
  margin-bottom: -1px;
}
.js-toggle_radio_button .js-tglbtn[data-status=true]:hover {
  opacity: 0.7;
}
._form_confirm .js-toggle_radio_button {
  display: none;
}

.input-group-append {
  margin-left: 0.5em;
}

hr {
  width: 100%;
}

.dotted_borer hr {
  border-style: dotted;
  max-width: 900px;
}
._form_confirm .dotted_borer + .dotted_borer {
  display: none;
}

.form_midashi {
  font-size: 1.875rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2;
  border-left: 4px solid #006cc0;
  padding-left: 15px;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 999px) {
  .form_midashi {
    font-size: 1.438rem;
  }
}
.form_midashi .num {
  display: inline-block;
  padding-left: 65px;
  position: relative;
  color: #9fbee7;
}
@media screen and (max-width: 999px) {
  .form_midashi .num {
    padding-left: 35px;
  }
}
.form_midashi .num::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #9fbee7;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: 1px;
  font-size: 1.5rem;
}
@media screen and (max-width: 999px) {
  .form_midashi .num::before {
    font-size: 1.25rem;
    left: 9px;
    width: 20px;
    margin-top: -2px;
  }
}

.alert-dismissible {
  background-color: #fff;
  color: #ba062d;
  padding: 1.2em;
  margin-top: 0;
  border: 2px solid #ba062d;
  margin-bottom: 2em;
}

.alert-danger {
  background-color: transparent;
  border: 0 none;
  color: #ba062d;
  padding: 0.5em;
  margin-top: 0;
  margin-bottom: 0;
}

.form-pdf label::after {
  content: "【ファイル形式：PDF】";
  color: #e44466;
  display: block;
  font-weight: normal;
}

.test {
  color: red;
}

/* カレンダー＋時間（テキスト入力） */
.calendar-time_date .contact__td .text_frame input {
  max-width: 260px;
  width: 100% !important;
}

.calendar-time_time .contact__th {
  visibility: hidden;
}
.calendar-time_time .contact__td .text_frame {
  padding-left: 25px;
}
.calendar-time_time .contact__td .text_frame input {
  max-width: 260px;
}
@media screen and (max-width: 999px) {
  .calendar-time_time .contact__th {
    display: none;
  }
}

/* 日付選択(日時) */
@media screen and (min-width: 1100px) {
  .clearfix {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .clearfix .float-left {
    margin-right: 1em;
  }
  .clearfix .custom-select, .clearfix .select_frame {
    min-width: 90px !important;
  }
}
@media screen and (max-width: 1099px) {
  .clearfix .time_input_area .custom-select, .clearfix .time_input_area .select_frame {
    min-width: auto;
  }
}
.clearfix .time_input_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.clearfix .time_input_area__hour .input-group {
  margin-right: 0.5em;
}/*# sourceMappingURL=form.css.map */