@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ---------------------------------------------
*   adc-banner
--------------------------------------------- */
@media screen and (max-width: 800px) {
    .adc-banner {
        text-align: center;
    }
    .adc-banner a {
        display: block;
        cursor: pointer;
    }
    .adc-banner__img {
        width: 100%;
        height: auto;
    }
    .adc-banner__img--button {
        width: 200px;
    }
    .adc-banner__img--app-banner {
        max-width: 345px;
    }
}

/* ---------------------------------------------
*   adc-post
--------------------------------------------- */
.adc-post {
    overflow: hidden;
    margin: 0 12px;
    min-height: 150px;
}

@media screen and (max-width: 800px) {
    .adc-post {
        margin: 0;
        padding: 0 0 0 10px;
    }
}

.adc-post__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 0 0 10px;
    width: 100%;
    border-bottom: 1px solid #eee;
}

@media screen and (max-width: 800px) {
    .adc-post__item {
        float: none;
        overflow: hidden;
        padding: 0;
        width: 100%;
    }
}

.adc-post__item:first-child {
    margin-top: 0;
}

.adc-post__link {
    text-decoration: none;
}

.adc-post__image {
    float: right;
    width: 128px;
}

@media screen and (max-width: 800px) {
    .adc-post__image {
        margin-right: 10px;
        width: 80px;
    }
}

.adc-post__title {
    margin-top: 4px;
    color: #333;
    font-size: 1.28571rem;
    line-height: 1.4;
}

@media screen and (max-width: 800px) {
    .adc-post__title {
        overflow: hidden;
        margin-top: 0;
        max-width: 70%;
        font-weight: bold;
        font-size: 1rem;
    }
}

.adc-post__cat {
    clear: both;
    padding: 3px;
    color: #7f7f7f;
    text-align: right;
    font-size: 0.78571rem;
}

@media screen and (max-width: 800px) {
    .adc-post__cat {
        padding: 4px 10px 3px 3px;
        font-size: 0.78571rem;
        line-height: 1.3;
    }
}

