/* ========================================
   Common
======================================== */

.cus_content {
    text-align: center;
    line-height: 1.6;
}


/* ========================================
   Heading
   源ノ角ゴシックJP Heavy
======================================== */

.cus_content h2,
.cus_content h3 {
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 22px;
}

.cus_content h3 {
    margin-bottom: 15px;
}


/* ========================================
   Notes
   ヒラギノ角ゴ ProN
======================================== */

.note_cus1,
.note_cus2 {
    font-family:
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        "Yu Gothic",
        "YuGothic",
        "Meiryo",
        sans-serif;

    font-weight: normal;
    font-style: normal;
    font-size: 13px;
}

.note_cus1 {
    margin: 10px auto 50px;
}

.note_cus2 {
    margin: 15px auto 0;
    line-height: 1.4;
}


/* ========================================
   Online Store Buttons
   源ノ角ゴシックJP Heavy
======================================== */

.link_box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.link_box a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 280px;
    min-height: 60px;

    background-color: #898989;
    border-radius: 9999px;

    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 900;
    font-style: normal;

    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.link_box a:hover {
    opacity: 0.8;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

    .link_box {
        flex-direction: column;
        align-items: center;
        gap: 3vw;
    }

    .link_box a {
        width: 68%;
        max-width: none;
        min-height: auto;
        padding: 2.5vw 0;
        font-size: 3vw;
    }

    .cus_content h2,
    .cus_content h3 {
        font-size: 4.2vw;
        letter-spacing: -1px;
    }

    .cus_content h3 {
        margin-bottom: 2vw;
    }

    .note_cus1 {
        margin: 1vw auto 6vw;
        font-size: 3vw;
    }

    .note_cus2 {
        margin: 2vw auto 0;
        font-size: 3vw;
    }
}