@charset "UTF-8";
/* top */

/* info */
.info{
    width: 900px;
    margin: 0 auto 100px;
    border-top: solid 2px var(--color-gray-dark);
    border-bottom: solid 2px var(--color-gray-dark);

    .info_dlist{
        padding: 15px 50px 15px 15px;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;

        .date{
            width: 80px;
            font-size: 12px;;
        }

        .text{
            width: calc(100% - 80px);
            font-size: 14px;
        }
        .text a{
            color: var(--text-color);
            display: block;
            position: relative;
        }
        .text a::after{
            content: "\f054";
            width: 13px;
            font-family: Font Awesome\ 6 Free;
            color: var(--color-gray-dark);
            font-weight: bold;
            display: inline-block;
            position: absolute;
            top: 50%;
            right: -30px;
            transform: translateY(-50%);
        }

        .day:not(:last-of-type),
        .text:not(:last-of-type){
            margin: 0 0 20px 0;
        }
    }
}

/* features */
.features{
    padding-top: 94px;
    margin-top: -94px;

    .title-underbar::before{
        background: var(--color-red-light);
    }

    .features_list{
        width: 800px;
        margin: 0 auto 50px;
    }

    .features_item{
        padding: 20px;
        border-bottom: solid 2px var(--color-gray-light);
        display: flex;
        align-items: stretch;
        justify-content: flex-start;

        .textlink{
            font-weight: 500;
        }

        .head{
            width: 280px;
            margin: 0 20px 0 0;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .number{
            margin: 0 10px 0 0;
            font-size: 1.6em;
        }
    }

    .photo_list{
        width: 80%;
        margin: 0 auto;
        max-width: 1000px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .photo_item{
        border-left: solid 5px var(--background-color);
        border-right: solid 5px var(--background-color);
    }
}
/* outline */
.outline_wrap{
    padding: 50px 0;
    background: var(--color-gray-light);
}
.outline{
    width: 90%;
    max-width: 1200px;
    padding: 30px;
    margin: 0 auto 100px;
    background: var(--color-white);

    .outline_dlist{
        margin: 0 0 30px 0;
    }

    .outline_dterm{
        padding: 5px 0 5px 10px;
        margin: 0 0 10px 0;
        font-weight: 700;
        line-height: 1;
        border-left: solid 10px var(--sub-color);
    }
    .outline_ddesc{
        margin: 0 0 0 20px;
    }
    .outline_ddesc:not(:last-of-type){
        margin-bottom: 30px;
    }
    .department_item{
        font-weight: 500;
    }
    .department_item:not(:last-child){
        margin: 0 0 10px 0;
    }
    .schedule_list{
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
    }
    .schedule_item{
        width: 25%;
        font-weight: 500;
        text-align: center;
        border-bottom: solid 3px var(--sub-color);
        border-left: solid 3px var(--sub-color);
        border-right: solid 3px var(--sub-color);
        position: relative;
    }
    .schedule_item:not(:last-child){
        margin: 0 20px 0 0;
    }
    .schedule_item:not(:last-child)::after{
        width: 0;
        height: 0;
        content: "";
        border: solid transparent;
        border-color: rgba(255, 255, 255, 0);
        border-left-color: var(--sub-color);
        border-width: 10px;
        position: absolute;
        bottom: calc(50% - 20px);
        right: -29px;
    }

    .schedule_item dt{
        min-height: 46px;
        padding: 5px 0;
        margin: 0;
        color: var(--color-white);
        line-height: 1;
        background: var(--sub-color);
        border: none;
        position: relative;
    }
    .schedule_item dt span{
        width: 100%;
        line-height: 1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .schedule_item dt small{
        font-size: 12px;
    }
    .schedule_item dd{
        padding: 10px 5px;
        background: var(--color-white);
    }

    .button_list{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .button_item{
        width: 30%;
        margin: 0 10px;
    }

    .button-oval a{
        color: var(--color-white);
        background: var(--color-blue);
    }
}

@media screen and (max-width: 1024px){
    .info{
        width: 80%;
    }

    .features{
        padding-top: 50px;
        margin-top: -50px;

        .features_list{
            width: 80%;
            min-width: 550px;
        }

        .features_item{
            padding: 10px;

            .head{
                width: 240px;
                font-size: 16px;
            }
        }

        .photo_list{
            width: 90%;
        }
    }

    .outline{
        max-width: 800px;

        .schedule_list{
            flex-direction: column;
        }

        .schedule_item{
            width: 100%;
        }

        .schedule_item:not(:last-child){
            margin: 0 0 20px 0;
        }

        .schedule_item:not(:last-child)::after{
            bottom: -25px;
            right: calc(50% - 10px);
            border-width: 7.5px;
            border-left-color: rgba(255, 255, 255, 0);
            border-top-color: var(--sub-color);
        }

        .button_list{
            flex-direction: column;
        }

        .button_item{
            width: 50%;
            min-width: 200px;
            margin-left: 0;
            margin-right: 0;
        }

        .button_item:not(:last-child){
            margin-bottom: 10px;
        }
    }
}

@media screen and (max-width: 600px){
    .info{
        width: 90%;

        .info_dlist{
            .day,
            .day:not(:last-of-type){
                width: 100%;
                margin-bottom: 0;
            }
            .text{
                width: 100%;
            }
        }
    }

    .features{
        .features_list{
            width: 90%;
            min-width: inherit;
        }

        .features_item{
            padding-left: 0;
            padding-right: 0;
            flex-direction: column;

            .head{
                width: 100%;
                margin-bottom: 10px;
                margin-right: 0;
            }
        }

        .photo_list{
            width:calc(100% - 40px)
        }
    }

    .outline{
        padding: 20px;
    }
}