@charset "UTF-8";
/* mixinCSS Document */
/* box-shadow */
/* border-radius */
/* clearfix */
/* animation */
/* animation.css */
/*flex*/
/* background-size */
/* keyframes */
/*!
 * animate.css -https://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext,vietnamese");
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@-webkit-keyframes pulseLeft {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center right;
  }
  50% {
    -webkit-transform: scale3d(0.2, 0.2, 0.2);
    transform: scale3d(0.2, 0.2, 0.2);
    transform-origin: center right;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center right;
  }
}
@keyframes pulseLeft {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center right;
  }
  50% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
    transform-origin: center right;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center right;
  }
}
.pulseLeft {
  -webkit-animation-name: pulseLeft;
  animation-name: pulseLeft;
}

@-webkit-keyframes pulseRight {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center left;
  }
  50% {
    -webkit-transform: scale3d(0.2, 0.2, 0.2);
    transform: scale3d(0.2, 0.2, 0.2);
    transform-origin: center left;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center left;
  }
}
@keyframes pulseRight {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center left;
  }
  50% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
    transform-origin: center left;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    transform-origin: center left;
  }
}
.pulseRight {
  -webkit-animation-name: pulseRight;
  animation-name: pulseRight;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/*
Colorbox Core Style:
The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
User Style:
Change the following styles to modify the appearance of Colorbox.  They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background-color: rgba(0, 0, 0, 0.8);
}

#colorbox {
  outline: 0;
}

#cboxTopLeft {
  height: 21px;
  /*background:url(images/controls.png) no-repeat -101px 0;*/
}

#cboxTopRight {
  height: 21px;
  /*background:url(images/controls.png) no-repeat -130px 0;*/
}

#cboxBottomLeft {
  height: 21px;
  /*background:url(images/controls.png) no-repeat -101px -29px;*/
}

#cboxBottomRight {
  height: 21px;
  /*background:url(images/controls.png) no-repeat -130px -29px;*/
}

#cboxMiddleLeft {
  /*background:url(images/controls.png) left top repeat-y;*/
}

#cboxMiddleRight {
  /*background:url(images/controls.png) right top repeat-y;*/
}

#cboxTopCenter {
  height: 55px;
  /*background:url(images/border.png) 0 0 repeat-x;*/
}

#cboxBottomCenter {
  height: 21px;
  /*background:url(images/border.png) 0 -29px repeat-x;*/
}

.cboxIframe {
  background: #000;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 28px;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

#cboxLoadingOverlay {
  /*background:url(images/loading_background.png) no-repeat center center;*/
}

#cboxLoadingGraphic {
  /*background:url(images/loading.gif) no-repeat center center;*/
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxClose {
  position: absolute;
  top: -40px;
  right: 0px;
  background: url(../images/artists/close.png) no-repeat;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
}

/*
The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
when an alpha filter (opacity change) is set on the element or ancestor element.	This style is not applied to or needed in IE9.
See: https://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

body {
  background-color: #201b68;
  color: #fff;
  min-width: 1000px;
}

#wrapper {
  font-family: 'Montserrat',sans-serif,"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", Meiryo, 'Lucida Grande', Osaka, "ＭＳ Ｐゴシック", sans-serif;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: break-all;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

::selection {
  background: #e41829;
}

::-moz-selection {
  background: #e41829;
}

/***** #countdown *****/
#countdown {
  height: 61px;
}

#countdown-unit {
  width: 960px;
  height: 61px;
  margin: 0 auto;
  background: url(../images/countdown/bg.png) no-repeat 420px bottom;
  position: relative;
}
#countdown-unit div {
  position: relative;
  float: left;
  width: 46px;
  height: 61px;
  overflow: hidden;
  top: 0px;
}
#countdown-unit div img {
  position: absolute;
  top: 0;
  left: 0;
}
#countdown-unit .day-ten {
  left: 236px;
}
#countdown-unit .day-one {
  left: 242px;
}
#countdown-unit .hour-ten {
  left: 337px;
}
#countdown-unit .hour-one {
  left: 342px;
}
#countdown-unit .minute-ten {
  left: 374px;
}
#countdown-unit .minute-one {
  left: 379px;
}
#countdown-unit .second-ten {
  left: 409px;
}
#countdown-unit .second-one {
  left: 416px;
}
#countdown-unit p {
  position: absolute;
  top: 33px;
  left: 100px;
}
#countdown-unit #day-thousand,
#countdown-unit #day-hundred,
#countdown-unit #flame-ten,
#countdown-unit #flame-one {
  display: none;
}

