:root {
    /*主色輔色 改色*/
    --main-color: #F4682A;
    --sub-color: #6A0A6C;
    --sub2-color: #A0E952;


    /*勿動*/
    --white-color: #fff;
    --black-color: #1e1e1e;
}

* {
    scroll-padding-top: 80px;
    letter-spacing: 1px;
}

.oswald {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
}

.special-gothic {
    font-family: "Special Gothic Expanded One", sans-serif;
}


.text-justify {
    text-align: justify;
}

/* nav ---------- */
.navbar {
    background-color: #2c2c2c;
}

.nav-item a {
    color: var(--white-color);
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: 1px;
}

.nav-item a:hover {
    color: var(--sub2-color);
}

.btn-ticket {
    background-color: var(--main-color);
    color: var(--white-color);
    border: solid 2px var(--main-color);
    border-radius: 2rem;
    padding: 0.75rem 1rem !important;
}

.btn-ticket:hover,
nav .btn-ticket:focus {
    background-color: var(--main-color);
    color: var(--white-color);
    border: solid 2px var(--main-color);
}

nav .nav-link {
    margin-top: 0;
    margin-bottom: 0;
}

nav .mainlogo {
    display: flex;
    align-items: center;
}

nav .mainlogo img {
    max-width: 140px;
    text-align: left;
    padding-right: 5px;
}

nav .mainlogo img.school {
    max-width: 180px;
}

@media (max-width: 768px) {
    nav .navbar-collapse {
        display: flex;
    }

    nav .navbar-collapse .navbar-nav {
        width: 100%;
    }

    nav .nav-item {
        justify-content: center;
    }

    .nav-item a {
        font-size: 1rem;
        line-height: 1rem;
        padding: 1.25rem 0;
    }

    .nav-item a .sm-txt,
    .nav-item p .sm-txt {
        font-size: 13px;
    }

    .navbar-toggler,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        padding: 2px;
        border: 0px;
    }

    .navbar img {
        width: 130px;
    }

    nav .mainlogo img.school {
        max-width: 130px;
    }

    nav .mainlogo img {
        max-width: 90px;
        height: auto;
    }

}


/* main ---------- */
#main {
    background: url(../../images/main-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* aspect-ratio: 1280 / 580 ; */
}

#main .main-area {
    min-height: 600px;
}

#main .main-object {
    position: absolute;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 10;
}

#main .LIVE-logo {
    object-fit: contain;
    z-index: 15;
    display: inline-block;
    margin: 0 0.5rem;

    animation: swing;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-timing-function: step-start;
    animation-iteration-count: infinite;
}

#main h2.txt01 {
    background: var(--white-color);
    padding: 1px 10px;
    position: absolute;
    bottom: 20%;
    z-index: 20;
    text-align: center;
    width: fit-content;
    letter-spacing: 2px;
    transform: rotate(-6deg);
}

#main h2.txt02 {
    background: var(--sub-color);
    color: var(--white-color);
    padding: 1px 10px;
    position: absolute;
    bottom: 11%;
    z-index: 20;
    text-align: center;
    width: fit-content;
    letter-spacing: 2px;
    transform: rotate(1deg);
}

#main h2.txt02 span {
    color: var(--sub2-color);
}

#main .main-title {
    font-size: 96px;
    font-weight: 900;
}

#main .main-sub-title {
    font-size: 68px;
    font-weight: 700;
}


@media (max-width: 768px) {
    #main {
        background: url(../../images/main-bg-sm.jpg);
    }

    #main .main-area {
        min-height: 500px;
    }

    #main h2.txt01 {
        font-size: 1.25rem;
        bottom: 30%;
    }

    #main h2.txt02 {
        font-size: 1.25rem;
        bottom: 22%;
    }

    #main .main-title {
        font-size: 58px;
    }

    #main .main-sub-title {
        font-size: 48px;
    }
}

/* suitable ---------- */
#suitable,
#subscribe {
    background: url(../../images/paper-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#suitable .season01 {
    background: #1e1e1e;
    color: #EFEFEF;
    border-radius: 3px;
    font-size: 1.25rem;
    padding: 3px 6px;
}

#main-schedule {
    background: url(../../images/bg-pattern01.svg), url(../../images/bg-pattern01.svg);
    background-position: left top, right top;
    background-repeat: repeat-y;
    background-size: 30px 30px;
}

#main-schedule .main-card {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    padding: 6px;
}

#main-schedule .main-card img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    height: fit-content;
}

#main-schedule .main-card .main-text {
    color: #f4f7ff;
    gap: 6px;
}

#main-schedule .main-card .main-text span.episode-tag {
    background-color: #f4f7ff;
    color: #1e1e1e;
    padding: 2px 6px;
}

#main-schedule .main-card a {
    min-width: 150px;
    min-height: 50px;
    background: #fff;
    color: #1e1e1e;
    text-align: center;
    align-content: center;
}

#main-schedule .main-card a:hover {
    background: #ff5500;
    color: #f4f7ff;
    font-weight: 700;
}

#main-schedule .main-card hr {
    width: 100%;
    border-top-color: white;
    opacity: 0.5;
}

#main-schedule .spk-card {
    color: #f4f7ff;
}

#main-schedule .main-card img.pattern-guest {
    object-fit: cover;
    aspect-ratio: unset;
    width: 80px;
    border-radius: 0;
}

