@charset 'UTF-8';

/* body */
body::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -10;
  background-color: rgb(242, 245, 249);
  mix-blend-mode: multiply;
  opacity: 1;
  transition: 0.2s opacity ease-in-out;
}
.loaded body::before {
  opacity: 0;
}

/* cmp_pagehd */
.cmp_pagehd {
  background-image: url(../images/bg_contact_hd_front.webp), url(../images/bg_contact_hd.webp);
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-width: 768px) and (min-resolution: 1.5dppx) {
  .cmp_pagehd {
    background-image: url(../images/bg_contact_hd_front@2x.webp), url(../images/bg_contact_hd@2x.webp);
  }
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 3), screen and (min-width: 768px) and (min-resolution: 3dppx) {
  .cmp_pagehd {
    background-image: url(../images/bg_contact_hd_front@3x.webp), url(../images/bg_contact_hd@3x.webp);
  }
}
.cmp_pagehd h1 {
  color: rgb(0, 61, 128);
}

/* mailform */
#mailform {
  padding-top: 13rem;
}
@media screen and (min-width: 768px) {
  #mailform {
    display: flex;
  }
  #mailform > .prog {
    flex-basis: 31rem;
  }
  #mailform > form {
    flex-basis: 69rem;
  }
}

/* mailform prog */
#mailform .prog {
  padding: 0 0 calc(58 / 24 * 1em) 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #mailform .prog {
    padding: 0;
    display: block;
  }
}
#mailform .prog li {
  flex-basis: 33%;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgb(0, 61, 128, 0.3);
}
@media screen and (min-width: 768px) {
  #mailform .prog li {
    text-align: start;
  }
}
@media screen and (min-width: 768px) {
  #mailform .prog li:not(:first-of-type) {
    padding-top: calc(58 / 24 * 1em);
  }
}
#mailform .prog li.current {
  color: rgb(0, 61, 128);
}
#mailform .prog li::before {
  content: "";
  margin-bottom: calc(19 / 24 * 1em);
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: calc(19 / 24 * 1em);
  height: calc(19 / 24 * 1em);
  font-size: 160%;
  border-radius: 50%;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  #mailform .prog li::before {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: calc(19 / 24 * 1em);
    display: inline-block;
    font-size: inherit;
  }
}
#mailform .prog li:not(:last-of-type):after {
  content: "";
  display: block;
  width: calc(64 / 24 * 1em);
  height: 1px;
  position: absolute;
  top: calc(19 / 24 * 1em / 2 - 0.5px);
  left: 100%;
  font-size: 160%;
  translate: -50% 0;
  background-color: rgb(35, 24, 21, 0.5);
}
@media screen and (min-width: 768px) {
  #mailform .prog li:not(:last-of-type):after {
    width: 1px;
    height: calc((58 - 6) / 24 * 1em);
    top: calc(100% + 3 / 24 * 1em);
    left: calc(19 / 24 * 1em / 2 - 0.5px);
    font-size: inherit;
    translate: none;
  }
}

/* mailform section */
#mailform section h2 {
  padding: 0.5em 0;
  margin: 0;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgb(0, 61, 128);
}
@media screen and (min-width: 768px) {
  #mailform section h2 {
    padding-top: 0;
    margin-top: -0.5em;
  }
}
#mailform section .desc {
  padding: 0.74em 0;
  font-size: max(1.6rem, var(--min-font-size));
  line-height: 2.48;
}
#mailform section .desc p {
  margin: 0;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  letter-spacing: 0.05em;
  text-align: justify;
  font-feature-settings: "palt";
}
#mailform section .desc ul {
  padding: 0;
  margin: 0;
  font-size: max(1.6rem, var(--min-font-size));
  line-height: 2.48;
  list-style-position: inside;
}
#mailform section .desc li {
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  letter-spacing: 0.05em;
}

/* cmp_button */
.cmp_button {
  padding: 5.4rem 0;
}
@media screen and (min-width: 768px) {
  .cmp_button {
    padding-bottom: 0;
  }
}