/***** #header *****/
#header {
  min-width: 960px;
  padding: 0 0 60px 0;
  background: url(../images/header/bg.jpg) no-repeat center bottom;
  background-size: cover;
}
#header .inner {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  padding: 60px 0 120px;
}
#header .inner h1 {
  height: 427px;
  margin: 0 0 25px;
  background: url(../images/header/h1.png) no-repeat center top;
}
#header .inner h2 {
  height: 62px;
  background: url(../images/header/h2.png) no-repeat center top;
}
#header .global_NTV_snsArea .global_NTV_snsList {
  margin: 0 auto;
  padding: 20px 20px 60px 0;
  text-align: right;
}
#header .global_NTV_snsArea .global_NTV_snsList li {
  width: 85px;
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
}
#header .global_NTV_snsArea .fb_iframe_widget span {
  vertical-align: top !important;
  padding: 0;
}

/***** #nav *****/
#nav ul {
  text-align: center;
}
#nav ul li {
  display: inline-block;
  padding: 5px 15px;
  text-align: center;
  font-size: 1.75vw;
  position: relative;
}
#nav ul li span.new {
  position: absolute;
  color: #e41829;
  top: -0.5em;
  left: 15px;
  font-size: 1vw;
  font-weight: 800;
}
#nav ul li a {
  position: relative;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
  color: #fff;
}
#nav ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 3px;
  background-color: #e41829;
  transition: .3s;
}
#nav ul li a:hover::after {
  width: 100%;
}
#nav ul li a:hover {
  color: #e41829;
}
#nav ul li:last-child {
  padding-right: 0;
}

@media (max-width: 1000px) {
  #nav ul li {
    font-size: 30px !important;
  }
  #nav ul li span.new {
    font-size: 15px !important;
  }
}
/***** .block *****/
.block {
  min-width: 960px;
  padding: 100px 0;
}
.block .inner {
  width: 960px;
  margin: 0 auto;
}
.block .inner h3 {
  margin: 0 auto 50px;
  font-weight: 800;
  font-size: 80px;
  letter-spacing: 0.05em;
  text-align: center;
}

/***** #movie *****/
#movie .movielist {
  text-align: center;
}
#movie .movielist a {
  width: 300px;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  outline: none;
  position: relative;
  margin: 0 20px 50px 0;
}
#movie .movielist a:nth-child(3) {
  margin: 0 0 50px 0;
}
#movie .movielist a:nth-child(6) {
  margin: 0 0 50px 0;
}
#movie .movielist a ul.thum {
  width: 300px;
  height: 169px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
#movie .movielist a ul.thum li.photo {
  position: relative;
}
#movie .movielist a ul.thum li.photo img {
  width: 100%;
  height: auto;
}
#movie .movielist a ul.thum li.watch {
  background-color: #e2162d;
  padding: 5px 0 5px;
  text-align: center;
  color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -100px;
  -webkit-transition: bottom 0.2s ease-in;
  transition: bottom 0.2s ease-in;
}
#movie .movielist a p.tit {
  font-size: 18px;
  color: #fff;
  margin-top: 3%;
  font-weight: bold;
}
#movie .movielist a:hover ul.thum li.watch {
  bottom: 0px;
}

