.floating {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 218px;
  max-width: 35%;
  height: auto;
}

#kv {
  background-image: url("../../img/request/back.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 485px;
}
#kv .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 425px) {
  #kv .inner {
    flex-flow: column;
    justify-content: flex-start;
    padding-top: 30px;
  }
}
#kv .inner .text .title {
  margin: 25px 0;
  line-height: 1.2;
  color: #004EA2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #kv .inner .text .title {
    letter-spacing: 0.05em;
  }
}
#kv .inner .text .title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
}
#kv .inner .text .title span span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
}
#kv .inner .text .subtitle {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 900;
  margin-bottom: 25px;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
}
#kv .inner .text .subtitle:before, #kv .inner .text .subtitle:after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: #004EA2;
}
#kv .inner .text .subtitle:before {
  left: 0;
  transform: rotate(-35deg);
}
#kv .inner .text .subtitle:after {
  right: 0;
  transform: rotate(35deg);
}
#kv .inner .text .catch {
  display: flex;
  align-items: center;
  color: #004EA2;
  font-size: clamp(16px, 2vw, 18px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}
#kv .inner .text .catch img {
  width: 90%;
}
@media screen and (max-width: 425px) {
  #kv .inner .text .catch img {
    width: 85%;
  }
}
#kv .inner .img {
  width: 50%;
}
#kv .inner .img img {
  width: 100%;
  margin-top: 80px;
  aspect-ratio: 1030/568;
}
@media screen and (max-width: 425px) {
  #kv .inner .img img {
    margin-top: 20px;
  }
}

#kv_arrow {
  margin: -20px auto 40px;
  display: block;
  width: fit-content;
}

#features {
  margin-bottom: 55px;
}
#features h2 {
  font-size: clamp(18px, 2vw, 24px);
  color: #004EA2;
  text-align: center;
  margin-bottom: 50px;
}
#features h3 {
  font-size: 14px;
  font-weight: 900;
  color: #004EA2;
  text-align: center;
  margin: 37px auto 0;
  display: block;
}
#features h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 0;
  margin: 16px auto 21px;
  border-bottom: 2px #004EA2 solid;
}
#features #point {
  display: flex;
  justify-content: space-between;
  counter-reset: pcnt;
}
@media screen and (max-width: 425px) {
  #features #point {
    flex-flow: column;
  }
}
#features #point div {
  width: 30%;
  background-color: #F2F8FF;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  position: relative;
  counter-increment: pcnt;
}
@media screen and (max-width: 425px) {
  #features #point div {
    width: 100%;
    margin-bottom: 50px;
  }
}
#features #point div p {
  display: block;
  color: #004EA2;
  margin: 45px auto 0;
  text-align: center;
  font-weight: 900;
}
#features #point div picture {
  display: block;
  margin: 0 auto;
}
#features #point div picture img {
  margin: 20px auto;
}
#features #point div:before {
  content: counter(pcnt);
  display: block;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 49px;
  height: 64px;
  background-image: url("../../img/request/point.svg");
  background-size: cover;
  background-repeat: no-repeat;
  font-size: clamp(28px, 2vw, 32px);
  color: #fff;
  line-height: 76px;
  text-align: center;
}

#formtitle {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 60px;
}
#formtitle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004EA2;
  clip-path: shape(from 0 0, curve to 100% 0 with 50% 30%, line to 100% 100%, line to 0 100%, line to 0 0, close);
  z-index: -10;
}
#formtitle .content-wrapper {
  position: absolute;
  width: 100%;
  top: 20px;
  left: 0;
}
#formtitle .content-wrapper h1 {
  color: #fff;
  font-size: clamp(36px, 2vw, 42px);
  text-align: center;
  margin-top: 30px;
  letter-spacing: 0.1em;
}
#formtitle .content-wrapper .dl_container {
  border: 1px solid #004EA2;
  width: fit-content;
  margin: 0 auto;
}
#formtitle .content-wrapper .dl_container h3 {
  position: relative;
  color: #004EA2;
  padding: 5px 20px;
  background-color: #fff;
  border-radius: 2px;
}
#formtitle .content-wrapper .dl_container h3:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#formtitle p {
  color: #fff;
  text-align: center;
  line-height: 2;
  margin-top: 1em;
}

.note {
  margin-bottom: 55px;
}
.note p {
  text-align: center;
}

#formblock {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #formblock {
    flex-flow: column;
  }
}
#formblock section {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #formblock section {
    width: 100%;
  }
}
#formblock .form_description {
  background-color: #F2F8FF;
  padding: 50px 0 50px 85px;
}
@media screen and (max-width: 768px) {
  #formblock .form_description {
    padding: 2em 3em;
  }
}
@media screen and (max-width: 425px) {
  #formblock .form_description {
    padding: 2em;
  }
}
#formblock .form_description h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: #004EA2;
  margin-bottom: 20px;
}
#formblock .form_description h3 {
  font-size: 14px;
  font-weight: 900;
  color: #004EA2;
  display: block;
}
#formblock .form_description h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 0;
  margin: 16px 0 21px;
  border-bottom: 2px #004EA2 solid;
}
#formblock .form_description img {
  width: 80%;
}
#formblock .form_description p {
  margin-top: 40px;
  margin-bottom: 20px;
}
#formblock .form_description ul {
  color: #004EA2;
  line-height: 2;
}
#formblock .form_description ul li {
  position: relative;
  padding-left: 30px;
}
#formblock .form_description ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../../img/request/li_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 425px) {
  #formblock .form_description ul li:before {
    letter-spacing: -0.01em;
  }
}
#formblock .form_description .desc {
  margin-top: 50px;
}
#formblock .form_description .desc p {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-right: 1.5em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 425px) {
  #formblock .form_description .desc p {
    margin-right: 0;
  }
}
#formblock .form_body {
  padding: 45px;
  box-shadow: 2px 2px 8px gray;
  border-radius: 19px;
}
@media screen and (max-width: 425px) {
  #formblock .form_body {
    padding: 40px 10px;
  }
}

#ctaarea {
  width: fit-content;
  margin: 80px auto;
  padding: 0 3em;
}
@media screen and (max-width: 425px) {
  #ctaarea {
    padding: 0 1em;
  }
}
#ctaarea .c-form-cta-btn {
  width: fit-content;
  margin: 55px auto 0;
}

.blinking {
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  -moz-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
iframe {
  height: 1000px;
}
@media screen and (max-width: 425px) {
  iframe {
    height: 950px;
  }
}

/*# sourceMappingURL=page-request001.css.map */
