@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, dl, dt, dd, ul, ol, li {
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none;
}

/* =======================================
 base style
======================================= */
body {
  background: #fff;
  overflow-x: hidden;
  line-height: 1;
  margin: auto;
  width: 100%;
  max-width: 2000px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.main-wrapper {
  min-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

section {
  position: relative;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #333333;
}

a:hover {
  opacity: 0.8;
}

.inner {
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2), 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.fv {
  background: url(../img/fv_bg.jpg) top center no-repeat;
  background-color: #fff;
  z-index: 10;
}
.fv .fv_inner {
  max-width: 750px;
  margin: 0 auto;
  padding-top: 40px;
}

.fixed_cta {
  position: fixed;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px 0;
  opacity: 0;
  transition: 1s all;
}
.fixed_cta .fixed_inner {
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 30px;
}

.cv_wrap {
  position: relative;
  background-color: #1D2087;
  text-align: center;
  padding-bottom: 50px;
}
.cv_wrap .form_btn {
  margin-bottom: 40px;
}

#formWrap {
  max-width: 700px;
  margin: 0 auto;
  color: #000;
  padding-bottom: 50px;
}

#formWrap .must {
  background-color: #1D2087;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 3px 7px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 1px;
  margin-right: 10px;
  vertical-align: top;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

table.formTable td, table.formTable th {
  border: none;
  display: block;
  width: 100%;
  font-size: 24px;
  line-height: 100%;
}

table.formTable th {
  font-weight: normal;
  text-align: left;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

table.formTable td {
  margin-bottom: 40px;
}

table.formTable td input, table.formTable td select, table.formTable td textarea {
  width: 100%;
  font-size: 24px;
  border: none;
  background-color: #F2F2F2;
  padding: 16px;
  border-radius: 5px;
}

table.formTable td .year, table.formTable td .month, table.formTable td .time_span {
  width: 120px;
  display: inline-block;
  margin-right: 10px;
}

.form_info {
  font-size: 21px;
  display: inline-block;
  margin-top: 5px;
  line-height: 140%;
}

label {
  position: relative;
  cursor: pointer;
  padding-left: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

label::before,
label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

label::before {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  left: 5px;
}

label::after {
  background-color: #666666;
  border-radius: 50%;
  opacity: 0;
  width: 17px;
  height: 17px;
  left: 9px;
}

input:checked + label::after {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.submit_btn {
  background: url(../img/submit_btn.png) top center no-repeat;
  background-size: contain;
  width: 500px;
  height: 100px;
  border: none;
  cursor: pointer;
}
.submit_btn:hover {
  opacity: 0.8;
}

table.formTable .plan_radio {
  margin-top: 30px;
}

table.formTable .sex_radio {
  margin-top: 30px;
}

label.error {
  position: static;
  padding: 20px 0 0 0;
  color: red;
}

.thanks .inner {
  height: 100vh;
}

.thanks {
  height: 100vh;
  position: relative;
}
.thanks .thanks_txts {
  max-width: 750px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.thanks .thanks_txts h1 {
  font-size: 60px;
  text-align: center;
  color: #1D2087;
}
.thanks .thanks_txts p {
  text-align: center;
  margin: 40px 0;
}

.to_top {
  background: url(../img/btn_bg.png) top center no-repeat;
  background-size: contain;
  width: 500px;
  height: 100px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 26px;
  margin: 0 auto;
}
.to_top p {
  vertical-align: middle;
  line-height: 90px;
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
  }
  .fv {
    background: url(../img/fv_bg_sp.jpg) top center no-repeat;
    background-size: cover;
  }
  .fv .fv_inner {
    padding-top: 5.333vw;
  }
  .over_img {
    max-width: inherit;
    width: 115%;
  }
  .fixed_cta {
    padding: 4vw 0;
  }
  .fixed_cta .fixed_inner {
    gap: 4vw;
    padding: 0 4vw;
  }
  .cv_wrap {
    padding-bottom: 6.667vw;
  }
  .cv_wrap .form_btn {
    margin-bottom: 5.333vw;
    padding: 0 20vw;
  }
  .cv_wrap .line_btn {
    padding: 0 20vw;
  }
  #formWrap {
    max-width: 93.333vw;
    padding-bottom: 6.667vw;
  }
  #formWrap .must {
    font-size: 2.133vw;
    padding: 0.4vw 0.933vw;
    border-radius: 0.667vw;
    letter-spacing: 0.133vw;
    margin-right: 1.333vw;
  }
  table.formTable td, table.formTable th {
    font-size: 3.2vw;
  }
  table.formTable th {
    font-size: 3.467vw;
    margin-bottom: 4vw;
  }
  table.formTable td {
    margin-bottom: 5.333vw;
  }
  table.formTable td input, table.formTable td select, table.formTable td textarea {
    font-size: 3.2vw;
    padding: 2.133vw;
    border-radius: 0.667vw;
  }
  table.formTable td .year, table.formTable td .month, table.formTable td .time_span {
    width: 16vw;
    margin-right: 1.333vw;
  }
  .form_info {
    font-size: 2.8vw;
    margin-top: 0.667vw;
  }
  label {
    padding-left: 6.667vw;
    margin-bottom: 2.667vw;
  }
  label::before {
    width: 3.333vw;
    height: 3.333vw;
    left: 0.667vw;
  }
  label::after {
    width: 2.267vw;
    height: 2.267vw;
    left: 1.2vw;
  }
  .visually-hidden {
    height: 0.133vw;
    width: 0.133vw;
    margin: -0.133vw;
  }
  .submit_btn {
    width: 66.667vw;
    height: 13.333vw;
  }
  table.formTable .plan_radio {
    margin-top: 4vw;
  }
  table.formTable .sex_radio {
    margin-top: 4vw;
  }
  label.error {
    padding: 2.667vw 0 0 0;
  }
  .thanks .thanks_txts h1 {
    font-size: 8.8vw;
  }
  .thanks .thanks_txts p {
    font-size: 3vw;
  }
  .to_top {
    width: 66.667vw;
    height: 13.333vw;
    font-size: 3.5vw;
  }
  .to_top p {
    line-height: 12vw;
  }
}/*# sourceMappingURL=styles.css.map */



.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.fv {
    background: url(../img/fv_bk_img.png) top center no-repeat;
    background-size: cover;
}
@media screen and (max-width: 768px) {
.fv {
    background: url(../img/fv_bk_img_sp.png) top center no-repeat;
    background-size: cover;
    background-position: bottom;
}
}