/***** #tickets *****/
#tickets {
  background-color: #e41829;
  text-align: center;
  color: #201b68;
}
#tickets h4 {
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: bold;
}
#tickets p {
  font-size: 24px;
  font-weight: bold;
}
#tickets p.sub {
  font-size: 28px;
  font-weight: bold;
}
#tickets p.note {
  padding-top: 10px;
  font-size: 14px;
}
#tickets p.attention {
  color: #fff;
  font-size: 16px;
  margin-bottom: 40px;
}
#tickets ul {
  width: 800px;
  padding: 40px 0 35px;
  font-size: 0;
  letter-spacing: 0;
  margin: 0 auto;
}
#tickets ul li {
  padding-bottom: 15px;
  text-align: center;
  width: 50%;
  display: inline-block;
}
#tickets ul li:nth-child(1) a img {
  margin: 0 auto;
}
#tickets ul li:nth-child(2) a img {
  margin: 0 auto;
}
#tickets ul li:nth-child(3) a img, #tickets ul li:nth-child(5) a img {
  width: 90%;
  margin: 0 9px auto auto;
}
#tickets ul li:nth-child(4) a img {
  width: 90%;
  margin: 0 auto auto 9px;
}
#tickets ul li:nth-child(6) a img {
  width: 90%;
  margin: 0 auto auto auto;
}
#tickets ul li a img {
  border: 1px solid #fff;
  display: block;
}
#tickets ul li a img:hover {
  opacity: 0.7;
  transition: ease 0.3s;
}
#tickets dl {
  margin: 0 auto;
}
#tickets dl dt {
  vertical-align: middle;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
}
#tickets dl dt span {
  padding: 5px 7px 5px 10px;
  background: #fff;
  color: #e41829;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
#tickets dl dd {
  vertical-align: middle;
  color: #fff;
  font-size: 24px;
}

/***** #what's new *****/
#whatsnew {
  background: url(../images/whatsnew/bg.jpg) no-repeat center bottom;
  background-size: cover;
}
#whatsnew h3 {
  color: #fff;
}
#whatsnew .newsArea .box {
  width: 220px;
  height: 160px;
  margin: 0 20px 20px 0;
  padding: 30px;
  display: inline-block;
  line-height: 1.8;
  overflow: hidden;
  vertical-align: top;
  border: 5px solid #fff;
}
#whatsnew .newsArea .box:nth-child(3n) {
  margin-right: 0;
}
#whatsnew .newsArea .box .date {
  font-size: 30px;
  letter-spacing: 0.15em;
  text-align: left;
  font-weight: 800;
}
#whatsnew .newsArea .box .txt {
  font-size: 17px;
  letter-spacing: 0.15em;
  text-align: left;
}
#whatsnew .newsArea .box .txt a {
  color: #e41829;
}

