@charset "UTF-8";
html {
  scroll-behavior: smooth;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  font-size: 62.5%;
}

.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: '';
  display: table;
  clear: both;
}

img {
  vertical-align: bottom;
  line-height: 1em;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.025em;
  background-position: center top;
  background-attachment: fixed;
  word-break: break-all;
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  min-height: 100vh;
}

@media (max-width: 800px) {
  body {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*COLOR1
//linktextの変更はaタグも合わせる
.select_color_bg {
  background-color: #ffffff;
}
.select_color_blockbg {
  background-color: #e6e6e6;
}
.select_color_headlinebg {
  background-color: #ffffff;
}
.select_color_text {
  color: #333333;
}
.select_color_linktext {
  color: #333333;
}
.select_color_accent {
  color: #333333;
}
.select_color_navbg {
  background-color: #000000;
}
.select_color_navtext {
  color: #ffffff;
}

.select_color_footerbg {
  background-color: #000000;
}
.select_color_footertext {
  color: #ffffff;
}
*/
/*COLOR2
//linktextの変更はaタグも合わせる
.select_color_bg {
  background-color: #ffffff;
}
.select_color_blockbg {
  background-color: #dddfe6;
}
.select_color_headlinebg {
  background-color: #252c41;
}
.select_color_text {
  color: #333333;
}
.select_color_linktext {
  color: #333333;
}
.select_color_accent {
  color: #dddfe6;
}
.select_color_navbg {
  background-color: #f1404b;
}
.select_color_navtext {
  color: #ffffff;
}
.select_color_footerbg {
  background-color: #f1404b;
}
.select_color_footertext {
  color: #ffffff;
}
*/
/*COLOR3
//linktextの変更はaタグも合わせる
.select_color_bg {
  background-color: #ffffff;
}
.select_color_blockbg {
  background-color: #d9ccb9;
}
.select_color_headlinebg {
  background-color: #df7782;
}
.select_color_text {
  color: #333333;
}
.select_color_linktext {
  color: #333333;
}
.select_color_accent {
  color: #ffffff;
}
.select_color_navbg {
  background-color: #017890;
}
.select_color_navtext {
  color: #ffffff;
}
.select_color_footerbg {
  background-color: #017890;
}
.select_color_footertext {
  color: #ffffff;
}
*/
/*COLOR4
//linktextの変更はaタグも合わせる
.select_color_bg {
  background-color: #000000;
}
.select_color_blockbg {
  background-color: #000000;
}
.select_color_headlinebg {
  background-color: #33363b;
}
.select_color_text {
  color: #ffffff;
}
.select_color_linktext {
  color: #ffffff;
}
.select_color_accent {
  color: #ffffff;
}
.select_color_navbg {
  background-color: #000000;
}
.select_color_navtext {
  color: #ffffff;
}
.select_color_footerbg {
  background-color: #000000;
}
.select_color_footertext {
  color: #ffffff;
}
*/
/*COLOR5
//linktextの変更はaタグも合わせる
.select_color_bg {
  background-color: #b86c99;
}
.select_color_blockbg {
  background-color: #2b2b2b;
}
.select_color_headlinebg {
  background-color: #d78ab7;
}
.select_color_text {
  color: #ffffff;
}
.select_color_linktext {
  color: #ffffff;
}
.select_color_accent {
  color: #ffffff;
}
.select_color_navbg {
  background-color: #a54c80;
}
.select_color_navtext {
  color: #ffffff;
}
.select_color_footerbg {
  background-color: #a54c80;
}
.select_color_footertext {
  color: #ffffff;
}
*/
.select_color_bg {
  background-color: #191919;
}

.select_color_blockbg {
  background-color: #2b2b2b;
}

.select_color_headlinebg {
  background-color: #fff056;
}

.select_color_text {
  color: #ffffff;
}

.select_color_linktext {
  color: #ffffff;
}

.select_color_accent {
  color: #191919;
}

.select_color_navbg {
  background-color: #191919;
}

.select_color_navtext {
  color: #ffffff;
}

.select_color_footerbg {
  background-color: #dfe2db;
}

.select_color_footertext {
  color: #191919;
}

header {
  position: fixed;
  z-index: 888;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --nav-height: 60px;
  --nav-background: #ccc;
}

@media (max-width: 800px) {
  :root {
    --nav-height: 50px;
  }
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: var(--nav-height);
}

@media (max-width: 800px) {
  nav {
    padding: 0 20px;
    height: 50px;
  }
}

@media (max-width: 800px) {
  .logo {
    width: 85%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 6666;
  }
}

.logo h1 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 800px) {
  .logo h1 {
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
  }
}

.logo img {
  max-height: 30px;
}

@media (max-width: 800px) {
  .logo img {
    width: auto;
    max-width: 200px;
    max-height: 30px;
  }
}

/* nav-links */
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--nav-height);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.nav-links li {
  list-style: none;
  margin: 0 8px;
  height: var(--nav-height);
  line-height: var(--nav-height);
  text-align: center;
}

.nav-links li a {
  text-decoration: none;
  position: relative;
  font-size: 12px;
  font-size: 1.2rem;
}

@media (max-width: 800px) {
  .nav-links li a {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  /* 980px以上用（PC用）の記述 */
  ul.nav-links.select_color_navbg {
    background-color: transparent;
  }
}

/* menu */
.menu {
  cursor: pointer;
  border: none;
  outline: none;
  display: none;
}

.menu .bar {
  width: 23px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.menu .bar1 {
  margin-bottom: 5px;
}

.menu .bar3 {
  margin-top: 5px;
}

.menu.toggle .bar1 {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu.toggle .bar2 {
  opacity: 0;
  visibility: hidden;
}

.menu.toggle .bar3 {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* responsive */
@media screen and (max-width: 1200px) {
  .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    padding-top: 40px;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    z-index: 7777;
  }
  .nav-links li {
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100%;
    display: block;
  }
  .menu {
    display: block;
    margin-left: auto;
    position: absolute;
    right: 3%;
    z-index: 9999;
  }
  .menu.toggle + .nav-links {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.content {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 800px) {
  .content {
    padding-top: 48px;
  }
}

.content #welcome {
  margin-bottom: 50px;
  margin-top: 60px;
}

@media (max-width: 800px) {
  .content #welcome {
    margin-bottom: 10px;
    margin-top: 0px;
  }
}

.content #welcome img {
  width: 100%;
  vertical-align: bottom;
}

.content #slider {
  background: #000;
  padding: 0;
  width: 100%;
  min-height: 240px;
}

.content .G-adsense1 {
  padding: 0;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 800px) {
  .content .G-adsense1 {
    margin-bottom: 10px;
  }
}

@media (max-width: 800px) {
  .content .G-adsense1 img {
    width: 100%;
  }
}

.content .imgslider {
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .content .imgslider {
    margin-bottom: 10px;
  }
}

.content #news_overview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .content #news_overview {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.content #news_overview .index-news-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #news_overview .index-news-left {
    margin-bottom: 10px;
  }
}

.content #news_overview .index-news-left .news-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.content #news_overview .index-news-left .news-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .content #news_overview .index-news-left .news-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.content #news_overview .index-news-right {
  width: 100%;
}

.content #news_overview .index-news-right ul {
  list-style: none;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #news_overview .index-news-right ul {
    margin-bottom: 10px;
  }
}

.content #news_overview .index-news-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  .content #news_overview .index-news-right ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.content #news_overview .index-news-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.content #news_overview .index-news-right ul li .date {
  font-size: 14px;
  font-size: 1.4rem;
  width: 100px;
}

@media (max-width: 800px) {
  .content #news_overview .index-news-right ul li .date {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 5px;
  }
}

.content #news_overview .index-news-right ul li h4 {
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
}

@media (max-width: 800px) {
  .content #news_overview .index-news-right ul li h4 {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
  }
}

