/*
Theme Name: Saltista
Theme URI: https://saltista.com/
Author: Saltista橋本FC
Description: Saltista橋本FC WordPress テーマ（クラシックエディタ版）
Version: 1.0.0
License: All Rights Reserved
Text Domain: saltista
*/

/* ==============================================
   FLOATING SELECTION BUTTON（トップページ専用）
   ============================================== */
.c-floatBtn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 150;
  display: block;
  background: #111;
  color: #fff;
  font-family: var(--font-ja), sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  padding: 22px 14px;
  transition: opacity 0.25s;
}
.c-floatBtn:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .c-floatBtn {
    font-size: 1.0rem;
    padding: 18px 11px;
  }
}