@charset "UTF-8";
/* CSS INFORMATION -================================================= */
/* File name : contact.css
/* Description : お問い合わせページ
/* ================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
    zoom: 90%;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  background-color: #F5FAFF;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2rem;
    font-size: max(2rem, 14px);
  }
}
body img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
body a,
body button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  body a,
  body button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  body a:hover,
  body button:hover {
    opacity: 0.7;
  }
}

section,
main,
header,
footer {
  position: relative;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@supports (aspect-ratio: 1) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.main > * {
  overflow: hidden;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(670 / 750 * 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .inner {
    width: calc(780 / 1240 * 100%);
    max-width: 1000px;
  }
}

.main p,
.main dd {
  line-height: 2.076;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
.header {
  padding: 4rem;
  padding-bottom: 11rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 3rem;
    padding-bottom: 13rem;
  }
}
.header h1 {
  margin-bottom: 8rem;
  width: 30rem;
}
@media screen and (min-width: 768px) {
  .header h1 {
    margin-bottom: 1.5rem;
    width: 26.8rem;
  }
}
.header h2 {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 600;
}
.header h2 .en {
  display: block;
  margin-bottom: 0.5em;
  font-family: "Aleo", serif;
  font-size: 2.2rem;
  color: #e31d1a;
  font-weight: 700;
  transform: scale(0.9, 1);
  line-height: 1;
}
.header h2 .ja {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  line-height: 1.5;
}
.header h2 .ja::before, .header h2 .ja::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.28em;
  left: 0;
  width: 0.27em;
  height: 0.27em;
  /*background: url(../images/img_corner.svg) no-repeat center/contain;*/
}
.header h2 .ja::after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0.28em;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.main {
  padding: 12rem 0;
}

.contact-flow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .contact-flow {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }
}
.contact-flow::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 90%;
  height: 0.3rem;
  border-top: 0.3rem solid #306CC7;
  z-index: -1;
}
.contact-flow li {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0.7em;
  width: calc(180 / 670 * 100%);
  font-size: 107%;
  line-height: 1.3;
  color: #306CC7;
  background: #E0E9F3;
  border-radius: 0.5em;
  border: 0.3rem solid #306CC7;
}
.contact-flow li.is-active {
  color: #ffffff;
  background: url(../images/bg_pattern.jpg) no-repeat center/cover;
}
.contact-text1 {
  text-align: center;
}
.contact-text1 small {
  display: block;
  margin-top: 1em;
  text-align: center;
  color: #306CC7;
}
.contact-text1 small .required {
  margin: 0 0.2em;
}
.contact-form {
  margin-top: 8rem;
}

.required {
  padding: 0 0.3em;
  font-weight: normal;
  color: #ffffff;
  background-color: #E31D1A;
  border-radius: 0.2em;
}

.footer {
  padding: 3.5rem 0;
  border-top: 1px solid #306CC7;
}

.copyright {
  text-align: center;
  font-family: "Lexend Exa", sans-serif;
  font-size: 2.4rem;
  line-height: 1.666;
  color: #306CC7;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 1.6rem;
  }
}

/* ================================================================== */
/*    contact
/* ================================================================== */
@media screen and (max-width: 767px) {
  .contact .contact-text1 {
    text-align: left;
  }
}
/* ================================================================== */
/*    form
/* ================================================================== */
.form_group li:not(:last-child) {
  margin-bottom: 2.461em;
}
.form_group input,
.form_group textarea {
  width: 100%;
  padding: 1em;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
}
.form_group input::-webkit-input-placeholder, .form_group textarea::-webkit-input-placeholder {
  color: #b7b7b7;
}
.form_group input::-moz-placeholder, .form_group textarea::-moz-placeholder {
  color: #b7b7b7;
}
.form_group input:-ms-input-placeholder, .form_group textarea:-ms-input-placeholder {
  color: #b7b7b7;
}
.form_group input::-ms-input-placeholder, .form_group textarea::-ms-input-placeholder {
  color: #b7b7b7;
}
.form_group input::placeholder,
.form_group textarea::placeholder {
  color: #b7b7b7;
}
.form_group textarea {
  line-height: 1.5;
}
.form_group .error {
  margin-top: 0.2em;
  color: #E31D1A;
}

