@charset "UTF-8";

/*===== ABOUT =====*/
/*【年間活動予定】*/
.annual-schedule {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.monthly-schedule {
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border: 1px solid white;
    border-radius: 15px;
    padding: 10px;
    margin: 10px;
    font-size: 1.0rem;
}

.monthly-schedule ul {
    text-align: left;
    list-style-position: inside;
}


/*【自主制作映画ができるまで】*/
.zigzag-container {
    display: flex;
    flex-direction: column;
}

.zigzag-section {
    width: 100%;
    height: auto;
}

.zigzag-item-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 18%;
    margin-top: 20px;
    background-color: black;
    border-radius: 15px;
    position: relative;
}

.zigzag-item-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 18%;
    margin-top: 20px;
    background-color: black;
    border-radius: 15px;
    position: relative;
}

.zigzag-item-left::before {
    content: '';
    position: absolute;
    border-radius: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-01.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.3;
    z-index: 2;
}

.zigzag-item-right::before {
    content: '';
    position: absolute;
    border-radius: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-01.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.3;
    z-index: 2;
}

.zigzag-icon {
    width: 200px;
    height: auto;
    padding: 10px;
}

.zigzag-sentence {
    font-size: 1.0rem;
    line-height: 1.0rem;
    padding: 10px;
}

.right-arrow {
    width: 200px;
    height: auto;
    transform: rotate(45deg);
}

.left-arrow {
    width: 200px;
    height: auto;
    transform: rotate(135deg);
}


/*新入生歓迎会*/
.calender img {
    width: 100%;
    height: auto;
}





/*===== モバイル版 =====*/
@media (max-width: 800px) {

    /*===== ABOUT =====*/
    /*【年間活動予定】*/
    .monthly-schedule {
        width: 150px;
        height: 180px;
    }

    /*【自主制作映画ができるまで】*/
    .zigzag-container {
        display: flex;
        flex-direction: column;
    }

    .zigzag-section {
        width: 100%;
        height: auto;
    }

    .zigzag-item-left {
        margin-right: 10%;
    }

    .zigzag-item-right {
        margin-left: 10%;
    }

    .zigzag-icon {
        width: 100px;
    }
}