@charset "UTF-8";
/* CSS Document */

/* メインイメージ */
.main_image{
    position: relative;
    height: 100vh;
    max-height: 570px;
    background: url(../../../img/ch_list/ch_list_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.main_text{
    width: 100%;
    position: absolute;
    text-align: center;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    top: 100px;
    left: 50%;
}
.main_text *{
    line-height: 1em;
}
.main_text p{
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.main_text .large_text{
    font-size: 140px;
}
.main_text .medium_text{
    font-size: 60px;
}
.main_text .small_text{
    font-size: 26px;
    line-height: 38px;
}
.main_text .yellow{
    color: #fccf00;
}
@media screen and (max-width:767px){
    .main_image{
        max-height: 410px;
    }
    .main_text p{
        font-size: 18px;
    }
    .main_text .large_text{
        font-size: 80px;
    }
    .main_text .medium_text{
        font-size: 30px;
    }
    .main_text .small_text{
        font-size: 18px;
        line-height: 24px;
    }
}

/* ページ内リンク */
.page_link{
    position: relative;
    max-width: 1100px;
    margin: auto;
    top: -120px;
    margin-bottom: -120px;
    padding: 0 5px;
}
.page_link_top::after,
.page_link_bottom::after{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    bottom: -30px;
    right: calc(50% - 15px);
}
.page_link_top::after{
    border-top: 10px solid #333;
    bottom: -30px;
}
.page_link_bottom::after{
    border-bottom: 10px solid #333;
    top: -30px;
}
.page_link ul li{
    width: 20%;
}
.page_link ul li a{
    transition: background 0.4s ease-in-out;
    background: #333;
    color: #fff;
    border-right: 1px solid #0c0c0c;
    border-bottom: 1px solid #0c0c0c;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    padding: 15px 10px;
}
.page_link ul li a div{
    display: table;
    width: 100%;
}
.page_link ul li:nth-child(n+6) a div{
    height: 40px;
}
.page_link ul li a div span{
    display: table-cell;
    vertical-align: middle;
}
.page_link ul li:nth-child(5n) a{
    border-right: none;
}
.page_link ul li a:hover{
    opacity: 1;
    background: #494949;
}
.page_link ul li a img{
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto 10px;
}
@media screen and (max-width:767px){
    .page_link{
        top: -50px;
        margin-bottom: -50px;
    }
    .page_link ul li a{
        font-size: 10px;
        line-height: 14px;
    }
    .page_link ul li:nth-child(n+6) a div{
        height: 28px;
    }
}
@media screen and (max-width:564px){
    .page_link ul li:nth-child(n+6) a div{
        height: 42px;
    }
}
@media screen and (max-width:559px){
    .page_link ul li:nth-child(-n+5) a div{
        height: 28px;
    }
}
@media screen and (max-width:429px){
    .page_link ul li:nth-child(n+6) a div{
        height: 56px;
    }
}

/* チャンネルブロック */
.channel_block_list .channel_block{
    padding: 100px 20px;
}
.channel_block_list .channel_block:nth-child(2n){
    background: #e3e3e3;
}
.channel_block_list .channel_block:last-child{
    padding-bottom: 250px;
}
.channel_block_inner{
    max-width: 1100px;
    margin: auto;
}
.channel_title{
    padding-top: 104px;
    margin-top: -104px;
    margin-bottom: 50px;
}
.channel_title img{
    width: 70px;
    height: 70px;
    margin-right: 20px;
}
.channel_title p{
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    background: linear-gradient(transparent 70%, #fccf00 70%);
    margin-bottom: 10px;
}
.channel_title h2{
    font-size: 34px;
    line-height: 1em;
}
@media screen and (max-width:1200px){
    .channel_title{
        padding-top: 176px;
        margin-top: -176px;
    }
}
@media screen and (max-width:767px){
    .channel_block_list .channel_block{
        padding: 50px 0;
    }
    .channel_block_list .channel_block:first-child{
        padding-top: 80px;
    }
    .channel_block_list .channel_block:last-child{
        padding-bottom: 130px;
    }
    .channel_title{
        padding: 100px 20px 0;
        margin-top: -100px;
        margin-bottom: 40px;
    }
    .channel_title img{
        width: 55px;
        height: 55px;
    }
    .channel_title h2{
        font-size: 28px;
    }
}

/* イチオシ番組 */
.recommend_program_block{
    background: #333333;
    padding: 50px;
    margin-bottom: 50px;
}
.recommend_program_block h3{
    display: block;
    text-align: center;
    color: #fccf00;
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 40px;
}
.recommend_program_block h3 span{
    position: relative;
}
.recommend_program_block h3 span::before,
.recommend_program_block h3 span::after{
    position: absolute;
    content: url(../../../img/icon/recommend_icon.svg);
    width: 22px;
    top: calc(50% - 12px)
}
.recommend_program_block h3 span::before{
    left: -32px;
}
.recommend_program_block h3 span::after{
    right: -32px;
}
.recommend_program{
    color: #fff;
    width: 48%;
    margin-right: 4%;
}
.recommend_program:last-child{
    margin-right: 0;
}
.recommend_program .image_trim{
    position: relative;
    overflow: hidden;
    padding-top: 66.7%;
    margin-bottom: 20px;
}
.recommend_program .image_trim img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}
.recommend_program_title{
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.recommend_program_channel{
    margin-bottom: 10px;
}
.recommend_program_date,
.recommend_program_copyright{
    color: #9c9c9c;
    font-size: 12px;
    line-height: 20px;
    margin: 0;
}
@media screen and (max-width:767px){
    .recommend_program_block{
        padding: 40px 20px;
        margin-bottom: 40px;
    }
    .recommend_program_block .flex{
        display: block;
    }
    .recommend_program_block h3{
        font-size: 20px;
    }
    .recommend_program{
        width: 100%;
        margin-right: 0;
        padding-bottom: 37px;
        border-bottom: 1px solid #262626;
        margin-bottom: 40px;
    }
    .recommend_program:last-child{
        padding: 0;
        border: none;
        margin: 0;
    }
    .recommend_program_date,
    .recommend_program_copyright{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .recommend_program > *:last-child{
        margin-bottom: 0;
    }
}

/* チャンネル一覧 */
.channel_list h4{
    color: #333;
    text-align: center;
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 20px;
}
.channel_list .channel_list_inner{
    background: #f3f3f3;
    padding: 20px 0 20px 20px;
}
.channel_list .channel_list_inner ul li{
    transition: all 0.4s ease-in-out;
    width: 115px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.channel_list .channel_list_inner ul li:hover{
    box-shadow: 1px 1px 8px rgba(0,0,0,.25);
}
.channel_list .channel_list_inner ul li a:hover{
    opacity: 1;
}
.channel_list .channel_list_inner .yellow_btn{
    transition: background 0.4s ease-in-out;
    display: block;
    max-width: 100%;
    background: #fccf00;
    color: #333;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1em;
    padding: 16px;
    border-radius: 5px;
    margin-right: 20px;
}
.channel_list .channel_list_inner .yellow_btn:hover{
    opacity: 1;
    background: #ffea04;
}
.channel_list .channel_list_inner .yellow_btn span{
    position: relative;
}
.channel_list .channel_list_inner .yellow_btn span::after{
    position: absolute;
    content: url(../../../img/icon/link_black_icon.svg);
    width: 7px;
    top: calc(50% - 10px);
    right: -16px;
}
@media screen and (max-width:767px){
    .channel_list{
        padding: 0 20px;
    }
    .channel_list .channel_list_inner ul li{
        width: 85px;
    }
    .channel_list .channel_list_inner .yellow_btn{
        font-size: 22px;
        padding: 24px 10px;
    }
    .channel_list .channel_list_inner .yellow_btn span::after{
        width: 8px;
        top: calc(50% - 12px);
    }
}

/* ボタンエリア */
.btn_area{
    padding-top: 80px;
    padding-bottom: 130px;
}
@media screen and (max-width:767px){
    .btn_area{
        padding-top: 40px;
        padding-bottom: 70px;
    }
}
