.fixed-side-btns {
  position: fixed;
  right: 0px;
  bottom: 120px; /* TOPボタンの上に来るように */
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 9999;
}

/* ボタン共通 */
.fixed-side-btns a {
  display: block;
  width: 65px;
  /*ボタン画像サイズに合わせて調整*/height: 255px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.fixed-side-btns a:hover {
  transform: translateY(-2px) scale(1.05);
}

/* 画像フィット */
.fixed-side-btns img {
  width: 65%;
  height: auto;
  margin: 2rem auto 1rem;
}

.fixed-side-btns p {
    writing-mode: vertical-rl; /* 縦書き（右から左へ行送り） */
    text-orientation: upright; /* 文字を直立させる */
    color: #FFFFFF;
    font-size: 1.5rem;
    margin: 0 auto;
}

.line-btn {
    background-color: #00bb00;
    text-align: center;
}

.contact-btn {
    background-color: #cf5522;
    text-align: center;
}

/* デスクトップだけ表示（SPは非表示） */
@media (max-width: 399px) {
  .fixed-side-btns { display: none; }
}
