@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;
  letter-spacing: 0.25em;
  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 1.5vw 0 0;
  height: 44px;
  line-height: 44px;
  text-transform: uppercase;
  float: left;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 28px 28px;
}
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;
  line-height: 44px;
}

.footer {
  width: 100%;
  background: #202020;
  padding: 20px 0;
}
.footer .nav--support .privacy {
  display: inline-block;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .footer .nav--support .privacy {
    font-size: 12px;
    margin: 0 0 0 10px;
    background: url(/static/livemasters/common/sp_news_arrow.png) left center no-repeat;
    background-size: 12px 12px;
    padding: 0 0 0 16px;
    height: 12px;
    line-height: 1em;
  }
}
.footer .nav--support .privacy a {
  font-size: 14px;
}
@media screen and (min-width: 961px) {
  .footer .nav--support .privacy a:hover {
    color: #fee600;
  }
}
@media screen and (min-width: 961px) {
  .footer .nav--support .privacy:hover {
    background: url(/static/livemasters/common/arrow_next_on.png) left center;
    background-size: 8px 13px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .footer .nav--support .twitter {
    float: right;
    margin-right: 10px;
  }
  .footer .nav--support .twitter i {
    font-size: 20px;
    color: #55ACED;
  }
}

.page--home .footer {
  position: inherit;
}

#sb-site {
  position: relative;
}
@media screen and (min-width: 961px) {
  #sb-site {
    padding: 0 0 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  #sb-site {
    padding: 50px 0 0;
  }
}

.contents {
  border-bottom: 1px solid #474747;
  position: relative;
}
@media screen and (min-width: 961px) {
  .contents {
    min-width: 960px;
    padding: 80px 0 80px;
  }
  .contents.no-border {
    border: none;
    padding: 70px 0 0;
  }
}
@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: 60px 60px;
  width: 60px;
  height: 60px;
}
.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;
  font-family: muli, sans-serif;
  font-weight: 700;
  color: #ffffff;
  z-index: 50;
  line-height: 1em;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .swiper-count {
    width: 62px;
    height: 40px;
    margin: 0 0 0 400px;
    font-size: 34px;
    top: 20px;
    right: 15%;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .swiper-count {
    width: 32px;
    height: 20px;
    margin: 0;
    font-size: 16px;
    top: 11%;
    right: 15%;
  }
}
.swiper-count .nowCount {
  font-size: 36px;
  height: 36px;
  line-height: 1em;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 961px) {
  .swiper-count .nowCount {
    font-size: 36px;
    height: 36px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .swiper-count .nowCount {
    font-size: 18px;
    height: 20px;
  }
}
@media screen and (min-width: 961px) {
  .swiper-count .totalCount {
    font-size: 24px;
    position: absolute;
    left: 38px;
    bottom: 2px;
    height: 24px;
    line-height: 1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .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;
}
.block--pager li {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .block--pager li a,
  .block--pager li span {
    padding: 5px 0.6em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--pager li a,
  .block--pager li span {
    padding: 0 0.6em;
  }
}
.block--pager li.pager__item--older span, .block--pager li.pager__item--newer span {
  opacity: 0.5;
}
.block--pager li.pager__item--older {
  float: right;
}
.block--pager li.pager__item--older span::after,
.block--pager li.pager__item--older 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;
}
.block--pager li.pager__item--newer {
  float: left;
}
.block--pager li.pager__item--newer span::after,
.block--pager li.pager__item--newer a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #ffffff;
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  vertical-align: middle;
}
.block--pager li.pager__item--current {
  color: #fee600;
}
@media screen and (min-width: 961px) {
  .block--pager .pager__item--current,
  .block--pager .pager__item--other {
    margin-right: 2px;
  }
  .block--pager .pager__item--current a,
  .block--pager .pager__item--other a {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .block--pager .pager__item--current a:hover,
  .block--pager .pager__item--other a:hover {
    color: #fee600;
  }
  .block--pager .pager__item--older a:after,
  .block--pager .pager__item--newer a:after {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .block--pager .pager__item--older:hover a:after {
    border-color: #fee600;
  }
  .block--pager .pager__item--newer:hover a:after {
    border-color: #fee600;
  }
}

.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: 250px;
  }
  .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;
  background: url(/static/livemasters/common/bg_live_schedule_off.png) no-repeat center;
  background-size: contain;
  width: 250px;
  height: 250px;
  color: #fee600;
  margin: 0;
}
.block--month .list--month li a:hover {
  background: url(/static/livemasters/common/bg_live_schedule_on.png) no-repeat center;
  background-size: contain;
}
.block--month .list--month li a span {
  display: block;
}
.block--month .list--month li.current a {
  background: url(/static/livemasters/common/bg_live_schedule_on.png) no-repeat center;
  background-size: contain;
}

@media screen and (min-width: 961px) {
  .block--share {
    margin: 20px 0 0;
  }
  .block--share li {
    margin: 0 0 0 20px;
  }
  .block--share li i {
    font-size: 36px;
  }
  .block--share li:hover i {
    color: #fee600;
  }
}
@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;
}

