/* CTA */
.pc.header_box02 {
    top: 1rem;
    right: 1rem;
    border-radius: 3.2rem;
    border: 2px solid #fff;
    padding: 1.4rem .8rem .8rem;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));

    .txt02 {
        margin: .8rem 0 1rem;
    }

    .btn01>a {
        color: #EA5513;
        padding: 1.3rem 1.5rem 1.7rem 4rem;
        gap: 2rem;
    }

    .icon {
        width: 2.5rem;
        height: 2.5rem;

        img {
            object-fit: contain;
            width: 2.5rem;
            height: 2.5rem;
        }
    }
}

.btn--cta {
    bottom: 1rem;
    left: 2rem;
    width: 71rem;
    border-radius: 10rem;
    border: 2px solid #fff;
    background-color: #EA5513;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .25));

    >a {
        padding: 1.6rem 1.5rem 1.6rem 5.5rem;
        background-color: unset;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: unset;

        &:hover {
            opacity: 1;

            .btn--title {
                opacity: .7;
            }
        }
    }

    .text__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;

        .title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .pop {
            font-size: 3.3rem;
        }
    }

    .btn--title {
        font-size: 2.8rem;
        color: #EA5513;
        display: flex;
        background-color: #fff;
        border-radius: 3rem;
        width: 36.8rem;
        align-items: center;
        justify-content: space-between;
        padding: 1.3rem 1.5rem 1.3rem 6.5rem;
        transition: all .4s;

        img {
            width: 3.5rem;
            height: 3.5rem;
        }
    }

    &.btn--ctaWide {
        @media screen and (min-width: 769px) {

            width: 60.1rem;

            >a {
                padding: 1rem 1rem 1rem 3rem;
            }

            .text__wrapper {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
            }

            .title {
                margin-bottom: 0;
                line-height: 1;
            }

            .pop {
                font-size: 2.5rem;
                margin-top: .7rem;
            }

            .btn--title {
                width: 23rem;
                font-size: 1.6rem;
                padding: 1.2rem 1.3rem 1.3rem 4rem;

                img {
                    width: 2.5rem;
                    height: 2.5rem;
                }
            }
        }

    }
}

/* ▼ top02 ▼ */
.section--top02 {
    ul.top_class04 {
        background-color: #F9F6EC;
        border-radius: 3.7rem;
        padding: 3rem;
        gap: unset;
        justify-content: space-between;
        align-items: center;

        .img {
            width: 46.8%;
        }

        .txt {
            width: 49.4%;
            flex: unset;
            color: #000;
        }

        .btn--cta {
            width: 100%;
            color: #fff;
            margin-top: 3rem;

            >a {
                padding: 1rem 1rem 1rem 3rem;
            }

            .title {
                font-size: 1.4rem;
            }

            .pop {
                font-size: 2.5rem;
            }

            .btn--title {
                font-size: 1.6rem;
                width: 22.8rem;
                padding-left: 5rem;

                img {
                    width: 2.5rem;
                    height: 2.5rem;
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        ul.top_class04 {
            .img {
                width: 100%;
            }

            .txt {
                width: 100%;
                margin-top: 3rem;
            }

            .btn--cta {
                margin-top: 8rem;

                >a {
                    padding: 1.6rem 2rem 1.6rem 3rem;
                }

                .title {
                    font-size: 2rem;
                }

                .pop {
                    font-size: 2.8rem;
                }

                .btn--title {
                    font-size: 2.6rem;
                    width: 29.4rem;
                    padding: 1.5rem 1.5rem 1.5rem 3rem;

                    img {
                        width: 3.5rem;
                        height: 3.5rem;
                    }
                }
            }
        }
    }
}

/* ▼ section--class ▼ */
.section--class {
    .acc__lists {
        margin-top: 5rem;
        margin-bottom: 10rem;
    }

    .acc__list {
        border-radius: 4rem;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .acc__title {
        position: relative;
        cursor: pointer;
        font-size: 2.4rem;
        color: #fff;
        background-color: #004795;
        padding: 2.4rem 6rem;

        &::before,
        &::after {
            position: absolute;
            content: "";
            right: 4.3rem;
            top: 50%;
            width: 3.1rem;
            height: .3rem;
            background-color: #fff;
        }

        &::before {
            transform: rotate(90deg);
            transition: all .4s;
        }

        &.active::before {
            opacity: 0;
            transform: rotate(180deg);
        }

        .title--date {
            width: 7rem;
            display: inline-block;
        }
    }

    .acc__contents {
        display: none;
        background-color: #F9F6EC;
        padding: 3rem;
        border: 2px solid #004795;
        border-top: none;
        border-radius: 0 0 4rem 4rem;
    }

    .table--lp {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        text-align: center;
        color: #000;
    }

    th,
    td {
        border: 4px solid #F9F6EC;
        background-color: #fff;
        vertical-align: middle;
        font-size: 1.5rem;
        line-height: 1.6;
        padding: 2.3rem 2rem;
    }

    td:last-child {
        border-right: none;
        text-align: left;
    }

    td:nth-last-child(2) {
        text-align: left;
    }

    tr:nth-child(odd) td {
        background-color: #F2F6F9;
    }

    .table__heading {
        background-color: #004795;
        border: none;
        border-bottom: 4px solid #004795;
        color: #fff;
        font-size: 1.6rem;
        line-height: 1.5;
        padding: .5rem;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .table__title {
        background-color: #CCDAEA;
        color: #004795;
        text-align: center;
        border-left: none;
        font-size: 1.8rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        width: 9.3%;
    }

    .table__data.time {
        width: 10%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .table__data.faculty {
        width: 19.4%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .table__data.name {
        width: 11%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .table__data.title {
        width: 12%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .table__data.table__text {
        width: 33.9%;
    }

    @media screen and (max-width: 768px) {
        .inner {
            padding: 0 2rem;
        }

        .acc__list {
            margin-bottom: 3.2rem;
            border-radius: 5rem;
        }

        .acc__title {
            font-size: 3rem;
            padding: 3.4rem 5rem;
        }

        .acc__contents {
            padding: 3.7rem;
            border-radius: 0 0 5rem 5rem;
        }

        .table--lp {
            width: 137.1rem;
        }

        th,
        td {
            font-size: 2.8rem;
        }

        .table__heading {
            font-size: 2.8rem;
            padding-top: 5rem;
            padding-bottom: 4rem;
        }

        .table__title {
            font-size: 2.8rem;
            width: 7.2%;
        }

        .table__data.time {
            width: 11.6%;
        }

        .table__data.faculty {
            width: 18.7%;

        }

        .table__data.name {
            width: 11.6%;

        }

        .table__data.title {
            width: 21.5%;
            font-weight: 330;
        }

        .table__data.table__text {
            width: 26.9%;
            font-weight: 330;
        }

        .scroll {
            overflow: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding-bottom: 4rem;
        }

        .scroll::-webkit-scrollbar {
            display: none;
        }

        .simplebar-track {
            background: #fff;
            height: 1.5rem !important;
            border-radius: 1.5rem;
        }

        .simplebar-scrollbar::before {
            background: #004795;
            border-radius: 1.5rem;
            height: 1.5rem !important;
            top: 0;
            left: 0;
            opacity: 1;
        }
    }
}


/* ▼ top03 ▼ */
.section--top03 {
    background-color: #F3EDD9;
    padding-bottom: 8rem;
}

.section--top05 {
    margin-bottom: 6rem;
}