.content #news_overview .index-news-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  .content #news_overview .index-news-right ul li a {
    display: block;
  }
}

.content #news_overview .index-news-right .viewmore {
  text-align: right;
}

.content #news_overview .index-news-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.content #media_news_overview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .content #media_news_overview {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.content #media_news_overview .index-medianews-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #media_news_overview .index-medianews-left {
    margin-bottom: 10px;
  }
}

.content #media_news_overview .index-medianews-left .medianews-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.content #media_news_overview .index-medianews-left .medianews-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .content #media_news_overview .index-medianews-left .medianews-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.content #media_news_overview .index-medianews-right {
  width: 100%;
}

.content #media_news_overview .index-medianews-right ul {
  list-style: none;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #media_news_overview .index-medianews-right ul {
    margin-bottom: 10px;
  }
}

.content #media_news_overview .index-medianews-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  .content #media_news_overview .index-medianews-right ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.content #media_news_overview .index-medianews-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.content #media_news_overview .index-medianews-right ul li .date {
  font-size: 14px;
  font-size: 1.4rem;
  width: 100px;
}

@media (max-width: 800px) {
  .content #media_news_overview .index-medianews-right ul li .date {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 5px;
  }
}

.content #media_news_overview .index-medianews-right ul li h4 {
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
}

@media (max-width: 800px) {
  .content #media_news_overview .index-medianews-right ul li h4 {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
  }
}

.content #media_news_overview .index-medianews-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .content #media_news_overview .index-medianews-right ul li a {
    display: block;
  }
}

.content #media_news_overview .index-medianews-right .viewmore {
  text-align: right;
}

.content #media_news_overview .index-medianews-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.content #live_overview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .content #live_overview {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.content #live_overview .index-live-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-left {
    margin-bottom: 10px;
  }
}

.content #live_overview .index-live-left .live-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.content #live_overview .index-live-left .live-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-left .live-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.content #live_overview .index-live-right {
  width: 100%;
}

.content #live_overview .index-live-right ul {
  list-style: none;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul {
    margin-bottom: 10px;
  }
}

.content #live_overview .index-live-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.content #live_overview .index-live-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.content #live_overview .index-live-right ul li .date {
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  width: 140px;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul li .date {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 5px;
  }
}

.content #live_overview .index-live-right ul li .venue {
  width: 200px;
  text-align: right;
}

.content #live_overview .index-live-right ul li h4 {
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 60%;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul li h4 {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
  }
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul li .venue {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
  }
}

.content #live_overview .index-live-right ul li .pending::before {
  content: '仮確定';
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  background: #bababa;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul li .pending::before {
    font-size: 11px;
    font-size: 1.1rem;
    margin: 0 10px 0 0px;
  }
}

.content #live_overview .index-live-right ul li .soldout::before {
  content: 'SOLD OUT';
  color: #ff0000;
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 0px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul li .soldout::before {
    margin: 0;
    padding: 0;
    margin-right: 5px;
  }
}

.content #live_overview .index-live-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .content #live_overview .index-live-right ul li a {
    display: block;
  }
}

.content #live_overview .index-live-right ul li span {
  font-size: 14px;
  font-size: 1.4rem;
}

.content #live_overview .index-live-right ul li span:last-child {
  margin-left: auto;
}

.content #live_overview .index-live-right .viewmore {
  text-align: right;
}

.content #live_overview .index-live-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.content #disco_overview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .content #disco_overview {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.content #disco_overview .index-disco-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #disco_overview .index-disco-left {
    margin-bottom: 10px;
  }
}

.content #disco_overview .index-disco-left .disco-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.content #disco_overview .index-disco-left .disco-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .content #disco_overview .index-disco-left .disco-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.content #disco_overview .index-disco-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 800px) {
  .content #disco_overview .index-disco-right {
    display: block;
  }
}

.content #disco_overview .index-disco-right ul {
  list-style: none;
  margin-bottom: 20px;
}

.content #disco_overview .index-disco-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.content #disco_overview .index-disco-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.content #disco_overview .index-disco-right ul li .date {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  width: 150px;
}

.content #disco_overview .index-disco-right ul li h4 {
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}

.content #disco_overview .index-disco-right ul li .pending::before {
  content: '仮確定';
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  background: #bababa;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.content #disco_overview .index-disco-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content #disco_overview .index-disco-right ul li span {
  font-size: 16px;
  font-size: 1.6rem;
}

.content #disco_overview .index-disco-right ul li span:last-child {
  margin-left: auto;
}

.content #disco_overview .index-disco-right .index-disco-jacket {
  width: 45%;
}

@media (max-width: 800px) {
  .content #disco_overview .index-disco-right .index-disco-jacket {
    width: 100%;
    margin-bottom: 10px;
  }
}

.content #disco_overview .index-disco-right .index-disco-jacket img {
  width: 100%;
  padding: 10px;
}

.content #disco_overview .index-disco-right .index-disco-detail {
  width: 50%;
}

@media (max-width: 800px) {
  .content #disco_overview .index-disco-right .index-disco-detail {
    width: 100%;
  }
}

.content #disco_overview .index-disco-right .index-disco-detail .caption {
  margin-bottom: 5px;
}

.content #disco_overview .index-disco-right .index-disco-detail h4 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #disco_overview .index-disco-right .index-disco-detail h4 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.content #disco_overview .index-disco-right .index-disco-detail .price {
  margin-bottom: 20px;
}

.content #disco_overview .index-disco-right .index-disco-detail .songs {
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.content #disco_overview .index-disco-right .index-disco-detail .description {
  margin-bottom: 20px;
}

.content #disco_overview .index-disco-right .viewmore {
  text-align: right;
  width: 100%;
}

.content #disco_overview .index-disco-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.content #goods_overview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .content #goods_overview {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.content #goods_overview .index-goods-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #goods_overview .index-goods-left {
    margin-bottom: 10px;
  }
}

.content #goods_overview .index-goods-left .goods-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.content #goods_overview .index-goods-left .goods-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .content #goods_overview .index-goods-left .goods-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.content #goods_overview .index-goods-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 800px) {
  .content #goods_overview .index-goods-right {
    display: block;
  }
}

.content #goods_overview .index-goods-right ul {
  list-style: none;
  margin-bottom: 20px;
}

.content #goods_overview .index-goods-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.content #goods_overview .index-goods-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.content #goods_overview .index-goods-right ul li .date {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  width: 150px;
}

.content #goods_overview .index-goods-right ul li h4 {
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}

.content #goods_overview .index-goods-right ul li .pending::before {
  content: '仮確定';
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  background: #bababa;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.content #goods_overview .index-goods-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content #goods_overview .index-goods-right ul li span {
  font-size: 16px;
  font-size: 1.6rem;
}

.content #goods_overview .index-goods-right ul li span:last-child {
  margin-left: auto;
}

.content #goods_overview .index-goods-right .index-goods-jacket {
  width: 45%;
}

@media (max-width: 800px) {
  .content #goods_overview .index-goods-right .index-goods-jacket {
    width: 100%;
    margin-bottom: 10px;
  }
}

.content #goods_overview .index-goods-right .index-goods-jacket img {
  width: 100%;
  padding: 10px;
}

.content #goods_overview .index-goods-right .index-goods-detail {
  width: 50%;
}

@media (max-width: 800px) {
  .content #goods_overview .index-goods-right .index-goods-detail {
    width: 100%;
  }
}

.content #goods_overview .index-goods-right .index-goods-detail .caption {
  margin-bottom: 5px;
}

.content #goods_overview .index-goods-right .index-goods-detail h4 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.content #goods_overview .index-goods-right .index-goods-detail .price {
  margin-bottom: 20px;
}

