@charset "UTF-8";
/*!
Theme Name: BASE CAMP.
Theme URL:
Author:
Author URL:
Version: 1.0
*/
.banner {
  width: 100%;
  height: 64px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
  background-color: #fff;
  color: #222;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-bottom: 1px solid #f5f5f5;
}
.banner.is-sticky, .banner.banner-fixed {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.banner.is-sticky .navicon__lines, .banner.banner-fixed .navicon__lines {
  background: #222;
}
.banner.is-sticky .navicon__lines:before, .banner.is-sticky .navicon__lines:after, .banner.banner-fixed .navicon__lines:before, .banner.banner-fixed .navicon__lines:after {
  background: #222;
}
.banner .grid {
  width: 100%;
  height: 64px;
  margin: auto;
  padding: 0 120px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .banner .grid {
    width: 90%;
    padding: 0;
  }
}
.banner .grid .logo {
  color: #222;
  text-decoration: none;
}
.banner .grid .logo .logo-image {
  display: block;
  height: 40px;
  width: auto;
}
.banner .navigation-wrap {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .banner .navigation-wrap {
    display: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    color: #222;
    width: 100%;
    height: 0;
    top: 0;
    right: 0;
    z-index: 998;
    padding-top: 64px;
  }
}
.banner .navigation-wrap .nav__list {
  gap: 3vw;
}
@media screen and (max-width: 480px) {
  .banner .navigation-wrap .nav__list {
    display: block;
    gap: 0;
  }
}
.banner .navigation-wrap .nav__list .nav__list-item a {
  height: 50px;
  line-height: 50px;
  width: auto;
  text-align: center;
  display: block;
  font-size: 16px;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 480px) {
  .banner .navigation-wrap .nav__list .nav__list-item a {
    width: auto;
    text-align: right;
    padding-right: 5%;
  }
}
.banner .navigation-wrap .social-wrap {
  margin-left: 25px;
}
@media screen and (max-width: 480px) {
  .banner .navigation-wrap .social-wrap {
    margin-left: 0;
    margin-top: 25px;
  }
}
@media screen and (max-width: 480px) {
  .banner .navigation-wrap .social-wrap .social {
    background-color: #000;
    border-radius: 50%;
    padding: 10px;
  }
}
.banner .navigation-wrap .social-wrap .social i {
  font-size: 1.5em;
  color: #000;
}
@media screen and (max-width: 480px) {
  .banner .navigation-wrap .social-wrap .social i {
    color: #fff;
  }
}
.banner .social-list {
  width: 33.3333333333%;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .banner .social-list {
    display: none;
  }
}
.banner .social-list .social {
  padding: 1em;
  display: inline-block;
  text-align: center;
}
.banner .social-list .social i {
  width: 1em;
  height: 1em;
}
.banner [data-navicon=button] {
  display: inline-block;
  margin: 0 1em;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.banner [data-navicon=button] > * {
  display: block;
}
.banner [data-navicon=button]:focus {
  outline: none;
}
.banner .navicon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
  margin: 0;
}
.banner .navicon__lines {
  display: inline-block;
  width: 1.75rem;
  height: 0.1166666667rem;
  background: #222;
  border-radius: 0.125rem;
  transition: 0.3s;
  position: relative;
}
.banner .navicon__lines:after, .banner .navicon__lines:before {
  display: inline-block;
  width: 1.75rem;
  height: 0.1166666667rem;
  background: #222;
  border-radius: 0.125rem;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: "";
  -webkit-transform-origin: 0.125rem center;
  -ms-transform-origin: 0.125rem center;
  transform-origin: 0.125rem center;
}
.banner .navicon__lines:before {
  top: 0.4375rem;
}
.banner .navicon__lines:after {
  top: -0.4375rem;
}
.is--closed .banner .navicon__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8);
}
.banner .navicon-x.is--closed .navicon__lines {
  background: transparent;
}
.banner .navicon-x.is--closed .navicon__lines:after, .banner .navicon-x.is--closed .navicon__lines:before {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 1.75rem;
}
.banner .navicon-x.is--closed .navicon__lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.banner .navicon-x.is--closed .navicon__lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.banner .icon-menu {
  display: none;
}
@media screen and (max-width: 480px) {
  .banner .icon-menu {
    display: block;
    position: absolute;
    right: 5%;
    top: -5px;
    height: 50px;
    z-index: 1000;
  }
}
.banner.is-open .navigation-wrap {
  display: block;
  height: 100vh;
}
.banner.is-open .logo-image {
  fill: #222;
}
.banner.is-open .navicon__lines {
  background: #222;
}
.banner.is-open .navicon__lines:before, .banner.is-open .navicon__lines:after {
  background: #222;
}

#hero {
  width: 100%;
  margin-top: 64px;
  background-color: #fff;
}
#hero .hero-inner {
  position: relative;
}
#hero .hero-inner .hero-wrap {
  position: relative;
  margin-bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
#hero .hero-inner .hero-wrap.slick-initialized {
  opacity: 1;
}
#hero .hero-inner .hero-wrap .hero-link {
  outline: none;
  display: block;
}
#hero .hero-inner .slick-dots {
  display: none !important;
}
#hero .hero-thumbnail-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
#hero .hero-thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#hero .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  z-index: 10;
  cursor: pointer;
  display: flex !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#hero .arrow i {
  font-size: 28px;
  line-height: 1;
  text-shadow: none;
}
@media screen and (max-width: 480px) {
  #hero .arrow {
    display: none;
  }
}
#hero .slider-prev {
  left: 24px;
}
#hero .slider-next {
  right: 24px;
}

#notice {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 40px;
}
#notice.no-notice {
  margin-bottom: 0;
}
#notice .notice-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#notice .notice-wrap .notice {
  display: flex;
  align-items: center;
  padding: 16px 20px 15px 20px;
  outline: none;
  background-color: rgba(255, 59, 20, 0.15);
  border: 1px solid #FF3B14;
}
#notice .notice-wrap .notice:before {
  content: "！";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-right: 17px;
  background-color: #FF3B14;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}
#notice .notice-wrap .notice p {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #FF3B14;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-section-title {
  display: flex;
  align-items: center;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 40px;
}
.top-section-title .top-section-bar {
  display: inline-block;
  width: 4px;
  height: 65px;
  background-color: #00FF41;
  margin-right: 16px;
}

.top-section-link-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.top-section-link-wrap.justify-center {
  justify-content: center;
}

