.page-top .breadcrumbs {
    margin-bottom: 0;
}

.sec {
    padding: 70px 0;

    img {
        width: 100%;
        height: auto;
    }

    .sec-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 36px;

        .col-left,
        .col-right {
            flex: 1;
            min-width: 310px;
        }
    }
}

.seminar-button {
    margin-top: var(--space-lvl4);
    width: 280px;
    font-size: var(--font-size-large);
    height: 50px;
    padding: 0;
    font-style: normal;

    @media screen and (max-width:687px) {
        max-width: 100%;
        width: 100%;
    }
}

/*===============
tab
================*/
.tab {
    border-bottom: 2px solid var(--aqua-700);

    ul {
        display: flex;
        justify-content: center;
        column-gap: 36px;

        @media screen and (max-width:687px) {
            column-gap: 16px;
        }

        li {
            font-weight: bold;
            line-height: 1;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 333px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            box-sizing: border-box;
            position: relative;
            top: 2px;
        }

        li.tab-active {
            border-color: var(--aqua-700);
            border-bottom-color: var(--white);
            border-width: 4px 2px 2px 2px;
            border-style: solid;
        }

        li.tab-inactive {
            background: var(--gray-100);
            border-style: solid;
            border-width: 0 0 2px 0;
            border-bottom-color: var(--aqua-700) ;
            &:hover {
                cursor: pointer;
                opacity: 0.8;
            }

            a {
                width: 100%;
                height: 100%;
                display: grid;
                place-content: center;

                &:hover {
                    text-decoration: none;
                }
            }
        }
    }
}

/*===============
seminar-info
================*/
.seminar-info_thumb:hover{
    opacity: 0.8;
}
.seminar-info_text {
    margin-top: var(--space-lvl4);
    display: flex;
    flex-direction: column;
    row-gap: var(--space-lvl2);

    .seminar-info_subTitle {
        font-weight: bold;
        line-height: 1.6;
    }

    .seminar-info_title {
        font-size: var(--font-size-x-large);
        font-weight: bold;
        line-height: 1.6;
    }
}

/*===============
seminar-list
================*/
.seminar-list {
    margin-bottom: 12px;
    li {
        border-top: 1px solid var(--gray-300);
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;

        &:last-child{
            border-bottom: 1px solid var(--gray-300);
        }
        p {
            font-size: var(--font-size-large);
            font-weight: bold;
            line-height: 1.6;
            color: var(--gray-900);

            span {
                font-size: var(--font-size-medium);
                line-height: 1.6;
                font-weight: normal;
                display: inline-flex;
                align-items: center;
            }

            span:before {
                content: "";
                display: inline-block;
                background-image: url(/seminar/img/icon-clock.svg);
                background-repeat: no-repeat;
                background-position: center;
                width: 24px;
                height: 24px;
                margin-right: 5px;
            }
        }

        .list-button {
            width: 120px;
            height: 40px;
        }
    }
}

/* button */
.nc-button {
  font-weight: normal;
  font-style: normal;
  &::after {
    display: none;
  }
}