@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ---------------------------------------------
*   adc-banner
--------------------------------------------- */

/* ---------------------------------------------
*   adc-post
--------------------------------------------- */
.adc-post {
  min-height: 150px;
  margin: 0 12px;
  overflow: hidden; }

.adc-post__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-top: 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid #eee; }

.adc-post__item:first-child {
  margin-top: 0; }

.adc-post__link {
  text-decoration: none; }

.adc-post__image {
  width: 128px;
  float: right; }

.adc-post__title {
  margin-top: 4px;
  color: #333;
  font-size: 1.28571rem;
  line-height: 1.4; }

.adc-post__cat {
  padding: 3px;
  clear: both;
  color: #7f7f7f;
  font-size: 0.78571rem;
  text-align: right; }

/* ---------------------------------------------
*   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
--------------------------------------------- */

.article-list--pickup .article-list__body,
.article-list--main .article-list__body {
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  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; }

.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; }

/* ---------------------------------------------
*   article-list-item
--------------------------------------------- */
.article-list-item {
  width: 100%; }

.article-list-item a {
  display: block; }

.article-list-item__inner {
  position: relative; }

.article-list-item__image {
  display: block;
  position: relative;
  height: 0;
  padding-top: 66.7%;
  overflow: hidden; }

.article-list-item__image img {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  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: 0.6; }

.article-list-item__contents {
  padding-bottom: 1px;
  overflow: hidden; }

.article-list-item__heading {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  line-height: 1.3;
  text-overflow: ellipsis; }

.article-list-item__heading a {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis; }

.article-list-item__heading a:hover {
  opacity: 0.6; }

.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-size: 1.16em;
  font-style: normal;
  font-weight: bold; }

.article-list-item__date {
  color: rgba(51, 51, 51, 0.5);
  font-size: 0.92857rem; }

.article-list-item--main {
  width: calc((100% - 48px) / 3);
  margin-top: 40px; }

.article-list-item--main:nth-child(-n + 3) {
  margin-top: 0; }

.article-list-item--main .article-list-item__heading {
  font-size: 1.21429rem; }

.article-list-item--main .article-list-item__date {
  margin-top: 6px; }

.article-list-item--keysize .article-list-item__image {
  padding-top: 36.7%; }

.article-list-item--keysize .article-list-item__contents {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 80px 20px 10px;
  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 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.85714rem;
  text-overflow: ellipsis; }

.article-list-item--keysize .article-list-item__heading a {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis; }

.article-list-item--keysize .article-list-item__date {
  margin-top: 2px;
  color: #fff;
  font-size: 0.85714rem;
  text-align: right; }

.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 {
  -ms-flex-pack: justify;
  -ms-flex-align: start;
  -webkit-box-pack: justify;
  -webkit-box-align: start;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  justify-content: space-between; }

.article-list-item--horizontal .article-list-item__image {
  width: 160px;
  height: auto;
  padding-top: 0; }

.article-list-item--horizontal .article-list-item__image a {
  position: relative;
  height: 0;
  padding-top: 66.7%; }

.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 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-top: 0;
  overflow: hidden;
  font-size: 1.57143rem;
  text-overflow: ellipsis; }

.article-list-item--horizontal .article-list-item__heading a {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.6;
  text-overflow: ellipsis;
  vertical-align: top; }

.article-list-item--horizontal .article-list-item__date {
  margin: 15px 10px 0 0;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.78571rem; }

.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 {
  width: 100%;
  height: 0;
  padding-top: 43.95604%; }

.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;
  height: 100%;
  padding-top: 0; }

.article-list--ranking
.article-list-item--horizontal:first-child
.article-list-item__contents {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 20px 20px;
  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 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.85714rem;
  text-overflow: ellipsis; }

.article-list--ranking
.article-list-item--horizontal:first-child
.article-list-item__heading
a {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis; }

.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; }

.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: ""; }

.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: ""; }

.article-list-item--ranking .article-list-item__image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #51c300;
  color: #fff;
  font-size: 1rem;
  line-height: 20px;
  text-align: center;
  content: counter(number);
  counter-increment: number; }