.top-section-link {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: inherit;
}

.top-news {
  width: 100%;
  background-color: #fff;
  padding: 100px 120px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .top-news {
    padding: 50px 5%;
  }
}
.top-news .top-section-title,
.top-news .top-section-link-wrap {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.top-news .top-section-link-wrap {
  margin-top: 40px;
}
.top-news .top-section-link {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: #146B00;
}
.top-news .top-news-grid {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 241.25px);
  gap: 25px;
}
@media screen and (min-width: 480px) and (max-width: 1025px) {
  .top-news .top-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .top-news .top-news-grid {
    grid-template-columns: 1fr;
  }
}

.top-news-card {
  display: block;
  color: inherit;
}
.top-news-card .top-news-thumbnail-wrap {
  width: 100%;
  height: 157px;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
.top-news-card .top-news-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.top-news-card:hover .top-news-thumbnail {
  transform: scale(1.05);
}
.top-news-card .top-news-postdate {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #707070;
  margin-bottom: 5px;
}
.top-news-card .top-news-title {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-news-card .top-news-excerpt {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #707070;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-news-card .top-news-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.top-news-card .top-news-category {
  display: inline-block;
  padding: 6px 10px;
  background-color: #00FF41;
  color: #080808;
  border-radius: 4px;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.top-news-card .top-news-category.is-attention {
  background-color: #FF3B14;
  color: #fff;
}

.top-schedule {
  width: 100%;
  background-color: #0d0d0d;
  color: #fff;
  padding: 100px 120px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .top-schedule {
    padding: 50px 5%;
  }
}
.top-schedule .top-section-title,
.top-schedule .top-section-link-wrap {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.top-schedule .top-section-link-wrap {
  margin-top: 40px;
}
.top-schedule .top-schedule-grid {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 248.75px);
  gap: 24px 15px;
}
@media screen and (min-width: 480px) and (max-width: 1025px) {
  .top-schedule .top-schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .top-schedule .top-schedule-grid {
    grid-template-columns: 1fr;
  }
}
.top-schedule .top-schedule-card {
  display: flex;
  flex-direction: column;
  color: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.102);
}
.top-schedule .top-schedule-card .top-schedule-image-wrap {
  position: relative;
  width: 100%;
  height: 189px;
  flex-shrink: 0;
  overflow: hidden;
}
.top-schedule .top-schedule-card .top-schedule-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.15);
}
.top-schedule .top-schedule-card .top-schedule-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.top-schedule .top-schedule-card .top-schedule-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #39FF14;
  color: #080808;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 1;
}
.top-schedule .top-schedule-card .top-schedule-content {
  position: relative;
  background-color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.top-schedule .top-schedule-card .top-schedule-date {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  color: #117711;
  margin-bottom: 8px;
}
.top-schedule .top-schedule-card .top-schedule-artist-name {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0;
  color: #080808;
  margin-bottom: 6.5px;
}
.top-schedule .top-schedule-card .top-schedule-venue-name {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 1.23;
  letter-spacing: 0;
  color: #6B7280;
}
.top-schedule .top-schedule-card .top-schedule-arrow {
  display: block;
  width: 30px;
  height: 30px;
  align-self: flex-end;
  margin-top: auto;
}
.top-schedule .top-schedule-button {
  display: inline-block;
  border: 2px solid #39FF14;
  color: #fff;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  padding: 16px 40px;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.top-schedule .top-schedule-button:hover {
  background-color: #39FF14;
  color: #111;
}

.news .news-wrap,
.news-content-page .news-wrap {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .news .news-wrap,
  .news-content-page .news-wrap {
    width: 90%;
  }
}
.news .news-wrap .news-content,
.news-content-page .news-wrap .news-content {
  width: 47.619047619%;
  background-color: #ddd;
  padding: 1em;
  margin-top: 2em;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content,
  .news-content-page .news-wrap .news-content {
    width: 100%;
    padding: 0.5em;
  }
}
.news .news-wrap .news-content:nth-child(-n+2),
.news-content-page .news-wrap .news-content:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content:nth-child(-n+2),
  .news-content-page .news-wrap .news-content:nth-child(-n+2) {
    margin-top: 2em;
  }
}
.news .news-wrap .news-content .news-thumbnail,
.news-content-page .news-wrap .news-content .news-thumbnail {
  width: 100px;
  height: 100px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #222;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content .news-thumbnail,
  .news-content-page .news-wrap .news-content .news-thumbnail {
    width: 90px;
    height: 90px;
  }
}
.news .news-wrap .news-content .news-content-body,
.news-content-page .news-wrap .news-content .news-content-body {
  width: 100%;
  margin-left: 1em;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content .news-content-body,
  .news-content-page .news-wrap .news-content .news-content-body {
    margin-left: 10px;
  }
}
.news .news-wrap .news-content .news-content-body .news-category,
.news-content-page .news-wrap .news-content .news-content-body .news-category {
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content .news-content-body .news-category,
  .news-content-page .news-wrap .news-content .news-content-body .news-category {
    font-size: 0.5em;
  }
}
.news .news-wrap .news-content .news-content-body .news-title-wrap,
.news-content-page .news-wrap .news-content .news-content-body .news-title-wrap {
  height: 42px;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content .news-content-body .news-title-wrap,
  .news-content-page .news-wrap .news-content .news-content-body .news-title-wrap {
    height: 36px;
  }
}
.news .news-wrap .news-content .news-content-body .news-title,
.news-content-page .news-wrap .news-content .news-content-body .news-title {
  padding: 0;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  max-height: 42px;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content .news-content-body .news-title,
  .news-content-page .news-wrap .news-content .news-content-body .news-title {
    font-size: 12px;
    max-height: 36px;
  }
}
.news .news-wrap .news-content .news-content-body .news-title:before,
.news-content-page .news-wrap .news-content .news-content-body .news-title:before {
  top: 21px;
  content: "...";
  right: 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .news .news-wrap .news-content .news-content-body .news-title:before,
  .news-content-page .news-wrap .news-content .news-content-body .news-title:before {
    font-size: 12px;
    top: 18px;
    width: 13px;
  }
}
.news .news-wrap .news-content .news-content-body .news-title:after,
.news-content-page .news-wrap .news-content .news-content-body .news-title:after {
  content: "";
  height: 100%;
  width: 100%;
}
.news .news-wrap .news-content .news-content-body .news-title:before, .news .news-wrap .news-content .news-content-body .news-title:after,
.news-content-page .news-wrap .news-content .news-content-body .news-title:before,
.news-content-page .news-wrap .news-content .news-content-body .news-title:after {
  position: absolute;
  background-color: #ddd;
}
.news .news-wrap .news-content .news-content-body .news-postdate,
.news-content-page .news-wrap .news-content .news-content-body .news-postdate {
  margin-top: 10px;
  text-align: right;
}
.news .video-wrap,
.news-content-page .video-wrap {
  width: 100%;
  margin: auto;
  margin-top: 25px;
}
.news .video-wrap:after,
.news-content-page .video-wrap:after {
  content: "";
  width: 31.25%;
}
.news .video-wrap .video-list,
.news-content-page .video-wrap .video-list {
  width: 31.25%;
}
@media screen and (max-width: 480px) {
  .news .video-wrap .video-list,
  .news-content-page .video-wrap .video-list {
    width: 100%;
    margin-bottom: 50px;
  }
  .news .video-wrap .video-list:last-of-type,
  .news-content-page .video-wrap .video-list:last-of-type {
    margin-bottom: 0;
  }
}

