@charset "UTF-8";
body {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

.wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.layout {
  width: 100%;
}

.main {
  height: 100%;
}

.fv {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.fv .fv__img {
  width: 100%;
  height: 100%;
}
.fv .fv__inner {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 0 32px;
}
.fv .fv__contents {
  background-color: rgba(239, 243, 241, 0.8);
  padding-top: 10px;
  padding-bottom: 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
  height: calc(100% - 44px);
}

.form-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}

.section-head-main {
  color: #2f3942;
  font-size: 2rem;
}

.section-head-sub {
  color: #2f3942;
  font-size: 1.2rem;
  display: block;
  margin-top: 8px;
}

.section-lead-text {
  color: #2f3942;
  font-size: 1rem;
}

.form-wrapper {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.form-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #eff3f1;
}

.main-area {
  height: 100%;
}

/* --------- レスポンシブ --------- */
@media screen and (max-width: 767px) {
  .layout {
    width: 100%;
  }
  .fv {
    height: calc(100vh - 88px - 44px);
  }
  .fv__inner {
    padding: 0 16px;
  }
  .section-head-main {
    font-size: 1.5rem;
  }
  .section-head-sub {
    font-size: 1rem;
  }
}