/***** #artists *****/
#artists {
  background: url(../images/artists/bg.png) repeat;
  background-position: 0 0;
  -webkit-animation: bgroop 50s linear infinite;
  animation: bgroop 50s linear infinite;
  padding-top: 0px;
}
#artists .cover {
  background: url(../images/artists/bg.png) repeat;
  background-position: 952px 0;
  -webkit-animation: bgroop2 50s linear infinite;
  animation: bgroop2 50s linear infinite;
  padding: 100px 0;
}
#artists p {
  padding: 10px 0 0;
  text-align: center;
}
#artists .days {
  text-align: left;
}
#artists .days h4 {
  margin: 0 0 30px;
  font-size: 50px;
  font-weight: 400;
  text-align: center;
}
#artists .days a {
  width: 460px;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  outline: none;
  position: relative;
}
#artists .days a:nth-child(even) {
  margin: 0 20px 50px 0;
}
#artists .days a:last-child {
  margin: 0 0 50px 0;
}
#artists .days a:hover {
  cursor: pointer;
}
#artists .days a:hover ul li.label span {
  width: 80px;
  height: 80px;
  background: url(../images/artists/label_on.png) no-repeat left bottom;
  background-size: cover;
  display: block;
}
#artists .days a:hover ul li.photo span {
  transform: scale(1.1);
}
#artists .days a ul {
  width: 460px;
  position: relative;
}
#artists .days a ul li {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}
#artists .days a ul li.label {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  width: 80px;
  height: 80px;
  background: url(../images/artists/label_off.png) no-repeat left top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  z-index: 1;
}
#artists .days a ul li.photo {
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
#artists .days a ul li.photo span {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  height: 306px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
#artists .days a ul li.name {
  padding: 10px 0 0;
  text-align: center;
}
#artists .days a ul li.name span {
  font-size: 14px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  left: -2px;
}
#artists .sat h4 span {
  color: #01c0d2;
}
#artists .sat .artist01 .photo span {
  background: url(../images/artists/sat/photo01.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sat .artist02 .photo span {
  background: url(../images/artists/sat/photo02.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sat .artist03 .photo span {
  background: url(../images/artists/sat/photo03.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sat .artist04 .photo span {
  background: url(../images/artists/sat/photo04.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sat .artist05 .photo span {
  background: url(../images/artists/sat/photo05.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sun {
  padding: 50px 0 0;
}
#artists .sun h4 span {
  color: #e41829;
}
#artists .sun .artist01 .photo span {
  background: url(../images/artists/sun/photo01.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sun .artist02 .photo span {
  background: url(../images/artists/sun/photo02.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sun .artist03 .photo span {
  background: url(../images/artists/sun/photo03.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sun .artist04 .photo span {
  background: url(../images/artists/sun/photo04.jpg) no-repeat center top;
  background-size: contain;
}
#artists .sun .artist05 .photo span {
  background: url(../images/artists/sun/photo05.jpg) no-repeat center top;
  background-size: contain;
}

@-webkit-keyframes bgroop {
  from {
    background-position: 0  10px;
  }
  to {
    background-position: -6470px 10px;
  }
}
@keyframes bgroop {
  from {
    background-position: 0 10px;
  }
  to {
    background-position: -6470px 10px;
  }
}
@-webkit-keyframes bgroop2 {
  from {
    background-position: -6470px 486px;
  }
  to {
    background-position: 0 476px;
  }
}
@keyframes bgroop2 {
  from {
    background-position: -6470px 486px;
  }
  to {
    background-position: 0 476px;
  }
}
/*** .profile ***/
.profile {
  text-align: center;
}
.profile h3 {
  padding: 0 0 12px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.profile p img {
  width: 450px;
  height: auto;
}
.profile ul {
  padding: 5px 10px 10px;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
.profile ul li {
  padding: 15px 0 0;
  letter-spacing: 0.15em;
  text-align: left;
}

#data {
  display: none;
}

.modal {
  width: 600px;
  background: #fff;
  padding: 30px 50px;
  position: relative;
  color: #000;
}

.modal.items {
  width: 800px;
  background: #fff;
  padding: 30px 50px;
  position: relative;
  color: #000;
}
.modal.items img {
  width: 100%;
  height: auto;
}

/***** #cast *****/
#cast {
  color: #201b68;
  background-color: #e41829;
  text-align: center;
}
#cast h3 {
  margin-bottom: 30px;
}
#cast ul {
  display: table;
  vertical-align: bottom;
}
#cast ul li {
  display: table-cell;
  vertical-align: bottom;
}
#cast ul.photo {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  padding: 30px 0 0;
}
#cast ul.photo .photo01 {
  padding-right: 20px;
}
#cast ul.photo .photo01 span {
  width: 494px;
  height: 474px;
  background: url(../images/cast/photo01.png) no-repeat center top;
  display: block;
}
#cast ul.photo .photo02 span {
  width: 334px;
  height: 324px;
  background: url(../images/cast/photo02.png) no-repeat center top;
  display: block;
}
#cast ul.name li {
  padding: 13px 0 0;
  vertical-align: top;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
#cast ul.name .name01 {
  width: 494px;
  padding-right: 20px;
}
#cast ul.name .name02 {
  width: 334px;
}
#cast ul.name .name02 span {
  font-size: 12px;
  letter-spacing: 0;
}

/***** #about *****/
#about {
  background: url(../images/about/bg.jpg) no-repeat center bottom;
  background-size: contain;
}
#about .intro {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6em;
  color: #e41829;
}
#about .detail {
  padding: 20px 0;
}
#about .detail h4 {
  margin: 0 0 10px;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
}
#about .detail h5 {
  margin: 10px 0 0 0;
  font-size: 19px;
  font-weight: bold;
}
#about .detail p {
  font-size: 20px;
  line-height: 1.6;
}
#about .detail p.credit {
  padding: 5px 0 13px;
}
#about .detail table td {
  font-size: 19px;
}
#about .detail ul {
  padding: 5px 0 0;
}
#about .detail ul li {
  padding-top: 4px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 15px;
}
#about .detail ul li.notice {
  color: #f00;
}

