/* 共通ボタン／中央寄せ */

/* ラッパで中央寄せ（旧 .button-container 互換） */
.button-center,
.button-container {
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px;
}

/* 共通ボタン（Instagram / メニュー / コース） */
a.social-btn,
a.menu-btn,
a.course-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: 12px 24px;
    border-radius: 9999px;
    background: #c0864f;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    width: fit-content;
    max-width: 90vw;
    white-space: nowrap;
    transition: background-color .3s, transform .2s;
}

a.social-btn:hover,
a.menu-btn:hover,
a.course-btn:hover {
    background: #a46e3d;
    transform: translateY(-2px);
}

@media (max-width:768px) {

    a.social-btn,
    a.menu-btn,
    a.course-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}