@charset "UTF-8";
/* Grid : Row */
/* Grid : Row : Centering */
/* Grid : Row : Col */
/* Grid : Col */
/* Global Style */
/* Initialize
 ############################################################ */
/* Initialize : Reset
 @mixin =========================================================== */
*, *:before, *:after {
  -webkit-appearance: none;
  box-sizing: border-box; }

html.gs-fontSmall {
  font-size: 62.5%; }

html.gs-fontMedium {
  font-size: 78.125%; }

html.gs-fontLarge {
  font-size: 93.75%; }

body {
  margin: 0;
  padding: 0;
  background: url("../img/bg.png") repeat-y center top;
  font-family: YuGothic, "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "MS P Gothic", "ＭＳ Ｐ ゴシック", sans-serif;
  font-size: 1.6rem;
  line-height: 1; }

main {
  display: block; }

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li {
  margin: 0;
  padding: 0;
  font-size: 1.6rem; }

a {
  display: block;
  color: #222222;
  text-decoration: none; }

a, a:before, a:after {
  transition: background-color 0.25s ease; }

ul, ol {
  list-style: none; }

label:hover, input:hover, select:hover, button:hover {
  cursor: pointer; }

/* Initialize : Reset : Forms
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
form {
  margin: 0; }

input[type="text"], input[type="password"], textarea {
  margin: 0;
  border: 1px solid #989eab;
  font-size: 1.6rem; }

input[type="text"], input[type="password"] {
  padding: 0 8px;
  height: 3.2rem;
  line-height: 3.2rem; }

textarea {
  line-height: 1.5; }

input[type="submit"], input[type="button"], button[type="submit"], button[type="button"] {
  margin: 0;
  padding: 0 8px;
  height: 3.2rem;
  border: none;
  background-color: transparent;
  text-align: center;
  font-size: 1.6rem;
  line-height: 3.2rem; }

input[type="radio"],
input[type="checkbox"] {
  display: none;
  margin: 0; }

input[type="radio"] + span,
input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  padding: 6px 0 0 30px;
  height: 24px; }
  input[type="radio"] + span:before,
  input[type="checkbox"] + span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    border: 2px solid #989eab; }

input[type="radio"] + span:before {
  border-radius: 12px; }

input[type="checkbox"] + span:before {
  border-radius: 2px; }

input[type="radio"]:checked + span:before,
input[type="checkbox"]:checked + span:before {
  background-color: #ffffff; }

input[type="radio"]:checked + span:after,
input[type="checkbox"]:checked + span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -8px;
  display: block; }

input[type="radio"]:checked + span:after {
  width: 16px;
  height: 16px;
  background-color: #1c60f1;
  border-radius: 8px; }

input[type="checkbox"]:checked + span:after {
  left: 3px;
  width: 22px;
  height: 14px;
  margin-top: -14px;
  border-left: 5px solid #1c60f1;
  border-bottom: 5px solid #1c60f1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }

/* Initialize : for Debug
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.a {
  background-color: #fdd; }

.b {
  border: 1px solid #f88; }

/* Initialize : Font
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
@font-face {
  font-family: "newsi";
  src: url("../fonts/newsi.eot");
  src: url("../fonts/newsi.eot#iefix") format("embedded-opentype"), url("../fonts/newsi.woff2") format("woff2"), url("../fonts/newsi.ttf") format("truetype"), url("../fonts/newsi.woff") format("woff"), url("../fonts/newsi.svg#newsi") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="ic-"]:before, .md-rss a:after, [class*=" ic-"]:before {
  margin-right: 0.25em;
  font-family: newsi !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: -0.1rem; }

.ic-movie:before {
  content: "\e900"; }

.ic-new:before {
  content: "\e901"; }

.ic-rssFeed:before, .md-rss a:after {
  content: "\e902"; }

/* Global Style
 ############################################################ */
/* Global Style : Hide Text
 @mixin =========================================================== */
.gs-swapImage {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap; }

.gs-aui {
  position: absolute;
  top: 100%;
  left: 100%;
  width: 0;
  height: 0;
  overflow: hidden; }

/* Global Style : Grid
 @mixin =========================================================== */
.gr-row {
  -js-display: flex;
  display: flex; }

.gr-row-wrap {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap; }

.gr-row-wrap-between {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.gr-row-center {
  -js-display: flex;
  display: flex;
  -ms-justify-content: center;
  justify-content: center; }

.gr-row-middle {
  -js-display: flex;
  display: flex;
  align-items: center; }

.gr-row-center-middle {
  -js-display: flex;
  display: flex;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center; }

.gr-row-end {
  -js-display: flex;
  display: flex;
  align-items: flex-end; }

.gr-col {
  -ms-box-flex: 1 1;
  flex: 1 1 auto; }

.gr-col-fix {
  -ms-box-flex: 0 0;
  flex: 0 0 auto; }

/* Global Style : Anchor
 @mixin =========================================================== */
.gs-linkImage:hover {
  background-color: transparent; }

.gs-linkImage img {
  border: none;
  outline: none; }

/* Global Style : Article
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
/* Group Heading */
.gs-groupHeading {
  -js-display: flex;
  display: flex; }
  .gs-groupHeading h2 {
    margin-bottom: 2px;
    height: 50px;
    border-bottom-width: 3px;
    border-bottom-style: solid; }
  .gs-groupHeading h2 {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    padding: 22px 30px 5px 20px;
    font-size: 20px; }

/* Thumbnail */
.gs-thumbnail {
  position: relative;
  width: 100%; }
  .gs-thumbnail:before {
    content: "";
    display: block;
    padding-top: 56.25%;
    background-color: #ffffff; }
  .gs-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    box-shadow: 1px 2px 2px #989eab; }

/* Heading */
.gs-heading {
  margin-bottom: 2.5rem;
  padding: 0.6rem 2rem 0 3rem;
  line-height: 1.4; }
  .gs-heading:before {
    content: "\00bb";
    display: inline-block;
    margin-left: -1em;
    width: 1em;
    color: #1c60f1;
    text-align: center;
    font-size: 1.5em;
    font-family: Arial;
    line-height: 0; }
  @media (max-width: 1260px) {
    .gs-heading {
      padding: 6px 15px 0 27px;
      font-size: 1.8rem; }
      .gs-heading:before {
        font-size: 2.7rem; } }
  @media (max-width: 1190px) {
    .gs-heading {
      padding: 6px 10px 0 24px;
      font-size: 1.6rem; }
      .gs-heading:before {
        font-size: 2.4rem; } }

.gs-fontSmall .gs-heading {
  font-size: 2rem; }

.gs-fontMedium .gs-heading {
  font-size: 1.76rem; }

.gs-fontLarge .gs-heading {
  font-size: 1.6rem; }

/* Meta Data */
.gs-metaData {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 10px 8px;
  color: #989eab;
  text-align: right;
  font-size: 14px; }
  .gs-metaData .ls-time,
  .gs-metaData .ls-time--newer,
  .gs-metaData .ls-time--newest,
  .gs-metaData .ls-movie {
    white-space: nowrap; }
  .gs-metaData .ls-movie:before {
    content: "-";
    margin: 0 5px; }
  .gs-metaData .ls-movie {
    display: none; }
  .gs-metaData .ls-time--newer {
    color: #666666; }
  .gs-metaData .ls-time--newest {
    color: #666666;
    font-weight: bold; }

/* Global Style : Basic Layout
 @mixin =========================================================== */
body > header,
body > main,
body > footer {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  min-width: 960px; }

body > header {
  max-width: 1466px;
  min-height: 150px;
  overflow: hidden; }

body > main,
body > footer {
  max-width: 1366px; }

/* Header
 ############################################################ */
body > header > div {
  padding: 0 19px;
  -ms-justify-content: center;
  justify-content: center; }
  body > header > div:nth-of-type(1) {
    margin: 0 -19px 35px;
    height: 70px;
    background: #1c60f1; }
  body > header > div:nth-of-type(2) {
    margin: 0 -17px; }

.lo-logo_banner728x90 {
  -js-display: flex;
  display: flex; }

.pg-search > header .gr-row-end {
  position: relative; }

/* Header : Logo
 @mixin =========================================================== */
.md-logo {
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  -js-display: flex;
  display: flex;
  align-items: center;
  padding-right: 15px;
  width: 100%;
  max-width: 598px; }
  .md-logo h1 {
    width: 100%;
    max-width: 264px; }
    .md-logo h1 > a {
      width: 100%; }
      .md-logo h1 > a img {
        width: 100%;
        height: auto;
        border: none; }

/* Header : Skip LInk
 @mixin =========================================================== */
.md-skipLink {
  position: relative;
  overflow: hidden; }
  .md-skipLink a {
    position: absolute;
    top: 0;
    left: 100%; }

/* Header : Banner 728x90
 @mixin =========================================================== */
.md-banner728x90 {
  -ms-box-flex: 0 0;
  flex: 0 0 auto;
  margin-top: 15px;
  width: 728px;
  height: 90px;
  background-color: rgba(152, 158, 171, 0.1); }

/* Header : News10
 @mixin =========================================================== */
.md-news10 {
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  -js-display: flex;
  display: flex;
  padding: 15px 15px 0 0;
  width: 100%;
  min-width: 605px;
  max-width: 1026px;
  min-height: 30px;
  overflow: hidden; }
  .md-news10 .ls-heading {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    padding: 8px 10px;
    width: 130px;
    min-width: 60px;
    min-height: 30px;
    color: #ffffff;
    background-color: #666666;
    text-align: center;
    font-size: 14px;
    font-weight: bold; }
    .md-news10 .ls-heading:after {
      content: "\00bb";
      margin-left: 3px; }
    @media (max-width: 1130px) {
      .md-news10 .ls-heading {
        width: auto; }
        .md-news10 .ls-heading span {
          display: none; } }
  .md-news10 .ls-noscript {
    padding: 0 10px;
    font-size: 1.6rem; }

#js-news10 {
  position: relative;
  margin-left: 0;
  overflow: hidden;
  width: 100%;
  min-height: 30px;
  background-color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.25; }
  #js-news10 strong {
    margin-right: 10px;
    font-weight: bold; }

.gs-fontSmall #js-news10 {
  padding: 5px 0; }
  @media (max-width: 1040px) {
    .gs-fontSmall #js-news10 {
      padding: 6px 0;
      font-size: 1.4rem; } }

.gs-fontMedium #js-news10 {
  padding: 3px 0 2px; }
  @media (max-width: 1260px) {
    .gs-fontMedium #js-news10 {
      min-height: 60px; } }

.gs-fontLarge #js-news10 {
  padding: 0;
  min-height: 60px; }

#js-news10__item {
  position: relative;
  left: -100px;
  margin-left: 10px; }

/* Header : News10 : L
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-news10.ls-l .ls-heading {
  padding: 8px 10px;
  width: auto;
  height: 30px;
  border-radius: 3px 0 0 0;
  background-color: #cc1b03; }

.md-news10.ls-l #js-news10 {
  width: 100%;
  height: 28px;
  border-bottom: 2px solid #cc1b03;
  border-radius: 0 3px 0 0;
  background-color: rgba(204, 27, 3, 0.1); }

.gs-fontSmall .md-news10.ls-l #js-news10,
.gs-fontMedium .md-news10.ls-l #js-news10 {
  padding: 5px 0;
  height: 30px;
  min-height: 30px; }

.gs-fontLarge .md-news10.ls-l #js-news10 {
  padding: 0;
  height: 30px;
  min-height: 30px; }

/* Header : RSS
 @mixin =========================================================== */
