@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;
}

body > * {
    transition: .3s;
}

.openMenu {
    position: fixed;
    width: 100%;
}

.openMenu > * {
    transform: translate(-80%);
}

.openMenu > main,.openMenu > footer {
    -ms-filter: blur(2px);
    filter: blur(2px);
}

.openMenu nav .cover {
    visibility: visible;
    opacity: 1;
}

/*--------------------
ヘッダー
--------------------*/
header {
    position: relative;
    z-index: 20;
}

header:after {
    content: "";
    display: block;
    width: 100%;
    height: 16px;
    position: absolute;
    bottom: -16px;
    z-index: 0;
    background: #fff;
    -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: 2%;
    font-size: 16px;
}

#em .container {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #fff;
    letter-spacing: 0.01em;
}

#em .ttl {
    width: 25%;
    box-sizing: border-box;
    padding: 5px;
    color: #fff;
    background: #ea3e3e;
    font-weight: bold;
    font-size: 13px;
    line-height: 13.5px;
    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: 100%;
}

#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: 2%;
    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: 25%;
    box-sizing: border-box;
    padding: 5px;
    color: #fff;
    background: #66CC99;
    font-weight: bold;
    font-size: 13px;
    line-height: 13.5px;
    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: 100%;
}

#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 {
    display: none;
}

/*---グローバルナビ---*/
header nav:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    display: block;
    background: #ffbd7a;
}

header nav {
    background: #fff;
    z-index: 1;
    position: relative;
    box-sizing: border-box;
}

header nav .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0;
}

header nav .headerLogo {
    width: 55%;
    max-width: 270px;
    order: 2;
    align-self: center;
}

header nav .headerLogo a {
    display: block;
    width: 100%;
    height: 100%;
}

header nav .headerLogo img {
    width: 100%;
    vertical-align: middle;
}

header nav .cover {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: -8px -3px 5px -3px rgba(0, 0, 0, 0.1) inset;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.5s ease 0s;
}

header nav .btnTimetable, header nav .btnMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    min-width: 60px;
    min-height: 60px;
    box-sizing: border-box;
    transition: .3s;
}

header nav .btnTimetable {
    order: 1;
    color: #F15A24;
}

header nav .btnTimetable svg {
    font-size: 20px;
    color: #ffbd7a;
    margin-top: 4px;
}

header nav .btnMenu {
    order: 3;
    color: #4799FF;
    z-index: 9999;
}

header nav .btnMenu span {
    margin-bottom: 2px;
}

header nav .btnMenu i {
    display: inline-block;
    width: 23px;
    height: 3px;
    border-radius: 3px;
    background: #ffbd7a;
    transition: background 0.5s;
    margin: auto;
}

header nav .btnMenu i:before, header nav .btnMenu i:after {
    content: "";
    display: block;
    width: 23px;
    height: 3px;
    border-radius: 3px;
    position: absolute;
    transform: rotate(0deg);
    transition: all 0.3s !important;
}

header nav .btnMenu i:before {
    transform: translateY(6.5px);
    background: #b4e09d;
}

header nav .btnMenu i:after {
    transform: translateY(-6.5px);
    background: #f7e460;
}

header nav .btnMenu div {
    transition: opacity .3s;
}

header nav .btnMenu div:first-of-type, .openMenu header nav .btnMenu div:last-of-type {
    display: block;
}

header nav .btnMenu div:last-of-type , .openMenu header nav .btnMenu div:first-of-type {
    display: none;
}

.openMenu header nav .btnMenu i {
    background: transparent;
}

.openMenu header nav .btnMenu i:after {
    transform: translateY(0px) rotate(-45deg);
    background: #ffbd7a;
}

.openMenu header nav .btnMenu i:before {
    transform: translateY(0px) rotate(45deg);
    background: #ffbd7a;
}