.article-list-item--related {
  width: auto;
  min-height: 1px;
  margin-top: 0;
  padding: 10px;
  border-bottom: 1px solid #eee; }

.article-list-item--related a:hover {
  opacity: 0.6; }

.article-list-item--related .article-list-item__inner {
  padding-bottom: 1px;
  overflow: hidden; }

.article-list-item--related .article-list-item__image {
  width: 128px;
  height: auto;
  padding-top: 0;
  float: right; }

.article-list-item--related .article-list-item__image a {
  display: block;
  position: relative;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden; }

.article-list-item--related .article-list-item__contents {
  margin-right: 140px; }

.article-list-item--related .article-list-item__heading {
  margin-top: 0;
  font-size: 1.28571rem;
  font-weight: normal;
  line-height: 1.5;
  white-space: normal; }

.article-list-item--related .article-list-item__date {
  font-size: 0.85714rem; }

.article-list-item--search-result {
  min-height: 100px;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee; }

.article-list-item--search-result a:hover {
  opacity: 0.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 {
  width: 120px;
  height: 120px;
  margin-left: 40px;
  padding-top: 0;
  float: right; }

.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;
  font-size: 1.14286rem;
  font-weight: 700;
  line-height: 1.8;
  text-overflow: ellipsis;
  white-space: nowrap; }

.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; }

.article-list-item--sidebar {
  width: 100%; }

.article-list-item--sidebar .article-list-item__inner {
  padding-bottom: 1px;
  overflow: hidden; }

.article-list-item--sidebar .article-list-item__image {
  width: 80px;
  margin-right: 10px;
  padding-top: 45px;
  float: left; }

.article-list-item--sidebar .article-list-item__heading {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-top: 0;
  overflow: hidden;
  line-height: 1.28;
  text-overflow: ellipsis; }

.article-list-item--sidebar .article-list-item__date {
  margin-top: 2px;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.85714rem; }

/* ---------------------------------------------
*   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;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left; }

/* ---------------------------------------------
*   button-colored
--------------------------------------------- */
.button-colored {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 10px;
  border: 1px solid;
  border-color: inherit;
  outline: 0;
  font-size: 1.14286rem;
  text-align: center; }

.button-colored--block {
  display: block; }

.button-colored--large {
  width: 320px;
  height: 64px;
  min-height: 1px;
  padding: 0;
  font-size: 1.07143rem;
  font-weight: normal;
  line-height: 64px; }

.button-colored--green {
  border-color: #51c300;
  background-color: #51c300;
  color: #fff; }

.button-colored--green:hover {
  color: rgba(255, 255, 255, 0.7); }

/* ---------------------------------------------
*   button-share
--------------------------------------------- */
.button-share--fixed {
  display: none; }

.button-share__head {
  display: block;
  margin-bottom: 20px;
  font-size: 1.07143rem;
  font-weight: bold; }

.button-share__body {
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -webkit-box-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.button-share__item {
  -webkit-box-sizing: border-box;
  -webkit-transition: 0.1s ease-in-out;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 48px;
  margin-left: 20px;
  border: 0;
  border-radius: 24px;
  color: #fff;
  font-size: 1.42857rem;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.1s ease-in-out;
  vertical-align: 0; }

.button-share__item:first-child {
  margin-left: 0; }

.button-share__item:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 24px;
  content: ""; }

.button-share__item:hover:before {
  border-color: #ddd; }

.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; }

.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; }

