@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Muli);

@media print {
  body {
      display: none;
  }
}

body {
  background: #fff; /* 全体の背景指定 */
  min-width: 1000px;
}
#wrapper {
  position: relative;
}
#wrapper #contents {
  width: 100%;
  color: #222;
  line-height: 1.6;
  font-size: 14px;
  overflow: hidden;
  position: relative;
}
#footer {
  position: relative;
}
/*------------------------------------------------------------
common
------------------------------------------------------------*/

/* font add kmaekochi 2016/05/16
**********************************/
.j_font {
  font-family: 'Muli', sans-serif;
}

/* margin
**********************************/
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* layout
**********************************/
.block {
  display: block;
  font-size: 0;
  line-height: 1;
  margin: 0 auto;
}
.bg_shape {
  display: block;
  line-height: 1;
  font-size: 0;
  width: 100%;
  height: auto;
}
.bg_shape.bg_bottom {
  margin-bottom: 40px;
}
.sec_tlt01 {
  border: 10px solid;
  width: 360px;
  height: 340px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  padding: 60px 0 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.sec_tlt01.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.sec_tlt01.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
/*the animation definition*/
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
.sec_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 26px;
  text-decoration: none;
  -webkit-box-shadow: inset 0px -4px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px -4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px -4px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.btn:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  opacity: 0.8;
}
.btn_mini {
  height: 60px;
  line-height: 60px;
  font-size: 18px;
}
.btn_blue {
  background: #4ab6bc;
}
.btn_red {
  background: #232323;
}
.btn_white {
  background: #fff;
  color: #232323;
}

/* #topad
**********************************/
#topad {
  background: #fff;
  padding: 5px 0;
}
/* #main
**********************************/
#main {
  width: 100%;
  float: none !important;
}
/* text
**********************************/
.normal_text01 {
  font-size: 1.1em;
}
.big_text01 {
  font-size: 1.6em !important;
}
.big_text02 {
  font-size: 1.3em !important;
}
.big_text03 {
  font-size: 1.2em !important;
}

/* text_color
**********************************/
.txt_blue {
  color: #4ab6bc;
}
.txt_red {
  color: #232323;
}
.txt_white {
  color: #fff;
}
.txt_gray {
  color: #666;
}

/* text_align
**********************************/
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}

/* text_border bg_blue
**********************************/
.waku_blue {
  border:#4ab6bc 2px solid;
  margin: 1px;
}
.bg_blue {
	  background: #4ab6bc;
  color: #fff;
  padding: 2px;
}
.ul_blue {
	border-bottom: solid 2px #4ab6bc;
}
.txt_indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/* sns
**********************************/

.global_NTV_snsArea {
  margin-top: -20px;
}
.global_NTV_snsArea .global_NTV_snsList {
  padding: 10px;
  text-align: right;
}

.global_NTV_snsArea .global_NTV_snsList li {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}

.global_NTV_snsArea .fb_iframe_widget span {
  vertical-align: top !important;
}

/* pagetop
**********************************/
.pagetop {
  background: url(../images/pagetop_parts01.png) no-repeat left top transparent;
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 40px;
  bottom: 60px;
}
/*#second .pagetop02 {
  background: url(../images/pagetop_parts01.png) no-repeat left top transparent;
}
#second .pagetop02.top {
  background: url(../images/pagetop_parts01.png) no-repeat left top transparent;
}*/

