@charset "UTF-8";

.s_MiniButton {
    max-width: 100%; /* 見切れ防止 */
    background-color: #ff5b00;
    border: 2px solid transparent;
    padding: 6px;
    text-align: center;
    color: white;
    font-size: 0.875rem;
    text-decoration: none;
    transition: .25s;
}

.s_MiniButton:focus,
.s_MiniButton:hover {
    background-color: #fff;
    border-color: currentColor;
    color: #ff5b00;
    font-weight: bold;
}