/* 10-layout-core.css — global cursor + floating CTA (all pages) */

button,
[type='button'],
[type='submit'],
[type='reset'],
a[href],
label,
summary {
  cursor: pointer;
}

.lp-floating-cta-sp a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .lp-floating-pc-stack {
    align-items: flex-end;
  }
  .lp-floating-line-pc {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 56px;
    min-height: 200px;
    padding: 1.25rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
  }
  .lp-floating-line-pc.lp-floating-line-pc--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .lp-floating-line-pc--line {
    background-color: var(--line-green);
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  }
  .lp-floating-line-pc--line:hover {
    background-color: var(--line-green-hover);
    box-shadow: 0 6px 24px rgba(6, 199, 85, 0.5);
  }
  .lp-floating-line-pc--recruiter {
    background-color: #0f4c81;
    box-shadow: 0 4px 20px rgba(15, 76, 129, 0.35);
  }
  .lp-floating-line-pc--recruiter:hover {
    background-color: #0d3f6b;
    box-shadow: 0 6px 24px rgba(15, 76, 129, 0.45);
  }
  .lp-floating-line-pc__icon {
    flex-shrink: 0;
  }
  .lp-floating-line-pc__icon svg {
    width: 28px;
    height: 28px;
  }
  .lp-floating-line-pc__text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