/*------------------------------------------------------------
本サイト トップ
------------------------------------------------------------*/
/* live2017
**********************************/
#live2017Cover {
  background: #ededed url(../images/live2017/header_bg_01.png) no-repeat;
  background-position: center top;
}
#live2017Cover #live2017 {
  padding: 60px 0;
}
#live2017Cover #live2017 #logo {
  background: #000;
  text-align: center;
  width: 555px;
  height: 320px;
  padding-top: 52px;
  margin: 0 auto;
  position: relative;
  display: block;

}
#live2017Cover #live2017 #logo:hover {
  opacity: 0.6;
}
#live2017Cover #live2017 .header_link {
  display: block;
  background: url(../images/live2017/header_link_01.png) no-repeat;
  background-size: cover;
  width: 280px;
  height: 65px;
  position: absolute;
  bottom: -35px;
  right: -36px;
  text-indent: -9999px;
}
#live2017Cover p#txt_01 {
  background: #000;
  text-align: center;
  padding: 20px 0;
}
#live2017Cover p#txt_01 img {
  max-width: 95%;
}
#live2017Cover p#btn_01 {
  width: 674px;
  height: 68px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 320px;
}
#live2017Cover p#btn_01 a img {
  border: 1px solid #fff;
}
#live2017Cover p#btn_01 a {
  width: 674px;
  height: 68px;
  box-shadow: 5px 5px 0 2px #fff;
  display: block;
}
#live2017Cover p#btn_01 a:hover {
  box-shadow: 0px 0px 0 0px #fff;
  display: block;
  padding-left: 5px;
  padding-top: 5px;
}
/* live2018
**********************************/
#live2018Cover {
  background: #ededed url(../images/live2018/header_bg_01.png) repeat;
  background-position: center top;
  padding:80px 0;
  margin: 0px auto;
}
#live2018Cover #live2018 {
  background: #000;
  text-align: center;
  width: 802px;
  height: 500px;
  margin: 0px auto;
  position: relative;
  display: block;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;}

#live2018Cover #live2018 #logo {
  padding-top: 40px;
  margin: 0 auto;
  position: relative;
  display: block;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
#live2018Cover p#txt_01 {
  text-align: center;
  padding: 10px 0 20px;
}
#live2018Cover p#txt_01 img {
  max-width: 95%;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
.animated_02 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#live2018Cover #live2018 .header_link a{
  display: block;
  background: url(../images/live2018/header_link_01.png) no-repeat;
  background-size: cover;
  width: 350px;
  height: 75px;
  position: absolute;
  bottom: 28px;
  right: 235px;
  text-indent: -9999px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-name: tada;
}
#live2018Cover #live2018 .header_link a:hover{
  opacity:0.8;
}
/* head
**********************************/
.head {
  background: #232323;
  height: 48px;
  position: relative;
}
.logo_wrap {
  width: 300px;
  height: 300px;
  position: absolute;
  top: -5px;
  left: 50%;
  margin: 0 0 0 -150px;
  display: block;
  box-sizing: border-box;
  padding-top: 115px;
  z-index: 5000;
}
.logo_parts01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.logo_wrap:hover .logo_parts01 {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.logo {
  width: 190px;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.logo img {
  width: 100%;
  height: auto;
}

.small img {
  width: 200px;
  height: auto;
}
.head .bnr_tver {
  margin-top: 40px;
}
.head .bnr_tver a {
  display: block;
  width: 260px;
  margin: 0 auto;
}
.head .bnr_tver a:hover {
  opacity: 0.6;
}
.head .bnr_tver a img {
  width: 100%;
  height: auto;
}

/* tweetArea
**********************************/
#tweetArea {
  height: 700px;
  width: 100%;
  padding: 10px 0;
}

/* nav
**********************************/
.text_tw {
  background: rgba(255, 103, 222, 0.9);
  text-align: center;
  margin: -80px 0 20px;
  position: relative;
  height: 60px;
}
.text_tw img {
  position: absolute;
  left: 50%;
  margin-left: -300px;
  bottom: 5px;
}
.date_mc {
  background: #4ab6bf;
  padding: 5px 0;
}
.date_mc img {
  font-size: 0;
  line-height: 1;
  display: block;
  margin: 0 auto;
}
.bg_nav_parts01 {
  margin-top: -50px;
  position: relative;
}
#nav {
  background: #232323;
  height: 96px;
  position: relative;
}
#nav .navList {
  text-align: center;
  padding: 15px 0 0;
}
.navList li {
  display: inline-block;
  margin: 0 40px;
}
.navList li a {
  display: block;
  height: 70px;
  position: relative;
  overflow: hidden;
}
/*.navList li a:before {
  content: '';
  background: url(../images/nav_common_parts01.png) no-repeat left top;
  display: block;
  position: absolute;
  width: 30px;
  height: 70px;
  top: 0;
  left: 50%;
  margin-left: -15px;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}*/