.button-share__item--hatena {
  background-color: #1691db; }

.button-share__item--hatena:after {
  font-family: Verdana;
  font-weight: bold;
  content: "B!"; }

.button-share__item--hatena:hover {
  background-color: #fff;
  color: #1691db; }

.button-share__item--line {
  display: none;
  background-color: #00c300; }

.button-share__item--line:after {
  font-family: Frutiger;
  font-size: 0.64286rem;
  font-weight: bold;
  content: "LINE"; }

.button-share__item--line:hover {
  background-color: #fff;
  color: #00c300; }

/* ---------------------------------------------
*   category-pickup
--------------------------------------------- */
.category-pickup {
  width: calc((100% - 48px) / 3);
  margin-top: 20px;
  padding-top: 20px; }

.category-pickup:nth-child(-n + 3) {
  margin-top: 0; }

.category-pickup .article-list-item__heading {
  font-size: 1.21429rem; }

.category-pickup__head {
  padding: 20px 0;
  border-top: 5px solid;
  font-size: 1.28571rem;
  font-weight: 400;
  line-height: 1;
  text-align: center; }

.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 {
  -ms-flex-pack: justify;
  -ms-flex-align: start;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-box-align: start;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%; }

.channel-info__image {
  width: calc((100% - 40px) / 2);
  text-align: center; }

.channel-info__image a {
  -webkit-transition: background-color 0.1s 0.2s;
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  transition: background-color 0.1s 0.2s; }

.channel-info__image img {
  width: 100%; }

.channel-info__contents {
  width: calc((100% - 40px) / 2);
  line-height: 1.5; }

.channel-info__tag ul:after {
  display: block;
  clear: both;
  content: ""; }

.channel-info__tag li {
  margin: 0 10px 20px 0;
  padding: 6px;
  float: left;
  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; }

.channel-info__button {
  line-height: 1.4; }

/* ---------------------------------------------
*   channel-logo
--------------------------------------------- */
.channel-logo {
  padding: 10px; }

.channel-logo p {
  margin: 0 0 10px;
  color: #000;
  font-size: 1.14286rem;
  font-weight: bold; }

.channel-logo__list {
  overflow: hidden; }

.channel-logo__list-item {
  width: 9%;
  margin: 0 0.5% 1%;
  padding: 1% 2%;
  float: left;
  border: 1px solid #fff;
  border-radius: 3px;
  background: #000; }

.channel-logo__list-item a:hover {
  opacity: 0.5; }

.channel-logo__list-item img {
  width: 100%;
  height: auto; }

/* ---------------------------------------------
*   channel-program
--------------------------------------------- */
.channel-program {
  width: 100%;
  overflow: hidden; }

.channel-program__list {
  position: relative;
  min-height: 350px;
  padding-bottom: 2px; }

.channel-program__list-item {
  width: 276px;
  float: left; }

/* ---------------------------------------------
*   channel-program-station
--------------------------------------------- */
.channel-program-station {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 5px 10px; }

.channel-program-station__inner {
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), -1px 1px 2px rgba(0, 0, 0, 0.1);
  padding: 0 0 5px 0;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  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;
  height: 36px;
  padding: 4px 0;
  background: #000;
  text-align: center; }

.channel-program-station__logo img {
  display: inline-block;
  width: auto;
  height: 100%; }

.channel-program-station__link {
  display: block;
  position: relative;
  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;
  width: 3.1em;
  margin-top: 3px;
  padding: 1px 3px;
  background: #f0163a;
  color: #fff;
  font-size: 8px;
  text-align: center;
  content: "放送中"; }

.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 {
  display: block;
  position: static;
  width: auto;
  margin: 10px 0 0 40px;
  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;
  font-size: 10px;
  text-align: center; }

.channel-program-station__thumb {
  width: 80px;
  height: 45px;
  padding-left: 45px;
  overflow: hidden; }

.channel-program-station__thumb img {
  width: 100%;
  height: auto; }

.channel-program-station__text {
  position: absolute;
  top: 0;
  height: 2.8em;
  padding: 0 6px;
  overflow: hidden;
  color: #000;
  font-size: 12px; }

/* ---------------------------------------------
*   customer-transfer
--------------------------------------------- */
.customer-transfer__head {
  margin-bottom: 15px;
  font-size: 1.28571rem;
  font-weight: bold; }

.customer-transfer__body {
  position: relative;
  padding: 0 52px; }

.customer-transfer__slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: static;
  width: 100%;
  margin: 0;
  padding: 0 14.5% 0 0;
  overflow: hidden; }

.customer-transfer__slide {
  width: 197px;
  padding-right: 10px;
  float: left; }

.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; }

/* ---------------------------------------------
*   fixed-footer
--------------------------------------------- */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100; }

/* ---------------------------------------------
*   follow-post
--------------------------------------------- */
.follow-post {
  max-width: 724px;
  margin: 0 auto;
  border: solid 1px #ddd;
  border-width: 1px 0; }

.follow-post--post-page {
  margin-top: -20px; }

.follow-post__inner {
  -ms-flex-align: center;
  -ms-flex-wrap: nowrap;
  -webkit-box-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 580px;
  margin: 0 auto;
  padding: 15px 0; }

.follow-post__image {
  position: relative;
  width: 220px;
  overflow: hidden; }

.follow-post__image:before {
  -ms-flex-negative: 0;
  display: block;
  flex-shrink: 0;
  padding-top: 56.25%;
  content: ""; }

.follow-post__image img {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.follow-post__contents {
  -ms-flex-pack: end;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -webkit-box-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 220px);
  text-align: center; }

.follow-post__contents:before {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 5px;
  background: url(/files/user/images/design/at-logo.png) no-repeat 50% 0;
  background-size: contain;
  content: ""; }

.follow-post__sns-head {
  font-size: 1.28571rem;
  font-weight: bold;
  line-height: 24px; }

.follow-post__sns-body {
  font-size: 0; }

.follow-post__sns-item {
  display: inline-block;
  margin: 10px 5px 0 5px;
  font-size: 1rem;
  line-height: 1; }

.follow-post__sns-item .twitter-follow-button {
  vertical-align: bottom; }

/* ---------------------------------------------
*   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-size: 2.57143rem;
  font-weight: bold;
  line-height: 1; }

.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 {
  height: 0;
  padding-top: 20px;
  overflow: hidden;
  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-size: 1.85714rem;
  font-weight: bold;
  line-height: 1; }

/* ---------------------------------------------
*   icon-player
--------------------------------------------- */
.icon-player {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 60%;
  left: 50%;
  width: 25%;
  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;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0;
  padding-left: 40px;
  border: 0;
  border-radius: 0;
  outline: none;
  color: #333;
  font-family: "Helvetica neue", Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 0.85714rem;
  line-height: 40px;
  vertical-align: top; }

.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 {
  padding: 15px 25px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #000; }

.official-app__logo {
  width: 59px;
  height: 0;
  padding-top: 59px;
  float: left;
  overflow: hidden;
  background: url(/files/user/images/design/abema-tv-icon.png) 0 0 no-repeat;
  background-repeat: no-repeat;
  background-size: 59px 59px; }

.official-app__lead {
  height: 40px;
  padding: 10px 0 10px 20px;
  float: left;
  color: #fff;
  font-size: 0.85714rem; }

.official-app__list {
  padding: 10px 0;
  float: right;
  overflow: hidden; }

.official-app__list-item {
  display: inline-block;
  margin: 0 7px;
  vertical-align: top; }

.official-app__ios,
.official-app__android {
  display: block;
  height: 0;
  overflow: hidden;
  background-repeat: no-repeat; }

.official-app__ios {
  width: 140px;
  padding-top: 40px;
  background: url(/files/user/images/design/app-store.png) 0 0 no-repeat;
  background-size: 140px 40px; }

.official-app__android {
  width: 130px;
  padding-top: 40px;
  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;
  font-size: 0.85714rem;
  line-height: 38px;
  text-align: center;
  text-decoration: none; }

/* ---------------------------------------------
*   on-air
--------------------------------------------- */
.on-air {
  position: fixed;
  bottom: 30px;
  left: 0;
  line-height: 1.5;
  z-index: 10000; }

.on-air__inner {
  width: 180px;
  height: 62px;
  margin: 10px 0 0;
  overflow: hidden;
  background: #000; }

.on-air__body {
  padding: 5px 0; }

.on-air__body div {
  float: left; }

.on-air__titlearea {
  width: 45%; }

.on-air__title {
  width: 80%;
  margin: 0 auto 5px;
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  text-align: center; }

.on-air__logo {
  width: 90%;
  margin: 0 auto; }

.on-air__logo img {
  width: 100%; }

.on-air__img img {
  width: 100%; }

.on-air__img {
  width: 50%; }

.close {
  display: block;
  position: absolute;
  top: 0px;
  right: -8px;
  width: 20px; }

.close img {
  width: 100%;
  height: auto; }

/* ---------------------------------------------
*   on-air-banner
--------------------------------------------- */

/* ---------------------------------------------
*   page-header
--------------------------------------------- */

.page-header__lead {
  margin-top: 20px;
  line-height: 1.6; }

.page-header__lead--fz16 {
  margin-top: 40px;
  font-size: 1.14286rem;
  line-height: 1.5; }

.page-header__lead b {
  font-weight: bold; }

/* ---------------------------------------------
*   page-nav
--------------------------------------------- */

.page-nav__list {
  font-size: 0; }

.page-nav__list-item {
  display: inline-block;
  font-size: 1rem; }

.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;
  width: 86px;
  height: 0;
  padding-top: 39px;
  overflow: hidden;
  background-position: 0 -39px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: 86px 78px; }

.page-nav--ranking .page-nav__link--current,
.page-nav--ranking .page-nav__link:hover {
  background-position: 0 0; }

/* ---------------------------------------------
*   pagination
--------------------------------------------- */
.pagination {
  margin: 60px 0 80px; }

.pagination__list {
  -ms-flex-pack: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; }

.pagination__list-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  margin: 1px 10px 0;
  font-size: 1.07143rem;
  text-align: center;
  white-space: nowrap; }

.pagination__list-item a:hover {
  opacity: 0.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; }

.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; }

