@charset "utf-8";

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

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

/* カテゴリータイトル */

.category-title {
    width: 1300px;
    max-width: 96%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.top-title h1 {
    font-size: 27px;
    padding-bottom: 10px;
    padding-top: 20px;
}

.top-title {
    width: 450px;
    border-bottom: 1px solid #333;
}


/* 名前入力 */
.name-area {
    width: 180px;
    margin-left: 20px;
    border-bottom: 1px solid #333;
    position: relative;
}

.name {
    position: absolute;
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    top: 20px;
    left: 0;
}

.sama {
    position: absolute;
    font-size: 15px;
    color: #333333;
    font-weight: bold;
    top: 30px;
    right: 0;
}

/* メニューチェンジ */
.menu-change {
    width: 580px;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    border-bottom: 0.5px solid #333;
}

.menu-change img {
    width: 85px;
    margin-right: 10px;
}

/* カテゴリータイトルここまで */


/* イベントエリアここから */



/* 本文指定 */
.event-area p {
    font-size: 14px;
    color: #222222;
    line-height: 1.5;
}

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

.category-area-01 {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    margin-bottom: 0;
}

.schedule,
.schedule03,
.schedule04 {
    width: 180px;
    position: relative;
}

.schedule02-1,
.schedule02-2 {
    width: 362px;
    margin-bottom: 18px;

    position: relative;
}


.yajirushi {
    width: 25px;
    margin-top: 10px;
}


/* カレンダー */

/* カレンダー1つ */

input[name="schedule-date"] {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    width: 105px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 268px;
    left: 36px;
    z-index: 2;
}

/* カレンダー2つ(02-A）の上 */

input[name="schedule-date-02a-1"] {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    width: 105px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 62px;
    left: 240px;
    z-index: 2;
}

/* カレンダー2つ(02-A）の下 */

input[name="schedule-date-02a-2"] {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    width: 105px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 106px;
    left: 240px;
    z-index: 2;
}

/* カレンダー2つ(02-B） */

input[name="schedule-date-02b"] {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    width: 105px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 80px;
    left: 240px;
    z-index: 2;
}

/* カレンダー2つ(03と04）の上 */

input[name="schedule-date-03-1"] {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    width: 105px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 238px;
    left: 57px;
    z-index: 2;
}

/* カレンダー2つ(03と04）の下 */

input[name="schedule-date-03-2"] {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    width: 105px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 278px;
    left: 57px;
    z-index: 2;
}





/* 小タイトル部分指定 */
.event-title-1 h2 {
    font-size: 23px;
    line-height: 1.1;
    color: #595757;
    background-color: #ffffff;
    padding-bottom: 10px;
    border-bottom: 1px solid #595757;
    border-left: 5px solid #595757;
    margin-top: 10px;
    padding-top: 8px;
    padding-left: 15px;
    width: 100%;
    margin-bottom: 15px;
}


.category-area-02 {
    position: relative;
}

.pdfbtn {
    position: absolute;
    bottom: 100px;
    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;
}



/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}








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

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

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

    /* カテゴリータイトル */

    .category-title {
        width: 100vw;
        max-width: 96%;
        display: flex;
        justify-content: space-between;
        margin-top: 1.538vw;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .top-title h1 {
        font-size: 2.077vw;
        padding-bottom: 0.769vw;
        padding-top: 1.538vw;
    }

    .top-title {
        width: 34.615vw;
        border-bottom: 1px solid #333;
    }


    /* 名前入力 */
    .name-area {
        width: 13.846vw;
        margin-left: 1.538vw;
        border-bottom: 1px solid #333;
        position: relative;
    }

    .name {
        position: absolute;
        font-size: 1.538vw;
        color: #333333;
        font-weight: bold;
        top: 1.538vw;
        left: 0;
    }

    .sama {
        position: absolute;
        font-size: 1.154vw;
        color: #333333;
        font-weight: bold;
        top: 2.308vw;
        right: 0;
    }

    /* メニューチェンジ */
    .menu-change {
        width: 44.615vw;
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
        list-style: none;
        border-bottom: 0.5px solid #333;
    }

    .menu-change img {
        width: 6.538vw;
        margin-right: 0.769vw;
    }

    /* カテゴリータイトルここまで */


    /* イベントエリアここから */



    /* 本文指定 */
    .event-area p {
        font-size: 1.077vw;
        color: #222222;
        line-height: 1.5;
    }

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

    .category-area-01 {
        display: flex;
        justify-content: space-between;
        margin-top: 2.692vw;
        margin-bottom: 0;
    }

    .schedule,
    .schedule03,
    .schedule04 {
        width: 13.846vw;
        position: relative;
    }

    .schedule02-1,
    .schedule02-2 {
        width: 27.846vw;
        margin-bottom: 1.385vw;

        position: relative;
    }


    .yajirushi {
        width: 1.923vw;
        margin-top: 0.769vw;
    }


    /* カレンダー */

    /* カレンダー1つ */

    input[name="schedule-date"] {
        font-size: 1.154vw;
        font-weight: 500;
        color: #000;
        width: 8.077vw;
        background-color: #fff;
        text-align: center;
        position: absolute;
        top: 20.615vw;
        left: 2.769vw;
        z-index: 2;
    }

    /* カレンダー2つ(02-A）の上 */

    input[name="schedule-date-02a-1"] {
        font-size: 1.154vw;
        font-weight: 500;
        color: #000;
        width: 8.077vw;
        background-color: #fff;
        text-align: center;
        position: absolute;
        top: 4.769vw;
        left: 18.462vw;
        z-index: 2;
    }

    /* カレンダー2つ(02-A）の下 */

    input[name="schedule-date-02a-2"] {
        font-size: 1.154vw;
        font-weight: 500;
        color: #000;
        width: 8.077vw;
        background-color: #fff;
        text-align: center;
        position: absolute;
        top: 8.154vw;
        left: 18.462vw;
        z-index: 2;
    }

    /* カレンダー2つ(02-B） */

    input[name="schedule-date-02b"] {
        font-size: 1.154vw;
        font-weight: 500;
        color: #000;
        width: 8.077vw;
        background-color: #fff;
        text-align: center;
        position: absolute;
        top: 6.154vw;
        left: 18.462vw;
        z-index: 2;
    }

    /* カレンダー2つ(03と04）の上 */

    input[name="schedule-date-03-1"] {
        font-size: 1.154vw;
        font-weight: 500;
        color: #000;
        width: 8.077vw;
        background-color: #fff;
        text-align: center;
        position: absolute;
        top: 18.308vw;
        left: 4.385vw;
        z-index: 2;
    }

    /* カレンダー2つ(03と04）の下 */

    input[name="schedule-date-03-2"] {
        font-size: 1.154vw;
        font-weight: 500;
        color: #000;
        width: 8.077vw;
        background-color: #fff;
        text-align: center;
        position: absolute;
        top: 21.385vw;
        left: 4.385vw;
        z-index: 2;
    }





    /* 小タイトル部分指定 */
    .event-title-1 h2 {
        font-size: 1.769vw;
        line-height: 1.1;
        color: #595757;
        background-color: #ffffff;
        padding-bottom: 0.769vw;
        border-bottom: 1px solid #595757;
        border-left: 5px solid #595757;
        margin-top: 0.769vw;
        padding-top: 0.615vw;
        padding-left: 1.154vw;
        width: 100%;
        margin-bottom: 1.154vw;
    }


    .category-area-02 {
        position: relative;
    }

    .pdfbtn {
        position: absolute;
        bottom: 7.692vw;
        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;
    }



}