/* ==========================================
   共通CSS：CTA
========================================== */
.tk-cta-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 42px 36px;
  background: linear-gradient(135deg, #0177A3 0%, #029ED8 55%, #35B8E8 100%);
  box-shadow: 0 18px 40px rgba(2, 158, 216, 0.22);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.tk-cta-wrap::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width:220px;
  height:220px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  filter: blur(8px);
}

.tk-cta-wrap::after{
  content:"";
  position:absolute;
  bottom:-70px;
  left:-70px;
  width:240px;
  height:240px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  filter: blur(10px);
}

.tk-cta-inner{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tk-cta-copy{
  flex: 1 1 420px;
  min-width: 280px;
}

.tk-cta-label{
  display:inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
}

.tk-cta-title,
.tk-cta-wrap h2{
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .02em;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.tk-cta-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
}

.tk-cta-actions{
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 280px;
}

.tk-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 14px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s ease;
  box-sizing: border-box;
  width: 100%;
}

.tk-cta-btn:hover{
  transform: translateY(-2px);
}

.tk-cta-btn-primary{
  background: #ffffff;
  color: #0177A3 !important;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,0.3);
}

.tk-cta-btn-primary:hover{
  background: #f7fcff;
  color: #016b93 !important;
}

.tk-cta-btn-secondary{
  background: #0f3b52;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

.tk-cta-btn-secondary:hover{
  background: #124862;
  color: #ffffff !important;
}

.tk-cta-note{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  position: relative;
  z-index: 2;
}

.tk-cta-note span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tk-cta-note span::before{
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  font-size: 11px;
  font-weight: 700;
}

.tk-cta-tel{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .03em;
}

.tk-cta-icon{
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 767px){
  .tk-cta-wrap{
    padding: 30px 22px;
    border-radius: 18px;
  }

  .tk-cta-title,
  .tk-cta-wrap h2{
    font-size: 24px;
  }

  .tk-cta-text{
    font-size: 14px;
    line-height: 1.8;
  }

  .tk-cta-actions{
    width: 100%;
    min-width: auto;
  }

  .tk-cta-note{
    font-size: 12px;
  }
}