.fixed-link {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
}

.fixed-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-right: -4px;
  padding: 14px 22px 14px 18px;
  border-radius: 12px 0 0 12px;
  background: #203ba0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.5;
  writing-mode: vertical-rl;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
  letter-spacing: 5px;
}

.fixed-link a:hover {
  transform: translateX(-4px);
  color: #fff;
  opacity: 0.9;
}

.fixed-link a img {
    margin-left: 2px;
}

.fixed-link.is-corp a {
  background: #01a99d;
}

@media (max-width: 959px) {
  .fixed-link {
    display: none;
  }
}