#fixed_nav ul li:nth-child(5) a,
.header ul li:nth-child(5) a {
    color: #FF4D4D;
}


.firstview p {
    text-align: center;
    font-size: 18px;
    margin: 80px auto 0;
    line-height:46px; 
}
.scroll {
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    bottom: 120px;
    left: 0;
    right: 0;
}

.scroll svg {
    animation: firstview_scroll-move 3s infinite;
}

@keyframes firstview_scroll-move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}
.scheduleinfo {
    padding: 1em 0 1em 1em;
    background-color: rgba(243, 243, 243, 0.6);
    width: 80vw;
    margin: 120px 0px 120px auto;
}
.scheduleinfo ul li {
    display: flex;
    justify-content: flex-start;
    padding: 0 0 40px 0;
    border-bottom: 1px #7e7e7e solid;
    margin:0 0 40px 0;
}
.scheduleinfo_wrap {
    margin-right:40px ;
}
.scheduleinfo_title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.scheduleinfo_title h2 {
    margin-left: 40px;
    width: 250px;
}
.scheduleinfo_text {
    font-weight: 700;
    margin-top: 64px;
    width: 30vw;
    line-height: 38px;
}
.scheduleinfo_text p {
    font-size: 18px;
}
.scheduleinfo_text a {
    display: block;
    margin-top: 24px;
    color: #007413;
}
.scheduleinfo_text span {
    font-weight: 800;
    display: block;
    margin-top: 24px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.scheduleinfo_img {
    margin-left: 30px;
    width: 35vw;
    height: calc(30vw - 120px);
    border-radius: 10px;
}
.scheduleinfo_img img {
    width: 35vw;
    height: calc(30vw - 120px);
    object-fit: cover;
    border-radius: 10px;
}
@media(max-width:1000px) {
    .firstview p {
        text-align: center;
        font-size: 14px;
        margin: 80px auto 0px;
        width: 90vw;
        line-height:32px; 
    }
    .scheduleinfo {
        width: 100%;
        margin: 120px auto;
    }
    .scheduleinfo ul {
        padding: 0;
    }
    .scheduleinfo ul li {
        display: block;
        padding: 0 0 40px 0;
        border-bottom: 1px #7e7e7e solid;
        margin-bottom: 40px;
    }
    .scheduleinfo_wrap {
        margin-right:0px ;
    }
    .scheduleinfo_title {
        align-items: center;
        justify-content: flex-start;
        max-width: 600px;
        margin: 0 auto;
    }
    .scheduleinfo_title h2 {
        margin-left: 0px;
    }
    .scheduleinfo_title svg {
        transform: scale(0.7) ;
    }
    .scheduleinfo_text {
        margin: 32px auto;
        line-height: 28px;
        width: 100%;
        max-width: 600px;
    }
    .scheduleinfo_text p {
        font-size: 16px;
    }
    .scheduleinfo_img {
        margin: 0px auto;
        width: 90vw;
        max-width: 600px;
        height: 250px;
    }
    .scheduleinfo_img img {
        width: 90vw;
        height: 250px;
        max-width: 600px;
        object-fit: cover;
    }
}