@charset "UTF-8";
.form {
  position: relative;
  /*============================
  STEPデザイン
  /*============================*/
  /* 必須項目表示 */
  /* select */
  /* checkbox */
  /* radiobox */
  /* フォーム入力画面 */
  /* 横並び */
  /* エラーメッセージ */
}
.form.page .contents {
  padding: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .form.page .contents {
    padding: 64px 0 0;
  }
}
.form.page .section-block {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .form.page .section-block {
    margin-bottom: 70px;
  }
}
.form.page .section-block h3 {
  font-size: 1rem;
  font-weight: normal;
}
.form span.caution {
  color: #e80000;
}
.form .formBox {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.form .formBox:not(:last-child) {
  margin-bottom: 50px;
}
.form .is-required:after {
  display: block;
  content: "※必須";
  padding: 0.2em 0;
  font-size: 0.875rem;
  font-weight: normal;
  color: #B90912;
  line-height: 1em;
  vertical-align: middle;
  border-radius: 2px;
}
.form .select-box {
  position: relative;
  display: inline-block;
  background: #F5F5F5;
}
.form .select-box::after {
  position: absolute;
  content: "";
  right: 1em;
  top: 50%;
  z-index: 1;
  width: 9px;
  height: 5px;
  background-color: #0079C1;
  -webkit-clip-path: polygon(50% 5px, 0% 0%, 9px 0%);
          clip-path: polygon(50% 5px, 0% 0%, 9px 0%);
}
.form .select-box select {
  padding: 1em;
  padding-right: 2.5em;
  font-size: 1rem;
  background: #F5F5F5;
  border-radius: 3px;
}
.form .checkbox {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .checkbox input[type=checkbox] {
  padding: 0 !important;
  outline: none;
}
.form .checkbox label {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .checkbox label::before,
.form .checkbox label::after {
  content: "";
  display: inline-block;
}
.form .checkbox label::before {
  width: 23px;
  height: 23px;
  margin-right: 0.5em;
  border: 1px solid #888;
}
.form .checkbox label::after {
  position: absolute;
  top: 50%;
  left: 0.12em;
  width: 19px;
  height: 19px;
  background-color: #17A29B;
  transform: translateY(-50%);
  opacity: 0;
}
.form .checkbox input:checked + label::after {
  opacity: 1;
}
.form .radiobox {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .radiobox input[type=radio] {
  outline: none;
  padding: 0 !important;
  background: transparent !important;
  display: none;
  -webkit-appearance: none;
}
.form .radiobox label {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .radiobox label:not(:last-of-type) {
  margin-right: 1em;
}
.form .radiobox label::before,
.form .radiobox label::after {
  content: "";
  display: inline-block;
}
.form .radiobox label::before {
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
  border: 1px solid #050101;
  border-radius: 50%;
}
.form .radiobox label::after {
  position: absolute;
  top: 50%;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background-color: #17A29B;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
}
.form .radiobox input:checked + label::after {
  opacity: 1;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: #17A29B 2px solid;
  border-radius: 3px;
}
.form input:focus::-moz-placeholder,
.form textarea:focus::-moz-placeholder {
  color: transparent;
}
.form input:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  color: transparent;
}
.form input:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.form input:focus::placeholder,
.form textarea:focus::placeholder {
  color: transparent;
}
.form ::-moz-placeholder {
  color: #888888;
}
.form :-ms-input-placeholder {
  color: #888888;
}
.form ::placeholder {
  color: #888888;
}
.form input.category[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.form .flex-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .flex-box .date-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .flex-box .date-box span {
  display: inline-block;
  margin: 0 0.5em;
}
.form .flex-box .tel-box,
.form .flex-box .zip-box,
.form .flex-box .department-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .flex-box .tel-box input,
.form .flex-box .zip-box input,
.form .flex-box .department-box input {
  width: 6em !important;
}
.form .flex-box .tel-box span,
.form .flex-box .zip-box span,
.form .flex-box .department-box span {
  display: inline-block;
  margin: 0 0.5em;
}
.form .flex-box .postalcode-box {
  display: inline-block;
}
.form .errorBox {
  display: none;
  margin-top: 0.5em;
  font-size: 0.8125rem;
  color: #c74e4e;
  vertical-align: middle;
}
.form .errorBox::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  background: #c74e4e;
  border-radius: 100%;
  vertical-align: middle;
  -webkit-animation: flash 1s linear infinite;
          animation: flash 1s linear infinite;
}
.form .errorBox + .errorBox {
  margin-top: 0;
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.form .form-wrap {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form .form-wrap {
    width: 100%;
  }
}
.form .form-wrap .formTable tr {
  display: flex;
  flex-wrap: wrap;
}
.form .form-wrap .formTable tr th {
  width: 280px;
  background: none;
  border: none;
  line-height: 2;
  position: relative;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .form .form-wrap .formTable tr th {
    padding: 20px 0px 10px;
    width: 100%;
  }
}
.form .form-wrap .formTable tr th span {
  vertical-align: -webkit-baseline-middle;
}
.form .form-wrap .formTable tr td {
  width: 820px;
  border: none;
  line-height: 2;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .form .form-wrap .formTable tr td {
    width: 100%;
    padding: 0px;
    font-size: 0.875rem;
  }
}
.form .form-wrap .formTable tr td input {
  padding: 18px 20px;
  font-size: 1rem;
  background: #F5F5F5;
  border-radius: 1px;
}
@media screen and (max-width: 767px) {
  .form .form-wrap .formTable tr td input {
    font-size: 1rem;
  }
}
.form .form-wrap .formTable tr.only-td {
  justify-content: right;
}
.form .form-wrap .formTable tr.only-td td {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .form .form-wrap .formTable tr.only-td td {
    padding-top: 20px;
  }
}
.form .form-wrap .formTable .requirements-name {
  font-size: 1.625rem;
  padding: 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .form .form-wrap .formTable .requirements-name {
    font-size: 1.375rem;
    padding: 10px 15px;
    margin-bottom: 25px;
  }
}
.form .form-wrap .formTable .requirements-name span {
  margin-left: 1em;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .form .form-wrap .formTable .requirements-name span {
    margin-left: 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .form table {
    display: block;
    width: 100%;
  }
}
.form table th {
  padding: 24px 1em;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .form table th {
    padding: 1em 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .form table td {
    padding: 1em 0;
  }
}
@media screen and (max-width: 767px) {
  .form table tbody,
.form table tr,
.form table th,
.form table td {
    display: block;
    width: 100%;
  }
}
.form form input[type=text], .form form input[type=tel], .form form input[type=email] {
  width: 85%;
  padding: 1em;
  font-size: 1rem;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .form form input[type=text], .form form input[type=tel], .form form input[type=email] {
    width: 100%;
  }
}
.form form input.name, .form form input.furigana, .form form input.zip, .form form input.email, .form form input.phone, .form form input.greduate-name, .form form input.organization, .form form input.department {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .form form input.name, .form form input.furigana, .form form input.zip, .form form input.email, .form form input.phone, .form form input.greduate-name, .form form input.organization, .form form input.department {
    width: 100%;
  }
}
.form form .post input {
  width: 12%;
}
@media screen and (max-width: 767px) {
  .form form .post input {
    width: 25%;
  }
}
.form form .tel input {
  width: 12%;
}
@media screen and (max-width: 767px) {
  .form form .tel input {
    width: 25%;
  }
}
.form form .hyphen {
  display: inline-block;
  padding: 0 0.2em;
}
.form form textarea {
  width: 820px !important;
  height: 15em;
  padding: 1em;
  font-size: 1rem;
  background: #F5F5F5;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .form form textarea {
    width: 100% !important;
  }
}
.form .privacy {
  margin: 0 auto;
  text-align: center;
}
.form .privacy-policy {
  height: 230px;
  padding: 30px;
  text-align: left;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .form .privacy-policy {
    padding: 20px;
  }
}
.form .privacy-policy p {
  font-size: 0.875rem;
}
.form .privacy-policy dl {
  font-size: 0.875rem;
}
.form .privacy-policy dl dt {
  font-weight: 500;
}
.form .privacy-policy dl dd {
  margin-bottom: 1em;
  line-height: 1.5em;
}
.form .privacy-check {
  display: inline-block;
  margin: 20px auto 0;
}
.form .privacy-check .checkbox {
  margin: 0 auto;
  line-height: 1em;
  vertical-align: middle;
  padding: 0.5em;
}
.form .privacy-check label {
  vertical-align: middle;
}
.form .privacy-check a {
  color: #17A29B;
  text-decoration: underline;
}
.form .btn-wrap {
  margin: 88px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .form .btn-wrap {
    margin-top: 40px;
    justify-content: space-between;
    max-width: 350px;
  }
}
.form .btn-wrap-contact {
  margin: 30px 0 0;
}
.form .btn-wrap-contact .btn {
  max-width: 283px;
  color: #0079C1;
  background: #fff;
  border: 1px solid #0079C1;
}
.form .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0.5em;
  width: 100%;
  max-width: 197px;
  border-radius: 2em;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(322deg, rgb(78, 211, 180) 0%, rgb(35, 173, 161) 69%, rgb(23, 162, 155) 100%);
}
@media screen and (max-width: 767px) {
  .form .btn {
    margin: 0 auto 20px;
    width: 100%;
  }
}
.form .btn span[class^=icon-]::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
}
.form .btn span.icon-arrow {
  content: "";
  background: #fff url(/assets/img/common/logo_arrow_g.png) no-repeat center center;
  background-size: 8px 4px;
  margin-left: 0.35em;
}
.form .btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.form .btn:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .form .btn:not(:last-child) {
    margin-right: auto;
  }
}
.form .btn-back {
  color: #17A29B;
  background: none;
}
.form .btn-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 3px solid transparent;
  background: linear-gradient(90deg, rgb(23, 162, 155) 0%, rgb(78, 211, 180) 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.form .btn-back span.icon-arrow {
  content: "";
  background: #1CBB9C url(/assets/img/common/icon/icon_news_arrow.png) no-repeat center center;
  background-size: 8px 4px;
  margin-left: 0;
  margin-right: 0.35em;
  border-radius: 50%;
  transform: rotateY(180deg);
}
.form.confirmation .formTable tr th {
  border-bottom: solid 2px #bbb;
}
@media screen and (max-width: 767px) {
  .form.confirmation .formTable tr th {
    display: inline-block;
    width: auto;
  }
}
.form.confirmation .formTable tr td {
  padding: 24px;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 767px) {
  .form.confirmation .formTable tr td {
    padding: 24px 0;
  }
}
.form.thanks .thanks-box {
  margin: 0 auto;
  max-width: 750px;
}
.form.thanks .thanks-box h3 {
  font-size: 1.375rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .form.thanks .thanks-box h3 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .form.thanks .thanks-box h3 {
    font-size: 1.125rem;
  }
}
.form.thanks .thanks-box h3 + .thanks-txt {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 2;
}
/*============================
STEPデザイン
/*============================*/
.progressbar {
  width: 335px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .progressbar {
    margin: 0 auto 104px;
  }
}

.progressbar img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .progressbar {
    max-width: 270px;
    width: 80%;
  }
}

/*お問い合せ種別--*/
table td .toi_txt {
  margin-bottom: 0.5em;
  font-weight: 500;
}

/*お問い合せ種別--選択*/
table td .toi_syu {
  position: relative;
  width: 300px;
  color: #888888;
  background-color: #F5F5F5;
  border-radius: 3px;
  z-index: 1;
}

table td .toi_syu::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 1px solid #888888;
  border-right: 1px solid #888888;
  z-index: -1;
}

table td select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #888888;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  position: relative;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  table td select {
    font-size: 0.875rem;
  }
}