.content #goods_overview .index-goods-right .index-goods-detail .songs {
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.content #goods_overview .index-goods-right .index-goods-detail .description {
  margin-bottom: 20px;
}

.content #goods_overview .index-goods-right .index-goods-detail .index-goods-name {
  font-size: 16px;
  font-size: 1.6rem;
}

@media (max-width: 800px) {
  .content #goods_overview .index-goods-right .index-goods-detail .index-goods-name {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.content #goods_overview .index-goods-right .index-goods-detail .index-songttl {
  margin-bottom: 15px;
}

.content #goods_overview .index-goods-right .index-goods-detail .index-price-box {
  margin-bottom: 15px;
}

.content #goods_overview .index-goods-right .viewmore {
  text-align: right;
  width: 100%;
}

.content #goods_overview .index-goods-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.content #movie_overview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .content #movie_overview {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.content #movie_overview .index-movie-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .content #movie_overview .index-movie-left {
    margin-bottom: 10px;
  }
}

.content #movie_overview .index-movie-left .movie-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.content #movie_overview .index-movie-left .movie-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .content #movie_overview .index-movie-left .movie-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.content #movie_overview .index-movie-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .content #movie_overview .index-movie-right {
    display: block;
  }
}

.content #movie_overview .index-movie-right .index-movie-jacket {
  width: 45%;
}

.content #movie_overview .index-movie-right .index-movie-jacket img {
  width: 100%;
}

.content #movie_overview .index-movie-right .index-movie-detail {
  width: 100%;
}

.content #movie_overview .index-movie-right .index-movie-detail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 800px) {
  .content #movie_overview .index-movie-right .index-movie-detail ul {
    display: block;
  }
}

.content #movie_overview .index-movie-right .index-movie-detail ul li {
  width: 33%;
  list-style: none;
  margin: 0.5%;
}

@media (max-width: 800px) {
  .content #movie_overview .index-movie-right .index-movie-detail ul li {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
}

.content #movie_overview .index-movie-right .index-movie-detail ul li .youtube {
  position: relative;
  width: 100%;
}

.content #movie_overview .index-movie-right .index-movie-detail ul li .youtube iframe {
  top: 0;
  right: 0;
  width: 100% !important;
  height: 200px !important;
}

.content #movie_overview .index-movie-right .index-movie-detail .caption {
  margin-bottom: 5px;
}

.content #movie_overview .index-movie-right .index-movie-detail h4 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.content #movie_overview .index-movie-right .index-movie-detail .price {
  margin-bottom: 20px;
}

.content #movie_overview .index-movie-right .index-movie-detail .songs {
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.content #movie_overview .index-movie-right .index-movie-detail .description {
  margin-bottom: 20px;
}

.content #movie_overview .index-movie-right .viewmore {
  text-align: right;
}

.content #movie_overview .index-movie-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.content #movie_overview .viewmore {
  text-align: right;
}

.content #movie_overview .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.news {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .news {
    padding-top: 45px;
  }
}

.news #news_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .news #news_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.news #news_insideview .index-news-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.news #news_insideview .index-news-left .news-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.news #news_insideview .index-news-left .news-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .news #news_insideview .index-news-left .news-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.news #news_insideview .index-news-right {
  width: 100%;
}

.news #news_insideview .index-news-right ul {
  list-style: none;
  margin-bottom: 20px;
}

.news #news_insideview .index-news-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  .news #news_insideview .index-news-right ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.news #news_insideview .index-news-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.news #news_insideview .index-news-right ul li .date {
  font-size: 13px;
  font-size: 1.3rem;
  width: 140px;
}

@media (max-width: 800px) {
  .news #news_insideview .index-news-right ul li .date {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.news #news_insideview .index-news-right ul li h4 {
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
}

@media (max-width: 800px) {
  .news #news_insideview .index-news-right ul li h4 {
    width: 100%;
  }
}

.news #news_insideview .index-news-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  .news #news_insideview .index-news-right ul li a {
    display: block;
  }
}

.news #news_insideview .index-news-right .viewmore {
  text-align: right;
}

.news #news_insideview .index-news-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.news #news_insideview .index-news-right nav {
  width: 100%;
  padding: 0px;
}

.news #news_insideview .index-news-right nav ul li {
  border: none;
  margin: 0px;
  padding: 0;
}

.news-single {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .news-single {
    padding-top: 45px;
  }
}

.news-single #news_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .news-single #news_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.news-single #news_insideview .news-single-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.news-single #news_insideview .news-single-left .news-single-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.news-single #news_insideview .news-single-left .news-single-ttl h2 {
  font-size: 50px;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

.news-single #news_insideview .news-single-box .date {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .news-single #news_insideview .news-single-box .date {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.news-single #news_insideview .news-single-box .img_area {
  margin: 0px 0 24px 0;
  width: 100%;
  padding: 10px;
}

@media (max-width: 800px) {
  .news-single #news_insideview .news-single-box .img_area {
    margin: 10px 0 10px 0;
    width: 100%;
    padding: 5px;
  }
}

.news-single #news_insideview .news-single-box .img_area img {
  width: 100%;
}

.news-single #news_insideview .news-single-box .title {
  margin-bottom: 10px;
  padding: 10px;
}

@media (max-width: 800px) {
  .news-single #news_insideview .news-single-box .title {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 5px;
    margin-bottom: 10px;
  }
}

.news-single #news_insideview .news-single-box iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .news-single #news_insideview .news-single-box iframe {
    height: 250px;
  }
}

.news-single #news_insideview .news-single-box {
  margin-bottom: 0px;
}

@media (max-width: 800px) {
  .news-single #news_insideview .news-single-box {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.news-single .center {
  text-align: center;
}

@media (max-width: 800px) {
  .news-single .center {
    margin-bottom: 10px;
  }
}

.news-single .pageback {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  margin: 24px 0 0 0;
}

@media (max-width: 800px) {
  .news-single .pageback {
    margin-top: 0px !important;
  }
}

.medianews {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .medianews {
    padding-top: 45px;
  }
}

.medianews #medianews_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .medianews #medianews_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.medianews #medianews_insideview .medianews-left {
  width: 100%;
  margin-bottom: 20px;
}

.medianews #medianews_insideview .medianews-left .medianews-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.medianews #medianews_insideview .medianews-left .medianews-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .medianews #medianews_insideview .medianews-left .medianews-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.medianews #medianews_insideview .medianews-right {
  width: 100%;
}

.medianews #medianews_insideview .medianews-right ul {
  list-style: none;
  margin-bottom: 20px;
}

.medianews #medianews_insideview .medianews-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  .medianews #medianews_insideview .medianews-right ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.medianews #medianews_insideview .medianews-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.medianews #medianews_insideview .medianews-right ul li .date {
  font-size: 13px;
  font-size: 1.3rem;
  width: 140px;
}

@media (max-width: 800px) {
  .medianews #medianews_insideview .medianews-right ul li .date {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.medianews #medianews_insideview .medianews-right ul li h4 {
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
}

@media (max-width: 800px) {
  .medianews #medianews_insideview .medianews-right ul li h4 {
    width: 100%;
  }
}

.medianews #medianews_insideview .medianews-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  .medianews #medianews_insideview .medianews-right ul li a {
    display: block;
  }
}

.medianews #medianews_insideview .medianews-right .viewmore {
  text-align: right;
}

.medianews #medianews_insideview .medianews-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.medianews #medianews_insideview nav {
  margin: 0px;
  padding: 0px;
}

.live {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .live {
    padding-top: 45px;
  }
}

.live #live_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .live #live_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.live #live_insideview .live-left {
  width: 100%;
  margin-bottom: 20px;
}

.live #live_insideview .live-left .live-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.live #live_insideview .live-left .live-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .live #live_insideview .live-left .live-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.live #live_insideview .live-right {
  width: 100%;
}

