.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  justify-content: center;
}

.cta_box {
  border: solid 3px var(--color-primary);
  border-radius: 12px;
  padding: 25px 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta_ttl {
  display: flex;
  align-items: center;
}

.cta_ttl span {
  font-size: 28px;
  font-weight: bold;
}

.cta_ttl .icon {
  width: 65px;
  margin-right: 15px;
  filter: invert(56%) sepia(98%) saturate(3261%) hue-rotate(348deg) brightness(99%) contrast(95%);
}

.cta_box hr {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 20px;
  border: none;
  margin: 17px 0px 30px;
}

.cta_txtimg {
  margin-bottom: 5px;
}

.cta_txtimg img {
  width: 100%;
}

.cta_box ul {
  margin-top: 12px;
}

.cta_box a {
  font-weight: normal;
}

@media screen and (max-width: 640px) {
  .cta {
    grid-template-columns: none;
  }
  .cta_box {
    padding: 17px 12px;
  }
  .cta_ttl span {
    font-size: 18px;
    font-weight: bold;
  }
  .cta_ttl .icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }

  .cta_box hr {
    margin: 17px 0;
  }
}

/* cta_btn */

.cta_box .btn_accent.btn_orange a {
  padding: 14px 40px 12px;
}
.cta_box.web .btn_accent.btn_orange a {
  padding: 23px 40px 19px;
}

/* fixed btn */
.vod_fixed_apply {
  display: block;
  position: fixed;
  right: 8px;
  z-index: 1001;
  bottom: 84px;
  right: 2vw;
  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}
.vod_fixed_apply.hidden {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.vod_fixed_apply_btn {
  position: relative;
  background-color: #f76b1f;
  padding: 5px;
  line-height: 1;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 11px;
  border: 2px solid var(--color-white);
  width: 90px;
  height: 90px;
  text-align: center;
  opacity: 0.9;
}
.vod_fixed_apply_btn span {
  line-height: 1.3;
  top: auto;
  transition: top 500ms ease;
}
.vod_fixed_apply_btn.passed span {
  top: 5px;
  position: relative;
  transition: top 500ms ease;
}

.vod_fixed_apply_btn:hover {
  color: var(--color-white);
  opacity: 0.9;
  background-color: var(--color-primary);
}
.vod_fixed_apply_btn::after {
  content: "";
  border-top: solid 2px var(--color-orange-light-100);
  border-right: solid 2px var(--color-orange-light-100);
  position: absolute;
  top: 60px;
  transform: rotate(135deg);
  z-index: 3;
  width: 15px;
  height: 15px;
}

.vod_fixed_apply_btn.passed::after {
  transform: rotate(-45deg);
  top: 18px;
}