.md-rss {
  -ms-box-flex: 0 0;
  flex: 0 0 auto;
  margin-top: 15px;
  width: 110px;
  height: 30px;
  background-color: rgba(152, 158, 171, 0.2);
  text-align: center;
  font-size: 16px; }
  .md-rss a {
    position: relative;
    display: inline-block;
    padding: 7px 10px;
    width: 100%;
    height: 30px;
    color: #222222; }
    .md-rss a:before {
      display: none; }
    .md-rss a:after {
      margin-left: 0.25em; }

.desktop .md-rss:hover {
  background-color: rgba(152, 158, 171, 0.3); }

.pg-search .md-rss {
  position: relative;
  top: 70px; }

/* Header : Font Size
 @mixin =========================================================== */
.md-fontSize {
  -ms-box-flex: 0 0;
  flex: 0 0 auto;
  -js-display: flex;
  display: flex;
  margin-top: 15px;
  width: 190px;
  height: 30px;
  background-color: rgba(152, 158, 171, 0.2);
  font-size: 16px; }
  .md-fontSize .ls-heading {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    padding: 7px 3px;
    height: 30px;
    text-align: right; }
  .md-fontSize .ls-buttons {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    -js-display: flex;
    display: flex;
    width: 90px;
    height: 30px; }
    .md-fontSize .ls-buttons button {
      padding: 7px 7px 4px;
      width: 30px;
      height: auto;
      border-bottom: 3px solid transparent;
      font-size: 16px;
      line-height: 1; }

.desktop .md-fontSize button:hover {
  background-color: rgba(152, 158, 171, 0.3); }

.gs-fontSmall .md-fontSize .ls-small,
.gs-fontMedium .md-fontSize .ls-medium,
.gs-fontLarge .md-fontSize .ls-large {
  border-bottom-color: #1c60f1; }

.desktop .gs-fontSmall .md-fontSize .ls-small,
.desktop .gs-fontMedium .md-fontSize .ls-medium,
.desktop .gs-fontLarge .md-fontSize .ls-large {
  cursor: default; }
  .desktop .gs-fontSmall .md-fontSize .ls-small:hover,
  .desktop .gs-fontMedium .md-fontSize .ls-medium:hover,
  .desktop .gs-fontLarge .md-fontSize .ls-large:hover {
    background-color: transparent; }

.md-fontSize__noScript {
  margin-left: auto;
  padding: 5px;
  width: 300px; }

.pg-search .md-fontSize {
  position: relative;
  top: 70px; }

/* Header : Search
 @mixin =========================================================== */
.md-search {
  margin: 0 15px;
  width: 100%;
  min-width: 300px;
  max-width: 398px; }
  .md-search form {
    position: relative;
    margin: 0; }
    .md-search form input[type="text"] {
      padding-right: 60px;
      width: 100%;
      height: 30px;
      line-height: 1; }
    .md-search form input[type="submit"] {
      position: absolute;
      top: 0;
      right: 0;
      height: 30px;
      border: 1px solid #989eab;
      color: #ffffff;
      background-color: #989eab;
      text-align: center;
      line-height: 1; }

.desktop .md-search input[type="submit"]:hover {
  background-color: rgba(28, 96, 241, 0.5); }

.pg-search .md-search {
  position: relative;
  top: 85px; }

/* Earthquake
 ############################################################ */
.md-earthquake {
  margin: 15px auto 0;
  padding: 0 20px;
  width: 100%;
  max-width: 1366px;
  min-width: 960px; }
  .md-earthquake h2 {
    padding: 5px 0 0;
    height: 40px;
    border-top: 5px solid #cc1b03;
    color: #000000;
    background-color: transparent;
    background-image: linear-gradient(-45deg, #f0d802 20%, #d7c102 20%, #d7c102 50%, #f0d802 50%, #f0d802 70%, #d7c102 70%);
    background-repeat: repeat-x;
    background-position: 0 2px;
    background-size: 33px 33px;
    text-align: center;
    font-size: 28px;
    letter-spacing: 1em; }
  .md-earthquake .ls-inner {
    -js-display: flex;
    display: flex;
    margin-top: 2px;
    border-bottom: 5px solid #cc1b03;
    background-color: rgba(240, 216, 2, 0.3); }
  .md-earthquake .gs-thumbnail {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    margin: 20px 0 20px 30px;
    max-width: 320px; }
    .md-earthquake .gs-thumbnail img {
      border: 2px solid #ffffff; }
  .md-earthquake .ls-text {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    margin: 25px 30px 20px; }
  .md-earthquake .ls-info1 {
    display: inline-block;
    padding: 4px 15px;
    border-radius: 15px;
    color: #cc1b03;
    background-color: #ffffff;
    font-size: 22px;
    font-weight: bold; }
  .md-earthquake .ls-info2 {
    padding: 20px 15px;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5; }
  .md-earthquake .ls-button {
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-left: auto;
    width: 15em;
    height: 40px;
    border: 2px solid #bdaa02;
    border-radius: 3px;
    color: #000000;
    background-color: #f0d802;
    font-size: 20px; }
    .md-earthquake .ls-button span {
      position: relative;
      text-align: center;
      font-size: 18px;
      white-space: nowrap; }
      .md-earthquake .ls-button span:before {
        content: "\00bb";
        margin-right: 0.2em;
        font-family: Arial;
        font-size: 1.5em;
        vertical-align: -1px; }

.desktop .md-earthquake .ls-button:hover {
  background-color: #d7c102; }

/* Main
 ############################################################ */
/* Main : Category Navigation
 @mixin =========================================================== */
.md-categoryNavi {
  margin: 15px 15px 0 0;
  min-width: 605px;
  max-width: 1026px; }
  .md-categoryNavi li {
    position: relative;
    width: 14%;
    max-width: 140px;
    padding: 0 10px 0 0; }
  .md-categoryNavi a {
    display: block;
    overflow: hidden;
    padding: 18px 5px 5px 2px;
    border-bottom: 3px solid #1c60f1;
    color: #222222;
    font-size: 24px;
    white-space: nowrap; }
    @media (max-width: 1190px) {
      .md-categoryNavi a {
        padding: 24px 2px 5px;
        font-size: 18px; } }
  .md-categoryNavi.ls-sports {
    margin-right: auto; }
  .md-categoryNavi .ls-3snewsi,
  .md-categoryNavi .ls-jnn {
    padding: 10px 0 0 10px; }
    .md-categoryNavi .ls-3snewsi a,
    .md-categoryNavi .ls-jnn a {
      padding: 11px 5px;
      height: 40px;
      border-bottom: none;
      color: #ffffff;
      background-color: rgba(28, 96, 241, 0.6);
      border-radius: 20px;
      text-align: center;
      font-size: 20px; }
      @media (max-width: 1190px) {
        .md-categoryNavi .ls-3snewsi a,
        .md-categoryNavi .ls-jnn a {
          padding: 12px 0;
          font-size: 16px;
          letter-spacing: -1px; } }

.desktop .md-categoryNavi a:hover {
  background-color: rgba(28, 96, 241, 0.2); }

.desktop .md-categoryNavi .ls-3snewsi a:hover,
.desktop .md-categoryNavi .ls-jnn a:hover {
  background-color: rgba(28, 96, 241, 0.8); }

.md-categoryNavi .ls-sports {
  letter-spacing: -4px; }

.pg-society .md-categoryNavi .ls-society a,
.pg-society .md-categoryNavi .ls-society a:hover,
.pg-society .md-categoryNavi .ls-society a:hover:after,
.pg-politics .md-categoryNavi .ls-politics a,
.pg-politics .md-categoryNavi .ls-politics a:hover,
.pg-politics .md-categoryNavi .ls-politics a:hover:after,
.pg-economics .md-categoryNavi .ls-economics a,
.pg-economics .md-categoryNavi .ls-economics a:hover,
.pg-economics .md-categoryNavi .ls-economics a:hover:after,
.pg-international .md-categoryNavi .ls-international a,
.pg-international .md-categoryNavi .ls-international a:hover,
.pg-international .md-categoryNavi .ls-international a:hover:after,
.pg-sports .md-categoryNavi .ls-sports a,
.pg-sports .md-categoryNavi .ls-sports a:hover,
.pg-sports .md-categoryNavi .ls-sports a:hover:after,
.pg-special .md-categoryNavi .ls-special a,
.pg-special .md-categoryNavi .ls-special a:hover,
.pg-special .md-categoryNavi .ls-special a:hover:after,
.pg-3snewsi .md-categoryNavi .ls-3snewsi a,
.pg-3snewsi .md-categoryNavi .ls-3snewsi a:hover,
.pg-3snewsi .md-categoryNavi .ls-3snewsi a:hover:after,
.pg-jnn .md-categoryNavi .ls-jnn a,
.pg-jnn .md-categoryNavi .ls-jnn a:hover,
.pg-jnn .md-categoryNavi .ls-jnn a:hover:after {
  cursor: default;
  pointer-events: none; }

.pg-society .md-categoryNavi .ls-society:after,
.pg-politics .md-categoryNavi .ls-politics:after,
.pg-economics .md-categoryNavi .ls-economics:after,
.pg-international .md-categoryNavi .ls-international:after,
.pg-sports .md-categoryNavi .ls-sports:after,
.pg-special .md-categoryNavi .ls-special:after,
.pg-3snewsi .md-categoryNavi .ls-3snewsi:after,
.pg-jnn .md-categoryNavi .ls-jnn:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 15px solid #1c60f1;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent; }

.pg-society .md-categoryNavi .ls-society:after,
.pg-politics .md-categoryNavi .ls-politics:after,
.pg-economics .md-categoryNavi .ls-economics:after,
.pg-international .md-categoryNavi .ls-international:after,
.pg-sports .md-categoryNavi .ls-sports:after,
.pg-special .md-categoryNavi .ls-special:after {
  margin-left: -15px; }

.pg-3snewsi .md-categoryNavi .ls-3snewsi:after,
.pg-jnn .md-categoryNavi .ls-jnn:after {
  margin-left: -5px; }

.desktop .pg-special .md-categoryNavi .ls-special a:hover {
  background-color: transparent; }

.pg-3snewsi .md-categoryNavi .ls-3snewsi a,
.pg-3snewsi .md-categoryNavi .ls-3snewsi a:hover,
.pg-3snewsi .md-categoryNavi .ls-3snewsi a:hover:after,
.pg-jnn .md-categoryNavi .ls-jnn a,
.pg-jnn .md-categoryNavi .ls-jnn a:hover,
.pg-jnn .md-categoryNavi .ls-jnn a:hover:after {
  cursor: default;
  pointer-events: none;
  background-color: #1c60f1; }

.desktop .pg-3snewsi .md-categoryNavi .ls-3snewsi a:hover,
.desktop .pg-jnn .md-categoryNavi .ls-jnn a:hover {
  background-color: #1c60f1; }

/* Main : Information(Emergency)
 @mixin =========================================================== */
main > .gr-row .gr-col {
  min-width: 605px;
  max-width: 1026px; }

.md-informationEmergency {
  -js-display: flex;
  display: flex;
  margin-top: 15px;
  padding-right: 15px;
  min-width: 605px;
  max-width: 1026px; }
  .md-informationEmergency h2 {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    padding: 10px 15px;
    width: 160px;
    max-width: 160px;
    border-bottom: 2px solid #ecd330;
    border-radius: 3px 0 0 0;
    color: #000;
    background-color: #ecd330;
    font-family: Futura, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.25; }
  .md-informationEmergency .ls-inner {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    -js-display: flex;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    width: 100%;
    max-width: calc(100% - 160px);
    border-bottom: 2px solid #ecd330;
    border-radius: 0 3px 0 0;
    background-color: rgba(152, 158, 171, 0.2);
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold; }
    .md-informationEmergency .ls-inner.ls--black {
      color: #111; }
    .md-informationEmergency .ls-inner.ls--red {
      color: #c00; }
    .md-informationEmergency .ls-inner.ls--blue {
      color: #00c; }
    .md-informationEmergency .ls-inner .ls-icon {
      margin-left: 0.5em; }

.desktop .md-informationTop a:hover {
  background-color: rgba(28, 96, 241, 0.2); }

/* Main : Information(Top)
 @mixin =========================================================== */
main > .gr-row .gr-col {
  min-width: 605px;
  max-width: 1026px; }

.md-informationTop {
  -js-display: flex;
  display: flex;
  margin-top: 15px;
  padding-right: 15px;
  min-width: 605px;
  max-width: 1026px; }
  .md-informationTop h2 {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    padding: 10px 15px;
    width: 160px;
    max-width: 160px;
    border-bottom: 2px solid #cc1b03;
    border-radius: 3px 0 0 0;
    color: #ffffff;
    background-color: #cc1b03;
    font-size: 14px; }
  .md-informationTop .ls-inner {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    padding: 10px 15px;
    width: 100%;
    max-width: calc(100% - 160px);
    border-bottom: 2px solid #cc1b03;
    border-radius: 0 3px 0 0;
    background-color: rgba(152, 158, 171, 0.2);
    line-height: 1.4; }
  .md-informationTop a {
    display: inline;
    color: #0d4acd;
    text-decoration: underline; }

.desktop .md-informationTop a:hover {
  background-color: rgba(28, 96, 241, 0.2); }

/* Main : Live
 @mixin =========================================================== */
.md-live {
  margin: 15px 15px 0 0;
  padding: 25px;
  min-width: 605px;
  max-width: 1026px;
  background: linear-gradient(to bottom, rgba(204, 27, 3, 0.3), rgba(255, 255, 255, 0)); }
  .md-live .ls-stream {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 720px;
    max-height: 405px;
    border-top: 5px solid #cc1b03; }
    .md-live .ls-stream:before {
      content: "";
      display: block;
      padding-top: 56.25%; }
  .md-live iframe {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 1px 2px 2px #989eab; }
  .md-live .ls-title {
    margin: 7px auto 0;
    padding: 5px;
    width: 100%;
    max-width: 720px;
    background-color: rgba(204, 27, 3, 0.2);
    text-align: center;
    font-size: 20px; }
  .md-live .ls-newsbird {
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    position: relative;
    margin: 2px auto 0;
    width: 100%;
    max-width: 720px;
    height: 50px;
    overflow: hidden;
    border-top: 5px solid #cc1b03;
    border-bottom: 2px solid #cc1b03;
    background-color: #ffffff; }
  .md-live .ls-liveEn {
    position: relative;
    overflow: hidden;
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    padding: 0 20px 4px;
    color: #cc1b03;
    font-family: "Arial Black";
    font-size: 40px;
    font-weight: bold; }
    .md-live .ls-liveEn:before {
      -webkit-animation: shine 1.5s ease;
              animation: shine 1.5s ease;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      content: "";
      position: absolute;
      top: -10px;
      left: -60px;
      width: 60px;
      height: 60px;
      background-color: transparent;
      background-image: linear-gradient(-50deg, transparent 40%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.5) 60%, transparent 60%);
      background-repeat: no-repeat;
      background-size: 60px 60px; }

@-webkit-keyframes shine {
  0% {
    -webkit-transform: translate3d(-60px, 0, 0);
            transform: translate3d(-60px, 0, 0); }
  100% {
    -webkit-transform: translate3d(200px, 0, 0);
            transform: translate3d(200px, 0, 0); } }

@keyframes shine {
  0% {
    -webkit-transform: translate3d(-60px, 0, 0);
            transform: translate3d(-60px, 0, 0); }
  100% {
    -webkit-transform: translate3d(200px, 0, 0);
            transform: translate3d(200px, 0, 0); } }
  .md-live .ls-liveJp {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    padding: 0.25em 1em;
    color: #ffffff;
    border-radius: 30px;
    background-color: #cc1b03;
    font-size: 20px;
    font-weight: bold; }
  .md-live .ls-logo {
    -ms-box-flex: 0 0;
    flex: 0 0 auto; }
    .md-live .ls-logo img {
      display: block;
      width: 320px;
      height: 80px;
      border-radius: 3px; }
  .md-live .ls-caption {
    position: relative;
    margin: 5px auto 0;
    width: 100%;
    max-width: 720px;
    color: #989eab;
    text-align: center; }

/* Main : Daily Index, Category News Index, Keyword
 @mixin =========================================================== */
.md-dailyIndexHeading,
.md-categoryIndexHeading,
.md-keywordHeading,
.md-searchResultHeading,
.md-3snewsiHeading {
  position: relative;
  margin: 15px 15px 2px 0;
  min-width: 605px;
  max-width: 1026px; }
  .md-dailyIndexHeading .gs-groupHeading .ls-h2,
  .md-categoryIndexHeading .gs-groupHeading .ls-h2,
  .md-keywordHeading .gs-groupHeading .ls-h2,
  .md-searchResultHeading .gs-groupHeading .ls-h2,
  .md-3snewsiHeading .gs-groupHeading .ls-h2 {
    padding: 10px;
    width: 100%;
    border-radius: 3px 3px 0 0;
    color: #ffffff;
    background-color: rgba(28, 96, 241, 0.6);
    font-size: 20px;
    font-weight: bold; }

/* Main : Main Article
 @mixin =========================================================== */
.md-mainArticle {
  position: relative;
  margin: 15px 15px 0 0;
  padding: 10px 10px 0;
  min-width: 605px;
  max-width: 1026px;
  background: linear-gradient(to bottom, rgba(28, 96, 241, 0.2), rgba(255, 255, 255, 0));
  text-align: center; }

.desktop .md-mainArticle a:hover {
  background-color: rgba(28, 96, 241, 0.1); }

.pg-society:not(.pg-article) .md-mainArticle,
.pg-politics:not(.pg-article) .md-mainArticle,
.pg-economics:not(.pg-article) .md-mainArticle,
.pg-international:not(.pg-article) .md-mainArticle,
.pg-sports:not(.pg-article) .md-mainArticle,
.pg-special:not(.pg-article) .md-mainArticle,
.pg-backnumber:not(.pg-article) .md-mainArticle,
.pg-3snewsi:not(.pg-article) .md-mainArticle,
.pg-jnn:not(.pg-article) .md-mainArticle,
.pg-article-h:not(.pg-article) .md-mainArticle {
  margin-top: 0; }

.pg-3snewsi .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner {
  width: 100%;
  max-height: 485px; }
  .pg-3snewsi .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before {
    content: "";
    position: static;
    display: block;
    padding-top: calc(56.25% + 80px);
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    border: none; }
  .pg-3snewsi .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after {
    display: none; }
  .pg-3snewsi .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.pg-3snewsi .md-mainArticle.js-error .ls-thumbnailWrapper {
  display: none; }

.pg-3snewsi .md-mainArticle.js-error h2 {
  color: #cc1b03; }

.md-3snewsiHeading {
  font-size: 2rem;
  font-weight: bold; }

/* Main : Main Article : Order
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-mainArticle > a,
.md-mainArticle > .ls-inner {
  -js-display: flex;
  display: flex;
  flex-direction: column; }

.md-mainArticle .ls-update {
  order: 3; }

.md-mainArticle .ls-thumbnailWrapper {
  order: 1; }

.md-mainArticle h2 {
  order: 2;
  -ms-grid-row-align: center;
      align-self: center; }

.md-mainArticle p,
.md-mainArticle .ls-feature,
.md-mainArticle .ls-title,
.md-mainArticle .md-mainArticle__share {
  order: 4; }

/* Main : Main Article : Update
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-mainArticle .ls-update {
  padding: 0 15px 20px;
  text-align: right;
  font-size: 24px; }
  .md-mainArticle .ls-update div {
    display: inline-block; }
  .md-mainArticle .ls-update .ls-date:before,
  .md-mainArticle .ls-update .ls-time--newer:before,
  .md-mainArticle .ls-update .ls-time--newest:before {
    content: "\002500";
    margin-right: 0.5em; }
  .md-mainArticle .ls-update .ls-time:after,
  .md-mainArticle .ls-update .ls-time--newer:after,
  .md-mainArticle .ls-update .ls-time--newest:after {
    content: "\002500";
    margin-left: 0.5em; }

/* Main : Main Article : Thumbnail
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.pg-top:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-top:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-top:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time,
.pg-society:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-society:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-society:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time,
.pg-politics:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-politics:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-politics:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time,
.pg-economics:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-economics:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-economics:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time,
.pg-international:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-international:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-international:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time,
.pg-sports:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-sports:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-sports:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time,
.pg-special:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-special:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-special:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time,
.pg-backnumber:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
.pg-backnumber:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after,
.pg-backnumber:not(.pg-article) .md-mainArticle .ls-thumbnailWrapper .ls-time {
  display: none; }

.md-mainArticle .ls-thumbnailWrapper {
  position: relative;
  padding: 15px;
  text-align: center; }
  .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner {
    position: relative;
    margin: 0 auto;
    max-width: 720px;
    max-height: 405px; }
    .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before {
      content: "";
      position: absolute;
      z-index: 2;
      right: 20px;
      bottom: 60px;
      width: 100px;
      height: 100px;
      border-radius: 50px;
      border: 3px solid #ffffff;
      background-color: rgba(0, 0, 0, 0.5); }
    .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after {
      content: "";
      position: absolute;
      z-index: 2;
      right: 45px;
      bottom: 85px;
      width: 0;
      height: 0;
      border-left: 40px solid #ffffff;
      border-top: 25px solid transparent;
      border-bottom: 25px solid transparent; }
    .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner .ls-time {
      position: absolute;
      z-index: 2;
      right: 25px;
      bottom: 20px;
      width: 90px;
      height: 25px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 3px;
      color: #ffffff;
      background-color: rgba(0, 0, 0, 0.5);
      text-align: center;
      font-size: 14px;
      line-height: 25px; }
    .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner.ls-noMovie:before, .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner.ls-noMovie:after,
    .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner.ls-noMovie .ls-time {
      display: none; }
  .md-mainArticle .ls-thumbnailWrapper .gs-thumbnail {
    margin: 0 auto;
    max-width: 720px;
    max-height: 405px; }

/* Main : Main Article : Heading
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-mainArticle h2 {
  display: inline-block;
  padding: 15px;
  max-width: 100%;
  text-align: left;
  font-size: 30px;
  line-height: 1.5; }
  .md-mainArticle h2:before {
    content: "\00bb";
    display: inline-block;
    margin-left: -1em;
    width: 1em;
    color: #1c60f1;
    text-align: center;
    font-size: 1.5em;
    font-family: Arial;
    line-height: 0; }
  @media (max-width: 1280px) {
    .md-mainArticle h2 {
      font-size: 27px; } }

.pg-article .md-mainArticle h2:before,
.pg-3snewsi .md-mainArticle h2:before {
  display: none; }

/* Main : Main Article : Body
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-mainArticle p {
  padding: 1em 15px 0;
  text-align: left;
  font-size: 2rem;
  line-height: 2; }
  @media (max-width: 1190px) {
    .md-mainArticle p {
      font-size: 1.6rem; } }

/* Main : Main Article : Feature
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-mainArticle .ls-feature {
  margin-top: 30px; }
  .md-mainArticle .ls-feature a {
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    margin: 0 auto 10px;
    width: 40%;
    min-width: 12em;
    min-height: 40px;
    color: #ffffff;
    border-radius: 3px;
    background-color: rgba(28, 96, 241, 0.7); }
    .md-mainArticle .ls-feature a span {
      display: inline-block;
      font-size: 1.6rem; }
      .md-mainArticle .ls-feature a span:before {
        content: "\00bb";
        display: inline-block;
        margin-right: 0.2em;
        font-family: Arial;
        font-size: 1.5em; }

.md-mainArticle .ls-feature a:hover {
  background-color: #1c60f1; }

/* Main : Main Article : Share
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-mainArticle__share {
  -js-display: flex;
  display: flex;
  -ms-justify-content: center;
  justify-content: center;
  font-size: 0px; }
  .md-mainArticle__share > div {
    margin: 30px 10px; }
  .md-mainArticle__share .ls-print button {
    position: relative;
    padding: 0 10px 0 30px;
    height: 20px;
    border-radius: 2px;
    color: #ffffff;
    background-color: rgba(28, 96, 241, 0.7);
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap; }
    .md-mainArticle__share .ls-print button:before {
      content: url("/img/icon_print.svg");
      position: absolute;
      top: 1px;
      left: 10px;
      display: inline-block;
      width: 18px;
      height: 18px;
      fill: #ffffff; }

.desktop .md-mainArticle__share button:hover {
  background-color: #1c60f1; }

/* Main : Main Article : Digest
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.pg-digest .md-mainArticle {
  margin-bottom: 25px; }
  .pg-digest .md-mainArticle > a {
    padding-bottom: 10px; }
  .pg-digest .md-mainArticle .ls-thumbnailWrapper {
    padding-bottom: 0; }
  .pg-digest .md-mainArticle .ls-thumbnailInner {
    padding-top: 2px;
    max-height: 412px;
    border-top: 5px solid #1c60f1; }
  .pg-digest .md-mainArticle .ls-title {
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: 5px 0;
    width: 100%;
    max-width: 720px;
    height: 75px;
    overflow: hidden;
    background-color: #ffffff;
    background-image: linear-gradient(transparent 50%, rgba(28, 96, 241, 0.5) 50%, rgba(28, 96, 241, 0.5));
    background-size: 4px 4px;
    border-bottom: 5px solid #1c60f1; }
  .pg-digest .md-mainArticle .ls-titleInner {
    position: relative;
    -js-display: flex;
    display: flex;
    align-items: center;
    padding: 0 20px 0 90px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 3px; }
  .pg-digest .md-mainArticle .ls-logo {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 60px;
    height: 60px; }
    .pg-digest .md-mainArticle .ls-logo img {
      border-radius: 30px;
      box-shadow: 0 0 2px 1px #1c60f1; }
  .pg-digest .md-mainArticle .ls-text {
    padding: 0 10px;
    font-size: 24px;
    font-weight: bold; }
  .pg-digest .md-mainArticle .ls-link {
    margin-top: 10px;
    -js-display: flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center; }
    .pg-digest .md-mainArticle .ls-link a {
      position: relative;
      -js-display: flex;
      display: flex;
      align-items: center;
      -ms-justify-content: center;
      justify-content: center;
      padding: 0 2em;
      min-height: 40px;
      color: #ffffff;
      border-radius: 3px;
      background-color: rgba(28, 96, 241, 0.7); }
      .pg-digest .md-mainArticle .ls-link a span {
        position: relative;
        font-size: 14px;
        padding-left: 30px; }
        .pg-digest .md-mainArticle .ls-link a span:before {
          content: "";
          position: absolute;
          top: 50%;
          left: 5px;
          margin-top: -10px;
          width: 20px;
          height: 20px;
          border-radius: 10px;
          background-color: #ffffff; }
        .pg-digest .md-mainArticle .ls-link a span:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 11px;
          margin-top: -7px;
          width: 0;
          height: 0;
          border-left: 10px solid rgba(28, 96, 241, 0.7);
          border-top: 7px solid transparent;
          border-bottom: 7px solid transparent; }

.desktop .pg-digest .md-mainArticle .ls-link a:hover {
  background-color: #1c60f1; }

/* Main : Aside
 @mixin =========================================================== */
.md-banner300x250 {
  margin-top: 15px;
  width: 300px;
  height: 250px;
  background-color: rgba(152, 158, 171, 0.2); }

.md-linkScoop {
  margin-top: 15px;
  width: 300px;
  height: 100px; }

/* Main : 3snewsi Iframe
 @mixin =========================================================== */
.md-3snewsiIframe {
  position: relative;
  margin: 0 15px 0 0;
  width: calc(100% - 15px);
  min-width: 605px;
  max-width: 1026px; }

/* Main : Keywords
 @mixin =========================================================== */
.md-keywords {
  margin-top: 15px;
  width: 300px;
  border-top: 10px solid #1c60f1; }
  .md-keywords .ls-inner {
    padding-top: 10px;
    border-width: 1px;
    border-style: none solid solid;
    border-color: #989eab; }
  .md-keywords h2 {
    position: relative;
    margin: 0 10px;
    padding: 10px 0 0;
    background-color: rgba(28, 96, 241, 0.2);
    border-width: 1px;
    border-style: solid solid none;
    border-color: rgba(28, 96, 241, 0.6);
    border-radius: 3px 3px 0 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold; }
    .md-keywords h2:after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      width: 0;
      height: 0;
      border-top: 15px solid rgba(28, 96, 241, 0.2);
      border-left: 15px solid transparent;
      border-right: 15px solid transparent; }
    .md-keywords h2 span {
      display: block;
      margin: 0 10px;
      padding: 3px 0 10px;
      text-align: center;
      font-size: 12px; }
  .md-keywords ul {
    margin: 0 10px;
    padding: 20px 10px 0;
    border-width: 1px;
    border-style: none solid solid;
    border-color: rgba(28, 96, 241, 0.6);
    border-radius: 0 0 3px 3px; }
  .md-keywords li {
    display: inline-block;
    margin: 0 7px 10px 0;
    background-color: rgba(152, 158, 171, 0.2); }
  .md-keywords a {
    display: block;
    padding: 5px 5px 4px;
    color: #1c60f1; }
  .md-keywords form {
    position: relative;
    padding: 10px; }
  .md-keywords input[type="text"] {
    padding-right: 60px;
    width: 100%;
    border: 1px solid rgba(28, 96, 241, 0.6);
    border-radius: 3px; }
    .md-keywords input[type="text"]:disabled {
      background-color: #c8cecb;
      border-color: #989eab; }
  .md-keywords input[type="submit"] {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    background-color: rgba(28, 96, 241, 0.6);
    border: 1px solid transparent;
    border-radius: 0 3px 3px 0;
    text-align: center; }
  .md-keywords .ls-searchError {
    margin: 0 15px 10px;
    color: #c00;
    font-size: 14px; }

.desktop .md-keywords a:hover {
  color: #ffffff;
  background-color: rgba(28, 96, 241, 0.5); }

.desktop .md-keywords input[type="submit"]:hover {
  background-color: rgba(28, 96, 241, 0.8); }

/* Main : Backnumber (Top)
 @mixin =========================================================== */
.md-backnumberTop {
  position: relative;
  margin-top: 15px; }
  .md-backnumberTop h2 {
    width: 300px;
    height: 40px; }
  .md-backnumberTop label {
    display: block;
    padding: 0 20px;
    width: 300px;
    height: 40px;
    border: 1px solid #989eab;
    line-height: 40px; }
    .md-backnumberTop label:before {
      content: "\0025bc";
      position: absolute;
      top: 0;
      right: 0;
      width: 20px;
      height: 40px;
      color: #ffffff;
      background-color: #1c60f1;
      text-align: center;
      font-size: 12px;
      line-height: 40px; }
  .md-backnumberTop input[type="checkbox"] {
    display: none; }
    .md-backnumberTop input[type="checkbox"]:checked + ul {
      visibility: visible;
      opacity: 1;
      height: auto; }
  .md-backnumberTop ul {
    position: absolute;
    z-index: 2;
    top: 41px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    box-shadow: 1px 2px 2px #989eab;
    transition: 0.25s; }
  .md-backnumberTop a {
    position: relative;
    width: 300px;
    height: 40px;
    padding: 10px 0;
    background-color: #fff;
    border-width: 1px;
    border-style: none solid solid;
    border-color: #989eab;
    color: #222222;
    text-align: center;
    font-size: 18px; }
  .md-backnumberTop .ls-selected a {
    color: #ffffff;
    border-color: #1c60f1;
    background-color: #1c60f1;
    cursor: default; }

.desktop .md-backnumberTop label:hover {
  background-color: rgba(28, 96, 241, 0.2); }

.desktop .md-backnumberTop a:hover {
  color: #ffffff;
  border-color: ¥ #1c60f1;
  background-color: #7ca3f7; }

/* Main : Digest (Weather only)
 @mixin =========================================================== */
.md-digest__weatherOnly {
  margin-top: 15px;
  padding: 0 15px 15px;
  width: 300px;
  border-top: 10px solid #1c60f1;
  background-color: rgba(28, 96, 241, 0.15); }
  .md-digest__weatherOnly h3 {
    -js-display: flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center; }
  .md-digest__weatherOnly .ls-update {
    text-align: center; }
  .md-digest__weatherOnly .ls-inner {
    padding-top: 5px;
    width: 100%; }
    .md-digest__weatherOnly .ls-inner img {
      width: 100%; }
  .md-digest__weatherOnly .ls-forecast {
    -js-display: flex;
    display: flex; }
    .md-digest__weatherOnly .ls-forecast button {
      -ms-box-flex: 1 1;
      flex: 1 1 auto;
      padding: 8px 5px;
      height: 30px;
      background-color: #ffffff;
      font-size: 14px;
      line-height: 1; }
      .md-digest__weatherOnly .ls-forecast button:not(:last-child) {
        margin-right: 1px; }
  .md-digest__weatherOnly .js-today .ls-today,
  .md-digest__weatherOnly .js-tomorrow .ls-tomorrow,
  .md-digest__weatherOnly .js-typhoon .ls-typhoon {
    height: 33px;
    border-bottom: 3px solid #1c60f1;
    font-weight: bold; }
  .md-digest__weatherOnly .ls-link {
    -js-display: flex;
    display: flex;
    flex-direction: column; }
    .md-digest__weatherOnly .ls-link .ls-digest,
    .md-digest__weatherOnly .ls-link .ls-site {
      position: relative;
      -ms-box-flex: 1 1;
      flex: 1 1 auto;
      -js-display: flex;
      display: flex;
      align-items: center;
      -ms-justify-content: center;
      justify-content: center;
      min-height: 40px;
      color: #ffffff;
      border-radius: 3px;
      background-color: rgba(28, 96, 241, 0.7); }
      .md-digest__weatherOnly .ls-link .ls-digest span,
      .md-digest__weatherOnly .ls-link .ls-site span {
        position: relative;
        font-size: 14px; }
    .md-digest__weatherOnly .ls-link .ls-digest {
      margin-top: 10px; }
      .md-digest__weatherOnly .ls-link .ls-digest span {
        padding-left: 30px; }
        .md-digest__weatherOnly .ls-link .ls-digest span:before {
          content: "";
          position: absolute;
          top: 50%;
          left: 5px;
          margin-top: -10px;
          width: 20px;
          height: 20px;
          border-radius: 10px;
          background-color: #ffffff; }
        .md-digest__weatherOnly .ls-link .ls-digest span:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 11px;
          margin-top: -7px;
          width: 0;
          height: 0;
          border-left: 10px solid rgba(28, 96, 241, 0.7);
          border-top: 7px solid transparent;
          border-bottom: 7px solid transparent; }
    .md-digest__weatherOnly .ls-link .ls-site {
      margin-top: 5px; }
      .md-digest__weatherOnly .ls-link .ls-site span {
        padding-left: 20px; }
        .md-digest__weatherOnly .ls-link .ls-site span:before {
          content: "\00bb";
          position: absolute;
          top: 50%;
          left: 5px;
          margin-top: -12px;
          width: 20px;
          height: 24px;
          font-family: Arial;
          font-size: 1.5em; }

.desktop .md-digest__weatherOnly .ls-forecast button:hover {
  background-color: rgba(28, 96, 241, 0.2); }

.desktop .md-digest__weatherOnly .js-today .ls-today:hover,
.desktop .md-digest__weatherOnly .js-tomorrow .ls-tomorrow:hover,
.desktop .md-digest__weatherOnly .js-typhoon .ls-typhoon:hover {
  background-color: #ffffff;
  cursor: default; }

.desktop .md-digest__weatherOnly .ls-link .ls-digest:hover,
.desktop .md-digest__weatherOnly .ls-link .ls-site:hover {
  background-color: #1c60f1; }

/* Main : 3snewsi Menu
 @mixin =========================================================== */
.md-3snewsiMenu {
  -js-display: flex;
  display: flex;
  margin-right: 15px;
  min-width: 605px;
  max-width: 1026px;
  height: 140px; }
  .md-3snewsiMenu .ls-playAll,
  .md-3snewsiMenu .ls-selectAndPlay {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    -js-display: flex;
    display: flex;
    padding-top: 10px;
    width: 100%;
    max-width: 50%; }
  .md-3snewsiMenu .ls-playAll {
    padding-right: 5px; }
  .md-3snewsiMenu .ls-selectAndPlay {
    padding-left: 5px; }
  .md-3snewsiMenu .ls-playAll__inner {
    position: relative;
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    color: #ffffff;
    border-radius: 3px;
    background-color: rgba(28, 96, 241, 0.7); }
  .md-3snewsiMenu .ls-playAll__label {
    position: relative;
    padding-left: 70px; }
    .md-3snewsiMenu .ls-playAll__label:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -30px;
      width: 60px;
      height: 60px;
      border-radius: 30px;
      background-color: #ffffff; }
    .md-3snewsiMenu .ls-playAll__label:after {
      content: "";
      position: absolute;
      top: 50%;
      left: 20px;
      margin-top: -20px;
      width: 0;
      height: 0;
      border-left: 30px solid rgba(28, 96, 241, 0.7);
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent; }
  .md-3snewsiMenu .ls-playAll__title {
    font-size: 24px;
    font-weight: bold; }
  .md-3snewsiMenu .ls-playAll__data {
    padding-top: 10px;
    font-size: 18px; }
  .md-3snewsiMenu .ls-selectAndPlay__inner {
    position: relative;
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    color: #0d4acd;
    background-color: #ffffff;
    border: 1px solid #1c60f1;
    border-radius: 3px; }
    .md-3snewsiMenu .ls-selectAndPlay__inner:after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      width: 0;
      height: 0;
      margin-left: -15px;
      border-top: 15px solid #1c60f1;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent; }
  .md-3snewsiMenu .ls-selectAndPlay__label {
    padding: 10px; }
  .md-3snewsiMenu .ls-selectAndPlay__title {
    text-align: center;
    font-size: 24px;
    font-weight: bold; }
  .md-3snewsiMenu .ls-selectAndPlay__guidance {
    padding-top: 10px;
    color: #666666;
    font-size: 16px;
    line-height: 1.25; }

.desktop .md-3snewsiMenu .ls-playAll__inner:hover {
  background-color: #1c60f1;
  cursor: pointer; }

/* Main : 3snewsi Article
 @mixin =========================================================== */
.md-3snewsiArticle {
  -js-display: flex;
  display: flex;
  align-items: flex-start;
  margin: 15px 15px 0 0;
  min-width: 605px;
  max-width: 1026px;
  border: 1px solid #1c60f1;
  border-radius: 3px; }
  @media (max-width: 1200px) {
    .md-3snewsiArticle {
      display: block; } }
  .md-3snewsiArticle .ls-colLeft,
  .md-3snewsiArticle .ls-colRight {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    padding: 10px 10px 0;
    width: 100%;
    max-width: 50%; }
    @media (max-width: 1200px) {
      .md-3snewsiArticle .ls-colLeft,
      .md-3snewsiArticle .ls-colRight {
        max-width: 100%; } }

.md-3snewsiCategory {
  padding-bottom: 20px;
  width: 100%; }
  .md-3snewsiCategory .ls-heading {
    -js-display: flex;
    display: flex;
    width: 100%;
    height: 40px;
    border-bottom: 5px solid #bcc4d4; }
  .md-3snewsiCategory h3 {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    position: relative;
    padding: 10px 0 10px 30px;
    width: 8em;
    background-color: #bcc4d4;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.5em; }
    .md-3snewsiCategory h3:after {
      content: "";
      position: absolute;
      top: 0;
      left: 100%;
      width: 0;
      height: 0;
      border-top: 20px solid transparent;
      border-left: 30px solid #bcc4d4;
      border-right: 30px solid transparent;
      border-bottom: 20px solid #bcc4d4; }
  .md-3snewsiCategory .ls-checkAll {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    -js-display: flex;
    display: flex;
    align-items: center;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    font-size: 16px; }
    .md-3snewsiCategory .ls-checkAll span {
      display: inline-block;
      padding-top: 3px; }
  .md-3snewsiCategory article {
    margin-top: 5px; }
  .md-3snewsiCategory .ls-checkItem {
    position: relative;
    -js-display: flex;
    display: flex;
    border-radius: 3px; }
    .md-3snewsiCategory .ls-checkItem > span {
      position: absolute;
      z-index: 10;
      top: 1.0rem;
      left: 10px; }
      .md-3snewsiCategory .ls-checkItem > span:before {
        background-color: rgba(255, 255, 255, 0.5);
        border-color: #ffffff; }
    .md-3snewsiCategory .ls-checkItem input:checked + span + .gs-thumbnail:after {
      display: block; }
  .md-3snewsiCategory .gs-thumbnail {
    position: relative;
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    margin-top: 0.5rem;
    margin-left: 5px;
    width: 120px;
    max-width: 120px;
    height: 68px; }
    .md-3snewsiCategory .gs-thumbnail:after {
      content: "再生順：" attr(data-order);
      position: absolute;
      z-index: 10;
      top: 0.5rem;
      left: 34px;
      right: 5px;
      display: none;
      height: 24px;
      text-align: center;
      background-color: #fff;
      border-radius: 2px;
      font-size: 12px;
      line-height: 24px; }
    .md-3snewsiCategory .gs-thumbnail img {
      width: 120px;
      height: 68px; }
  .md-3snewsiCategory .ls-text {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    width: 100%;
    max-width: calc(100% - 125px); }
  .md-3snewsiCategory .gs-heading {
    font-size: 1.6rem; }

.md-3snewsiCategory.ls-sports h3 {
  letter-spacing: 0; }

.desktop .md-3snewsiCategory .ls-checkAll:hover {
  cursor: pointer; }

.desktop .md-3snewsiCategory .ls-checkItem:hover {
  background-color: rgba(28, 96, 241, 0.2);
  cursor: pointer; }

/* Main : Headline, Related News, Category News
 @mixin =========================================================== */
.md-headline,
.md-relatedNews,
.md-categoryNews,
.md-keyword__article {
  margin-right: -20px; }
  .md-headline .gs-groupHeading h2,
  .md-relatedNews .gs-groupHeading h2,
  .md-categoryNews .gs-groupHeading h2,
  .md-keyword__article .gs-groupHeading h2 {
    margin-bottom: 35px;
    border-bottom-color: #1c60f1; }
  .md-headline .ls-primary a,
  .md-headline .ls-secondary a,
  .md-relatedNews .ls-primary a,
  .md-relatedNews .ls-secondary a,
  .md-categoryNews .ls-primary a,
  .md-categoryNews .ls-secondary a,
  .md-keyword__article .ls-primary a,
  .md-keyword__article .ls-secondary a {
    position: relative;
    width: 100%; }
    .md-headline .ls-primary a:before,
    .md-headline .ls-secondary a:before,
    .md-relatedNews .ls-primary a:before,
    .md-relatedNews .ls-secondary a:before,
    .md-categoryNews .ls-primary a:before,
    .md-categoryNews .ls-secondary a:before,
    .md-keyword__article .ls-primary a:before,
    .md-keyword__article .ls-secondary a:before {
      content: "";
      position: absolute;
      border-radius: 3px;
      background-color: transparent; }
  .md-headline .ls-primary,
  .md-relatedNews .ls-primary,
  .md-categoryNews .ls-primary,
  .md-keyword__article .ls-primary {
    -js-display: flex;
    display: flex;
    margin-bottom: 35px;
    padding-right: 20px;
    width: 25%;
    max-height: 30rem; }
    .md-headline .ls-primary a,
    .md-relatedNews .ls-primary a,
    .md-categoryNews .ls-primary a,
    .md-keyword__article .ls-primary a {
      padding-bottom: 5px;
      max-height: 30rem; }
      .md-headline .ls-primary a:before,
      .md-relatedNews .ls-primary a:before,
      .md-categoryNews .ls-primary a:before,
      .md-keyword__article .ls-primary a:before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px; }
    .md-headline .ls-primary.ls-noThumbnail a,
    .md-relatedNews .ls-primary.ls-noThumbnail a,
    .md-categoryNews .ls-primary.ls-noThumbnail a,
    .md-keyword__article .ls-primary.ls-noThumbnail a {
      -js-display: flex;
      display: flex;
      align-items: center;
      padding-left: 10px;
      border: 1px solid #c8cecb;
      border-radius: 3px; }
    .md-headline .ls-primary.ls-noThumbnail .gs-heading,
    .md-relatedNews .ls-primary.ls-noThumbnail .gs-heading,
    .md-categoryNews .ls-primary.ls-noThumbnail .gs-heading,
    .md-keyword__article .ls-primary.ls-noThumbnail .gs-heading {
      font-size: 1.5em; }
  .md-headline .ls-secondary,
  .md-relatedNews .ls-secondary,
  .md-categoryNews .ls-secondary,
  .md-keyword__article .ls-secondary {
    padding-right: 20px;
    width: 50%;
    min-height: 113px; }
    .md-headline .ls-secondary a,
    .md-relatedNews .ls-secondary a,
    .md-categoryNews .ls-secondary a,
    .md-keyword__article .ls-secondary a {
      -js-display: flex;
      display: flex;
      align-items: center;
      min-height: 113px;
      border-top: 1px solid #c8cecb; }
      .md-headline .ls-secondary a:before,
      .md-relatedNews .ls-secondary a:before,
      .md-categoryNews .ls-secondary a:before,
      .md-keyword__article .ls-secondary a:before {
        top: 3px;
        left: 0;
        right: 0;
        bottom: 3px; }
    .md-headline .ls-secondary .gs-thumbnail,
    .md-relatedNews .ls-secondary .gs-thumbnail,
    .md-categoryNews .ls-secondary .gs-thumbnail,
    .md-keyword__article .ls-secondary .gs-thumbnail {
      -ms-box-flex: 0 0;
      flex: 0 0 auto;
      align-self: flex-start;
      margin: 10px 10px 12px;
      width: 160px;
      height: 90px; }
    .md-headline .ls-secondary .ls-text,
    .md-relatedNews .ls-secondary .ls-text,
    .md-categoryNews .ls-secondary .ls-text,
    .md-keyword__article .ls-secondary .ls-text {
      -ms-box-flex: 1 1;
      flex: 1 1 auto;
      width: 100%; }
  .md-headline .ls-primaryBlankSpace,
  .md-relatedNews .ls-primaryBlankSpace,
  .md-categoryNews .ls-primaryBlankSpace,
  .md-keyword__article .ls-primaryBlankSpace {
    width: 50%;
    min-height: 300px; }
    .md-headline .ls-primaryBlankSpace .ls-secondary,
    .md-relatedNews .ls-primaryBlankSpace .ls-secondary,
    .md-categoryNews .ls-primaryBlankSpace .ls-secondary,
    .md-keyword__article .ls-primaryBlankSpace .ls-secondary {
      width: 100%; }
  @media (max-width: 1190px) {
    .md-headline .gs-metaData,
    .md-relatedNews .gs-metaData,
    .md-categoryNews .gs-metaData,
    .md-keyword__article .gs-metaData {
      font-size: 12px; } }
  .md-headline .md-textAd,
  .md-relatedNews .md-textAd,
  .md-categoryNews .md-textAd,
  .md-keyword__article .md-textAd {
    width: 100%;
    min-height: 6rem; }
    .md-headline .md-textAd a,
    .md-relatedNews .md-textAd a,
    .md-categoryNews .md-textAd a,
    .md-keyword__article .md-textAd a {
      min-height: 6rem; }
    .md-headline .md-textAd .gs-heading,
    .md-relatedNews .md-textAd .gs-heading,
    .md-categoryNews .md-textAd .gs-heading,
    .md-keyword__article .md-textAd .gs-heading {
      padding-top: 0; }

.desktop .md-headline .ls-primary a:hover:before,
.desktop .md-headline .ls-secondary a:hover:before,
.desktop .md-relatedNews .ls-primary a:hover:before,
.desktop .md-relatedNews .ls-secondary a:hover:before,
.desktop .md-categoryNews .ls-primary a:hover:before,
.desktop .md-categoryNews .ls-secondary a:hover:before,
.desktop .md-keyword__article .ls-primary a:hover:before,
.desktop .md-keyword__article .ls-secondary a:hover:before {
  background-color: rgba(28, 96, 241, 0.2); }

.pg-digest .md-headline {
  margin-top: 30px; }

.pg-article .md-headline {
  margin-top: 50px; }

/* Main : Keyword, Search Result
 @mixin =========================================================== */
main > .gr-row .md-keyword__article {
  min-width: 605px;
  max-width: 1026px; }

.md-keyword__article,
.md-searchResult__article {
  margin-right: -5px; }
  .md-keyword__article .ls-primary a,
  .md-keyword__article .ls-secondary a,
  .md-searchResult__article .ls-primary a,
  .md-searchResult__article .ls-secondary a {
    position: relative;
    width: 100%; }
    .md-keyword__article .ls-primary a:before,
    .md-keyword__article .ls-secondary a:before,
    .md-searchResult__article .ls-primary a:before,
    .md-searchResult__article .ls-secondary a:before {
      content: "";
      position: absolute;
      border-radius: 3px;
      background-color: transparent; }
  .md-keyword__article .ls-primary,
  .md-searchResult__article .ls-primary {
    margin-top: 20px;
    padding-right: 20px;
    width: 33.3%;
    max-height: 30rem; }
    .md-keyword__article .ls-primary a,
    .md-searchResult__article .ls-primary a {
      padding-bottom: 5px;
      max-height: 30rem; }
      .md-keyword__article .ls-primary a:before,
      .md-searchResult__article .ls-primary a:before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px; }
  .md-keyword__article .ls-secondary,
  .md-searchResult__article .ls-secondary {
    padding-right: 20px;
    width: 50%;
    min-height: 113px; }
    .md-keyword__article .ls-secondary a,
    .md-searchResult__article .ls-secondary a {
      -js-display: flex;
      display: flex;
      align-items: center;
      min-height: 113px;
      border-top: 1px solid #c8cecb; }
      .md-keyword__article .ls-secondary a:before,
      .md-searchResult__article .ls-secondary a:before {
        top: 3px;
        left: 0;
        right: 0;
        bottom: 3px; }
    .md-keyword__article .ls-secondary .gs-thumbnail,
    .md-searchResult__article .ls-secondary .gs-thumbnail {
      -ms-box-flex: 0 0;
      flex: 0 0 auto;
      align-self: flex-start;
      margin: 10px 10px 12px;
      width: 160px;
      height: 90px; }
    .md-keyword__article .ls-secondary .ls-text,
    .md-searchResult__article .ls-secondary .ls-text {
      -ms-box-flex: 1 1;
      flex: 1 1 auto;
      width: 100%; }
  @media (max-width: 1190px) {
    .md-keyword__article .gs-metaData,
    .md-searchResult__article .gs-metaData {
      font-size: 12px; } }
  .md-keyword__article .md-textAd,
  .md-searchResult__article .md-textAd {
    width: 100%;
    min-height: 6rem; }
    .md-keyword__article .md-textAd a,
    .md-searchResult__article .md-textAd a {
      min-height: 6rem; }
    .md-keyword__article .md-textAd .gs-heading,
    .md-searchResult__article .md-textAd .gs-heading {
      padding-top: 0; }

.desktop .md-keyword__article .ls-primary a:hover:before,
.desktop .md-keyword__article .ls-secondary a:hover:before,
.desktop .md-searchResult__article .ls-primary a:hover:before,
.desktop .md-searchResult__article .ls-secondary a:hover:before {
  background-color: rgba(28, 96, 241, 0.2); }

.md-keywordHeading + .md-keyword__article,
.md-searchResultHeading + .md-searchResult__article {
  margin-right: 0; }

/* Main : Search Article
 @mixin =========================================================== */
.md-search__article .ls-primary a,
.md-search__article .ls-secondary a {
  position: relative;
  width: 100%; }
  .md-search__article .ls-primary a:before,
  .md-search__article .ls-secondary a:before {
    content: "";
    position: absolute;
    border-radius: 3px;
    background-color: transparent; }

.md-search__article .ls-primary {
  -js-display: flex;
  display: flex;
  margin-top: 20px;
  padding-right: 20px;
  width: 25%;
  max-height: 30rem; }
  .md-search__article .ls-primary a {
    padding-bottom: 5px;
    max-height: 30rem; }
    .md-search__article .ls-primary a:before {
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: 5px; }

.md-search__article .ls-secondary {
  padding-right: 20px;
  width: 50%;
  min-height: 113px; }
  .md-search__article .ls-secondary a {
    -js-display: flex;
    display: flex;
    align-items: center;
    min-height: 113px;
    border-top: 1px solid #c8cecb; }
    .md-search__article .ls-secondary a:before {
      top: 3px;
      left: 0;
      right: 0;
      bottom: 3px; }
  .md-search__article .ls-secondary .gs-thumbnail {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    align-self: flex-start;
    margin: 10px 10px 12px;
    width: 160px;
    height: 90px; }
  .md-search__article .ls-secondary .ls-text {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    width: 100%; }

@media (max-width: 1190px) {
  .md-search__article .gs-metaData {
    font-size: 12px; } }

.md-search__article .md-textAd {
  width: 100%;
  min-height: 6rem; }
  .md-search__article .md-textAd a {
    min-height: 6rem; }
  .md-search__article .md-textAd .gs-heading {
    padding-top: 0; }

.desktop .md-search__article .ls-primary a:hover:before,
.desktop .md-search__article .ls-secondary a:hover:before {
  background-color: rgba(28, 96, 241, 0.2); }

/* Main : Search Article (did not match / no keyword)
 @mixin =========================================================== */
.md-search__article--didNotMatch,
.md-search__article--noKeyword {
  -js-display: flex;
  display: flex;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center;
  height: 200px;
  border: 1px solid #989eab;
  font-size: 1.5em; }

/* Main : Related News
 @mixin =========================================================== */
.md-relatedNews .gs-groupHeading {
  margin-bottom: 20px; }

/* Main : Category News
 @mixin =========================================================== */
.md-categoryNews .gs-groupHeading {
  margin-top: 50px;
  margin-bottom: 20px; }

.md-categoryNews .ls-showAll {
  padding-right: 20px;
  width: 100%;
  height: 50px; }
  .md-categoryNews .ls-showAll label {
    position: relative;
    display: block;
    margin: 5px 0;
    padding: 13px 10px 0 20px;
    width: 100%;
    height: 50px;
    color: #1c60f1;
    text-align: right;
    font-size: 16px; }
    .md-categoryNews .ls-showAll label:before {
      position: relative;
      top: 2px;
      left: -2px;
      display: inline-block;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
      font-family: Arial;
      font-size: 1.5em; }
    .md-categoryNews .ls-showAll label:after {
      content: "";
      position: absolute;
      top: -5px;
      left: 0;
      width: 100%;
      display: block;
      border-top: 1px solid rgba(188, 196, 212, 0.5); }

.md-categoryNews .ls-showAll label:before {
  content: "\00bb"; }

.md-categoryNews input[type="checkbox"] {
  display: none; }

.md-categoryNews .ls-collapse {
  margin-top: 10px;
  transition: opacity 0.25s ease; }

.md-categoryNews input:not(:checked) + .ls-collapse {
  height: 0;
  opacity: 0;
  display: none; }

.md-categoryNews input:checked + .ls-collapse {
  height: auto;
  opacity: 1; }

.md-categoryNews input:not(:checked) ~ .ls-trigger .ls-showAll {
  display: block; }

.md-categoryNews input:checked ~ .ls-trigger .ls-showAll {
  display: none; }

.desktop .md-categoryNews .ls-showAll label {
  text-align: center; }
  .desktop .md-categoryNews .ls-showAll label:hover {
    border-radius: 3px;
    background-color: rgba(28, 96, 241, 0.2);
    cursor: pointer; }

/* Main : Information(Middle), TextAd
 @mixin =========================================================== */
.md-informationMiddle,
.md-textAd {
  -js-display: flex;
  display: flex;
  padding: 30px 15px;
  border-top: 1px solid #c8cecb;
  font-size: 16px;
  line-height: 1.4; }
  .md-informationMiddle a,
  .md-textAd a {
    display: inline-block;
    padding: 0 2px;
    color: #0d4acd;
    text-decoration: underline; }

.desktop .md-informationMiddle a:hover,
.desktop .md-textAd a:hover {
  background-color: rgba(28, 96, 241, 0.2); }

/* Main : Ranking
 @mixin =========================================================== */
.md-ranking {
  margin-top: 50px; }
  .md-ranking .gs-groupHeading {
    -js-display: flex;
    display: flex; }
    .md-ranking .gs-groupHeading h2, .md-ranking .gs-groupHeading div {
      margin-bottom: 2px;
      height: 50px;
      border-bottom: 3px solid #e4ac00; }
    .md-ranking .gs-groupHeading div {
      -ms-box-flex: 1 1;
      flex: 1 1 auto;
      padding: 26px 20px 5px;
      text-align: right;
      font-size: 16px; }
  .md-ranking .ls-articleWrapper {
    -js-display: flex;
    display: flex;
    padding: 0 15px;
    background-color: rgba(228, 172, 0, 0.1); }
  .md-ranking article {
    -js-display: flex;
    display: flex;
    padding: 15px 15px;
    width: 20%; }
  .md-ranking a {
    position: relative;
    width: 100%; }
    .md-ranking a:before {
      content: "";
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -7px;
      border-radius: 3px;
      background-color: transparent; }
    .md-ranking a:after {
      position: absolute;
      top: -4px;
      left: -4px;
      width: 30px;
      height: 30px;
      color: #ffffff;
      background-color: #e4ac00;
      box-shadow: 1px 1px 2px #666666;
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      line-height: 30px; }
  .md-ranking article:nth-child(1) a:after {
    content: "1"; }
  .md-ranking article:nth-child(2) a:after {
    content: "2"; }
  .md-ranking article:nth-child(3) a:after {
    content: "3"; }
  .md-ranking article:nth-child(4) a:after {
    content: "4"; }
  .md-ranking article:nth-child(5) a:after {
    content: "5"; }
  .md-ranking .gs-thumbnail:after {
    content: "";
    position: absolute;
    top: 26px;
    left: -4px;
    width: 0;
    height: 0;
    border-top: 2px solid #4b3900;
    border-right: 2px solid #4b3900;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent; }
  .md-ranking .gs-heading {
    padding: 6px 16px 0 27px;
    font-size: 1.8rem; }
    .md-ranking .gs-heading:before {
      color: #b18600;
      font-size: 2.7rem; }
    @media (max-width: 1260px) {
      .md-ranking .gs-heading {
        padding: 6px 12px 0 24px;
        font-size: 1.6rem; }
        .md-ranking .gs-heading:before {
          font-size: 2.4rem; } }
    @media (max-width: 1190px) {
      .md-ranking .gs-heading {
        padding: 6px 6px 0 21px;
        font-size: 1.4rem; }
        .md-ranking .gs-heading:before {
          font-size: 2.1rem; } }
  @media (max-width: 1260px) {
    .md-ranking .gs-metaData {
      font-size: 12px; } }

.desktop .md-ranking a:hover:before {
  background-color: rgba(228, 172, 0, 0.2); }

/* Main : Digest
 @mixin =========================================================== */
.md-digest {
  margin-top: 50px; }
  .md-digest .gr-row {
    margin-top: 5px;
    border: 1px solid rgba(28, 96, 241, 0.3);
    border-radius: 3px; }
  .md-digest .ls-link {
    -js-display: flex;
    display: flex; }
    .md-digest .ls-link .ls-digest,
    .md-digest .ls-link .ls-site {
      position: relative;
      -ms-box-flex: 1 1;
      flex: 1 1 auto;
      -js-display: flex;
      display: flex;
      align-items: center;
      -ms-justify-content: center;
      justify-content: center;
      min-height: 40px;
      color: #ffffff;
      border-radius: 3px;
      background-color: rgba(28, 96, 241, 0.7); }
      .md-digest .ls-link .ls-digest span,
      .md-digest .ls-link .ls-site span {
        position: relative;
        font-size: 14px; }
    .md-digest .ls-link .ls-digest:not(:last-child) {
      margin-right: 5px; }
    .md-digest .ls-link .ls-digest span {
      padding-left: 30px; }
      .md-digest .ls-link .ls-digest span:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 5px;
        margin-top: -10px;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        background-color: #ffffff; }
      .md-digest .ls-link .ls-digest span:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 11px;
        margin-top: -7px;
        width: 0;
        height: 0;
        border-left: 10px solid rgba(28, 96, 241, 0.7);
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent; }
    .md-digest .ls-link .ls-site {
      margin-left: 5px; }
      .md-digest .ls-link .ls-site span {
        padding-left: 20px; }
        .md-digest .ls-link .ls-site span:before {
          content: "\00bb";
          position: absolute;
          top: 50%;
          left: 5px;
          margin-top: -12px;
          width: 20px;
          height: 24px;
          font-family: Arial;
          font-size: 1.5em; }
  .md-digest .gs-metaData {
    padding-right: 5px;
    color: #666666; }
    @media (max-width: 1190px) {
      .md-digest .gs-metaData {
        font-size: 12px; } }

.md-digest .ls-link .ls-digest.js-hover,
.md-digest .ls-link .ls-site.js-hover {
  background-color: #1c60f1; }

.pg-digest .md-digest {
  margin-top: 0; }

/* Main : Digest : Group Heading
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-digest .gs-groupHeading h2 {
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  border-bottom-color: #1c60f1; }

.pg-digest .md-digest .gs-groupHeading h2 {
  -ms-box-flex: 0 0;
  flex: 0 0 auto;
  border-bottom-color: #1c60f1; }

/* Main : Digest : Weather
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-digest__weather {
  -js-display: flex;
  display: flex;
  width: 50%; }
  .md-digest__weather article {
    -js-display: flex;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    padding: 10px 20px 0; }
  .md-digest__weather header,
  .md-digest__weather section,
  .md-digest__weather nav {
    width: 100%; }
  .md-digest__weather h3 {
    margin-bottom: 5px; }
  .md-digest__weather .ls-forecast {
    -js-display: flex;
    display: flex; }
    .md-digest__weather .ls-forecast button {
      -ms-box-flex: 1 1;
      flex: 1 1 auto;
      margin-bottom: 3px;
      padding: 5px 5px 0;
      height: 40px;
      border-bottom: 3px solid rgba(28, 96, 241, 0.2);
      font-size: 14px;
      line-height: 1; }
      .md-digest__weather .ls-forecast button:not(:last-child) {
        margin-right: 1px; }
  .md-digest__weather .js-today .ls-today,
  .md-digest__weather .js-tomorrow .ls-tomorrow,
  .md-digest__weather .js-typhoon .ls-typhoon {
    border-bottom-color: #1c60f1;
    font-weight: bold; }
  .md-digest__weather section {
    position: relative; }
  .md-digest__weather .ls-link {
    padding: 0 0 20px; }
  .md-digest__weather .gs-metaData {
    position: relative; }

.desktop .md-digest__weather .ls-forecast button:hover {
  border-radius: 3px 3px 0 0;
  border-color: #1c60f1;
  background-color: rgba(28, 96, 241, 0.3); }

.desktop .md-digest__weather .js-today .ls-today:hover,
.desktop .md-digest__weather .js-tomorrow .ls-tomorrow:hover,
.desktop .md-digest__weather .js-typhoon .ls-typhoon:hover {
  background-color: transparent;
  cursor: default; }

.desktop .md-digest__weather section.js-hover:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -10px;
  right: -10px;
  bottom: 5px;
  display: block;
  border-radius: 3px;
  background-color: rgba(28, 96, 241, 0.2); }

/* Main : Digest : Program
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-digest__program article,
.md-digest__programOnly article {
  position: relative;
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  -js-display: flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%; }
  .md-digest__program article header,
  .md-digest__program article section,
  .md-digest__program article nav,
  .md-digest__programOnly article header,
  .md-digest__programOnly article section,
  .md-digest__programOnly article nav {
    width: 100%; }
  .md-digest__program article h3,
  .md-digest__programOnly article h3 {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    box-shadow: 0 0 2px 1px #1c60f1; }
    .md-digest__program article h3 img,
    .md-digest__programOnly article h3 img {
      display: block;
      width: 60px;
      height: 60px; }
  .md-digest__program article section,
  .md-digest__programOnly article section {
    padding: 25px 20px 0; }
    .md-digest__program article section *,
    .md-digest__programOnly article section * {
      cursor: pointer; }
    .md-digest__program article section a,
    .md-digest__programOnly article section a {
      position: relative; }
      .md-digest__program article section a.js-hover:before,
      .md-digest__programOnly article section a.js-hover:before {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: 5px;
        display: block;
        border-radius: 3px;
        background-color: rgba(28, 96, 241, 0.2); }

.md-digest__program .gs-metaData,
.md-digest__programOnly .gs-metaData {
  position: relative; }

.md-digest__program .ls-link,
.md-digest__programOnly .ls-link {
  padding: 0 20px 20px; }

.md-digest__program {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  width: 50%; }
  .md-digest__program .ls-inner {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    -js-display: flex;
    display: flex;
    width: 50%; }

.md-digest__programOnly {
  -js-display: flex;
  display: flex;
  width: 100%; }
  .md-digest__programOnly .ls-inner {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    -js-display: flex;
    display: flex;
    width: 25%; }

/* Main : Ohter News
 @mixin =========================================================== */
.md-otherNews {
  margin-top: 35px; }
  .md-otherNews .md-otherNews__category,
  .md-otherNews .md-otherNews__category--noThumbnail {
    margin-top: 25px; }
  .md-otherNews .gs-groupHeading h2 {
    border-bottom-color: #1c60f1; }
  .md-otherNews .ls-heading {
    -js-display: flex;
    display: flex;
    width: 100%;
    height: 40px;
    border-bottom: 5px solid #bcc4d4; }
  .md-otherNews h3 {
    position: relative;
    padding: 10px 0 10px 30px;
    width: 8em;
    background-color: #bcc4d4;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.5em; }
    .md-otherNews h3:after {
      content: "";
      position: absolute;
      top: 0;
      left: 100%;
      width: 0;
      height: 0;
      border-top: 20px solid transparent;
      border-left: 30px solid #bcc4d4;
      border-right: 30px solid transparent;
      border-bottom: 20px solid #bcc4d4; }
  .md-otherNews .ls-text {
    -ms-box-flex: 1 1;
    flex: 1 1 auto; }
  .md-otherNews .gs-metaData {
    position: relative; }

.md-otherNews > .ls-sports h3 {
  letter-spacing: 0; }

.desktop .md-otherNews .ls-primary a:hover,
.desktop .md-otherNews .ls-secondary a:hover,
.desktop .md-otherNews .ls-category a :hover {
  border-radius: 3px;
  background-color: rgba(28, 96, 241, 0.2);
  cursor: pointer; }

.gs-fontSmall .md-otherNews .gs-heading {
  font-size: 1.76rem; }

.gs-fontMedium .md-otherNews .gs-heading {
  font-size: 1.6rem; }

.gs-fontLarge .md-otherNews .gs-heading {
  font-size: 1.6rem; }

/* Main : Ohter News : Category
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-otherNews__category .ls-article {
  -js-display: flex;
  display: flex;
  align-items: flex-start; }

.md-otherNews__category .ls-primary {
  align-self: stretch;
  -js-display: flex;
  display: flex;
  margin: 10px 0 0 0;
  padding: 10px;
  width: 35%;
  min-width: 262px;
  max-width: 440px;
  border: 1px solid rgba(188, 196, 212, 0.5); }
  .md-otherNews__category .ls-primary article {
    -js-display: flex;
    display: flex;
    width: 100%; }
  .md-otherNews__category .ls-primary a {
    padding: 10px 50px;
    width: 100%; }
  .md-otherNews__category .ls-primary .ls-text {
    margin: 10px -40px 0; }

.md-otherNews__category .ls-secondary {
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  -js-display: flex;
  display: flex;
  flex-direction: column;
  margin: 10px 0 0 20px;
  padding: 0 20px;
  border: 1px solid rgba(188, 196, 212, 0.5); }
  .md-otherNews__category .ls-secondary article {
    padding: 5px 0;
    border-bottom: 1px solid rgba(188, 196, 212, 0.5); }
    .md-otherNews__category .ls-secondary article a {
      -js-display: flex;
      display: flex;
      width: 100%;
      min-height: 56px; }

.md-otherNews__category .ls-category {
  padding: 5px 0;
  width: 100%; }
  .md-otherNews__category .ls-category a {
    padding-right: 10px;
    text-align: right;
    line-height: 56px; }
    .md-otherNews__category .ls-category a:before {
      content: "\00bb";
      display: inline-block;
      margin-left: -1em;
      width: 1em;
      color: #1c60f1;
      text-align: center;
      font-size: 1.5em;
      font-family: Arial; }

/* Main : Ohter News : Category without Thumbnail
 •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */
.md-otherNews__category--noThumbnail .ls-article {
  margin-top: 10px;
  padding: 0 0 0 20px;
  border: 1px solid rgba(188, 196, 212, 0.5); }

.md-otherNews__category--noThumbnail .ls-secondary {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap; }
  .md-otherNews__category--noThumbnail .ls-secondary article {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    padding: 5px 20px 5px 0;
    width: 50%;
    max-width: 50%; }
    .md-otherNews__category--noThumbnail .ls-secondary article:nth-child(1) a:before,
    .md-otherNews__category--noThumbnail .ls-secondary article:nth-child(2) a:before {
      border-top: none; }
    .md-otherNews__category--noThumbnail .ls-secondary article a {
      position: relative;
      -js-display: flex;
      display: flex;
      width: 100%;
      min-height: 56px; }
      .md-otherNews__category--noThumbnail .ls-secondary article a:before {
        content: "";
        position: absolute;
        top: -5px;
        left: 0;
        display: block;
        width: 100%;
        border-top: 1px solid rgba(188, 196, 212, 0.5); }

.md-otherNews__category--noThumbnail .ls-category {
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  padding: 5px 20px 5px 0;
  width: 50%;
  max-width: 100%; }
  .md-otherNews__category--noThumbnail .ls-category:nth-child(2n) {
    border-top: 1px solid rgba(188, 196, 212, 0.5); }
  .md-otherNews__category--noThumbnail .ls-category:nth-child(2n+1) {
    padding-top: 10px; }
    .md-otherNews__category--noThumbnail .ls-category:nth-child(2n+1) a:after {
      content: "";
      position: absolute;
      top: -5px;
      left: 25px;
      width: 100%;
      display: block;
      border-top: 1px solid rgba(188, 196, 212, 0.5); }
  .md-otherNews__category--noThumbnail .ls-category a {
    position: relative;
    padding-right: 10px;
    text-align: right;
    line-height: 56px; }
    .md-otherNews__category--noThumbnail .ls-category a:before {
      content: "\00bb";
      display: inline-block;
      margin-left: -1em;
      width: 1em;
      color: #1c60f1;
      text-align: center;
      font-size: 1.5em;
      font-family: Arial; }

/* Main : Backnumber (Bottom)
 @mixin =========================================================== */
.md-backnumberBottom {
  -js-display: flex;
  display: flex;
  margin: 50px auto 0;
  width: 100%;
  max-width: 920px; }
  .md-backnumberBottom h2 {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    margin-right: 2px;
    padding: 26px 10px 0 20px;
    height: 80px;
    border-left: 6px solid #bcc4d4;
    border-radius: 3px 0 0 3px;
    background-color: rgba(188, 196, 212, 0.5);
    text-align: right;
    font-size: 16px; }
    .md-backnumberBottom h2:after {
      content: "\00bb";
      margin-left: 0.25em;
      font-family: Arial;
      font-size: 1.5em; }
  .md-backnumberBottom ul {
    -ms-box-flex: 1 1;
    flex: 1 1 auto;
    -js-display: flex;
    display: flex; }
  .md-backnumberBottom li {
    position: relative;
    width: 12.5%;
    height: 80px;
    border-width: 1px;
    border-style: solid none solid solid;
    border-color: #1c60f1; }
    .md-backnumberBottom li:first-child {
      border-radius: 3px 0 0 3px; }
    .md-backnumberBottom li:last-child {
      border-right: 1px solid #1c60f1;
      border-radius: 0 3px 3px 0; }
  .md-backnumberBottom a {
    padding: 10px 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 30px; }
  .md-backnumberBottom .ls-selected a {
    color: #ffffff;
    background-color: #1c60f1;
    font-weight: bold; }
  .md-backnumberBottom .ls-selected:before {
    content: "";
    position: absolute;
    top: -21px;
    left: 50%;
    margin-left: -20px;
    width: 0;
    height: 0;
    border-bottom: 20px solid #1c60f1;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent; }

.desktop .md-backnumberBottom a:hover {
  color: #ffffff;
  background-color: rgba(28, 96, 241, 0.7); }

.desktop .md-backnumberBottom .ls-selected a:hover {
  cursor: default; }

.pg-3snewsi .md-backnumberBottom {
  width: auto; }

/* Footer
 ############################################################ */
/* Footer : TBS & JNN Banner
 @mixin =========================================================== */
.md-tbsJnnBanner {
  margin-top: 60px;
  width: 100%; }
  .md-tbsJnnBanner ul {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px; }
  .md-tbsJnnBanner li {
    margin-bottom: 20px;
    padding-right: 20px;
    width: 25%; }
  .md-tbsJnnBanner a {
    position: relative;
    width: 100%; }
    .md-tbsJnnBanner a:before {
      content: "";
      display: block;
      padding-top: 25%; }
  .md-tbsJnnBanner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* Footer : Textbox Banner
 @mixin =========================================================== */
.md-textboxBanner {
  margin: 20px auto 0;
  padding: 15px;
  width: 90%;
  min-width: 920px;
  border-radius: 3px;
  background-color: rgba(152, 158, 171, 0.1);
  font-size: 14px;
  line-height: 1.5; }
  .md-textboxBanner h2, .md-textboxBanner h3, .md-textboxBanner p {
    font-size: inherit; }
  .md-textboxBanner .ls-banner {
    -js-display: flex;
    display: flex;
    margin-top: 5px; }
  .md-textboxBanner .ls-image {
    -ms-box-flex: 0 0;
    flex: 0 0 auto;
    margin-right: 10px; }
  .md-textboxBanner .ls-text a {
    color: #1c60f1; }

/* Footer : Footer LInk
 @mixin =========================================================== */
.md-footerLink {
  margin: 30px auto; }
  .md-footerLink .ls-linkWrapper {
    -js-display: flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center; }
  .md-footerLink h2 {
    font-size: 14px; }
    .md-footerLink h2:after {
      content: "\00bb";
      margin-right: 10px;
      color: #1c60f1;
      font-size: 20px;
      vertical-align: -1px; }
  .md-footerLink ul {
    -js-display: flex;
    display: flex; }
    .md-footerLink ul li {
      font-size: 14px;
      white-space: nowrap; }
      .md-footerLink ul li a {
        display: inline;
        color: #0d4acd; }
  .md-footerLink .ls-link1 {
    margin-top: 5px; }
    .md-footerLink .ls-link1 li:not(:last-child) a:after {
      content: "\00ff5c"; }
  .md-footerLink .ls-link2 {
    margin-top: 10px; }
    .md-footerLink .ls-link2 li {
      margin-right: 15px; }
      .md-footerLink .ls-link2 li a:before {
        content: "\0025b6";
        margin-right: 2px;
        font-size: 10px;
        vertical-align: 2px; }
  .md-footerLink .ls-copyright {
    padding-top: 20px;
    color: #666666;
    text-align: center;
    font-size: 14px; }

/* Footer : SP Site
 @mixin =========================================================== */
.md-spSite {
  margin: 2% auto;
  width: 96%;
  max-width: 1366px;
  height: 100px; }
  .md-spSite a {
    display: block;
    padding: 17px 0;
    height: 70px;
    background-color: rgba(28, 96, 241, 0.2);
    border-radius: 3px;
    text-align: center;
    font-size: 36px; }

/* Notification
 ############################################################ */
.md-notification__earthquake,
.md-notification__live,
.md-notification__lji,
.md-notification__information,
.md-3snewsiPlayButton {
  position: fixed;
  z-index: 100;
  top: 100%;
  left: 50%;
  width: 100%;
  max-width: 1366px;
  min-width: 960px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }
  .md-notification__earthquake .ls-inner,
  .md-notification__live .ls-inner,
  .md-notification__lji .ls-inner,
  .md-notification__information .ls-inner,
  .md-3snewsiPlayButton .ls-inner {
    position: relative;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 30px;
    width: 400px;
    height: 140px;
    visibility: hidden;
    opacity: 0.5;
    transition: margin 0.15s ease-in;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.7); }
  .md-notification__earthquake.js-show .ls-inner,
  .md-notification__live.js-show .ls-inner,
  .md-notification__lji.js-show .ls-inner,
  .md-notification__information.js-show .ls-inner,
  .md-3snewsiPlayButton.js-show .ls-inner {
    margin-top: -170px;
    visibility: visible;
    opacity: 1; }
  .md-notification__earthquake.js-show--upper .ls-inner,
  .md-notification__live.js-show--upper .ls-inner,
  .md-notification__lji.js-show--upper .ls-inner,
  .md-notification__information.js-show--upper .ls-inner,
  .md-3snewsiPlayButton.js-show--upper .ls-inner {
    margin-top: -320px;
    visibility: visible;
    opacity: 1; }

.md-notification__earthquake .ls-inner,
.md-notification__live .ls-inner,
.md-notification__lji .ls-inner,
.md-notification__information .ls-inner {
  padding: 2px;
  border: 2px solid #ffffff; }
  .md-notification__earthquake .ls-inner:after,
  .md-notification__live .ls-inner:after,
  .md-notification__lji .ls-inner:after,
  .md-notification__information .ls-inner:after {
    content: "";
    position: absolute;
    top: 7px;
    right: -28px;
    width: 0;
    height: 0;
    border-left: 30px solid #cc1b03;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; }

.md-notification__earthquake h2,
.md-notification__live h2,
.md-notification__lji h2,
.md-notification__information h2 {
  height: 30px;
  color: #ffffff;
  background-color: #cc1b03;
  text-align: center;
  font-size: 16px;
  line-height: 30px; }

.md-notification__earthquake .ls-title,
.md-notification__live .ls-title,
.md-notification__lji .ls-title,
.md-notification__information .ls-title {
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold; }

.md-notification__earthquake .ls-button,
.md-notification__live .ls-button,
.md-notification__lji .ls-button,
.md-notification__information .ls-button {
  -js-display: flex;
  display: flex;
  -ms-justify-content: center;
  justify-content: center;
  margin-top: 5px; }

.md-notification__earthquake button[type="button"],
.md-notification__live button[type="button"],
.md-notification__lji button[type="button"],
.md-notification__information button[type="button"] {
  margin: 0 5px;
  height: 30px;
  border: 1px solid #989eab;
  border-radius: 3px;
  line-height: 30px; }

.md-notification__earthquake .ls-view,
.md-notification__live .ls-view,
.md-notification__lji .ls-view,
.md-notification__information .ls-view {
  width: 120px;
  color: #ffffff;
  background-color: #666666; }

.md-notification__earthquake .ls-close,
.md-notification__live .ls-close,
.md-notification__lji .ls-close,
.md-notification__information .ls-close {
  width: 80px;
  color: #a8aeab;
  background-color: #ffffff; }

.desktop .md-notification__earthquake button[type="button"]:hover,
.desktop .md-notification__live button[type="button"]:hover,
.desktop .md-notification__lji button[type="button"]:hover,
.desktop .md-notification__information button[type="button"]:hover {
  background-color: #333333; }

.md-3snewsiPlayButton .ls-inner {
  -js-display: flex;
  display: flex; }
  .md-3snewsiPlayButton .ls-inner:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-color: #1c60f1; }
  .md-3snewsiPlayButton .ls-inner:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    margin-top: -20px;
    border-left: 30px solid #1c60f1;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent; }

.md-3snewsiPlayButton a {
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  -js-display: flex;
  display: flex;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 10px;
  border-radius: 3px;
  line-height: 30px;
  line-height: 1.25; }

.md-3snewsiPlayButton .ls-playSelected {
  margin: 10px 5px 10px 10px;
  width: 200px;
  color: #ffffff;
  background-color: rgba(28, 96, 241, 0.7); }

.md-3snewsiPlayButton .ls-playSelected__label {
  position: relative;
  padding-left: 50px; }
  .md-3snewsiPlayButton .ls-playSelected__label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #ffffff; }
  .md-3snewsiPlayButton .ls-playSelected__label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 13px;
    margin-top: -15px;
    width: 0;
    height: 0;
    border-left: 20px solid rgba(28, 96, 241, 0.7);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent; }

.md-3snewsiPlayButton .ls-playSelected__title {
  font-weight: bold; }

.md-3snewsiPlayButton .ls-playSelected__data {
  padding-top: 5px;
  font-size: 12px; }

.md-3snewsiPlayButton .ls-clearCheck {
  margin: 10px 10px 10px 5px;
  width: 60px;
  color: #666666;
  background-color: #ffffff;
  border: 1px solid rgba(28, 96, 241, 0.7);
  text-align: center; }

.desktop .md-3snewsiPlayButton .ls-playSelected:hover {
  background-color: #1c60f1;
  cursor: pointer; }

.desktop .md-3snewsiPlayButton .ls-clearCheck:hover {
  background-color: rgba(28, 96, 241, 0.2);
  cursor: pointer; }

.md-print {
  display: none; }

.pg-print .md-banner728x90,
.pg-print .md-news10,
.pg-print .md-rss,
.pg-print .md-fontSize,
.pg-print .md-earthquake,
.pg-print .md-categoryNavi,
.pg-print .ls-feature,
.pg-print .md-mainArticle__share,
.pg-print main > .gr-row > .gr-col-fix,
.pg-print .md-relatedNews,
.pg-print .md-headline,
.pg-print .md-ranking,
.pg-print .md-digest,
.pg-print .md-categoryNews,
.pg-print .md-backnumberBottom,
.pg-print .md-tbsJnnBanner,
.pg-print .md-textboxBanner,
.pg-print .md-footerLink .ls-linkWrapper,
.pg-print .md-spSite,
.pg-print .md-notification__earthquake,
.pg-print .md-notification__live,
.pg-print .md-notification__lji,
.pg-print .md-notification__information {
  display: none; }

.pg-print header {
  height: auto;
  min-height: 0; }
  .pg-print header > .gr-row:first-of-type {
    justify-content: flex-start; }

.pg-print .md-logo h1 a {
  cursor: default;
  pointer-events: none; }

.pg-print .md-print {
  position: absolute;
  z-index: 100;
  top: 10px;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  min-width: 960px;
  max-width: 1466px; }
  @media print {
    .pg-print .md-print {
      display: none; } }
  .pg-print .md-print .ls-inner {
    position: relative;
    margin-left: auto;
    margin-right: 10px;
    padding: 5px;
    width: 335px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.7);
    font-size: 0; }
  .pg-print .md-print button {
    height: 60px;
    border-radius: 3px;
    font-size: 24px; }
  .pg-print .md-print button:first-of-type {
    margin-right: 5px;
    padding-left: 40px;
    width: 200px;
    color: #fff;
    background-color: #e4ac00;
    font-weight: bold; }
    .pg-print .md-print button:first-of-type:before {
      content: url("/img/icon_print.svg");
      position: absolute;
      top: 50%;
      left: 30px;
      display: inline-block;
      margin-top: -15px;
      width: 30px;
      height: 30px;
      fill: #ffffff; }
    .desktop .pg-print .md-print button:first-of-type:hover {
      background-color: #cb9900; }
  .pg-print .md-print button:last-of-type {
    width: 120px;
    color: #fff;
    background-color: #989eab; }
    .desktop .pg-print .md-print button:last-of-type:hover {
      background-color: #8a91a0; }

.pg-print main > .gr-row > .gr-col {
  -ms-box-flex: 1 1;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%; }

.pg-print .md-mainArticle {
  margin: 0;
  padding: 0;
  max-width: 100%;
  background: none; }
  .pg-print .md-mainArticle .ls-inner {
    -js-display: flex;
    display: flex;
    flex-direction: column; }
  .pg-print .md-mainArticle h2 {
    order: -1;
    align-self: flex-start;
    padding-top: 5px; }
  .pg-print .md-mainArticle .ls-update {
    order: -1;
    position: static;
    margin: 0;
    padding: 15px 15px 0;
    width: auto;
    height: auto;
    border: none;
    background: none;
    box-shadow: none;
    text-align: left; }
    .pg-print .md-mainArticle .ls-update:before,
    .pg-print .md-mainArticle .ls-update .ls-date:before,
    .pg-print .md-mainArticle .ls-update .ls-date:after {
      display: none; }
    .pg-print .md-mainArticle .ls-update .ls-date,
    .pg-print .md-mainArticle .ls-update .ls-time {
      display: inline-block;
      font-size: 16px; }
  .pg-print .md-mainArticle .ls-thumbnailWrapper {
    padding: 0 15px;
    text-align: left; }
    .pg-print .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner {
      margin: 0; }
    .pg-print .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:before,
    .pg-print .md-mainArticle .ls-thumbnailWrapper .ls-thumbnailInner:after {
      display: none; }

.pg-print .md-footerLink {
  border-top: 1px solid #000; }

