@charset "UTF-8"; .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

.slider {
    opacity: 0;
    transition: opacity .3s linear;
}

.slider.slick-initialized {
    opacity: 1;
}

/*--------------------
ヘッダー
--------------------*/
header {
    position: relative;
    z-index: 1;
    -webkit-mask-image: url("../img/nav_bg.svg");
    -webkit-mask-size: 16px auto;
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-position: bottom;
    mask-image: url("../img/nav_bg.svg");
    mask-size: 16px auto;
    mask-repeat: repeat-x;
    mask-position: bottom;
}

/*---速報---*/
#em {
    position: sticky;
    top: 0;
    background: #ea3e3e;
    padding: 10px 0;
    font-size: 16px;
}

#em .container {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #fff;
    letter-spacing: 0.01em;
}

#em .ttl {
    width: 17%;
    color: #fff;
    background: #ea3e3e;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation-name: emttl;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    -webkit-animation-delay: 0s;
}

@-webkit-keyframes emttl {
    from {
        text-shadow: none;
        opacity: 0.85;
    }

    to {
        text-shadow: 0px 0px 10px rgba(255, 255, 255, .5);
        opacity: 1;
    }
}

#em .txtBox {
    display: flex;
    align-items: center;
    width: 83%;
}

#em .txt {
    background: #fff;
    padding: 5px 10px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

#em p {
    white-space: nowrap;
    display: inline-block;
}

#em p.ticker {
    padding-left: 100%;
    animation-name: ticker;
    animation-timing-function: linear;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

#em p.ticker:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translate(0, 0);
        visibility: visible;
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/*---お知らせ---*/
#em_info {
    position: sticky;
    top: 0;
    background: #66CC99;
    padding: 10px 0;
    font-size: 16px;
}

#em_info .container {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #fff;
    letter-spacing: 0.01em;
}

#em_info .ttl {
    width: 17%;
    color: #fff;
    background: #66CC99;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation-name: emttl;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    -webkit-animation-delay: 0s;
}

@-webkit-keyframes emttl {
    from {
        text-shadow: none;
        opacity: 0.85;
    }

    to {
        text-shadow: 0px 0px 10px rgba(255, 255, 255, .5);
        opacity: 1;
    }
}

#em_info .txtBox {
    display: flex;
    align-items: center;
    width: 83%;
}

#em_info .txt {
    background: #fff;
    padding: 5px 10px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

#em_info p {
    white-space: nowrap;
    display: inline-block;
}

#em_info p.ticker {
    padding-left: 100%;
    animation-name: ticker;
    animation-timing-function: linear;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

#em_info p.ticker:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translate(0, 0);
        visibility: visible;
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/*---番組表---*/
#onair {
    position: sticky;
    top: 0;
    max-height: 0;
    background: #ffffff;
    z-index: 0;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
    transition: max-height .5s;
}

#onair.open {
    visibility: visible;
    opacity: 1;
    max-height: 100px;
}

#onair a {
    transition: all 300ms ease;
}

#onair a:hover {
    opacity: .8;
}

#onair .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

#onair .cont {
    border: 2px solid #FFBD7A;
    display: flex;
    justify-content: space-between;
    width: 83%;
}

#onair .cont .ttl {
    font-size: 18px;
    min-width: 110px;
    text-align: center;
    font-weight: bold;
    padding: 0 20px;
    color: #F15A24;
    width: 10%;
    align-self: center;
    -webkit-animation-name: onair;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    -webkit-animation-delay: 0s;
}

@-webkit-keyframes onair {
    from {
        text-shadow: none;
        opacity: 0.8;
    }

    to {
        text-shadow: 0px 0px 10px rgba(241, 90, 36, .3);
        opacity: 1;
    }
}

#onair .cont .slider {
    width: 90%;
    overflow: hidden;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

#onair .cont .slider li {
    border-right: 1px solid #ccc;
    padding: 0 10px;
    opacity: .8;
}

#onair .cont .slider li.now {
    color: #F15A24;
    opacity: 1;
    font-weight: bold;
}

#onair .cont .slider li span {
    padding: 0 5px;
}

#onair .cont .slider li a {
    color: inherit;
}

#onair a.btnTimetable {
    color: #F15A24;
    background: #ffca94;
    font-weight: bold;
    width: 15%;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    padding: 6px;
    letter-spacing: 2px;
    text-decoration: none;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    #onair a.btnTimetable {
        font-size: 2vw;
    }
}

#onair a.btnTimetable svg {
    margin-right: 0.5em;
}

#onair .slick-list {
    align-self: center;
    padding: 8px 0;
}

#onair .slick-arrow {
    width: auto;
    text-align: center;
    height: 100%;
    background: #ffbd7a;
    position: static;
    padding: 0 15px;
    transform: translate(0,0);
    color: #fff;
    transition: all 300ms ease;
}

#onair .slick-arrow:hover {
    background: #ffd7ae;
}

#onair .slick-arrow:before {
    display: none;
}

#onair .slick-arrow svg {
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*---グローバルナビ---*/
header nav {
    border-top: 3px solid #FFBD7A;
    background: #fff;
    z-index: 1;
    position: relative;
}

header nav .container {
    display: flex;
    justify-content: space-between;
}

header nav .headerLogo {
    width: 22%;
    align-self: center;
}