#schedule .content-page-title,
.schedule-content-page .content-page-title {
  color: #fff;
}
#schedule .schedule-wrap,
.schedule-content-page .schedule-wrap {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  #schedule .schedule-wrap,
  .schedule-content-page .schedule-wrap {
    width: 90%;
  }
}
#schedule .schedule-wrap:after,
.schedule-content-page .schedule-wrap:after {
  content: "";
  width: 32.2580645161%;
}
#schedule .schedule-wrap .schedule-link,
.schedule-content-page .schedule-wrap .schedule-link {
  width: 32.2580645161%;
  margin-top: 1em;
}
@media screen and (max-width: 480px) {
  #schedule .schedule-wrap .schedule-link,
  .schedule-content-page .schedule-wrap .schedule-link {
    width: 47.619047619%;
    margin-top: 2em;
  }
}
#schedule .schedule-wrap .schedule-link:nth-child(-n+3),
.schedule-content-page .schedule-wrap .schedule-link:nth-child(-n+3) {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  #schedule .schedule-wrap .schedule-link:nth-child(-n+3),
  .schedule-content-page .schedule-wrap .schedule-link:nth-child(-n+3) {
    margin-top: 2em;
  }
}
#schedule .schedule-wrap .schedule-link .schedule-artist-image,
.schedule-content-page .schedule-wrap .schedule-link .schedule-artist-image {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  background-color: #000;
}
#schedule .schedule-wrap .schedule-link .schedule-content,
.schedule-content-page .schedule-wrap .schedule-link .schedule-content {
  background-color: #fff;
  color: #222;
  padding: 1em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  #schedule .schedule-wrap .schedule-link .schedule-content,
  .schedule-content-page .schedule-wrap .schedule-link .schedule-content {
    padding: 1em 0.5em;
  }
}
#schedule .schedule-wrap .schedule-link .schedule-pref,
.schedule-content-page .schedule-wrap .schedule-link .schedule-pref {
  background-color: #46B042;
  color: #fff;
  font-size: 0.7em;
  font-weight: bold;
  width: 50px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  padding: 5px 0;
}
@media screen and (max-width: 480px) {
  #schedule .schedule-wrap .schedule-link .schedule-pref,
  .schedule-content-page .schedule-wrap .schedule-link .schedule-pref {
    font-size: 8px;
    width: 35px;
    padding: 3px 0;
  }
}
@media screen and (max-width: 480px) {
  #schedule .schedule-wrap .schedule-link .schedule-date,
  .schedule-content-page .schedule-wrap .schedule-link .schedule-date {
    font-size: 0.6em;
  }
}
#schedule .schedule-wrap .schedule-link .schedule-artist-name,
.schedule-content-page .schedule-wrap .schedule-link .schedule-artist-name {
  width: 100%;
  margin-top: 0.5em;
}
#schedule .schedule-wrap .schedule-link .schedule-artist-name p,
.schedule-content-page .schedule-wrap .schedule-link .schedule-artist-name p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  #schedule .schedule-wrap .schedule-link .schedule-artist-name p,
  .schedule-content-page .schedule-wrap .schedule-link .schedule-artist-name p {
    font-size: 0.6em;
  }
}
#schedule .pagination .page-numbers,
.schedule-content-page .pagination .page-numbers {
  color: #fff;
}

.artist-content-page .artist-wrap {
  width: 100%;
}
.artist-content-page .artist-wrap:before {
  content: "";
  width: 24.3902439024%;
  order: 1;
}
.artist-content-page .artist-wrap:after {
  content: "";
  width: 24.3902439024%;
}
.artist-content-page .artist-wrap .artist-link {
  width: 24.3902439024%;
  margin-top: 1em;
}
@media screen and (max-width: 480px) {
  .artist-content-page .artist-wrap .artist-link {
    width: 47.619047619%;
    margin-top: 2em;
  }
}
.artist-content-page .artist-wrap .artist-link:nth-child(-n+4) {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .artist-content-page .artist-wrap .artist-link:nth-child(-n+4) {
    margin-top: 2em;
  }
}
@media screen and (max-width: 480px) {
  .artist-content-page .artist-wrap .artist-link:nth-child(-n+2) {
    margin-top: 0;
  }
}
.artist-content-page .artist-wrap .artist-link .artist-image {
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.artist-content-page .artist-wrap .artist-link .artist-name {
  width: 100%;
  background-color: #fff;
  padding: 1em;
}
@media screen and (max-width: 480px) {
  .artist-content-page .artist-wrap .artist-link .artist-name {
    padding: 0.5em;
  }
}
.artist-content-page .artist-wrap .artist-link .artist-name p {
  font-size: 0.8em;
  padding: 5px 0;
  margin: auto;
  border: 2px solid #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .artist-content-page .artist-wrap .artist-link .artist-name p {
    font-size: 0.7em;
  }
}