.navList .nav_parts01,
.navList .nav_parts02 {
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.navList .nav_parts01 {
  top: 50%;
  margin-top: -15px;
}
.navList .nav_parts02 {
  bottom: -20px;
}
.navList li a:hover:before,
.navList li.active a:before {
  opacity: 1;
}
.navList a:hover .nav_parts01,
.navList .active a .nav_parts01 {
  margin-top: -25px;
}
.navList a:hover .nav_parts02,
.navList .active a .nav_parts02 {
  bottom: 14px;
}

/* next_artist */
.navList .n_next_artist a {
  width: 150px;
}
.navList .n_next_artist a .nav_parts01,
.navList .n_next_artist a .nav_parts02 {
  margin-left: -75px;
}

/* movie */
.navList .n_movie a {
  width: 160px;
}
.navList .n_movie a .nav_parts01,
.navList .n_movie a .nav_parts02 {
  margin-left: -80px;
}

/* onair */
.navList .n_oa a {
  width: 100px;
}
.navList .n_oa a .nav_parts01,
.navList .n_oa a .nav_parts02 {
  margin-left: -50px;
}

/* photo */
.navList .n_photo a {
  width: 230px;
}
.navList .n_photo a .nav_parts01,
.navList .n_photo a .nav_parts02 {
  margin-left: -115px;
}

.photo_title01 img {
  display: block;
  margin: 0 auto;
}

/* off */
.navList .off {
  opacity: 0.6 !important;
}
.navList .off a:before {
  opacity: 0 !important;
}
.navList .off .nav_parts01 {
  margin-top: -15px !important;
}
.navList .off .nav_parts02 {
  bottom: -20px !important;
}


/* お知らせ */
div.information{
  width: 600px;
  border: 4px solid #49b6bf;
  margin: 40px auto;
  padding: 20px 40px;
}
div.information h4{
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 3px solid #49b6bf;
}

div.information span.credit{
  text-align: right;
  width: 100%;
  display: block;
}



/* top_bnrArea
**********************************/
.top_bnrArea {
  width: 600px;
  margin: 0 auto 60px;
}

/* tweet
**********************************/
.tweet {
  padding: 50px 0;
}
.tweet .sec_tlt01 {
  border-color: #83cdd2;
  top: -60px;
  left: 50px;
}
.tweet .sec_box {
  background-color: rgba(131, 205, 210, 0.2);
  padding: 30px 30px 30px 70px;
  width: 630px;
  margin-left: 370px;
}
.tw_box {
/*  overflow: scroll;*/
  background: #000;
  padding: 10px;
/*  width: 510px;
  height: 450px;*/
}

/* insta
**********************************/
.insta {
  padding: 50px 0;
}
.insta .sec_tlt01 {
  border-color: #83cdd2;
  top: -60px;
  left: 50px;
}
.insta .sec_box {
  background-color: rgba(131, 205, 210, 0.2);
  padding: 30px 30px 30px 70px;
  width: 630px;
  margin-left: 370px;
  margin-bottom: 150px;
}

/* next_artist
**********************************/
.next_artist {
  background: #83cdd2;
  padding: 50px 0;
  color: #83cdd2;
}
.next_artist .sec_tlt01 {
  border-color: #fff;
  top: 50%;
  right: 40px;
  margin-top: -170px;
}
.next_artist .sec_box {
  background: #fff;
  display: table;
  padding: 20px;
  width: 460px;
  min-height: 290px;
  margin-left: 40px;
  position: relative;
}
.next_artist .sec_box txt_area {
  display: table-cell;
  vertical-align: middle;
}
.next_artist .sec_box .txt_area dl {
  text-align: center;
}
.next_artist .sec_box .txt_area dl dt {
  font-weight: bold;
  font-size: 1em;
}
.next_artist .sec_box .txt_area dl dd {
  margin-bottom: 10px;
}
/*.next_artist .sec_box:after {
  content: '';
  background: url(../images/common_parts01.png) no-repeat left top transparent;
  display: block;
  width: 97px;
  height: 140px;
  position: absolute;
  top: -40px;
  left: -35px;
}*/
/* op_ed 4/17追加 */
.next_artist .oped_line {
  border-top: #83cdd2 solid 2px;
  padding-top: 15px;
}

/* movie
**********************************/
.movie {
  padding: 50px 0;
  margin-bottom: 20px;
}
.movie .sec_tlt01 {
  border-color: #232323;
  top: -60px;
  left: 50px;
}
.movie .sec_box {
  background-color: rgba(35, 35, 35, 0.2);
  padding: 30px 30px 30px 70px;
  width: 630px;
  margin-left: 370px;
}
.movie .sec_box a img {
  -webkit-transition: all 0.2s 0s ease;
  -moz-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}
.movie .sec_box a:hover img {
  opacity: 0.6;
}

/* onair
**********************************/
.onair {
  background: #232323;
  padding: 50px 0;
  position: relative;
}
.onair .sec_tlt01 {
  border-color: #fff;
  top: 50%;
  right: 40px;
  margin-top: -170px;
}
.onair .sec_box {
  min-height: 290px;
  width: 530px;
  padding-top: 100px;
}
/*.onair:after {
  content: '';
  background: url(../images/common_parts02.png) no-repeat left top transparent;
  display: block;
  width: 132px;
  height: 193px;
  position: absolute;
  top: -80px;
  left: 5%;
}*/

/* navimail
**********************************/
.navimail {
  width: 600px;
  height: 100px;
  margin: 0 auto 40px;
}
/* top_liveArea
**********************************/
#top_liveArea {
  background: url(../images/bg_live04.jpg) repeat center top #fff;
  height: 675px;
  width: 100%;
  text-align: center;
}
#top_liveArea div#item {
  margin: 0 auto;
  height: 710px;
  width: 960px;
  position: relative;
}
#top_liveArea p.item {
  position: absolute;
  display: block;
}
#top_liveArea p#item01 {
  left: 277px;
  top: 9px;
}
#top_liveArea p#item02 {
  left: 62px;
  top: 84px;
}
#top_liveArea p#item03 {
  left: 201px;
  top: 221px;
}
#top_liveArea p#item04 {
  left: 47px;
  top: 501px;
  background-image: url(../images/bg_live02.png);
  height: 144px;
  width: 864px;
}
#top_liveArea p#item04 a {
  height: 144px;
  width: 864px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}
