@charset "utf-8";

body {
    color: azure;
}



.all-content {
    max-width: 400px;
    margin: 0 auto 30px;
    background-color: #52585f;
    border-radius: 10px;
    padding: 10px 10px 1px;
}

.live-event {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    padding-top: 10px;
}

/* 切り替えボタン */
.list-btn,
.cal-btn {
    display: none;
}

.month {
    text-align: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.all-day {
    margin-bottom: 60px;
}

footer {
    position: relative;
    color: #333;
    text-align: center;
}

/* スマホサイト各日↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
.name {
    color: #3a3a3a;
}
.all-content {margin-top: 140px;}
.each-day,
.each-day-nothing {
    padding: 5px 0 0;
    width: 90%;
    background-color: rgb(38, 43, 48);
    border-radius: 10px;
    margin: 0 auto;
    border: 2px solid azure;
    max-height: 400px;
    margin-bottom: 20px;
}

.each-day-nothing {
    display: none;
}

.text-in-box {
    padding: 6px;
}

.date-name {
    display: flex;

    margin-bottom: 8px;
}

.date-box {
    display: flex;
}

.date-sat,
.date-sun,
.date {
    padding-left: 3px;
    font-size: 20px;
    color: #f0c5c5;
}

.day-of-week,
.day-of-week-sat,
.day-of-week-sun {
    font-size: 16px;
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
    padding: 4px 0 0 6px;
}

.date-sat,
.day-of-week-sat {
    color: rgb(94, 204, 255);
}

.date-sun,
.day-of-week-sun {
    color: rgb(255, 174, 0);
}

.club {
    font-size: 22px;
    margin: 0 auto;
}

.member {
    line-height: 1.4rem;
    padding-left: 4px;
}




/* PC画面カレンダー ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
@media screen and (min-width:767px) {
/* ナビゲーション */
#g-nav ul{
    width: fit-content;
    display: flex;
    margin: 0 auto;
}
#g-nav ul {
gap: 20px;
}
#g-nav {
    position: relative;
    top: -20px;
    font-size: 24px;
    text-shadow: none;
}
    /* 曜日を各日にちから消す */
    .day-of-week,
    .day-of-week-sat,
    .day-of-week-sun {
        display: none;
    }

    .week-row .day-of-week,
    .week-row .day-of-week-sat,
    .week-row .day-of-week-sun {
        display: block;
        text-align: center;
        font-weight: bold;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 20px;
    }

    /* 予定のない日を出現させる */
    .each-day-nothing {
        display: block;
    }

    .list-btn,
    .cal-btn {
        display: inline;
    }

    .all-content {
        margin-top: 0;
        width: 99%;
        max-width: 1120px;
    }

    .all-day {
        padding: 0 0 10px 0;
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(7, 14%);
        gap: 5px;


    }

    .each-day,
    .each-day-nothing {
        margin: 0;
        border: none;
        border-radius: 4px;
        width: 100%;
    }

    .date-name {
        display: block;
        margin-bottom: 4px;
    }

    .date-box {
        margin-bottom: 4px;
    }

    .date-sat,
    .date-sun,
    .date {
        padding: 0;
    }

    .text-in-box {
        padding: 0 2px 2px;
    }


    .club {
        font-size: 16px;
    }

    .club a:hover {
        opacity: 0.7;
    }

    .member {
        font-size: 13px;
        padding-left: 1px;
        line-height: 1.2rem;
    }

    /* 切り替えボタン */
    .list-btn img,
    .cal-btn img {
        width: 40px;
    }

    .list-btn,
    .cal-btn {
        position: relative;
        left: 20px;
        top: -10px;
        opacity: 0.5;
    }

    /* ホバー時のオパシティ */
    .cal-btn:hover,
    .list-btn:hover {
        opacity: 0.8;
    }

    /* カレンダーがチェックされた状態 */
    #cal:checked~.cal-btn {
        opacity: 1;
    }

    #cal:checked~.cal-btn .cal-btn-label {
        cursor: default;
    }


    /* リストがチェックされた状態 */
    #list:checked~.all-content .each-day-nothing {
        display: none;
    }

    #list:checked~.all-content .day-of-week,
    #list:checked~.all-content .day-of-week-sat,
    #list:checked~.all-content .day-of-week-sun {
        display: block;
    }

    #list:checked~.list-btn .list-btn-label {
        cursor: default;
    }

    #list:checked~.list-btn {
        opacity: 1;
    }

    #list:checked~.all-content {
        max-width: 500px;
    }

    #list:checked~.all-content .all-day {
        padding: 0;
        display: block;
    }

    #list:checked~.all-content .each-day {
        width: 90%;
        border-radius: 10px;
        margin: 0 auto;
        border: 2px solid azure;
        margin-bottom: 20px;
    }

    #list:checked~.all-content .text-in-box {
        padding: 6px;
    }

    #list:checked~.all-content .date-box {
        padding: 4px 0 0 4px;
        margin-bottom: 6px;
    }

    #list:checked~.all-content .club {
        padding-left: 4px;
        font-size: 20px;
    }

    #list:checked~.all-content .member {
        padding-left: 4px;
        font-size: 16px;
        line-height: 1.4rem;
    }

}