/* =========================
   Base
========================= */
.headingBlock.kvHero{
  position: relative;
  width: 100%;
  max-width: 980px; /* PC幅基準 */
  margin: 0 auto;
}

.headingBlock.kvHero > img{
  width: 100%;
  height: auto;
  display: block;
}

.kvHero__overlay{
  position: absolute;
  inset: 0;
  padding: 0;
  pointer-events: none;
  color: #000;
}

.kvHero__copy{
  position: absolute;
  left: 1%;
  top: 13%;
  max-width: 520px;
  font-weight: 700;
  line-height: 1.15;
}

.kvHero__copyMain{
  display: block;
  font-size: clamp(26px, 3vw, 35px);
  color: #3C3C3C;
  font-weight: 700;
}

.kvHero__copySub{
  display: block;
  margin-top: 15px;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 600;
  color: #C52437;
}

.kvHero__points{
  position: absolute;
  left: 2.7%;
  top: 38%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #3D3D3D;
}

.kvHero__point{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
}

.kvHero__point::before{
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: url("/keitai_payment/corporation/img_re/icon_check_circle.png") no-repeat center / contain;
}

.kvHero__pointText{
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 4px 14px;
  box-sizing: border-box;
}

/* =========================
  SP 切替
========================= */
@media (max-width: 767px){
  .kvHero__copy{
    left: 7.6%;
    top: 33.1%;
    max-width: 92%;
  }

  .kvHero__copyMain{
    font-size: 34px;
    font-weight: 700;
  }

  .kvHero__copySub{
    font-size: 18px;
  }

  .kvHero__points{
    left: 11.6%;
    top: 60%;
    width: calc(100% - 56px);
    gap: 7px;
  }
}

/* =========================
   iPad 中間サイズ対応
========================= */
@media (max-width: 1024px) and (min-width: 768px){
  .kvHero__copy{ top: 13%; }
  .kvHero__points{ top: 40%; }
}