/***** #goods *****/
#goods {
  background: #e41829 url(../images/goods/bg.png) repeat-x;
  background-position: 0 bottom;
  -webkit-animation: bgroop3 1s linear infinite;
  animation: bgroop3 1s linear infinite;
  padding-top: 0px;
  color: #201b68;
}
#goods .cover {
  background: url(../images/goods/bg.png) repeat-x;
  background-position: 0 0;
  -webkit-animation: bgroop4 1s linear infinite;
  animation: bgroop4 1s linear infinite;
  padding-top: 100px;
}
#goods h4 {
  font-size: 22px;
  line-height: 1.9;
  text-align: center;
  font-weight: bold;
}
#goods h4 span {
  color: #fff;
}
#goods h5 {
  width: 90%;
  margin: 30px auto 0;
  padding: 28px 30px 30px;
  border: #fff 3px solid;
  text-align: center;
  font-size: 26px;
  color: #fff;
  line-height: 1.9;
  font-weight: bold;
}
#goods h5 span {
  font-size: 20px;
}
#goods #items {
  margin: 0 auto;
  padding-top: 70px;
  font-size: 0;
  letter-spacing: 0;
}
#goods #items a {
  width: 460px;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  outline: none;
  position: relative;
}
#goods #items a:nth-child(odd) {
  margin: 0 30px 50px 5px;
}
#goods #items a:hover {
  cursor: pointer;
}
#goods #items a:hover ul li.zoom span {
  width: 35px;
  height: 36px;
  background: url(../images/goods/zoom_on.png) no-repeat left bottom;
  background-size: cover;
  display: block;
}
#goods #items a:hover ul li.pic span {
  transform: scale(1.1);
}
#goods #items a ul {
  width: 460px;
  position: relative;
}
#goods #items a ul li {
  font-size: 20px;
  font-weight: 600;
  color: #201b68;
  letter-spacing: 0.1em;
}
#goods #items a ul li.zoom {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  width: 35px;
  height: 36px;
  background: url(../images/goods/zoom_off.png) no-repeat left top;
  background-size: cover;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  z-index: 1;
}
#goods #items a ul li.pic {
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
#goods #items a ul li.pic span {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  height: 306px;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
#goods #items a ul li.name {
  padding: 10px 0 0;
  text-align: center;
}
#goods #items a ul li.name span {
  font-size: 14px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  left: -2px;
}
#goods #items a ul li.price {
  padding: 5px 0 0;
  text-align: center;
}
#goods #items a ul li.price span {
  font-size: 14px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  left: -2px;
}
#goods #items .item01 .pic span {
  background: url(../images/goods/thumb/item01.jpg) no-repeat center top;
  background-size: contain;
}
#goods #items .item02 .pic span {
  background: url(../images/goods/thumb/item02.jpg) no-repeat center top;
  background-size: contain;
}
#goods #items .item03 .pic span {
  background: url(../images/goods/thumb/item03.jpg) no-repeat center top;
  background-size: contain;
}
#goods #items .item04 .pic span {
  background: url(../images/goods/thumb/item04.jpg) no-repeat center top;
  background-size: contain;
}
#goods ul.note {
  font-size: 16px;
}
#goods ul.note li {
  padding: 0 0 8px;
}
#goods ul.note li span {
  color: #fff;
  font-weight: bold;
}

@-webkit-keyframes bgroop3 {
  from {
    background-position: 0  bottom;
  }
  to {
    background-position: -210px bottom;
  }
}
@keyframes bgroop3 {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: -210px bottom;
  }
}
@-webkit-keyframes bgroop4 {
  from {
    background-position: -210px top;
  }
  to {
    background-position: 0 top;
  }
}
@keyframes bgroop4 {
  from {
    background-position: -210px top;
  }
  to {
    background-position: 0 top;
  }
}
/***** #twitter *****/
#twitter {
  color: #201b68;
  background-color: #01c0d2;
}
#twitter .frame {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  margin: 0 auto;
  width: 780px !important;
}
#twitter .frame iframe {
  width: 780px !important;
}

/***** #bottom *****/
#bottom {
  background-color: #222326;
}
#bottom ul {
  width: 960px;
  margin: 0 auto;
  font-size: 0;
  letter-spacing: 0;
}
#bottom ul li {
  margin-right: 65px;
  display: inline-block;
}
#bottom ul li:last-child {
  margin-right: 0;
}
#bottom ul li a:hover {
  opacity: 0.7;
  transition: ease 0.3s;
}

/***** #totop *****/
#totop {
  position: fixed;
  bottom: 50px;
  right: 20px;
}
#totop a:hover {
  opacity: 0.7;
  transition: ease 0.3s;
}
#totop img {
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.15);
}
