@charset "UTF-8";
/* ---------------------------------
 mixin
--------------------------------- */
/*alt*/
/*flex*/
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
          animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 10px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
            transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
          transform: scale(0.25);
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}

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

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

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

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.ntv-main-nav {
  margin-bottom: 20px;
}

.wrap {
  padding: 20px 20px;
  background: #fff;
}

/* schedule
========================================== */
.schedule h2 {
  padding: 12px;
  background: #023786;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  line-height: 1;
}

.schedule .box {
  padding: 10px 0 15px;
}

.schedule .box h3 {
  margin: 0 0 20px;
  padding: 10px;
  background: #efefef;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  border-left: 3px #e90d28 solid;
}

.schedule .box p {
  font-size: 1.6rem;
}

.schedule .box table {
  width: 100%;
}

.schedule .box table th, .schedule .box table td {
  border: #ddd 1px solid;
  padding: 10px 5px;
  vertical-align: middle;
}

.schedule .box .group th, .schedule .box .group td {
  text-align: center;
  font-size: 1.4rem;
}

.schedule .box .group th img, .schedule .box .group td img {
  width: 100%;
  max-width: 50px;
  height: auto;
}

.schedule .box .group tr th {
  background: #efefef;
}

.schedule .box .group tr:nth-of-type(1) th {
  padding: 5px;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
}

.schedule .box .group td:nth-of-type(1) {
  width: 60px;
  line-height: 1;
  border-right: none;
  padding-left: 10px;
}

.schedule .box .group td:nth-of-type(2) {
  text-align: left;
  border-left: none;
  font-size: 1.5rem;
}

.schedule .box .date th {
  font-size: 1.4rem;
}

.schedule .box .date th span {
  font-weight: bold;
}

.schedule .box .date tr:nth-of-type(even) {
  background: #efefef;
}

.schedule .box .date td {
  font-size: 1.5rem;
  text-align: center;
}

.schedule .box .date td img {
  width: 100%;
  max-width: 50px;
  height: auto;
}

.schedule .box .date td:nth-of-type(1) {
  width: 60px;
  line-height: 1;
  border-right: none;
  padding-left: 10px;
}

.schedule .box .date td:nth-of-type(2) {
  text-align: left;
  border-left: none;
}

.schedule .box .date td span.home {
  background: #e90d28;
  width: 55px;
  margin: 0 auto;
  padding: 5px;
  font-size: 1.3rem;
  color: #fff;
  display: block;
}

.schedule .box .date td span.away {
  background: #06377a;
  width: 55px;
  margin: 0 auto;
  padding: 5px;
  font-size: 1.3rem;
  color: #fff;
  display: block;
}

.schedule .box .date td span.fm a {
  background: #000;
  display: block;
  border-radius: 50px;
  padding: 4px 10px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.3rem;
}

.schedule .box .date td span.fm a:hover {
  opacity: 0.6;
  -webkit-transition: 0.2 ease;
  transition: 0.2 ease;
}

.schedule .box .notice {
  font-size: 1.3rem;
  text-align: right;
  padding-top: 10px;
}

/* movie
========================================== */
.movie h2 {
  padding: 12px;
  background: #023786;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  line-height: 1;
}