#top_liveArea p#item05 {
  left: 346px;
  top: 225px;
}
#top_liveArea p.alt {
  display: none;
}
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 1;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 1;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz-out:hover,
.hvr-buzz-out:focus,
.hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/*------------------------------------------------------------
第2階層 共通
------------------------------------------------------------*/
#second .head {
  background: #fff;
  border-top: 10px solid #232323;
  padding: 20px 0;
  height: auto;
}
#second .head.large {
  padding: 60px 0 40px;
}
#second .head .logo {
  width: 400px;
  height: auto;
  text-align: center;
}
#second .head .logo.large {
  width: 400px;
  height: auto;
}
#second .head .logo.live2020,
#second .head .logo.live2021 {
  width: 575px;
  height: auto;
}
#second .head .logo　img {
  width: 100%;
  height: auto;
}
.contentArea {
  background: #83cdd2;
  padding: 20px 0;
}
.contentArea .inner {
  background: #fff;
  width: 800px;
  padding: 20px;
}
.content_title01 {
  border: 6px solid;
  position: inherit;
  padding: 10px;
  margin: 0 auto 20px;
}
.content_title01 img {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 auto;
  line-height: 1;
  font-size: 0;
}
.sub_title01 {
  background: #4ab6bc;
  color: #fff;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2em;
}
.sub_title02 {
  color: #83cdd2;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 10px;
}