.live #live_insideview .live-right ul {
  list-style: none;
  margin-bottom: 20px;
}

.live #live_insideview .live-right ul li {
  list-style: none;
  border-bottom: solid 1px #d2d2d2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  .live #live_insideview .live-right ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.live #live_insideview .live-right ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.live #live_insideview .live-right ul li span {
  font-size: 13px;
  font-size: 1.3rem;
}

.live #live_insideview .live-right ul li span:last-child {
  margin-left: auto;
}

.live #live_insideview .live-right ul li .date {
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
  width: 140px;
}

@media (max-width: 800px) {
  .live #live_insideview .live-right ul li .date {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

.live #live_insideview .live-right ul li h4 {
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

@media (max-width: 800px) {
  .live #live_insideview .live-right ul li h4 {
    width: 100%;
  }
}

.live #live_insideview .live-right ul li .venue {
  width: 350px;
  text-align: right;
}

.live #live_insideview .live-right ul li .pending::before {
  content: '仮確定';
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  background: #bababa;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

@media (max-width: 800px) {
  .live #live_insideview .live-right ul li .pending::before {
    margin: 0 5px 0 0px;
  }
}

.live #live_insideview .live-right ul li .soldout::before {
  content: 'SOLD OUT';
  color: #ff0000;
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 0px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

@media (max-width: 800px) {
  .live #live_insideview .live-right ul li .soldout::before {
    margin: 0;
    padding: 0;
    margin-right: 5px;
  }
}

.live #live_insideview .live-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  .live #live_insideview .live-right ul li a {
    display: block;
  }
}

.live #live_insideview .live-right .viewmore {
  text-align: right;
}

.live #live_insideview .live-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.live #live_insideview nav {
  margin: 0px;
  padding: 0px;
}

.live-single {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .live-single {
    padding-top: 45px;
  }
}

.live-single #live_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .live-single #live_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.live-single #live_insideview .live-single-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.live-single #live_insideview .live-single-left .live-single-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.live-single #live_insideview .live-single-left .live-single-ttl h2 {
  font-size: 16px;
  font-size: 1.6rem;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-left .live-single-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.live-single #live_insideview .live-single-box .live-li-box {
  margin-bottom: 20px;
  padding-bottom: 0px;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .live-li-box {
    margin-top: 10px;
  }
}

.live-single #live_insideview .live-single-box .live-li-box h2 {
  font-size: 18px;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .live-li-box h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.live-single #live_insideview .live-single-box .live-li-box .pending::before {
  content: '仮確定';
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  background: #bababa;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  width: 80px;
  white-space: nowrap;
}

.live-single #live_insideview .live-single-box .live-li-box .soldout::before {
  content: 'SOLD OUT';
  color: #ff0000;
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.live-single #live_insideview .live-single-box .datevenue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .datevenue {
    display: block;
    margin-bottom: 10px;
  }
}

.live-single #live_insideview .live-single-box .datevenue .date {
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-right: 20px;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .datevenue .date {
    width: 100%;
    margin-bottom: 0px;
  }
}

.live-single #live_insideview .live-single-box .datevenue .venue {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .datevenue .venue {
    width: 100%;
  }
}

.live-single #live_insideview .live-single-box .live-cbox {
  display: block;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .live-cbox {
    display: block;
  }
}

.live-single #live_insideview .live-single-box .time {
  margin-bottom: 10px;
  margin-right: 10px;
}

.live-single #live_insideview .live-single-box .ticket-price {
  margin-bottom: 10px;
}

.live-single #live_insideview .live-single-box .act {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
  font-weight: 700;
  white-space: pre-wrap;
}

.live-single #live_insideview .live-single-box .detail-live {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.live-single #live_insideview .live-single-box .img_area {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.live-single #live_insideview .live-single-box .img_area img {
  width: 100%;
  padding: 10px;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .img_area img {
    padding: 5px;
  }
}

.live-single #live_insideview .live-single-box .playguide {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.live-single #live_insideview .live-single-box .playguide h5 {
  margin-bottom: 10px;
}

.live-single #live_insideview .live-single-box .playguide ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .playguide ul {
    display: block;
  }
}

.live-single #live_insideview .live-single-box .playguide ul li {
  list-style: none;
  margin-right: 15px;
}

.live-single #live_insideview .live-single-box .playguide ul li:last-child {
  margin-right: 0;
}

.live-single #live_insideview .live-single-box .playguide ul li a {
  padding: 5px 8px;
  font-size: 12px;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .playguide ul li a {
    width: 100%;
    display: block;
    text-align: center;
  }
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .playguide ul li {
    margin-bottom: 5px;
    margin-right: 0px;
  }
}

.live-single #live_insideview .live-single-box .web-ticket {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.live-single #live_insideview .live-single-box .web-ticket h5 {
  margin-bottom: 10px;
}

.live-single #live_insideview .live-single-box .web-ticket ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .web-ticket ul {
    display: block;
  }
}

.live-single #live_insideview .live-single-box .web-ticket ul li {
  list-style: none;
  margin-right: 15px;
}

.live-single #live_insideview .live-single-box .web-ticket ul li:last-child {
  margin-right: 0;
}

.live-single #live_insideview .live-single-box .web-ticket ul li a {
  padding: 5px 8px;
  font-size: 12px;
}

@media (max-width: 800px) {
  .live-single #live_insideview .live-single-box .web-ticket ul li a {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.live-single #live_insideview .live-single-box .title {
  margin-bottom: 0px;
  padding: 10px;
}

.live-single #live_insideview .news-single-box {
  margin-bottom: 30px;
}

.live-single .center {
  text-align: center;
}

@media (max-width: 800px) {
  .live-single .center {
    margin-bottom: 10px;
  }
}

.live-single .pageback {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  margin: 24px 0 0 0;
}

@media (max-width: 800px) {
  .live-single .pageback {
    margin: 15px 0 0 0;
    margin-top: 0px !important;
  }
}

.biography {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .biography {
    padding-top: 45px;
  }
}

.biography #bio_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .biography #bio_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.biography #bio_insideview .bio-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.biography #bio_insideview .bio-left .bio-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.biography #bio_insideview .bio-left .bio-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-left .bio-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.biography #bio_insideview .bio-right {
  width: 100%;
}

.biography #bio_insideview .bio-right img {
  width: 100%;
}

.biography #bio_insideview .bio-right .bio-img {
  padding: 10px;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-right .bio-img {
    margin-bottom: 20px;
    padding: 5px;
  }
}

.biography #bio_insideview .bio-right .artist-name {
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-right .artist-name {
    margin-bottom: 20px;
  }
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-right .bio-text {
    margin-bottom: 5px;
  }
}

.biography #bio_insideview .bio-right .bio-member {
  display: block;
  margin-top: 2rem;
}

.biography #bio_insideview .bio-right .bio-member h2 {
  font-size: 38px;
  font-size: 3.8rem;
  margin-bottom: 20px;
  padding: 0 55px;
  text-align: center;
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-right .bio-member h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.biography #bio_insideview .bio-right .bio-member ul {
  list-style: none;
}

.biography #bio_insideview .bio-right .bio-member ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.biography #bio_insideview .bio-right .bio-member ul li .bio-member-img {
  width: 40%;
  padding: 10px;
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-right .bio-member ul li .bio-member-img {
    padding: 5px;
  }
}

.biography #bio_insideview .bio-right .bio-member ul li img {
  width: 100%;
  height: 100%;
}

.biography #bio_insideview .bio-right .bio-member ul li .member-img {
  width: 100%;
}

.biography #bio_insideview .bio-right .bio-member ul li .bio-member-detail {
  width: 59%;
  padding: 1rem;
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-right .bio-member ul li .bio-member-detail {
    padding: 0 1rem;
  }
}

