@charset "UTF-8";

/* FV */
.fv .fv__inner .fv__txt h2 p:nth-child(2) {
  font-size: 2.2rem;
  padding-bottom: 20px;
}

.pc-on {
  display: none;
}

@media print,
screen and (min-width: 768px) {
  .pc-on {
    display: block;
  }
}

@media screen and (min-width: 520px) {
  .fv .fv__inner .fv__txt h2 p:nth-child(2) {
    font-size: 3.1rem;
    text-align: center;
    padding-bottom: 30px;
  }
}



/* CTA */

.CTA {
  background-color: #ECF2FE;
  display: flex;
 justify-content: center;
 padding: 50px 0;
}

.CTA .btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.CTA .DL-btn {
  position: relative;
  z-index: 10;
  width: 280px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #004896;
  color: #ffffff;
  border: 1px solid #004896;
  border-radius: 10px;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 1.6rem;
  line-height: 22px;
  font-weight: bold;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.CTA .DL-btn::after {
  position: absolute;
  z-index: 11;
  top: 18px;
  right: 50px;
  content: '';
  background: url(../img/download-icon-white.png) no-repeat center / contain;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.CTA .DL-btn:hover {
  background-color: #fff;
  color: #004896;
  border: 1px solid #004896;
}

.CTA .DL-btn:hover::after {
  background: url(../img/download-icon-blue.png) no-repeat center / contain;
  width: 20px;
  height: 20px;
}


.CTA .Free-btn {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 280px;
  height: 60px;
  color: #004896;
  background-color: #FFDF00;
  border-radius: 10px;
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #FFDF00;
  font-size: 1.6rem;
  line-height: 22px;
  font-weight: bold;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.CTA .fa-angle-right {
  padding-left: 0;
}

.CTA i {
  position: absolute;
  top: 20px;
  right: 55px;
}


.CTA .Free-btn:hover {
  background-color: #fff;
  border: 1px solid #004896;
}

@media print,
screen and (min-width: 768px) {
  .CTA{
    padding: 80px 0;
  }
  .CTA .btn-wrap {
    flex-direction: row;
    width: 670px;
    justify-content: space-between;
  }
}

@media screen and (min-width: 992px) {
  .CTA {
    padding: 100px 0;
  }
}