.single-thumbnail-wrap {
  margin-top: 50px;
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .single-thumbnail-wrap {
    height: 50vh;
  }
}
.single-thumbnail-wrap .single-thumbnail-bg {
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}
.single-thumbnail-wrap .single-thumbnail-bg:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.single-thumbnail-wrap .single-thumbnail {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.single-thumbnail-wrap .single-thumbnail:before {
  content: "";
  position: absolute;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 15%, transparent);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.schedule-content-singles {
  margin-top: 0 !important;
  padding: 50px 0 100px !important;
  background-color: #222;
  color: #fff;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles {
    width: 100% !important;
    padding: 50px 5% !important;
  }
}
.schedule-content-singles .single-title {
  padding-bottom: 50px;
  font-size: 2em;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .single-title {
    font-size: 1.3em;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
.schedule-content-singles .content-page-inner {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner {
    width: 100%;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .past {
  font-size: 0.7em;
  padding: 1px 1em;
  background-color: red;
  margin-left: 1em;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .past {
    display: inline-block;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap {
    display: block;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap:last-of-type {
  margin-bottom: 0;
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap p {
  margin-left: 1em;
  display: inline-block;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap p {
    margin-left: 0;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap p:first-of-type {
  margin-left: 0;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap .schedule-date {
    display: inline-block;
  }
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .schedule-date-wrap .schedule-time-wrap {
    display: inline-block;
    margin-left: 0.5em;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .preorder-content {
  margin-bottom: 1em;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .preorder-content {
    padding-bottom: 1em;
    border-bottom: 1px dotted #ddd;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .preorder-content:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .preorder-content:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 801px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .preorder-content .preoder-content-inner {
    display: block;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide:first-of-type {
  border-top: none;
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide .playguide-content .playguide-image {
  width: 100px;
  height: 100px;
  background-color: #fff;
  padding: 1em;
}
@media screen and (max-width: 480px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide .playguide-content .playguide-image {
    width: 70px;
    height: 70px;
    padding: 0.5em;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide .playguide-content .playguide-inner {
  width: 100%;
  margin-left: 25px;
}
@media screen and (max-width: 480px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide .playguide-content .playguide-inner .playguide-title-wrap {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide .playguide-content .playguide-inner .playguide-wrap {
    font-size: 0.9em;
    margin-top: 1em;
  }
}
.schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide .playguide-content .playguide-inner .playguide-list-content {
  font-size: 0.9em;
  margin-top: 1em;
}
@media screen and (max-width: 480px) {
  .schedule-content-singles .content-page-inner .schedule-list-wrap .playguide-list .playguide .playguide-content .playguide-inner .playguide-list-content {
    margin-top: 0;
  }
}
.schedule-content-singles .artist-website {
  background-color: #46B042;
  border-radius: 50%;
  padding: 0.5em;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
}
.schedule-content-singles .artist-website i {
  font-size: 0.5em;
}

#footer {
  background-color: #fff;
}
#footer .footer-inner {
  width: 100%;
  padding: 100px 120px 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  #footer .footer-inner {
    padding: 100px 5% 60px;
  }
}
#footer .footer-line {
  max-width: 1040px;
  height: 1px;
  margin: 0 auto;
  background-color: #000000;
}
#footer .footer-top {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 48px 0 50px;
}
@media screen and (max-width: 480px) {
  #footer .footer-top {
    display: block;
    padding: 40px 0;
  }
}
#footer .footer-col-brand {
  margin-right: 98px;
}
@media screen and (max-width: 480px) {
  #footer .footer-col-brand {
    margin-right: 0;
  }
}
#footer .footer-col-nav {
  width: 133px;
  flex-shrink: 0;
  margin-right: 48px;
}
@media screen and (max-width: 480px) {
  #footer .footer-col-nav {
    width: auto;
    margin-right: 0;
  }
}
#footer .footer-col-legal {
  margin-left: 48px;
}
@media screen and (max-width: 480px) {
  #footer .footer-col-legal {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer-col {
    margin-bottom: 30px;
  }
  #footer .footer-col:last-of-type {
    margin-bottom: 0;
  }
}
#footer .footer-col-brand .footer-logo {
  display: block;
}
#footer .footer-col-brand .footer-logo img {
  display: block;
  width: 190px;
  height: auto;
}
#footer .footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
#footer .footer-social li a {
  display: block;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.6);
}
#footer .footer-nav-list li {
  margin-bottom: 12px;
}
#footer .footer-nav-list li:last-of-type {
  margin-bottom: 0;
}
#footer .footer-nav-list a {
  display: block;
  height: 16px;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000000;
}
#footer .footer-col-newsletter .footer-newsletter-title {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #00FF41;
  margin-bottom: 16px;
}
#footer .footer-col-newsletter .footer-newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 320px;
  height: 48px;
  border: 1px solid #000000;
  padding: 0 4px 0 16px;
}
@media screen and (max-width: 480px) {
  #footer .footer-col-newsletter .footer-newsletter-form {
    width: 100%;
  }
}
#footer .footer-col-newsletter .footer-newsletter-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}
#footer .footer-col-newsletter .footer-newsletter-input::placeholder {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.5);
}
#footer .footer-col-newsletter .footer-newsletter-button {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  background-color: #00FF41;
  color: #111;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  padding: 8px 16px;
}
#footer .footer-legal-list li {
  margin-bottom: 12px;
}
#footer .footer-legal-list li:last-of-type {
  margin-bottom: 0;
}
#footer .footer-legal-list a {
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  color: #8F8F8F;
}
#footer .copylight {
  max-width: 1040px;
  margin: 16px auto 0;
  text-align: center;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  color: #8F8F8F;
}

