@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #333;
    font-size: 14px;
    font-family: "Helvetica neue", Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;

    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 800px) {
    html,
    body {
        font-size: 14;
    }
}

body {
    line-height: 1.8;
}

@media screen and (max-width: 800px) {
    body {
        min-width: 320px;
        line-height: 1.8;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

/* ---------------------------------------------
*   page
--------------------------------------------- */
.page {
    width: 100%;
    -webkit-transition: .1s ease-in;
    transition: .1s ease-in;
}

@media screen and (max-width: 800px) {
    .page--nav {
        position: fixed;
        top: 0;
        right: 270px !important;
        bottom: 0;
        left: auto !important;
        height: 100%;
    }
    .page--nav .header-nav {
        right: 0;
    }
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    padding: 0 8%;
    background-color: #000;
}

@media screen and (max-width: 800px) {
    .header {
        overflow-x: hidden;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px;
        width: 100%;
    }
}

/*  header-container
--------------------------------------------- */
.header-container {
    padding: 17px 0;
}

.header-container:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 800px) {
    .header-container {
        clear: both;
        padding: 8px 0;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    float: left;
    margin-top: 3px;
}

.header-logo__link {
    display: block;
    width: 250px;
}

@media screen and (max-width: 800px) {
    .header-logo {
        float: none;
        margin-top: 0;
        text-align: left;
    }
    .header-logo__link {
        width: 185px;
    }
    .header-logo__link img {
        vertical-align: middle;
    }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    float: right;
}

@media screen and (max-width: 800px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: -270px;
        bottom: 0;
        left: auto;
        z-index: 10;
        float: none;
        width: 270px;
        height: 100%;
        -webkit-transition: .1s ease-in;
        transition: .1s ease-in;
    }
}

.header-nav__list {
    margin-top: 6px;
}

.header-nav__list:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 800px) {
    .header-nav__list {
        overflow-y: auto;
        margin-top: 0;
        height: 100%;
        border-left: 1px solid #808080;
        background-color: #222;
    }
}

.header-nav__list-item {
    float: left;
    margin: 0 15px;
}

.header-nav__list-item:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 800px) {
    .header-nav__list-item {
        display: block;
        margin: 0;
        padding: 4px 0;
        width: 100%;
        border-bottom: 1px solid #808080;
        background-color: #000;
        vertical-align: middle;
        text-align: center;
    }
}

.header-nav__list-item--current .header-nav__link {
    opacity: 1;
}

.header-nav__list-item--group {
    margin-right: 0;
}

.header-nav__list-item--group .header-nav__link {
    margin: 0 8px;
}

.header-nav__list-item--group .header-nav__link:first-child {
    margin-left: 0;
}

