@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/* 2.3 form
------------------------------ */
.form {
  width: 100%;
  margin: 0 auto;
}
.form dt {
  margin: 3em 0 0.75em;
  font-size: 15px;
}
.form dd {
  margin: 0 0 1em;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}

/* icon--required */
.icon--required {
  position: relative;
}
.icon--required:before {
  position: absolute;
  content: "必須";
  color: #000000;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  padding: 2px 4px;
  margin-left: 4px;
  position: relative;
  background: #c31515;
  border-radius: 2px;
  color: #ffffff;
}

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
input[type=time],
input[type=date] {
  font-family: Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  background: #fff;
  color: #000;
}
@media screen and (min-width: 961px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=time],
  input[type=date] {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=time],
  input[type=date] {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=time]:focus,
input[type=date]:focus {
  border-color: inherit;
}
input[type=text].form__error,
input[type=tel].form__error,
input[type=email].form__error,
input[type=password].form__error,
input[type=number].form__error,
input[type=time].form__error,
input[type=date].form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
input[type=text].form__error:focus,
input[type=tel].form__error:focus,
input[type=email].form__error:focus,
input[type=password].form__error:focus,
input[type=number].form__error:focus,
input[type=time].form__error:focus,
input[type=date].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type=text][disabled],
input[type=tel][disabled],
input[type=email][disabled],
input[type=password][disabled],
input[type=number][disabled],
input[type=time][disabled],
input[type=date][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

.input--half {
  width: 50% !important;
}

.input--quarter {
  width: 25% !important;
}

/* textarea */
textarea {
  font-family: Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  height: auto;
  line-height: 1.6;
  border: none;
}
@media screen and (min-width: 961px) {
  textarea {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  textarea {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* select */
.form__select {
  display: inline-block;
  position: relative;
}
.form__select::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #000000;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
.form__select:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  padding-right: 1.5em;
  border: 1px solid #000;
}
@media screen and (min-width: 961px) {
  .form__select select {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .form__select select {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* checkbox */
.form__checkbox label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type=checkbox],
.form__checkbox input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #c31515;
}

/* radio */
.form__radio label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type=checkbox],
.form__radio input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #c31515;
}

/* toggle button */
.form__toggle label p {
  display: inline-block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type=checkbox],
.form__toggle input[type=radio] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #c31515;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}

/* horizontal */
.form--horizontal li {
  display: inline-block;
}
.form--horizontal li .form__selectbox {
  display: inline-block !important;
}

.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}

/* ==============================================================
*  contents
* ============================================================ */
/* ==============================================================
*  base
* ============================================================ */
/* common.scss
============================== */
html,
body {
  height: 100%;
  width: 100%;
  background: #000000;
  color: #ffffff;
  padding: 0;
  font-family: Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  font-kerning: normal;
  overflow-x: visible !important;
  scroll-behavior: smooth;
}
@media screen and (min-width: 961px) {
  html,
  body {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  html,
  body {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}

body {
  -webkit-text-size-adjust: 100%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* For modern browsers */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}

.wrap {
  position: relative;
  min-height: 100%;
}

.inner {
  min-height: 1px;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .inner {
    width: 960px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .inner {
    width: auto;
  }
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.svg-parts,
.svg-symbol {
  display: none;
}

#noscriptError {
  width: 100%;
  min-width: 960px;
  background: #f6f6f6;
  position: absolute;
  top: 0;
  z-index: 1000;
}
#noscriptError p {
  padding: 10px 0;
  text-align: center;
}

.section-tit {
  font-family: anton, sans-serif;
  font-weight: 400;
}

.txt {
  margin: 0 0 1em;
}

.txt--sub,
.sub-txt-list {
  font-size: 0.85em;
  line-height: 1.4em;
}

.copyright {
  color: #686868;
}

.block--pager {
  font-family: anton, sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.detail__btn,
.list__more {
  font-family: anton, sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.no-data {
  text-align: center;
  font-family: anton, sans-serif;
  font-weight: 400;
}

.lead {
  margin-bottom: 30px;
  font-weight: 400;
}

.header {
  background: #fee600;
  height: 90px;
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 960px;
  z-index: 100;
}
.header h1 {
  width: 366px;
  float: left;
  margin: 24px 0 0;
}
.header h1 img {
  width: 100%;
  vertical-align: middle;
}

.nav {
  position: fixed;
  top: 90px;
  background: #231815;
  width: 100%;
  min-width: 960px;
  height: 44px;
  z-index: 100;
}
.nav li {
  font-family: anton, sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0 22px 0 0;
  height: 44px;
  line-height: 44px;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 28px 28px;
}
@media screen and (min-width: 961px) {
  .nav li {
    float: left;
  }
}
.nav li.navTicketInfo {
  font-size: 16px;
  padding: 0 0 0 34px;
  background-image: url(/static/livemasters/common/icon_ticketInfo.png);
}
.nav li.navArtists {
  font-size: 16px;
  padding: 0 0 0 34px;
  background-image: url(/static/livemasters/common/icon_artists.png);
}
.nav li.navLiveSchedule {
  font-size: 16px;
  padding: 0 0 0 34px;
  background-image: url(/static/livemasters/common/icon_liveSchedule.png);
}
.nav li.navNews {
  font-size: 16px;
  padding: 0 10px 0 34px;
  background-image: url(/static/livemasters/common/icon_news.png);
}
.nav li.navTwitter {
  width: 16px;
  margin: 0;
}
.nav li.navTwitter .fa.fa-twitter {
  color: #55ACED;
  font-size: 25px;
  vertical-align: middle;
}

.footer {
  width: 100%;
  padding: 0;
}
.footer .nav--support {
  position: inherit;
  background: none;
}
.footer .nav--support .tit--support {
  display: inline-block;
  font-family: anton, sans-serif;
  font-weight: 400;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer .nav--support .tit--support::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #ffffff;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .footer .nav--support .tit--support {
    font-size: 12px;
  }
}

#sb-site {
  position: relative;
  padding: 50px 0 0;
  min-height: 100%;
  overflow: hidden;
}

.contents {
  border-bottom: 1px solid #474747;
  position: relative;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .contents {
    min-width: 100%;
    padding: 10px 0 40px;
    margin: 0 0 60px;
  }
  .contents.no-border {
    border: none;
    padding: 30px 0 0;
    margin: 0 0 30px;
  }
}

.slick-slide a {
  display: block;
}
.slick-slide a img {
  width: 100%;
  display: block;
}

.slick-prev,
.slick-next {
  z-index: 1;
}
@media screen and (min-width: 961px) {
  .slick-prev,
  .slick-next {
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .slick-prev,
  .slick-next {
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
  }
}

.slick-prev {
  background-image: url(/static/livemasters/common/btnPrev.png);
  left: 0;
}
.slick-prev:hover {
  background: url(/static/livemasters/common/btnPrev_on.png);
}

.slick-next {
  background-image: url(/static/livemasters/common/btnNext.png);
  right: 0;
}
.slick-next:hover {
  background: url(/static/livemasters/common/btnNext_on.png);
}

.slick-prev::before,
.slick-next::before {
  content: none;
}

.slick-num {
  position: absolute;
  top: 20px;
  left: 50%;
  font-family: "Muli", sans-serif;
  font-size: 34px;
  font-weight: bold;
  color: #ffffff;
  z-index: 50;
  margin: 0 0 0 400px;
  width: 62px;
  height: 40px;
  line-height: 1em;
  text-align: center;
}
.slick-num .now {
  font-size: 36px;
  height: 36px;
  line-height: 1em;
  position: absolute;
  left: 0;
  bottom: 0;
}
.slick-num .total {
  font-size: 24px;
  position: absolute;
  left: 38px;
  bottom: 2px;
  height: 24px;
  line-height: 1em;
}

.swiper-container .swiper-wrapper {
  height: inherit;
}
.swiper-container .swiper-wrapper .swiper-slide a img {
  width: 100%;
  display: block;
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  z-index: 1;
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
}
.swiper-container .swiper-button-prev {
  background-image: url(/static/livemasters/common/btnPrev.png);
}
.swiper-container .swiper-button-prev:hover {
  background-image: url(/static/livemasters/common/btnPrev_on.png);
}
.swiper-container .swiper-button-next {
  background-image: url(/static/livemasters/common/btnNext.png);
}
.swiper-container .swiper-button-next:hover {
  background-image: url(/static/livemasters/common/btnNext_on.png);
}

.swiper-count {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  font-family: muli, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  z-index: 50;
  margin: 0 0 0 400px;
  width: 32px;
  height: 20px;
  line-height: 1em;
  text-align: center;
}
.swiper-count .nowCount {
  font-size: 18px;
  height: 20px;
  line-height: 1em;
  position: absolute;
  left: 0;
  bottom: 0;
}
.swiper-count .totalCount {
  font-size: 12px;
  position: absolute;
  left: 20px;
  bottom: 0;
  height: 12px;
  line-height: 1em;
}

.btn .btn--main {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: #231f20;
  box-sizing: content-box;
  font-weight: 400;
  color: #ffffff;
}
.btn .btn--main:hover {
  background: #fee600;
  color: #000000;
}
.btn .btn--sub {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  box-sizing: content-box;
  font-weight: 400;
  color: #ffffff;
  font-size: 1em;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn .btn--sub:hover {
  background: #fee600;
  color: #000000;
}
.btn .btn--sub:hover {
  background: #fee600;
  color: #000000;
  border: none;
}

.ellipsis {
  color: #fee600;
}

.more {
  position: absolute;
  left: 50%;
  z-index: 1;
  background: url(/static/livemasters/common/bg_more.png);
}
@media screen and (min-width: 961px) {
  .more {
    margin: 0 0 0 -45px;
    bottom: -45px;
    width: 90px;
    height: 90px;
    background-size: 90px 90px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .more {
    width: 70px;
    height: 70px;
    bottom: -35px;
    margin: 0 0 0 -35px;
    background-size: 70px 70px;
  }
}
.more a {
  text-align: center;
  font-family: anton, sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 961px) {
  .more a {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
  .more a:hover {
    color: #fee600;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .more a {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 14px;
  }
}
.more:hover {
  background: url(/static/livemasters/common/bg_more_on.png);
}
@media screen and (min-width: 961px) {
  .more:hover {
    background-size: 90px 90px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .more:hover {
    background-size: 70px 70px;
  }
}

.pageback {
  min-width: 960px;
  margin: 60px 0 0;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pageback {
    min-width: 100%;
    margin: 30px 0 0;
  }
}
.pageback .btnBack {
  width: 370px;
  height: 60px;
  margin: 20px auto;
  line-height: 60px;
  color: #ffffff;
  background: #252525;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pageback .btnBack {
    width: 185px;
    height: 40px;
    margin: 0px auto;
    line-height: 40px;
    font-size: 12px;
  }
}
.pageback .btnBack:hover {
  background: #fee600;
  color: #000000;
}

.pagetop {
  min-width: 960px;
  padding: 20px 0 10px;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pagetop {
    min-width: 100%;
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 100;
    padding: 0;
  }
}
.pagetop p {
  width: 50px;
  height: 50px;
  float: right;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pagetop p {
    width: 38px;
    height: 38px;
    margin: 0px 10px 0 0;
  }
}
.pagetop p img {
  width: 100%;
}

.block--pager {
  text-align: center;
  letter-spacing: 0.025em;
}
.block--pager li {
  display: inline-block;
  position: relative;
}
.block--pager li.pager-link--prev {
  float: right;
}
.block--pager li.pager-link--prev a {
  padding: 0 12px 0 0;
}
.block--pager li.pager-link--prev a::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border: 1px solid #ffffff;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
.block--pager li.pager-link--prev a:after {
  border-width: 2px;
  right: 2px;
  top: 6px;
  position: absolute;
}
.block--pager li.pager-link--next {
  float: left;
}
.block--pager li.pager-link--next a {
  padding: 0 0 0 14px;
}
.block--pager li.pager-link--next a::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border: 1px solid #ffffff;
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  vertical-align: middle;
}
.block--pager li.pager-link--next a:after {
  border-width: 2px;
  left: 2px;
  top: 5px;
  position: absolute;
}

.block--category .list--sort li {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  font-size: 0.85em;
}
.block--category .list--sort li input[type=checkbox] {
  display: none;
}
.block--category .list--sort li input[type=checkbox]:not(:checked) + .category {
  background: rgba(113, 113, 113, 0.22);
  color: #ffffff;
}
.block--category .list--sort li span {
  font-family: anton, sans-serif;
  font-weight: 400;
}
.block--category .list--sort li.current span {
  background: #fee600;
  color: #ffffff;
}
.block--category .list--sort li:hover a span {
  color: #fee600;
}
.block--category .list--sort li:not(.current) span {
  background: #eee;
  color: #ffffff;
}

.block--tab .tab {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (min-width: 961px) {
  .block--tab .tab {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--tab .tab {
    justify-content: center;
  }
}
.block--tab .tab li {
  text-align: center;
  display: inline-block;
}
.block--tab .tab li a {
  display: block;
  height: 100%;
  background: #231f20;
  font-weight: bold;
}
@media screen and (min-width: 961px) {
  .block--tab .tab li a {
    line-height: 68px;
    font-size: 18px;
    background-position: center 52px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--tab .tab li a {
    font-size: 12px;
    line-height: 44px;
    background-position: center 36px;
    background-size: 25px 3px;
  }
}
.block--tab .tab li a:hover, .block--tab .tab li a.selected {
  background-color: #fee600;
  background-image: url(/static/livemasters/common/line_black.png);
  background-repeat: no-repeat;
  color: #231f20;
}
@media screen and (min-width: 961px) {
  .block--tab .tab li {
    width: 49%;
  }
  .block--tab .tab li:last-of-type {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--tab .tab li {
    width: 100%;
  }
}

.block--month .list--month {
  position: relative;
}
@media screen and (min-width: 961px) {
  .block--month .list--month li {
    width: 280px;
    height: 256px;
  }
  .block--month .list--month li a {
    line-height: 60px;
  }
  .block--month .list--month li a span.num {
    font-size: 70px;
  }
  .block--month .list--month li a span.month {
    font-size: 42px;
  }
  .block--month .list--month li a span.year {
    font-size: 30px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--month .list--month li {
    width: 90px;
    height: 90px;
  }
  .block--month .list--month li a {
    background-size: 90px 90px !important;
    line-height: 30px;
  }
  .block--month .list--month li a span {
    line-height: 1.2;
  }
  .block--month .list--month li a span.num {
    font-size: 30px;
  }
  .block--month .list--month li a span.month {
    font-size: 14px;
  }
  .block--month .list--month li a span.year {
    font-size: 10px;
  }
}
.block--month .list--month li a {
  font-family: anton, sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  color: #fee600;
  margin: 0;
}
.block--month .list--month li a span {
  display: block;
}

.block--share {
  margin: 0 2.75%;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--share li {
    margin: 0 0 0 10px;
  }
  .block--share li i {
    font-size: 25px;
  }
}
.block--share li {
  float: right;
}

input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

.ph {
  position: relative;
  margin-bottom: 30px;
  line-height: 0;
}
.ph .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumb {
  position: relative;
}
.thumb .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video,
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 40px auto;
}
.video iframe,
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer,
.youtube .jstream-eqPlayer {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer *,
.youtube .jstream-eqPlayer * {
  background-size: auto;
}
.video .jstream-eqPlayer * .eq-center-icon-play,
.youtube .jstream-eqPlayer * .eq-center-icon-play {
  color: transparent;
}
.video .eq-icon-play,
.video .eq-icon-sound,
.youtube .eq-icon-play,
.youtube .eq-icon-sound {
  color: transparent;
}

.block--player {
  height: 0;
  padding-top: 56.25%;
  background: #000000;
  line-height: 0;
  position: relative;
}
.block--player video,
.block--player img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.block--player .ulizahtml5 {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.page--movie.new-movie.movie-category-list .section--list {
  border: none;
  padding: 30px 0 0;
  margin: 0 2.75% 30px;
}
.page--movie.new-movie.movie-category-list .section--list .section-tit {
  margin-bottom: 30px;
}
.page--movie.new-movie.movie-category-list .section--list .list--contents {
  gap: initial;
  justify-content: space-between;
}
.page--movie.new-movie.movie-category-list .section--list .list--contents li {
  width: 48.625%;
  margin-bottom: 20px;
}
.page--movie.new-movie.movie-category-list .section--list .list--contents li .thumb {
  margin: 0 auto 10px;
}
.page--movie.new-movie.movie-category-list .section--list .list--contents li .list__txt .date {
  font-size: 10px;
  margin-bottom: 5px;
  opacity: 1;
  line-height: 1;
}
.page--movie.new-movie.movie-category-list .section--list .block--pager li.pager__item--current {
  padding: 0 0.6em;
}

/* new--movie detail */
.page--movie.new-movie.page-movie-detail .section--detail {
  border: none;
  padding: 30px 0 0;
  margin: 0 2.75% 30px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 auto 20px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .block--player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 auto;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie.device--ios .vjs-has-started .vjs-play-control,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie.device--ios .vjs-has-started .vjs-control-bar,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie.device--ios .vjs-paused .vjs-play-control,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie.device--ios .vjs-paused .vjs-control-bar,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie.device--ios .vjs-ended .vjs-play-control,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie.device--ios .vjs-ended .vjs-control-bar {
  display: none;
}
.page--movie.new-movie.page-movie-detail .section--detail .block--tit {
  padding: 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .block--tit .date {
  margin: 0 0 10px;
  position: relative;
  opacity: 1;
  font-size: 12px;
  line-height: 1;
}
.page--movie.new-movie.page-movie-detail .section--detail .block--tit .tit {
  word-break: break-all;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 30px;
}
.page--movie.new-movie.page-movie-detail .section--detail .list--contents {
  padding: 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab {
  width: 100%;
  margin: 0 0 15px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab .tab__list {
  width: 100%;
  padding: 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab .tab__list:after {
  display: none !important;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab .tab__list .item__ico img {
  display: none;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab .tab__list .item__ico span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--more_movies {
  padding-top: 0;
  background: rgba(254, 254, 254, 0);
  border-top: 1px solid rgba(255, 255, 255, 0.1450980392);
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1450980392);
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a {
  padding: 15px 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .list__txt .date {
  font-size: 10px;
  margin-bottom: 5px;
  opacity: 1;
  line-height: 1;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .list__txt .tit {
  font-size: 14px;
  margin: 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
  margin-top: -0.85em;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .video-js .vjs-play-control.vjs-paused,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .video-js .vjs-play-control.vjs-playing {
  border: none;
  outline: none;
  box-shadow: none;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .video-js .vjs-play-control.vjs-paused span:before,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .video-js .vjs-play-control.vjs-playing span:before {
  width: 1.6em;
  height: 1.6em;
  margin-top: 0.25em;
  margin-left: -0.25em;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-fullscreen.video-js .vjs-play-control.vjs-paused,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-fullscreen.video-js .vjs-play-control.vjs-playing {
  border: none;
  outline: none;
  box-shadow: none;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-fullscreen.video-js .vjs-play-control.vjs-paused span,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-fullscreen.video-js .vjs-play-control.vjs-playing span {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-fullscreen.video-js .vjs-play-control.vjs-paused span:before,
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-fullscreen.video-js .vjs-play-control.vjs-playing span:before {
  width: 1.6em;
  height: 1.6em;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 50.5%;
  left: 50%;
  translate: -50% -50%;
}
.page--movie.new-movie.page-movie-detail .detail__btn {
  padding-top: 0;
  padding-bottom: 0;
}

#swipebox-slider .slide-loading {
  background-image: none !important;
}
#swipebox-slider .slide img {
  max-height: 80%;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.2;
}

#swipebox-action #swipebox-close {
  top: 10px;
  background: none;
}

#swipebox-action #swipebox-close::before,
#swipebox-action #swipebox-close::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 20px;
  transition: all 0.6s ease-out 0s;
}

#swipebox-action #swipebox-close::before {
  transform: rotate(45deg);
}

#swipebox-action #swipebox-close::after {
  transform: rotate(-45deg);
}

#swipebox-action #swipebox-prev,
#swipebox-action #swipebox-next {
  background: none;
  color: #ffffff;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

#swipebox-action #swipebox-prev {
  left: 3%;
}

#swipebox-action #swipebox-prev::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid;
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  vertical-align: middle;
  pointer-events: none;
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-left: 1em;
  margin-top: 1em;
}

#swipebox-action #swipebox-next {
  right: 3%;
}

#swipebox-action #swipebox-next::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  border: 1px solid;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  pointer-events: none;
  margin-top: -0.25em;
  margin-right: 0.25em;
  margin-top: 1em;
}

#swipebox-caption {
  width: 100%;
  max-width: 800px;
  padding: 0 8%;
  text-align: center;
  position: absolute;
  bottom: 5%;
  left: 50%;
  color: #ffffff;
  transform: translateX(-50%);
  font-size: 12px;
}

.page--blog.page--detail .section--detail .block--player .vjs-tech.video {
  margin: 0 auto;
}
.page--blog.page--detail .section--detail .block--player .vjs-control-bar * {
  font-family: VideoJS;
  line-height: 3em;
}
.page--blog.page--detail .section--detail .block--player .vjs-play-progress:before {
  top: -1.5em;
}
.page--blog.page--detail .section--detail .block--player .vjs-control {
  width: 3em;
}
.page--blog.page--detail .section--detail .block--player .vjs-time-control {
  min-width: 2em;
  width: auto;
}

/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  #sb-site {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    padding: 10px 0 0;
  }
  a.selected {
    color: #fee600;
  }
  .menuOpen .sb-right {
    margin-left: auto;
    transform: translateX(0%);
  }
  .menuOpen #sb-site {
    transform: translateX(-70%);
  }
  .btn.up {
    font-weight: bold;
    font-size: 14px;
    color: #000000;
    margin: 0 0 20px;
    padding: 0 10px;
    position: relative;
    background: none;
  }
  .btn.up a {
    background: #fee600;
    color: #000000;
    font-weight: bold;
  }
  /*ヘッダー
  ------------------------------ */
  .header {
    min-width: 100%;
    height: 50px;
  }
  .header h1 {
    width: 200px;
    margin: 12px 0 0 10px;
  }
  .header .spNavi {
    float: right;
    color: #000000;
    text-align: center;
    margin: 8px 10px 0 0;
    width: 30px;
    font-size: 10px;
    font-family: muli, sans-serif;
    font-weight: 700;
  }
  .header .spNavi span {
    display: block;
    height: 19px;
    width: 22px;
    margin: 0 auto;
    color: transparent;
  }
  .header .spNavi img {
    width: 100%;
  }
  .topNavi {
    background: #000;
    height: 55px;
  }
  .topNavi ul li {
    width: 25%;
    height: 55px;
    float: left;
    background-size: 16px 16px;
    background-position: center 30px;
  }
  .topNavi ul li a {
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1em;
    height: 35px;
    width: inherit;
    display: table-cell;
    vertical-align: middle;
  }
  .topNavi ul li.navTicketInfo {
    background-image: url(/static/livemasters/common/icon_ticketInfo.png);
  }
  .topNavi ul li.navArtists {
    background-image: url(/static/livemasters/common/icon_artists.png);
  }
  .topNavi ul li.navLiveSchedule {
    background-image: url(/static/livemasters/common/icon_liveSchedule.png);
  }
  .topNavi ul li.navLiveSchedule a {
    padding-bottom: 1px;
  }
  .topNavi ul li.navNews {
    background-image: url(/static/livemasters/common/icon_news.png);
  }
  .sb-slidebar {
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    position: fixed;
    top: 50px;
    right: 0;
    background: #171717;
    padding: 0 0 50px;
    overflow-y: scroll;
  }
  .sb-slidebar .inner {
    height: auto;
    min-width: 100%;
    position: inherit;
    top: 0;
    left: 0;
    font-family: anton, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
  }
  .sb-slidebar .inner .official-nav, .sb-slidebar .inner .fc-nav {
    padding: 0 4% 0;
  }
  .sb-slidebar .inner .official-nav li, .sb-slidebar .inner .fc-nav li {
    display: inline-block;
    width: 48%;
    margin: 0 2% 10px 0;
    height: auto;
    line-height: 1.6;
  }
  .sb-slidebar .inner .official-nav li:nth-of-type(even), .sb-slidebar .inner .fc-nav li:nth-of-type(even) {
    margin-right: 0;
  }
  .sb-slidebar .inner .official-nav li a, .sb-slidebar .inner .fc-nav li a {
    color: #fee600;
    font-size: 18px;
  }
  .sb-slidebar .inner .official-nav li.navTwitter, .sb-slidebar .inner .fc-nav li.navTwitter {
    width: auto;
  }
  .sb-slidebar .inner .official-nav li.navTwitter i, .sb-slidebar .inner .fc-nav li.navTwitter i {
    color: #ffffff !important;
  }
  .sb-slidebar .inner .official-nav li.navPrivacy, .sb-slidebar .inner .fc-nav li.navPrivacy {
    font-family: Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif !important;
  }
  .sb-slidebar .inner .official-nav li.navPrivacy a, .sb-slidebar .inner .fc-nav li.navPrivacy a {
    font-size: 14px;
    color: inherit !important;
  }
  .sb-slidebar .inner .fc-nav {
    margin-top: 26px;
    margin-bottom: 10px;
  }
  .sb-slidebar .inner .menu--official {
    margin: 20px auto 45px;
  }
  .sb-slidebar .inner .menu--official li:last-of-type {
    margin-bottom: 0;
  }
  .sb-slidebar .inner .menu--official .block--login {
    padding: 0 4% 0;
    color: #fee600;
    margin: 50px 0 20px;
  }
  .sb-slidebar .inner .menu--official .block--login h2 {
    margin-bottom: 0.5em;
  }
  .sb-slidebar .inner .menu--official .block--login h2 a {
    display: block;
  }
  .sb-slidebar .inner .menu--official .block--login h2 img {
    width: 28vw;
  }
  .sb-slidebar .inner .menu--official .list--login {
    justify-content: flex-start;
  }
  .sb-slidebar .inner .menu--official .list--login li {
    font-size: 18px;
  }
  .sb-slidebar .inner .menu--official .list--login li.join {
    margin: 0;
    padding-right: 10px;
  }
  .sb-slidebar .inner .menu--official .list--login li.line {
    background-color: #fee600;
    color: transparent;
    height: 1px !important;
    transform: rotate(-60deg);
  }
  .sb-slidebar .inner .menu--fc {
    padding-top: 45px;
    background-color: #fee600;
    height: 105vw;
  }
  .sb-slidebar .inner .menu--fc ul li a {
    color: #000000;
  }
  .sb-slidebar .inner .list--support {
    padding: 0 4% 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sb-slidebar .inner .list--support li {
    display: inline-block;
    width: 49%;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.3;
  }
  .sb-slidebar .inner .list--support li a {
    padding: 4px 0;
  }
  /* フッター
  ------------------------------ */
  .footer {
    min-width: 100%;
  }
  .footer .nav--support {
    position: inherit;
    color: #000000;
    margin: 0 4.25% 40px;
    height: auto;
  }
  .footer .nav--support .tit--support {
    font-family: anton, sans-serif;
    font-weight: 400;
    padding-bottom: 4px;
    margin-bottom: 10px;
    font-size: 14px;
    display: block;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .nav--support .tit--support::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    vertical-align: middle;
  }
  .footer .nav--support .tit--support:after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    position: absolute;
    top: 0.25em;
    right: 0;
    border-color: #ffffff;
  }
  .footer .nav--support .list--support {
    color: #ffffff;
    display: none;
  }
  .footer .nav--support .list--support li {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .footer .nav--support .list--support li a {
    width: 100%;
  }
  .footer .nav--support.open .tit--support:after {
    transform: rotate(135deg);
  }
  .footer .copyright {
    text-align: center;
    font-size: 10px;
    color: #ffffff;
    background: #202020;
    padding: 10px 0;
  }
  /* list
  ------------------------------ */
  .list--info li {
    width: 100%;
    margin: 0;
    height: auto;
  }
  .list--info li a {
    width: 100%;
    background: url(/static/livemasters/common/sp_news_arrow.png) no-repeat right 10px center;
    background-size: 15px 15px;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    padding: 15px 8% 15px 4%;
  }
  .list--info li a .date {
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 1em;
    height: 20px;
  }
  .list--info li a .title {
    display: block;
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 5px;
    line-height: 1.3em;
  }
  .list--info li a .text {
    font-size: 12px;
    height: 40px;
    margin: 0;
    display: block;
    line-height: 1.3em;
    max-height: 40px;
    overflow-wrap: break-word;
  }
  .newsList #btnMoreContainer .loading {
    margin: 20px auto 0;
    width: 32px;
    height: 32px;
  }
  .list--ticket li {
    width: 100%;
    margin: 0;
    height: auto;
  }
  .list--ticket li a {
    width: 100%;
    background: url(/static/livemasters/common/sp_news_arrow.png) no-repeat right 10px center;
    background-size: 15px 15px;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    padding: 15px 8% 15px 4%;
  }
  .list--ticket .thumb {
    max-width: 90px;
    height: 68px;
    margin-right: 2.75%;
    width: 46%;
  }
  .list--ticket .thumb img {
    width: 100%;
    height: 100%;
    background-size: cover;
  }
  .list--ticket .block--txt {
    width: 56%;
  }
  .list--ticket .airtist, .list--ticket .category {
    display: inline-block;
    float: left;
    background: #fee600;
    color: #000000;
    font-size: 9px;
    line-height: 1.2em;
    margin: 0 5px 5px 0;
    padding: 1px 1px 2px;
    -webkit-box-decoration-break: clone;
  }
  .list--ticket .title {
    font-size: 12px;
    font-weight: normal;
  }
  .list--airtist {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .list--airtist li {
    width: 48%;
    margin-bottom: 20px;
    text-align: center;
    font-size: 10px;
    line-height: 1.3;
  }
  .list--airtist li a {
    width: 100%;
  }
  .list--airtist li .thumb {
    line-height: 0;
    height: auto;
    margin-bottom: 5px;
    height: 108px;
  }
  .list--airtist li .thumb img {
    width: 100%;
    height: 100%;
  }
  .list--contents li {
    position: relative;
  }
  .list--contents li a {
    width: 100%;
  }
  .list--contents li.new:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #000000 transparent transparent transparent;
    border-width: 16vw 16vw 0 0;
    z-index: 3;
  }
  .list--contents li.new:after {
    position: absolute;
    top: 8px;
    left: 3px;
    font-family: ccsignlanguage, sans-serif;
    font-weight: 400;
    font-style: italic;
    content: "NEW";
    font-size: 4vw;
    transform: rotate(-40deg);
    color: #fee600;
    z-index: 3;
  }
  .list--contents li .thumb {
    line-height: 0;
    margin-bottom: 14px;
  }
  .list--contents li .thumb img {
    width: 100%;
  }
  .list--contents li .title {
    font-size: 12px;
  }
  .list--contents li .date {
    font-size: 10px;
  }
  .list--login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .list--login li {
    font-family: anton, sans-serif;
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
  }
  .list--login li.join {
    margin: 0 6px 0 0;
  }
  .list--login li.login {
    margin: 0 0 0 6px;
  }
  .list--login li.line {
    position: relative;
    display: block;
    width: 18px;
    height: 1px;
    background: #000000;
    transform: rotate(-60deg);
  }
  /* .pickup
  ------------------------------ */
  body .pickup {
    margin: 60px 4% 0 !important;
    opacity: 1;
    transition: all 0.4s ease-out 0.5s;
    -webkit-transition: all 0.4s ease-out 0.5s;
  }
  body .pickup .section-tit {
    width: 100%;
    height: 26px;
    text-align: center;
    display: block;
    line-height: 26px;
    background: #fee600;
    color: #000000;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: bold;
  }
  body .pickup .list--pickup li {
    background: #171717;
    margin-bottom: 3px;
    font-size: 12px;
  }
  body .pickup .list--pickup li a {
    padding: 10px;
  }
  /*トップページ　
  ------------------------------ */
  .page--home .flex-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
  }
  .page--home .mainVisual {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: all 0.4s ease-out 0.5s;
    -webkit-transition: all 0.4s ease-out 0.5s;
  }
  .page--home .mainVisual.delighter.started {
    opacity: 1;
  }
  .page--home .mainVisual .swiper-wrapper .swiper-slide a {
    display: block;
  }
  .page--home .mainVisual .swiper-wrapper .swiper-slide a .tit-bnr {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    padding: 10px 0;
    width: 90%;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #000;
    line-height: 1.3em;
    background: rgba(255, 255, 255, 0.5);
  }
  .page--home .section--banner {
    width: 100%;
    margin-bottom: 14px;
  }
  .page--home .section--news {
    margin: 0 4%;
  }
  .page--home .section--news .list--info li {
    background: #171717;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .page--home .section--news .list--info li a {
    background: none;
    border: none;
    padding: 16px 10px;
  }
  .page--home .section--news .list--info li a .date {
    font-size: 10px;
    margin-bottom: 4px;
    line-height: inherit;
  }
  .page--home .section--news .list--info li a .title {
    font-size: 12px;
    line-height: 1.6;
  }
  .page--home .section--ticket .list--ticket li a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--ticket .title {
    font-size: 12px;
    font-weight: normal;
  }
  .page--home .contents.liveschedule {
    border-bottom: none;
    padding-bottom: 0;
  }
  .page--home .section--live .block--month {
    position: relative;
  }
  .page--home .section--live .block--month .swiper-container {
    height: 90px;
  }
  .page--home .section--live .block--month .slick-list {
    width: 80%;
    min-width: 270px;
    margin: 0 auto;
  }
  .page--home .section--live .block--month .swiper-button-prev,
  .page--home .section--live .block--month .swiper-button-next {
    z-index: 1;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .page--home .section--live .block--month .swiper-button-prev {
    background-image: url(/static/livemasters/common/btnPrev.png);
  }
  .page--home .section--live .block--month .swiper-button-prev:hover {
    background-image: url(/static/livemasters/common/btnPrev_on.png);
  }
  .page--home .section--live .block--month .swiper-button-next {
    background-image: url(/static/livemasters/common/btnNext.png);
  }
  .page--home .section--live .block--month .swiper-button-next:hover {
    background-image: url(/static/livemasters/common/btnNext_on.png);
  }
  .page--home .section--live .block--month .list--month a > p {
    line-height: 1;
  }
  .page--home .section--live .block--month .list--month a .num, .page--home .section--live .block--month .list--month a .month {
    display: inline-block;
  }
  .page--home .section--live .block--month .list--month a .num {
    font-size: 26px;
    margin-right: 2px;
  }
  .page--home .section--live .block--month .list--month a .month {
    font-size: 16px;
  }
  .page--home .section--live .block--month .list--month a .year {
    line-height: 1;
    font-size: 14px;
  }
  .page--home .contents {
    border-bottom: 1px solid #474747;
    position: relative;
    width: 100%;
    padding: 10px 0 40px;
    margin: 0 0 60px;
  }
  .page--home .contents [class^=section--] {
    opacity: 0;
    transition: all 0.4s ease-out 0.3s;
    -webkit-transition: all 0.4s ease-out 0.3s;
  }
  .page--home .contents [class^=section--].delighter.started {
    opacity: 1;
  }
  .page--home .contents [class^=section--] .section-tit {
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    position: relative;
    font-size: 30px;
    margin: 0 0 20px;
    line-height: 1.6;
  }
  .page--home .contents [class^=section--] .section-tit::after {
    content: "";
    display: block;
    background: #fee600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
  }
  .page--home .block--member {
    margin-top: 70px;
  }
  .page--home .block--member .contents {
    margin: 0 0 45px;
    padding: 20px 0 30px;
  }
  .page--home .block--member .contents:first-of-type {
    padding: 0;
  }
  .page--home .block--member .contents:last-of-type {
    margin-bottom: 0;
  }
  .page--home .block--member .block--login {
    margin: 0 2.75% 0;
    position: relative;
    top: -10vw;
  }
  .page--home .block--member .block--login .fclogo {
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .page--home .block--member .block--login .list--login li {
    color: #fee600;
  }
  .page--home .block--member .block--login .list--login .line {
    background: #fee600;
  }
  .page--home .block--member .list--info {
    margin: 0 4.25%;
  }
  .page--home .block--member .list--info li {
    background: #171717;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .page--home .block--member .list--info li a {
    width: 100%;
    padding: 16px 2.75%;
    background: none;
    border: none;
  }
  .page--home .block--member .list--info li.no-data {
    background: transparent;
    color: rgba(0, 0, 0, 0.4);
    margin: 50px 0 50px;
  }
  .page--home .block--member [class^=section--] .section-tit {
    font-family: anton, sans-serif;
    font-weight: 400;
    text-align: center;
  }
  .page--home .block--member [class^=section--] .sub-tit {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin: 10px auto 24px;
  }
  .page--home .block--member .section--fcticket .section-tit {
    margin-bottom: 0;
  }
  .page--home .block--member .section--fcticket .list--info li {
    margin-bottom: 8px;
    transition: all 0.4s ease-out 0.4s;
    -webkit-transition: all 0.4s ease-out 0.4s;
  }
  .page--home .block--member .section--fcticket .list--info li a {
    font-size: 12px;
    line-height: 1.6;
    font-weight: bold;
  }
  .page--home .block--member .section--fcticket .list--info li:nth-child(1) {
    transform: translateY(0px);
  }
  .page--home .block--member .section--fcticket .list--info li:nth-child(2) {
    transform: translateY(-10px);
  }
  .page--home .block--member .section--fcticket .list--info li:nth-child(3) {
    transform: translateY(-20px);
  }
  .page--home .block--member .section--fcticket .list--info li:nth-child(4) {
    transform: translateY(-30px);
  }
  .page--home .block--member .section--fcticket.delighter.started .list--info li {
    transform: translateY(0);
  }
  .page--home .block--member .list--contents.photo {
    padding-left: 16px;
  }
  .page--home .block--member .list--contents.photo .slick-list {
    overflow: unset;
  }
  .page--home .block--member .list--contents.photo li {
    width: 72vw;
    margin: 0 16px 0 0;
  }
  .page--home .block--member .list--contents.photo li:last-of-type {
    margin-right: 0;
  }
  .page--home .block--member .list--contents.movie {
    margin: 0 16px;
  }
  .page--home .block--member .list--contents li.no-data {
    background: transparent;
    color: rgba(0, 0, 0, 0.4);
    margin: 50px 0 50px;
  }
  .page--home .section--photo.slick--single .list--contents {
    margin-right: 16px;
  }
  .page--home .section--photo.slick--single .list--contents li {
    width: 100%;
  }
  .page--home .section--photo .list--contents li .thumb {
    overflow: hidden;
    position: relative;
  }
  .page--home .section--photo .list--contents li .thumb span.blur {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.5);
    filter: blur(1px);
    width: 100%;
    display: block;
  }
  .page--home .section--photo .list--contents li .thumb img.content {
    background-size: contain;
    z-index: 1;
    position: relative;
  }
  .page--home .section--photo .list--contents li.no-data {
    margin: 50px auto !important;
  }
  .page--home .section--photo .list--contents li {
    transition: all 0.4s ease-out 0.4s;
    -webkit-transition: all 0.4s ease-out 0.4s;
  }
  .page--home .section--photo .list--contents li:nth-child(1) {
    transform: translateX(0px);
  }
  .page--home .section--photo .list--contents li:nth-child(2) {
    transform: translateX(30px);
  }
  .page--home .section--photo .list--contents li:nth-child(3) {
    transform: translateX(60px);
  }
  .page--home .section--photo .list--contents li:nth-child(4) {
    transform: translateX(90px);
  }
  .page--home .section--photo.delighter.started .list--contents li {
    transform: translateX(0);
  }
  .page--home .section--blog .list--info li {
    transition: all 0.4s ease-out 0.4s;
    -webkit-transition: all 0.4s ease-out 0.4s;
  }
  .page--home .section--blog .list--info li .date {
    font-size: 10px;
    margin-bottom: 4px;
    line-height: inherit;
  }
  .page--home .section--blog .list--info li .title {
    font-size: 12px;
    line-height: 1.6;
  }
  .page--home .section--blog .list--info li:nth-child(1) {
    transform: translateY(0px);
  }
  .page--home .section--blog .list--info li:nth-child(2) {
    transform: translateY(-10px);
  }
  .page--home .section--blog .list--info li:nth-child(3) {
    transform: translateY(-20px);
  }
  .page--home .section--blog .list--info li:nth-child(4) {
    transform: translateY(-30px);
  }
  .page--home .section--blog .list--info li.new:after {
    position: absolute;
    top: 1px;
    left: 1px;
    font-family: ccsignlanguage, sans-serif;
    font-weight: 400;
    font-style: italic;
    content: "NEW";
    font-size: 4vw;
    transform: rotate(-30deg);
    color: #fee600;
    z-index: 2;
  }
  .page--home .section--blog .list--info li.no-data {
    margin: 50px auto !important;
  }
  .page--home .section--blog.delighter.started .list--info li {
    transform: translateY(0);
  }
  .page--home .footer {
    padding-top: 90px;
    bottom: 0;
  }
  /* .page--home以外
  ------------------------------ */
  body:not(.page--home) .topNavi {
    display: none;
  }
  body:not(.page--home) .section--list, body:not(.page--home) .section--detail {
    margin: 0 2.75%;
  }
  body:not(.page--home) .section--list .section-tit, body:not(.page--home) .section--detail .section-tit {
    font-size: 30px;
    line-height: 1.3;
    color: #fee600;
    text-align: center;
    margin-bottom: 20px;
  }
  body:not(.page--home) .section--list .section-tit span, body:not(.page--home) .section--detail .section-tit span {
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.025em;
  }
  body:not(.page--home) .section--list .section-tit span::after, body:not(.page--home) .section--detail .section-tit span::after {
    content: "";
    display: block;
    background: #fee600;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
  }
  body:not(.page--home) .section--list .detail__btn, body:not(.page--home) .section--detail .detail__btn {
    margin-top: 30px;
  }
  body:not(.page--home) .section--list.member .section-tit, body:not(.page--home) .section--detail.member .section-tit {
    font-family: anton, sans-serif;
    font-weight: 400;
    color: #fee600;
    position: relative;
  }
  body:not(.page--home) .section--list .no-data, body:not(.page--home) .section--detail .no-data {
    margin: 50px auto;
  }
  body:not(.page--home) .section--list.member {
    margin: 0;
  }
  body:not(.page--home) .section--list.member .list--contents {
    margin-left: 2.75%;
    margin-right: 2.75%;
  }
  body:not(.page--home) .footer {
    margin-top: 20px;
    padding: 0;
    background-color: #202020;
    bottom: 0;
  }
  body:not(.page--home) .footer .inner {
    background-color: transparent;
  }
  body:not(.page--home) .footer .nav--support {
    display: none;
  }
  /* .page--info
  ------------------------------ */
  .page--info .section--list .list--info li {
    background: #171717;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .page--info .section--list .list--info li a {
    background: none;
    border: none;
    padding: 16px 10px;
  }
  .page--info .section--list .list--info li a .date {
    font-size: 10px;
    margin-bottom: 4px;
    line-height: inherit;
  }
  .page--info .section--list .list--info li a .title {
    font-size: 12px;
    line-height: 1.6;
  }
  .page--info .section--list .list--info li a .text {
    display: none;
  }
  .page--info .section--detail {
    margin: 0 !important;
  }
  .page--info .section--detail .date, .page--info .section--detail .list--info, .page--info .section--detail .block--cat {
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--info .section--detail .up {
    margin-top: 40px;
  }
  .page--info .section--detail .date {
    font-size: 12px;
    font-weight: bold;
  }
  .page--info .section--detail .title {
    font-size: 14px;
    margin-bottom: 10px;
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--info .section--detail .txt {
    font-size: 12px;
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--info .section--detail .txt a {
    display: inline-block;
    text-decoration: underline;
    color: #fee600;
  }
  .page--ticket .section--list {
    margin: 0 !important;
  }
  .page--ticket .section--list .list--ticket a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--ticket .section--list .block--txt .title {
    font-weight: normal;
    line-height: 1.3em;
  }
  .page--ticket .section--detail {
    margin: 0 !important;
  }
  .page--ticket .section--detail .up {
    margin-top: 40px;
  }
  .page--ticket .section--detail .date {
    display: none;
  }
  .page--ticket .section--detail .title, .page--ticket .section--detail .block--cat {
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--ticket .section--detail .flex-wrap {
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--ticket .section--detail .thumb {
    width: 100%;
    height: 66vw;
    line-height: 0;
    margin-bottom: 5px;
  }
  .page--ticket .section--detail .thumb img {
    width: 100%;
    height: 100%;
  }
  .page--ticket .section--detail .block--cat {
    margin-bottom: 10px;
  }
  .page--ticket .section--detail .block--cat .airtist, .page--ticket .section--detail .block--cat .category {
    display: inline-block;
    background: #fee600;
    color: #000000;
    font-size: 12px;
    line-height: 1.1em;
    margin: 0 5px 5px 0;
    padding: 1px;
  }
  .page--ticket .section--detail .txt {
    margin: 0;
  }
  .page--ticket .section--detail .txt p {
    margin-bottom: 1em;
  }
  .page--ticket .section--detail .txt a {
    display: inline-block;
    text-decoration: underline;
    color: #fee600;
  }
  .page--fcticket .section--list {
    margin: 0 !important;
  }
  .page--fcticket .list--info {
    margin: 0 2.75%;
  }
  .page--fcticket .list--info li {
    background: #171717;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .page--fcticket .list--info li a {
    background: none;
    border: none;
    padding: 16px 10px;
  }
  .page--choice .section--list {
    margin: 0 !important;
  }
  .page--choice .section--list .block--latest {
    position: relative;
    margin: 0 10px 30px;
  }
  .page--choice .section--list .block--latest .block-tit {
    font-size: 14px;
    margin: 0 10px 10px;
    font-weight: bold;
    line-height: 1.3;
  }
  .page--choice .section--list .block--latest .flex-wrap .thumb {
    width: 100%;
    height: 60vw;
    line-height: 0;
    margin-bottom: 5px;
    position: relative;
  }
  .page--choice .section--list .block--latest .flex-wrap .thumb img.dummy {
    position: absolute;
    top: 0;
    left: 0;
  }
  .page--choice .section--list .block--latest .flex-wrap .thumb img {
    width: 100%;
    height: 100%;
    background-size: contain;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text {
    margin-bottom: 48px;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text .text {
    font-size: 12px;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text .swiper-wrap, .page--choice .section--list .block--latest .flex-wrap .block--text .block-cover, .page--choice .section--list .block--latest .flex-wrap .block--text .btnPdf, .page--choice .section--list .block--latest .flex-wrap .block--text .btnSet {
    display: none !important;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text .btn {
    width: 150px;
    height: 44px;
    margin: 20px auto 0;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text .btn:not(.newairticle) {
    display: none;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text .btn .btn--main {
    width: 100%;
    display: block;
    line-height: 44px;
    height: 44px;
    font-size: 12px;
    font-weight: bold;
    background: #fee600;
    color: #000000;
  }
  .page--choice .section--list .backnumber {
    font-size: 14px;
    margin: 0 10px 10px;
    font-weight: bold;
  }
  .page--choice .section--list .list--info li a {
    height: 50px;
    line-height: 50px;
  }
  .page--choice .section--list .list--info li a .block--txt .title {
    font-size: 12px;
    font-weight: normal;
  }
  .page--choice .section--detail .swiper {
    width: 100%;
    position: absolute;
  }
  .page--choice .section--detail .gallery-top .swiper-wrapper .swiper-slide img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }
  .page--choice .section--detail .gallery-top .swiper-wrapper .swiper-slide .ph {
    margin: 0 !important;
  }
  .page--choice .section--detail .gallery-top .swiper-button-prev {
    background: url(/static/livemasters/common/btnPrev.png) no-repeat;
  }
  .page--choice .section--detail .gallery-top .swiper-button-prev:hover {
    background: url(/static/livemasters/common/btnPrev_on.png) no-repeat;
  }
  .page--choice .section--detail .gallery-top .swiper-button-next {
    background: url(/static/livemasters/common/btnNext.png) no-repeat;
  }
  .page--choice .section--detail .gallery-top .swiper-button-next:hover {
    background: url(/static/livemasters/common/btnNext_on.png) no-repeat;
  }
  .page--choice .section--detail .gallery-top {
    margin: 0 10px;
    position: relative;
    z-index: 11;
  }
  .page--choice .section--detail .swiper-container .swiper-button-prev {
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    margin: -15px 0 0;
    left: 0;
  }
  .page--choice .section--detail .swiper-container .swiper-button-prev:hover {
    background-size: 30px 30px;
  }
  .page--choice .section--detail .swiper-container .swiper-button-next {
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    margin: -15px 0 0;
    right: 0;
  }
  .page--choice .section--detail .swiper-container .swiper-button-next:hover {
    background-size: 30px 30px;
  }
  .page--choice .section--detail .swiper-count {
    color: #FFF;
    position: absolute;
    right: 10px;
    z-index: 11;
    opacity: 0;
  }
  .page--choice .section--detail .mainImg {
    margin: 0 10px 0;
  }
  .page--choice .section--detail .mainImg .ph {
    margin: 0;
  }
  .page--choice .section--detail .mainImg img {
    width: 100%;
  }
  .page--choice .section--detail .btnArticle {
    margin: 10px 10px 20px !important;
  }
  .page--choice .section--detail .btnArticle a {
    display: block;
    float: right;
    width: 155px;
    height: 44px;
    line-height: 44px;
    font-size: 12px;
    background: #fee600;
    color: #000;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    font-size: 12px;
  }
  .page--choice .section--detail .btnArticle a:hover {
    background: #fee600;
    color: #000;
  }
  .page--choice .section--detail .btnSet {
    margin: 0;
  }
  .page--choice .section--detail .btnSet .btnPdf {
    margin: 0 10px 10px;
    width: auto;
    height: auto;
    float: right;
  }
  .page--choice .section--detail .btnSet .btnPdf a {
    width: 155px;
    height: 44px;
    line-height: 44px;
    font-size: 12px;
    background: #fee600;
    color: #000;
  }
  .page--choice .section--detail div#glayLayer {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: black;
    opacity: 0.8;
    z-index: 5;
  }
  .page--choice .section--detail .thumb {
    margin-bottom: 30px;
    width: 100%;
    height: 240px;
  }
  .page--choice .section--detail .thumb img {
    width: 100%;
    height: 100%;
    background-size: contain;
  }
  .page--choice .section--detail .title {
    font-weight: bold;
    font-size: 14px;
    margin: 0 10px 10px;
    line-height: 1.3em;
  }
  .page--choice .section--detail .btn {
    margin: 30px auto;
  }
  .page--choice .section--detail .btn a {
    font-weight: bold;
    background: #fee600;
    color: #000000 !important;
  }
  .page--choice .section--detail .txt p {
    margin-bottom: 1em;
  }
  .page--choice .section--detail .flex-wrap {
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--choice .section--detail .block-cover {
    margin: 20px 0;
    padding: 5px 3%;
    border: 1px solid #FFF;
  }
  /* .page--live
  ------------------------------ */
  .page--live .section--list .block--month {
    margin: 50px 0 0;
    text-align: center;
    color: #fee600;
    font-family: anton, sans-serif;
    font-weight: 400;
  }
  .page--live .section--list .block--month .title {
    text-align: center;
  }
  .page--live .section--list .block--month .title span.num {
    font-size: 32px;
    margin-right: 6px;
  }
  .page--live .section--list .block--month .title span.year {
    font-size: 18px;
  }
  .page--live .section--list .block--month .month-pager {
    font-family: anton, sans-serif;
    font-weight: 400;
    font-size: 20px;
    position: relative;
    top: -24px;
  }
  .page--live .section--list .block--month .month-pager li {
    display: inline-block;
  }
  .page--live .section--list .block--month .month-pager li.next {
    float: right;
  }
  .page--live .section--list .block--month .month-pager li.prev {
    float: left;
  }
  .page--live .section--list .block--refine, .page--live .section--list .block--week {
    display: none;
  }
  .page--live .section--list .block--day {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--live .section--list .block--day .list--info {
    width: 100%;
  }
  .page--live .section--list .block--day .list--info + .block--nodata {
    display: none;
  }
  .page--live .section--list .block--day .block--nodata {
    width: 100%;
    margin: 50px auto;
  }
  .page--live .section--list .block--day .block--nodata p.no-data {
    text-align: center;
    font-size: 12px;
  }
  .page--live .section--list .list--info {
    flex-direction: column;
  }
  .page--live .section--list .list--info li.event-date {
    background-color: transparent;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #fee600;
    margin: 15px 0 5px;
    line-height: 1.6;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--live .section--list .list--info li.event-date .month, .page--live .section--list .list--info li.event-date .day {
    font-size: 25px;
  }
  .page--live .section--list .list--info li.block-data a {
    padding-left: 2%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--live .section--list .list--info li.block-data a .thumb {
    min-width: 90px;
    width: 35%;
    margin-right: 12px;
  }
  .page--live .section--list .list--info li.block-data a .airtist, .page--live .section--list .list--info li.block-data a .list--ticket .category {
    font-size: 9px;
  }
  .page--live .section--list .list--info li.block-data a .venue {
    font-size: 12px;
    line-height: 1.3em;
    margin-bottom: 5px;
  }
  .page--live .section--list .list--info li.block-data a .date + .title {
    font-weight: bold;
    font-size: 14px;
  }
  .page--live .section--detail .up {
    margin-top: 40px;
  }
  .page--live .section--detail > .title {
    font-size: 14px;
    margin: 0 0 10px;
    font-weight: bold;
  }
  .page--live .section--detail .thumb {
    width: 100%;
    height: 45vw;
    margin: 0 0 5px;
  }
  .page--live .section--detail .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
  }
  .page--live .section--detail .cat.airtist {
    display: inline-block;
    background: #fee600;
    color: #000000;
    font-size: 14px;
    line-height: 1.1em;
    margin: 0 0 10px;
    padding: 1px 3px;
  }
  .page--live .section--detail .cat.airtist a {
    display: block;
    text-decoration: none;
    color: #000;
  }
  .page--live .section--detail .block--liveinfo {
    margin-bottom: 20px;
    position: relative;
  }
  .page--live .section--detail .block--liveinfo dt {
    position: absolute;
    background: none;
    color: #ffffff;
    font-size: 12px;
    height: 18px;
    line-height: 18px;
    margin: 10px 0 0;
    width: 120px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    text-align: left;
  }
  .page--live .section--detail .block--liveinfo dd {
    padding: 10px 0 10px 120px;
    border-bottom: 2px solid #898989;
    word-wrap: break-word;
    min-height: 22px;
    font-size: 12px;
  }
  .page--live .section--detail .block--liveinfo dd a {
    display: inline-block;
    text-decoration: underline;
    color: #fee600;
  }
  /* .page--airtist
  ------------------------------ */
  .page--airtist .section--detail {
    margin: 0 !important;
  }
  .page--airtist .section--detail .block--tab .tab {
    justify-content: flex-start;
  }
  .page--airtist .section--detail .block--tab .tab li {
    width: 33.3333333333%;
  }
  .page--airtist .section--detail .block--tab .tab li:last-of-type {
    margin-left: 0;
  }
  .page--airtist .section--detail .list--info {
    margin: 0;
  }
  .page--airtist .section--detail > .title, .page--airtist .section--detail > .title + .thumb, .page--airtist .section--detail .block--share {
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--airtist .section--detail > .title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 10px 5px;
  }
  .page--airtist .section--detail > .title + .thumb {
    margin-bottom: 10px;
    height: 170px;
  }
  .page--airtist .section--detail > .title + .thumb img {
    width: 100%;
    height: 100%;
  }
  .page--airtist .section--detail .link-airtist {
    margin: 0 2.75% 30px 0;
    font-size: 16px;
    text-align: right;
  }
  .page--airtist .section--detail .link-airtist p {
    display: inline-block;
  }
  .page--airtist .section--detail .link-airtist p.site a {
    text-decoration: underline;
    font-size: 13px;
    padding: 0 13px 0 0;
    background: url(/static/livemasters/common/icon_window.png) right center no-repeat;
    background-size: 10px 12px;
  }
  .page--airtist .section--detail .link-airtist p.twitter i {
    font-size: 23px;
    vertical-align: middle;
  }
  .page--airtist .section--detail .link-airtist p.facebook i {
    font-size: 23px;
    vertical-align: middle;
  }
  .page--airtist .section--detail .link-airtist p:nth-child(2) {
    margin-left: 18px;
  }
  .page--airtist .section--detail .link-airtist p:last-of-type {
    margin-left: 18px;
  }
  .page--airtist .section--detail .list--ticket a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--airtist .section--detail .list--ticket a .thumb {
    margin-right: 2.75%;
    margin-left: 0;
    height: 68px;
  }
  .page--airtist .section--detail .block--txt .venue {
    font-size: 12px;
  }
  .page--airtist .section--detail .block--txt .date {
    font-size: 12px;
    font-weight: bold;
  }
  .page--airtist .section--detail .block--txt .title {
    margin: 0 0 5px;
  }
  .page--airtist .section--detail .block--share {
    margin-top: 20px;
  }
  /* .page--entry
  ------------------------------ */
  .page--entry .btn--main {
    background-color: #fee600;
    font-weight: bold;
    color: #000000;
  }
  .page--entry .section--detail .section-tit {
    display: none;
  }
  .page--entry .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--entry .section--detail [class^=block--] table {
    width: 100%;
    margin: 0 auto 30px;
    border: 1px solid #ffffff;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 100px;
    padding: 10px 3%;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    font-weight: 400;
    font-size: 12px;
  }
  .page--entry .section--detail [class^=block--] table td {
    padding: 10px 3%;
    border-bottom: 1px solid #ffffff;
    border-left: 1px dotted #ffffff;
    font-size: 12px;
  }
  .page--entry .section--detail [class^=block--] table.list--payment .credit {
    margin-bottom: 20px;
  }
  .page--entry .section--detail [class^=block--] .block-tit {
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .page--entry .section--detail .block--logo {
    margin-bottom: 30px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 60%;
    display: block;
    margin: 0 auto 30px;
  }
  .page--entry .section--detail .block--logo .lead {
    margin-bottom: 0;
    font-size: 12px;
  }
  .page--entry .section--detail .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--entry .section--detail .list--contents li {
    padding: 16px 2%;
    width: 100%;
    margin-bottom: 10px;
    background: #fee600;
    color: #000000;
  }
  .page--entry .section--detail .list--contents li .tit {
    font-family: anton, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1;
    color: #000000;
    text-align: center;
  }
  .page--entry .section--detail .list--contents li .tit span {
    position: relative;
  }
  .page--entry .section--detail .list--contents li .tit span::after {
    content: "";
    display: block;
    background: #000000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
    margin-top: 2px;
  }
  .page--entry .section--detail .list--contents li .text {
    font-size: 12px;
    line-height: 1.6;
  }
  .page--entry .section--detail .list--contents .list--sub {
    margin-bottom: 10px;
  }
  .page--entry .section--detail .list--contents .list--sub li {
    border: none;
    width: auto;
    margin: 0;
    padding: 0;
    height: auto;
  }
  .page--entry .section--detail .block--intro {
    margin-top: 50px;
  }
  .page--entry .section--detail .block--intro .block-tit {
    margin-bottom: 30px;
    font-family: anton, sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: #fee600;
  }
  .page--entry .section--detail .block--intro .block-tit::after {
    content: "";
    display: block;
    background: #fee600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
  }
  span.member {
    background: #fee600;
    color: #000000;
    padding: 1px 3px;
    transform: scale(0.4);
    font-weight: bold;
    margin-left: 6px;
    font-family: anton, sans-serif;
    font-size: 10px;
  }
  /* .page--photo
  ------------------------------ */
  .page--photo .thumb {
    position: relative;
    overflow: hidden;
    border: 1px solid #000;
  }
  .page--photo .thumb:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .page--photo .thumb span.blur {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.5);
    filter: blur(1px);
    width: 100%;
    display: block;
  }
  .page--photo .thumb img.content {
    background-size: contain;
    z-index: 2;
    position: relative;
  }
  .page--photo .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--photo .list--contents li {
    width: 48%;
  }
  .page--photo .list--contents li:nth-child(even) {
    margin-right: 0 !important;
  }
  .page--photo .list--contents li.no-data {
    width: 100%;
    margin: 100px auto;
  }
  .page--photo .section--list .list--contents li {
    margin-bottom: 30px;
  }
  .page--photo .section--list .list--contents li .thumb {
    margin-bottom: 8px;
  }
  .page--photo .section--list .list--contents li.new:after {
    color: #000000;
  }
  .page--photo .section--list .list--contents li.new:before {
    border-color: #fee600 transparent transparent transparent;
  }
  .page--photo .section--detail .title {
    font-size: 14px;
    font-weight: bold;
  }
  .page--photo .section--detail .list--contents {
    margin: 10px 0 40px;
  }
  .page--photo .section--detail .list--contents li {
    margin: 0 0 10px 0;
  }
  .page--photo .section--detail .list--contents .thumb {
    margin-bottom: 0;
  }
  .page--photo .section--detail #swipebox-caption {
    line-height: 1.6;
  }
  .page--photo .section--detail .block--comment .txt a {
    color: #fee600;
    font-weight: bold;
    text-decoration: underline;
    padding: 0.25em 0;
  }
  /* .page--movie
  ------------------------------ */
  .page--movie .section-tit {
    margin-bottom: 50px;
  }
  .page--movie .list--contents li {
    margin-bottom: 30px;
  }
  .page--movie .list--contents li.new:after {
    color: #000000;
  }
  .page--movie .list--contents li.new:before {
    border-color: #fee600 transparent transparent transparent;
  }
  .page--movie .section--list .block--pager {
    margin-right: 2.75%;
    margin-left: 2.75%;
  }
  .page--movie .section--detail .block--player {
    margin-bottom: 14px;
  }
  .page--movie .section--detail .sub-txt-list {
    margin: 30px auto 10px;
  }
  .page--movie .section--detail .date {
    font-size: 12px;
  }
  .page--movie .section--detail .title {
    font-weight: bold;
  }
  .page--movie .section--detail .pageback {
    margin-top: 40px;
  }
  .page--movie .section--detail .btn--sub {
    height: auto;
  }
  .page--movie .section--detail .btn--sub:hover {
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
  }
  /* .page--blog
  ------------------------------ */
  .page--blog .section--list .no-data {
    margin: 200px auto;
  }
  .page--blog .section--list .list--info {
    margin: 0 2.75%;
  }
  .page--blog .section--list .list--info li {
    position: relative;
    background: #171717;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .page--blog .section--list .list--info li .date {
    font-size: 10px;
    margin-bottom: 4px;
    line-height: inherit;
  }
  .page--blog .section--list .list--info li .title {
    font-size: 12px;
    line-height: 1.6;
  }
  .page--blog .section--list .list--info li a {
    background: none;
    border: none;
    padding: 16px 10px;
  }
  .page--blog .section--list .list--info li.new:after {
    position: absolute;
    top: -5px;
    left: 2px;
    font-family: ccsignlanguage, sans-serif;
    font-weight: 400;
    font-style: italic;
    content: "NEW";
    font-size: 4vw;
    transform: rotate(-30deg);
    color: #fee600;
    z-index: 2;
  }
  .page--blog .section--detail .block--pager {
    margin-top: 50px;
  }
  .page--blog .section--detail .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .page--blog .section--detail .date {
    font-size: 12px;
    font-weight: bold;
  }
  .page--blog .section--detail .txt > span,
  .page--blog .section--detail .txt > span *,
  .page--blog .section--detail .txt > p,
  .page--blog .section--detail .txt > p *,
  .page--blog .section--detail .txt > font,
  .page--blog .section--detail .txt > font *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * {
    font-family: Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
    white-space: normal !important;
    word-break: break-word;
  }
  /* .page--privacy
  ------------------------------ */
  /* .page--campany
  ------------------------------ */
  /* .page--venue
  ------------------------------ */
  /* .page--guide
  ------------------------------ */
  /* .page--support
  ------------------------------ */
  /* .page--faq
  ------------------------------ */
  /* .page--error
  ------------------------------ */
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--blog .section--detail .txt > span,
  .page--blog .section--detail .txt > span *,
  .page--blog .section--detail .txt > p,
  .page--blog .section--detail .txt > p *,
  .page--blog .section--detail .txt > font,
  .page--blog .section--detail .txt > font *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--detail .txt > span,
  .page--blog .section--detail .txt > span *,
  .page--blog .section--detail .txt > p,
  .page--blog .section--detail .txt > p *,
  .page--blog .section--detail .txt > font,
  .page--blog .section--detail .txt > font *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) *,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div),
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--detail .txt > span a,
  .page--blog .section--detail .txt > span * a,
  .page--blog .section--detail .txt > p a,
  .page--blog .section--detail .txt > p * a,
  .page--blog .section--detail .txt > font a,
  .page--blog .section--detail .txt > font * a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) * a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) a,
  .page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * a {
    color: #fee600;
    text-decoration: underline;
  }
  .page--blog .section--detail .txt .ph {
    margin: 10px auto;
  }
  .page--blog .section--detail .txt video {
    margin: 10px auto;
    display: block;
    padding: 0;
  }
  .page--privacy .lead {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .page--privacy .block--text {
    margin-bottom: 20px;
  }
  .page--privacy .block--text .block-tit {
    font-size: 14px;
    font-weight: bold;
  }
  .page--privacy .block--text > p {
    font-size: 12px;
  }
  .page--campany .companyInfo {
    border-collapse: separate;
    border-spacing: 0 5px;
    font-size: 12px;
  }
  .page--campany .companyInfo th {
    width: 30%;
    background: #1e1e1e;
    padding: 15px 0;
    vertical-align: middle;
    text-align: center;
  }
  .page--campany .companyInfo td {
    width: 69%;
    padding: 15px 20px;
  }
  .page--campany .companyInfo td .business {
    padding: 0 0 0 20px;
  }
  .page--campany .companyInfo td .business li {
    list-style-type: decimal;
    margin: 0 0 5px;
    line-height: 1.3em;
  }
  .page--venue .tab {
    text-align: center;
    margin: 0 0 20px;
  }
  .page--venue .tab li {
    display: inline-flex;
    font-size: 14px;
  }
  .page--venue .tab li a {
    margin: 0;
  }
  .page--venue .block-tit {
    font-size: 14px;
    margin: 0 0 10px 0;
    font-weight: bold;
  }
  .page--venue .panel li {
    border-top: 1px solid #1e1e1e;
  }
  .page--venue dl {
    width: 100%;
    border-bottom: 1px solid #1e1e1e;
    font-size: 12px;
    position: relative;
  }
  .page--venue dl dt {
    padding: 10px 145px 10px 0;
    font-size: 12px;
  }
  .page--venue dl dd {
    position: absolute;
    top: 0px;
    right: 0px;
    text-align: right;
    padding: 10px;
  }
  .page--venue dl dd a {
    color: #fee600;
    margin: 0 0 0 10px;
  }
  .page--guide .section--detail.guide {
    margin: 0;
  }
  .page--guide [class^=block--] {
    position: relative;
    border-bottom: 1px solid #474747;
    padding: 0 0px 20px;
    margin: 0 0 30px;
  }
  .page--guide [class^=block--]:last-of-type {
    border: none;
    margin: 0;
    padding: 0;
  }
  .page--guide [class^=block--] .block-tit {
    height: 30px;
    text-align: center;
    margin: 0 0 20px;
  }
  .page--guide [class^=block--] .text {
    font-size: 12px;
    margin: 0 10px 20px;
    line-height: 1.6em;
  }
  .page--guide [class^=block--] .text p {
    margin: 0 0 10px;
  }
  .page--guide [class^=block--] .text .tel {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: bold;
  }
  .page--guide [class^=block--] .text.contact .title {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: bold;
  }
  .page--guide [class^=block--] .text.contact p a {
    color: #fee600;
    display: inline-block;
    text-decoration: underline;
  }
  .page--guide [class^=block--] .text p.link a {
    display: inline-block;
    color: #fee600;
    text-decoration: underline;
  }
  .page--guide [class^=block--] .btnHP {
    position: relative;
    margin: 10px 10px 20px;
  }
  .page--guide [class^=block--] .btnHP a {
    display: block;
    margin-left: auto;
    width: 155px;
    height: 44px;
    line-height: 44px;
    font-size: 12px;
    background: #fee600;
    color: #000000;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
  }
  .page--guide [class^=block--] .commission .acordion {
    margin: 0 10px;
    display: none;
  }
  .page--guide [class^=block--] .commission .up {
    background: #fee600;
    height: 44px;
    line-height: 44px;
    font-weight: bold;
    font-size: 12px;
    color: #000000;
    margin: 0 0 20px;
    padding: 0 10px;
    position: relative;
  }
  .page--guide [class^=block--] .commission .up:after {
    transform: translateY(-50%) rotate(-45deg);
  }
  .page--guide [class^=block--] .commission .up.open:after {
    transform: translateY(-50%) rotate(135deg);
  }
  .page--guide [class^=block--] .commission .text {
    margin: 0 0 20px;
  }
  .page--guide [class^=block--] .commission table {
    width: 100%;
    margin: 0 0 10px;
  }
  .page--guide [class^=block--] .commission table td {
    padding: 15px 10px;
    border: 1px solid #ffffff;
    vertical-align: middle;
    line-height: 1.6em;
    font-size: 10px;
  }
  .page--guide .block--eplus .block-tit img {
    width: 171px;
  }
  .page--guide .block--pia .block-tit img {
    width: 138px;
  }
  .page--guide .block--lowson .block-tit img {
    width: 77px;
    height: 30px;
  }
  .page--guide .block--line .block-tit img {
    width: 226px;
  }
  .page--guide .block--tixpla .block-tit img {
    width: 226px;
  }
  .page--guide .block--tixpla p.link a {
    display: inline-block;
    color: #fee600;
    text-decoration: underline;
  }
  .page--guide .block--tixpla .table-tit {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 4px;
  }
  .page--guide .block--tixpla .cell {
    display: inline-block;
    border: 1px solid;
    padding: 15px 10px;
    line-height: 1.6em;
    margin-bottom: 10px;
    font-size: 10px;
  }
  .page--guide .block--tixpla .text:first-of-type {
    margin-bottom: 30px;
  }
  .page--contact [class^=section--] .lead {
    margin-bottom: 1em;
    font-size: 12px;
  }
  .page--contact [class^=section--] .lead a {
    color: #fee600;
    display: inline-block;
    text-decoration: underline;
  }
  .page--contact [class^=section--] .lead a:hover {
    text-decoration: none;
  }
  .page--contact [class^=section--] .text.attention {
    font-weight: bold;
    color: #c31515;
    font-size: 12px;
  }
  .page--contact [class^=section--] [class^=block--] {
    width: 90%;
    margin: 0 auto 30px;
    padding: 20px 5%;
    border: 1px solid #ffffff;
  }
  .page--contact [class^=section--] [class^=block--] .block-tit {
    font-weight: bold;
    text-align: center;
    margin-bottom: 14px;
    font-size: 13px;
  }
  .page--contact [class^=section--] [class^=block--] .block-tit + .btn .btn--main {
    background-color: #fee600;
    color: #000000;
    font-weight: bold;
  }
  .page--contact [class^=section--] .block--text {
    border: none;
    background-color: #231f20;
    font-weight: bold;
    margin: 40px auto 0;
  }
  .page--contact [class^=section--] .block--text p {
    display: inline-block;
  }
  .page--contact [class^=section--] .block--text > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--contact [class^=section--] .block--text > div:first-of-type {
    margin-bottom: 20px;
  }
  .page--contact [class^=section--] .block--text > div .title {
    color: #fee600;
    margin-bottom: 4px;
  }
  .page--contact [class^=section--] .block--text > div p:not(.title) {
    font-size: 16px;
  }
  .page--contact [class^=section--] .block--text > div i {
    margin-right: 0.5em;
  }
  .page--contact [class^=section--] .block--text > div span {
    font-weight: normal;
    font-size: 0.85em;
  }
  .page--contact.page--detail .section-tit {
    font-size: 22px !important;
  }
  .page--contact.page--detail iframe {
    display: none;
  }
  .page--contact.page--detail .txt--sub {
    font-size: 12px;
    line-height: 1.6;
  }
  .page--contact.page--detail .form--post dl {
    margin: 0 0 40px;
  }
  .page--contact.page--detail .form--post dt {
    margin: 2em 0 2px;
    font-size: 12px;
    font-weight: bold;
  }
  .page--contact.page--detail .form--post dd {
    font-size: 12px;
  }
  .page--contact.page--detail .form--post .form__select::after {
    border-color: #ffffff;
    position: absolute;
    right: 0.75em;
  }
  .page--contact.page--detail .form--post .form__radio,
  .page--contact.page--detail .form--post .form__checkbox {
    margin-bottom: 8px;
  }
  .page--contact.page--detail .form--post input[type=radio],
  .page--contact.page--detail .form--post input[type=checkbox], .page--contact.page--detail .form--post select {
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin: 3px 5px 8px 0;
    z-index: 1;
    border: none;
    opacity: 1;
    padding: 0.8em 0 0.8em 1em;
    padding-right: 0;
  }
  .page--contact.page--detail .form--post input[type=radio]:before,
  .page--contact.page--detail .form--post input[type=checkbox]:before, .page--contact.page--detail .form--post select:before {
    height: auto;
    text-indent: 0;
    font-size: 17px;
    font-family: "FontAwesome";
    color: #ffffff;
    padding-left: 1px;
    text-indent: 0;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 0;
  }
  .page--contact.page--detail .form--post input[type=checkbox]:before {
    content: "\f096";
  }
  .page--contact.page--detail .form--post input[type=radio]:before {
    content: "\f10c";
  }
  .page--contact.page--detail .form--post input[type=checkbox]:checked:before {
    content: "\f046";
    color: #fee600;
  }
  .page--contact.page--detail .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #fee600;
  }
  .page--contact.page--detail .form-submit {
    margin-top: 50px;
  }
  .page--contact.page--detail .form-submit button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    margin: 0 auto;
    border: none;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    width: 240px;
    height: 50px;
    line-height: 50px;
    background: #231f20;
    box-sizing: content-box;
    font-weight: 400;
    color: #ffffff;
    font-weight: bold;
    background-color: #fee600;
    color: #000000;
  }
  .page--contact.page--detail .form-submit button:hover {
    background: #fee600;
    color: #000000;
  }
  .page--support .section--detail.deals .section-tit, .page--support .section--detail.terms .section-tit, .page--support .section--detail.device .section-tit {
    font-size: 22px;
    font-weight: 600;
  }
  .page--support .section--detail.terms .txt:nth-of-type(2) {
    margin-bottom: 30px;
  }
  .page--support .section--detail.terms .list--support li {
    position: relative;
    padding-left: 1em;
  }
  .page--support .section--detail.terms .list--support li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 0;
  }
  .page--support .section--detail.terms .list--support .list--inner li {
    padding-left: 0;
  }
  .page--support .section--detail.terms .list--support .list--inner li:before {
    content: none;
  }
  .page--support .section--detail .txt {
    font-size: 12px;
    line-height: 1.7;
  }
  .page--support .section--detail .list--support {
    font-size: 12px;
  }
  .page--support .section--detail .list--support li {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8;
  }
  .page--support .section--detail .list--support a {
    display: inline-block;
    text-decoration: underline;
    color: #fee600;
  }
  .page--support .section--detail .list--support .txt--link {
    color: #fee600;
  }
  .page--support .section--detail .list--support dt {
    font-weight: bold;
    margin-bottom: 2px;
  }
  .page--support .section--detail .list--support dd {
    margin-bottom: 16px;
  }
  .page--support .section--detail .list--support .list--inner {
    display: block;
    margin: 10px 0 0 1em;
  }
  .page--support .section--detail .list--support .list--inner li {
    margin-bottom: 10px;
  }
  .page--support .section--detail .list--support .list--inner li .title {
    margin-bottom: 4px;
  }
  .page--support .section--detail .sub-list {
    margin-top: 1em;
  }
  .page--support .section--detail .sub-list li {
    margin: 0 0 10px -1em;
    text-indent: -1em;
    padding-left: 3em;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--faq .txt--no-data {
    font-size: 12px;
  }
  .page--faq .section--list.faq .section-tit {
    font-size: 22px;
    font-weight: 600;
  }
  .page--faq .section--list .block--contact {
    font-size: 12px;
  }
  .page--faq .section--list .block--contact a {
    text-decoration: underline;
  }
  .page--faq .section--list .btn {
    margin: 20px 0;
    text-align: center;
  }
  .page--faq .section--list .txt--sub {
    font-size: 0.8em;
  }
  .page--faq .searchBox {
    position: relative;
    margin: 10px auto 30px;
  }
  .page--faq .searchBox input[type=text] {
    padding: 0.5em 1em;
    width: 100%;
    background: #ffffff;
    color: #000000;
    font-size: 12px;
  }
  .page--faq .searchBox input[type=submit] {
    width: 40px;
    font-family: FontAwesome;
    font-size: 17px;
    font-weight: bold;
    line-height: 40px;
    color: #505050;
    background: transparent;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: -4px;
    right: 3px;
    z-index: 2;
    cursor: pointer;
  }
  .page--faq .list--faq {
    margin: 0 0 30px;
  }
  .page--faq .list--faq li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
  }
  .page--faq .list--faq li:first-child {
    border-top: 2px solid #ffffff;
  }
  .page--faq .list--faq li .tit {
    margin: 0 0 0 0.75em;
  }
  .page--faq .list--faq li a {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    color: #ffffff;
    padding: 6px 0;
    text-decoration: none;
  }
  .page--faq .list--faq .icon--q {
    line-height: 1;
  }
  .page--faq .tit--category {
    margin: 0 0 6px;
    font-weight: bold;
    font-size: 12px;
  }
  .page--faq .block--faq-detail {
    border: 1px solid #ffffff;
    padding: 12px 5%;
    margin: 0 0 30px;
  }
  .page--faq .block--faq-detail dt {
    border-bottom: 1px solid #ffffff;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }
  .page--faq .block--faq-detail dt, .page--faq .block--faq-detail .dd {
    font-size: 12px;
  }
  .page--faq .block--faq-detail .txt {
    padding-left: 40px;
    font-size: 12px;
  }
  .page--faq .block--faq-detail .txt a {
    font-weight: bold;
    display: inline;
    text-decoration: underline;
    color: #fee600;
    font-size: 12px;
  }
  .page--faq .block--faq-detail .icon--q,
  .page--faq .block--faq-detail .icon--a {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: block;
    text-align: center;
    box-sizing: border-box;
    float: left;
    line-height: 26px;
    font-family: anton, sans-serif;
    font-weight: 400;
  }
  .page--faq .block--faq-detail .icon--q {
    border: 1px solid #ffffff;
  }
  .page--faq .block--faq-detail .icon--a {
    vertical-align: top;
    color: #000000;
    background: #ffffff;
  }
  .page--faq .block--contact {
    margin: 20px 0 0;
    font-size: 12px;
  }
  .page--faq .block--contact a {
    text-decoration: none;
    font-weight: bold;
  }
  .page--faq .block--contact a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #ffffff;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--faq .block--contact a::after {
    border-width: 2px;
  }
  .page--error .section-tit {
    font-size: 8vw !important;
  }
  .page--error .txt {
    margin-bottom: 100px;
    font-size: 12px;
  }
}/*# sourceMappingURL=fanclub-service.css.map */