@charset "UTF-8";
/* -------------------------------------
コンタクト
------------------------------------- */
.form-note {
  margin-bottom: 65px;
}
.form-note__text,
.contact-confirm__text,
.comp-text {
  font-size: 13px;
  text-align: center;
  line-height: 1.75;
}
.form-note__text:not(:last-child) {
  margin-bottom: 22px;
}
.form-note__text a {
  text-decoration: underline;
}

/* フォーム */
.form {
  color: #4d4d4d;
  width: 100%;
}
.form__row--mb {
  margin-bottom: 12px;
  padding-bottom: 22px;
}
.form__row {
  display: block;
}

.form__row--corporation {
  max-width: 470px;
}

.form__row--type02 {
  padding-bottom: 0;
  margin-bottom: 100px;
}
.form__row--type03 {
  padding-bottom: 0;
  margin-bottom: 50px;
}
.form__field-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.form__row--name {
  max-width: 340px;
}
.form__row--name .form__field-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.form__field--input-txt input {
  font-size: 12px;
  background-color: #fff;
  width: 100%;
  height: 42px;
  padding: 0 15px;
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
}
.form__field--txtarea textarea {
  background-color: #fff;
  width: 100%;
  height: 235px;
  padding: 7px 15px;
  border: 1px solid #e6e6e6;
}
::placeholder {
  color: #b2b2b2;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #b2b2b2;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #b2b2b2;
}
.form__field--select {
  position: relative;
}
.form__field--select select {
  color: #152828;
  font-size: 12px;
  background-color: #fff;
  width: 100%;
  height: 42px;
  padding-left: 15px;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}
