@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* ---------------------------------------------
	スタイルリセット
--------------------------------------------- */
/* html, body, div,h1, h2, h3, h4, h5, h6,
p, pre, blockquote,
ul, ol, li, dl, dt, dd, img, iframe, address {
    margin: 0; padding: 0; border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
ul, ol {list-style: none;} */

html, body {height:100%; color:#000000;}
h1, h2, h3, h4, h5, h6, p, dt, dd, li{
	background:  url("../img/spacer.gif") repeat 0px 0px;
	max-height: 100%;
}
body{ -webkit-text-size-adjust:100% !important;}
a { color: inherit; text-decoration: none; }
.content-wrap img{ width: 100%; height: auto; vertical-align: bottom;}

/* ---------------------------------------------
	汎用クラス
--------------------------------------------- */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {display: inline-block;}

.bold {font-weight:bold;}
.center{text-align:center;}

.clears{ clear:both;}
.fLeft{float: left;}
.fRight{float: right;}

.d_flex{ display: flex; flex-wrap: wrap;}
.d_flex > *{ flex-shrink: 0;}
.flex_start{ align-items: flex-start;}
.space_between{ justify-content: space-between;}

.w100{ width: 100%;}
.w50{ width: 48%;}

.cx_smartphoneview .displaypc{ display: none;}
.displaysp{ display: none;}
.cx_smartphoneview .displaysp{ display: block;}
.of_hidden{ overflow: hidden;}

.sp-only{ display: none;}
@media screen and (max-width: 768px){
    .sp-only{ display: block;}
    .pc-only{ display: none;}
    .w50{ width: 100%;}
    .mb3_sp{ margin-bottom: 3em;}
}

/* ---------------------------------------------
	タイポグラフィー
--------------------------------------------- */
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("..//font/YakuHanJP-Regular.woff2") format("woff2"), url("../font/YakuHanJP-Regular.woff") format("woff")
}
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url("../font/YakuHanJP-Bold.woff2") format("woff2"), url("../font/YakuHanJP-Bold.woff") format("woff")
}
body #fp-contents{
	font-family: "YakuHanJP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3","Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Arial", "Avenir Next", Verdana, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 16px;
    line-height: normal;
}
@media screen and (max-width: 768px){
    body #fp-contents{ font-size: 2.5vw;}
}
@media screen and (max-width: 550px){
    body #fp-contents{ font-size: 3.5vw;}
}

/* ---------------------------------------------
	共通レイアウト
--------------------------------------------- */




/* ---------------------------------------------
	ヘッダー
--------------------------------------------- */
/*-------------メインビジュアル-------------*/
.header__main{
    background: #aaa;
    height: 0;
    padding-top: 48%;
    position: relative;
}
.header__main.slide{
    height: auto;
    padding-top: 0;
}
.header__main.slide .header__main__photos{
    height: 0;
    padding-top: 48%;
    position: relative;
}
.header__main.slide .header__main__photos li{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    display: none;
}
.header__main h1{
    text-indent: -300%;
    white-space: nowrap;
    overflow: hidden;
}
@media screen and (min-width: 1500px){
    .header__main,
    .header__main.slide .header__main__photos{
        height: 720px;
        padding-top: 0;
    }
}
@media screen and (max-width: 768px){
    .header__main{ padding-top: 89.84%;}
    .header__main.slide .header__main__photos{
        padding-top: 90%;
    }
    .header__main.slide .header__main__photos img{
        max-width: 500%;
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        right: 0;transform: translate(-50%,0);
    }
}

