/* ===============================================
# 追従CTAバナー
=============================================== */
.cta-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 240px;
  background-color: #00ADAA;
  border-radius: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 30px 13px 30px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.cta-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-banner__close {
  position: absolute;
  top: 3.8px;
  right: 3.8px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: 'Material Symbols Outlined', sans-serif;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner__header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-banner__icon {
  width: 26px;
  height: 23px;
  flex-shrink: 0;
}

.cta-banner__title {
  color: #FFFFFF;
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.cta-banner__button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 1px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.cta-banner__button:hover {
  box-shadow: none;
  transform: translateY(2px);
}

.cta-banner__arrow {
  width: 14px;
  object-fit: contain;
  position: absolute;
  right: 10px;
}

@media (max-width: 767px) {
  .cta-banner {
    width: calc(100% - 90px);
    bottom: 10px;
    left: 50%;
    translate: -50% 0;
    gap: 9px;
  }

  .cta-banner__close {
    top: 8.8px;
    right: 3.8px;
    font-size: 24px;
  }

  .cta-banner__arrow {
    width: 17px;
  }
}