header nav .headerLogo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: .3s;
}

header nav .headerLogo a:hover {
    opacity: .7;
}

header nav .headerLogo img {
    max-width: 100%;
}

nav .btnMenu, nav .btnTimetable, nav .cover, nav #navSchWrap {
    display: none;
}

#gNav {
    width: 75%;
}

#gNav ul {
    display: flex;
    width: 100%;
}

#gNav li {
    width: 100%;
}

#gNav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: bold;
    padding: 10px 5px 16px 5px;
    background: #ccc;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    transition: all 300ms ease;
    opacity: .8;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 1280px) {
    #gNav a {
        font-size: 1.3vw;
    }
}

#gNav a .sp {
    display: none;
}

#gNav a span.en {
    display: block;
    font-size: 11px;
    opacity: .8;
    font-weight: normal;
}

#gNav a:hover {
    text-decoration: none;
    opacity: 1;
}

#gNav a.current {
    opacity: 1;
}

#gNav li a[href="/"] {
    background: #FFFF96;
    color: #D9A825;
}

#gNav li a[href="/program/"] {
    background: #FFBD7A;
    color: #F15A24;
}

#gNav li a[href="/news/"] {
    background: #C3F1AB;
    color: #66AF7C;
}

#gNav li a[href="/weather/"] {
    background: #B9EBFF;
    color: #4799FF;
}

#gNav li a[href="/event/"] {
    background: #FFC3E8;
    color: #FF639E;
}

#gNav li a[href="/announcer/"] {
    background: #B9A2E2;
    color: #8C4BB9;
}

#gNav li a[href="/company/"] {
    background: #88B3FF;
    color: #3D4DD0;
}

#gNav li a[href="/plus/"] {
    background: #ffb9a0;
    color: #f92b38;
}

/*
#gNav li a[href="/plus/"] { background: #ff5023; }
#gNav li a[href="/plus/"] span { display: none; }
#gNav a[href="/plus/"] img { width: 60%; max-width: 73px; }
*/
/*--------------------
パンくずリスト
--------------------*/
#breadcrumb {
    font-size: 85%;
    padding: 20px 10px 13px 10px;
    margin-bottom: 10px;
}

#breadcrumb .container {
    padding: 3px 10px;
    border-radius: 0 20px 20px 0;
    color: #666;
}

#breadcrumb .container.home {
    background: #FFFF96;
}

#breadcrumb .container.program {
    background: #ffbd79;
}

#breadcrumb .container.news {
    background: #ffff00;
}

#breadcrumb .container.weather {
    background: #4799FF;
}

#breadcrumb .container.event {
    background: #e597a5;
}

#breadcrumb .container.announcer {
    background: #B9A2E2;
}

#breadcrumb .container.company {
    background: #88B3FF;
}

#breadcrumb .container.plus {
    background: #ff5023;
}

#breadcrumb li {
    display: inline-block;
    color: #fff;
}

#breadcrumb .container.news li {
    display: inline-block;
    color: #666666;
}

#breadcrumb li .fa-angle-right {
    margin: 0 8px;
}

#breadcrumb li a {
    color: inherit;
}

/*--------------------
コンテンツエリア
--------------------*/
main#contents {
    margin-top: -8px;
    position: relative;
    z-index: 0;
}

main#contents:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 15px;
    background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0.05), transparent);
    z-index: 20;
}

/*--------------------
バナーエリア
--------------------*/
#underbn {
    margin-bottom: 50px;
}

#underbn ul {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,auto));
    place-content: center;
    place-items: center;
    grid-gap: 10px;
}

#underbn ul li {
}

#underbn ul li img {
    width: 100%;
}

#underbn .slick-list {
    width: 100%;
}

#underbn .slick-arrow {
    z-index: 1;
    height: auto;
    min-width: 20px;
    text-align: center;
    transform: translate(0, 0);
    color: #ffbd7a;
    transition: all 300ms ease;
    position: relative;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#underbn .slick-arrow:hover {
    color: #ffd6ad;
}

#underbn .slick-arrow:before {
    display: none;
}

#underbn .slick-arrow svg {
    font-size: 25px;
}

/*--------------------
フッター
--------------------*/
footer {
    /* width: 1000px; */
    /* margin: 0 auto; */
    border-top: 3px solid #FFBD7A;
}

footer .container {
    /* display: flex; */
    /* width: 100%; */
    /* justify-content: space-between; */
}

footer .footerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 25px;
}

footer li {
    margin: 0.2em;
}

footer li + li {
    border-left: 1px solid #ccc;
}

footer li a {
    transition: .3s;
    padding: 0.5em 1em;
}

footer a:hover {
    opacity: .8;
}

footer .copyright {
    padding: 10px;
    text-align: center;
    color: #999;
    font-size: 9px;
}

footer .pageTop {
    position: relative;
    z-index: 2147483647;
}

footer .pageTop a {
    right: 2%;
    text-align: center;
    position: fixed;
    bottom: 0;
}

footer .pageTop a > span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0.8;
    font-weight: bold;
    color: #ffbd7a;
    font-size: 16px;
}

footer .pageTop .icon {
    background: #ffbd7a;
    color: #fff;
    width: 40px;
    height: 40px;
    transition: .3s;
}

footer .pageTop a:hover .icon {
    height: 50px;
}
