/* ========================================
   Mobile Fixed CTA
   ======================================== */
.landl-fixed-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(27, 72, 163, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 42px rgba(27, 72, 163, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.landl-fixed-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 8px 8px;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  gap: 5px;
}

.landl-fixed-cta__item:active {
  transform: scale(0.97);
}

.landl-fixed-cta__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landl-fixed-cta__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.landl-fixed-cta__label {
  display: block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* 無料体験 */
.landl-fixed-cta__item--primary {
  background: #fdf001;
  color: #1b48a3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

/* 電話 */
.landl-fixed-cta__item--tel {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* アクセス */
.landl-fixed-cta__item--access {
  background: rgba(253, 240, 1, 0.18);
  color: #fdf001;
  border: 1px solid rgba(253, 240, 1, 0.24);
}

.landl-fixed-cta__item:hover {
  filter: brightness(1.03);
}

@media (max-width: 640px) {
  .landl-fixed-cta {
    display: grid;
  }

  body {
    padding-bottom: calc(98px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    margin-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 420px) {
  .landl-fixed-cta {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .landl-fixed-cta__item {
    min-height: 58px;
    border-radius: 14px;
    gap: 4px;
  }

  .landl-fixed-cta__icon,
  .landl-fixed-cta__icon svg {
    width: 20px;
    height: 20px;
  }

  .landl-fixed-cta__label {
    font-size: 11px;
  }
}