.fv {
  background: url("/img/common/fv-standard.webp") no-repeat center right / contain;

  .copy {
    font-weight: bold;
    color: var(--bs-white);

    span {
      display: inline-block;
      margin-top: 5px;
      padding: 3px 5px;
      font-size: min(48px, 3.5vw);
      background: linear-gradient(90deg, #7b9cdd .01%, #e890da 100%);
    }
  }

  .copy-sub {
    display: inline-block;
    font-size: min(24px, 2vw);

    font-weight: bold;
    color: var(--color-navy);
    background: #ffffff;
  }

  .img {
    width: 55%;

    img {
      width: 100%;
    }
  }

}

.fv-cost-list {
  display: flex;
  justify-content: left;
  gap: 0 10px;
  padding: 0;

  & + .text {
    font-size: 12px;
    color: var(--bs-gray);
  }
}

.fv-cost-item {
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  color: var(--bs-white);
  background: var(--color-gold);
}

@media (width <=960px) {

  .fv {
    padding: 0 5%;

    .copy {
      span {
        font-size: 3.25vw;
      }
    }

    .copy-sub {
      font-size: 2.5vw;
    }

    .img {
      width: 80%;
    }
  }
}


@media (width <=600px) {

  .fv {
    padding-bottom: 65vw;
    background-position: bottom center;

    .copy {
      span {
        font-size: 7vw;
      }
    }

    .copy-sub {
      font-size: 4vw;
    }
  }

  .fv-img {
    margin: -10vw auto 0;
    width: 96%;

    img {
      width: 100%;
    }
  }

  .fv-copy {
    font-size: 6vw;
  }

  .fv-copy-sub {
    font-size: 3vw;
  }

  .fv-cost-list {
    margin-left: 10px;

    & + p {
      margin-left: 10px;
      margin-bottom: 0;
    }
  }

}