#gNav {
    overflow-y: auto;
    width: 80%;
    height: 100vh;
    right: 0;
    top: 0;
    padding: 2.5vh 0 150px 0;
    box-sizing: border-box;
    position: fixed;
    transform: translate(100%);
    z-index: 0;
    transition: transform 0.3s ease 0s;
    background: #ffbd7a;
    display: none;
}

#gNav ul {
    width: 95%;
    border-radius: 3vw;
    overflow: hidden;
    margin: 4vw auto 0 auto;
}

#gNav li {
    width: 100%;
    border-bottom: 1px solid #efefef;
}

#gNav a {
    display: block;
    position: relative;
    font-weight: bold;
    padding: 3.8vw 4vw;
    min-height: 17vw;
    background: #fff;
    font-size: 5vw;
    line-height: 1.4;
    transition: all 300ms ease;
    box-sizing: border-box;
}

#gNav a svg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 3vw;
    margin: auto;
}

#gNav a .pc {
    display: none;
}

#gNav a span.en {
    display: block;
    font-size: 60%;
    opacity: .8;
    font-weight: normal;
}

#gNav a:hover {
    text-decoration: none;
    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/"] {
    color: #ff5023;
    /* line-height: 11vw; */
}

#gNav a[href="/plus/"] img {
    display: none;
}

#navSchWrap form {
    box-sizing: border-box;
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 30px;
    width: 95%;
    margin: 0 auto 0 auto;
    overflow: hidden;
    transition: .3s;
}

#navSchWrap form > * {
    display: block;
    box-sizing: border-box;
}

#navSchWrap input[type="text"] {
    border: none;
    width: 85%;
    padding: 10px 15px;
    transition: .3s;
}

#navSchWrap input[type="text"]:focus {
    outline: 0;
    font-size: 120%;
}

#navSchWrap input[type="text"]::placeholder {
    transition: .3s;
    color: #aaa;
    font-size: 13px;
}

#navSchWrap input[type="text"]:focus::placeholder {
    color: transparent;
}

#navSchWrap button[type="submit"] {
    cursor: pointer;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.3em;
    border: none;
    background: none;
    color: #888;
    width: 15%;
    outline: none;
    transition: background .3s;
}

#navSchWrap button[type="submit"]:hover, #navSchWrap input[type="text"]:hover + button[type="submit"], #navSchWrap input[type="text"]:focus + button[type="submit"] {
    background: #f6f6f6;
}

#navSchWrap button[type="submit"]:active {
    transform: translateY(1px);
}

/*---横画面表示---*/
@media screen and (orientation: landscape) {
    #gNav {
        padding: 6vh 0 150px 0;
    }

    #gNav ul {
        display: flex;
        flex-wrap: wrap;
        border-radius: 1.8vw;
        margin: 2.5vw auto 0 auto;
    }

    #gNav li {
        width: 33.333%;
        border-right: 1px solid #efefef;
        box-sizing: border-box;
    }

    #gNav li:first-of-type, #gNav li:nth-of-type(2) {
        width: 50%;
    }

    #gNav li:first-of-type a, #gNav li:nth-of-type(2) a {
        font-size: 3vw;
        padding: 3vw 4vw 3vw 2vw;
    }

    #gNav a {
        font-size: 2.8vw;
        padding: 2vw 4vw 2vw 2vw;
        min-height: auto;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    #gNav a span.sp {
        display: none;
    }

    #gNav a .pc {
        display: block;
    }

    #gNav a svg {
        right: 1.5vw;
    }
}

/*--------------------
パンくずリスト
--------------------*/
#breadcrumb {
    font-size: 85%;
    padding: 10px 0;
    margin-bottom: 20px;
}

#breadcrumb .container {
    padding: 3px 10px;
    border-radius: 0 20px 20px 0;
    color: #666;
}

#breadcrumb .container.home {
    background: #FFFF96;
}

#breadcrumb .container.program {
    background: #f9bb7c;
}

#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 {
    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 {
    border-top: 3px solid #FFBD7A;
}

footer .container {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* margin-top: 15px; */
}

footer .footerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

footer .footerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    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;
    width: 100%;
}

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;
}