.biography #bio_insideview .bio-right .bio-member ul li .bio-member-detail .member-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 800px) {
  .biography #bio_insideview .bio-right .bio-member ul li .bio-member-detail .member-name {
    font-size: 1.8rem;
  }
}

.biography #bio_insideview .bio-right .viewmore {
  text-align: right;
}

.biography #bio_insideview .bio-right .viewmore .more-text::before {
  content: '';
  display: inline-block;
  left: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000000;
}

.discography {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .discography {
    padding-top: 45px;
  }
}

.discography #disco_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .discography #disco_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.discography #disco_insideview .disco-left {
  width: 100%;
  margin-bottom: 20px;
}

.discography #disco_insideview .disco-left .disco-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.discography #disco_insideview .disco-left .disco-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .discography #disco_insideview .disco-left .disco-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.discography #disco_insideview .disco-right {
  width: 100%;
}

.discography #disco_insideview .disco-right img {
  width: 100%;
  padding: 10px 10px 0px 10px;
}

.discography #disco_insideview .disco-right .disco-list-box ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.discography #disco_insideview .disco-right .disco-list-box ul li {
  list-style: none;
  width: 31.33333%;
  margin: 1%;
}

@media (max-width: 800px) {
  .discography #disco_insideview .disco-right .disco-list-box ul li {
    width: 100%;
    margin: 10px 0px;
  }
}

.discography #disco_insideview .disco-right .disco-list-box ul li .disco-ttlname {
  padding: 10px;
}

.discography #disco_insideview .disco-right .disco-list-box nav {
  margin: 0px;
  padding: 0px;
}

.disco-single {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .disco-single {
    padding-top: 45px;
  }
}

.disco-single #disco_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 800px) {
  .disco-single #disco_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    display: block;
  }
}

.disco-single #disco_insideview .disco-single-left {
  width: 50%;
}

@media (max-width: 800px) {
  .disco-single #disco_insideview .disco-single-left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.disco-single #disco_insideview .disco-single-left .disco-single-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.disco-single #disco_insideview .disco-single-left .disco-single-ttl h2 {
  font-size: 16px;
  font-size: 1.6rem;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

.disco-single #disco_insideview .disco-single-left .img_area {
  width: 100%;
  padding: 10px;
}

@media (max-width: 800px) {
  .disco-single #disco_insideview .disco-single-left .img_area {
    padding: 5px;
  }
}

.disco-single #disco_insideview .disco-single-left .img_area img {
  width: 100%;
  max-width: 700px;
}

.disco-single #disco_insideview .disco-single-box {
  width: 45%;
}

@media (max-width: 800px) {
  .disco-single #disco_insideview .disco-single-box {
    width: 100%;
  }
}

.disco-single #disco_insideview .disco-single-box .disco-li-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.disco-single #disco_insideview .disco-single-box .disco-li-box h2 {
  font-size: 18px;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .disco-single #disco_insideview .disco-single-box .disco-li-box h2 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.disco-single #disco_insideview .disco-single-box .disco-li-box .pending::before {
  content: '仮確定';
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  background: #bababa;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.disco-single #disco_insideview .disco-single-box .release-date-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.disco-single #disco_insideview .disco-single-box .songs {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
  white-space: pre-wrap;
}

.disco-single #disco_insideview .disco-single-box .description {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.disco-single #disco_insideview .disco-single-box .store-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.disco-single #disco_insideview .disco-single-box .store-box .soldout {
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  margin-bottom: 10px;
}

.disco-single #disco_insideview .disco-single-box .store-box .venue_limited {
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  margin-bottom: 10px;
}

.disco-single #disco_insideview .disco-single-box .store-box .disco-store ul {
  list-style: none;
}

.disco-single #disco_insideview .disco-single-box .store-box .disco-store ul li {
  list-style: none;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .disco-single #disco_insideview .disco-single-box .store-box .disco-store ul li {
    margin-bottom: 5px;
  }
}

.disco-single #disco_insideview .disco-single-box .store-box .disco-store ul li a {
  padding: 5px 8px;
  font-size: 12px;
}

@media (max-width: 800px) {
  .disco-single #disco_insideview .disco-single-box .store-box .disco-store ul li a {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.disco-single #disco_insideview .disco-single-box .store-box .disco-store h5 {
  margin-bottom: 10px;
}

.disco-single #disco_insideview .disco-single-box .title {
  margin-bottom: 0px;
}

.disco-single #disco_insideview .news-single-box {
  margin-bottom: 30px;
}

.disco-single .center {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 800px) {
  .disco-single .center {
    margin-bottom: 10px;
  }
}

.disco-single .pageback {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  margin: 24px 0 0 0;
}

@media (max-width: 800px) {
  .disco-single .pageback {
    margin: 0;
    margin-top: 0px !important;
  }
}

.movie {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .movie {
    padding-top: 45px;
  }
}

.movie #movie_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .movie #movie_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.movie #movie_insideview .movie-left {
  width: 100%;
  margin-bottom: 20px;
}

.movie #movie_insideview .movie-left .movie-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.movie #movie_insideview .movie-left .movie-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .movie #movie_insideview .movie-left .movie-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.movie #movie_insideview .movie-right {
  width: 100%;
}

.movie #movie_insideview .movie-right img {
  width: 100%;
  margin-bottom: 10px;
}

.movie #movie_insideview .movie-right .movie-list-box ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.movie #movie_insideview .movie-right .movie-list-box ul li {
  list-style: none;
  width: 48%;
  margin: 1%;
  padding: 10px;
}

@media (max-width: 800px) {
  .movie #movie_insideview .movie-right .movie-list-box ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}

.movie #movie_insideview .movie-right .movie-list-box ul li .youtube {
  position: relative;
  width: 100%;
}

.movie #movie_insideview .movie-right .movie-list-box ul li .youtube iframe {
  top: 0;
  right: 0;
  width: 100% !important;
  height: 250px !important;
}

.movie #movie_insideview nav {
  margin: 0px;
  padding: 0px;
}

.goods {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .goods {
    padding-top: 45px;
  }
}

.goods #goods_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .goods #goods_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.goods #goods_insideview .goods-left {
  width: 100%;
  margin-bottom: 20px;
}

.goods #goods_insideview .goods-left .goods-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.goods #goods_insideview .goods-left .goods-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .goods #goods_insideview .goods-left .goods-left-ttl h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.goods #goods_insideview .goods-right {
  width: 100%;
}

.goods #goods_insideview .goods-right img {
  width: 100%;
  padding: 10px 10px 0px 10px;
}

.goods #goods_insideview .goods-right .goods-list-box ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.goods #goods_insideview .goods-right .goods-list-box ul li {
  list-style: none;
  width: 31.33333%;
  margin: 1%;
}

@media (max-width: 800px) {
  .goods #goods_insideview .goods-right .goods-list-box ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}

.goods #goods_insideview .goods-right .goods-list-box ul li .goods-ttlname {
  padding: 10px;
}

.goods #goods_insideview .goods-right .goods-list-box nav {
  margin: 0px;
  padding: 0px;
}

.goods-single {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .goods-single {
    padding-top: 45px;
  }
}

.goods-single #goods_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 800px) {
  .goods-single #goods_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    display: block;
  }
}

.goods-single #goods_insideview .goods-single-left {
  width: 50%;
}

@media (max-width: 800px) {
  .goods-single #goods_insideview .goods-single-left {
    width: 100%;
  }
}

.goods-single #goods_insideview .goods-single-left .goods-single-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.goods-single #goods_insideview .goods-single-left .goods-single-ttl h2 {
  font-size: 16px;
  font-size: 1.6rem;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

.goods-single #goods_insideview .goods-single-left .img_area {
  width: 100%;
  padding: 10px;
}

@media (max-width: 800px) {
  .goods-single #goods_insideview .goods-single-left .img_area {
    padding: 5px;
  }
}

