@charset "utf-8";
#schedule_01,#schedule_02{
    .wrap{
        .contents.gallery{
            min-width: 100%;
            width: 100%;
            background-color: #EAE7E1;
            .contents_inner{
                max-width: 1200px;
                width: calc(100% - 60px);
                margin: 0 auto;
                padding: 70px 0;
                display: grid;
                grid-template-columns: repeat(4, auto);
                grid-column-gap: 50px;
                img{
                    border: 3px solid #fff;
                    border-radius: 0 30px 0 30px;
                }
            }
        }
    }
}

#schedule_01{
    .wrap{
        .contents.schedule{
            .contents_inner{
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-column-gap: 50px;
                margin-bottom: 70px;
                .schedule_box{
                    h3{
                        padding: 1em 0;
                        border-radius: 0 30px 0 0;
                        background-color: #F7E8BE;
                        display: grid;
                        grid-template-columns: 1fr;
                        grid-row-gap: .5em;
                        justify-items: center; 
                        align-items: center; 
                        height: 95px; 
                    }
                    .schedule_inner{
                        background-color: #fff;
                        padding: 30px;
                        border-radius: 0 0 0 30px;
                        dl{
                            display: grid;
                            grid-template-columns: 3em 1fr;
                            grid-column-gap: 2em;
                            margin-bottom: 3em;
                            &:last-child{
                                margin-bottom: 0;
                                dd{
                                   &::before{
                                    display: none;
                                    }                                      
                                }
                            }
                            dt{
                                position: relative;
                                padding-left: 1.2em;
                                &::before{
                                    content: "";
                                    background-color: #D8CAB0;
                                    border-radius: 50px;
                                    width: 10px;
                                    height: 10px;
                                    display: inline-block;
                                    position: absolute;
                                    left:0;
                                    top: 0.2em;
                                }
                            }
                            dd{
                                position: relative;
                                &::before{
                                    content:"";
                                    background-image: url(../img/schedule/Icon_arrow.svg);
                                    background-size: contain;
                                    background-repeat: no-repeat;
                                    vertical-align: middle;
                                    display: block;
                                    width: 90%;
                                    height: 60%;
                                    position: absolute;
                                    left: 0.7em;
                                    top: 2em;
                                }
                            }
                        }
                    }
                    &.pink{
                        h3{
                            background-color: #F5DEEB;
                        }
                        .schedule_inner{
                            dl{
                                dt{
                                    &::before{
                                        background-color: #E2BCD1;
                                    }
                                }
                                dd{
                                    &::before{
                                        background-image: url(../img/schedule/Icon_arrow_pink.svg);
                                    }
                                }
                            }
                        }
                    }
                    &.blue{
                        h3{
                            background-color: #DAF0F5;
                        }
                        .schedule_inner{
                            dl{
                                dt{
                                    &::before{
                                        background-color: #C3DDE2;
                                    }
                                }
                                dd{
                                    &::before{
                                        background-image: url(../img/schedule/Icon_arrow_blue.svg);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
#schedule_02{
    .wrap{
        .contents.yearly{
            margin-bottom: 70px;
            .contents_inner{
                display: grid;
                grid-template-columns: repeat(2, auto);
                grid-gap: 50px;
                .yearly_box{
                    background-color: #fff;
                    border-radius: 0 30px 0 30px;
                    display: grid;
                    grid-template-columns: 140px 1fr;
                    grid-gap: 30px;
                    padding: 20px 30px;
                    align-items: center;
                    ul{
                        li{
                            line-height: 2;
                            position: relative;
                            padding-left: 1em;
                            font-size: 1.1em;
                            &::before{
                                content: "";
                                background-color: #d4b67a;
                                border-radius: 50px;
                                width: 8px;
                                height: 8px;
                                display: inline-block;
                                position: absolute;
                                left:0;
                                top: 0.7em;
                            }
                            span{
                                display: block;
                                font-size: 0.9em;
                                margin-top: -.5em;
                            }
                        }
                    }
                }
            }
        }
    }

}
@media screen and (max-width:1200px){

    #schedule_01,#schedule_02{
        .wrap{
            .contents.gallery{
                .contents_inner{
                    grid-column-gap: 30px;
                    padding: 50px 0;
                }
            }
        }
    }

    #schedule_01{
        .wrap{
            .contents.schedule{
                .contents_inner{
                    grid-column-gap: 20px;
                    margin-bottom: 50px;
                    .schedule_box{
                        h3{
                            font-size: 1.5rem;
                        }
                        .schedule_inner{
                            padding: 20px;
                            dl{
                                grid-template-columns: 2em 1fr;
                                grid-column-gap: 1em;
                                margin-bottom: 2.5em;
                                dt{
                                    font-size: 1.4rem;
                                }
                                dd{
                                    font-size: 1.4rem;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    #schedule_02{
        .wrap{
            .contents.yearly{
                margin-bottom: 50px;
                .contents_inner{
                    grid-gap: 30px;
                    .yearly_box{
                        grid-template-columns: 130px 1fr;
                        grid-gap: 20px;
                        padding: 20px;
                        ul{
                            li{
                                font-size: 1.5rem;
                                span{
                                    font-size: 0.8em;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

}

@media screen and (max-width:1024px){

    #schedule_01,#schedule_02{
        .wrap{
            .contents.gallery{
                .contents_inner{
                    max-width: 100%;
                    padding: 30px 0;
                    grid-column-gap: 20px;
                }
            }
        }
    }
    #schedule_01{
        .wrap{
            .contents.schedule{
                .contents_inner{
                    margin-bottom: 30px;
                    grid-column-gap: 20px;
                    .schedule_box{
                        h3{
                            font-size: 1.3rem;
                        }
                        .schedule_inner{
                            padding: 20px 10px;
                            dl{
                                grid-column-gap: 0.5em;
                                margin-bottom: 2em;
                                dt{
                                    font-size: 1.3rem;
                                    line-height: 1.3;
                                }
                                dd{
                                    font-size: 1.3rem;
                                    &::before{
                                        width: 80%;
                                        height: 50%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    #schedule_02{
        .wrap{
            .contents.yearly{
                margin-bottom: 30px;
                .contents_inner{
                    grid-gap: 20px;
                    .yearly_box{
                        grid-template-columns: 80px 1fr;
                        grid-gap: 10px;
                        padding: 10px;
                        ul{
                            li{
                                font-size: 1.3rem;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width:768px){
    
    #schedule_01,#schedule_02{
        .wrap{
            .contents.gallery{
                .contents_inner{
                    grid-template-columns: repeat(2, auto);
                    max-width: 100%;
                    padding: 30px 0;
                    grid-gap: 15px;
                }
            }
        }
    }
    #schedule_01{
        .wrap{
            .contents.schedule{
                .contents_inner{
                    grid-template-columns: 1fr;
                    grid-gap: 30px;
                    .schedule_box{
                        h3{
                            font-size: 1.4rem;
                            padding: 1em 0;
                            height: auto; 
                        }
                        .schedule_inner{
                            padding: 20px;
                            dl{
                                grid-column-gap: 2em;
                                margin-bottom: 1em;
                                dt{
                                    font-size: 1.4rem;
                                    line-height: 1.3;
                                }
                                dd{
                                    font-size: 1.4rem;
                                    &::before{
                                        width: 70%;
                                        height: 40%;
                                        left: 1em;
                                        top: 1.5em;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    #schedule_02{
        .wrap{
            .contents.yearly{
                margin-bottom: 30px;
                .contents_inner{
                    grid-gap: 20px;
                    grid-template-columns: 1fr;
                    .yearly_box{
                        grid-template-columns: 90px 1fr;
                        grid-gap: 15px;
                        padding: 10px;
                        ul{
                            li{
                                font-size: 1.4rem;
                            }
                        }
                    }
                }
            }
        }
    }
}