@charset "utf-8";

.main-head {
    background: #FFF;
    height: 340px;
}

.main-head h1 {
    top: calc(50% - 20px);
    font-size: 38px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.main-head .img-head {
    height: 340px;
    opacity: 0;
}

.box {
    padding: 70px 15px 120px;
}

.box-schedule-wrap {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto 90px;
    position: relative;
}

.box-schedule .list {
    width: 470px;
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.box-schedule .list dt,
.box-schedule .list dd {
    display:table;
}

.box-schedule .list dt p,
.box-schedule .list dd p {
    text-align: left;
    display:table-cell;
    vertical-align:middle;
    font-size: 19px;
    line-height: 200%;
    font-weight: 500;
}

.box-schedule .box-2nd .list,
.box-schedule .box-4th .list {
    /*margin-left: 610px;*/
    margin-left: calc(100% - 470px);
}

.box-schedule .list .img-month {
    width: 124px;
}

.box-1st .txt-point {
    color: #ed759c;
}

.box-2nd .txt-point {
    color: #90b3ea;
}

.box-3rd .txt-point {
    color: #d9ab9b;
}

.box-4th .txt-point {
    color: #69b0b4;
}

.box-schedule .img {
    width: 470px;
    object-fit: cover;
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    top: 20px;
}

.box-schedule .box-1st .img,
.box-schedule .box-3rd .img {
    right: 0;
}

.box-schedule .box-2nd .img,
.box-schedule .box-4th .img {
    left: 0;
}


.txt-sub {
    font-size: 20px;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

/******************************************************/

.main-head .img-head { animation: fadeImghead 2.8s 0.3s ease forwards; }

@keyframes fadeImghead {
    0% { 
        opacity: 0;
        transform: scale(1.2);
    }

    100% { 
        opacity: 1;
        transform: 0;
    }
}


/******************************************************/

@media screen and (max-width: 900px) {
    
    .main-head h1 {
        top:calc(50% - 6vw);
        font-size: 5vw;
    }
    
    .main-head {
        height: auto;
        aspect-ratio: 11 / 5;
    }

    .main-head .img-head {
        height: auto;
        aspect-ratio: 11 / 4;
    }
    
    .box {
        padding: 0% 5% 8%;
    }
    
    .box-schedule-wrap {
        width: 100%;
        margin: 0 auto 12%;
    }

    .box-schedule .list {
        width: 100%;
        gap: 4%;
        margin-bottom: 8%;
    }
    
    .box-schedule .box-2nd .list,
    .box-schedule .box-4th .list {
        margin-left: 0;
    }
    
    .box-schedule .list dt {
        width: 20%;
    }
    
    .box-schedule .list dd {
        width: 76%;
    }
    
    .box-schedule .list dd p {
        font-size: 4vw;
    }
    
    .box-schedule .list .img-month {
        width: 100%;
    }
    
    .box-schedule .img {
        border-radius: 20px;
        width: 100%;
        top: 0px;
        position: relative;
        margin-bottom: 8%;
    }
    
    .txt-sub {
        width: 100%;
        font-size: 4vw;
    }
}


