@charset "UTF-8";
@media screen and (min-width:961px) {
    .btn-outline {
        background: transparent;
        color: #B0A162;
        border: 1px solid #B0A162;
        padding: 16px 24px;
        font-size: 12px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        margin: 40px 0;
        text-align: center;
        display: block;
        margin: 40px auto;
        width: 200px;
        border-radius: 80px;
    }
    .btn-outline:hover {
        background: #B0A162;
        color: white;
        transform: translateY(-2px);
    }
    .btn-outline:active {
        transform: translateY(0);
    }
    .btn_text-outline {
        color: #B0A162;
        font-size: 12px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .btn_text-outline:hover {
        color: #ded09c;
    }
    .btn_text-outline:active {
        transform: translateY(0);
    }
}
/* ---------------------------------------------------------------------for sp--------------------------------------------------------------------- */
@media screen and (max-width:960px) {
    .btn-outline {
        background: transparent;
        color: #B0A162;
        border: 1px solid #B0A162;
        padding: 8px 24px;
        font-size: 12px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        text-align: center;
        display: block;
        margin: 40px auto;
        border-radius: 80px;
    }
    .btn-outline:hover {
        background: #B0A162;
        color: white;
        transform: translateY(-2px);
    }
    .btn-outline:active {
        transform: translateY(0);
    }
    .btn_text-outline {
        color: #B0A162;
        font-size: 12px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .btn_text-outline:hover {
        color: #ded09c;
    }
    .btn_text-outline:active {
        transform: translateY(0);
    }
}