#contact {
  width: 100%;
}
#contact .contact-description {
  margin-bottom: 50px;
}
#contact .wpcf7-list-item {
  display: block;
  margin: 0;
}
#contact .contact-box-text {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.8;
  position: relative;
}
#contact .inquiry {
  position: relative;
  background: #f7f7f7;
  display: inline-block !important;
  width: 50%;
}
#contact .inquiry:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0.7em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
  z-index: 10;
}
#contact select {
  width: 100%;
  cursor: pointer;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 38px;
  padding: 10px 25px 10px 10px;
  line-height: 1;
  border: none;
}
#contact select:focus {
  background-color: #fff;
}
#contact .checkbox-text {
  text-align: center;
  margin: 30px;
}
#contact .wpcf7 {
  font-size: 0.8em;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  #contact .wpcf7 {
    font-size: 0.9em;
  }
}
#contact .wpcf7 dl {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  #contact .wpcf7 dl {
    margin-bottom: 2em;
  }
}
#contact .wpcf7 dt {
  position: relative;
  margin-bottom: 5px;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  #contact .wpcf7 dt {
    margin-bottom: 0.5em;
  }
}
#contact .wpcf7 dt .label {
  margin-top: -1px;
  display: inline-block;
  padding: 3px 4px 2px;
  color: #fff;
  font-size: 0.74em;
  font-weight: normal;
  margin-right: 10px;
  border-radius: 2px;
}
#contact .wpcf7 dt .required {
  background-color: #e11619;
}
#contact .wpcf7 dt .optional {
  background-color: #ccc;
}
#contact .wpcf7 dd {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}
#contact .wpcf7 dd .wpcf7-radio .wpcf7-list-item {
  display: block;
}
#contact .wpcf7 .wpcf7-text,
#contact .wpcf7 .wpcf7-date {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 38px;
}
#contact .wpcf7 .wpcf7-text:focus,
#contact .wpcf7 .wpcf7-date:focus {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #dddddd;
}
#contact .wpcf7 .wpcf7-textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
#contact .wpcf7 .wpcf7-textarea:focus {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #dddddd;
}
#contact .wpcf7 .wpcf7-number {
  width: 10%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 38px;
}
#contact .wpcf7 .wpcf7-number:focus {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #dddddd;
}
#contact .wpcf7 .wpcf7-submit {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 5px 30px;
  border: 1px solid #000;
  color: #fff;
  border-radius: 50px;
  background-color: #222;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
}
#contact .wpcf7 .wpcf7-submit:active, #contact .wpcf7 .wpcf7-submit:hover {
  text-decoration: none;
  color: #222;
  border-color: #222;
  background: #ddd;
}
#contact .wpcf7 .wpcf7-submit span {
  display: inline-block;
  position: relative;
  padding-right: 0;
  -webkit-transition: padding-right 0.5s;
  -o-transition: padding-right 0.5s;
  transition: padding-right 0.5s;
}
#contact .wpcf7 .wpcf7-submit span:after {
  content: " ";
  position: absolute;
  top: 0;
  right: -18px;
  opacity: 0;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  -webkit-transition: opacity 0.5s, top 0.5s, right 0.5s;
  -o-transition: opacity 0.5s, top 0.5s, right 0.5s;
  transition: opacity 0.5s, top 0.5s, right 0.5s;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#contact .wpcf7 .wpcf7-submit:active span, #contact .wpcf7 .wpcf7-submit:hover span {
  padding-right: 30px;
}
#contact .wpcf7 .wpcf7-submit:active span:after,
#contact .wpcf7 .wpcf7-submit:hover span:after {
  -webkit-transition: opacity 0.5s, top 0.5s, right 0.5s;
  -o-transition: opacity 0.5s, top 0.5s, right 0.5s;
  transition: opacity 0.5s, top 0.5s, right 0.5s;
  opacity: 1;
  border-color: #fff;
  right: 0;
  top: 50%;
}
#contact .wpcf7 input,
#contact .wpcf7 textarea {
  outline: none !important;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 0.9em;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#contact .wpcf7 input:focus,
#contact .wpcf7 textarea:focus {
  -webkit-box-shadow: 0 0 7px #46B042;
  box-shadow: 0 0 7px #46B042;
  border: 1px solid #46B042;
}
#contact .wpcf7 input[type=radio] {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
#contact .wpcf7 .accept {
  text-align: center;
  margin: 100px 0;
}
#contact .wpcf7 input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
#contact .wpcf7 input[type=checkbox] + span {
  position: relative;
  cursor: pointer;
  padding: 0;
}
#contact .wpcf7 input[type=checkbox] + span:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #fff;
}
#contact .wpcf7 input[type=checkbox]:hover + span:before {
  background: #46B042;
}
#contact .wpcf7 input[type=checkbox]:focus + span:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
#contact .wpcf7 input[type=checkbox]:checked + span:before {
  background: #46B042;
}
#contact .wpcf7 input[type=checkbox]:checked + span:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  #contact .wpcf7 dl {
    display: table;
    width: 100%;
    border-top: 1px solid #ccc;
    margin-bottom: 0;
    -webkit-margin-before: 0;
  }
  #contact .wpcf7 dl:first-of-type {
    border: none;
  }
  #contact .wpcf7 dt {
    display: table-cell;
    width: 35%;
    margin-bottom: 0;
    padding: 20px;
  }
  #contact .wpcf7 dt .label {
    position: absolute;
    right: 20px;
    margin-right: 0;
  }
  #contact .wpcf7 dd {
    display: table-cell;
    width: 65%;
    padding: 20px;
  }
  #contact .wpcf7 .wpcf7-text {
    padding: 10px;
  }
}
#contact .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
#contact .ajax-loader {
  display: block !important;
  margin: 1em auto;
}
#contact .contact-button-wrap {
  margin-top: 50px;
  text-align: center;
}
#contact .wpcf7-not-valid-tip {
  margin-top: 1em;
}