#main-schedule .spk-card .btn-info {
    margin: 0.5rem 0 0;
    background-color: #6B6B6B;
    display: inline-block;
    color: var(--white-color);
    font-size: 1rem;
    padding: 0 4px;
}

#main-schedule .ball {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f4f7ff;
}

#main-schedule .square {
    width: 32px;
    height: 32px;
    background-color: #1e1e1e;
}

#preview .date .month {
    font-size: 32px;
    letter-spacing: -1px;
}

#preview .date .day {
    font-size: 96px;
    letter-spacing: -1px;
    line-height: 90px;
}

#preview .info-txt {
    border-left: 10px solid #1e1e1e;
    gap: 6px;
}

#preview .info-txt h2 {
    line-height: 40px;
    font-weight: 900;
    font-size: 32px;
}

#preview .info-txt span.episode-tag {
    color: #f4f7ff;
    background-color: #1e1e1e;
    padding: 2px 6px;
}

#preview .speaker-card .speaker-info,
#preview .speaker-card .speaker_name,
#main-schedule .speaker-card .speaker-info,
#main-schedule .speaker-card .speaker_name {
    background-color: #F4682A;
}

#preview .speaker-card .speaker_name,
#main-schedule .speaker-card .speaker_name  {
    padding: 15px;
    min-height: 140px;
    color: var(--white-color);
}

#preview .spk-name,
#main-schedule .spk-name {
    color: #f4f7ff;
    bottom: 0.5rem;
    left: 0.5rem;
    text-shadow: 0px 0px 10px #1e1e1e;
}

#preview .spk-name p {
    line-height: 1.25rem;
}

#preview .speaker-card .speaker_img .speaker-info,
#main-schedule .speaker-card .speaker_img .speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .3s linear;
    overflow: hidden;
    opacity: .9;
    width: 100%;
    height: 0;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

#preview .speaker-card:hover .speaker-info,
#preview .speaker-card:focus .speaker-info,
#main-schedule .speaker-card:hover .speaker-info,
#main-schedule .speaker-card:focus .speaker-info {
    height: 100%;
}

#preview .speaker-card .speaker_img .speaker-info p,
#main-schedule .speaker-card .speaker_img .speaker-info p {
    padding: 8px 12px;
    opacity: 1;
    color: var(--white-color);
    font-size: 11px;
}

#preview .link-card a {
    min-width: 150px;
    min-height: 50px;
    color: #fff;
    background-color: #1e1e1e;
    text-align: center;
    align-content: center;
}

#preview .link-card.onair:hover a {
    background: #ff5500;
    color: #f4f7ff;
    font-weight: 700;
}

#preview .link-card.coming-soon a {
    color: #fff;
    background-color: #BBBBBB;
}

@media (max-width: 768px) {
    #main-schedule {
        background-size: 10px 10px;
    }

    #preview .speaker-card .speaker_name,
    #main-schedule .speaker-card .speaker_name {
        padding: 6px;
        min-height: 100px;
    }

    #preview .info-txt {
        border-left: unset;
        border-top: 10px solid #1e1e1e;
    }

    #preview .link-CTA {
        width: 100%;
        margin-top: 1rem;
        border-radius: 1rem;
    }
}


@media (max-width: 768px) {
    #main-schedule .main-card img.episolde-img {
        aspect-ratio: 1.5 / 1;
    }

    #main-schedule .spk-card .btn-info {
        display: none;
    }

    #main-schedule .main-card a {
        min-width: 100%;
        min-height: 50px;
        border-radius: 1rem;
        background: #fff;
        color: #1e1e1e;
        text-align: center;
        align-content: center;
    }
}



/* subscribe ---------- */
#subscribe .subscribe-card {
    background: #FFFFFF;
    border-radius: 1rem;
    box-shadow: 0px 0px 20px #1e1e1e46;
    padding: 1rem;
}

#subscribe .img-square {
    padding: 2rem;
    border-radius: 50%;
    overflow: hidden;
}

#subscribe .subscribe-card h5 {
    color: #6B6B6B;
    font-weight: 400;
    font-size: 20px;
}

#subscribe .subscribe-card-info {
    gap: 0.5rem;
}

#subscribe .subscribe-card a {
    background: #1e1e1e;
    color: var(--white-color);
    text-align: center;
    align-content: center;
    min-width: 150px;
    min-height: 50px;
    border-radius: 40px;
}

#subscribe .subscribe-card a:hover {
    background: #ff5500;
}

@media (max-width: 768px) {
    #subscribe .img-square {
        padding: 0.5rem;
    }

    #subscribe .subscribe-card h5 {
        font-size: 16px;
    }

    #subscribe .subscribe-card a {
        min-width: 100%;
    }
}

#aabar{
    position:fixed;
    bottom: 0;
    padding: 6px;
    background: linear-gradient(to top,  #6A0A6C , #6a0a6c00);
    z-index: 100;
    width: 100%;
}
#aabar a{
    text-align: center;
    font-size: 1rem;
    border-radius: 1rem;
    padding:12px 6px;
    background: #6A0A6C;
    color: #f4f7ff;
}

/*footer改色 ---------- */

#footer {
    position: absolute;
    width: 100%;
    background-color: #212121;
    color: white;
}

#footer .scrolltop {
    background: var(--sub-color);
    color: var(--white-color);
    opacity: .9;
}