@charset "utf-8";

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

.main {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}




/* エリア指定 */
.category-area-01 {
    width: 1300px;
    max-width: 96%;
    justify-content: space-between;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.event-title-1 {
    position: relative;
}

.pdfbtn {
    position: absolute;
    bottom: 8px;
    right: 0;
}



/* PDFボタン */

.pdf-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;
}

.pdf-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;
}

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





.content {
    margin-top: 50px;
    padding-left: 15px;
}













/* 1300pxで一括変換 */
@media screen and (max-width: 1300px) {

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

    .main {
        max-width: 100vw;
        margin-left: auto;
        margin-right: auto;
    }




    /* エリア指定 */
    .category-area-01 {
        width: 100vw;
        max-width: 96%;
        justify-content: space-between;
        margin-top: 2.308vw;
        margin-left: auto;
        margin-right: auto;
    }

    .event-title-1 {
        position: relative;
    }

    .pdfbtn {
        position: absolute;
        bottom: 0.615vw;
        right: 0;
    }



    /* PDFボタン */

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

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

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




    .content {
        margin-top: 3.846vw;
        padding-left: 1.154vw;
    }



}