@charset "UTF-8";
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-size: 1.4rem;
  line-height: 1.7;
  background-color: #000;
  color: #222;
  -webkit-text-size-adjust: 100%;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body.font-family-mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.mb {
  margin-bottom: 16px;
}
@media only screen and (min-width : 993px) {
  .mb {
    margin-bottom: 20px;
  }
}

.mt {
  margin-top: 16px;
}
@media only screen and (min-width : 993px) {
  .mt {
    margin-top: 20px;
  }
}

#ntv [lazy=loading] {
  background-image: url(/assets/images/common/loading.gif) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: auto 35% !important;
  background-color: #ccc !important;
}

#ntv img[lazy=loading] {
  width: auto !important;
}

/*********************
  Media Query Classes
**********************/
@media only screen and (max-width : 600px) {
  .hide-on-small-only, .hide-on-small-and-down {
    display: none !important;
  }
}

@media only screen and (max-width : 992px) {
  .hide-on-med-and-down {
    display: none !important;
  }
}

@media only screen and (min-width : 601px) {
  .hide-on-med-and-up {
    display: none !important;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .hide-on-med-only {
    display: none !important;
  }
}

@media only screen and (min-width : 993px) {
  .hide-on-large-only {
    display: none !important;
  }
}

@media only screen and (min-width : 993px) {
  .show-on-large {
    display: block !important;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .show-on-medium {
    display: block !important;
  }
}

@media only screen and (max-width : 600px) {
  .show-on-small {
    display: block !important;
  }
}

@media only screen and (min-width : 601px) {
  .show-on-medium-and-up {
    display: block !important;
  }
}

@media only screen and (max-width : 992px) {
  .show-on-medium-and-down {
    display: block !important;
  }
}

strong {
  font-weight: bold;
  color: #666;
}

.list-text strong {
  color: #000;
}

.search-freeword {
  padding: 10px 20px 20px;
  background-color: #e90d28;
}
.search-freeword .freeword-title {
  margin-bottom: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.7px;
}
.search-freeword form {
  position: relative;
}
.search-freeword form input[type=search] {
  width: 100%;
  margin: 0;
  padding: 10px 50px 10px 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: #ffffff;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: bold;
  letter-spacing: 0.09rem;
  text-align: left;
  -webkit-appearance: none;
}
.search-freeword form input[type=search]:-ms-input-placeholder {
  color: #c7d0d1;
}
.search-freeword form input[type=search]::-webkit-input-placeholder {
  color: #c7d0d1;
}
.search-freeword form input[type=search]::-moz-placeholder {
  color: #c7d0d1;
  opacity: 1;
}
.search-freeword form input[type=search]:placeholder-shown {
  color: #c7d0d1;
}
.search-freeword form button[type=submit] {
  width: 40px;
  height: 100%;
  margin: 0;
  padding: 3px 0 0 0;
  background-color: #e6ebee;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 3rem;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 10;
  -webkit-appearance: none;
}
@media only screen and (min-width : 993px) {
  .search-freeword form button[type=submit] {
    transition: opacity 0.1s ease;
  }
  .search-freeword form button[type=submit]:hover {
    opacity: 0.6;
  }
}
.search-freeword-suggest {
  display: none;
}
.search-freeword-suggest > ul {
  width: 100%;
  margin-top: -25px;
  position: absolute;
  z-index: 10;
}
.search-freeword-suggest > ul > li {
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.09rem;
  text-align: left;
  margin: 0 60px 0 20px;
  padding: 0 10px;
}
.search-freeword-suggest > ul > li:not(:first-child) {
  padding-top: 3px;
}
.search-freeword-suggest > ul > li:last-child {
  padding-bottom: 10px;
}
.search-program > ul:after {
  content: "";
  display: block;
  clear: both;
}
.search-program > ul > li {
  width: 50%;
  float: left;
  border-bottom: 1px solid #c7d0d1;
  text-align: center;
}
.search-program > ul > li:nth-child(2n+1) {
  border-right: 1px solid #c7d0d1;
  clear: both;
}
.search-program > ul > li:nth-last-child(-n+2):nth-child(odd), .search-program > ul > li:nth-last-child(1):nth-child(even) {
  border-bottom: none;
}
.search-program > ul > li > a {
  display: block;
  color: #000;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.8px;
}
@media only screen and (min-width : 993px) {
  .search-program > ul > li > a {
    transition: opacity 0.1s ease;
  }
  .search-program > ul > li > a:hover {
    opacity: 0.6;
  }
}
.search-program > ul > li > a > [class*=icon-] {
  display: block;
  color: #656666;
  font-size: 40px;
}
.search-article > ul:after {
  content: "";
  display: block;
  clear: both;
}
.search-article > ul > li {
  width: 50%;
  border-bottom: 1px solid #c7d0d1;
  text-align: center;
  float: left;
}
.search-article > ul > li:nth-child(2n+1) {
  border-right: 1px solid #c7d0d1;
  clear: both;
}
.search-article > ul > li:nth-last-child(-n+2):nth-child(odd), .search-article > ul > li:nth-last-child(1):nth-child(even) {
  border-bottom: none;
}
.search-article > ul > li > a {
  display: block;
  text-align: center;
  color: #000;
  padding: 13px 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.8px;
}
@media only screen and (min-width : 993px) {
  .search-article > ul > li > a {
    transition: opacity 0.1s ease;
  }
  .search-article > ul > li > a:hover {
    opacity: 0.6;
  }
}
.search-article > ul > li > a > [class*=icon-] {
  display: block;
  color: #656666;
  font-size: 70px;
}
.search-article > ul > li > a.disabled {
  opacity: 0.4;
  cursor: default;
}
.search-article > ul > li > a:hover.disabled {
  opacity: 0.4;
}
.search-word {
  margin: 10px;
  padding-bottom: 10px;
}

.ntv-info a {
  color: #e90d28;
  border: 1px solid #e90d28;
}
.word-area .ntv-title.title-box {
  margin-bottom: 10px;
}
.ntv-text.text-lead {
  margin-top: 20px;
}
.ntv-tag.tag-search {
  margin: 5px;
  border-color: #4d5456;
  border-radius: 4px;
  color: #4d5456;
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  padding: 8px 10px;
}
.ntv-tag.tag-search {
  transition: background-color 0.1s ease, border-color 0.1s ease, color 0.1s ease;
}
.ntv-tag.tag-search:hover {
  background-color: #4d5456;
  border-color: #4d5456;
  color: #fff;
}

@media only screen and (min-width : 993px) {
  .ntv-contentsWrap {
    display: flex;
    justify-content: space-between;
    overflow: visible;
  }
  .ntv-contentsWrap:after {
    content: none;
  }
  .ntv-main,
  .ntv-aside {
    float: none;
  }
  .search-box + .search-box {
    margin-top: 40px;
  }
  .search-box:last-of-type {
    padding-bottom: 40px;
  }
  .search-adjustBox {
    margin-left: 20px;
    margin-right: 20px;
  }
  .search-freeword {
    padding: 20px 20px 30px;
    background-color: #e90d28;
  }
  .search-freeword .freeword-title {
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.7px;
  }
  .search-freeword form {
    position: relative;
  }
  .search-freeword form input[type=search] {
    width: 100%;
    margin: 0;
    padding: 20px 70px 20px 20px;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.09rem;
    text-align: left;
    -webkit-appearance: none;
  }
  .search-freeword form input[type=search]:-ms-input-placeholder {
    color: #c7d0d1;
  }
  .search-freeword form input[type=search]::-webkit-input-placeholder {
    color: #c7d0d1;
  }
  .search-freeword form input[type=search]::-moz-placeholder {
    color: #c7d0d1;
    opacity: 1;
  }
  .search-freeword form input[type=search]:placeholder-shown {
    color: #c7d0d1;
  }
  .search-freeword form button[type=submit] {
    width: 55px;
    height: 100%;
    margin: 0;
    background-color: #e6ebee;
    border: none;
    border-radius: 0 5px 5px 0;
    font-size: 40px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    -webkit-appearance: none;
  }
}
@media only screen and (min-width : 993px) and (min-width : 993px) {
  .search-freeword form button[type=submit] {
    transition: opacity 0.1s ease;
  }
  .search-freeword form button[type=submit]:hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width : 993px) {
  .search-freeword-suggest {
    position: relative;
    display: none;
  }
  .search-freeword-suggest > ul {
    width: 529px;
    margin-top: -42px;
    left: 20px;
  }
  .search-freeword-suggest > ul > li {
    width: 100%;
    font-size: 18px;
    margin: 0;
    padding: 0 20px;
  }
  .search-freeword-suggest > ul > li:not(:first-child) {
    padding-top: 5px;
  }
  .search-freeword-suggest > ul > li:last-child {
    padding-bottom: 15px;
  }
  .search-program > ul {
    display: block;
    font-size: 0;
  }
  .search-program > ul > li {
    display: block;
    width: 24%;
    border: solid 1px #c7d0d1 !important;
  }
  .search-program > ul > li:nth-child(2n+1) {
    clear: none;
  }
  .search-program > ul > li:nth-child(n+5) {
    margin-top: 1%;
  }
  .search-program > ul > li:nth-child(4n+1) {
    width: 25%;
    margin-left: 0;
    clear: both;
  }
  .search-program > ul > li + li {
    margin-left: 1%;
  }
  .search-program > ul > li > a {
    display: block;
    text-align: center;
    color: #000;
    padding: 30px 0;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.8px;
  }
}
@media only screen and (min-width : 993px) and (min-width : 993px) {
  .search-program > ul > li > a {
    transition: opacity 0.1s ease;
  }
  .search-program > ul > li > a:hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width : 993px) {
  .search-program > ul > li > a > [class*=icon-] {
    display: block;
    color: #656666;
    font-size: 70px;
  }
  .search-article > ul {
    display: block;
    font-size: 0;
  }
  .search-article > ul > li {
    display: block;
    width: 24%;
    border: solid 1px #c7d0d1 !important;
  }
  .search-article > ul > li:nth-child(2n+1) {
    clear: none;
  }
  .search-article > ul > li:nth-child(n+5) {
    margin-top: 1%;
  }
  .search-article > ul > li:nth-child(4n+1) {
    margin-left: 0;
  }
  .search-article > ul > li + li {
    margin-left: 1%;
  }
  .search-article > ul > li > a {
    display: block;
    text-align: center;
    color: #000;
    padding: 18px 10px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.8px;
  }
}
@media only screen and (min-width : 993px) and (min-width : 993px) {
  .search-article > ul > li > a {
    transition: opacity 0.1s ease;
  }
  .search-article > ul > li > a:hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width : 993px) {
  .search-article > ul > li > a > [class*=icon-] {
    display: block;
    color: #656666;
    font-size: 70px;
  }
  .search-word {
    margin: 0 15px;
  }
  .ntv-info a {
    color: #e90d28;
    border: 1px solid #e90d28;
  }
  .ntv-title.title-box {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .word-area .ntv-title.title-box {
    margin-bottom: 15px;
  }
  .ntv-text.text-lead {
    margin-top: 30px;
  }
  .ntv-tag.tag-search {
    margin: 5px;
    border-color: #4d5456;
    border-radius: 4px;
    color: #4d5456;
    font-size: 1.2rem;
    letter-spacing: 0.6px;
    padding: 13px 10px;
  }
  .ntv-tag.tag-search {
    transition: background-color 0.1s ease, border-color 0.1s ease, color 0.1s ease;
  }
  .ntv-tag.tag-search:hover {
    background-color: #4d5456;
    border-color: #4d5456;
    color: #fff;
  }
}
