/* ==========================================
   理由ページ見出し専用CSS（改名版）
========================================== */
.tk-rh-heading{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin: 0 0 28px;
  font-family: "Noto Sans JP", sans-serif;
}

.tk-rh-number{
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #029ED8 0%, #35B8E8 100%);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(2, 158, 216, 0.24);
}

.tk-rh-body{
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 4px;
}

.tk-rh-label{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #029ED8;
  text-transform: uppercase;
}

.tk-rh-label::after{
  content:"";
  display:block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #029ED8 0%, rgba(2,158,216,0.15) 100%);
  border-radius: 999px;
}

.tk-rh-title{
  margin: 0;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: .02em;
}

@media (max-width: 767px){
  .tk-rh-heading{
    gap: 14px;
    margin-bottom: 22px;
  }

  .tk-rh-number{
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 19px;
  }

  .tk-rh-title{
    font-size: 22px;
    line-height: 1.5;
  }
}