<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*---------- ▼ logo ----------*/
.logo {
    transition: .5s;
}
.logo:hover {
    opacity: .7;
}

/*---------- ▼ c-btn ----------*/
.c-btn {
    width: 138px;
    line-height: 1.1;
    padding: 7px 0;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    border-radius: 30px;
    background-color: #c5a974;
    transition: all .5s;
}
.c-btn:hover {
    background-color: #886b2e;
}
@media screen and (max-width: 767px) {
    .c-btn {
        width: 110px;
        padding: 6px 0;
        font-size: 1.0rem;
    }
}

/*  ▼ overlay
------------------------------------- */
.overlay {
    opacity: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.4s linear;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}
.js-overlay {
    opacity: 1;
    visibility: visible;
}
.prod-overlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: visible;
}
</pre></body></html>