/* ---------------------------------------------
	ナビゲーション
--------------------------------------------- */
.nav-wrap{ background-color: #333;}
.nav__list{
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.nav__list > li{
    flex: 1;
    box-sizing: border-box;
}
.nav__list > li > a{
    display: flex;
    height: 3.6em;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 110%;
    line-height: 1.2;
    color: #fff;
    border-right: solid 1px rgba(255,255,255,0.4);
    text-align: center;
}
.nav__list > li:nth-of-type(1) > a{ border-left: solid 1px rgba(255,255,255,0.4);}
.nav__list > li > a.comingsoon{ opacity: 0.3;}
@media screen and (max-width: 1200px){
    .nav__list{ width: 100%;}
    .nav__list > li:nth-of-type(1) > a{ border-left: none;}
    .nav__list > li:nth-last-of-type(1) > a{ border-right: none;}
}
@media screen and (max-width: 768px){
    .nav__list > li{
        flex: auto;
        flex-shrink: 0;
        width: 33.33%;
    }
    .nav__list.len4 > li{ width: 50%;}
    .nav__list > li > a{ font-size: 104%;}
    .nav__list > li:nth-of-type(3n) > a,
    .nav__list.len4 > li:nth-of-type(4n) > a{ border-right: none;}
    .nav__list.len4 > li:nth-of-type(3n) > a{ border-right: solid 1px rgba(255,255,255,0.4);}
    .nav__list > li:nth-of-type(1),
    .nav__list > li:nth-of-type(2),
    .nav__list > li:nth-of-type(3){
        border-bottom: solid 1px rgba(255,255,255,0.4);
    }
    .nav__list.len5 > li:nth-of-type(1),
    .nav__list.len5 > li:nth-of-type(2){
        width: 50%;
        border-bottom: solid 1px rgba(255,255,255,0.4);
    }
    .nav__list.len5 > li:nth-of-type(3){ border-bottom: none;}
    .nav__list.len5 > li:nth-of-type(3) > a{
        border-right: solid 1px rgba(255,255,255,0.4);
    }

}

/* ---------------------------------------------
	コンテンツ
--------------------------------------------- */
.contents-all h2{
    font-size: 146%;
    margin-bottom: 0.6em;
    line-height: 1.2;
}
/* @media screen and (max-width: 768px){
    .contents-all h2{ font-size: 110%;}
} */
.contents-all h2 .sub{ font-size: 80%;}
.content-base{
    padding: 2em 0;
}
.content-base:nth-of-type(1){ padding-top: 3em;}
@media screen and (max-width: 768px){
    .content-base:nth-of-type(1){ padding-top: 2em;}
}
.content-base:nth-last-of-type(1){ padding-bottom: 3em;}
.content-wrap{
    width: 1200px;
    box-sizing: border-box;
    padding: 0 40px;
    margin: 0 auto;
}
.content-wrap.w800{
    padding: 0 200px;
}
@media screen and (max-width: 1200px){
    .content-wrap{
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .content-wrap.w800{ padding: 0 15vw;}
}
@media screen and (max-width: 900px){ .content-wrap.w800{ padding: 0 5vw;}}

/*-------------リンクボタン-------------*/
a.link_btn{
    display: block;
    background: #888;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 3em;
    padding: 0.8em 0;
    position: relative;
    width: 60%;
    margin: 0.6em auto 0;
}
a.link_btn.w100{ width: 100%;}
@media screen and (max-width: 768px){
    a.link_btn{ width: 100%;}
}
a.link_btn::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%; right: 10px;
	margin:-0.4em 0 0 0;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0.4em 0 0.4em 0.6em;
	border-color: transparent transparent transparent #fff;
}
a.link_btn.end{ color: #eee;}
a.link_btn.end::after{ display: none;}

/*-------------放送スケジュール-------------*/
.oaSchedule__list > li{
    border-bottom: solid 1px #333;
    padding: 0 0 1em;
    margin-bottom: 1em;
}
/* .oaSchedule__list > li:nth-of-type(1){ padding-top: 0;} */
.oaSchedule__list > li > dl{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    line-height: 1.0;
}
.oaSchedule__list > li > dl > *{ flex-shrink: 0;}
.oaSchedule__list__date{
    font-size: 110%;
    font-weight: bold;
    margin-right: 0.5em;
    min-width: 7em;
}
.oaSchedule__list__round{
    min-width: 6em;
}
.oaSchedule__list__detail{ width: calc(100% - 15em);}
@media screen and (max-width: 550px){
    .oaSchedule__list__detail{ width: 100%;}
}
.oaSchedule__list__detail > div,
.oaSchedule__list__detail > a div{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5em;
    align-items: center;
    border-bottom: dashed 1px #aaa;
    padding-bottom: 0.5em;
}
.oaSchedule__list__detail > div:nth-last-of-type(1),
.oaSchedule__list__detail > a div,
.oaSchedule__list__detail > a:nth-last-of-type(1){
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.oaSchedule__list__detail > a{
    display: block;
    margin-bottom: 0.5em;
}
.oaSchedule__list__detail__list > li{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5em;
    align-items: center;
}
.oaSchedule__list__detail__list > li:nth-last-of-type(1){ margin-bottom: 0;}
.oaSchedule__list__detail .ch{
    color: #fff;
    display: flex;
    align-items: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.8em;
    height: 1.3em;
    margin: 0 0.4em 0;
}

.oaSchedule__list__detail .cs{ background-color: #006931;}
.oaSchedule__list__detail .bs{ background-color: #002f65;}
.oaSchedule__list__detail .ter{ background-color: #a27000;}
.oaSchedule__list__detail .fod{ background-color: #a20000;}

@media screen and (max-width: 550px){
    .oaSchedule__list__date{ margin-bottom: 0.3em;}
    .oaSchedule__list__round{
        width: calc( 100% - 8.5em);
        margin-bottom: 0.3em;
    }
    .oaSchedule__list__detail .ch{ margin: 0 0.4em 0 0;}
}

.oaSchedule__list__detail.time{
    font-weight: bold;
    font-size: 110%;
    color: #333;
    padding-top: 0.1em;
}
.oaSchedule__list__detail .link{
    display: flex;
    align-items: center;
    height: 1.5em;
    border: solid 0.2em #a20000;
    font-size: 88%;
    padding: 0 1.5em 0 0.5em;
    border-radius: 3em;
    font-weight: bold;
    color: #a20000;
    position: relative;
    margin-left: 0.5em;
    box-sizing: border-box;
}
.oaSchedule__list__detail .link_cs .link{
    border: solid 0.2em #006931;
    color: #006931;
}
.oaSchedule__list__detail .link::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%; right: 0.3em;
	margin:-0.4em 0 0 0;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0.4em 0 0.4em 0.6em;
	border-color: transparent transparent transparent #a20000;
}
.oaSchedule__list__detail .link_cs .link::after{
    border-color: transparent transparent transparent #006931;
}
.cx_displaydevice .oaSchedule__list__detail a:hover .link{
    background-color: #a20000;
    color: #fff;
}
.cx_displaydevice .oaSchedule__list__detail a.link_cs:hover .link{ background-color: #006931;}
.cx_displaydevice .oaSchedule__list__detail a:hover .link::after{
    border-color: transparent transparent transparent #fff;
}

.oaSchedule__list__detail .category{
    margin-left: 0.5em;
}
.oaSchedule__list__detail .category.live{
    border: solid #bd0000 0.2em;
    color: #bd0000;
    font-weight: bold;
    padding: 0em 0.3em;
}
.oaSchedule__list__detail .category.re{
    font-size: 80%;
    color: #333;
}

/*-------------放送内容-------------*/
.summary p{
    margin-bottom: 1.4em;
    line-height: 2;
    text-align: justify
}


/*-------------注目ポイント-------------*/
#pickupWrap h3{
    font-size:  130%;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin: 0 0 10px;
}
#pickupWrap h3 span{ color: #ff7600;}
#pickupWrap h3 + h3{ margin: 18px 0 10px;}
#pickupWrap > div{ margin-bottom: 18px;}
#pickupWrap .photoWrap{
    width: 49%;
    height: auto;
    background-color: #ddd;
    float: left;
    margin: 0 2% 5px 0;
}
#pickupWrap .photoWrap img{ width: 100%; height: auto;}
#pickupWrap .photoWrap.w100{ width: 100%; height: auto; float: none;}
#pickupWrap p{
    line-height: 1.8;
    font-size: 94%;
    padding: 0 0 10px;
}
.cx_smartphoneview #pickupWrap p{ padding: 0;}
#pickupWrap ul{
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-top: dashed 1px #aaa;
    font-size: 88%;
    line-height: 1.6;
}
#pickupWrap .photoWrap + .photoWrap{ margin: 0 0 5px 0;}

/*-------------動画埋め込み-------------*/
.movie__item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 2em;
}
  
.movie__item iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/*-------------スペシャル動画-------------*/
.movie__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.movie__list > li{
    width: 24.4%;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    border: solid 1px #ccc;
    border-bottom: solid 5px #aaa;
    /* padding: 0 0 5px; */
    background-color: #fff;
}
.movie__list > li:nth-of-type(4n){
    margin: 0 0 10px 0;
}
.movie__list.len3 > li{
    width: 32%;
}
.movie__list > li.comingsoon{
    background-color: #bbb;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.movie__list > li.comingsoon::after{
    content: "COMING SOON";
    color: #fff;
    font-weight: bold;
}
@media screen and (max-width: 768px){
    .movie__list > li{
        width: 32%;
        /* margin: 0 2% 10px 0; */
    }
    /* .movie__list > li:nth-of-type(4n){ margin: 0 2% 10px 0;}
    .movie__list > li:nth-of-type(3n){
        margin: 0 0 10px 0;
    } */
}
@media screen and (max-width: 550px){
    .movie__list > li,
    .movie__list.len3 > li{
        width: 49.5%;
        /* margin: 0 1% 10px 0; */
    }
    /* .movie__list > li:nth-of-type(3n){ margin: 0 1% 10px 0;}
    .movie__list > li:nth-of-type(2n){ margin: 0 0 10px 0;} */
    .movie__list > li.comingsoon:nth-last-of-type(1):after,
    .movie__list > li.comingsoon:nth-last-of-type(2):after{ display: none;}
    .movie__list.len3 > li.comingsoon:nth-last-of-type(1):after{ display: none;}
    .movie__list.len3 > li.comingsoon:nth-last-of-type(2):after{ display: block;}
}

.movie__list > li:hover{ border-bottom: solid 5px #ff7600;}
.movie__list > li.comingsoon:hover{ border: none;}

.movie__list__thum{ margin-bottom: 6px; position: relative;}
.movie__list__thum::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: url("../img/playIcn.png") no-repeat;
    width: 29px;
    height: 29px;
    background-size: contain;
    border: solid 2px rgba(255,255,255,0.4);
    border-radius: 50%;
}
.movie__list > li:hover .movie__list__thum::after{ border: solid 2px rgba(255,255,255,1.0);}

.movie__list__thum img{ width: 100%; height: auto;} 
.movie__list__cap,
.movie__list__ttl{ padding: 0 0.8em;}
.movie__list__cap{
    font-size: 82%;
    line-height: 1.3;
}
.movie__list__ttl{
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 0.5em;
}


/*-------------出演者-------------*/
.cast__list{
    display: flex;
    flex-wrap: wrap;
    line-height: 1.4;
    margin-bottom: 0.6em;
}
.cast__list__pos{
    min-width: 4em;
}
.cast__list__name li{ padding-bottom: 0.3em; font-weight: bold;}
.cast__list__name.d_flex li::after{
    content: "／";
    font-weight: normal;
}
.cast__list__name.d_flex li:nth-last-of-type(1):after{ display: none;}
.cast__list__name span{
    font-size: 80%;
    font-weight: normal;
}
@media screen and (max-width: 768px){
    .cast__list{
        display: block;
    }
    .cast__list__pos{
        width: 4em;
        margin-bottom: 0.2em;
    }
}

/*-------------Instagram-------------*/
.instagram__embed{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.instagram__embed > li{
    width: 24%;
    margin-bottom: 0.5em;
}
.instagram__embed.len3 > li{
    width: 33%;
    margin-bottom: 0.5em;
}
.instagram__embed__imgWrap{
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
}
@media screen and (min-width: 768px){
    .instagram__embed > li:nth-of-type(9){ display: none;}
    .instagram__embed.len3 > li:nth-of-type(9){ display: block;}
}
@media screen and (max-width: 768px){
    .instagram__embed > li{
        width: 33%;
    }
}

a.link_btn.instagram{
    background: #e20082;
}
a.link_btn.instagram::before{
    content: "";
    display: block;
    position: absolute;
    background: url(../img/icn_instagram.svg) no-repeat 0 center;
    width: 1.6em;
    height: 1.6em;
    top: 50%; left: 20px;
    background-size: contain;
    margin: -0.8em 0 0;
}
.cx_displaydevice a.link_btn.instagram:hover{
    background: #ff0294;
}

/*-------------Twitter-------------*/
a.link_btn.twitter{
    background: #009ae2;
}
a.link_btn.twitter::before{
    content: "";
    display: block;
    position: absolute;
    background: url(../img/icn_x.svg) no-repeat 0 center;
    width: 1.6em;
    height: 1.6em;
    top: 50%; left: 20px;
    background-size: contain;
    margin: -0.8em 0 0;
}
.cx_displaydevice a.link_btn.twitter:hover{
    background: #00aeff;
}

/*-------------TikTok-------------*/
.tiktok-embed{ border-radius: 8px;}
a.link_btn.tiktok{
    background: #fe2c55;
}
a.link_btn.tiktok::before{
    content: "";
    display: block;
    position: absolute;
    background: url(../img/icn_tiktok.svg) no-repeat 0 center;
    width: 1.6em;
    height: 1.6em;
    top: 50%; left: 20px;
    background-size: contain;
    margin: -0.8em 0 0;
}
.cx_displaydevice a.link_btn.tiktok:hover{
    background: #ee002f;
}


.cx_displaydevice #gbheader,
.cx_displaydevice #gbfooter{
    position: relative;
    z-index: 99999;
}
@media screen and (max-width: 750px){
    .sp_display #gbfooter p{
        font-size: 3.3vw !important;
        line-height: 1.6 !important
    }
}
.cx_smartphoneview #cx_commonPageTopBtn{
    width: 52px;
    height: 52px;
    bottom: 15px;
  }
  .cx_smartphoneview #cx_commonPageTopBtn a{
    width: 52px;
    height: 52px;
    line-height: 52px;
    font-size: 22px;
  }