.goods-single #goods_insideview .goods-single-left .img_area img {
  width: 100%;
  max-width: 700px;
}

.goods-single #goods_insideview .goods-single-box {
  width: 45%;
}

@media (max-width: 800px) {
  .goods-single #goods_insideview .goods-single-box {
    width: 100%;
  }
}

.goods-single #goods_insideview .goods-single-box .goods-li-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.goods-single #goods_insideview .goods-single-box .goods-li-box h2 {
  font-size: 18px;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .goods-single #goods_insideview .goods-single-box .goods-li-box h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.goods-single #goods_insideview .goods-single-box .goods-li-box .pending::before {
  content: '仮確定';
  margin: 0 10px 0 4px;
  z-index: 1;
  padding: 8px;
  background: #bababa;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.goods-single #goods_insideview .goods-single-box .songs {
  margin-top: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
  border-top: solid 1px #d2d2d2;
}

.goods-single #goods_insideview .goods-single-box .price {
  margin-bottom: 15px;
}

.goods-single #goods_insideview .goods-single-box .description {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.goods-single #goods_insideview .goods-single-box .store-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d2d2d2;
}

.goods-single #goods_insideview .goods-single-box .store-box .soldout {
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  margin-bottom: 10px;
}

.goods-single #goods_insideview .goods-single-box .store-box .venue_limited {
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  margin-bottom: 10px;
}

.goods-single #goods_insideview .goods-single-box .store-box .disco-store ul {
  list-style: none;
}

.goods-single #goods_insideview .goods-single-box .store-box .disco-store ul li {
  list-style: none;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .goods-single #goods_insideview .goods-single-box .store-box .disco-store ul li {
    margin-bottom: 5px;
  }
}

.goods-single #goods_insideview .goods-single-box .store-box .disco-store ul a {
  padding: 5px 8px;
  font-size: 12px;
}

@media (max-width: 800px) {
  .goods-single #goods_insideview .goods-single-box .store-box .disco-store ul a {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.goods-single #goods_insideview .goods-single-box .store-box .disco-store h5 {
  margin-bottom: 10px;
}

.goods-single #goods_insideview .goods-single-box .title {
  margin-bottom: 0px;
}

.goods-single #goods_insideview .news-single-box {
  margin-bottom: 30px;
}

.goods-single .center {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 800px) {
  .goods-single .center {
    margin-bottom: 10px;
  }
}

.goods-single .pageback {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  margin: 24px 0 0 0;
}

@media (max-width: 800px) {
  .goods-single .pageback {
    margin: 0;
    margin-top: 0px !important;
  }
}

.stream {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .stream {
    padding-top: 45px;
  }
}

.stream #stream_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .stream #stream_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    display: block;
  }
}

.stream #stream_insideview .stream-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.stream #stream_insideview .stream-left .stream-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.stream #stream_insideview .stream-left .stream-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-left .stream-left-ttl h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.stream #stream_insideview .stream-right {
  width: 100%;
}

.stream #stream_insideview .stream-right img {
  width: 100%;
}

.stream #stream_insideview .stream-right .stream-img {
  padding: 10px;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-right .stream-img {
    padding: 5px;
  }
}

.stream #stream_insideview .stream-right .stream-text {
  margin-bottom: 20px;
}

.stream #stream_insideview .stream-right .next-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-right .next-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.stream #stream_insideview .stream-right .stream-date {
  margin-bottom: 30px;
}

.stream #stream_insideview .stream-right .date-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-right .date-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.stream #stream_insideview .stream-right .stream-date .date-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-right .stream-date .date-ttl {
    margin-bottom: 5px;
  }
}

.stream #stream_insideview .stream-right .stream-date .date-box {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-right .stream-date .date-box {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.stream #stream_insideview .stream-right .movie-widget .youtube {
  position: relative;
  width: 100%;
}

.stream #stream_insideview .stream-right .movie-widget .youtube iframe {
  top: 0;
  right: 0;
  width: 100% !important;
  height: 500px !important;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-right .movie-widget .youtube iframe {
    height: 300px !important;
  }
}

.stream #stream_insideview .stream-right .center {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 800px) {
  .stream #stream_insideview .stream-right .center {
    margin-bottom: 10px;
  }
}

.stream #stream_insideview .stream-right .center .link {
  display: inline-block;
  padding: 15px 50px;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  margin: 24px 0 0 0;
}

.contact {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .contact {
    padding-top: 45px;
  }
}

.contact #contact_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .contact #contact_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.contact #contact_insideview .contact-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.contact #contact_insideview .contact-left .contact-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.contact #contact_insideview .contact-left .contact-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-left .contact-left-ttl h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.contact #contact_insideview .contact-right {
  width: 100%;
}

.contact #contact_insideview .contact-right .caution_always {
  margin: 16px 0 0 0;
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
}

.contact #contact_insideview .contact-right .caution {
  color: #ff1212;
  padding: 6px;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right .caution {
    margin-bottom: 0px;
  }
}

.contact #contact_insideview .contact-right .description {
  white-space: pre-wrap;
}

.contact #contact_insideview .contact-right ul.tableview {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right ul.tableview {
    display: block;
  }
}

.contact #contact_insideview .contact-right ul.tableview li {
  margin: 16px 0 15px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right ul.tableview li {
    width: 100%;
    display: block;
  }
}

.contact #contact_insideview .contact-right ul.tableview li .form-left {
  margin-right: 10px;
  width: 15%;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right ul.tableview li .form-left {
    width: 100%;
    margin-bottom: 10px;
  }
}

.contact #contact_insideview .contact-right ul.tableview li .form-right {
  width: 80%;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right ul.tableview li .form-right {
    width: 100%;
  }
}

.contact #contact_insideview .contact-right ul.tableview li .form-right .ticket-number {
  width: 30% !important;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right ul.tableview li .form-right .ticket-number {
    width: 50% !important;
  }
}

.contact #contact_insideview .contact-right .caution-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact #contact_insideview .contact-right .w20 {
  line-height: 34px;
  width: 20%;
}

.contact #contact_insideview .contact-right .w80 {
  width: 80%;
}

.contact #contact_insideview .contact-right .w100 {
  text-align: center;
  width: 100%;
}

.contact #contact_insideview .contact-right .w100 .style_checkbox {
  display: block;
  position: relative;
  margin: 1em 0;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 35%;
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right .w100 .style_checkbox {
    width: 70%;
    margin-top: 10px;
  }
}

.contact #contact_insideview .contact-right .w100 .style_checkbox input {
  display: none;
}

.contact #contact_insideview .contact-right .w100 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border: solid 1px #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact #contact_insideview .contact-right .w100 .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.contact #contact_insideview .contact-right input,
.contact #contact_insideview .contact-right select,
.contact #contact_insideview .contact-right textarea {
  width: 100%;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.contact #contact_insideview .contact-right .style_checkbox input:checked + .checkmark:after {
  opacity: 1;
}

.contact #contact_insideview .contact-right .style_checkbox input:checked + .checkmark {
  background: #111;
  border-color: #111;
}

.contact #contact_insideview .contact-right input[type='submit'] {
  border: 1px solid #111111;
}

.contact #contact_insideview .contact-right input[type='submit'] {
  border-radius: 4px;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  width: 200px;
  border: 1px solid #111;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .contact #contact_insideview .contact-right input[type='submit'] {
    margin-bottom: 10px;
  }
}

.contact #contact_insideview .contact-right .c-white {
  background-color: #ffffff;
}

.ticket {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .ticket {
    padding-top: 45px;
  }
}

.ticket #ticket_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.ticket #ticket_insideview .ticket-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.ticket #ticket_insideview .ticket-left .ticket-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.ticket #ticket_insideview .ticket-left .ticket-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-left .ticket-left-ttl h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ticket #ticket_insideview .ticket-left .ticket-left-ttl h3 {
  font-size: 22px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-left .ticket-left-ttl h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ticket #ticket_insideview .ticket-right {
  width: 100%;
}