.movie h3 {
  margin: 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.movie .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.movie .prev-arrow {
  width: 4.5%;
  left: -15px;
  z-index: 10;
  cursor: pointer;
}

.movie .next-arrow {
  width: 4.5%;
  right: -15px;
  cursor: pointer;
}

.movie .movie-slider {
  padding: 0 0 20px;
}

.movie .movie-item {
  padding: 0.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.movie .movie-item dl {
  border: #ddd 1px solid;
}

.movie .movie-item dl img {
  width: 100%;
}

.movie .movie-item dl a {
  outline: none;
  display: block;
}

.movie .movie-item dl dd {
  padding: 2% 5% 3%;
}

/* players
========================================== */
.players h2 {
  padding: 12px;
  background: #023786;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  line-height: 1;
}

.players .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.players .tab li {
  width: 32%;
  text-align: center;
  background: #e5e5e5;
  padding: 15px;
  line-height: 1;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50px;
}

.players .tab li.active {
  background: #e90d28;
  color: #fff;
}

.players .panel {
  margin: 25px 0 0;
}

.players .panel .category {
  display: none;
}

.players .panel .category.show {
  display: block;
}

.players .position {
  padding: 0 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.players .position h3 {
  width: 100%;
  padding: 0 0 10px;
  font-size: 2rem;
  font-weight: bold;
}

.players .position .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 5px 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.players .position .box:nth-last-of-type(1) {
  padding-bottom: 0;
}

.players .position .box p {
  width: 25%;
}

.players .position .box p img {
  width: 100%;
  height: auto;
}

.players .position .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 75%;
  padding: 0 0 0 15px;
}

.players .position .box ul li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.players .position .box ul li:nth-of-type(1) {
  width: 100%;
  padding: 8px 0 0;
  line-height: 1.2;
}

.players .position .box ul li:nth-of-type(1) span.manager {
  color: #003792;
  font-weight: bold;
}

.players .position .box ul li:nth-of-type(1) span.wcup {
  color: #0049c3;
  font-weight: bold;
}

.players .position .box ul li:nth-of-type(1) span.acup {
  color: #0049c3;
}

.players .position .box ul li:nth-of-type(1) span.new {
  color: #e31424;
  font-weight: bold;
}

.players .position .box ul li:nth-of-type(2) {
  width: 100%;
  padding: 0 0 8px;
  border-bottom: #0049c3 3px solid;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}

.players .position .box ul li:nth-of-type(2) span {
  font-size: 1.2rem;
  padding-left: 10px;
}

.players .position .box ul li:nth-of-type(3) {
  padding: 2px 0 0;
  width: 25%;
  line-height: 1;
}

.players .position .box ul li:nth-of-type(4) {
  padding: 2px 0 0;
  width: 75%;
  line-height: 1;
}

.players .position .box ul li:nth-of-type(5) {
  padding: 0 0 2px;
  width: 25%;
  line-height: 1;
}

.players .position .box ul li:nth-of-type(6) {
  padding: 0 0 2px;
  width: 75%;
  line-height: 1;
}

.players .position .box ul li:nth-of-type(7) {
  width: 100%;
}

.players .position .box ul li:nth-of-type(7) span {
  color: #e31424;
}

/* ------------------------------------------------------------------
 SP 〜 tablet　（〜992px）
------------------------------------------------------------------ */
@media screen and (max-width: 992px) {
  .ntv-main-nav {
    margin-bottom: 0;
  }
  .wrap {
    padding: 10px 20px;
  }
  .schedule .box h3 {
    font-size: 1.4rem;
  }
  .movie .movie-item dl dd {
    padding: 4% 5% 5%;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/* ------------------------------------------------------------------
 SP　（〜600px）
------------------------------------------------------------------ */
@media screen and (max-width: 600px) {
  .ntv-share {
    padding-bottom: 20px;
  }
  .schedule .box .group th, .schedule .box .group td {
    font-size: 2.8vw;
  }
  .schedule .box .group tr:nth-of-type(1) th {
    padding: 3px;
    background: #000;
    color: #fff;
    font-size: 2.6vw;
  }
  .schedule .box .group td:nth-of-type(1) {
    width: 40px;
  }
  .schedule .box .group td:nth-of-type(2) {
    text-align: left;
    border-left: none;
    font-size: 2.6vw;
  }
  .schedule .box .date {
    font-size: 2.6vw;
  }
  .schedule .box .date th {
    font-size: 2.6vw;
  }
  .schedule .box .date td:nth-of-type(1) {
    width: 40px;
  }
  .schedule .box .date td:nth-of-type(2) {
    width: 20%;
    font-size: 2.6vw;
    padding: 5px 3px;
  }
  .schedule .box .date td:nth-of-type(3) {
    font-size: 2.8vw;
    white-space: nowrap;
  }
  .schedule .box .date td span.home {
    width: auto;
    font-size: 2.4vw;
    white-space: nowrap;
    padding: 3px;
  }
  .schedule .box .date td span.away {
    width: auto;
    font-size: 2.4vw;
    white-space: nowrap;
    padding: 3px;
  }
  .schedule .box .date td span.fm a {
    font-size: 2.4vw;
    white-space: nowrap;
    padding: 3px 5px;
  }
  .movie h3 {
    font-size: 1.6rem;
  }
  .players .position {
    padding: 5px 0 10px;
  }
  .players .position h3 {
    font-size: 2rem;
    padding: 0 0 10px;
  }
  .players .position .box ul li {
    font-size: 1.2rem;
  }
  .players .position .box ul li:nth-of-type(1) {
    font-size: 1.2rem;
  }
  .players .position .box ul li:nth-of-type(2) {
    padding: 2px 0 4px;
    border-bottom: #0049c3 2px solid;
    font-size: 1.8rem;
  }
  .players .position .box ul li:nth-of-type(2) span {
    font-size: 1.1rem;
  }
  .players .position .box ul li:nth-of-type(3) {
    padding: 4px 0 2px;
    width: 45%;
    font-size: 1.2rem;
    white-space: nowrap;
    line-height: 1.5;
  }
  .players .position .box ul li:nth-of-type(4) {
    padding: 4px 0 2px;
    width: 55%;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .players .position .box ul li:nth-of-type(4) span {
    font-size: 1rem;
  }
  .players .position .box ul li:nth-of-type(5) {
    padding: 4px 0 2px;
    width: 45%;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .players .position .box ul li:nth-of-type(6) {
    padding: 4px 0 2px;
    width: 55%;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .players .position .box ul li:nth-of-type(7) {
    padding-top: 4px;
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
/*# sourceMappingURL=sub.css.map */