/*------------------------------------------------------------
第2階層 ネット局
------------------------------------------------------------*/
.content_title01 {
  border-color: #83cdd2;
}
.table_2column {
  text-align: center;
}
.table_2column table {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  width: 47%;
  margin: 0 1%;
}
.table_2column table th,
.table_2column table td {
  padding: 5px;
  vertical-align: top;
}
.table_2column table th {
  color: #83cdd2;
  font-weight: bold;
}
.table_2column table td {
  color: #83cdd2;
  text-align: left;
}
.table_2column table .txt_red {
  margin: 0 5px;
}
.table_2column table th.tv_bottom{
  padding:5px 5px 0;
}
.table_2column table td.date_bottom{
  padding:5px 5px 0;
}
.table_2column table td.annotation{
  color:#222222;
  padding:0 5px;
  font-size:10px;
}

/*------------------------------------------------------------
第2階層 バックナンバー
------------------------------------------------------------*/
.backnumber_list li a {
  display: block;
  color: #83cdd2;
  font-weight: bold;
  font-size: 1.4em;
  border-bottom: 2px dotted #83cdd2;
  padding: 15px 5px;
  line-height: 1;
  text-align: center;
}
.backnumber_list li a:hover {
  color: #232323;
  text-decoration: none;
  background: rgba(0, 161, 214, 0.1);
}

#ntv_topics_box {
  z-index: 9999;
  position: relative;
}

/*------------------------------------------------------------
第2階層 空いた時間に自撮リズム
------------------------------------------------------------*/

/* photoList
**********************************/
.photoList {
  text-align: center;
  padding: 0;
}
.photoList li {
  display: inline-block;
  width: 300px;
  /*height: 300px;*/
  line-height: 1;
  margin: 0;
  position: relative;
  font-size: 0;
  vertical-align: text-bottom;
}
.photoList li a {
  background: #eee;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 300px;
  height: 225px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.photoList li a:before,
.photoList li a:after {
  opacity: 0;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.photoList li a:before {
  content: '';
  background-image: url(../images/photo/parts_modal.png);
  background-position: 0 -80px;
  display: block;
  width: 130px;
  height: 130px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -65px 0 0 -65px;
  z-index: 2;
}
.photoList li a:after {
  content: '';
  background: rgba(74, 182, 191, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.photoList li a:hover:before,
.photoList li a:hover:after {
  opacity: 1;
}
.photoList li img {
  width: 100%;
  height: auto;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
  pointer-events: none;
}
.photoList li.ph100 img {
  width: auto;
  height: 100%;
}
.photoList li.phBoth img {
  width: auto;
  height: 100%;
}
.photoList li.photo_new:after {
  content: '';
  background: url(../images/photo/icon_new01.png) no-repeat left top transparent;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

/* modal
**********************************/
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 99000;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
  pointer-events: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 182, 191, 0.9);
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

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

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #ccc;
}

.pswp__error-msg a {
  color: #ccc;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../images/photo/parts_modal.png) 0 0 no-repeat;
  width: 40px;
  height: 80px;
}

.pswp__button--close {
  background-position: 0 0;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  top: 50%;
  margin-top: -40px;
  width: 40px; /* 60 */
  height: 80px; /* 120 */
  background: url(../images/photo/parts_modal.png) transparent;
  position: absolute;
}

.pswp__button--arrow--left {
  background-position: -80px 0;
  left: 10px;
}

.pswp__button--arrow--right {
  background-position: -120px 0;
  right: 10px;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #fff;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #fff;
}
.pswp__caption__center {
  text-align: left;
  max-width: 665px;
  margin: 0 auto;
  font-size: 24px;
  padding: 10px;
  line-height: 1.4;
  color: #fff;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__caption {
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  display: none;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/*------------------------------------------------------------
第2階層 予告動画
------------------------------------------------------------*/
.movieArea {
  width: 530px;
  margin: 0 auto;
}
