@charset "UTF-8";
.main_wrap {
  margin: 0 20px;
}

.breadcrumbs {
  margin-bottom: 0;
}

.contact_form_wrap {
  margin-bottom: 70px;
  background-color: #f7f7f7;
  padding: 0 20px;
}

.contact_massage {
  margin: 70px auto 40px;
  color: #391e88;
  font-size: 1.6rem;
}

label {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.6rem;
}

.required {
  color: #391e88;
  font-size: 1.3rem;
}
.required::before {
  content: "*";
  font-size: 0.6rem;
  vertical-align: text-top;
}

.radio_area {
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
}
@media screen and (max-width: 767px) {
  .radio_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .radio_area .radio_item {
    margin-bottom: 1rem;
  }
}
.radio_area .radio_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 1.5rem;
}
.radio_area input {
  margin-right: 0.6rem;
}

.text_box {
  background-color: #ffffff;
}

.contact_form_wrap {
  padding: 90px;
}
@media screen and (max-width: 767px) {
  .contact_form_wrap {
    padding: 30px;
  }
}

.form_item_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-bottom: 32px;
}

.text_box,
select {
  width: 30vw;
  height: 40px;
  padding-left: 1rem;
  border: 1px solid #333333;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .text_box,
select {
    width: 100%;
  }
}

textarea {
  width: 50vw;
  min-height: 220px;
  border: 1px solid #333333;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  textarea {
    width: 100%;
  }
}

/*=========================
btn
==========================*/
.btn button {
  display: inline-block;
  width: 200px;
  height: 54px;
  border: solid 1px #ffffff;
  border-radius: 50px;
  font-size: 1.4rem;
  line-height: 53px;
  letter-spacing: 0.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__more {
  margin: 0 auto;
  text-align: center;
}
.btn__more button {
  position: relative;
  border: none;
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  background-image: -webkit-linear-gradient(45deg, #642390, #19074a);
  background-image: linear-gradient(45deg, #642390, #19074a);
}
.btn__more button::after {
  content: "▶";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 2rem;
  font-size: 1rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn__more button:hover {
  background-image: -webkit-linear-gradient(165deg, #642390, #19074a);
  background-image: linear-gradient(285deg, #642390, #19074a);
}
.btn__more button:hover::after {
  right: 1.6rem;
}

@-webkit-keyframes btn_anime {
  0% {
    outline-offset: 0;
  }
  100% {
    outline-offset: -5px;
  }
}

@keyframes btn_anime {
  0% {
    outline-offset: 0;
  }
  100% {
    outline-offset: -5px;
  }
}
.contact {
  display: none;
}