.page-doc {
  margin-top: 50px;
}
.page-doc .tab {
  position: sticky;
  top: 50px;
  background-color: #ddd;
}
.page-doc .tab p {
  width: 33.3333333333%;
  text-align: center;
  border-left: 1px solid #aaa;
}
.page-doc .tab p.selected {
  background-color: #46B042;
  color: #fff;
  border-color: #46B042 !important;
}
.page-doc .tab p.selected + p {
  border-left-color: #46B042;
}
.page-doc .tab p:last-of-type {
  border-right: 1px solid #aaa;
}
.page-doc .tab p .menulist + .menulist {
  border-color: #aaa;
}
.page-doc .tab p a {
  width: 100%;
  padding: 1em;
}
@media screen and (max-width: 480px) {
  .page-doc .tab p a {
    padding: 1em 0.5em;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 480px) {
  .page-doc .tab p a span {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .page-doc .tab.venue-tab {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .page-doc .tab.venue-tab p {
    width: 20%;
  }
  .page-doc .tab.venue-tab p:nth-child(5) {
    border-right: 1px solid #aaa;
  }
}
@media screen and (max-width: 480px) {
  .page-doc .tab.syllabary-tab {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .page-doc .tab.syllabary-tab p {
    width: 16.6666666667%;
  }
  .page-doc .tab.syllabary-tab p:nth-child(6) {
    border-right: 1px solid #aaa;
  }
  .page-doc .tab.syllabary-tab p:last-of-type {
    width: 16.9491525424% !important;
  }
}
.page-doc .tab-contents {
  padding: 1em;
  background-color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .page-doc .tab-contents {
    margin-top: 25px;
    padding: 1em 0.5em;
  }
}
.page-doc .tab-contents h3 {
  font-weight: bold;
}
.page-doc .tab-contents .faq-content-wrap {
  padding-top: 1em;
}
.page-doc .tab-contents .faq-content-wrap .faq-content {
  border-bottom: 1px solid #ccc;
}
.page-doc .tab-contents .faq-content-wrap .faq-content:last-of-type {
  border-bottom: none;
}
.page-doc .tab-contents .faq-content-wrap .faq-content:last-of-type .faq-content-body {
  margin-bottom: 0;
}
.page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-head {
  padding: 1em;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-head {
    font-size: 0.7em;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1em 0.5em;
  }
}
.page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-head:before {
  content: "＋";
  margin-right: 1em;
}
.page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-head.active {
  color: #46B042;
}
.page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-head.active:before {
  content: "ー";
}
.page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-body {
  padding: 1em;
  margin-bottom: 1em;
  background-color: #eee;
}
@media screen and (max-width: 480px) {
  .page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-body {
    font-size: 0.8em;
  }
}
.page-doc .tab-contents .faq-content-wrap .faq-content .faq-content-body p {
  text-align: justify;
  line-height: 2;
}
.page-doc .page-doc-content {
  margin-top: 50px;
}
.page-doc .page-doc-content:first-of-type {
  margin-top: 0;
}
.page-doc .page-doc-content .doc-title {
  font-size: 1.5em;
  margin-bottom: 25px;
}

.single-page {
  margin-top: 0 !important;
  padding: 50px !important;
  background-color: #fff;
  width: 60% !important;
}
@media screen and (max-width: 480px) {
  .single-page {
    width: 100% !important;
    padding: 50px 5% !important;
  }
}
.single-page .single-title {
  font-size: 1.5em;
  padding-bottom: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .single-page .single-title {
    font-size: 1em;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .single-page .news-postdate-wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
.single-page .news-category {
  margin-left: 1em;
}
.single-page img {
  max-width: 100%;
  height: auto;
}
.single-page .news-content-wrap {
  padding-top: 50px;
}
.single-page .news-content-wrap .news-content a {
  text-decoration: underline;
}
.single-page .news-content-wrap .news-schedule-content {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #ddd;
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner {
  margin-top: 50px;
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner:first-of-type {
  margin-top: 0;
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-content-title {
  margin-bottom: 25px;
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap {
  background-color: #666;
  color: #fff;
  padding: 1em 2em 1em 1em;
  width: 100%;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 801px) {
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap {
    display: block;
    padding: 1em;
  }
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap .schedule-date {
    margin-right: 3px;
  }
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap .box {
    margin-top: 5px;
  }
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap:last-of-type {
  margin-bottom: 0;
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap .schedule-datetime {
  margin-right: 1em;
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap p {
  margin-right: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 801px) {
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap p {
    margin-right: 0;
    font-size: 0.7em;
  }
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap p:last-of-type {
  margin-right: 0;
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .schedule-date-wrap .arrow-right {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .preorder-content {
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .preorder-content {
    padding-bottom: 1em;
    border-bottom: 1px dotted #ddd;
  }
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .preorder-content:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .preorder-content:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .preorder-content .preoder-content-inner {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .preorder-content .preoder-content-inner .preorder-name {
    margin-top: 5px;
  }
}
.single-page .news-content-wrap .news-schedule-content .news-schedule-contentinner .preorder-content .red {
  color: #fff;
}

.iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  cursor: pointer;
  overflow: hidden;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.video-wrap {
  width: 80%;
  margin: 100px auto;
  display: -ms-grid;
  display: grid;
  grid-gap: 25px;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 480px) {
  .video-wrap {
    width: 90%;
    display: block !important;
    margin: 50px auto;
  }
}
.video-wrap .video-list {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .video-wrap .video-list {
    margin-bottom: 2em;
  }
  .video-wrap .video-list:last-of-type {
    margin-bottom: 0;
  }
}
.video-wrap .video-list .iframe-wrap:hover .icon-movie {
  opacity: 1;
  color: #ff0000;
}
.video-wrap .video-list .player {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.video-wrap .video-list .thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: 134%;
}
.video-wrap .video-list .image-thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.video-wrap .video-list .icon-movie {
  position: absolute;
  z-index: 2;
  color: #222;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.8;
  font-size: 4em;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.video-wrap .video-list .video-title-wrap {
  padding-top: 1em;
}

.paging {
  width: 60%;
  margin: 50px auto;
}
@media screen and (max-width: 480px) {
  .paging {
    width: 90%;
  }
}
.paging a {
  width: 50%;
  padding: 1em;
}
@media screen and (max-width: 480px) {
  .paging a {
    padding: 0.5em;
    font-size: 0.8em;
  }
}
.paging a.prev {
  padding-right: 1em;
  border-right: 1px solid #aaa;
}
@media screen and (max-width: 480px) {
  .paging a.prev {
    padding-right: 0.5em;
  }
}
.paging a.next {
  text-align: right;
  padding-left: 1em;
}
@media screen and (max-width: 480px) {
  .paging a.next {
    padding-left: 0.5em;
  }
}
.paging .arrow-left {
  margin-right: 1em;
}
.paging .arrow-right {
  margin-left: 1em;
}
.paging .paging-content {
  margin-top: 0.5em;
}
.paging .paging-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .paging .paging-title {
    overflow: inherit;
    text-overflow: inherit;
    white-space: inherit;
  }
}

.single-breadcrumb {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .single-breadcrumb {
    width: 90%;
  }
}
.single-breadcrumb #breadcrumb {
  margin: 50px 0;
}

.single-venue-breadcrumb {
  margin-bottom: 100px;
}

.venue-button-wrap .button {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #aaa;
  color: #46B042;
}
@media screen and (max-width: 480px) {
  .venue-button-wrap .button {
    font-size: 0.8em;
  }
}
.venue-button-wrap .button.current {
  color: inherit;
  font-weight: bold;
  pointer-events: none;
}
.venue-button-wrap .button:last-of-type {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.venue-link-wrap {
  margin-top: 25px;
}
.venue-link-wrap:after {
  content: "";
  width: 32.2580645161%;
}
.venue-link-wrap .venue-link {
  width: 32.2580645161%;
  font-size: 0.9em;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .venue-link-wrap .venue-link {
    width: 100%;
  }
}

.single-venue-page {
  margin: 150px auto 100px !important;
}
@media screen and (max-width: 480px) {
  .single-venue-page {
    margin: 100px auto !important;
  }
}
.single-venue-page .single-title {
  padding-bottom: 50px;
}
.single-venue-page .show-list-wrap {
  margin-bottom: 50px;
}
.single-venue-page .show-list-wrap .list-tr {
  border-color: #ddd;
}

.social-button {
  padding-top: 50px;
}
@media screen and (max-width: 480px) {
  .social-button {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
.social-button .share-button {
  font-size: 0.7em;
  color: #fff;
  font-family: sans-serif;
  padding: 5px;
  border-radius: 3px;
}
@media screen and (max-width: 480px) {
  .social-button .share-button {
    font-size: 0.6em;
  }
}
.social-button i {
  margin-right: 5px;
}
.social-button .twitter {
  background-color: #1b95e0;
}
.social-button .facebook {
  background-color: #3B5998;
  margin: 0 1em;
}
.social-button .line {
  background-color: #00b900;
}

@media screen and (max-width: 480px) {
  .content-page-error .content-page-title div {
    font-size: 0.6em;
  }
}
.content-page-error .button-wrap {
  width: 100%;
  text-align: center;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-arround {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.m25 {
  margin: 25px 0 !important;
}

.m50 {
  margin: 50px 0 !important;
}

.m1 {
  margin: 1em 0 !important;
}

.m2 {
  margin: 2em 0 !important;
}

.m3 {
  margin: 3em 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mt3 {
  margin-top: 3em !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1em !important;
}

.mb2 {
  margin-bottom: 2em !important;
}

.mb3 {
  margin-bottom: 3em !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.p25 {
  padding: 25px 0 !important;
}

.p50 {
  padding: 50px 0 !important;
}

.p1 {
  padding: 1em 0 !important;
}

.p2 {
  padding: 2em 0 !important;
}

.p3 {
  padding: 3em 0 !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt1 {
  padding-top: 1em !important;
}

.pt2 {
  padding-top: 2em !important;
}

.pt3 {
  padding-top: 3em !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb1 {
  padding-bottom: 1em !important;
}

.pb2 {
  padding-bottom: 2em !important;
}

.pb3 {
  padding-bottom: 3em !important;
}

.text-underline {
  text-decoration: underline;
}

.text-bold {
  font-weight: bold;
}

.wrap-60 {
  width: 60% !important;
  margin: auto !important;
}
@media screen and (max-width: 480px) {
  .wrap-60 {
    width: 90% !important;
  }
}

.wrap-90 {
  width: 90% !important;
  margin: auto !important;
}

.wrap-100 {
  width: 100% !important;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.admin-bar .banner {
  top: 32px;
}

.admin-bar .page-doc .tab {
  top: 82px;
}

@font-face {
  font-family: "latin-arial";
  src: local("Arial");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "latin-arial";
  font-weight: bold;
  src: local("Arial-BoldMT"), local("Arial Bold");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
  font-weight: 200;
  color: #222;
  background-color: #ddd;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
}
body.pined {
  overflow: hidden;
  height: 100%;
}
body.post-type-archive-post, body.archive.category, body.single-schedule {
  background-color: #fff;
}
body.post-type-archive-schedule {
  background-color: #222;
}
body.post-type-archive-schedule .breadcrumb-list li {
  color: #fff;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html.pinned {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}

h2 {
  font-size: 2.5em;
  font-weight: 500;
  text-align: center;
  font-family: futura-pt, sans-serif;
}
h2 span {
  font-size: 1.5em;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.5em;
  }
}

p {
  font-size: 0.9em;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  p {
    font-size: 0.8em;
  }
}

strong {
  font-weight: bold;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
a:hover {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.button-wrap {
  text-align: right;
  margin: 100px auto 0;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .button-wrap {
    margin-top: 50px;
    width: 90%;
  }
}
.button-wrap .button {
  color: #46B042;
  padding: 1em 0;
  display: inline-block;
  font-size: 1.2em;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.button-wrap .button:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 0;
  left: 0;
  bottom: 0.5em;
  height: 1px;
  background-color: #46B042;
}
.button-wrap .button:hover:after {
  width: 100%;
  left: 0;
}

.nopost {
  width: 100%;
  text-align: center;
}
.nopost.front-nopost {
  padding-top: 50px;
}
@media screen and (max-width: 480px) {
  .nopost.front-nopost {
    padding-top: 100px;
  }
}
.nopost.page-nopost {
  padding-top: 50px;
}

.arrow-wrap {
  width: 95%;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 10%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.arrow {
  outline: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  font-size: 1em;
  color: #fff;
  cursor: pointer;
  display: inline-block !important;
}
.arrow i {
  font-size: 3em;
  text-shadow: #555 0px 0px 10px;
}
.arrow:hover {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.note-wrap {
  font-size: 0.8em;
}

.note {
  text-indent: -2em;
  margin-left: 2em;
}
.note:before {
  content: "※";
  margin-right: 1em;
}

.pagination {
  text-align: center;
  padding: 100px 0 0;
}
.pagination .screen-reader-text {
  display: none;
}
.pagination .page-numbers {
  margin-right: 10px;
  font-size: 1em;
  width: 2em;
  height: 2em;
  display: inline-block;
  line-height: 2;
}
.pagination .next {
  margin-right: 0;
}
.pagination a {
  font-size: 1em;
}
.pagination .current {
  background-color: #46B042;
  color: #fff;
}

.news-category {
  margin: 0;
  color: #fff;
  background-color: #46B042;
  font-size: 0.7em;
  line-height: 1;
  padding: 5px;
  width: 100px;
  text-align: center;
}

.content-tab {
  margin-top: -60px;
}
.content-tab:nth-child(even) .content-tab-title {
  background-color: #222;
  color: #fff;
}
.content-tab:nth-child(even) .content-tab-title:after {
  border-color: transparent #fff transparent transparent;
}
.content-tab:nth-child(even) .content-tab-body {
  background-color: #222;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .content-tab:last-of-type .content-tab-body {
    padding-bottom: 50px;
  }
}
.content-tab .content-tab-title {
  width: 20%;
  height: 60px;
  background-color: #fff;
  position: relative;
  letter-spacing: 3px;
}
@media screen and (max-width: 480px) {
  .content-tab .content-tab-title {
    width: 50%;
  }
}
.content-tab .content-tab-title:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 25px 0;
  border-color: transparent #222 transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
}
.content-tab .content-tab-body {
  background-color: #fff;
  padding: 100px 0 110px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .content-tab .content-tab-body {
    padding-top: 0;
  }
}

.content-page {
  width: 80%;
  margin: auto;
  padding: 150px 0 100px;
}
@media screen and (max-width: 480px) {
  .content-page {
    width: 90%;
    padding: 100px 0 50px;
  }
}
.content-page .content-page-title {
  text-align: left;
  font-size: 4em;
  letter-spacing: 5px;
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .content-page .content-page-title {
    font-size: 2.5em;
    padding-bottom: 50px;
  }
}
.content-page .top-section-title {
  margin-bottom: 40px;
}
.content-page .news-alert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.content-page .news-alert {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 59, 20, 0.15);
  border: 1px solid #FF3B14;
  padding: 16px 20px 15px 20px;
  outline: none;
}
.content-page .news-alert:before {
  content: "！";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-right: 17px;
  background-color: #FF3B14;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}
.content-page .news-alert p {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #FF3B14;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.content-page .news-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.content-page .news-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 10px 0;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  background-color: #fff;
  color: #080808;
  font-family: "latin-arial", noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.content-page .news-tab.is-active {
  background-color: #00FF41;
  border-color: #00FF41;
}
.content-page .news-tab .news-tab-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background-color: #FF3B14;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}
.content-page .news-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 241.25px);
  gap: 25px;
}
@media screen and (min-width: 480px) and (max-width: 1025px) {
  .content-page .news-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .content-page .news-archive-grid {
    grid-template-columns: 1fr;
  }
}
.content-page .category-wrap {
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .content-page .category-wrap {
    display: none;
  }
}
.content-page .category-wrap .category-list__item {
  width: 20%;
  text-align: center;
  border-left: 1px solid #eee;
}
.content-page .category-wrap .category-list__item:last-of-type {
  border-right: 1px solid #eee;
}
.content-page .category-wrap .category-list__item.current .category-link {
  background-color: #46B042;
  color: #fff;
}
.content-page .category-wrap .category-list__item .category-link {
  width: 100%;
  padding: 1em;
}
.content-page .category-dropdown {
  display: none;
}
@media screen and (max-width: 480px) {
  .content-page .category-dropdown {
    display: block;
    text-align: right;
    position: relative;
  }
  .content-page .category-dropdown:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0.7em;
    width: 0;
    height: 0;
    padding: 0;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
    z-index: 10;
  }
}
.content-page .category-dropdown select {
  cursor: pointer;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 38px;
  padding: 10px 25px 10px 10px;
  line-height: 1;
  border: 1px solid #ddd;
}
.content-page .category-dropdown select:focus {
  background-color: #fff;
}
.content-page .news-wrap {
  width: 100%;
}
.content-page .schedule-wrap {
  width: 100%;
  color: #fff;
}
.content-page .artist-schedule-list {
  margin-top: 25px;
}
.content-page .artist-schedule-list .artist-schedule-link {
  padding: 1em;
  margin-bottom: 1em;
  background-color: #666;
  width: 100%;
}
.content-page .artist-schedule-list .artist-schedule-link:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner {
    display: block;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p {
  margin-left: 2%;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p {
    margin-left: 0;
  }
}
@media screen and (max-width: 801px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p {
    font-size: 0.8em;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p:first-of-type {
  margin-left: 0;
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-date {
  width: 12%;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-date {
    width: auto;
    display: inline-block;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-starttime {
  width: 6%;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-starttime {
    width: auto;
    display: inline-block;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-venue {
  width: 20%;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-venue {
    width: auto;
    margin-top: 0.5em;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-title {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-title {
    width: auto;
    margin-top: 0.5em;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-venue, .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner p.artist-schedule-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner .ticket-wrap {
  font-size: 0.7em;
  width: 14%;
  margin-left: 2%;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner .ticket-wrap {
    width: auto;
    margin-top: 20px;
    margin-left: 0;
    display: inline-block;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner .ticket-wrap .artist-schedule-ticketstatus .ticket-status {
  font-size: 1em;
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner .ticket-wrap p {
  margin-left: 0;
  font-size: 1em;
  margin-bottom: 5px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .content-page .artist-schedule-list .artist-schedule-link .artist-link-inner .ticket-wrap p {
    width: 100px;
    margin-bottom: 0;
    display: inline-block;
  }
}
.content-page .artist-schedule-list .artist-schedule-link .artist-link-inner .ticket-wrap p:last-of-type {
  margin-bottom: 0;
}
.content-page .artist-schedule-list .artist-schedule-link .no-schedule {
  text-align: center;
}

#breadcrumb {
  width: 100%;
  margin: 100px auto 0;
  font-size: 0.8em;
}
@media screen and (max-width: 480px) {
  #breadcrumb {
    margin-top: 50px;
    font-size: 0.7em;
  }
}
#breadcrumb .breadcrumb-list {
  text-align: right;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  #breadcrumb .breadcrumb-list {
    padding: 0.5em 0;
  }
}
#breadcrumb .breadcrumb-list li {
  display: inline;
}
#breadcrumb .current-crumb a {
  color: inherit;
  pointer-events: none;
  display: inline;
}
#breadcrumb li a {
  color: #46B042;
}

.box {
  font-size: 0.7em;
  padding: 1px 1em;
  margin-right: 1em;
  width: 80px;
}
.box.ticket-status {
  width: auto;
  display: inline-block;
  margin-right: 0;
  font-size: 0.8em;
}
.box.green {
  background-color: #23d160;
  color: #fff;
}
.box.gley {
  background-color: #ddd;
  color: #222;
}
.box.red {
  background-color: red;
}
.box.black {
  background-color: #222;
  color: #fff;
}

.list-tr {
  width: 100%;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 480px) {
  .list-tr {
    display: block;
  }
}
.list-tr:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.list-tr .list-th {
  width: 20%;
}
@media screen and (max-width: 480px) {
  .list-tr .list-th {
    width: auto;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
}
.list-tr .list-td {
  width: 80%;
  word-break: break-all;
}
@media screen and (max-width: 480px) {
  .list-tr .list-td {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .list-tr .list-td.list-td-venue {
    display: block;
  }
}
.list-tr .list-td.list-td-venue .box-wrap {
  margin-left: 1em;
}
@media screen and (max-width: 480px) {
  .list-tr .list-td.list-td-venue .box-wrap {
    margin-top: 0.5em;
    margin-left: 0;
  }
}
.list-tr .list-td.list-td-venue .box-wrap .box {
  margin-right: 0;
  height: 2em;
}

/*# sourceMappingURL=style.css.map */