.ticket #ticket_insideview .ticket-right .caution_always {
  margin: 16px 0 0 0;
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
}

.ticket #ticket_insideview .ticket-right .caution {
  color: #ff1212;
  padding: 6px;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .caution {
    margin-bottom: 0px;
  }
}

.ticket #ticket_insideview .ticket-right .description {
  white-space: pre-wrap;
}

.ticket #ticket_insideview .ticket-right ul.tableview {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right ul.tableview {
    display: block;
    margin-top: 20px;
  }
}

.ticket #ticket_insideview .ticket-right ul.tableview li {
  margin: 16px 0 15px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right ul.tableview li {
    width: 100%;
    display: block;
  }
}

.ticket #ticket_insideview .ticket-right ul.tableview li .form-left {
  margin-right: 10px;
  width: 15%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right ul.tableview li .form-left {
    width: 100%;
    margin-bottom: 10px;
  }
}

.ticket #ticket_insideview .ticket-right ul.tableview li .form-right {
  width: 80%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right ul.tableview li .form-right {
    width: 100%;
  }
}

.ticket #ticket_insideview .ticket-right ul.tableview li .form-right .ticket-number {
  width: 30% !important;
  margin-right: 10px;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right ul.tableview li .form-right .ticket-number {
    width: 50% !important;
    margin-right: 0px;
  }
}

.ticket #ticket_insideview .ticket-right .caution-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ticket #ticket_insideview .ticket-right .line-height34 {
  line-height: 34px;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .line-height34 {
    line-height: 14px;
  }
}

.ticket #ticket_insideview .ticket-right .w20 {
  line-height: 34px;
  width: 20%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .w20 {
    line-height: 14px;
    margin-bottom: 10px !important;
  }
}

.ticket #ticket_insideview .ticket-right .w30 {
  width: 30%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .w30 {
    width: 30% !important;
  }
}

.ticket #ticket_insideview .ticket-right .w50 {
  width: 50%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .w50 {
    width: 20% !important;
  }
}

.ticket #ticket_insideview .ticket-right .w80 {
  width: 80%;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .w80 {
    margin-bottom: 20px !important;
    font-weight: 700;
  }
}

.ticket #ticket_insideview .ticket-right .w100 {
  text-align: center;
  width: 100%;
}

.ticket #ticket_insideview .ticket-right .w100 .style_checkbox {
  display: block;
  position: relative;
  margin: 1em 0;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 35%;
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .w100 .style_checkbox {
    width: 70%;
    margin-top: 10px;
  }
}

@media (max-width: 800px) and (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right .w100 .style_checkbox {
    width: 100%;
    margin-top: 30px;
  }
}

.ticket #ticket_insideview .ticket-right .w100 select {
  font-size: 80%;
  line-height: 15px;
}

.ticket #ticket_insideview .ticket-right .w100 [disabled] {
  cursor: default;
}

.ticket #ticket_insideview .ticket-right .w100 .style_checkbox input {
  display: none;
}

.ticket #ticket_insideview .ticket-right .w100 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border: solid 1px #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ticket #ticket_insideview .ticket-right .w100 .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.ticket #ticket_insideview .ticket-right input,
.ticket #ticket_insideview .ticket-right select,
.ticket #ticket_insideview .ticket-right textarea {
  width: 100%;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.ticket #ticket_insideview .ticket-right .style_checkbox input:checked + .checkmark:after {
  opacity: 1;
}

.ticket #ticket_insideview .ticket-right .style_checkbox input:checked + .checkmark {
  background: #111;
  border-color: #111;
}

.ticket #ticket_insideview .ticket-right input[type='submit'] {
  border: 1px solid #111111;
}

.ticket #ticket_insideview .ticket-right input[type='submit'] {
  border-radius: 4px;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  width: 200px;
  border: 1px solid #111;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .ticket #ticket_insideview .ticket-right input[type='submit'] {
    margin-bottom: 10px;
  }
}

.ticket #ticket_insideview .ticket-right .c-white {
  background-color: #ffffff;
}

.ticket_done {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .ticket_done {
    padding-top: 45px;
  }
}

.ticket_done #ticket_done_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.ticket_done #ticket_done_insideview .ticket_done-left .ticket_done-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.ticket_done #ticket_done_insideview .ticket_done-left .ticket_done-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-left .ticket_done-left-ttl h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-left .ticket_done-left-ttl h3 {
  font-size: 22px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-left .ticket_done-left-ttl h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right {
  width: 100%;
  text-align: center;
}

.ticket_done #ticket_done_insideview .ticket_done-right .caution_always {
  margin: 16px 0 0 0;
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
}