.page-section__body {
  margin-top: 40px; }

/* ---------------------------------------------
*   related-post
--------------------------------------------- */
.related-post__head {
  margin-bottom: 20px;
  font-size: 1.57143rem;
  font-weight: bold; }

.related-post__body {
  margin-bottom: -20px; }

/* ---------------------------------------------
*   slick
--------------------------------------------- */
.slick-next,
.slick-prev {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  outline: 0;
  background: 0 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer; }

.slick-next:before,
.slick-prev:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75; }

.slick-prev,
.slick-next {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #000;
  z-index: 100; }

.slick-prev {
  left: 20px; }

.slick-prev:before {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 15px;
  left: 16px;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: ""; }

.slick-next {
  right: 20px; }

.slick-next:before {
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 15px;
  left: 12px;
  width: 10px;
  height: 10px;
  transform: rotate(135deg);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: ""; }

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   blog-article
--------------------------------------------- */
.blog-article__date {
  display: block;
  color: #666;
  font-size: 1rem;
  line-height: 1; }

.blog-article__adc {
  display: none; }

.blog-article__body {
  max-width: 724px;
  margin: auto; }

.blog-article__body .u-bdr-clr {
  border: 1px solid #ccc; }

.blog-article__body .quote .ogp__img-item {
  width: 200px; }

.blog-article__body .quote .ogp__img-item:after {
  padding-top: 110px; }

.blog-article__body .quote .ogp__body {
  padding-left: 240px; }

.blog-article b,
.blog-article strong {
  font-weight: 700; }

.blog-article a.u-lnk-clr {
  border-bottom: 1px dashed;
  color: #0080bb; }

.blog-article table {
  width: 100%;
  margin: 0 0 10px; }

.blog-article table td {
  padding: 0 0 0 30px;
  text-align: center;
  vertical-align: top; }

.blog-article table td p,
.blog-article table td div {
  text-align: left; }

.blog-article table .time {
  width: 30px;
  padding: 10px 4px;
  background: #50c401;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
  vertical-align: top; }

.blog-article table a {
  color: #0080bb;
  text-decoration: underline; }

.blog-article table img {
  width: 100%;
  max-width: 550px;
  height: auto;
  padding: 0;
  vertical-align: baseline; }

.blog-article table p {
  max-width: 550px;
  margin: 0 auto;
  padding: 0 0 10px; }

.blog-article table p img {
  width: 20px;
  padding: 0; }

.blog-article .copy {
  padding: 8px;
  background: #111;
  color: #999;
  font-size: 12px;
  line-height: 1.5; }

/* ---------------------------------------------
*   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-size: 1.42857rem;
  font-weight: bold;
  line-height: 1.6; }

.blog-body__text h3 {
  font-size: 1.14286rem; }

.blog-body__text h3,
.blog-body__text h4 {
  margin-bottom: 0.8em;
  font-weight: 700; }

.blog-body__text div,
.blog-body__text h1,
.blog-body__text h2,
.blog-body__text p {
  margin-bottom: 0.5em; }

.blog-body__text:last-child {
  margin-bottom: 0; }

.txt div,
.txt h1,
.txt h2,
.txt p {
  margin-bottom: 0.5em; }

.txt blockquote,
.txt div,
.txt h4,
.txt ol,
.txt p,
.txt ul {
  font-size: 1.14286rem;
  line-height: 1.5; }

.txt h2 {
  font-size: 1.42857rem;
  font-weight: bold;
  line-height: 1.6; }

.txt h3,
.txt h4 {
  margin-bottom: 0.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;
  width: 100%;
  overflow: hidden;
  font-size: 1.28571rem;
  text-overflow: ellipsis;
  white-space: nowrap; }

.ogp__body {
  padding: 15px 20px 20px 205px; }

.ogp__action {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1; }

.ogp__action:hover:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
  z-index: 1; }

.ogp__action:hover .ogp__title {
  -webkit-filter: none;
  -ms-filter: none;
  text-decoration: none;
  filter: none;
  opacity: 1; }

.ogp__action:hover .ogp__text {
  -webkit-filter: none;
  -ms-filter: none;
  text-decoration: none;
  filter: none;
  opacity: 1; }

.ogp__site {
  margin-top: 8px;
  overflow: hidden;
  font-size: 0.71429rem;
  text-overflow: ellipsis;
  white-space: nowrap; }

.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;
  margin: 20px;
  float: left;
  background-color: #fff;
  text-align: center; }

.ogp__label + .ogp__title,
.ogp__text {
  margin-top: 8px; }

.ogp__img-item {
  display: block;
  position: relative;
  width: 160px;
  overflow: hidden; }

.ogp__img-item:after {
  display: block;
  padding-top: 160px;
  content: ""; }

.ogp__img-item--action {
  position: relative;
  overflow: hidden; }

.ogp__img-item--action:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 0.15s ease-out;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.15s ease-out;
  z-index: 2; }

.ogp__img-item img {
  display: block;
  position: absolute;
  top: 0;
  right: -100%;
  bottom: -100%;
  left: -100%;
  width: 100%;
  margin: 0 auto auto; }

.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 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 1; }

.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: #0080bb; }

.blog-article__body h4 > a {
  border-bottom: 1px dashed;
  color: #0080bb; }

.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: 0.6; }

.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-size: 1.92857rem;
  font-weight: bold;
  line-height: 1.3; }

/* ---------------------------------------------
*   search-result
--------------------------------------------- */
.search-result__title {
  font-size: 1.28571rem; }

.search-result__title-word {
  font-size: 1.71429rem;
  vertical-align: middle; }

.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; }

/* ---------------------------------------------
*   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) {
  .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 {
    margin: 0;
    padding: 0 0 0 10px; }
  .adc-post__item {
    width: 100%;
    padding: 0;
    float: none;
    overflow: hidden; }
  .adc-post__image {
    width: 80px;
    margin-right: 10px; }
  .adc-post__title {
    max-width: 70%;
    margin-top: 0;
    overflow: hidden;
    font-size: 1rem;
    font-weight: bold; }
  .adc-post__cat {
    padding: 4px 10px 3px 3px;
    font-size: 0.78571rem;
    line-height: 1.3; }
  .article-list--ranking {
    margin: -17px -15px 0; }
  .article-list--pickup {
    margin-top: -20px; }
  .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__foot {
    margin-top: 0;
    margin-right: -15px;
    margin-left: -15px; }
  .article-list-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .article-list-item__image {
    padding-top: 56.25%; }
  .article-list-item__image a:hover {
    opacity: 1; }
  .article-list-item__heading {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    font-weight: bold;
    line-height: 1.4;
    text-overflow: ellipsis; }
  .article-list-item__heading a {
    -webkit-line-clamp: 2; }
  .article-list-item__heading a:hover {
    opacity: 1; }
  .article-list-item__date {
    color: #808080; }
  .article-list-item--main {
    width: 50%;
    margin-top: 15px;
    padding: 0 8px; }
  .article-list-item--main .article-list-item__heading {
    font-size: 0.92857rem; }
  .article-list-item--main .article-list-item__heading a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis; }
  .article-list-item--main .article-list-item__date {
    margin-top: 0px;
    margin-right: 1em;
    float: left;
    font-size: 0.78571rem; }
  .article-list-item--keysize {
    width: calc(100% + 14px);
    margin-right: -7px;
    margin-left: -7px; }
  .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: 46.6%; }
  .article-list-item--keysize .article-list-item__contents {
    padding: 10px 20px; }
  .article-list-item--keysize .article-list-item__heading {
    font-size: 1.28571rem;
    font-weight: bold; }
  .article-list-item--keysize .article-list-item__date {
    display: none; }
  .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 {
    -ms-flex-pack: justify;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -webkit-box-align: start;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%; }
  .article-list--ranking
.article-list-item--horizontal:first-child
.article-list-item__image {
    width: 124px;
    height: auto;
    padding-top: 0; }
  .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;
    height: 0;
    padding-top: 75%; }
  .article-list--ranking
.article-list-item--horizontal:first-child
.article-list-item__contents {
    position: static;
    width: calc(100% - 136px);
    padding: 0;
    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);
    font-size: 0.78571rem;
    text-align: right; }
  .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:after {
    left: 8px;
    width: 52px;
    height: 52px;
    background-size: 52px 52px; }
  .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 {
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-size: 1rem;
    font-weight: bold;
    text-overflow: ellipsis; }
  .article-list-item--related .article-list-item__heading a {
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis; }
  .article-list-item--related .article-list-item__date {
    display: none; }
  .article-list-item--search-result a:hover {
    opacity: 1; }
  .article-list-item--search-result .article-list-item__image {
    width: 100px;
    height: 100px;
    margin-left: 20px; }
  .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;
    font-size: 1.14286rem;
    font-weight: 700;
    line-height: 1.8;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .article-list-item--search-result .article-list-item__heading a {
    display: inline; }
  .article-list-item--search-result .article-list-item__date {
    font-size: 0.85714rem; }
  .article-list-item--popular {
    width: 100%; }
  .article-list-item--popular .article-list-item__inner {
    padding-bottom: 0;
    overflow: visible; }
  .article-list-item--popular .article-list-item__image {
    width: auto;
    margin-right: 0;
    padding-top: 56.25%;
    float: none; }
  .article-list-item--popular .article-list-item__heading {
    margin-top: 4px;
    font-size: 0.92857rem;
    font-weight: bold;
    line-height: 1.4; }
  .article-list-item--popular .article-list-item__date {
    margin-top: 0px;
    margin-right: 1em;
    float: left;
    font-size: 0.78571rem; }
  .button-colored {
    -webkit-transition: background-color 0.2s;
    padding: 6px 30px;
    border-radius: 4px;
    background-color: #51c300;
    color: #fff;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color 0.2s; }
  .button-colored--large {
    height: 40px;
    margin-top: 10px; }
  .button-colored--sp-noradius {
    border-radius: 0; }
  .button-colored--sp-normal {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 1px;
    padding: 15px;
    overflow: hidden;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    color: #151515;
    font-size: 1.14286rem;
    line-height: 1;
    text-align: left; }
  .button-colored--sp-normal:before {
    -webkit-transform: rotate(45deg);
    display: block;
    width: 10px;
    height: 10px;
    float: right;
    transform: rotate(45deg);
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #3d3232;
    content: ""; }
  .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;
    width: 100%;
    z-index: 100; }
  .button-share--fixed .button-share__item {
    height: 38px;
    margin: 0;
    border-radius: 0; }
  .button-share__head {
    margin-bottom: 10px; }
  .button-share__item {
    width: 100%;
    height: 36px;
    margin: 0 10px 0 0;
    border-radius: 18px;
    font-size: 1.07143rem; }
  .button-share__item:before {
    display: none; }
  .button-share__item--facebook:hover {
    background-color: #3b5998;
    color: #fff; }
  .button-share__item--twitter:hover {
    background-color: #55acee;
    color: #fff; }
  .button-share__item--hatena:hover {
    background-color: #1691db;
    color: #fff; }
  .button-share__item--line {
    display: block; }
  .button-share__item--line:hover {
    background-color: #00c300;
    color: #fff; }
  .channel-info {
    display: block;
    padding-bottom: 30px; }
  .channel-info__image {
    width: auto; }
  .channel-info__contents {
    width: auto;
    margin-top: 30px; }
  .channel-info__text {
    line-height: 1.5; }
  .channel-logo {
    margin: 0;
    padding: 0;
    padding-bottom: 40px;
    line-height: 1.5; }
  .channel-logo img {
    vertical-align: middle; }
  .channel-logo p {
    margin: 0;
    padding: 10px; }
  .channel-logo__list-item {
    width: 17%;
    padding: 3% 3.2%; }
  .channel-program {
    position: relative;
    padding-top: 10px; }
  .channel-program__list-item {
    width: 260px; }
  .customer-transfer__head {
    margin-bottom: 10px;
    font-size: 1.07143rem;
    line-height: 1.5; }
  .customer-transfer__body {
    padding: 0; }
  .customer-transfer__slide {
    width: 109px;
    padding-right: 8px; }
  .customer-transfer__text {
    font-size: 0.85714rem;
    font-weight: bold; }
  .follow-post__contents:before {
    display: none; }
  .follow-post__sns-item {
    margin: 5px 4px 0; }
  .heading-colored {
    margin-top: 5px;
    padding-left: 8px;
    border-width: 4px;
    font-size: 1.71429rem; }
  .heading-text {
    font-size: 1.42857rem; }
  .heading-text--sp-fz19 {
    font-size: 1.35714rem; }
  .on-air {
    right: 10px;
    bottom: 40px;
    left: auto;
    z-index: 100; }
  .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-size: 18px;
    font-weight: 700px; }
  .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%;
    text-align: center;
    vertical-align: middle; }
  .on-air-banner__btn {
    display: table-cell;
    width: 50%;
    margin: 10px 0 0;
    padding: 5px 0;
    border: 1px solid #fff;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    vertical-align: middle; }
  .on-air-banner .official-app {
    display: table;
    position: relative;
    width: 100%;
    padding: 5px 0 0;
    z-index: 10; }
  .page-header {
    padding-top: 10px; }
  .page-header__lead {
    font-size: 0.85714rem; }
  .page-header__lead--fz16 {
    margin-top: 20px;
    font-size: 0.85714rem; }
  .page-nav {
    padding-top: 5px;
    text-align: center; }
  .pagination {
    display: block;
    margin: 20px -15px 30px;
    padding: 30px 0;
    background-color: #f2f2f2;
    text-align: center; }
  .pagination__list-item--number > a,
  .pagination__list-item--number > span {
    background-color: transparent;
    color: #999; }
  .page-section {
    padding-top: 25px; }
  .page-section__body {
    margin-top: 20px; }
  .related-post__head {
    margin: 0 8px;
    font-size: 1.07143rem;
    line-height: 2; }
  .related-post__body {
    margin-bottom: 0; }
  .blog-article__date {
    font-size: 0.78571rem; }
  .blog-article__adc {
    display: block;
    padding: 25px 0 10px !important; }
  .blog-article__body .quote .ogp__img-item {
    width: 150px;
    height: 85px; }
  .blog-article__body .quote .ogp__body {
    padding: 0 0 0 163px; }
  .blog-article__body .quote .ogp__text {
    margin-top: 5px;
    font-size: 0.78571rem; }
  .blog-article table td {
    padding: 0 0 0 10px; }
  .blog-article table .time {
    padding: 10px 4px; }
  .blog-article table img {
    width: 90%;
    vertical-align: bottom; }
  .blog-article table p {
    width: 90%;
    font-size: 1.14286rem;
    line-height: 1.5; }
  .blog-article table p img {
    width: 20px;
    padding: 0;
    vertical-align: baseline; }
  .blog-body__text div,
  .blog-body__text h1,
  .blog-body__text h2,
  .blog-body__text p {
    font-size: 1.07143rem; }
  .txt blockquote,
  .txt div,
  .txt h4,
  .txt ol,
  .txt p,
  .txt ul {
    font-size: 1.07143rem; }
  .ogp__title {
    font-size: 1rem; }
  .ogp__site {
    display: none; }
  .ogp__img {
    display: block;
    margin: 0; }
  .ogp__img-item {
    width: 150px;
    min-height: 85px; }
  .blog-body__item .img a.img__item:hover {
    opacity: 1; }
  .blog-title__text {
    margin-bottom: 10px;
    font-size: 1.28571rem; }
  .search-result__title {
    font-size: 1.14286rem; }
  .search-result__title-word {
    font-size: 1.42857rem; }
  .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; }
  .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; }
  .sp-hide {
    display: none !important; } }

@media screen and (max-width: 1200px) {
  .article-list--pickup .article-list__body:before,
  .article-list--main .article-list__body:before {
    display: none; }
  .article-list-item--main {
    margin-top: 25px; }
  .article-list-item--main:nth-child(-n + 2) {
    margin-top: 0; }
  .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; } }

@media screen and (min-width: 801px) {
  .article-list-item__heading a {
    -webkit-line-clamp: 3; }
  .pc-hide {
    display: none !important; } }

@media screen and (min-width: 801px) and (max-width: 1024px) {
  .article-list-item--keysize .article-list-item__heading {
    font-size: 1.5rem; } }

@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 (min-width: 768px) and (max-width: 800px) {
  .button-colored {
    width: 320px;
    line-height: 2; }
  .fixed-footer {
    bottom: 0; }
  .page--blog .fixed-footer {
    bottom: 35px; }
  .on-air {
    right: auto;
    bottom: 10px;
    left: 0; }
  .page--blog .on-air {
    bottom: 45px; } }

@media screen and (max-width: 738px) {
  .channel-program__list {
    position: static;
    min-height: 0;
    /*width: 2000px;*/ }
  .customer-transfer__slider {
    padding-right: 18.5%; }
  .blog-article .copy {
    font-size: 0.71429rem; }
  .ogp__action {
    display: block;
    padding: 10px; } }

@media screen and (max-width: 670px) {
  .follow-post--post-page {
    margin-top: 0; }
  .follow-post__inner {
    max-width: 325px;
    padding: 10px 0; }
  .follow-post__image {
    width: 100px; }
  .follow-post__contents {
    display: block;
    width: calc(100% - 100px); }
  .follow-post__sns-head {
    font-size: 0.85714rem;
    line-height: 1.14286rem; } }

@media screen and (max-width: 767px) {
  .page--blog .on-air {
    bottom: 74px;
    z-index: 9999; } }