@media screen and (max-width: 800px) {
    .header-nav__list-item--group {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        background-color: transparent;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .header-nav__list-item--group:before {
        display: block;
        width: 100%;
        height: 50px;
        color: #999;
        content: "AbemaTV公式アカウント";
        text-align: center;
        font-size: 0.85714rem;
        line-height: 50px;
    }
    .header-nav__list-item--group .header-nav__link {
        margin: 0 calc((100% - 34px * 3) / 9) 4px;
    }
    .header-nav__list-item--group .header-nav__link:first-child {
        margin: 0 calc((100% - 34px * 3) / 9) 4px;
    }
}

.header-nav__link {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 34px;
    opacity: .6;
}

.header-nav__link:hover {
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .header-nav__link {
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 17px 10px;
        min-height: 60px;
        line-height: 1.5;
    }
    .header-nav__link:hover {
        opacity: 1;
    }
}

.header-nav__link--facebook, .header-nav__link--twitter, .header-nav__link--youtube {
    position: relative;
    float: left;
    overflow: hidden;
    padding-top: 34px;
    width: 34px;
    height: 0;
    border-radius: 50%;
    background-repeat: no-repeat;
    opacity: 1;
}

.header-nav__link--facebook:before, .header-nav__link--facebook:after, .header-nav__link--twitter:before, .header-nav__link--twitter:after, .header-nav__link--youtube:before, .header-nav__link--youtube:after {
    color: inherit;
    font-family: FontAwesome;
}

.header-nav__link--facebook:before, .header-nav__link--twitter:before, .header-nav__link--youtube:before {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 16px;
    line-height: 1.0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header-nav__link--facebook {
    background-color: #3b5998;
}

.header-nav__link--facebook:before {
    content: "\f09a";
}

.header-nav__link--twitter {
    background-color: #55acee;
}

.header-nav__link--twitter:before {
    content: "\f099";
}

.header-nav__link--youtube {
    background-color: #e52d27;
}

.header-nav__link--youtube:before {
    content: "\f16a";
}

@media screen and (max-width: 800px) {
    .header-nav__link--facebook, .header-nav__link--twitter, .header-nav__link--youtube {
        float: none;
        padding: 0;
        padding-top: 34px;
        min-height: 0;
        opacity: 1;
    }
}

.header-nav__link--abematv {
    overflow: hidden;
    padding-top: 81px;
    padding-bottom: 0;
    max-height: 0;
    width: 249px;
    height: 0;
    background: url(/files/user/images/design/abema-app-banner.png) 0 0 no-repeat;
    background-size: 249px 81px;
    background-repeat: no-repeat;
    opacity: 1;
}

.header-nav__banner {
    display: none;
    padding: 4px 0;
}

.header-nav__banner .header-nav__link {
    margin: 7px auto !important;
}

@media screen and (max-width: 800px) {
    .header-nav__banner {
        display: block;
        width: 100%;
    }
}

/*  header-sp-trigger
--------------------------------------------- */
.header-sp-trigger {
    display: none;
}

.header-sp-trigger__text {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 0;
    border-color: #fff;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    text-indent: -9999px;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in;
}

.header-sp-trigger__text:before, .header-sp-trigger__text:after {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 0;
    border-color: #fff;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    content: "";
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in;
}

.header-sp-trigger__text:before {
    top: 50%;
}

.header-sp-trigger__text:after {
    top: 100%;
}

@media screen and (max-width: 800px) {
    .header-sp-trigger {
        position: absolute;
        top: 13px;
        right: 20px;
        z-index: 2;
        display: block;
        width: 21px;
        height: 18px;
        cursor: pointer;
        -webkit-transition: .3s ease-in;
        transition: .3s ease-in;
    }
    .page--nav .header-sp-trigger__text {
        position: absolute;
        top: 50%;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .page--nav .header-sp-trigger__text:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .page--nav .header-sp-trigger__text:after {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    padding: 40px 8% 100px;
}

@media screen and (max-width: 800px) {
    .wrapper {
        overflow-x: hidden;
        padding: 0;
        width: 100%;
    }
}

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
.global-nav {
    display: none;
}

.global-nav__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: #000;
}

.global-nav__list-item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 20%;
    height: 40px;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.global-nav__list-item:after {
    width: 0;
    height: 12px;
    border-left: 1px solid #444;
    content: "";
}

.global-nav__list-item:last-child:after {
    display: none;
}

.global-nav__link {
    width: 100%;
    color: #bbb;
    text-align: center;
    font-size: 0.85714rem;
}

@media screen and (max-width: 800px) {
    .global-nav {
        display: block;
    }
}

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    max-width: 1100px;
}

.contents:after {
    display: block;
    clear: both;
    content: "";
}

@media screen and (max-width: 800px) {
    .contents {
        padding-right: 15px;
        padding-left: 15px;
        max-width: 770px;
    }
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
.main {
    float: left;
    width: calc(100% - 272px);
}

@media screen and (max-width: 800px) {
    .main {
        float: none;
        width: auto;
    }
}

/* ---------------------------------------------
*   main-row
--------------------------------------------- */
.main-row {
    margin-top: 40px;
}

.main-row:first-child {
    margin-top: 0;
}

@media screen and (max-width: 800px) {
    .main-row {
        margin-top: 15px;
    }
    .main-row:first-child {
        padding-top: 20px;
    }
}

/* ---------------------------------------------
*   main-adarea
--------------------------------------------- */
.main-adarea--two-column {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-adarea--two-column .main-adarea__item {
    width: 50%;
    text-align: center;
}

/* ---------------------------------------------
*   sidebar
--------------------------------------------- */
.sidebar {
    margin-left: calc(100% - 240px);
    width: 240px;
}

@media screen and (max-width: 800px) {
    .sidebar {
        margin-right: -15px;
        margin-left: -15px;
        padding: 1px 15px 0;
        width: auto;
        background-color: #F2F2F2;
    }
}

/* ---------------------------------------------
*   sideba-row
--------------------------------------------- */
.sidebar-row {
    margin-top: 20px;
}

.sidebar-row:first-child {
    margin-top: 0;
}

.sidebar-row--center {
    text-align: center;
}

@media screen and (max-width: 800px) {
    .sidebar-row {
        margin-right: -15px;
        margin-left: -15px;
        padding-right: 15px;
        padding-left: 15px;
    }
    .sidebar-row:last-child {
        padding-bottom: 50px;
    }
    .sidebar-row--sp-pad-vertical {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .sidebar-row--sp-bg-white {
        background-color: #fff;
    }
}

/* ---------------------------------------------
*   sidebar-abematv
--------------------------------------------- */
.sidebar-abematv__item {
    position: relative;
    padding: 5px;
    width: 230px;
    height: 185px;
    border-radius: 4px;
    background-color: #000;
    text-align: center;
}

.sidebar-abematv__item-head {
    position: relative;
    display: block;
}

.sidebar-abematv__item-head-image {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 130px;
    background-color: #000;
}

.sidebar-abematv__item-head-image > img {
    width: 100%;
}

.sidebar-abematv__item-head-caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

.sidebar-abematv__item-head-label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 6px;
    background-color: #f0163a;
    color: #eee;
    font-size: 0.85714rem;
    line-height: 1.5;
}

.sidebar-abematv__item-head-logo {
    margin-top: 25px;
    text-align: center;
}

.sidebar-abematv__item-head-button {
    margin: 10px auto 0;
    width: 220px;
}

.sidebar-abematv__item-body {
    position: relative;
}

.sidebar-abematv__item-body-link {
    display: block;
    overflow: hidden;
    margin: 10px auto;
    padding-top: 35px;
    width: 118px;
    height: 0;
    background-image: url(/files/user/images/design/abema-app-banner-gray.png);
    background-position: 0 0;
    background-size: 118px;
    background-repeat: no-repeat;
}

/* ---------------------------------------------
*   sidebar-search
--------------------------------------------- */
.sidebar-search {
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .sidebar-search {
        margin-top: 0;
    }
}

/* ---------------------------------------------
*   sidebar-nav
--------------------------------------------- */
.sidebar-nav {
    margin-top: 20px;
    padding: 30px;
    border-radius: 4px;
    background-color: #151515;
}

.sidebar-nav__cassette {
    margin-top: 30px;
}

.sidebar-nav__cassette:first-child {
    margin-top: 0;
}

.sidebar-nav__list {
    margin-top: 30px;
    line-height: 1.5;
}

.sidebar-nav__list a {
    color: #fff;
}

.sidebar-nav__list-item {
    margin-top: 15px;
    letter-spacing: -.4em;
    font-size: 0.92857rem;
}

.sidebar-nav__list-item:before {
    display: inline-block;
    margin-right: 1em;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    content: "";
    vertical-align: middle;
}

.sidebar-nav__list-item--news:before {
    background-color: #36BD82;
}

.sidebar-nav__list-item--variety:before {
    background-color: #E2B500;
}

.sidebar-nav__list-item--sports:before {
    background-color: #00ACFF;
}

.sidebar-nav__list-item--hobby:before {
    background-color: #FF4E00;
}

.sidebar-nav__list-item--love:before {
    background-color: #FF0090;
}

.sidebar-nav__list-item--interview:before {
    background-color: #9FC600;
}

.sidebar-nav__sns {
    margin-top: 25px;
    line-height: 1.5;
}

.sidebar-nav__sns-item {
    margin-top: 15px;
}

.sidebar-nav__link {
    letter-spacing: normal;
}

/* ---------------------------------------------
*   sidebar-ranking
--------------------------------------------- */
.sidebar-ranking {
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking {
        margin-top: 0;
    }
}

.sidebar-ranking__head {
    margin-bottom: 10px;
}

.sidebar-ranking__head .heading-graphical {
    margin-bottom: 10px;
}

.sidebar-ranking__foot {
    padding-top: 20px;
    text-align: right;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__foot {
        margin-right: -15px;
        margin-left: -15px;
        padding-top: 0;
        border-bottom: 1px solid #E0E0E0;
        text-align: left;
    }
}

.sidebar-ranking__foot-link {
    display: block;
    color: #000;
    font-size: 1rem;
}

.sidebar-ranking__foot-link:after {
    display: inline-block;
    float: right;
    margin-top: 4px;
    margin-right: 5px;
    margin-left: 15px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #979797;
    border-left: 1px solid #979797;
    content: "";
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__foot-link {
        padding: 15px;
        line-height: 1.5;
    }
}

.sidebar-ranking__list {
    counter-reset: number;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list--popular {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        margin-right: -8px;
        margin-left: -8px;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .sidebar-ranking__list--popular .sidebar-ranking__list-item {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 15px;
        padding: 0 8px;
        width: 50%;
    }
}

.sidebar-ranking__list-item {
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list-item {
        margin-top: 18px;
    }
}

.sidebar-ranking__list-item--movie .sidebar-ranking__unit {
    display: block;
    overflow: hidden;
    padding-bottom: 1px;
}

.sidebar-ranking__list-item--movie .sidebar-ranking__unit-image {
    float: left;
    margin-right: 10px;
}

.sidebar-ranking__list-item--movie .sidebar-ranking__unit-image:before {
    background: url(/files/user/images/design/video-ranking-ico.png) 0 0 no-repeat;
    background-size: 20px 20px;
    content: "";
    counter-increment: none;
}

.sidebar-ranking__list-item--movie .sidebar-ranking__unit-caption {
    width: auto;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list-item--movie .sidebar-ranking__unit-caption {
        font-weight: bold;
        font-size: 1rem;
        line-height: 1.5;
    }
}

.sidebar-ranking__list-item--movie .sidebar-ranking__copyright {
    line-height: 1.8;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list-item--movie .sidebar-ranking__copyright {
        margin-top: 0;
        line-height: 1.5;
    }
}

.sidebar-ranking__list-item--reverse .sidebar-ranking__unit {
    display: block;
    overflow: hidden;
    padding-bottom: 1px;
}

.sidebar-ranking__list-item--reverse .sidebar-ranking__unit-image {
    float: right;
    margin-right: 0;
    margin-left: 1%;
    width: 30%;
}

.sidebar-ranking__list-item--reverse .sidebar-ranking__unit-caption {
    width: auto;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list-item--reverse .sidebar-ranking__unit-caption {
        font-weight: bold;
        font-size: 0.92857rem;
        line-height: 1.5;
    }
}

.sidebar-ranking__list-item--reverse .sidebar-ranking__unit .sidebar-ranking__copyright {
    text-align: left;
    line-height: 1.8;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list-item--reverse .sidebar-ranking__unit .sidebar-ranking__copyright {
        margin-top: 0;
        line-height: 1.5;
    }
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list-item--recommend {
        margin-top: 10px;
    }
}

.sidebar-ranking__list-item--none .sidebar-ranking__unit-image:before {
    display: none;
}

.sidebar-ranking__list-item--popular .sidebar-ranking__unit {
    display: block;
    overflow: hidden;
    padding-bottom: 1px;
}

.sidebar-ranking__list-item--popular .sidebar-ranking__unit-image {
    float: left;
    margin-right: 10px;
}

.sidebar-ranking__list-item--popular .sidebar-ranking__unit-image:before {
    display: none;
}

.sidebar-ranking__list-item--popular .sidebar-ranking__unit-caption {
    width: auto;
}

.sidebar-ranking__list-item--popular .sidebar-ranking__copyright {
    line-height: 1.8;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__list-item--popular .sidebar-ranking__unit {
        display: block;
        overflow: hidden;
        padding-bottom: 1px;
    }
    .sidebar-ranking__list-item--popular .sidebar-ranking__unit-image {
        float: none;
        margin-right: 0;
        width: auto;
    }
    .sidebar-ranking__list-item--popular .sidebar-ranking__unit-caption {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 4px;
        width: auto;
        text-overflow: ellipsis;
        font-weight: bold;
        font-size: 0.92857rem;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    .sidebar-ranking__list-item--popular .sidebar-ranking__unit-caption a {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    .sidebar-ranking__list-item--popular .sidebar-ranking__copyright {
        line-height: 1.3;
    }
}

.sidebar-ranking__link {
    display: block;
    text-decoration: none;
}

.sidebar-ranking__link:hover {
    opacity: .6;
}

.sidebar-ranking__unit {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    line-height: 1.2;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__unit {
        -ms-flex-pack: start;

        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.sidebar-ranking__unit--column {
    display: block;
}

.sidebar-ranking__unit--column .sidebar-ranking__unit-image {
    width: auto;
}

.sidebar-ranking__unit--column .sidebar-ranking__unit-image:before {
    display: none;
}

.sidebar-ranking__unit--column .sidebar-ranking__unit-caption {
    margin-top: 10px;
    width: auto;
    font-weight: bold;
}

.sidebar-ranking__unit .sidebar-ranking__copyright {
    text-align: right;
}

.sidebar-ranking__unit-image {
    position: relative;
    width: 80px;
}

.sidebar-ranking__unit-image img {
    width: 100%;
}

.sidebar-ranking__unit-image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #51C300;
    color: #fff;
    content: counter(number);
    counter-increment: number;
    text-align: center;
    font-size: 1rem;
    line-height: 20px;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__unit-image {
        margin-right: 8px;
    }
}

.sidebar-ranking__unit-caption {
    display: -webkit-box;
    overflow: hidden;
    width: 152px;
    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sidebar-ranking__unit-caption a {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sidebar-ranking__unit-caption--two-line {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sidebar-ranking__unit-caption--two-line a {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__unit-caption {
        display: -webkit-box;
        overflow: hidden;
        width: calc(100% - 88px);
        text-overflow: ellipsis;
        font-size: 1.14286rem;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .sidebar-ranking__unit-caption a {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

.sidebar-ranking__pickup {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.sidebar-ranking__pickup:after {
    display: block;
    width: 48%;
    content: "";
}

.sidebar-ranking__pickup-item {
    margin-top: 15px;
    width: 48%;
}

.sidebar-ranking__pickup-item:first-child {
    margin-top: 0;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__pickup-item:first-child .sidebar-ranking__unit-caption {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .sidebar-ranking__pickup-item:first-child .sidebar-ranking__unit-caption a {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__pickup-item .sidebar-ranking__unit-image {
        margin-right: 0;
    }
    .sidebar-ranking__pickup-item .sidebar-ranking__unit-caption {
        font-size: 1rem;
    }
}

.sidebar-ranking__copyright {
    margin-top: 2px;
    color: #7F7F7F;
    font-size: 0.71429rem;
    line-height: 1.2;
}

@media screen and (max-width: 800px) {
    .sidebar-ranking__copyright {
        font-size: 0.78571rem;
    }
}

/* ---------------------------------------------
*   sidebar-adarea
--------------------------------------------- */
.sidebar-adarea {
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .sidebar-adarea {
        margin-top: 0;
        text-align: center;
    }
}

/* ---------------------------------------------
*   sidebar-abemavideo
--------------------------------------------- */
.sidebar-abemavideo {
    margin-top: 20px;
    padding: 10px;
    background-color: #000;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .sidebar-abemavideo {
        margin-top: 0;
    }
}

.sidebar-abemavideo__head {
    margin: -10px -10px 0;
}

.sidebar-abemavideo__body {
    margin-top: 10px;
}

.sidebar-abemavideo__foot {
    margin-top: 10px;
}

.sidebar-abemavideo__foot-link {
    display: block;
    padding: 4px 0;
    border-radius: 5px;
    background: #70bf39;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}

/* ---------------------------------------------
*   sidebar-facebook
--------------------------------------------- */
.sidebar-facebook {
    margin-top: 20px;
}

/* ---------------------------------------------
*   sidebar-twitter
--------------------------------------------- */
.sidebar-twitter {
    margin-top: 20px;
}

.sidebar-twitter iframe.twitter-follow-button {
    width: 100% !important;
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
/*  footer-pagetop
--------------------------------------------- */
/*  footer-upper
--------------------------------------------- */
.footer-upper {
    padding: 40px 0;
    background-color: #000;
    color: #fff;
}

.footer-upper a:hover {
    opacity: .6;
}

@media screen and (max-width: 800px) {
    .footer-upper {
        padding: 15px 0 0;
    }
    .footer-upper a:hover {
        opacity: 1;
    }
}

/*  footer-middle
--------------------------------------------- */
.footer-middle {
    padding: 26px 0;
    border-top: 1px solid #333;
    background-color: #1a1a1a;
}

.footer-middle a:hover {
    opacity: .6;
}

@media screen and (max-width: 738px) {
    .footer-middle {
        padding: 20px;
        border-top: none;
        background-color: #000;
    }
    .footer-middle a:hover {
        opacity: 1;
    }
}

/*  footer-sub
--------------------------------------------- */
.footer-sub {
    display: block;
    background: #000;
    font-size: 0.71429rem;
}

/*  footer-lower
--------------------------------------------- */
.footer-lower {
    padding: 20px 0;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.footer-lower a:hover {
    opacity: .6;
}

@media screen and (max-width: 800px) {
    .footer-lower {
        padding-bottom: 58px;
    }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 8%;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 800px) {
    .footer-container {
        display: block;
        padding: 0;
    }
}

/*  footer-sns
--------------------------------------------- */
.footer-sns {
    display: none;
}

@media screen and (max-width: 800px) {
    .footer-sns {
        display: block;
        padding: 0 20px 20px;
        width: auto;
        border-bottom: 1px solid #333;
    }
}

.footer-sns__head {
    display: block;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    font-size: 0.92857rem;
}

.footer-sns__body {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

.footer-sns__link {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 5px;
    padding: 6px 0 6px 55px;
    width: 50%;
    height: 48px;
    border-radius: 2px;
    color: #fff;
    text-align: left;
    font-size: 1.28571rem;
    line-height: 1.1;
}

.footer-sns__link span {
    display: block;
    font-size: 0.85714rem;
}

.footer-sns__link:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 2px 0 0 2px;
    content: "";
}

.footer-sns__link:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 2rem;
    line-height: 48px;
}

.footer-sns__link--facebook {
    background-color: #3368af;
}

.footer-sns__link--facebook:before, .footer-sns__link--facebook:after {
    color: #fff;
    font-family: FontAwesome;
}

.footer-sns__link--facebook:after {
    content: "\f09a";
}

.footer-sns__link--facebook:before {
    background-color: #21579e;
}

.footer-sns__link--twitter {
    background-color: #55acee;
}

.footer-sns__link--twitter:before, .footer-sns__link--twitter:after {
    color: #fff;
    font-family: FontAwesome;
}

.footer-sns__link--twitter:after {
    content: "\f099";
}

.footer-sns__link--twitter:before {
    background-color: #2C94E4;
}

/*  footer-app
--------------------------------------------- */
.footer-app {
    -ms-flex-order: 3;
    margin-top: 20px;
    width: 282px;

    -webkit-box-ordinal-group: 4;
    order: 3;
}

@media screen and (max-width: 800px) {
    .footer-app {
        margin: 15px auto;
    }
}

@media screen and (max-width: 800px) {
    .footer-app__head {
        display: none;
    }
}

.footer-app__logo {
    display: block;
    overflow: hidden;
    margin-top: 25px;
    padding-top: 52px;
    height: 0;
    background: url(/files/user/images/design/abema-tv-banner.png) 0 0 no-repeat;
    background-size: 180px 52px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 800px) {
    .footer-app__logo {
        margin: 0 auto;
        background-position: 50% 50%;
    }
}

.footer-app__leadtext {
    display: none;
    margin-top: 15px;
    color: #fff;
    text-align: center;
    font-size: 1rem;
}

@media screen and (max-width: 800px) {
    .footer-app__leadtext {
        display: block;
    }
}

.footer-app__downloads {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-top: 25px;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 800px) {
    .footer-app__downloads-item {
        margin-bottom: 10px;
    }
}

.footer-app__downloads-item--appstore .footer-app__downloads-link {
    overflow: hidden;
    padding-top: 40px;
    width: 140px;
    height: 0;
    background-image: url(/files/user/images/design/app-store.png);
    background-size: 140px 40px;
    background-repeat: no-repeat;
}

.footer-app__downloads-item--googleplay .footer-app__downloads-link {
    overflow: hidden;
    padding-top: 40px;
    width: 130px;
    height: 0;
    background-image: url(/files/user/images/design/google-play.png);
    background-size: 130px 40px;
    background-repeat: no-repeat;
}

.footer-app__downloads-item--button {
    margin-top: 10px;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .footer-app__downloads-item--button {
        display: none;
    }
}

.footer-app__downloads-item--button .footer-app__downloads-link {
    height: 40px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    font-size: 0.85714rem;
    line-height: 40px;
}

.footer-app__downloads-link {
    display: block;
    background-position: 0 0;
    background-repeat: no-repeat;
}

/*  footer-category
--------------------------------------------- */
.footer-category {
    -ms-flex-order: 1;
    width: 55%;

    -webkit-box-ordinal-group: 2;
    order: 1;
}

@media screen and (max-width: 800px) {
    .footer-category {
        position: relative;
        padding: 20px;
        width: auto;
        border-top: 1px solid #333;
    }
}

@media screen and (max-width: 800px) {
    .footer-category__head {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .footer-category__body {
        display: inline;
        font-size: 1.07143rem;
    }
}

.footer-category__menu {
    margin-top: 15px;
}

@media screen and (max-width: 800px) {
    .footer-category__menu {
        margin-top: 10px;
    }
    .footer-category__menu:first-child {
        margin-top: 0;
    }
}

.footer-category__menu-body {
    margin-top: 4px;
    line-height: 2.0;
}

@media screen and (max-width: 800px) {
    .footer-category__menu-body {
        line-height: 1.57143rem;
    }
}

.footer-category__menu-list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-category__menu-list-item {
    margin: 0 10px 7px 0;
    padding-right: 10px;
    border-right: 1px solid #fff;
    line-height: 1.14286rem;
}

@media screen and (max-width: 800px) {
    .footer-category__menu-list-item {
        font-size: 1.07143rem;
    }
}

.footer-category__menu-list-item:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

/*  footer-specialsite
--------------------------------------------- */
.footer-specialsite {
    -ms-flex-order: 2;
    width: 45%;

    -webkit-box-ordinal-group: 3;
    order: 2;
}

@media screen and (max-width: 800px) {
    .footer-specialsite {
        padding: 20px;
        width: auto;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }
}

@media screen and (max-width: 800px) {
    .footer-specialsite__head {
        display: none;
    }
}

.footer-specialsite__list {
    font-size: 1.14286rem;
}

.footer-specialsite__list-item {
    margin-top: 15px;
}

.footer-specialsite__list-item:after {
    display: inline-block;
    margin-right: 6px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media screen and (max-width: 800px) {
    .footer-specialsite__list-item {
        margin-top: 0;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    color: #999;
    font-size: 1.07143rem;
}

@media screen and (max-width: 800px) {
    .footer-nav {
        border-top: none;
    }
}

.footer-nav__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 800px) {
    .footer-nav__list {
        display: block;
        margin-bottom: 20px;
    }
}

.footer-nav__list-item {
    padding: 0 17px;
    border-left: 1px solid #999;
    line-height: 1.0;
}

.footer-nav__list-item:first-child {
    padding-left: 0;
    border-left: 0;
}

@media screen and (max-width: 800px) {
    .footer-nav__list-item {
        display: block;
        padding: 0;
        border-left: none;
        color: #fff;
        line-height: 2.5;
    }
}

/*  footer-program
--------------------------------------------- */
.footer-program {
    font-size: 0.71429rem;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .footer-program {
        display: block;
        margin-top: -20px;
        padding: 0 20px 20px 20px;
        background-color: #000;
    }
}

.footer-program__item {
    float: left;
    width: 33.3%;
    color: #666;
}

@media screen and (max-width: 800px) {
    .footer-program__item {
        float: none;
        margin-top: 10px;
        width: 100%;
    }
    .footer-program__item:first-child {
        margin-top: 0;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    text-align: center;
    line-height: 1.5;
}

.footer-copyright__text {
    color: rgba(51, 51, 51, 0.5);
    font-size: 0.85714rem;
}
