@charset "UTF-8";
.select-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .select-flex {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .select-flex {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

input[type=text],
input[type=email] {
  background: #f3f3f3;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  background: #f3f3f3;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 140px;
}

span.require {
  background: #5183da;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 3px 8px;
  margin-left: 16px;
}
span.require.any {
  border: 1px solid #5183da;
  background: #fff;
  color: #5183da;
}

/* 基本のセレクトボックスのカスタマイズ */
.select {
  background: #f3f3f3;
  height: 40px;
  width: 170px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  border: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .select {
    margin-bottom: 10px;
  }
}
.select::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #b3b3b3;
  border-right: 2px solid #b3b3b3;
  z-index: -1;
}

select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  position: relative;
}

label ~ label {
  margin-left: 15px;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 8px;
}

/* ラジオボタン */
.radio-btns input[type=radio] {
  display: none;
}

.radio-btns label {
  position: relative;
  padding-left: 25px;
}

.radio-btns input[type=radio] + label::before {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  left: 0;
  top: 0;
}

.radio-btns input[type=radio] + label::after {
  position: absolute;
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2e3175;
  left: 3px;
  top: 3px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.radio-btns input[type=radio]:checked + label::after {
  opacity: 1;
}

/* ベースのチェックボックス */
.check-btns input[type=checkbox] {
  display: none;
}

.check-btns label {
  position: relative;
  padding-left: 25px;
}

.check-btns input[type=checkbox] + label::before {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #ddd;
  left: 0;
  top: 0;
}

.check-btns input[type=checkbox] + label::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 3px solid #c2004a;
  border-bottom: 3px solid #c2004a;
  left: 4px;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.check-btns input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.privacy_policy {
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact_agree {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.contact_agree a {
  text-decoration: underline !important;
}

.contact_agree .check {
  margin-left: 16px;
}

.form_btn {
  margin-top: 20px;
  text-align: center;
}

.form_btn input[type=submit].confirm:disabled {
  background: #dfdfdf !important;
}

.form_btn input[type=submit].confirm {
  display: inline-block;
  max-width: 420px;
  width: 100%;
  padding: 20px 0;
  background: #003289 !important;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 50px;
}

.form_btn .backBtn {
  background-color: #EEE;
  font-size: 2.4rem;
  border-radius: 50px;
  padding: 20px ;
  width: 30%;
  margin-left: 10px;
}

.form-flex .to_top {
  background-color: #EEE;
  border-radius: 50px;
  padding: 20px ;
  display:inline-block;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .form_btn input[type=submit].confirm {
    width: 100%;
    font-size: 1.6rem;
  }
}

.form-area {
  margin: 60px auto 80px;
}
.form-area h2 {
  font-size: clamp(20px, 5vw, 26px);
  text-align: center;
  margin-bottom: 40px;
}
.form-area h2 > span {
  font-size: clamp(16px, 5vw, 24px);
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .form-area {
    margin: 20px 0 60px;
  }
}

.form-block {
  margin-bottom: 40px;
}

p.label {
  margin-bottom: 10px;
}

.form-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .form-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-flex .col-left {
  width: 40%;
  padding-right: 40px;
}
.form-flex .col-left h2 {
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .form-flex .col-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.form-flex .col-left .example {
  border: 3px solid #003289;
  border-radius: 10px;
  padding: 30px;
}
.form-flex .col-left .example h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.form-flex .col-left .example li {
  margin-bottom: 10px;
}
.form-flex .col-right {
  width: 60%;
  border: 1px solid #b3b3b3;
  padding: 40px;
}
.form-flex .col-right .form-block {
  margin-bottom: 20px;
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .form-flex .col-right .form-block {
    display: block;
  }
}
.form-flex .col-right p.label {
  margin-right: 20px;
  margin-bottom: 0;
  width: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form-flex .col-right p.label {
    width: 100%;
    margin-bottom: 10px;
  }
}
.form-flex .col-right p.label span.require {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .form-flex .col-right p.label span.require {
    position: relative;
    right: inherit;
    left: 10px;
  }
}
.form-flex .col-right .input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form-flex .col-right .select {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form-flex .col-right {
    width: 100%;
    padding: 20px;
  }
}
.form-flex p {
  margin-bottom: 40px;
}
.form-flex p a {
  text-decoration: underline;
}/*# sourceMappingURL=contact.css.map */