.ticket_done #ticket_done_insideview .ticket_done-right .caution {
  margin: 16px 0 0 0;
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .caution {
    margin-bottom: 10px;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right ul.tableview {
  list-style: none;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 60%;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right ul.tableview {
    display: block;
    margin-top: 20px;
    width: 100%;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li {
  margin: 16px 0 15px 0;
  width: 100%;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li {
    width: 100%;
    display: block;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li .form-left {
  margin-right: 10px;
  width: 100%;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li .form-left {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li .form-right {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li .form-right {
    width: 100%;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li .form-right .ticket-number {
  width: 30% !important;
  margin-right: 10px;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li .form-right .ticket-number {
    width: 50% !important;
    margin-right: 0px;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right ul.tableview li .done-text {
  margin: 30px 0px;
}

.ticket_done #ticket_done_insideview .ticket_done-right .line-height34 {
  line-height: 34px;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .line-height34 {
    line-height: 14px;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right .w20 {
  line-height: 34px;
  width: 20%;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .w20 {
    line-height: 14px;
    margin-bottom: 10px !important;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right .w30 {
  width: 30%;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .w30 {
    width: 30% !important;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right .w50 {
  width: 50%;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .w50 {
    width: 20% !important;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right .w80 {
  width: 80%;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .w80 {
    margin-bottom: 20px !important;
    font-weight: 700;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right .w100 {
  text-align: center;
  width: 100%;
}

.ticket_done #ticket_done_insideview .ticket_done-right .w100 .style_checkbox {
  display: block;
  position: relative;
  margin: 1em 0;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 35%;
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .w100 .style_checkbox {
    width: 70%;
    margin-top: 10px;
  }
}

@media (max-width: 800px) and (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right .w100 .style_checkbox {
    width: 100%;
    margin-top: 30px;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right .w100 select {
  font-size: 80%;
  line-height: 15px;
}

.ticket_done #ticket_done_insideview .ticket_done-right .w100 [disabled] {
  cursor: default;
}

.ticket_done #ticket_done_insideview .ticket_done-right .w100 .style_checkbox input {
  display: none;
}

.ticket_done #ticket_done_insideview .ticket_done-right .w100 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border: solid 1px #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ticket_done #ticket_done_insideview .ticket_done-right .w100 .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.ticket_done #ticket_done_insideview .ticket_done-right input,
.ticket_done #ticket_done_insideview .ticket_done-right select,
.ticket_done #ticket_done_insideview .ticket_done-right textarea {
  width: 100%;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.ticket_done #ticket_done_insideview .ticket_done-right .style_checkbox input:checked + .checkmark:after {
  opacity: 1;
}

.ticket_done #ticket_done_insideview .ticket_done-right .style_checkbox input:checked + .checkmark {
  background: #111;
  border-color: #111;
}

.ticket_done #ticket_done_insideview .ticket_done-right input[type='submit'] {
  border: 1px solid #111111;
}

.ticket_done #ticket_done_insideview .ticket_done-right input[type='submit'] {
  border-radius: 4px;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  width: 200px;
  border: 1px solid #111;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .ticket_done #ticket_done_insideview .ticket_done-right input[type='submit'] {
    margin-bottom: 10px;
  }
}

.ticket_done #ticket_done_insideview .ticket_done-right .c-white {
  background-color: #ffffff;
}

.notfound {
  padding-top: 100px;
}

@media (max-width: 800px) {
  .notfound {
    padding-top: 45px;
  }
}

.notfound #notfound_insideview {
  max-width: 1000px;
  width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview {
    margin-top: 15px;
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

.notfound #notfound_insideview .notfound-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.notfound #notfound_insideview .notfound-left .notfound-left-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.notfound #notfound_insideview .notfound-left .notfound-left-ttl h2 {
  font-size: 38px;
  font-size: 3.8rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-left .notfound-left-ttl h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.notfound #notfound_insideview .notfound-left .notfound-left-ttl h3 {
  font-size: 22px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-left .notfound-left-ttl h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.notfound #notfound_insideview .notfound-right {
  width: 100%;
  text-align: center;
}

.notfound #notfound_insideview .notfound-right .caution_always {
  margin: 16px 0 0 0;
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
}

.notfound #notfound_insideview .notfound-right .caution {
  margin: 16px 0 0 0;
  color: #ff1212;
  border: 2px solid;
  padding: 4px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  font-size: 80%;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .caution {
    margin-bottom: 10px;
  }
}

.notfound #notfound_insideview .notfound-right ul.tableview {
  list-style: none;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 60%;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right ul.tableview {
    display: block;
    margin-top: 20px;
    width: 100%;
  }
}

.notfound #notfound_insideview .notfound-right ul.tableview li {
  margin: 16px 0 15px 0;
  width: 100%;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right ul.tableview li {
    width: 100%;
    display: block;
  }
}

.notfound #notfound_insideview .notfound-right ul.tableview li .form-left {
  margin-right: 10px;
  width: 100%;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right ul.tableview li .form-left {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.notfound #notfound_insideview .notfound-right ul.tableview li .form-right {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right ul.tableview li .form-right {
    width: 100%;
  }
}

.notfound #notfound_insideview .notfound-right ul.tableview li .form-right .ticket-number {
  width: 30% !important;
  margin-right: 10px;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right ul.tableview li .form-right .ticket-number {
    width: 50% !important;
    margin-right: 0px;
  }
}

.notfound #notfound_insideview .notfound-right ul.tableview li .done-text {
  margin: 30px 0px;
}

.notfound #notfound_insideview .notfound-right .line-height34 {
  line-height: 34px;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .line-height34 {
    line-height: 14px;
  }
}

.notfound #notfound_insideview .notfound-right .w20 {
  line-height: 34px;
  width: 20%;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .w20 {
    line-height: 14px;
    margin-bottom: 10px !important;
  }
}

.notfound #notfound_insideview .notfound-right .w30 {
  width: 30%;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .w30 {
    width: 30% !important;
  }
}

.notfound #notfound_insideview .notfound-right .w50 {
  width: 50%;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .w50 {
    width: 20% !important;
  }
}

.notfound #notfound_insideview .notfound-right .w80 {
  width: 80%;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .w80 {
    margin-bottom: 20px !important;
    font-weight: 700;
  }
}

.notfound #notfound_insideview .notfound-right .w100 {
  text-align: center;
  width: 100%;
}

.notfound #notfound_insideview .notfound-right .w100 .style_checkbox {
  display: block;
  position: relative;
  margin: 1em 0;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 35%;
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .w100 .style_checkbox {
    width: 70%;
    margin-top: 10px;
  }
}

@media (max-width: 800px) and (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right .w100 .style_checkbox {
    width: 100%;
    margin-top: 30px;
  }
}

.notfound #notfound_insideview .notfound-right .w100 select {
  font-size: 80%;
  line-height: 15px;
}

.notfound #notfound_insideview .notfound-right .w100 [disabled] {
  cursor: default;
}

.notfound #notfound_insideview .notfound-right .w100 .style_checkbox input {
  display: none;
}

.notfound #notfound_insideview .notfound-right .w100 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border: solid 1px #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.notfound #notfound_insideview .notfound-right .w100 .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.notfound #notfound_insideview .notfound-right input,
.notfound #notfound_insideview .notfound-right select,
.notfound #notfound_insideview .notfound-right textarea {
  width: 100%;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.notfound #notfound_insideview .notfound-right .style_checkbox input:checked + .checkmark:after {
  opacity: 1;
}

.notfound #notfound_insideview .notfound-right .style_checkbox input:checked + .checkmark {
  background: #111;
  border-color: #111;
}

.notfound #notfound_insideview .notfound-right input[type='submit'] {
  border: 1px solid #111111;
}

.notfound #notfound_insideview .notfound-right input[type='submit'] {
  border-radius: 4px;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  width: 200px;
  border: 1px solid #111;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .notfound #notfound_insideview .notfound-right input[type='submit'] {
    margin-bottom: 10px;
  }
}

.notfound #notfound_insideview .notfound-right .c-white {
  background-color: #ffffff;
}

.category {
  width: 100%;
  margin-top: 20px;
}

.category ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category ul li {
  list-style: none;
  margin: 10px;
}

@media (max-width: 800px) {
  .category ul li {
    margin: 5px 10px;
  }
}

.choose {
  border-bottom: 1px solid #111111;
}

footer .footer-menu {
  max-width: 1100px;
  padding: 24px 0 40px 0;
  margin: 0 auto;
}

footer .footer-menu .G-adsense2 {
  padding: 0;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: center;
}

@media (max-width: 800px) {
  footer .footer-menu .G-adsense2 {
    margin-bottom: 10px;
  }
}

@media (max-width: 800px) {
  footer .footer-menu .G-adsense2 img {
    width: 100%;
  }
}

footer .footer-menu .player {
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  footer .footer-menu .player {
    width: 95%;
    margin: 0 auto;
  }
}

footer .footer-menu .player ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 800px) {
  footer .footer-menu .player ul {
    display: block;
  }
}

footer .footer-menu .player ul li {
  width: 50%;
  padding: 10px;
}

@media (max-width: 800px) {
  footer .footer-menu .player ul li {
    width: 100%;
  }
}

footer .footer-menu .banner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

@media (max-width: 800px) {
  footer .footer-menu .banner ul {
    display: block;
    padding: 10px;
    width: 95%;
    margin: 0 auto;
  }
}

footer .footer-menu .banner ul li {
  list-style: none;
  margin: 0px 0px 10px 10px;
}

@media (max-width: 800px) {
  footer .footer-menu .banner ul li {
    margin: 0 0 10px 0;
  }
}

footer .footer-menu .banner ul li img {
  height: 70px;
}

@media (max-width: 800px) {
  footer .footer-menu .banner ul li img {
    width: 100%;
    height: 100%;
  }
}

footer .footer-menu .social {
  margin-bottom: 20px;
}

footer .footer-menu .social ul {
  width: 40%;
  margin: 24px auto 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

@media (max-width: 800px) {
  footer .footer-menu .social ul {
    width: 90%;
  }
}

footer .footer-menu .social ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
}

footer p {
  font-size: 80%;
  text-align: center;
  margin: 8px 0 0 0;
}

.MuiSvgIcon-root {
  width: 2em !important;
  height: 2em !important;
}

@media (max-width: 800px) {
  .MuiSvgIcon-root {
    width: 1.5em !important;
    height: 1.5em !important;
  }
}

.social li a svg {
  width: 2em !important;
  height: 2em !important;
}

@media (max-width: 800px) {
  .social li a svg {
    width: 2em !important;
    height: 100% !important;
    font-size: 12px !important;
  }
}

.MuiPagination-ul li {
  width: auto !important;
  margin: 0px !important;
  padding: 0px !important;
  border: none !important;
}
/*# sourceMappingURL=style.css.map */