/* ボタンを右端に固定するためのスタイル */
.fixed-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button {
    background-color: #fdf138;
    color: #06c1ff;
    writing-mode: vertical-rl;
    text-align: center;
    padding: 30px 15px; /* 上下の余白を大きめに設定（元が20px 5pxなので10pxずつ増加） */
    font-size: 19px;
    border: none;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    width: 60px; /* 幅を10px増加（元が50px） */
    white-space: nowrap; /* テキストが縦に並ぶため、幅を固定 */
    font-weight: 600;
}

.button:hover {
    background-color: #0899b2;
}

/* 640px以下の場合、ボタンを非表示にする */
@media (max-width: 640px) {
    .fixed-buttons {
        display: none;
    }
}