.form__field-wrap--select {
  position: relative;
  z-index: 2;
}
.form__field-wrap--select::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #222;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 10px;
  cursor: pointer;
  pointer-events: none;
  z-index: 0;
}
.mw_wp_form_confirm .form__field-wrap--select::after {
  display: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
.form__label {
  margin-bottom: 5px;
  min-width: 204px;
  display: flex;
  align-items: center;
}
.form__label--type02 {
  padding-top: 8px;
}
.form__label label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
.form__field {
  width: 100%;
  max-width: 556px;
  box-sizing: border-box;
}
.form__field--type02 {
  max-width: initial;
}
.form__label-req {
  padding: 3px 19px;
  color: #fff;
  background-color: #c65c26;
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-left: 20px;
  line-height: 1;
}
.form__field--txtarea textarea {
  color: #152828;
  font-size: 12px;
  box-sizing: border-box;
}
.form__label label,
.form__field--input-txt input,
.form__field--txtarea textarea {
  color: #152828;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  border-radius: 5px;
}

.check__text {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

[type="submit"] {
  width: 100%;
  /*padding: 12px 5px 12px 5px;
  border: none;*/
  cursor: pointer;
}

.form__submits-item {
  width: 100%;
  max-width: 300px;
  height: 60px;
  padding: 0;
  background: #285ecf;
  border: 1px solid #285ecf;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 0.135em;
  position: relative;
  transition: 0.4s;
}
.form__submitsBtn {
  width: 100%;
  max-width: 243px;
  position: relative;
}
.form__submitsBtn::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background-image: url(../imgs/contact/btn-ancWhite.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
  transition: 0.4s;
}

.form__submitsBtn:hover .form__submits-item {
  background-color: #fff;
  color: #285ecf;
}

.form__submitsBtn:hover::after {
  background-image: url(../imgs/contact/btn-ancGray.png);
}
.form__submits-item--back.gr_btn {
}
.form__submits-item--submit.gr_btn {
}
[type="reset"] {
  width: 100%;
  padding: 12px 5px 12px 5px;
}
.flex-submits {
  display: flex;
  justify-content: center;
}
.form__submits {
  font-size: 15px;
  width: 100%;
  max-width: 244px;
  margin: 0 auto;
  display: block;
  color: #4d4d4d;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.form__submits.reset {
  margin-right: 30px;
}
.form__submits:hover {
}
.mw_wp_form .error {
  color: #ff0000;
  font-size: 11px !important;
  padding-top: 10px;
  width: 100%;
  cursor: auto;
  display: block;
}
.form__conf .mw_wp_form .error {
  padding-top: 0;
}

.decoration__link {
  display: inline;
  color: #0098cf;
  text-decoration: underline;
}

.tel__text {
  color: #152828;
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.75;
}

/*確認画面*/
.confirm {
  padding-top: 90px;
}
.confirm .form {
  padding-top: 0;
}

.confirm .attension__text {
  margin-bottom: 70px;
}
.confirm .section-title {
  padding-bottom: 0;
}

.mw_wp_form_confirm .form__field-wrap--select {
  font-size: 14px;
  line-height: 1.75;
}
.mw_wp_form_confirm .form__field--select::after {
  display: none;
}
.mw_wp_form_confirm .form__field-wrap {
  font-size: 14px;
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.mw_wp_form_confirm .form__label--type02 {
  padding-top: 0;
}
.mw_wp_form_confirm .form__submits {
  width: 100%;
  max-width: 508px;
  display: flex;
  justify-content: space-between;
}

.mw_wp_form_confirm .tel__text {
  display: none;
}

.mw_wp_form_confirm .form__submitsBtn {
  width: 48.5%;
  max-width: 243px;
}
.mw_wp_form_confirm .form__submits-item {
}
.mw_wp_form_confirm .check__textWrap {
  display: none;
}

.contact__confirm .form__submits {
  width: 100%;
  max-width: 528px;
  display: flex;
  justify-content: space-between;
}
.contact__confirm .form__submits-item {
  width: 48.5%;

  max-width: 244px;
}
.contact__confirm .check__textWrap {
  display: none;
}

/* .form__submits-item--back.gr_btn:hover {
  animation: arrow--type02 0.5s;
} */
@keyframes arrow--type02 {
  50% {
    background-position: center left 7%;
  }
  100% {
    background-position: center left 10%;
  }
}

.mw_wp_form_confirm .form__submitsBtn.form__submitsBtn--back::before {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background-image: url(../imgs/contact/btn-ancWhite.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  z-index: 1;
}
.mw_wp_form_confirm .form__submitsBtn.form__submitsBtn--back:hover::before {
  background-image: url(../imgs/contact/btn-ancGray.png);
}
.form__submitsBtn.form__submitsBtn--back::after {
  display: none;
}

/*完了画面*/
.comp-title {
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 50px;
}
.comp-text span.indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 12px;
}
.comp__btn {
  display: block;
  margin: 53px auto 0 auto;
}
/* フォーム */

@media screen and (max-width: 750px) {
  .form__row--mb.form__row--type02 {
    margin-bottom: 46px;
  }
  .form__row--mb.form__row--type03 {
    margin-bottom: 38px;
  }
  .form__row--corporation {
    max-width: 100%;
  }
  .form__row--name {
    max-width: 100%;
  }
  .form__row--name .form__field-wrap {
    gap: 3%;
  }
  .form__row--mb {
    margin-bottom: 30px;
    padding-bottom: 0;
  }
  .form__field {
    width: 100%;
    max-width: initial;
  }
  .form__label {
    margin-right: 0;
    margin-bottom: 7px;
  }
  .form__label--type02 {
    padding-top: 0;
  }
  .form__submits {
    max-width: 212px;
  }
  [type="submit"] {
    font-size: 13px;
    width: 100%;
    padding: 10px 11px;
    max-width: 100%;
  }
  .form__submitsBtn::after {
    top: 52%;
    right: 12%;
  }
}

@media screen and (max-width: 500px) {
}

@media screen and (max-width: 480px) {
  .mw_wp_form_confirm .form__submits {
    max-width: initial;
    display: block;
  }
  .form__submitsBtn {
    width: 100%;
    max-width: 212px;
    margin: 0 auto 15px;
  }
  .mw_wp_form_confirm .form__submitsBtn {
    width: 100%;
  }
  .form__submitsBtn:last-child {
    margin-bottom: 0;
  }

  .mw_wp_form_confirm .form__submits-item {
    width: 100%;
  }

  /* .mw_wp_form_confirm .form__submits-item--back {
    margin-bottom: 15px;
  } */

  .contact__confirm .form__submits {
    max-width: initial;
    display: block;
  }
  .contact__confirm .form__submits-item {
    width: 100%;
    max-width: 212px;
    margin: 0 auto;
  }
  /* .contact__confirm .form__submits-item--back {
    margin-bottom: 15px;
  } */
}

@media screen and (max-width: 375px) {
  .heading {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "pic"
      "en"
      "jp";
    gap: 13px;
  }

  .heading__pic {
    grid-area: pic;
  }

  .heading__en {
    grid-area: en;
    justify-self: start;
  }

  .heading__jp {
    grid-area: jp;
    justify-self: start;
  }
}

@media screen and (min-width: 769px) {
}