table td .toi_syu_item {
  padding: 18px 20px;
}

/*お電話へリンク--contact_tel_wrapper--------------*/
.contact_tel_wrapper {
  margin: 144px 0 0;
  padding: 80px 0;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper {
    margin: 80px 0 0;
    padding: 40px 0 80px;
  }
}
.contact_tel_wrapper .contact_tel_inner {
  max-width: 960px;
  margin: 0 auto;
}
.contact_tel_wrapper .tel_ttl {
  margin-bottom: 18px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .tel_ttl {
    margin-bottom: 16px;
    font-size: 1.25rem;
  }
}
.contact_tel_wrapper .tel_time {
  margin-bottom: 56px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .tel_time {
    margin-bottom: 40px;
  }
}
.contact_tel_wrapper .tel_time span {
  margin-right: 12px;
  padding: 2px 4px;
  font-size: 0.75rem;
  color: #fff;
  background: #17A29B;
}
.contact_tel_wrapper .contact_tel_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .contact_tel_box .tel_right,
.contact_tel_wrapper .contact_tel_box .tel_left {
    margin: 0 auto;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .contact_tel_box .tel_left {
    margin-bottom: 30px;
  }
}
.contact_tel_wrapper .contact_tel_box .tel_lead {
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: #17A29B;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .contact_tel_box .tel_lead {
    margin-bottom: 8px;
    font-size: 1.125rem;
  }
}
.contact_tel_wrapper .contact_tel_box .tel_txt {
  padding: 27px 80px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .contact_tel_box .tel_txt {
    padding: 22px 8%;
  }
}
.contact_tel_wrapper .contact_tel_box .tel_txt span.tel_department {
  display: block;
  font-size: 1.125rem;
}
.contact_tel_wrapper .contact_tel_box .tel_txt span.tel_number {
  font-size: 2.5rem;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .contact_tel_box .tel_txt span.tel_number {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 480px) {
  .contact_tel_wrapper .contact_tel_box .tel_txt span.tel_number {
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 374px) {
  .contact_tel_wrapper .contact_tel_box .tel_txt span.tel_number {
    font-size: 2rem;
  }
}
.contact_tel_wrapper .contact_tel_box .tel_txt span.tel_number span {
  margin-right: 5px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .contact_tel_wrapper .contact_tel_box .tel_txt span.tel_number span {
    font-size: 1rem;
  }
}/*# sourceMappingURL=form.css.map */