/* ---------------------------------------------
*   animation
--------------------------------------------- */
.blinking {
    -webkit-animation: blink 5s ease-in-out infinite alternate;
    animation: blink 5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ---------------------------------------------
*   article-list
--------------------------------------------- */
@media screen and (max-width: 800px) {
    .article-list--ranking {
        margin: -17px -15px 0;
    }
}

@media screen and (max-width: 800px) {
    .article-list--pickup {
        margin-top: -20px;
    }
}

.article-list--pickup .article-list__body,
.article-list--main .article-list__body {
    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;
}

.article-list--pickup .article-list__body:before, .article-list--pickup .article-list__body:after,
.article-list--main .article-list__body:before,
.article-list--main .article-list__body:after {
    display: block;
    width: calc(33.333% - 12px);
    content: "";
}

.article-list--pickup .article-list__body:before,
.article-list--main .article-list__body:before {
    -ms-flex-order: 1;

    -webkit-box-ordinal-group: 2;
    order: 1;
}

@media screen and (max-width: 1200px) {
    .article-list--pickup .article-list__body:before,
    .article-list--main .article-list__body:before {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .article-list--pickup .article-list__body,
    .article-list--main .article-list__body {
        margin: 0 -8px;
    }
    .article-list--pickup .article-list__body:after,
    .article-list--main .article-list__body:after {
        width: 50%;
    }
}

.article-list__head {
    margin-bottom: 15px;
}

.article-list__head--pagetitle {
    margin: 0 0 20px 6px;
}

.article-list__body {
    counter-reset: number;
}

.article-list__foot {
    margin-top: 20px;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .article-list__foot {
        margin-top: 0;
        margin-right: -15px;
        margin-left: -15px;
    }
}

/* ---------------------------------------------
*   article-list-item
--------------------------------------------- */
.article-list-item {
    width: 100%;
}

.article-list-item a {
    display: block;
}

@media screen and (max-width: 800px) {
    .article-list-item {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.article-list-item__inner {
    position: relative;
}

.article-list-item__image {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 66.7%;
    height: 0;
}

@media screen and (max-width: 800px) {
    .article-list-item__image {
        padding-top: 56.25%;
    }
}

.article-list-item__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.article-list-item__image a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-list-item__image a:hover {
    opacity: .6;
}

@media screen and (max-width: 800px) {
    .article-list-item__image a:hover {
        opacity: 1;
    }
}

.article-list-item__contents {
    overflow: hidden;
    padding-bottom: 1px;
}

.article-list-item__heading {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 10px;
    text-overflow: ellipsis;
    line-height: 1.3;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-list-item__heading a {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.article-list-item__heading a:hover {
    opacity: .6;
}

@media screen and (min-width: 801px) {
    .article-list-item__heading a {
        -webkit-line-clamp: 3;
    }
}

@media screen and (max-width: 800px) {
    .article-list-item__heading {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 4px;
        text-overflow: ellipsis;
        font-weight: bold;
        line-height: 1.4;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .article-list-item__heading a {
        -webkit-line-clamp: 2;
    }
    .article-list-item__heading a:hover {
        opacity: 1;
    }
}

.article-list-item__text {
    margin-top: 10px;
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.85714rem;
}

.article-list-item__text a {
    color: inherit;
}

.article-list-item__text em {
    font-weight: bold;
    font-style: normal;
    font-size: 1.16em;
}

.article-list-item__date {
    color: rgba(51, 51, 51, 0.5);
    font-size: 0.92857rem;
}

@media screen and (max-width: 800px) {
    .article-list-item__date {
        color: #808080;
    }
}

.article-list-item--main {
    margin-top: 40px;
    width: calc((100% - 48px) / 3);
}

.article-list-item--main:nth-child(-n+3) {
    margin-top: 0;
}

@media screen and (max-width: 1200px) {
    .article-list-item--main {
        margin-top: 25px;
        width: calc((100% - 24px) / 2);
    }
    .article-list-item--main:nth-child(-n+4) {
        margin-top: 15px;
    }
    .article-list-item--main:nth-child(-n+2) {
        margin-top: 0;
    }
}

@media screen and (max-width: 800px) {
    .article-list-item--main {
        margin-top: 15px;
        padding: 0 8px;
        width: 50%;
    }
}

.article-list-item--main .article-list-item__heading {
    font-size: 1.21429rem;
}

@media screen and (max-width: 800px) {
    .article-list-item--main .article-list-item__heading {
        font-size: 0.92857rem;
    }
    .article-list-item--main .article-list-item__heading a {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

.article-list-item--main .article-list-item__date {
    margin-top: 6px;
}

@media screen and (max-width: 800px) {
    .article-list-item--main .article-list-item__date {
        float: left;
        margin-top: 0px;
        margin-right: 1em;
        font-size: 0.78571rem;
    }
}

@media screen and (max-width: 800px) {
    .article-list-item--keysize {
        margin-right: -7px;
        margin-left: -7px;
        width: calc(100% + 14px);
    }
    .article-list-item--keysize + .article-list-item {
        margin-top: 15px;
    }
    .article-list-item--keysize + .article-list-item + .article-list-item {
        margin-top: 15px;
    }
}

.article-list-item--keysize .article-list-item__image {
    padding-top: 36.7%;
}

.article-list-item--keysize .article-list-item__contents {
    position: absolute;
    bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 80px 20px 10px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.01)), to(rgba(0, 0, 0, 0.7)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.article-list-item--keysize .article-list-item__heading {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.85714rem;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 1024px) {
    .article-list-item--keysize .article-list-item__heading {
        font-size: 1.5rem;
    }
}

.article-list-item--keysize .article-list-item__heading a {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-list-item--keysize .article-list-item__date {
    margin-top: 2px;
    color: #fff;
    text-align: right;
    font-size: 0.85714rem;
}

@media screen and (max-width: 800px) {
    .article-list-item--keysize .article-list-item__image {
        padding-top: 46.6%;
    }
    .article-list-item--keysize .article-list-item__contents {
        padding: 10px 20px;
    }
    .article-list-item--keysize .article-list-item__heading {
        font-weight: bold;
        font-size: 1.28571rem;
    }
    .article-list-item--keysize .article-list-item__date {
        display: none;
    }
}

.article-list-item--horizontal {
    margin-top: 30px;
}

.article-list-item--horizontal:first-child {
    margin-top: 0;
}

.article-list-item--horizontal.article-list-item--ranking .article-list-item__image:after {
    width: 40px;
    height: 40px;
    font-size: 1.57143rem;
    line-height: 40px;
}

.article-list-item--horizontal .article-list-item__inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: start;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
}

.article-list-item--horizontal .article-list-item__image {
    padding-top: 0;
    width: 160px;
    height: auto;
}

.article-list-item--horizontal .article-list-item__image a {
    position: relative;
    padding-top: 66.7%;
    height: 0;
}

.article-list-item--horizontal .article-list-item__contents {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 185px);
}

.article-list-item--horizontal .article-list-item__heading {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0;
    text-overflow: ellipsis;
    font-size: 1.57143rem;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-list-item--horizontal .article-list-item__heading a {
    display: -webkit-box;
    overflow: hidden;
    vertical-align: top;
    text-overflow: ellipsis;
    line-height: 1.6;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-list-item--horizontal .article-list-item__date {
    margin: 15px 10px 0 0;
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.78571rem;
}

@media screen and (max-width: 800px) {
    .article-list-item--horizontal {
        margin: 0;
        padding: 17px;
        border-top: 2px solid #E0E0E0;
    }
    .article-list-item--horizontal:first-child {
        border-top: 0;
    }
    .article-list-item--horizontal.article-list-item--ranking .article-list-item__image:after {
        top: 0;
        left: 0;
        width: 24px;
        height: 24px;
        font-size: 1rem;
        line-height: 24px;
    }
    .article-list-item--horizontal .article-list-item__inner {
        width: 100%;
    }
    .article-list-item--horizontal .article-list-item__image {
        width: 124px;
    }
    .article-list-item--horizontal .article-list-item__image a {
        padding-top: 75%;
    }
    .article-list-item--horizontal .article-list-item__contents {
        width: calc(100% - 136px);
    }
    .article-list-item--horizontal .article-list-item__heading {
        font-size: 1.14286rem;
    }
    .article-list-item--horizontal .article-list-item__date {
        margin-right: 0;
        text-align: right;
    }
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__inner {
    display: block;
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__image {
    padding-top: 43.95604%;
    width: 100%;
    height: 0;
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__image:after {
    width: 55px;
    height: 55px;
    font-size: 1.78571rem;
    line-height: 55px;
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__image a {
    position: absolute;
    padding-top: 0;
    height: 100%;
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__contents {
    position: absolute;
    bottom: 0;
    padding: 25px 20px 20px;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.01)), to(rgba(0, 0, 0, 0.7)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.7));
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__heading {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.85714rem;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__heading a {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-list--ranking .article-list-item--horizontal:first-child .article-list-item__date {
    position: absolute;
    top: 0;
    left: 20px;
    margin: 0;
    color: #fff;
    font-size: 0.92857rem;
}

@media screen and (max-width: 800px) {
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__inner {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        -ms-flex-align: start;
        width: 100%;

        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__image {
        padding-top: 0;
        width: 124px;
        height: auto;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__image:after {
        top: 0;
        left: 0;
        width: 24px;
        height: 24px;
        font-size: 1rem;
        line-height: 24px;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__image img {
        width: auto;
        height: 100%;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__image a {
        position: relative;
        padding-top: 75%;
        height: 0;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__contents {
        position: static;
        padding: 0;
        width: calc(100% - 136px);
        background-image: none;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__heading {
        font-size: 1.14286rem;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__heading a {
        color: inherit;
    }
    .article-list--ranking .article-list-item--horizontal:first-child .article-list-item__date {
        position: static;
        margin: 15px 0 0 0;
        color: rgba(51, 51, 51, 0.7);
        text-align: right;
        font-size: 0.78571rem;
    }
}

.article-list-item--pickup {
    position: relative;
}

.article-list-item--pickup:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: url(/files/user/images/design/pickup-bage.png) 0 0 no-repeat;
    background-size: 60px 60px;
    content: "";
}

@media screen and (max-width: 800px) {
    .article-list-item--pickup:after {
        left: 8px;
        width: 52px;
        height: 52px;
        background-size: 52px 52px;
    }
    .article-list-item--pickup.article-list-item--keysize:after {
        left: 0;
    }
}

.article-list-item--new {
    position: relative;
}

.article-list-item--new:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: url(/files/user/images/design/new-bage.png) 0 0 no-repeat;
    background-size: 60px 60px;
    content: "";
}

@media screen and (max-width: 800px) {
    .article-list-item--new:after {
        left: 8px;
        width: 52px;
        height: 52px;
        background-size: 52px 52px;
    }
}

.article-list-item--ranking .article-list-item__image:after {
    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;
}

.article-list-item--related {
    margin-top: 0;
    padding: 10px;
    min-height: 1px;
    width: auto;
    border-bottom: 1px solid #eee;
}

.article-list-item--related a:hover {
    opacity: .6;
}

.article-list-item--related .article-list-item__inner {
    overflow: hidden;
    padding-bottom: 1px;
}

.article-list-item--related .article-list-item__image {
    float: right;
    padding-top: 0;
    width: 128px;
    height: auto;
}

.article-list-item--related .article-list-item__image a {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 56.25%;
    height: 0;
}

.article-list-item--related .article-list-item__contents {
    margin-right: 140px;
}

.article-list-item--related .article-list-item__heading {
    margin-top: 0;
    white-space: normal;
    font-weight: normal;
    font-size: 1.28571rem;
    line-height: 1.5;
}

.article-list-item--related .article-list-item__date {
    font-size: 0.85714rem;
}

@media screen and (max-width: 800px) {
    .article-list-item--related a:hover {
        opacity: 1;
    }
    .article-list-item--related .article-list-item__image {
        width: 80px;
    }
    .article-list-item--related .article-list-item__contents {
        margin-right: 90px;
    }
    .article-list-item--related .article-list-item__heading {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: bold;
        font-size: 1rem;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }
    .article-list-item--related .article-list-item__heading a {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }
    .article-list-item--related .article-list-item__date {
        display: none;
    }
}

.article-list-item--search-result {
    margin-top: 30px;
    padding-bottom: 30px;
    min-height: 100px;
    border-bottom: 1px solid #eee;
}

.article-list-item--search-result a:hover {
    opacity: .6;
}

.article-list-item--search-result .article-list-item__inner:after {
    display: block;
    clear: both;
    content: "";
}

.article-list-item--search-result .article-list-item__image {
    float: right;
    margin-left: 40px;
    padding-top: 0;
    width: 120px;
    height: 120px;
}

.article-list-item--search-result .article-list-item__contents {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.article-list-item--search-result .article-list-item__heading {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.14286rem;
    line-height: 1.8;
}

.article-list-item--search-result .article-list-item__heading a {
    display: inline;
}

.article-list-item--search-result .article-list-item__date {
    color: rgba(51, 51, 51, 0.5);
    font-size: 0.85714rem;
}

@media screen and (max-width: 800px) {
    .article-list-item--search-result a:hover {
        opacity: 1;
    }
    .article-list-item--search-result .article-list-item__image {
        margin-left: 20px;
        width: 100px;
        height: 100px;
    }
    .article-list-item--search-result .article-list-item__contents {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .article-list-item--search-result .article-list-item__heading {
        display: block;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 700;
        font-size: 1.14286rem;
        line-height: 1.8;
    }
    .article-list-item--search-result .article-list-item__heading a {
        display: inline;
    }
}

@media screen and (max-width: 800px) and (max-width: 800px) {
    .article-list-item--search-result .article-list-item__heading {
        font-size: 1rem;
    }
}

@media screen and (max-width: 800px) {
    .article-list-item--search-result .article-list-item__date {
        font-size: 0.85714rem;
    }
}

.article-list-item--sidebar {
    width: 100%;
}

.article-list-item--sidebar .article-list-item__inner {
    overflow: hidden;
    padding-bottom: 1px;
}

.article-list-item--sidebar .article-list-item__image {
    float: left;
    margin-right: 10px;
    padding-top: 45px;
    width: 80px;
}

.article-list-item--sidebar .article-list-item__heading {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0;
    text-overflow: ellipsis;
    line-height: 1.28;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-list-item--sidebar .article-list-item__date {
    margin-top: 2px;
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.85714rem;
}

@media screen and (max-width: 800px) {
    .article-list-item--popular {
        width: 100%;
    }
    .article-list-item--popular .article-list-item__inner {
        overflow: visible;
        padding-bottom: 0;
    }
    .article-list-item--popular .article-list-item__image {
        float: none;
        margin-right: 0;
        padding-top: 56.25%;
        width: auto;
    }
    .article-list-item--popular .article-list-item__heading {
        margin-top: 4px;
        font-weight: bold;
        font-size: 0.92857rem;
        line-height: 1.4;
    }
    .article-list-item--popular .article-list-item__date {
        float: left;
        margin-top: 0px;
        margin-right: 1em;
        font-size: 0.78571rem;
    }
}

/* ---------------------------------------------
*   article-video
--------------------------------------------- */
.article-video {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.article-video__image {
    position: relative;
    width: 100%;
    height: auto;
}

.article-video__title {
    margin-top: 4px;
    color: #fff;
    text-align: left;
    font-size: 1rem;
    line-height: 1.4;
}

/* ---------------------------------------------
*   button-colored
--------------------------------------------- */
.button-colored {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    outline: 0;
    border: 1px solid;
    border-color: inherit;
    text-align: center;
    font-size: 1.14286rem;
}

@media screen and (max-width: 800px) {
    .button-colored {
        padding: 6px 30px;
        border-radius: 4px;
        background-color: #51c300;
        color: #fff;
        text-decoration: none;
        line-height: 1.5;
        -webkit-transition: background-color .2s;
        transition: background-color .2s;
    }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
    .button-colored {
        width: 320px;
        line-height: 2.0;
    }
}

.button-colored--block {
    display: block;
}

.button-colored--large {
    padding: 0;
    min-height: 1px;
    width: 320px;
    height: 64px;
    font-weight: normal;
    font-size: 1.07143rem;
    line-height: 64px;
}

@media screen and (max-width: 800px) {
    .button-colored--large {
        margin-top: 10px;
        height: 40px;
        line-height: 40px;
    }
}

.button-colored--green {
    border-color: #51C300;
    background-color: #51C300;
    color: #fff;
}

.button-colored--green:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 800px) {
    .button-colored--sp-noradius {
        border-radius: 0;
    }
}

@media screen and (max-width: 800px) {
    .button-colored--sp-normal {
        display: block;
        overflow: hidden;
        padding: 15px;
        min-height: 1px;
        max-width: 100%;
        width: 100%;
        height: auto;
        border: none;
        border-bottom: 1px solid #E0E0E0;
        background-color: #fff;
        color: #151515;
        text-align: left;
        font-size: 1.14286rem;
        line-height: 1;
    }
    .button-colored--sp-normal:before {
        display: block;
        float: right;
        width: 10px;
        height: 10px;
        border-width: 1px 1px 0 0;
        border-style: solid;
        border-color: #3d3232;
        content: "";
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/* ---------------------------------------------
*   button-share
--------------------------------------------- */
.button-share--fixed {
    display: none;
}

@media screen and (max-width: 800px) {
    .button-share--fixed {
        display: block;
    }
    .button-share--fixed .button-share__head {
        display: none;
    }
    .button-share--fixed .button-share__body {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
        width: 100%;
    }
    .button-share--fixed .button-share__item {
        margin: 0;
        height: 38px;
        border-radius: 0;
    }
}

.button-share__head {
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.07143rem;
}

@media screen and (max-width: 800px) {
    .button-share__head {
        margin-bottom: 10px;
    }
}

.button-share__body {
    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;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.button-share__item {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 20px;
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 24px;
    color: #fff;
    vertical-align: 0;
    text-align: center;
    font-size: 1.42857rem;
    line-height: 20px;
    cursor: pointer;
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
}

@media screen and (max-width: 800px) {
    .button-share__item {
        margin: 0 10px 0 0;
        width: 100%;
        height: 36px;
        border-radius: 18px;
        font-size: 1.07143rem;
    }
}

.button-share__item:first-child {
    margin-left: 0;
}

.button-share__item:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 24px;
    content: "";
}

.button-share__item:hover:before {
    border-color: #ddd;
}

@media screen and (max-width: 800px) {
    .button-share__item:before {
        display: none;
    }
}

.button-share__item--facebook {
    background-color: #3b5998;
}

.button-share__item--facebook:before, .button-share__item--facebook:after {
    color: inherit;
    font-family: FontAwesome;
}

.button-share__item--facebook:after {
    content: "\f09a";
}

.button-share__item--facebook:hover {
    background-color: #fff;
    color: #3b5998;
}

@media screen and (max-width: 800px) {
    .button-share__item--facebook:hover {
        background-color: #3b5998;
        color: #fff;
    }
}

.button-share__item--twitter {
    background-color: #55acee;
}

.button-share__item--twitter:before, .button-share__item--twitter:after {
    color: inherit;
    font-family: FontAwesome;
}

.button-share__item--twitter:after {
    content: "\f099";
}

.button-share__item--twitter:hover {
    background-color: #fff;
    color: #55acee;
}

@media screen and (max-width: 800px) {
    .button-share__item--twitter:hover {
        background-color: #55acee;
        color: #fff;
    }
}

.button-share__item--hatena {
    background-color: #1691db;
}

.button-share__item--hatena:after {
    content: "B!";
    font-weight: bold;
    font-family: Verdana;
}

.button-share__item--hatena:hover {
    background-color: #fff;
    color: #1691db;
}

@media screen and (max-width: 800px) {
    .button-share__item--hatena:hover {
        background-color: #1691db;
        color: #fff;
    }
}

.button-share__item--line {
    display: none;
    background-color: #00c300;
}

.button-share__item--line:after {
    content: "LINE";
    font-weight: bold;
    font-size: 0.64286rem;
    font-family: Frutiger;
}

.button-share__item--line:hover {
    background-color: #fff;
    color: #00c300;
}

@media screen and (max-width: 800px) {
    .button-share__item--line {
        display: block;
    }
    .button-share__item--line:hover {
        background-color: #00c300;
        color: #fff;
    }
}

/* ---------------------------------------------
*   category-pickup
--------------------------------------------- */
.category-pickup {
    margin-top: 20px;
    padding-top: 20px;
    width: calc((100% - 48px) / 3);
}

.category-pickup:nth-child(-n+3) {
    margin-top: 0;
}

@media screen and (max-width: 1200px) {
    .category-pickup {
        width: calc((100% - 24px) / 2);
    }
    .category-pickup:nth-child(-n+3) {
        margin-top: 20px;
    }
    .category-pickup:nth-child(-n+2) {
        margin-top: 0;
    }
}

.category-pickup .article-list-item__heading {
    font-size: 1.21429rem;
}

.category-pickup__head {
    padding: 20px 0;
    border-top: 5px solid;
    text-align: center;
    font-weight: 400;
    font-size: 1.28571rem;
    line-height: 1;
}

.category-pickup--news .category-pickup__head {
    border-color: #36BD82;
}

.category-pickup--variety .category-pickup__head {
    border-color: #E2B500;
}

.category-pickup--sports .category-pickup__head {
    border-color: #00ACFF;
}

.category-pickup--hobby .category-pickup__head {
    border-color: #FF4E00;
}

.category-pickup--love .category-pickup__head {
    border-color: #FF0090;
}

.category-pickup--interview .category-pickup__head {
    border-color: #9FC600;
}

/* ---------------------------------------------
*   channel-info
--------------------------------------------- */
.channel-info {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: start;
    width: 100%;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 800px) {
    .channel-info {
        display: block;
        padding-bottom: 30px;
    }
}

.channel-info__image {
    width: calc((100% - 40px) / 2);
    text-align: center;
}

@media screen and (max-width: 800px) {
    .channel-info__image {
        width: auto;
    }
}

.channel-info__image a {
    position: relative;
    display: block;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: background-color .1s .2s;
    transition: background-color .1s .2s;
}

.channel-info__image img {
    width: 100%;
}

.channel-info__contents {
    width: calc((100% - 40px) / 2);
    line-height: 1.5;
}

@media screen and (max-width: 800px) {
    .channel-info__contents {
        margin-top: 30px;
        width: auto;
    }
}

.channel-info__tag ul:after {
    display: block;
    clear: both;
    content: "";
}

.channel-info__tag li {
    float: left;
    margin: 0 10px 20px 0;
    padding: 6px;
    color: #fff;
    font-size: 0.85714rem;
}

.channel-info__tag--news li {
    background-color: #36BD82;
}

.channel-info__tag--variety li {
    background-color: #E2B500;
}

.channel-info__tag--sports li {
    background-color: #00ACFF;
}

.channel-info__tag--hobby li {
    background-color: #FF4E00;
}

.channel-info__tag--love li {
    background-color: #FF0090;
}

.channel-info__tag--interview li {
    background-color: #9FC600;
}

.channel-info__text {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

@media screen and (max-width: 800px) {
    .channel-info__text {
        line-height: 1.5;
    }
}

.channel-info__button {
    line-height: 1.4;
}

/* ---------------------------------------------
*   channel-logo
--------------------------------------------- */
.channel-logo {
    padding: 10px;
}

@media screen and (max-width: 800px) {
    .channel-logo {
        margin: 0;
        padding: 0;
        padding-bottom: 40px;
        line-height: 1.5;
    }
    .channel-logo img {
        vertical-align: middle;
    }
}

.channel-logo p {
    margin: 0 0 10px;
    color: #000;
    font-weight: bold;
    font-size: 1.14286rem;
}

@media screen and (max-width: 800px) {
    .channel-logo p {
        margin: 0;
        padding: 10px;
    }
}

.channel-logo__list {
    overflow: hidden;
}

.channel-logo__list-item {
    float: left;
    margin: 0 0.5% 1%;
    padding: 1% 2%;
    width: 9%;
    border: 1px solid #fff;
    border-radius: 3px;
    background: #000;
}

@media screen and (max-width: 800px) {
    .channel-logo__list-item {
        padding: 3% 3.2%;
        width: 17%;
    }
}

.channel-logo__list-item a:hover {
    opacity: .5;
}

.channel-logo__list-item img {
    width: 100%;
    height: auto;
}

/* ---------------------------------------------
*   channel-program
--------------------------------------------- */
.channel-program {
    overflow: hidden;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .channel-program {
        position: relative;
        padding-top: 10px;
    }
}

.channel-program__list {
    position: relative;
    padding-bottom: 2px;
    min-height: 350px;
}

@media screen and (max-width: 738px) {
    .channel-program__list {
        position: static;
        min-height: 0;
        /*width: 2000px;*/
    }
}

.channel-program__list-item {
    float: left;
    width: 276px;
}

@media screen and (max-width: 800px) {
    .channel-program__list-item {
        width: 260px;
    }
}

/* ---------------------------------------------
*   channel-program-station
--------------------------------------------- */
.channel-program-station {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5px 10px;
}

.channel-program-station__inner {
    overflow: hidden;
    padding: 0 0 5px 0;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), -1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), -1px 1px 2px rgba(0, 0, 0, 0.1);
}

.channel-program-station__logo {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 0;
    height: 36px;
    background: #000;
    text-align: center;
}

.channel-program-station__logo img {
    display: inline-block;
    width: auto;
    height: 100%;
}

.channel-program-station__link {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.channel-program-station__item {
    padding: 5px 10px;
    border-top: 1px solid #eee;
}

.channel-program-station__item:first-child {
    border-top: none;
}

.channel-program-station__item--onair .channel-program-station__time:after {
    display: inline-block;
    margin-top: 3px;
    padding: 1px 3px;
    width: 3.1em;
    background: #F0163A;
    color: #fff;
    content: "放送中";
    text-align: center;
    font-size: 8px;
}

.channel-program-station__item--onair .channel-program-station__thumb {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: auto;
}

.channel-program-station__item--onair .channel-program-station__text {
    position: static;
    display: block;
    margin: 10px 0 0 40px;
    width: auto;
    font-size: 14px;
    line-height: 1.2;
}

.channel-program-station__time, .channel-program-station__thumb, .channel-program-station__text {
    display: inline-block;
    vertical-align: top;
}

.channel-program-station__time {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    color: #51C300;
    text-align: center;
    font-size: 10px;
}

.channel-program-station__thumb {
    overflow: hidden;
    padding-left: 45px;
    width: 80px;
    height: 45px;
}

.channel-program-station__thumb img {
    width: 100%;
    height: auto;
}

.channel-program-station__text {
    position: absolute;
    top: 0;
    overflow: hidden;
    padding: 0 6px;
    height: 2.8em;
    color: #000;
    font-size: 12px;
}

/* ---------------------------------------------
*   customer-transfer
--------------------------------------------- */
.customer-transfer__head {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.28571rem;
}

@media screen and (max-width: 800px) {
    .customer-transfer__head {
        margin-bottom: 10px;
        font-size: 1.07143rem;
        line-height: 1.5;
    }
}

.customer-transfer__body {
    position: relative;
    padding: 0 52px;
}

@media screen and (max-width: 800px) {
    .customer-transfer__body {
        padding: 0;
    }
}

.customer-transfer__slider {
    position: static;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0 14.5% 0 0;
    width: 100%;
}

@media screen and (max-width: 738px) {
    .customer-transfer__slider {
        padding-right: 18.5%;
    }
}

.customer-transfer__slide {
    float: left;
    padding-right: 10px;
    width: 197px;
}

@media screen and (max-width: 800px) {
    .customer-transfer__slide {
        padding-right: 8px;
        width: 109px;
    }
}

.customer-transfer__link {
    display: block;
    text-decoration: none;
}

.customer-transfer__image img {
    display: block;
}

.customer-transfer__text {
    margin: 5px 0;
    font-size: 1rem;
    line-height: 1.3;
}

@media screen and (max-width: 800px) {
    .customer-transfer__text {
        font-weight: bold;
        font-size: 0.85714rem;
    }
}

/* ---------------------------------------------
*   fixed-footer
--------------------------------------------- */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
}

@media screen and (min-width: 768px) and (max-width: 800px) {
    .fixed-footer {
        bottom: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
    .page--blog .fixed-footer {
        bottom: 35px;
    }
}

/* ---------------------------------------------
*   follow-post
--------------------------------------------- */
.follow-post {
    margin: 0 auto;
    max-width: 724px;
    border: solid 1px #ddd;
    border-width: 1px 0;
}

.follow-post--post-page {
    margin-top: -20px;
}

@media screen and (max-width: 670px) {
    .follow-post--post-page {
        margin-top: 0;
    }
}

.follow-post__inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 0 auto;
    padding: 15px 0;
    max-width: 580px;

    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 670px) {
    .follow-post__inner {
        padding: 10px 0;
        max-width: 325px;
    }
}

.follow-post__image {
    position: relative;
    overflow: hidden;
    width: 220px;
}

@media screen and (max-width: 670px) {
    .follow-post__image {
        width: 100px;
    }
}

.follow-post__image:before {
    display: block;
    padding-top: 56.25%;
    content: "";

    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.follow-post__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.follow-post__contents {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    width: calc(100% - 220px);
    text-align: center;

    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 670px) {
    .follow-post__contents {
        display: block;
        width: calc(100% - 100px);
    }
}

.follow-post__contents:before {
    display: block;
    margin-right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background: url(/files/user/images/design/at-logo.png) no-repeat 50% 0;
    background-size: contain;
    content: "";
}

@media screen and (max-width: 800px) {
    .follow-post__contents:before {
        display: none;
    }
}

.follow-post__sns-head {
    font-weight: bold;
    font-size: 1.28571rem;
    line-height: 24px;
}

@media screen and (max-width: 670px) {
    .follow-post__sns-head {
        font-size: 0.85714rem;
        line-height: 1.14286rem;
    }
}

.follow-post__sns-body {
    font-size: 0;
}

.follow-post__sns-item {
    display: inline-block;
    margin: 10px 5px 0 5px;
    font-size: 1.0rem;
    line-height: 1;
}

.follow-post__sns-item .twitter-follow-button {
    vertical-align: bottom;
}

@media screen and (max-width: 800px) {
    .follow-post__sns-item {
        margin: 5px 4px 0;
    }
}

/* ---------------------------------------------
*   heading-caption
--------------------------------------------- */
.heading-caption {
    color: #f0163a;
    font-size: 0;
    line-height: 1.5;
}

.heading-caption__label {
    display: inline-block;
    margin-right: 5px;
    padding: 0 3px;
    background-color: #F0163A;
    color: #fff;
    font-size: 0.71429rem;
}

.heading-caption__text {
    font-size: 0.85714rem;
}

/* ---------------------------------------------
*   heading-colored
--------------------------------------------- */
.heading-colored {
    padding-left: 10px;
    border-left: 6px solid #fff;
    font-weight: bold;
    font-size: 2.57143rem;
    line-height: 1;
}

@media screen and (max-width: 800px) {
    .heading-colored {
        margin-top: 5px;
        padding-left: 8px;
        border-width: 4px;
        font-size: 1.71429rem;
    }
}

.heading-colored--news {
    border-color: #36BD82;
    color: #36BD82;
}

.heading-colored--variety {
    border-color: #E2B500;
    color: #E2B500;
}

.heading-colored--sports {
    border-color: #00ACFF;
    color: #00ACFF;
}

.heading-colored--hobby {
    border-color: #FF4E00;
    color: #FF4E00;
}

.heading-colored--love {
    border-color: #FF0090;
    color: #FF0090;
}

.heading-colored--interview {
    border-color: #9FC600;
    color: #9FC600;
}

/* ---------------------------------------------
*   heading-graphical
--------------------------------------------- */
.heading-graphical {
    overflow: hidden;
    padding-top: 20px;
    height: 0;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
}

.heading-graphical--abemavideo-ranking {
    padding-top: 28px;
    background-image: url(/files/user/images/design/abema-video-ranking.png);
    background-size: 159px auto;
}

.heading-graphical--access-ranking {
    padding-top: 40px;
    background-image: url(/files/user/images/design/access-ranking.png);
    background-size: 278px 40px;
}

.heading-graphical--category {
    background-image: url(/files/user/images/design/category.png);
    background-size: 81px 20px;
}

.heading-graphical--category-pickup {
    padding-top: 24px;
    background-image: url(/files/user/images/design/category-pickup.png);
    background-size: 175px 24px;
}

.heading-graphical--daily-ranking {
    padding-top: 24px;
    background-image: url(/files/user/images/design/daily-ranking.png);
    background-size: 144px 24px;
}

.heading-graphical--officialapp {
    padding-top: 19px;
    background-image: url(/files/user/images/design/official-app.png);
    background-size: 112px 19px;
}

.heading-graphical--official-account {
    padding-top: 16px;
    background-image: url(/files/user/images/design/official-account.png);
    background-size: 143px 16px;
}

.heading-graphical--popular-ranking {
    padding-top: 24px;
    background-image: url(/files/user/images/design/popular-topics.png);
    background-size: 160px 24px;
}

.heading-graphical--specialsite {
    padding-top: 19px;
    background-image: url(/files/user/images/design/special-site.png);
    background-size: 108px 19px;
}

.heading-graphical--today {
    padding-top: 24px;
    background-image: url(/files/user/images/design/today-abema-times.png);
    background-size: 224px 24px;
}

/* ---------------------------------------------
*   heading-text
--------------------------------------------- */
.heading-text {
    font-weight: bold;
    font-size: 1.85714rem;
    line-height: 1;
}

@media screen and (max-width: 800px) {
    .heading-text {
        font-size: 1.42857rem;
    }
}

@media screen and (max-width: 800px) {
    .heading-text--sp-fz19 {
        font-size: 1.35714rem;
    }
}

/* ---------------------------------------------
*   icon-player
--------------------------------------------- */
.icon-player {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 25%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ---------------------------------------------
*   keyword-search
--------------------------------------------- */
.keyword-search {
    position: relative;
    border: 1px solid #eee;
    background-color: #fff;
}

.keyword-search__icon {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #999;
    font-size: 1.14286rem;
    line-height: 1;
}

.keyword-search__icon:before, .keyword-search__icon:after {
    color: inherit;
    font-family: FontAwesome;
}

.keyword-search__icon:before {
    content: "\f002";
}

.keyword-search__input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    padding-left: 40px;
    width: 100%;
    height: 40px;
    outline: none;
    border: 0;
    border-radius: 0;
    color: #333;
    vertical-align: top;
    font-size: 0.85714rem;
    font-family: "Helvetica neue", Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    line-height: 40px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.keyword-search__input:placeholder-shown {
    color: #ccc;
    letter-spacing: 0em;
}

.keyword-search__input::-webkit-input-placeholder {
    color: #ccc;
    letter-spacing: 0em;
}

.keyword-search__input:-moz-placeholder {
    color: #ccc;
    letter-spacing: 0em;
    opacity: 1;
}

.keyword-search__input::-moz-placeholder {
    color: #ccc;
    letter-spacing: 0em;
    opacity: 1;
}

.keyword-search__input:-ms-input-placeholder {
    color: #ccc;
    letter-spacing: 0em;
}

/* ---------------------------------------------
*   official-app
--------------------------------------------- */
.official-app {
    overflow: hidden;
    padding: 15px 25px;
    border-radius: 4px;
    background-color: #000;
}

.official-app__logo {
    float: left;
    overflow: hidden;
    padding-top: 59px;
    width: 59px;
    height: 0;
    background: url(/files/user/images/design/abema-tv-icon.png) 0 0 no-repeat;
    background-size: 59px 59px;
    background-repeat: no-repeat;
}

.official-app__lead {
    float: left;
    padding: 10px 0 10px 20px;
    height: 40px;
    color: #fff;
    font-size: 0.85714rem;
}

.official-app__list {
    float: right;
    overflow: hidden;
    padding: 10px 0;
}

.official-app__list-item {
    display: inline-block;
    margin: 0 7px;
    vertical-align: top;
}

.official-app__ios, .official-app__android {
    display: block;
    overflow: hidden;
    height: 0;
    background-repeat: no-repeat;
}

.official-app__ios {
    padding-top: 40px;
    width: 140px;
    background: url(/files/user/images/design/app-store.png) 0 0 no-repeat;
    background-size: 140px 40px;
}

.official-app__android {
    padding-top: 40px;
    width: 130px;
    background: url(/files/user/images/design/google-play.png) 0 0 no-repeat;
    background-size: 130px 40px;
}

.official-app__official {
    display: block;
    width: 140px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.85714rem;
    line-height: 38px;
}

/* ---------------------------------------------
*   on-air
--------------------------------------------- */
.on-air {
    position: fixed;
    bottom: 30px;
    left: 0;
    z-index: 10000;
    line-height: 1.5;
}

@media screen and (max-width: 800px) {
    .on-air {
        right: 10px;
        bottom: 40px;
        left: auto;
        z-index: 100;
    }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
    .on-air {
        right: auto;
        bottom: 10px;
        left: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
    .page--blog .on-air {
        bottom: 45px;
    }
}
@media screen and (max-width: 767px) {
    .page--blog .on-air {
        bottom: 74px;
        z-index: 9999;
    }
}

.on-air__inner {
    overflow: hidden;
    margin: 10px 0 0;
    width: 180px;
    height: 62px;
    background: #000;
}

.on-air__body {
    padding: 5px 0;
}

.on-air__body div {
    float: left;
}

.on-air__titlearea {
    width: 45%;
}

.on-air__title {
    margin: 0 auto 5px;
    width: 80%;
    background: #FF0000;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

.on-air__logo {
    margin: 0 auto;
    width: 90%;
}

.on-air__logo img {
    width: 100%;
}

.on-air__img img {
    width: 100%;
}

.on-air__img {
    width: 50%;
}

.close {
    position: absolute;
    top: 0px;
    right: -8px;
    display: block;
    width: 20px;
}

.close img {
    width: 100%;
    height: auto;
}

/* ---------------------------------------------
*   on-air-banner
--------------------------------------------- */
@media screen and (max-width: 800px) {
    .on-air-banner {
        position: relative;
        margin: 0 auto;
        padding: 5px;
        border-radius: 4px;
        background-color: #000;
        text-align: center;
    }
    .on-air-banner__img {
        margin: 0 auto;
        background-color: #000;
    }
    .on-air-banner__img img {
        width: 100%;
    }
    .on-air-banner__body {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 4px;
        background-color: rgba(0, 0, 0, 0.25);
    }
    .on-air-banner__title {
        position: absolute;
        top: 5px;
        left: 5px;
        padding: 4px 6px;
        background-color: #f0163a;
        color: #eee;
        font-weight: 700px;
        font-size: 18px;
    }
    .on-air-banner__playbtn {
        position: relative;
        top: 30%;
    }
    .on-air-banner__playbtn img {
        width: 20% !important;
        height: auto;
    }
    .on-air-banner__logo {
        display: table-cell;
        width: 50%;
        vertical-align: middle;
        text-align: center;
    }
    .on-air-banner__btn {
        display: table-cell;
        margin: 10px 0 0;
        padding: 5px 0;
        width: 50%;
        border: 1px solid #fff;
        border-radius: 2px;
        color: #fff;
        vertical-align: middle;
        font-size: 14px;
    }
    .on-air-banner .official-app {
        position: relative;
        z-index: 10;
        display: table;
        padding: 5px 0 0;
        width: 100%;
    }
}

/* ---------------------------------------------
*   page-header
--------------------------------------------- */
@media screen and (max-width: 800px) {
    .page-header {
        padding-top: 10px;
    }
}

.page-header__lead {
    margin-top: 20px;
    line-height: 1.6;
}

@media screen and (max-width: 800px) {
    .page-header__lead {
        font-size: 0.85714rem;
    }
}

.page-header__lead--fz16 {
    margin-top: 40px;
    font-size: 1.14286rem;
    line-height: 1.5;
}

@media screen and (max-width: 800px) {
    .page-header__lead--fz16 {
        margin-top: 20px;
        font-size: 0.85714rem;
    }
}

.page-header__lead b {
    font-weight: bold;
}

/* ---------------------------------------------
*   page-nav
--------------------------------------------- */
@media screen and (max-width: 800px) {
    .page-nav {
        padding-top: 5px;
        text-align: center;
    }
}

.page-nav__list {
    font-size: 0;
}

.page-nav__list-item {
    display: inline-block;
    font-size: 1.0rem;
}

.page-nav--ranking .page-nav__list-item {
    margin-left: 46px;
}

.page-nav--ranking .page-nav__list-item:first-child {
    margin-left: 0;
}

.page-nav__link--ranking-daily {
    background-image: url(/files/user/images/design/daily-ranking-title.png);
}

.page-nav__link--ranking-weekly {
    background-image: url(/files/user/images/design/weekly-ranking-title.png);
}

.page-nav--ranking .page-nav__link {
    display: block;
    overflow: hidden;
    padding-top: 39px;
    width: 86px;
    height: 0;
    background-position: 0 -39px;
    background-size: 86px 78px;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
}

.page-nav--ranking .page-nav__link--current, .page-nav--ranking .page-nav__link:hover {
    background-position: 0 0;
}

/* ---------------------------------------------
*   pagination
--------------------------------------------- */
.pagination {
    margin: 60px 0 80px;
}

@media screen and (max-width: 800px) {
    .pagination {
        display: block;
        margin: 20px -15px 30px;
        padding: 30px 0;
        background-color: #F2F2F2;
        text-align: center;
    }
}

.pagination__list {
    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;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.pagination__list-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1px 10px 0;
    width: 44px;
    height: 44px;
    text-align: center;
    white-space: nowrap;
    font-size: 1.07143rem;
}

.pagination__list-item a:hover {
    opacity: .6;
}

.pagination__list-item > a,
.pagination__list-item > span {
    display: block;
    height: 44px;
    border-radius: 3px;
    color: #151515;
    line-height: 44px;
}

.pagination__list-item--hide {
    display: none;
}

.pagination__list-item--number > a,
.pagination__list-item--number > span {
    background-color: #e6e6e6;
}

@media screen and (max-width: 800px) {
    .pagination__list-item--number > a,
    .pagination__list-item--number > span {
        background-color: transparent;
        color: #999;
    }
}

.pagination__list-item--current > a,
.pagination__list-item--current > span {
    background-color: #151515;
    color: #fff;
}

.pagination__list-item--first > a,
.pagination__list-item--first > span, .pagination__list-item--last > a,
.pagination__list-item--last > span, .pagination__list-item--prev > a,
.pagination__list-item--prev > span, .pagination__list-item--next > a,
.pagination__list-item--next > span {
    background-color: transparent;
    color: #151515;
}

.pagination__list-item--first > a:before, .pagination__list-item--first > a:after,
.pagination__list-item--first > span:before,
.pagination__list-item--first > span:after, .pagination__list-item--last > a:before, .pagination__list-item--last > a:after,
.pagination__list-item--last > span:before,
.pagination__list-item--last > span:after, .pagination__list-item--prev > a:before, .pagination__list-item--prev > a:after,
.pagination__list-item--prev > span:before,
.pagination__list-item--prev > span:after, .pagination__list-item--next > a:before, .pagination__list-item--next > a:after,
.pagination__list-item--next > span:before,
.pagination__list-item--next > span:after {
    color: inherit;
    font-family: FontAwesome;
}

.pagination__list-item--first > a:before,
.pagination__list-item--first > span:before {
    content: "\f100";
}

.pagination__list-item--last > a:before,
.pagination__list-item--last > span:before {
    content: "\f101";
}

.pagination__list-item--prev > a:before,
.pagination__list-item--prev > span:before {
    content: "\f104";
}

.pagination__list-item--next > a:before,
.pagination__list-item--next > span:before {
    content: "\f105";
}

/* ---------------------------------------------
*   page-section
--------------------------------------------- */
.page-section {
    padding-top: 50px;
}

@media screen and (max-width: 800px) {
    .page-section {
        padding-top: 25px;
    }
}

.page-section__body {
    margin-top: 40px;
}

@media screen and (max-width: 800px) {
    .page-section__body {
        margin-top: 20px;
    }
}

/* ---------------------------------------------
*   related-post
--------------------------------------------- */
.related-post__head {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.57143rem;
}

@media screen and (max-width: 800px) {
    .related-post__head {
        margin: 0 8px;
        font-size: 1.07143rem;
        line-height: 2;
    }
}

.related-post__body {
    margin-bottom: -20px;
}

@media screen and (max-width: 800px) {
    .related-post__body {
        margin-bottom: 0;
    }
}

/* ---------------------------------------------
*   slick
--------------------------------------------- */
.slick-next, .slick-prev {
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    width: 20px;
    height: 20px;
    outline: 0;
    border: none;
    background: 0 0;
    color: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slick-next:before, .slick-prev:before {
    color: #fff;
    font-size: 20px;
    font-family: slick;
    line-height: 1;
    opacity: .75;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev, .slick-next {
    z-index: 100;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #000;
}

.slick-prev {
    left: 20px;
}

.slick-prev:before {
    position: absolute;
    top: 15px;
    left: 16px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.slick-next {
    right: 20px;
}

.slick-next:before {
    position: absolute;
    top: 15px;
    left: 12px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   blog-article
--------------------------------------------- */
.blog-article__date {
    display: block;
    color: #666;
    font-size: 1rem;
    line-height: 1;
}

@media screen and (max-width: 800px) {
    .blog-article__date {
        font-size: 0.78571rem;
    }
}

.blog-article__adc {
    display: none;
}

@media screen and (max-width: 800px) {
    .blog-article__adc {
        display: block;
        padding: 25px 0 10px;
    }
}

.blog-article__body {
    margin: auto;
    max-width: 724px;
}

.blog-article__body .u-bdr-clr {
    border: 1px solid #ccc;
}

.blog-article__body .quote .ogp__img-item {
    width: 200px;
}

@media screen and (max-width: 800px) {
    .blog-article__body .quote .ogp__img-item {
        width: 150px;
        height: 85px;
    }
}

.blog-article__body .quote .ogp__img-item:after {
    padding-top: 110px;
}

.blog-article__body .quote .ogp__body {
    padding-left: 240px;
}

@media screen and (max-width: 800px) {
    .blog-article__body .quote .ogp__body {
        padding: 0 0 0 163px;
    }
}

@media screen and (max-width: 800px) {
    .blog-article__body .quote .ogp__text {
        margin-top: 5px;
        font-size: 0.78571rem;
    }
}

.blog-article b, .blog-article strong {
    font-weight: 700;
}

.blog-article a.u-lnk-clr {
    border-bottom: 1px dashed;
    color: #0080bb;
}

.blog-article table {
    margin: 0 0 10px;
    width: 100%;
}

.blog-article table td {
    padding: 0 0 0 30px;
    vertical-align: top;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .blog-article table td {
        padding: 0 0 0 10px;
    }
}

.blog-article table td p, .blog-article table td div {
    text-align: left;
}

.blog-article table .time {
    padding: 10px 4px;
    width: 30px;
    background: #50c401;
    color: #fff;
    vertical-align: top;
    text-align: center;
    font-size: 22px;
    line-height: 1.1;
}

@media screen and (max-width: 800px) {
    .blog-article table .time {
        padding: 10px 4px;
    }
}

.blog-article table a {
    color: #0080bb;
    text-decoration: underline;
}

.blog-article table img {
    padding: 0;
    max-width: 550px;
    width: 100%;
    height: auto;
    vertical-align: baseline;
}

@media screen and (max-width: 800px) {
    .blog-article table img {
        width: 90%;
        vertical-align: bottom;
    }
}

.blog-article table p {
    margin: 0 auto;
    padding: 0 0 10px;
    max-width: 550px;
}

@media screen and (max-width: 800px) {
    .blog-article table p {
        width: 90%;
        font-size: 1.14286rem;
        line-height: 1.5;
    }
}

.blog-article table p img {
    padding: 0;
    width: 20px;
}

@media screen and (max-width: 800px) {
    .blog-article table p img {
        padding: 0;
        width: 20px;
        vertical-align: baseline;
    }
}

.blog-article .copy {
    padding: 8px;
    background: #111;
    color: #999;
    font-size: 12px;
    line-height: 1.5;
}

@media screen and (max-width: 738px) {
    .blog-article .copy {
        font-size: 0.71429rem;
    }
}

/* ---------------------------------------------
*   blog-body
--------------------------------------------- */
.blog-body {
    font-size: 1rem;
}

.blog-body__item {
    margin-top: 30px;
}

.blog-body__text blockquote,
.blog-body__text div,
.blog-body__text h4,
.blog-body__text ol,
.blog-body__text p,
.blog-body__text ul {
    font-size: 1.14286rem;
    line-height: 1.5;
}

.blog-body__text h2 {
    font-weight: bold;
    font-size: 1.42857rem;
    line-height: 1.6;
}

.blog-body__text h3 {
    font-size: 1.14286rem;
}

.blog-body__text h3, .blog-body__text h4 {
    margin-bottom: .8em;
    font-weight: 700;
}

.blog-body__text div,
.blog-body__text h1,
.blog-body__text h2,
.blog-body__text p {
    margin-bottom: .5em;
}

@media screen and (max-width: 800px) {
    .blog-body__text div,
    .blog-body__text h1,
    .blog-body__text h2,
    .blog-body__text p {
        font-size: 1.07143rem;
    }
}

.blog-body__text:last-child {
    margin-bottom: 0;
}

.txt div, .txt h1, .txt h2, .txt p {
    margin-bottom: .5em;
}

.txt blockquote, .txt div, .txt h4, .txt ol, .txt p, .txt ul {
    font-size: 1.14286rem;
    line-height: 1.5;
}

@media screen and (max-width: 800px) {
    .txt blockquote, .txt div, .txt h4, .txt ol, .txt p, .txt ul {
        font-size: 1.07143rem;
    }
}

.txt h2 {
    font-weight: bold;
    font-size: 1.42857rem;
    line-height: 1.6;
}

.txt h3, .txt h4 {
    margin-bottom: .8em;
    font-weight: 700;
}

.txt :last-child {
    margin-bottom: 0;
}

.ogp {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
}

.ogp__title {
    display: block;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.28571rem;
}

@media screen and (max-width: 800px) {
    .ogp__title {
        font-size: 1rem;
    }
}

.ogp__body {
    padding: 15px 20px 20px 205px;
}

.ogp__action {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

@media screen and (max-width: 738px) {
    .ogp__action {
        display: block;
        padding: 10px;
    }
}

.ogp__action:hover:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    content: "";
}

.ogp__action:hover .ogp__title {
    text-decoration: none;
    opacity: 1;
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
}

.ogp__action:hover .ogp__text {
    text-decoration: none;
    opacity: 1;
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
}

.ogp__site {
    overflow: hidden;
    margin-top: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.71429rem;
}

@media screen and (max-width: 800px) {
    .ogp__site {
        display: none;
    }
}

.ogp__text {
    font-size: 0.85714rem;
}
/*.ogp__text {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85714rem;
    line-height: pxtorem 20, "pc";
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}*/

.ogp__img {
    position: relative;
    float: left;
    margin: 20px;
    background-color: #fff;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .ogp__img {
        display: block;
        margin: 0;
    }
}

.ogp__label + .ogp__title, .ogp__text {
    margin-top: 8px;
}

.ogp__img-item {
    position: relative;
    display: block;
    overflow: hidden;
    width: 160px;
}

@media screen and (max-width: 800px) {
    .ogp__img-item {
        min-height: 85px;
        width: 150px;
    }
}

.ogp__img-item:after {
    display: block;
    padding-top: 160px;
    content: "";
}

.ogp__img-item--action {
    position: relative;
    overflow: hidden;
}

.ogp__img-item--action:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: .15s ease-out;
    transition: .15s ease-out;
}

.ogp__img-item img {
    position: absolute;
    top: 0;
    right: -100%;
    bottom: -100%;
    left: -100%;
    display: block;
    margin: 0 auto auto;
    width: 100%;
}

.img__item {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}

.img__item > img {
    max-width: 100%;
}

.img__item--fit, .img__item--l, .img__item--m {
    display: block;
}

.img__item--fit img, .img__item--l img, .img__item--m img {
    width: 100%;
}

.img__item--action {
    position: relative;
    overflow: hidden;
}

.img__item--action:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.blog-body__item .img a.img__item[target="_blank"]:before {
    background: url(/files/user/images/design/video-icon.png) no-repeat;
    background-position: 100% 100%;
    background-size: 6%;
    opacity: 0.8;
}

.u-txt-clr {
    color: #333333;
}

.u-txt-clr--lv1 {
    color: rgba(51, 51, 51, 0.7);
}

.u-bdr-clr {
    border-color: #eeeeee;
}

.u-lnk-clr, .u-clr-area a {
    color: #3bb1c2;
}

.u-lnk-clr:hover, .u-clr-area a:hover {
    color: rgba(59, 177, 194, 0.5);
}

.u-lnk-clr:visited, .u-clr-area a:visited {
    color: rgba(59, 177, 194, 0.7);
}

.blog-item:after, .bloginfo-category-list:after, .comment-item:after, .facebook-feed__body:after, .feed-header__inner:after, .ogp:after, .pager:after, .reblog-popup__action--sp:after, .reblog-popup__footer:after, .reblog-popup__site:after, .reblog-toast__item:after, .reblogged-site-list__item:after, .related-posts--gridl .related-posts__item-outer:after, .related-posts--gridm .related-posts__item-outer:after, .related-posts--listl .related-posts__item:after, .related-posts--listm .related-posts__item:after, .shop-item-category-list:after, .shop-item-quote--list:after, .site-follow:after, .twitter-feed__body:after {
    clear: both;
}

.blog-body__item .img a.img__item:hover {
    opacity: .6;
}

@media screen and (max-width: 800px) {
    .blog-body__item .img a.img__item:hover {
        opacity: 1;
    }
}

.comment-item__body-head .comment-item__user-name, .noti-item .txt--strong, .ogp__title, .pager--type2 .pager__description, .reblogged-site-list__site-title, .shop-item-price__value, .shop-item-quote__text {
    font-weight: 700;
}

/* ---------------------------------------------
*   blog-title
--------------------------------------------- */
.blog-title {
    margin-bottom: 3px;
}

.blog-title__text {
    margin-bottom: 21px;
    font-weight: bold;
    font-size: 1.92857rem;
    line-height: 1.3;
}

@media screen and (max-width: 800px) {
    .blog-title__text {
        margin-bottom: 10px;
        font-size: 1.28571rem;
    }
}

/* ---------------------------------------------
*   search-result
--------------------------------------------- */
.search-result__title {
    font-size: 1.28571rem;
}

@media screen and (max-width: 800px) {
    .search-result__title {
        font-size: 1.14286rem;
    }
}

.search-result__title-word {
    vertical-align: middle;
    font-size: 1.71429rem;
}

@media screen and (max-width: 800px) {
    .search-result__title-word {
        font-size: 1.42857rem;
    }
}

.search-result__title-text {
    margin-left: 10px;
    vertical-align: middle;
}

.search-result__form {
    margin-top: 20px;
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 800px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 0.625vw !important;
    }
    .mgt-sp--10 {
        margin-top: 1.25vw !important;
    }
    .mgt-sp--15 {
        margin-top: 1.875vw !important;
    }
    .mgt-sp--20 {
        margin-top: 2.5vw !important;
    }
    .mgt-sp--25 {
        margin-top: 3.125vw !important;
    }
    .mgt-sp--30 {
        margin-top: 3.75vw !important;
    }
    .mgt-sp--35 {
        margin-top: 4.375vw !important;
    }
    .mgt-sp--40 {
        margin-top: 5vw !important;
    }
    .mgt-sp--45 {
        margin-top: 5.625vw !important;
    }
    .mgt-sp--50 {
        margin-top: 6.25vw !important;
    }
    .mgt-sp--55 {
        margin-top: 6.875vw !important;
    }
    .mgt-sp--60 {
        margin-top: 7.5vw !important;
    }
    .mgt-sp--65 {
        margin-top: 8.125vw !important;
    }
    .mgt-sp--70 {
        margin-top: 8.75vw !important;
    }
    .mgt-sp--75 {
        margin-top: 9.375vw !important;
    }
    .mgt-sp--80 {
        margin-top: 10vw !important;
    }
    .mgt-sp--85 {
        margin-top: 10.625vw !important;
    }
    .mgt-sp--90 {
        margin-top: 11.25vw !important;
    }
    .mgt-sp--95 {
        margin-top: 11.875vw !important;
    }
    .mgt-sp--100 {
        margin-top: 12.5vw !important;
    }
    .mgt-sp--105 {
        margin-top: 13.125vw !important;
    }
    .mgt-sp--110 {
        margin-top: 13.75vw !important;
    }
    .mgt-sp--115 {
        margin-top: 14.375vw !important;
    }
    .mgt-sp--120 {
        margin-top: 15vw !important;
    }
    .mgt-sp--125 {
        margin-top: 15.625vw !important;
    }
    .mgt-sp--130 {
        margin-top: 16.25vw !important;
    }
    .mgt-sp--135 {
        margin-top: 16.875vw !important;
    }
    .mgt-sp--140 {
        margin-top: 17.5vw !important;
    }
    .mgt-sp--145 {
        margin-top: 18.125vw !important;
    }
    .mgt-sp--150 {
        margin-top: 18.75vw !important;
    }
    .mgt-sp--155 {
        margin-top: 19.375vw !important;
    }
    .mgt-sp--160 {
        margin-top: 20vw !important;
    }
    .mgt-sp--165 {
        margin-top: 20.625vw !important;
    }
    .mgt-sp--170 {
        margin-top: 21.25vw !important;
    }
    .mgt-sp--175 {
        margin-top: 21.875vw !important;
    }
    .mgt-sp--180 {
        margin-top: 22.5vw !important;
    }
    .mgt-sp--185 {
        margin-top: 23.125vw !important;
    }
    .mgt-sp--190 {
        margin-top: 23.75vw !important;
    }
    .mgt-sp--195 {
        margin-top: 24.375vw !important;
    }
    .mgt-sp--200 {
        margin-top: 25vw !important;
    }
    .mgt-sp--205 {
        margin-top: 25.625vw !important;
    }
    .mgt-sp--210 {
        margin-top: 26.25vw !important;
    }
    .mgt-sp--215 {
        margin-top: 26.875vw !important;
    }
    .mgt-sp--220 {
        margin-top: 27.5vw !important;
    }
    .mgt-sp--225 {
        margin-top: 28.125vw !important;
    }
    .mgt-sp--230 {
        margin-top: 28.75vw !important;
    }
    .mgt-sp--235 {
        margin-top: 29.375vw !important;
    }
    .mgt-sp--240 {
        margin-top: 30vw !important;
    }
    .mgt-sp--245 {
        margin-top: 30.625vw !important;
    }
    .mgt-sp--250 {
        margin-top: 31.25vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 800px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 0.625vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 1.25vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 1.875vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 2.5vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 3.125vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 3.75vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 4.375vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 5vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 5.625vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 6.25vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 6.875vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 7.5vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 8.125vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 8.75vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 9.375vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 10vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 10.625vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 11.25vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 11.875vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 12.5vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 13.125vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 13.75vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 14.375vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 15vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 15.625vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 16.25vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 16.875vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 17.5vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 18.125vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 18.75vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 19.375vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 20.625vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 21.25vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 21.875vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 22.5vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 23.125vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 23.75vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 24.375vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 25vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 25.625vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 26.25vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 26.875vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 27.5vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 28.125vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 28.75vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 29.375vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 30vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 30.625vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 31.25vw !important;
    }
}

@media screen and (min-width: 801px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 800px) {
    .sp-hide {
        display: none !important;
    }
}