.liveinfo {
  margin: 20px 0 0;
  background: #1e1e1e;
  padding: 20px;
}
.liveinfo .title {
  border-bottom: 2px solid #898989;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (min-width: 961px) {
  .liveinfo .title {
    font-size: 20px;
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .liveinfo .title {
    font-size: 14px;
    margin: 0 0 5px;
    padding: 0 0 5px;
  }
}
.liveinfo .description {
  font-size: 12px;
}

.linkinfo {
  background: #1e1e1e;
}
@media screen and (min-width: 961px) {
  .linkinfo {
    margin: 20px 0 0;
    padding: 20px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .linkinfo {
    margin: 20px 10px 0;
    padding: 10px;
  }
}
.linkinfo ul li {
  margin: 0 0 5px;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .linkinfo ul li {
    font-size: 12px;
  }
}
.linkinfo ul li a {
  color: #ffffff !important;
}
.linkinfo ul li i {
  margin-left: 5px;
  font-size: 18px;
}

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

.ph {
  position: relative;
  margin: 2em auto;
  line-height: 0;
}
.ph .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ph img:not(.dummy) {
  display: block;
  margin: 0 auto;
}

.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;
}

#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%);
}

/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  #sb-site, .sb-site-container {
    width: 100%;
    min-height: 100vh;
  }
  .btn.up {
    width: 370px;
    height: 60px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin: 40px auto 20px;
  }
  .btn.up a {
    background: #fee600;
    color: #000000;
    font-weight: bold;
    width: 100%;
    height: 100%;
    line-height: 60px;
  }
  .btn.up:hover {
    background: transparent;
  }
  .btn.up:hover a {
    color: #000000;
  }
  a:hover,
  a.selected {
    color: #fee600;
  }
  /* .header,nav
  ------------------------------ */
  nav.pc .inner {
    width: 80vw;
    min-width: 1020px;
  }
  nav.pc .inner ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  nav.pc .inner .navFcsite a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
  }
  nav.pc .inner .navFcsite svg {
    width: 86px;
    height: 14px;
    display: block;
    fill: #ffffff;
    transform: translateY(-2px);
  }
  nav.pc .inner .navFcsite:hover svg, nav.pc .inner .navFcsite a.selected svg {
    fill: #fee600;
  }
  /* .footer
  ------------------------------ */
  .footer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .footer .nav--support li {
    display: inline-block;
    padding: 0 0 0 1.5em;
    position: relative;
  }
  .footer .nav--support li::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #ffffff;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .footer .nav--support li:hover:after {
    border-color: #fee600;
  }
  .footer .nav--support li a {
    font-size: 14px;
  }
  .footer .nav--support li:after {
    position: absolute;
    top: 0.5em;
    left: 0;
  }
  .footer .copyright {
    color: #686868;
    font-size: 12px;
    float: right;
  }
  /* list
  ------------------------------ */
  .list--info li {
    margin: 0 2% 20px 0;
    background: #1e1e1e;
  }
  .list--info li a {
    width: 100%;
    height: 100%;
    border: 1px solid #161616;
    padding: 20px 6%;
  }
  .list--info li a:hover {
    border: 1px solid #fee600;
    background: url(/static/livemasters/common/arrow_yellow.png) no-repeat right center;
  }
  .list--info li a .date {
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
    height: 20px;
  }
  .list--info li a .title {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.3em;
  }
  .list--info li a .text {
    display: block;
    line-height: 1.3em;
    margin: 0 0 10px;
    max-height: 40px;
  }
  .list--info li:nth-child(even) {
    margin-right: 0;
  }
  .newsList #btnMoreContainer .loading {
    margin: 20px auto 0;
    width: 32px;
    height: 32px;
  }
  .list--ticket li {
    background: #1e1e1e;
    float: left;
  }
  .list--ticket li a {
    width: 100%;
    border: 1px solid #161616;
  }
  .list--ticket li a:hover {
    border: 1px solid #fee600;
    background: url(/static/livemasters/common/arrow_yellow.png) no-repeat right center;
  }
  .list--ticket li a .date {
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
    height: 20px;
  }
  .list--ticket li a .title {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.3em;
  }
  .list--ticket li a .text {
    display: block;
    line-height: 1.3em;
    margin: 0 0 10px;
    max-height: 40px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .list--ticket li:nth-child(even) {
    margin-right: 0;
  }
  .list--ticket .thumb {
    min-width: 140px;
    width: 35%;
    height: 110px;
  }
  .list--ticket .thumb img {
    width: 100%;
    height: 100%;
    background-size: cover;
  }
  .list--ticket .airtist, .list--ticket .category {
    display: inline-block;
    background: #fee600;
    color: #000000;
    font-size: 12px;
    line-height: 1.1em;
    margin: 0 5px 5px 0;
    padding: 1px;
    -webkit-box-decoration-break: clone;
  }
  .list--airtist li {
    width: 31%;
    float: left;
    margin: 0 3% 40px 0;
  }
  .list--airtist li:nth-child(3n) {
    margin: 0;
  }
  .list--airtist li figure > a {
    display: table-cell;
    width: 300px;
    height: 225px;
    background: #313131;
    vertical-align: middle;
    position: relative;
  }
  /* .pickup
  ------------------------------ */
  /* .page--home
  ------------------------------ */
  /* .page--home以外基本のレイアウト
  ------------------------------ */
  /* .page--info
  ------------------------------ */
  /* .page--live
  ------------------------------ */
  /* .page--airtist
  ------------------------------ */
  /* .page--privacy
  ------------------------------ */
  /* .page--campany
  ------------------------------ */
  /* .page--venue
  ------------------------------ */
  /* .page--guide
  ------------------------------ */
  /* .page--contact
  ------------------------------ */
  /* .page--error
  ------------------------------ */
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .list--airtist li figure > a {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .list--airtist li figure > a:hover:after {
    content: "";
    width: 100%;
    height: 225px;
    border: 1px solid #fee600;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
  }
  .list--airtist li figure > a img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
  }
  .list--airtist li figcaption.title {
    text-align: center;
    font-size: 16px;
    line-height: 1.3em;
    margin: 10px 0 0;
  }
  .pickup {
    width: 90%;
    margin: 154px auto 20px;
    opacity: 1;
    transition: all 0.3s ease-out 0.5s;
    -webkit-transition: all 0.3s ease-out 0.5s;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .pickup .section-tit {
    width: 132px;
    text-align: center;
    display: block;
    background: #fee600;
    color: #000000;
    margin-right: 8px;
  }
  .pickup .section-tit > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
  }
  .pickup .list--pickup {
    flex-grow: 1;
  }
  .pickup .list--pickup li {
    background: #171717;
    margin-bottom: 3px;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .pickup .list--pickup li a {
    padding: 14px;
  }
  .pickup .list--pickup li:hover {
    transform: translateX(30px);
  }
  .page--home .mainVisual {
    position: relative;
    min-width: 960px;
    opacity: 0;
    transition: all 0.3s ease-out 0.5s;
    -webkit-transition: all 0.3s 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: 960px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    line-height: 1.3em;
    background: rgba(255, 255, 255, 0.5);
  }
  .page--home .contents {
    border-bottom: 1px solid #474747;
    position: relative;
    min-width: 960px;
    padding: 80px 0 80px;
    transition: all 0.3s ease-out 0.3s;
    -webkit-transition: all 0.3s ease-out 0.3s;
    opacity: 0;
  }
  .page--home .contents.flex-wrap .inner {
    border: none;
    padding: 80px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .contents.delighter.started {
    opacity: 1;
  }
  .page--home .contents [class^=section--] .section-tit {
    text-transform: uppercase;
    color: #fee600;
    text-align: center;
    white-space: nowrap;
    font-size: 60px;
    position: relative;
    margin: 0 0 40px;
    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: 92px;
    height: 6px;
  }
  .page--home .list--info li, .page--home .list--ticket li {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .page--home .list--info li:hover, .page--home .list--ticket li:hover {
    transform: translateY(-10px);
  }
  .page--home .list--info li .text, .page--home .list--ticket li .text {
    margin: 0;
  }
  .page--home .section--news .list--info {
    display: inherit;
  }
  .page--home .section--news .list--info li {
    width: 31%;
    min-width: 300px;
    min-height: 140px;
    float: left;
    margin: 0 30px 20px 0;
  }
  .page--home .section--news .list--info li:nth-child(3n) {
    margin: 0 0 20px 0;
  }
  .page--home .section--news .list--info li a {
    padding: 10px 20px;
  }
  .page--home .section--ticket .block--tab .tab li:nth-child(2) {
    margin-left: 30px;
  }
  .page--home .section--ticket .panel li#pre, .page--home .section--ticket .panel li#general {
    display: block;
  }
  .page--home .section--ticket .list--ticket li {
    width: 470px;
    float: left;
    margin: 0 20px 20px 0;
  }
  .page--home .section--ticket .list--ticket li:nth-child(even) {
    margin-right: 0;
  }
  .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 .list--ticket .thumb {
    width: 35%;
    margin-right: 12px;
  }
  .page--home .section--ticket .list--ticket .block--txt {
    width: 63%;
    display: block;
    line-height: 1.3em;
    margin: 0 0 10px;
  }
  .page--home .section--ticket .list--ticket .block--txt .title {
    font-size: 14px;
    font-weight: normal;
  }
  .page--home .section--live .block--month {
    position: relative;
  }
  .page--home .section--live .block--month .swiper-container {
    height: 260px;
    margin: 0 auto;
  }
  .page--home .section--live .block--month .slick-list {
    width: 840px;
    margin: 0 auto;
  }
  .page--home .section--live .block--month .swiper-button-prev {
    left: 0;
  }
  .page--home .section--live .block--month .swiper-button-next {
    right: 0;
  }
  .page--home .section--live .block--month .swiper-button-prev,
  .page--home .section--live .block--month .swiper-button-next {
    z-index: 1;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
    margin-top: -34px;
  }
  .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 {
    margin: 0 auto;
  }
  .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: 60px;
    margin-right: 5px;
  }
  .page--home .section--live .block--month .list--month a .month {
    font-size: 30px;
  }
  .page--home .section--live .block--month .list--month a .year {
    line-height: 1;
    font-size: 25px;
  }
  .page--home .section--twitter {
    width: 31%;
  }
  .page--home .section--twitter .timeline {
    height: 400px;
  }
  .page--home .section--twitter .timeline iframe {
    height: 100%;
    display: block;
  }
  .page--home .section--fc {
    width: 31%;
  }
  .page--home .section--fc > div {
    height: 400px;
    background: #161616;
    box-sizing: border-box;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home .section--fc > div {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .page--home .section--fc > div .logo {
    width: 70%;
    display: block;
    margin: 0 auto 10px;
  }
  .page--home .section--fc > div .logo img {
    width: 100%;
  }
  .page--home .section--fc > div .link {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
  }
  .page--home .section--fc > div .note {
    color: #bcbcbc;
    font-size: 12px;
    line-height: 2;
  }
  .page--home .section--contact {
    width: 31%;
  }
  .page--home .section--contact > div {
    height: 400px;
    background: #161616;
    box-sizing: border-box;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 961px) and (-ms-high-contrast: active), screen and (min-width: 961px) and (-ms-high-contrast: none) {
  .page--home .section--contact > div {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .page--home .section--contact > div p.mail {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    height: 20px;
    line-height: 1em;
    color: #FFF;
  }
  .page--home .section--contact > div p.mail span {
    color: #fee600;
    margin: 0 20px 0 0;
    background: url(static/livemasters/common/icon_mail.png) no-repeat;
  }
  .page--home .section--contact > div p.tel {
    margin: 15px 0 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    height: 20px;
    line-height: 1em;
    color: #FFF;
  }
  .page--home .section--contact > div p.tel span {
    color: #fee600;
    margin: 0 20px 0 0;
    background: url(static/livemasters/common/icon_tel.png) no-repeat;
  }
  .page--home .section--contact > div .block--form:first-of-type {
    margin-bottom: 20px;
  }
  .page--home .section--contact > div .block--form .block-tit {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .page--home .section--contact > div .block--form .btn--main {
    font-weight: bold;
    font-size: 15px;
    background-color: #474747;
  }
  .page--home .section--contact > div .block--form .btn--main:hover {
    background-color: #fee600;
    color: #000000;
  }
  .page--home .section--contact > div .note {
    text-align: left;
    color: #bcbcbc;
    font-size: 12px;
    line-height: 2;
    margin-bottom: 26px;
  }
  .page--home .section--contact > div .note a {
    text-decoration: underline;
    display: inline-block;
    color: #fee600;
  }
  .page--home .section--contact > div .note a:hover {
    text-decoration: none;
  }
  body:not(.page--home) .section--list .section-tit,
  body:not(.page--home) .section--detail .section-tit {
    font-size: 60px;
    line-height: 1.3;
    color: #fee600;
    text-align: center;
    margin-bottom: 40px;
  }
  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: 92px;
    height: 6px;
  }
  body:not(.page--home) .section--list .detail__btn,
  body:not(.page--home) .section--detail .detail__btn {
    margin-top: 60px;
  }
  body:not(.page--home) .section--detail .tit {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3em;
    margin: 0 0 40px;
  }
  body:not(.page--home) .section--detail .date {
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 10px;
  }
  body:not(.page--home) .section--detail .txt a {
    color: #fee600;
  }
  .page--info .section--list .text {
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .page--info .list--info li {
    width: 470px;
    float: left;
    margin: 0 20px 20px 0;
  }
  .page--info .list--info li:nth-of-type(even) {
    margin-right: 0;
  }
  .page--info .list--info a {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto; /* fix IE11 */
  }
  .page--info .list--info a > * {
    flex-shrink: 0; /* fix IE11 */
  }
  .page--info .list--info .block--text .text {
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .page--info .section--detail h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3em;
    margin: 0 0 40px;
  }
  .page--info .section--detail .txt a {
    display: inline-block;
    text-decoration: underline;
    color: #fee600;
  }
  .page--ticket .section--list .block--tab .tab li:nth-child(2) {
    margin-left: 30px;
  }
  .page--ticket .section--list .list--ticket li {
    width: 470px;
    margin: 0 20px 20px 0;
  }
  .page--ticket .section--list .list--ticket li:nth-of-type(even) {
    margin-right: 0;
  }
  .page--ticket .section--list .list--ticket li a {
    display: block;
    height: 100%;
    min-height: 100px;
    box-sizing: border-box;
    padding: 20px 30px;
  }
  .page--ticket .section--list .list--ticket li a .thumb {
    margin-right: 12px;
    float: left;
  }
  .page--ticket .section--list .list--ticket .block--txt .title {
    font-weight: normal;
  }
  .page--ticket .section--detail .date {
    display: none;
  }
  .page--ticket .section--detail .title {
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 10px;
  }
  .page--ticket .section--detail .flex-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--ticket .section--detail .flex-wrap .thumb {
    width: 43%;
    height: 17.5vw;
    line-height: 0;
  }
  .page--ticket .section--detail .flex-wrap .thumb img {
    width: 100%;
    height: 100%;
  }
  .page--ticket .section--detail .flex-wrap .txt {
    width: 55%;
  }
  .page--ticket .section--detail .block--cat {
    margin-bottom: 20px;
  }
  .page--ticket .section--detail .block--cat .airtist, .page--ticket .section--detail .block--cat .category {
    display: inline-block;
    background: #fee600;
    color: #000000;
    font-size: 16px;
    line-height: 1.1em;
    margin: 0 5px 5px 0;
    padding: 1px;
  }
  .page--ticket .section--detail .txt p {
    margin-bottom: 1em;
  }
  .page--ticket .section--detail .txt a {
    display: inline-block;
    text-decoration: underline;
    color: #fee600;
  }
  .page--choice .section--list .block--latest {
    position: relative;
    margin: 0 0 60px;
  }
  .page--choice .section--list .block--latest .block-tit {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3em;
    margin: 0 0 40px;
  }
  .page--choice .section--list .block--latest .flex-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--choice .section--list .block--latest .flex-wrap .thumb {
    width: 40%;
    line-height: 0;
    min-width: 390px;
    height: 264px;
    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: cover;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text {
    width: 550px;
    width: 57%;
    color: #FFF;
    padding: 0 0 48px;
  }
  .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 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 270px;
    height: 48px;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text .btn .btn--main {
    display: block;
    line-height: 48px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  .page--choice .section--list .backnumber {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: bold;
  }
  .page--choice .section--list .list--info li {
    width: 470px;
    float: left;
    margin: 0 20px 20px 0;
  }
  .page--choice .section--list .list--info li:nth-of-type(even) {
    margin: 0;
  }
  .page--choice .section--list .list--info li a {
    height: 60px;
    line-height: 60px;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 20px;
  }
  .page--choice .section--detail .gallery-top {
    margin: 0 20px;
  }
  .page--choice .section--detail .gallery-top .swiper-wrapper .swiper-slide {
    width: 100%;
    display: block;
  }
  .page--choice .section--detail .gallery-top .swiper-wrapper .swiper-slide .ph {
    margin: 0;
  }
  .page--choice .section--detail .gallery-top .swiper-button-prev {
    background: url(/static/livemasters/common/btnPrev.png) no-repeat;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
    margin: -30px 0 0;
    left: 0;
  }
  .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;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
    margin: -30px 0 0;
    right: 0;
  }
  .page--choice .section--detail .gallery-top .swiper-button-next:hover {
    background: url(/static/livemasters/common/btnNext_on.png) no-repeat;
  }
  .page--choice .section--detail .swiper-pagination {
    position: relative;
    text-align: left;
    margin: 10px 18px 40px 20px;
  }
  .page--choice .section--detail .swiper-pagination-bullet {
    width: 72px;
    height: auto;
    border-radius: 0;
    opacity: 1;
    margin: 0 3px 2px 0;
    border: 1px solid #000000;
    opacity: 0.3;
  }
  .page--choice .section--detail .swiper-pagination-bullet:nth-child(12) {
    margin: 0 0 2px 0;
  }
  .page--choice .section--detail .swiper-pagination-bullet-active {
    border: 1px solid #fee600;
    opacity: 1;
  }
  .page--choice .section--detail .swiper-pagination-bullet img {
    width: 100%;
    display: block;
  }
  .page--choice .section--detail .thumb {
    width: 100%;
    margin-bottom: 30px;
    height: 650px;
    position: relative;
  }
  .page--choice .section--detail .thumb img.dummy {
    position: absolute;
    top: 0;
    left: 0;
  }
  .page--choice .section--detail .thumb img {
    width: 100%;
    height: 100%;
    background-size: contain;
  }
  .page--choice .section--detail .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3em;
    margin: 0 0 20px;
  }
  .page--choice .section--detail .btn {
    margin: 30px auto;
  }
  .page--choice .section--detail .btn a {
    display: block;
    box-sizing: border-box;
    font-weight: bold;
    background: #474747;
    color: #ffffff !important;
  }
  .page--choice .section--detail .btn a:hover {
    background: #fee600;
    color: #000000 !important;
  }
  .page--choice .section--detail .btnSet {
    margin: 0 0 30px;
  }
  .page--choice .section--detail .btnSet .btnPdf {
    float: right;
    width: 270px;
    height: 48px;
    margin: 0 0 0 20px;
  }
  .page--choice .section--detail .txt p {
    margin-bottom: 1em;
  }
  .page--choice .section--detail .block-cover {
    margin: 20px 0;
    padding: 5px 3%;
    border: 1px solid #FFF;
  }
  .page--live .section--list .block--month {
    margin: 100px 0 60px;
    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: 70px;
    margin-right: 10px;
  }
  .page--live .section--list .block--month .title span.year {
    font-size: 30px;
  }
  .page--live .section--list .block--month .month-pager {
    font-family: anton, sans-serif;
    font-weight: 400;
    font-size: 30px;
    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 {
    display: flex;
    width: 100%;
  }
  .page--live .section--list .block--day .list--info li.block-data {
    width: 470px;
    float: left;
    margin: 0 20px 20px 0;
  }
  .page--live .section--list .block--day .list--info + .block--nodata {
    display: none;
  }
  .page--live .section--list .block--day .block--nodata {
    width: 100%;
    margin: 100px 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: 50px;
    line-height: 50px;
    font-size: 28px;
    font-weight: bold;
    color: #fee600;
    margin: 30px 0 10px;
    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: 50px;
  }
  .page--live .section--list .list--info li.block-data a {
    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: 140px;
    width: 35%;
    margin-right: 12px;
  }
  .page--live .section--detail .title {
    font-size: 28px;
    font-weight: bold;
    color: #FFF;
    line-height: 1.6em;
    margin: 0 0 10px;
    font-weight: bold;
  }
  .page--live .section--detail .thumb {
    width: 100%;
    height: 460px;
    margin-bottom: 5px;
  }
  .page--live .section--detail .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
  }
  .page--live .section--detail .cat.airtist {
    display: inline-block;
    background: #fee600;
    color: #000000;
    font-size: 20px;
    line-height: 1.1em;
    margin: 0 10px 40px 0;
    padding: 1px 3px;
  }
  .page--live .section--detail .cat.airtist a {
    display: block;
    text-decoration: none;
    color: #000;
  }
  .page--live .section--detail .block--liveinfo {
    position: relative;
  }
  .page--live .section--detail .block--liveinfo dt {
    position: absolute;
    background: #fee600;
    color: #000000;
    font-size: 13px;
    height: 18px;
    line-height: 18px;
    margin: 10px 0 0;
    width: 120px;
    text-align: center;
    text-transform: uppercase;
  }
  .page--live .section--detail .block--liveinfo dd {
    padding: 10px 0 10px 140px;
    color: #FFF;
    border-bottom: 2px solid #898989;
    word-wrap: break-word;
    min-height: 22px;
  }
  .page--live .section--detail .block--liveinfo dd a {
    display: inline-block;
    text-decoration: underline;
    color: #fee600;
  }
  .page--airtist .pageback {
    margin-top: 100px;
  }
  .page--airtist .section--list .list--airtist {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .page--airtist .section--list .list--airtist li {
    float: none;
  }
  .page--airtist .section--detail .block--tab .tab li {
    width: 32%;
  }
  .page--airtist .section--detail .block--tab .tab li:last-of-type {
    margin-left: 0;
  }
  .page--airtist .section--detail .title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 10px;
  }
  .page--airtist .section--detail .thumb {
    margin-bottom: 5px;
    width: 100%;
    height: 460px;
  }
  .page--airtist .section--detail .thumb img {
    width: 100%;
    height: 100%;
  }
  .page--airtist .section--detail .link-airtist {
    text-align: right;
    margin-bottom: 30px;
    font-size: 16px;
  }
  .page--airtist .section--detail .link-airtist p {
    display: inline-block;
  }
  .page--airtist .section--detail .link-airtist p:first-of-type {
    margin-right: 16px;
  }
  .page--airtist .section--detail .link-airtist p:last-of-type {
    margin-left: 16px;
  }
  .page--airtist .section--detail .link-airtist p.site a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    padding: 0 16px 0 0;
    background: url(/static/livemasters/common/icon_window.png) right center no-repeat;
    background-size: 12px 14px;
  }
  .page--airtist .section--detail .link-airtist p.twitter i, .page--airtist .section--detail .link-airtist p.facebook i {
    font-size: 20px;
  }
  .page--airtist .section--detail .panel li .thumb {
    width: 140px;
    margin-right: 12px;
    margin-bottom: 0;
    height: 110px;
    float: left;
  }
  .page--airtist .section--detail .panel li .date {
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
    height: 20px;
  }
  .page--airtist .section--detail .panel li .title {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.3em;
  }
  .page--airtist .section--detail .panel li .text, .page--airtist .section--detail .panel li .venue {
    max-height: 40px;
    display: block;
    line-height: 1.3em;
    margin: 0 0 10px;
  }
  .page--airtist .section--detail .panel li .airtist, .page--airtist .section--detail .panel li .category {
    display: block;
    float: left;
    background: #fee600;
    color: #000000;
    font-size: 12px;
    line-height: 1.1em;
    margin: 0 5px 5px 0;
    padding: 1px;
  }
  .page--airtist .section--detail .panel .list--ticket li {
    width: 470px;
    float: left;
    margin: 0 20px 20px 0;
  }
  .page--airtist .section--detail .panel .list--ticket li:nth-of-type(even) {
    margin: 0 0 20px 0;
  }
  .page--airtist .section--detail .panel .list--ticket li a {
    height: 100%;
    min-height: 100px;
    padding: 20px 30px;
    display: flex;
  }
  .page--airtist .section--detail .panel .list--info li {
    width: 470px;
    float: left;
    margin: 0 20px 20px 0;
  }
  .page--airtist .section--detail .panel .list--info li:nth-of-type(even) {
    margin: 0 0 20px 0;
  }
  .page--support .lead {
    margin-bottom: 30px;
  }
  .page--support .block--text {
    margin-bottom: 30px;
  }
  .page--support .block--text .block-tit {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: bold;
  }
  .page--campany .companyInfo {
    border-collapse: separate;
    border-spacing: 0 5px;
  }
  .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 40px;
  }
  .page--venue .tab li {
    display: inline-flex;
    font-size: 20px;
    position: relative;
  }
  .page--venue .tab li a {
    margin: 0 5px;
  }
  .page--venue .tab li a.selected, .page--venue .tab li a :hover {
    color: #fee600;
  }
  .page--venue .block-tit {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: bold;
  }
  .page--venue .panel li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--venue dl {
    position: relative;
    width: 470px;
    width: 48%;
    margin-bottom: 20px;
    background: #1e1e1e;
  }
  .page--venue dl:nth-child(odd) {
    margin-right: 2%;
  }
  .page--venue dl dt {
    padding: 10px 145px 10px 10px;
    font-size: 14px;
  }
  .page--venue dl dd {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px;
    text-align: right;
    padding: 10px;
    font-size: 14px;
  }
  .page--venue dl dd a {
    color: #fee600;
    text-decoration: underline;
    margin: 0 0 0 5px;
  }
  .page--venue dl dd a:hover {
    text-decoration: none;
  }
  .page--guide [class^=block--] {
    position: relative;
    padding: 0 0 40px;
    border-bottom: 1px solid #474747;
    margin: 0 0 60px;
  }
  .page--guide [class^=block--]:last-of-type {
    border: none;
    margin: 0;
  }
  .page--guide [class^=block--] .block-tit {
    height: 40px;
    margin: 0 0 20px;
  }
  .page--guide [class^=block--] .text {
    margin: 0 0 40px;
  }
  .page--guide [class^=block--] .text p {
    margin: 0 0 20px;
  }
  .page--guide [class^=block--] .text .tel {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: bold;
  }
  .page--guide [class^=block--] .text.contact .title {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: bold;
  }
  .page--guide [class^=block--] .text.contact p a {
    color: #fee600;
    display: inline-block;
    text-decoration: underline;
  }
  .page--guide [class^=block--] .text.contact p a:hover {
    text-decoration: none;
  }
  .page--guide [class^=block--] p.link a {
    display: inline-block;
    color: #fee600;
    text-decoration: underline;
  }
  .page--guide [class^=block--] .btnHP {
    position: absolute;
    top: 0;
    right: 0;
  }
  .page--guide [class^=block--] .btnHP a {
    display: block;
    width: 270px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #231f20;
    text-decoration: none;
  }
  .page--guide [class^=block--] .btnHP a:hover {
    background: #fee600;
    color: #000000;
  }
  .page--guide [class^=block--] .commission h3 {
    background: #fee600;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    margin: 0 0 20px;
  }
  .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;
    text-align: center;
    border: 1px solid #ffffff;
    vertical-align: middle;
    line-height: 1.6em;
    font-size: 13px;
    text-align: left;
    width: 23%;
  }
  .page--guide .block--eplus .block-tit img {
    width: 228px;
  }
  .page--guide .block--pia .block-tit img {
    width: 184px;
  }
  .page--guide .block--lowson .block-tit img {
    width: 103px;
  }
  .page--guide .block--line .block-tit img {
    width: 302px;
  }
  .page--guide .block--tixpla .block-tit img {
    width: 302px;
  }
  .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: 16px;
    margin-bottom: 10px;
  }
  .page--guide .block--tixpla .cell {
    display: inline-block;
    border: 1px solid;
    padding: 15px 10px;
    margin-bottom: 10px;
  }
  .page--guide .block--tixpla .text:first-of-type {
    margin-bottom: 30px;
  }
  .page--contact [class^=section--] {
    width: 700px;
    min-height: 300px;
    margin: 0 auto;
  }
  .page--contact [class^=section--] .lead {
    margin-bottom: 30px;
  }
  .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;
  }
  .page--contact [class^=section--] [class^=block--] {
    margin-bottom: 30px;
    padding: 30px 10%;
    border: 1px solid #ffffff;
  }
  .page--contact [class^=section--] [class^=block--] .block-tit {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
  }
  .page--contact [class^=section--] [class^=block--] .block-tit + .btn .btn--main {
    background-color: #474747;
    color: #ffffff;
    font-weight: bold;
  }
  .page--contact [class^=section--] [class^=block--] .block-tit + .btn .btn--main:hover {
    background-color: #fee600;
    color: #000000;
  }
  .page--contact [class^=section--] .block--text {
    border: none;
    background-color: #231f20;
    font-size: 20px;
    font-weight: bold;
    margin: 70px 0 0;
  }
  .page--contact [class^=section--] .block--text p {
    display: inline-block;
  }
  .page--contact [class^=section--] .block--text > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--contact [class^=section--] .block--text > div:first-of-type {
    margin-bottom: 30px;
  }
  .page--contact [class^=section--] .block--text > div .title {
    width: 50%;
    color: #fee600;
  }
  .page--contact [class^=section--] .block--text > div p:not(.title) {
    width: 50%;
  }
  .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: 38px !important;
  }
  .page--contact.page--detail .section-tit span {
    padding-bottom: 10px;
  }
  .page--contact.page--detail iframe {
    display: none;
  }
  .page--contact.page--detail .txt--sub {
    font-size: 14px;
  }
  .page--contact.page--detail .form {
    margin-top: 50px;
  }
  .page--contact.page--detail .form--post dl {
    margin: 0 0 40px;
  }
  .page--contact.page--detail .form--post dt {
    float: none;
    margin: 40px 0 5px;
  }
  .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;
    cursor: pointer;
  }
  .page--contact.page--detail .form-submit button {
    cursor: pointer;
    -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: #474747;
    color: #ffffff;
  }
  .page--contact.page--detail .form-submit button:hover {
    background: #fee600;
    color: #000000;
  }
  .page--contact.page--detail .form-submit button:hover {
    background-color: #fee600;
    color: #000000;
  }
  .page--error .txt {
    margin-bottom: 100px;
  }
}
/* ==============================================================
*  base
* ============================================================ */
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  #sb-site {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    overflow: hidden;
    padding: 30px 0 0;
  }
  a.selected {
    color: #fee600;
  }
  .menuOpen .sb-right {
    margin-left: auto;
    transform: translateX(0%);
  }
  .menuOpen #sb-site {
    transform: translateX(-70%);
  }
  .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;
  }
  .up::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(135deg);
    vertical-align: middle;
  }
  .up::after {
    position: absolute;
    top: 50%;
    right: 0.75em;
    transform: translateY(-50%) rotate(135deg);
    border-width: 2px;
  }
  .up.close:after {
    transform: translateY(-50%) rotate(-45deg);
  }
  /*ヘッダー
  ------------------------------ */
  .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.navChoice {
    background-image: url(/static/livemasters/common/icon_choice.png);
  }
  .sb-slidebar {
    width: 70%;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    position: fixed;
    top: 50px;
    right: 0;
    background: #171717;
    padding: 0 0 50px;
  }
  .sb-slidebar nav {
    top: 0px;
    height: auto;
    min-width: 100%;
    background: #171717;
    position: relative;
  }
  .sb-slidebar nav ul {
    padding: 20px 0 0;
  }
  .sb-slidebar nav ul li {
    float: none;
    text-align: center;
    padding: 0;
    background: none;
    margin: 0;
  }
  .sb-slidebar nav ul li a {
    color: #fee600;
    font-size: 21px;
    display: block;
    height: 100%;
  }
  .sb-slidebar nav ul li.navTwitter {
    width: auto;
  }
  .sb-slidebar nav ul li.navTwitter i {
    color: #ffffff !important;
  }
  .sb-slidebar nav ul li.navPrivacy {
    font-family: Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif !important;
  }
  .sb-slidebar nav ul li.navPrivacy a {
    font-size: 14px;
    color: inherit !important;
  }
  .sb-slidebar .ellipsis {
    display: none;
  }
  /* フッター
  ------------------------------ */
  .footer {
    min-width: 100%;
    background: #000;
  }
  .footer .footerNavi {
    background: #131313;
    margin: 0 0 20px;
  }
  .footer .footerNavi ul {
    border-top: 1px solid #898989;
  }
  .footer .footerNavi ul li {
    height: 40px;
    border-bottom: 1px solid #898989;
    position: relative;
  }
  .footer .footerNavi ul li::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #ffffff;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .footer .footerNavi ul li:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(-135deg);
  }
  .footer .footerNavi ul li a {
    height: 100%;
    line-height: 40px;
    text-transform: uppercase;
    padding: 0 0 0 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .footer .nav--support {
    margin-bottom: 20px;
  }
  .footer .copyright {
    text-align: center;
    font-size: 10px;
  }
  /* 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 .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: block;
    float: left;
    background: #fee600;
    color: #000000;
    font-size: 12px;
    line-height: 1.1em;
    margin: 0 5px 5px 0;
    padding: 1px;
  }
  .list--airtist {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .list--airtist li {
    width: 48%;
    margin: 0 0 20px;
  }
  .list--airtist li figure > a {
    display: table-cell;
    width: 47vw;
    height: auto;
    background: #313131;
    vertical-align: middle;
    position: relative;
  }
  .list--airtist li figure > a:after {
    height: 100%;
    border: 0px solid #fee600;
  }
  .list--airtist li figure > a img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
  }
  .list--airtist li figcaption.title {
    text-align: center;
    line-height: 1.3em;
    font-size: 10px;
    margin: 5px 0 0;
  }
  /*
  .list--airtist{
    @include var.flexSet($wrap:wrap,$justy:space-between);
    li{
      width: 48%;
      margin-bottom: 20px;
      text-align: center;
      font-size: 10px;
      line-height: 1.3;

      a{width: 100%;}
      .thumb{
        line-height: 0;
        height: auto;
        margin-bottom: 5px;
        height: 108px;
        img{width: 100%;height: 100%;}
      }
    }
  }*/
  /* .pickup
  ------------------------------ */
  .pickup {
    margin: 80px 4% 0;
  }
  .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;
  }
  .pickup .list--pickup li {
    background: #171717;
    margin-bottom: 3px;
    font-size: 12px;
  }
  .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 {
    width: 100%;
  }
  .page--home .section--banner {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 14px;
  }
  .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 .section--live .block--month {
    position: relative;
  }
  .page--home .section--live .block--month .swiper-container {
    height: 230px;
  }
  .page--home .section--live .block--month .slick-list {
    width: 80%;
    min-width: 270px;
    margin: 0 auto;
  }
  .page--home .section--live .block--month .list--month a {
    width: 210px;
  }
  .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: 30px;
    margin-right: 3px;
  }
  .page--home .section--live .block--month .list--month a .month {
    font-size: 20px;
  }
  .page--home .section--live .block--month .list--month a .year {
    line-height: 1;
    font-size: 16px;
  }
  .page--home .section--live .block--month .list--month li {
    height: 230px;
  }
  .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--] .section-tit {
    text-transform: uppercase;
    color: #fee600;
    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%;
    bottom: 0;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
  }
  /* .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;
  }
  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%;
    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;
  }
  /* .page--info
  ------------------------------ */
  .page--info .section--detail .date {
    font-size: 12px;
  }
  .page--info .section--detail .title {
    font-size: 14px;
    margin: 0 0 10px;
  }
  .page--info .section--detail .txt {
    font-size: 12px;
  }
  .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 .date {
    display: none;
  }
  .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 p {
    margin-bottom: 1em;
  }
  .page--choice .section--list {
    margin: 0;
  }
  .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;
  }
  .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 {
    display: none !important;
  }
  .page--choice .section--list .block--latest .flex-wrap .block--text .block-cover {
    display: none;
  }
  .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 .thumb {
    width: 100%;
    margin-bottom: 30px;
  }
  .page--choice .section--detail .thumb img {
    width: 100%;
  }
  .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 .txt p {
    margin-bottom: 1em;
  }
  .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 .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 .title, .page--airtist .section--detail .thumb, .page--airtist .section--detail .list--info, .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 .thumb {
    margin-bottom: 10px;
    height: 170px;
  }
  .page--airtist .section--detail .thumb img {
    width: 100%;
    height: 100%;
  }
  .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--privacy
  ------------------------------ */
  .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
  ------------------------------ */
  .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
  ------------------------------ */
  .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 10px 10px;
    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
  ------------------------------ */
  .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 {
    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;
  }
  .page--guide [class^=block--] .commission .text {
    margin: 0 0 20px;
  }
  .page--guide [class^=block--] .commission .text a {
    color: #fee600;
  }
  .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: 155px;
  }
  .page--guide .block--line .block-tit img {
    width: 226px;
  }
  .page--guide .block--tixpla .block-tit img {
    width: 226px;
  }
  .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;
  }
  .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: 10px;
  }
  .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: 14px;
  }
  .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--error
  ------------------------------ */
  .page--error .section-tit {
    font-size: 8vw !important;
  }
  .page--error .txt {
    margin-bottom: 100px;
  }
}/*# sourceMappingURL=official-service.css.map */