.form_label {
  display: block;
  margin-bottom: 1em;
  font-size: 123%;
  font-weight: 600;
  color: #00184D;
}
.form_label .required {
  margin-left: 0.8em;
  font-size: 80%;
  vertical-align: middle;
}

.form_group1 .form_label {
  padding: 0 0 2.9850746269%;
  border-bottom: 2px #c9c9c9 dotted;
}

.form_label_caution1 {
  display: inline-block;
  margin: 0 0 0 1em;
  color: #fb4063;
  font-size: 2.4rem;
  font-weight: 500;
}

.form_label_caution2 {
  display: inline-block;
  margin: 0 0 0 1em;
  color: #fb4063;
  font-size: 2.4rem;
  font-weight: 500;
  color: #45b5ce;
}

.form_radio {
  font-size: 107%;
}
@media screen and (min-width: 768px) {
  .form_radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.form_radio input {
  display: none;
}
.form_radio span::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.6em;
  height: 1.6em;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
}
.form_radio span::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.35em;
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  background-color: #E31D1A;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form_radio input:checked + span::after {
  opacity: 1;
}
.form_radio label {
  position: relative;
  display: block;
  cursor: pointer;
}
.form_radio label:not(:last-child) {
  margin-bottom: 2.2em;
}
@media screen and (min-width: 768px) {
  .form_radio label:not(:last-child) {
    margin: 0 3em 0 0;
  }
}
.form_radio label span {
  position: relative;
  display: block;
  padding-left: 2.2em;
  line-height: 1.3;
}

.form_input_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form_input_name input {
  width: 38%;
}
.form_input_name input:first-child {
  margin-right: 4%;
}
.form_input_postCode {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_input_postCode > * {
  margin-right: 3%;
}
.form_input_postCode input {
  width: 30%;
}
.form_input_postCode .line {
  width: 2%;
  height: 2px;
  border-top: 1px solid #306CC7;
}

.form_checkbox {
  position: relative;
}
.form_checkbox input[type=checkbox] {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 1.2em;
  height: 1.2em;
}
.form_checkbox_text {
  display: block;
  padding-left: 2em;
  line-height: 2.076;
}
.form_checkbox_text a {
  display: inline;
  color: #306CC7;
  text-decoration: underline;
}

.form_btn {
  margin-top: 10rem;
  text-align: center;
}
.form_btn li:not(:last-child) {
  margin-bottom: 6rem;
}
.form_btn a,
.form_btn button {
  position: relative;
  display: inline-block;
  text-align: center;
  min-width: calc(540 / 670 * 100%);
  margin: 0 auto;
  padding: 1.2em 0;
  padding-right: 2em;
  font-size: 115%;
  background-color: #e31d1a;
  border-radius: 3em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .form_btn a,
  .form_btn button {
    min-width: calc(540 / 1000 * 100%);
  }
}
.form_btn a[disabled],
.form_btn button[disabled] {
  color: #c3c3c3;
  background-color: #878787;
  border-color: #878787;
  pointer-events: none;
}
.form_btn a::after,
.form_btn button::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  width: 1.2em;
  height: 1.2em;
  background-color: #306CC7;
  -webkit-box-shadow: 0 0 0 0.45em #ffffff inset;
          box-shadow: 0 0 0 0.45em #ffffff inset;
  border-radius: 50%;
}
.form_btn_back button {
  min-width: auto;
  padding: 0.5em 1em 0.5em 2.3em;
  color: #306CC7;
  background-color: transparent;
}
.form_btn_back button::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.6em;
  height: 1.6em;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
}
.form_btn_back button::after {
  display: none;
}

/* ================================================================== */
/*    confirm
/* ================================================================== */
.confirm .form_group li {
  padding-bottom: 6rem;
  border-bottom: 1px solid #D9D9D9;
}

/* =====================================================================
    complete
======================================================================*/
.contact-text2 {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 123%;
  font-weight: 600;
  color: #00184D;
}
.contact-text3 {
  font-size: 92%;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-text3 {
    text-align: center;
  }
}

.complete .contact-text1 {
  margin-bottom: 6rem;
}/*# sourceMappingURL=contact.css.map */