@charset "utf-8";

img {
    pointer-events: none;
    /*===== 画像抜き取り禁止指示==========*/
}

.main {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(242, 245, 245);

}




/* エリア指定 */
.category-area-01,
.category-area-02,
.category-area-03 {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 7px;
    position: relative;

}

.category-area-01 img {
    width: 100%;
    margin-top: 8px;
}

.pdfbtn {
    position: absolute;
    top: 32px;
    right: 85px;
}



/* ボタン */

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 27px;
    border-radius: 4px;
    background-color: #a7a5a4;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 13px;
    position: relative;
}

.button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(45deg) translateY(-50%);
    width: 8px;
    height: 8px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #fff;
}

.button:hover {
    background-color: #c9caca;
    color: #fff;
}










/* 1300pxで一括変換 */
@media screen and (max-width: 1300px) {
    img {
        pointer-events: none;
        /*===== 画像抜き取り禁止指示==========*/
    }

    .main {
        max-width: 99.846vw;
        margin-left: auto;
        margin-right: auto;
        background-color: rgb(242, 245, 245);

    }




    /* エリア指定 */
    .category-area-01,
    .category-area-02,
    .category-area-03 {
        width: 99.846vw;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0.538vw;
        position: relative;

    }

    .category-area-01 img {
        width: 100%;
        margin-top: 0.614vw;
    }

    .pdfbtn {
        position: absolute;
        top: 2.458vw;
        right: 6.528vw;
    }



    /* ボタン */

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 6.912vw;
        height: 2.074vw;
        border-radius: 0.307vw;
        background-color: #a7a5a4;
        color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-size: 0.998vw;
        position: relative;
    }

    .button::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0.768vw;
        transform: rotate(45deg) translateY(-50%);
        width: 0.614vw;
        height: 0.614vw;
        border-width: 0.077vw 0.077vw 0 0;
        border-style: solid;
        border-color: #fff;
    }

    .button:hover {
        background-color: #c9caca;
        color: #fff;
    }

}