@charset "UTF-8";
/* ==========================================================================
Foundation
========================================================================== */
/* Reset
----------------------------------------------------------------- */
/* 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;
}

/* Base
	----------------------------------------------------------------- */
html {
  background: #000;
}

body {
  background: #fff;
  color: #000;
  font-family: 'Noto Sans Japanese', YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  opacity: 1;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.is-pc a:hover {
  opacity: 0.7;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
}

strong {
  font-weight: bold;
}

img {
  vertical-align: bottom;
}

/* ==========================================================================
	Layout
========================================================================== */
#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 55px;
}

.l-toppage #wrapper {
  padding-top: 0;
}

#header {
  position: fixed;
  z-index: 100;
  background: #151515;
  height: 55px;
  color: #fff;
  line-height: 1;
  width: 100%;
  left: 0;
  top: 0;
}

#header .c-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 55px;
}

.l-toppage #header {
  position: relative;
  margin-top: -55px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.l-toppage #header.is-fixed {
  position: fixed;
  z-index: 10;
  margin-top: 0;
}

.header__layer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header__logo {
  margin-right: 30px;
}

.header__logo img {
  max-width: 248px;
  height: auto;
}

.is-pc .header__logo a:hover {
  opacity: 1;
}

@media screen and (max-width: 1020px) {
  .header__logo {
    margin-right: 20px;
  }
  .header__logo img {
    display: none;
  }
  .header__logo a {
    display: block;
    width: 25px;
    height: 25px;
    background: url(/asset/img/header_mark.png) no-repeat left top;
    background-size: contain;
  }
}

@media screen and (max-width: 820px) {
  #header,
  .l-toppage #header {
    height: 55px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    margin-top: 0;
  }
  #header .c-inner,
  .l-toppage #header .c-inner {
    height: 55px;
    padding: 0 15px;
  }
  .header__logo {
    margin-right: 0;
  }
  .header__logo img {
    display: inline-block;
    height: 25px;
    width: auto;
    max-width: 100%;
  }
  .header__logo a {
    display: inline;
    width: auto;
    height: auto;
    background: none;
  }
  .header__layer {
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: #151515;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 54px;
    -webkit-transition: height 0.4s;
    transition: height 0.4s;
  }
  #header.is-active .header__layer {
    height: 100%;
  }
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}

.header__nav__item {
  margin-right: 20px;
}

.header__nav__item a {
  color: #fff;
  display: inline-block;
  white-space: nowrap;
}

.header__nav__item a.is-disable {
  opacity: 0.3;
  pointer-events: none;
}

@media screen and (max-width: 820px) {
  .header__nav ul {
    margin-top: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    font-weight: bold;
  }
  .header__nav__item {
    margin-right: 0;
    margin-top: 30px;
  }
}

.header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  margin-left: auto;
}

.header__sns__item {
  margin-left: 15px;
}

.header__sns__item:first-child {
  margin-left: 0;
  border-right: 1px solid #fff;
  font-size: 9px;
  padding: 0 1em 0 0;
}

.header__sns__item img {
  height: 15px;
  width: auto;
}

@media screen and (max-width: 820px) {
  .header__sns {
    font-size: 30px;
    margin-left: 0;
    margin-top: 80px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 70%;
  }
  .header__sns__item {
    margin-left: 40px;
  }
  .header__sns__item:first-child, .header__sns__item:nth-child(2) {
    margin-left: 0;
  }
  .header__sns__item img {
    height: 20px;
  }
  .header__sns__item:first-child {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 15px;
    border: none;
    border-top: 1px solid #ccc;
    padding: 15px 0 0;
  }
}

.header__toggle {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 15px;
  height: 30px;
  width: 30px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.header__toggle:before, .header__toggle:after,
.header__toggle a {
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header__toggle:before {
  content: '';
  top: 5px;
}

.header__toggle:after {
  content: '';
  top: 25px;
}

.header__toggle a {
  top: 50%;
  text-indent: -100000px;
  font-size: 1;
  line-height: 0;
}

#header.is-active .header__toggle {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

#header.is-active .header__toggle:before {
  content: '';
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#header.is-active .header__toggle:after {
  content: '';
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#header.is-active .header__toggle a {
  opacity: 0;
}

#content {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  position: relative;
  z-index: 2;
}

#footer {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  background: #000;
  color: #fff;
}

#footer .c-inner {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__logo {
  line-height: 1;
}

.footer__logo img {
  width: 213px;
  height: 13px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  margin-top: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__nav__item a {
  color: #fff;
  font-size: 12px;
  display: inline-block;
  white-space: nowrap;
}

.footer__nav__item a.is-disable {
  opacity: 0.3;
  pointer-events: none;
}

.footer__nav__item:after {
  content: '|';
  font-size: 11px;
  margin: 0 0.5em;
}

.footer__nav__item:last-child:after {
  display: none;
}

.footer__noisycroak {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__noisycroak img {
  width: 146px;
  height: 45px;
}

.footer__copy {
  font-size: 10px;
  margin-right: 30px;
  white-space: nowrap;
}

@media screen and (max-width: 820px) {
  #footer {
    text-align: center;
  }
  #footer .c-inner {
    padding: 15px;
    display: block;
  }
  .footer__nav {
    margin-top: 15px;
    line-height: 1.3;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__copy {
    margin-right: 0;
  }
  .footer__noisycroak {
    margin-top: 20px;
    text-align: center;
    display: block;
  }
  .footer__logo--noisycroak {
    margin-top: 10px;
  }
}

/* ==========================================================================
	Object
========================================================================== */
/* Component
----------------------------------------------------------------- */
/* Component ============== */
/* Navi */
.c-content_nav {
  position: relative;
  z-index: 10;
}

.c-content_nav .c-inner {
  position: relative;
}

.c-content_nav:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
}

.c-content_nav.is-active:before {
  height: 100%;
  opacity: 1;
}

.c-content_nav__floater {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.c-content_nav__floater.is-fixed {
  position: fixed;
  top: 85px;
  right: 50%;
  margin-right: -510px;
}

.c-content_nav__floater.is-ready {
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s;
  -webkit-transform: translate(0, -100px);
          transform: translate(0, -100px);
  opacity: 0;
}

@media screen and (max-width: 1080px) {
  .c-content_nav__floater.is-fixed {
    right: 30px;
    margin-right: 0;
  }
}

.c-content_nav__list {
  text-align: right;
  position: absolute;
  right: 21px;
  top: 52px;
  white-space: nowrap;
  border-right: 1px solid #ccc;
  display: none;
}

.c-content_nav__list > li {
  margin-top: 1em;
  font-weight: bold;
}

.c-content_nav__list > li:first-child {
  margin-top: 0;
}

.c-content_nav__list > li:after {
  content: '';
  vertical-align: middle;
  display: inline-block;
  width: 10px;
  height: 1px;
  background: #ccc;
  margin-left: 1em;
}

.c-content_nav__toggle a {
  display: block;
  width: 40px;
  height: 40px;
  text-indent: -10000px;
  background: url(/asset/img/icn-content_nav.svg) no-repeat center center;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  background-size: contain;
  -webkit-transition: -webkit-transform 0.4s !important;
  transition: -webkit-transform 0.4s !important;
  transition: transform 0.4s !important;
  transition: transform 0.4s, -webkit-transform 0.4s !important;
}

.is-active .c-content_nav__toggle a {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

@media screen and (max-width: 820px) {
  .c-content_nav__floater {
    position: fixed;
    top: auto;
    bottom: 30px;
    right: 15px;
  }
  .c-content_nav__floater.is-fixed {
    position: fixed;
    top: auto;
    bottom: 30px;
    right: 15px;
    margin-right: 0;
  }
  .c-content_nav__floater.is-ready {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  .c-content_nav__list {
    top: auto;
    bottom: 52px;
  }
}

.c-content_tab {
  max-width: 1080px;
  height: 0;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  top: -50px;
}

@media screen and (max-width: 820px) {
  .c-content_tab {
    top: -35px;
  }
}

.c-content_tab li {
  width: 49%;
}

.c-content_tab li a {
  background: #ee5300;
  color: #fff;
  text-align: center;
  display: block;
  height: 50px;
  line-height: 50px;
  border-radius: 7px 7px 0px 0px;
  font-weight: bold;
  -webkit-box-shadow: 0px -2px 2px -1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0px -2px 2px -1px rgba(0, 0, 0, 0.1) inset;
}

.c-content_tab li a.is-active {
  background: #fff;
  color: #333;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-content_tab li a.is-active:hover {
  opacity: 1;
}

@media screen and (max-width: 820px) {
  .c-content_tab li a {
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
}

/* Section */
.c-inner {
  max-width: 1080px;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 820px) {
  .c-inner {
    padding: 0 15px;
  }
}

.c-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.c-title span {
  display: block;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 820px) {
  .c-title {
    font-size: 24px;
  }
}

.c-pagetitle {
  background: #000;
  color: #fff;
  position: relative;
  text-align: center;
  width: 100%;
  padding: 80px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

.c-pagetitle:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/asset/img/bg-dot.png) repeat left top;
  opacity: 0.15;
  z-index: 1;
}

.c-pagetitle .c-inner {
  z-index: 2;
  position: relative;
}

.c-pagetitle__main {
  min-height: 123px;
  line-height: 123px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  font-weight: bold;
}

.c-pagetitle__sub {
  margin-top: 80px;
  font-size: 18px;
  list-style: 27px;
}

@media screen and (max-width: 820px) {
  .c-pagetitle {
    padding: 30px 0;
  }
  .c-pagetitle__main {
    min-height: 28px;
    font-size: 28px;
    line-height: 28px;
  }
  .c-pagetitle__sub {
    margin-top: 30px;
    font-size: 14px;
    text-align: left;
  }
}

.c-update_date {
  text-align: center;
  font-size: 12px;
  margin: 1.5em auto 0;
}

.c-section_child {
  margin-top: 80px;
}

.c-section_child:first-child {
  margin-top: 0;
}

@media screen and (max-width: 820px) {
  .c-section_child {
    margin-top: 40px;
  }
}

.c-section__title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.c-section__title:after {
  content: '';
  display: block;
  margin: 14px auto 0;
  width: 50px;
  height: 1px;
  background-color: #333;
}

.is-alt .c-section__title:after {
  background-color: #fff;
}

.c-section__text {
  font-size: 14px;
}

.c-section__text a {
  color: #ee5300;
}

.c-section__text a[target="_blank"]:after {
  content: '';
  display: inline-block;
  background: url(/asset/img/icn-blank_alt.svg) no-repeat left top;
  background-size: contain;
  width: 11px;
  height: 10px;
  margin-left: 5px;
  vertical-align: middle;
  margin-top: -3px;
}

.c-section__text +
.c-section__text {
  margin-top: 30px;
}

@media screen and (max-width: 820px) {
  .c-section__title {
    font-size: 20px;
  }
}

/* table */
.c-table_viewport {
  overflow: auto;
  width: 100%;
  position: relative;
}

.c-table_viewport.is-scroll:before {
  content: 'スクロール';
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7) url(/asset/img/icn-scroll.svg) no-repeat 5px center;
  background-size: 14px 14px;
  width: auto;
  height: 14px;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  padding: 0.3em 0.5em 0.3em 24px;
  border-radius: 3px;
}

.c-table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin: 0 auto;
}

.c-table th, .c-table td {
  font-size: 14px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  padding: 7px 14px;
}

.c-table th:last-child,
.c-table td:last-child {
  border-left: 0;
}

.c-table th {
  font-weight: bold;
  background: #efefef;
  vertical-align: middle;
}

/* list */
.c-list,
.c-list--nodisc {
  list-style: none;
  text-align: left;
}

.c-list li,
.c-list--nodisc li {
  font-weight: bold;
  font-size: 14px;
  padding-left: 1em;
}

.c-list li:before,
.c-list--nodisc li:before {
  content: '・';
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.c-list li + li,
.c-list--nodisc li + li {
  margin-top: 1em;
}

@media screen and (max-width: 820px) {
  .c-list li + li,
  .c-list--nodisc li + li {
    margin-top: 1.2em;
  }
}

.c-list--nodisc li {
  padding-left: 0;
}

.c-list--nodisc li:before {
  display: none;
}

.c-note {
  font-size: 12px;
  font-weight: normal;
}

/* column */
.c-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

.c-column > * + * {
  margin-left: 30px;
}

@media screen and (max-width: 820px) {
  .c-column {
    display: block;
  }
  .c-column > * + * {
    margin-left: 0;
    margin-top: 1em;
  }
}

/* FAQ */
.c-faq,
.c-accordion {
  padding: 30px;
  border-radius: 10px;
  background: #efefef;
  margin-top: 80px;
}

@media screen and (max-width: 820px) {
  .c-faq,
  .c-accordion {
    margin-top: 40px;
    padding: 15px;
    border-radius: 7px;
  }
}

.c-faq__title,
.c-accordion__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .c-faq__title,
  .c-accordion__title {
    font-size: 16px;
  }
}

.c-faq__list,
.c-accordion__list {
  text-align: left;
  margin-top: 15px;
}

@media screen and (max-width: 820px) {
  .c-faq__list,
  .c-accordion__list {
    margin-top: 0;
  }
}

.c-faq__list__title,
.c-accordion__list__title {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.js-toggle_faq .c-faq__list__title, .js-toggle_faq
.c-accordion__list__title {
  cursor: pointer;
}

.is-pc .js-toggle_faq .c-faq__list__title:hover, .is-pc .js-toggle_faq
.c-accordion__list__title:hover {
  opacity: 0.75;
}

@media screen and (max-width: 820px) {
  .c-faq__list__title,
  .c-accordion__list__title {
    font-size: 14px;
  }
}

.c-faq__list__title:before,
.c-accordion__list__title:before {
  content: '';
  display: inline-block;
  background: url(/asset/img/icn-question.svg) no-repeat left top;
  background-size: contain;
  width: 21px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.js-toggle_faq .c-faq__list__title:after, .js-toggle_faq
.c-accordion__list__title:after {
  content: '';
  display: inline-block;
  background: #ee5300 url(/asset/img/icn-plus.svg) no-repeat center center;
  background-size: 12px 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 820px) {
  .js-toggle_faq .c-faq__list__title:after, .js-toggle_faq
  .c-accordion__list__title:after {
    background-size: 6px 6px;
    width: 14px;
    height: 14px;
  }
}

.js-toggle_faq .c-faq__list__title.is-active:after, .js-toggle_faq
.c-accordion__list__title.is-active:after {
  background: #ee5300 url(/asset/img/icn-minus.svg) no-repeat center center;
  background-size: 12px 12px;
}

@media screen and (max-width: 820px) {
  .js-toggle_faq .c-faq__list__title.is-active:after, .js-toggle_faq
  .c-accordion__list__title.is-active:after {
    background-size: 6px 6px;
  }
}

.c-accordion__list__title:before {
  display: none;
}

.c-accordion__list__title__num {
  background: #333;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  display: inline-block;
  position: relative;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-accordion__list__title__num:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid #333;
  right: -18px;
  top: 50%;
  margin-top: -6px;
}

@media screen and (max-width: 820px) {
  .c-accordion__list__title__num {
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    margin-right: 6px;
  }
  .js-toggle_faq .c-accordion__list__title__num {
    display: none;
  }
  .c-accordion__list__title__num:after {
    border: 6px solid transparent;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #333;
    right: -9px;
    margin-top: -3px;
  }
}

.c-faq__list__text,
.c-accordion__list__text {
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  font-size: 14px;
  -webkit-transition: max-height 0.2s, padding 0.2s;
  transition: max-height 0.2s, padding 0.2s;
}

.js-toggle_faq .c-faq__list__text, .js-toggle_faq
.c-accordion__list__text {
  cursor: pointer;
}

.c-faq__list__title.is-active + .c-faq__list__text,
.c-accordion__list__title.is-active + .c-faq__list__text, .c-faq__list__title.is-active +
.c-accordion__list__text,
.c-accordion__list__title.is-active +
.c-accordion__list__text {
  -webkit-transition: max-height 0.8s, padding 0.2s;
  transition: max-height 0.8s, padding 0.2s;
  max-height: 500px;
  padding-bottom: 20px;
}

.c-faq__list__text:last-child,
.c-accordion__list__text:last-child {
  border-bottom: none;
}

/* Button */
.c-button {
  display: inline-block;
  color: #fff !important;
  background: #ee5300;
  min-width: 270px;
  text-align: center;
  height: 40px;
  line-height: 38px;
  font-weight: bold;
  font-size: 16px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-button.is-teaser {
  text-indent: -10000px;
  pointer-events: none;
  cursor: default;
  background-color: rgba(255, 255, 255, 0.1);
}

.c-button.is-disable {
  background: rgba(233, 233, 233, 0.7);
  color: #333 !important;
  pointer-events: none;
}

.c-button.is-disable:hover {
  opacity: 1;
}

.c-button[target="_blank"]:after {
  content: '';
  display: inline-block;
  background: url(/asset/img/icn-blank.svg) no-repeat left top !important;
  background-size: contain;
  width: 14px !important;
  height: 12px !important;
  margin-left: 7px !important;
  vertical-align: middle;
  margin-top: -4px !important;
}

@media screen and (max-width: 820px) {
  .c-button {
    min-width: auto;
    width: 100%;
  }
}

.c-button--inline {
  display: inline-block;
  color: #fff;
  background: #ee5300;
  text-align: center;
  font-size: inherit;
  padding: 2px 7px;
  margin: 3px auto;
}

.c-button--inline[target="_blank"]:after {
  content: '';
  display: inline-block;
  background: url(/asset/img/icn-blank.svg) no-repeat left top;
  background-size: contain;
  width: 11px;
  height: 10px;
  margin-left: 5px;
  vertical-align: middle;
  margin-top: -3px;
}

/* Label */
.c-label {
  font-size: 12px;
  background: rgba(233, 233, 233, 0.7);
  color: #333;
  display: inline-block;
  font-weight: bold;
  padding: 0.3em 1em;
}

/* Color */
.c-text__color__alert {
  color: #e60012;
}

/* Project
----------------------------------------------------------------- */
/* Keyvisual ============== */
.p-keyvisual {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-bottom: 55px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #000;
}

.p-keyvisual:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(/asset/img/bg-dot.png) repeat left top;
  opacity: 0.2;
}

.p-keyvisual .c-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.p-keyvisual .c-button.is-disable {
  background: rgba(200, 200, 200, 0.7);
}

@media screen and (max-width: 1020px) {
  .p-keyvisual .c-inner {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 820px) {
  .p-keyvisual {
    min-height: 100vh;
    height: auto;
    padding-bottom: 30px;
  }
  .p-keyvisual .c-inner {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-keyvisual__background {
  position: absolute !important;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}

.p-keyvisual__main {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 55%;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
}

@media screen and (max-width: 1020px) {
  .p-keyvisual__main {
    width: 100%;
    padding: 45px 30px 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 820px) {
  .p-keyvisual__main {
    width: 100%;
    margin-top: 55px;
    padding: 30px 15px 60px;
    display: block;
  }
}

.p-keyvisual__copy {
  background: #fff;
  font-size: 17px;
  font-weight: bold;
  color: #ee5300;
  border-radius: 10px;
  height: 39px;
  line-height: 39px;
  padding: 0 20px;
  position: relative;
  display: inline-block;
}

.p-keyvisual__copy:after {
  content: '';
  display: block;
  position: absolute;
  background: url(/asset/img/img-keyvisual_balooon_lead.svg) no-repeat left top;
  width: 39px;
  height: 30px;
  bottom: -29px;
}

@media screen and (max-width: 940px) {
  .p-keyvisual__copy {
    font-size: 14px;
    height: 31px;
    line-height: 31px;
    padding: 0 16px;
    border-radius: 8px;
  }
  .p-keyvisual__copy:after {
    background-size: contain;
    width: 31px;
    height: 24px;
    bottom: -23px;
  }
}

@media screen and (max-width: 820px) {
  .p-keyvisual__copy {
    font-size: 12px;
    margin: 0 auto;
    display: block;
    padding: 0 5px;
    text-align: center;
    letter-spacing: 0.03em;
  }
  .p-keyvisual__copy:after {
    width: 20px;
    height: 15px;
    bottom: -14px;
    left: 20%;
  }
}

.p-keyvisual__logo {
  margin-top: 50px;
}

.p-keyvisual__logo img {
  max-width: 100%;
  height: auto;
}

.p-keyvisual__text {
  margin-top: 35px;
  font-size: 17px;
  font-weight: bold;
}

.p-keyvisual__text strong {
  font-size: 31px;
  letter-spacing: 0.025em;
}

.p-keyvisual__text span {
  font-size: 28px;
}

@media screen and (max-width: 1020px) {
  .p-keyvisual__logo {
    margin-top: 30px;
  }
  .p-keyvisual__logo img {
    max-width: 80%;
  }
  .p-keyvisual__text {
    font-size: 14px;
  }
  .p-keyvisual__text strong {
    font-size: 25px;
  }
  .p-keyvisual__text span {
    font-size: 23px;
  }
}

@media screen and (max-width: 820px) {
  .p-keyvisual__logo {
    text-align: center;
  }
  .p-keyvisual__logo img {
    max-width: 100%;
  }
  .p-keyvisual__text {
    margin-top: 25px;
    width: 100%;
    text-align: center;
  }
  .p-keyvisual__text strong {
    font-size: 18px;
  }
  .p-keyvisual__text span {
    font-size: 18px;
  }
}

.p-keyvisual__sub {
  width: 45%;
  position: relative;
  z-index: 1;
  padding: 0 0 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-keyvisual__box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  margin-left: -45px;
}

.p-keyvisual__box h2 {
  font-size: 24px;
  color: #ee5300;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}

.p-keyvisual__box p {
  margin-top: 23px;
  font-size: 13px;
}

.p-keyvisual__box p span {
  font-size: 11px;
}

.p-keyvisual__box p em {
  color: #e60012;
}

@media screen and (max-width: 1020px) {
  .p-keyvisual__sub {
    width: 100%;
    padding: 0 30px;
    margin: -30px auto 0;
    max-width: 600px;
  }
  .p-keyvisual__box {
    margin-left: 0;
    padding: 15px;
  }
  .p-keyvisual__box h2 {
    font-size: 22px;
    letter-spacing: 0.03em;
  }
  .p-keyvisual__box p {
    font-size: 13px;
  }
}

@media screen and (max-width: 820px) {
  .p-keyvisual__sub {
    padding: 0 15px;
  }
}

/* News ============== */
.l-news .c-pagetitle {
  background: #666;
  background-size: cover;
}

.l-news .c-pagetitle .c-pagetitle__main {
  background: url(/asset/img/ttl-page_news.png) no-repeat center top;
  background-size: contain;
}

.p-news {
  background: #fff;
}

.p-news .c-inner {
  padding: 50px 30px 80px;
}

.p-news__title {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}

.p-news__title span {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.p-news__list {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-news__list__item {
  width: calc(235/1020*100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  background: url(/asset/img/bg-dot_border.gif) repeat-x left bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.5em;
}

.p-news__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: default;
  padding-bottom: 1.5em;
}

.p-news__list__item a:hover {
  opacity: 1;
  cursor: default;
}

.p-news__list__item a[href]:hover {
  opacity: 0.7;
  cursor: pointer;
}

.p-news__list__item strong {
  margin-top: 0.3em;
  font-weight: normal;
  width: 100%;
}

.p-news__list__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(132/235*100%);
  margin-bottom: 1em;
}

.p-news__list__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-news__button {
  margin-top: 0.5em;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .p-news .c-inner {
    display: block;
    padding: 30px 15px;
  }
  .p-news__title {
    width: 100%;
    font-size: 24px;
  }
  .p-news__title span {
    font-size: 12px;
  }
  .p-news__list {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-news__list__item {
    width: 48%;
    font-size: 12px;
  }
  .p-news__list__item:nth-child(3), .p-news__list__item:nth-child(4) {
    margin-top: 2em;
  }
  .p-news__list__image {
    margin-bottom: 0.5em;
  }
}

/* Video ============== */
.p-video {
  background: url(/asset/img/bg-video.gif) repeat left top;
}

.p-video .c-inner {
  padding: 80px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.p-video_image {
  width: 48.52%;
  position: relative;
  color: #fff;
  background: #fff;
}

.p-video_image a {
  color: #fff;
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(556/990*100%);
}

.p-video_image a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.is-pc .p-video_image a:hover {
  opacity: 1;
}

.is-pc .p-video_image a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-video_image__text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
}

.p-video_image__text span {
  width: 33%;
  display: block;
  text-align: center;
}

.p-video_image__text span.is-disable {
  visibility: hidden;
}

.p-video_image__play {
  background: #ee5300;
  border-radius: 50%;
  width: 88px !important;
  height: 88px;
  margin: 0 30px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  margin-top: -44px;
  left: 50%;
  margin-left: -44px;
}

.p-video_image__play:before {
  content: '';
  width: 0;
  height: 0;
  border: 18px solid transparent;
  border-left: 34px solid #fff;
  margin-left: 37.5%;
}

.p-video_detail {
  width: 48.52%;
  letter-spacing: 0.02em;
}

.p-video_title {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
}

.p-video_title:after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background: #fff url(/asset/img/img-video_composers_color.gif) no-repeat left top;
  margin-top: 20px;
}

.p-video_subtitle {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.16;
  margin-top: 20px;
}

.p-video_description {
  line-height: 1.6;
  font-size: 18px;
  margin-top: 19px;
}

@media screen and (max-width: 1020px) {
  .p-video_title {
    font-size: 56px;
  }
  .p-video_subtitle {
    font-size: 28px;
  }
  .p-video_description {
    font-size: 16px;
  }
  .p-video_image__text {
    font-size: 16px;
    padding: 0 15px;
  }
}

@media screen and (max-width: 820px) {
  .p-video .c-inner {
    display: block;
    padding: 30px 15px;
  }
  .p-video_image,
  .p-video_detail {
    width: 100%;
    max-width: 495px;
    margin: 0 auto;
  }
  .p-video_image {
    margin-top: 30px;
  }
  .p-video_title {
    font-size: 36px;
  }
  .p-video_subtitle {
    font-size: 18px;
  }
}

/* About ============== */
.l-about .c-pagetitle {
  background: url(/asset/img/bg-ttl_about.jpg) no-repeat center top;
  background-size: cover;
}

.l-about .c-pagetitle .c-pagetitle__main {
  background: url(/asset/img/ttl-page_about.png) no-repeat center top;
  background-size: contain;
}

.l-about .p-about {
  background-image: none;
}

.l-about .p-about > .c-inner {
  padding: 50px 30px 80px;
}

.l-about .p-about__copy {
  margin-top: 0;
}

.p-about {
  background: #fff url(/asset/img/ttl-about.png) no-repeat center 40px;
}

.p-about .c-inner {
  padding: 80px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-about .c-title {
  text-align: left;
}

@media screen and (max-width: 820px) {
  .p-about {
    background-position: center 21px;
    background-size: auto 50px;
  }
  .p-about .c-title {
    text-align: center;
  }
  .p-about .c-inner {
    padding: 30px 15px;
  }
}

.p-about__main {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-about__copy {
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
}

.p-about__text {
  font-size: 14px;
  margin-top: 40px;
}

.p-about__image {
  width: 26.47%;
  -webkit-box-shadow: -10px 10px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: -10px 10px 0 0 rgba(0, 0, 0, 0.1);
  float: right;
  margin: 0 0 40px 40px;
}

.p-about__image img {
  max-width: 100%;
  height: auto;
}

.p-about__producer {
  margin-top: 50px;
  background-color: #efefef;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-about__producer__image {
  width: 106px;
}

.p-about__producer__image img {
  max-width: 100%;
  height: auto;
}

.p-about__producer__profile {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 15px;
}

.p-about__producer__profile h2 {
  font-size: 14px;
  font-weight: bold;
}

.p-about__producer__profile p {
  margin-top: 9px;
  font-size: 11px;
}

@media screen and (max-width: 820px) {
  .p-about__image {
    display: none;
  }
  .p-about__copy {
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
  }
  .p-about__text {
    margin-top: 30px;
  }
  .p-about__producer {
    display: block;
    margin-top: 30px;
  }
  .p-about__producer__profile {
    margin-left: 0;
  }
  .p-about__producer__image {
    float: right;
    margin-left: 15px;
    margin-bottom: 5px;
  }
}

/* Artist ============== */
.l-artist .c-pagetitle {
  background: #151515 url(/asset/img/bg-ttl_artist.png) no-repeat center bottom;
  background-size: cover;
}

.l-artist .c-pagetitle .c-pagetitle__main {
  background: url(/asset/img/ttl-page_artist.png) no-repeat center top;
  background-size: contain;
}

.l-artist .p-artist {
  background: #151515;
}

.l-artist .p-artist > .c-inner {
  padding: 0 30px 30px;
}

.l-artist .p-artist__list {
  margin-top: -30px;
}

.p-artist {
  background: #151515 url(/asset/img/ttl-artist.png) no-repeat center 40px;
  color: #fff;
}

.p-artist .c-inner {
  padding: 80px 30px;
}

@media screen and (max-width: 820px) {
  .p-artist {
    background-position: center 21px;
    background-size: auto 50px;
  }
  .p-artist .c-inner {
    padding: 30px 15px;
  }
}

.p-artist__list {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-artist__list.is-teaser {
  position: relative;
}

.p-artist__list.is-teaser:after {
  content: '順次発表予定！';
  position: absolute;
  display: block;
  font-size: 28px;
  line-height: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #191919;
  color: #fff;
  font-weight: bold;
  padding: 0 30px;
  white-space: nowrap;
}

@media screen and (max-width: 820px) {
  .p-artist__list.is-teaser:after {
    top: 80px;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    padding: 0 15px;
  }
}

.p-artist__list__item, .p-artist__list__item--double {
  width: 25%;
  margin-bottom: 40px;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.is-pc .p-artist__list__item a:hover, .is-pc .p-artist__list__item--double a:hover {
  opacity: 1;
}

.is-pc .p-artist__list__item:hover img, .is-pc .p-artist__list__item--double:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 1;
}

.is-teaser .p-artist__list__item a, .is-teaser .p-artist__list__item--double a,
.p-artist__list__item.is-teaser a,
.is-teaser.p-artist__list__item--double a {
  pointer-events: none;
  cursor: default;
}

.p-artist__list__item > a, .p-artist__list__item--double > a {
  display: block;
  position: relative;
}

.p-artist__list__item--double {
  width: 50%;
}

@media screen and (max-width: 1020px) {
  .p-artist__list__item, .p-artist__list__item--double {
    width: 33.33%;
  }
  .p-artist__list__item--double {
    width: 100%;
  }
  .p-artist__list__item--double .p-artist__name--jp {
    letter-spacing: 0;
  }
  .p-artist__list__item--double:nth-child(even) {
    margin-left: 0;
  }
}

@media screen and (max-width: 820px) {
  .p-artist__list {
    margin-top: 40px;
  }
  .l-artist .c-update_date {
    margin-bottom: 1.5em;
  }
  .p-artist__list__item--double {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .p-artist__list__item, .p-artist__list__item--double {
    width: 47%;
    padding-left: 0;
  }
  .p-artist__list__item:nth-child(even), .p-artist__list__item--double:nth-child(even) {
    margin-left: 6%;
  }
  .p-artist__list__item--double {
    width: 100%;
  }
  .p-artist__list__item--double:nth-child(even) {
    margin-left: 0;
  }
}

.p-artist__photo {
  width: 80%;
  height: 0;
  padding-top: 111.11%;
  position: relative;
}

.p-artist__photo img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0.8;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

.is-teaser .p-artist__photo {
  background-color: rgba(255, 255, 255, 0.1);
}

.p-artist__list__item--double .p-artist__photo {
  width: 90%;
  padding-top: 55.555%;
}

@media screen and (max-width: 1020px) {
  .p-artist__list__item--double .p-artist__photo {
    width: 93.8%;
  }
}

@media screen and (max-width: 540px) {
  .p-artist__list__item--double .p-artist__photo {
    width: 90%;
  }
}

.is-active .p-artist__photo:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: -30px;
  border: 20px solid transparent;
  border-bottom: 20px solid #333;
}

.p-artist__profile {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: #fff;
  line-height: 1;
}

.is-teaser .p-artist__profile {
  width: 100px;
}

.p-artist__list__item--double .p-artist__profile {
  bottom: 30px;
}

.p-artist__name--post,
.p-artist__name--en,
.p-artist__name--jp {
  display: block;
  text-align: right;
  text-shadow: 0 0 10px black;
}

.is-teaser .p-artist__name--post, .is-teaser
.p-artist__name--en, .is-teaser
.p-artist__name--jp {
  background-color: rgba(255, 255, 255, 0.1);
}

.p-artist__name--post {
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.07em;
}

.p-artist__name--en {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.is-teaser .p-artist__name--en {
  height: 14px;
}

.p-artist__name--jp {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 200;
}

.is-teaser .p-artist__name--jp {
  height: 20px;
}

.p-artist__detail {
  position: absolute;
  width: 100vw;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #333;
  margin-top: 30px;
  border-bottom: 50px solid #151515;
  display: none;
}

.p-artist__detail .c-inner {
  padding: 50px 50px 20px;
}

.p-artist__detail:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 100%;
  padding: 30px 0 50px;
  background: #151515;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.is-unveil .p-artist__detail:after {
  height: 0;
  padding: 0;
}

.is-active .p-artist__detail {
  display: block;
}

.p-artist__detail__close {
  text-align: center;
  margin: 30px 0 0;
}

.is-pc .p-artist__detail__close a:hover {
  opacity: 0.7;
}

.p-artist__detail__text {
  font-size: 14px;
  line-height: 1.6;
}

.p-artist__detail__text a {
  color: #ee5300;
  text-decoration: underline !important;
}

.is-pc .p-artist__detail__text a:hover {
  text-decoration: none !important;
}

.p-artist__detail__text a[target='_blank']:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(/asset/img/icn-blank.svg) no-repeat center bottom;
  background-size: contain;
  margin-left: 0.5em;
}

@media screen and (max-width: 820px) {
  .p-artist__detail .c-inner {
    padding: 30px 20px 20px;
  }
}

.p-artist__button {
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 720px) {
  .p-artist__profile {
    right: 0;
    bottom: 15px;
  }
  .p-artist__name--en {
    font-size: 12px;
  }
  .p-artist__name--jp {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 400;
  }
}

.p-artist__more {
  font-size: 18px;
  font-weight: bold;
  background: #333;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  height: 55px;
  line-height: 55px;
  border-radius: 6px;
  text-align: center;
  position: relative;
}

.p-artist__more:after {
  content: '';
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-bottom: 20px solid #333;
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -20px;
}

/* Program ============== */
.l-program_ticket .c-pagetitle {
  background: url(/asset/img/bg-ttl_program_ticket.jpg) no-repeat center center;
  background-size: cover;
  padding: 29px 0;
}

.l-program_ticket .c-pagetitle .c-pagetitle__main {
  background: url(/asset/img/ttl-page_program_ticket.png) no-repeat center center;
  background-size: contain;
  min-height: 222px;
}

.l-program_ticket .c-update_date {
  margin-top: -1.5em;
}

.p-program {
  background: #fff url(/asset/img/ttl-program.png) no-repeat center 40px;
}

.p-program > .c-inner {
  padding: 80px 30px;
}

.p-program .c-button.is-teaser {
  background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 820px) {
  .l-program_ticket .c-pagetitle {
    padding: 9px 0;
  }
  .l-program_ticket .c-pagetitle .c-pagetitle__main {
    min-height: 84px;
  }
  .l-program_ticket .p-program {
    background-position: center 21px;
    background-size: auto 50px;
  }
  .l-program_ticket .p-program > .c-inner {
    padding: 30px 15px;
  }
}

.p-program__schedule {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.p-program__schedule a {
  display: block;
  position: relative;
  max-width: 640px;
  height: 0;
  padding-top: calc(905/640*100%);
}

.p-program__schedule img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-program__list {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-program__list.is-teaser {
  position: relative;
}

.p-program__list.is-teaser:after {
  content: '順次発表予定！';
  position: absolute;
  display: block;
  font-size: 28px;
  line-height: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #191919;
  color: #fff;
  font-weight: bold;
  padding: 0 30px;
  white-space: nowrap;
}

@media screen and (max-width: 820px) {
  .p-program__list.is-teaser:after {
    top: 80px;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    padding: 0 15px;
  }
}

.p-program__list__item {
  width: 48.52%;
  background: url(/asset/img/bg-dot_border.gif) repeat-x left bottom;
  padding-bottom: 30px;
  margin-bottom: 40px;
  margin-left: 2.95%;
}

.p-program__list__item:nth-child(odd) {
  margin-left: 0;
}

@media screen and (max-width: 820px) {
  .p-program {
    background-position: center 21px;
    background-size: auto 50px;
  }
  .p-program .c-inner {
    padding: 30px 15px;
  }
  .p-program__list {
    display: block;
    margin-top: 40px;
  }
  .p-program__list__item {
    width: 100%;
    padding-bottom: 24px;
    margin-bottom: 24px;
    margin-left: 0;
  }
  .p-program__list__item.is-teaser {
    display: none;
  }
}

.is-new .p-program__list__cat:before {
  content: 'NEW';
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  height: 22px;
  line-height: 22px;
  padding: 0 1em;
  margin-right: 10px;
  border: 2px solid #e60012;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #e60012;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.p-program__list__cat span {
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  height: 22px;
  line-height: 22px;
  color: #fff;
  padding: 0 1em;
  margin-right: 10px;
  margin-bottom: 5px;
}

.p-program__list__cat span.cat-large_hole {
  background-color: #e64292;
}

.p-program__list__cat span.cat-small_hole {
  background-color: #5b00ff;
}

.p-program__list__cat span.cat-exhibition {
  background-color: #2aa000;
}

.p-program__list__cat span.cat-premium {
  background-color: #e60012;
}

.p-program__list__cat span.cat-day1 {
  background-color: #999;
}

.p-program__list__cat span.cat-day2 {
  background-color: #999;
}

.is-teaser .p-program__list__cat span {
  background-color: rgba(0, 0, 0, 0.1);
  min-width: 75px;
}

.p-program__title {
  display: block;
  font-size: 24px;
  line-height: 1.29;
  font-weight: bold;
  margin-top: 10px;
}

.is-teaser .p-program__title a,
.is-teaser .p-program__title span {
  background-color: rgba(0, 0, 0, 0.1);
  display: block;
  height: 36px;
  pointer-events: none;
  cursor: default;
}

.p-program__image {
  margin-top: 25px;
  position: relative;
  padding-top: calc(330/495*100%);
}

.p-program__image .slick-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-program__image:after {
  content: attr(data-copyright);
  position: absolute;
  color: #999;
  font-size: 9px;
  right: 0;
  bottom: -15px;
  height: 15px;
  padding: 0 3px;
  line-height: 15px;
  font-weight: normal;
}

.p-program__image__item {
  position: absolute;
  top: 0;
  left: 0;
}

.p-program__image__item img {
  width: 99.9%;
  height: auto;
}

.p-program__table {
  margin-top: 40px;
  font-size: 14px;
}

.is-teaser .p-program__table {
  background-color: rgba(0, 0, 0, 0.1);
  width: 70%;
}

.p-program__table tr {
  border-bottom: 2px solid #fff;
}

.p-program__table th {
  font-weight: bold;
  text-align: center;
  background: #efefef;
  padding: 0.3em 1em;
  font-size: 12px;
  vertical-align: middle;
  white-space: nowrap;
}

.is-teaser .p-program__table th {
  background-color: transparent;
  height: 14px;
}

.p-program__table td {
  padding: 0.3em 0.5em;
}

.p-program__table td .c-note {
  font-size: 11px;
}

.p-program__table td.is-sold {
  text-decoration: line-through;
}

.p-program__table td.is-sold:before {
  content: 'プログラム別チケット完売';
  text-decoration: none;
  display: inline-block;
  color: #e60012;
  border: 2px solid #e60012;
  font-size: 10px;
  padding: 2px 6px;
  margin-right: 0.7em;
}

.p-program__title--child {
  font-size: 18px;
  margin-top: 30px;
  font-weight: bold;
}

.is-teaser .p-program__title--child {
  background-color: rgba(0, 0, 0, 0.1);
  height: 27px;
}

.p-program__title--child + .c-section__text {
  margin-top: 0.5em;
}

.p-program__game_list, .p-program__game_list--half {
  font-size: 12px;
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-program__game_list > li, .p-program__game_list--half > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0.5em;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}

.p-program__game_list > li span, .p-program__game_list--half > li span {
  display: inline-block;
}

.is-teaser .p-program__game_list > li, .is-teaser .p-program__game_list--half > li {
  background-color: rgba(0, 0, 0, 0.1);
  height: 21px;
  margin-top: 4px;
}

.is-teaser .p-program__game_list > li:before, .is-teaser .p-program__game_list--half > li:before {
  display: none;
}

.p-program__game_list > li.is-new, .p-program__game_list--half > li.is-new {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-program__game_list > li.is-new strong:before, .p-program__game_list--half > li.is-new strong:before {
  content: 'NEW';
  display: inline-block;
  color: #e60012;
  font-size: 9px;
}

.p-program__game_list > li.is-update, .p-program__game_list--half > li.is-update {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-program__game_list > li.is-update strong:before, .p-program__game_list--half > li.is-update strong:before {
  content: 'UPDATE';
  display: inline-block;
  color: #e60012;
  font-size: 9px;
}

.p-program__game_list__note {
  font-size: 12px;
  padding-left: 1.5em;
}

.p-program__game_list--half:after {
  content: '';
  display: block;
  width: 49%;
  height: 0;
  line-height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-program__game_list--half > li {
  width: 49%;
}

.p-program__track_list {
  margin: 0.5em 0 1em 1.5em;
  line-height: 1.4;
  border-left: 1px solid #ccc;
  padding-left: 1em;
  font-size: 12px;
}

.p-program__track_list > li {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-program__track_list > li:after {
  content: '';
  display: block;
  position: absolute;
  background: #ccc;
  width: 0.3em;
  height: 1px;
  top: 50%;
  left: -1em;
}

.p-program__track_list > li + li {
  margin-top: 0.7em;
}

.p-program__track_list > li.is-new:before {
  content: 'NEW';
  display: inline-block;
  color: #e60012;
  font-size: 9px;
  margin-right: 0.5em;
}

.p-program__text {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

.p-program__text.is-teaser {
  background: rgba(0, 0, 0, 0.1);
  height: 21px;
  width: 80%;
  margin: 10px auto 0;
}

.p-program__button {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .p-program__title {
    display: block;
    font-size: 18px;
    line-height: 1.29;
    font-weight: bold;
    margin-top: 10px;
  }
  .p-program__table {
    margin-top: 40px;
    font-size: 12px;
  }
  .p-program__title--child {
    font-size: 14px;
    margin-top: 24px;
  }
  .p-program__game_list, .p-program__game_list--half {
    font-size: 12px;
  }
  .p-program__game_list--half > li {
    width: 100%;
  }
}

/* Ticket ============== */
.l-program_ticket .p-ticket .c-section__title:after {
  background-color: #fff;
}

.l-program_ticket .p-program__list {
  margin-top: 50px;
}

.p-ticket {
  background: #151515 url(/asset/img/ttl-ticket.png) no-repeat center 40px;
  color: #fff;
}

.p-ticket .c-inner {
  padding: 80px 30px;
}

.p-ticket__list {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #fff;
}

.l-program_ticket .p-ticket__list {
  margin-top: 50px;
  border: none;
}

.p-ticket__list:after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 30px;
  margin-left: -15px;
  height: 17px;
  background: url(/asset/img/img-ticket_arrow.png) no-repeat center center;
}

.l-program_ticket .p-ticket__list:after {
  display: none;
}

.p-ticket__list__item {
  width: 48.52%;
  padding-bottom: 30px;
}

.l-program_ticket .p-ticket__list__item {
  padding-bottom: 0;
}

.p-ticket__copy {
  background: #fff;
  display: inline-block;
  color: #ee5300;
  border-radius: 10px;
  height: 28px;
  line-height: 28px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}

.p-ticket__copy:after {
  content: '';
  display: block;
  width: 17px;
  height: 13px;
  background: url(/asset/img/img-ticket_baloon_lead.svg) no-repeat left top;
  bottom: -13px;
}

.p-ticket__title {
  margin-top: 30px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}

.p-ticket__price {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.p-ticket__price strong {
  font-size: 30px;
  padding: 0 0.1em;
  letter-spacing: 0.05em;
}

.p-ticket__note {
  font-size: 12px;
  margin-top: 24px;
  line-height: 1.75;
}

.p-ticket__text {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
}

.p-ticket__button {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .l-program_ticket .p-ticket .c-inner {
    padding: 30px 15px;
  }
  .p-ticket {
    background-position: center 21px;
    background-size: auto 50px;
  }
  .p-ticket .c-inner {
    padding: 30px 15px;
  }
  .p-ticket__list {
    display: block;
    margin-top: 40px;
  }
  .p-ticket__list__item {
    width: 100%;
  }
  .l-program_ticket .p-ticket__list__item + .p-ticket__list__item {
    margin-top: 30px;
  }
  .p-ticket__copy {
    display: block;
    text-align: center;
  }
  .p-ticket__title {
    margin-top: 24px;
    font-size: 24px;
  }
  .p-ticket__price {
    margin-top: 16px;
    font-size: 14px;
  }
  .p-ticket__price strong {
    font-size: 24px;
  }
}

.p-ticket__playguide {
  margin-top: 80px;
}

.p-ticket__playguide__lead {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}

.p-ticket__playguide__item {
  width: 48.52%;
  background: #222 url(/asset/img/icn-ticket.svg) no-repeat right center;
  background-size: 200px auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-ticket__playguide__title {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}

.p-ticket__playguide__text {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  margin-top: 1em;
  width: 100%;
}

.p-ticket__playguide__text .c-note a {
  color: #fff;
  text-decoration: underline;
}

.p-ticket__playguide__text .c-note a:hover {
  text-decoration: none;
}

.p-ticket__playguide__btn {
  margin-top: 1.5em;
}

.p-ticket__playguide__handling {
  text-align: center;
  width: 100%;
}

.p-ticket__playguide__handling strong {
  font-size: 18px;
  display: block;
  margin: 0.5em 0.5em;
}

.p-ticket__playguide__handling span {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 0.2em 0.5em;
  margin: 0.5em 0.5em;
  border-radius: 6px;
  background: #e60012;
  color: #fff;
}

.p-ticket__playguide__handling span.cat-large_hole {
  background-color: #e64292;
}

.p-ticket__playguide__handling span.cat-small_hole {
  background-color: #5b00ff;
}

.p-ticket__playguide__handling span.cat-exhibition {
  background-color: #2aa000;
}

@media screen and (max-width: 820px) {
  .p-ticket__playguide__item {
    width: 100%;
  }
}

.p-ticket__seat__text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 1em;
}

.p-ticket__seat__item a:hover {
  opacity: 1;
}

.p-ticket__seat__item img {
  -webkit-transition: -webkit-filter 0.4s;
  transition: -webkit-filter 0.4s;
  transition: filter 0.4s;
  transition: filter 0.4s, -webkit-filter 0.4s;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .p-ticket__seat__item img {
    max-width: 100%;
  }
}

.p-ticket__seat__item:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.p-ticket__seat__item p {
  font-size: 12px;
  margin-top: 1em;
}

@media screen and (max-width: 820px) {
  .p-ticket__seat__item {
    margin-top: 30px;
  }
}

.p-ticket__premium {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-ticket__premium .c-section__title {
  width: 100%;
}

.p-ticket__premium .c-section__text {
  width: 100%;
  font-size: 16px;
  text-align: center;
}

.p-ticket__premium .c-section__text .c-note {
  display: block;
  margin-top: 1em;
}

.p-ticket__premium__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.p-ticket__premium__title span {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 0 30px;
  height: 38px;
  line-height: 38px;
  position: relative;
}

.p-ticket__premium__title span:before, .p-ticket__premium__title span:after {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: 0;
  height: 0;
  border: 19px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.p-ticket__premium__title span:before {
  border-left: 10px solid #222;
  left: 0;
}

.p-ticket__premium__title span:after {
  border-right: 10px solid #222;
  right: 0;
}

.p-ticket__premium__price {
  width: 100%;
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.p-ticket__premium__price strong {
  font-size: 36px;
  padding: 0 0.1em;
  letter-spacing: 0.05em;
}

.p-ticket__premium__col {
  margin-top: 30px;
  width: 49%;
  padding: 30px;
  background: #222 url(/asset/img/icn-goods.svg) no-repeat center center;
  background-size: 200px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-ticket__premium__col + .p-ticket__premium__col {
  background-image: none;
}

.p-ticket__premium__program {
  line-height: 1.6;
}

.p-ticket__premium__program dt {
  font-weight: bold;
  padding: 0.3em 0.8em;
  border-radius: 6px;
  text-align: center;
}

.p-ticket__premium__program dt + dd {
  margin-top: 0.5em;
}

.p-ticket__premium__program dt.cat-large_hole {
  background-color: #e64292;
}

.p-ticket__premium__program dt.cat-small_hole {
  background-color: #5b00ff;
}

.p-ticket__premium__program dt.cat-exhibition {
  background-color: #2aa000;
}

.p-ticket__premium__program dd {
  margin-left: 20px;
  text-indent: -20px;
}

.p-ticket__premium__program dd + dd {
  margin-top: 0.5em;
}

.p-ticket__premium__program dd + dt {
  margin-top: 1.5em;
}

.p-ticket__premium__program dd:before {
  content: '・';
  display: inline-block;
  width: 20px;
  text-align: center;
  text-indent: 0;
}

.p-ticket__premium__program dd span {
  text-indent: 0;
}

.p-ticket__premium__program dd a {
  color: #fff;
}

.p-ticket__premium__image {
  background: #fff;
  display: block;
  padding: 0;
  text-align: center;
}

.p-ticket__premium__image img {
  width: 100%;
  height: auto;
}

.p-ticket__premium__text {
  font-size: 16px;
  margin-top: 1.5em;
}

.p-ticket__premium__text span {
  display: block;
  margin-top: 1em;
}

@media screen and (max-width: 820px) {
  .p-ticket__premium {
    display: block;
    margin-top: 50px;
  }
  .p-ticket__premium__col {
    width: 100%;
    padding: 30px 15px;
  }
  .p-ticket__premium__col + .p-ticket__premium__col {
    margin-top: 1em;
  }
  .p-ticket__premium__program {
    font-size: 14px;
  }
  .l-program_ticket .p-ticket__list {
    margin-top: 30px;
  }
}

.p-goods .c-column img {
  width: 100%;
  height: auto;
}

.p-goods__title {
  background: #ee5300;
  color: #fff;
  border-radius: 10px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  padding: 0 15px;
  margin-bottom: 1em;
}

.p-goods__text {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.8;
  margin: 20px auto;
}

.p-goods__text strong {
  font-size: 16px;
}

.p-goods__text.c-note {
  font-size: 12px;
}

.p-goods__text .c-note {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

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

.p-goods__icon:before {
  content: '★';
  color: #ee5300;
}

@media screen and (max-width: 820px) {
  .p-goods__text strong {
    font-size: 14px;
  }
}

.p-goods__list {
  text-align: center;
}

.p-goods__list li + li {
  margin-top: 0.7em;
}

/* Access ============== */
.p-access {
  background: #fff url(/asset/img/ttl-access.png) no-repeat center 40px;
}

.p-access .c-inner {
  padding: 80px 30px;
}

.p-access__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-access__unit__detail {
  width: 48.52%;
}

.p-access__address {
  font-size: 18px;
}

.p-access__address:after {
  content: '';
  height: 1px;
  width: 20%;
  background: #000;
  display: block;
  margin: 30px 0;
}

.p-access__from_station {
  font-size: 14px;
}

.p-access__unit__map {
  width: 48.52%;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-access__unit__map iframe {
  vertical-align: bottom;
}

.p-access___map {
  min-height: 150px;
  min-width: 150px;
  height: 400px;
  width: 100%;
}

.p-access__contact {
  text-align: center;
}

.p-access__contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.p-access__contact__col {
  width: 49%;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: #efefef;
}

.p-access__contact__col .c-button.is-disable {
  background: rgba(200, 200, 200, 0.7);
}

@media screen and (max-width: 820px) {
  .p-access {
    background-position: center 21px;
    background-size: auto 50px;
  }
  .p-access .c-inner {
    padding: 30px 0;
  }
  .p-access__unit {
    display: block;
    margin-top: 40px;
  }
  .p-access__address {
    font-size: 14px;
  }
  .p-access__unit__detail {
    width: 100%;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .p-access__unit__map {
    width: 100%;
    margin-top: 30px;
    border-left: 0;
    border-right: 0;
  }
  .p-access___map {
    height: 200px;
  }
  .p-access__contact {
    padding: 0 15px;
  }
  .p-access__contact__wrapper {
    display: block;
  }
  .p-access__contact__col {
    width: 100%;
    padding: 20px;
  }
  .p-access__contact__col + .p-access__contact__col {
    margin-top: 20px;
  }
}

/* Schedule ============== */
.p-schedule {
  background: #efefef;
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 80px;
}

/* Audition ============== */
.l-audition .c-pagetitle {
  background: url(/asset/img/bg-ttl_audition.jpg) no-repeat center top;
  background-size: cover;
}

.l-audition .c-pagetitle .c-pagetitle__main {
  background: url(/asset/img/ttl-page_audition.png) no-repeat center top;
  background-size: contain;
}

@media screen and (max-width: 820px) {
  .l-audition .c-pagetitle {
    padding-bottom: 65px;
  }
}

.l-audition .c-section_child,
.l-audition .c-faq {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.p-audition {
  text-align: center;
  padding: 50px 0;
}

.p-audition__date {
  font-size: 18px;
  font-weight: bold;
}

.p-audition__title {
  margin-top: 12px;
  font-size: 36px;
  font-weight: bold;
}

.p-audition__feature {
  font-size: 24px;
  margin-top: 1em;
}

.p-audition__feature span {
  color: #bbb;
}

.p-audition__close {
  margin-top: 43px;
  font-size: 28px;
  color: #e60012;
}

.p-audition__close.ext-restart {
  color: #ee5300;
}

.p-audition__description {
  margin-top: 43px;
  font-size: 14px;
}

.p-audition__schedule {
  margin: 1em auto;
}

.p-audition__schedule .c-table {
  width: auto;
}

.p-audition__schedule th,
.p-audition__schedule td {
  width: 20%;
  font-size: 12px;
  vertical-align: middle;
  text-align: center;
}

.p-audition__schedule th,
.p-audition__schedule td span {
  white-space: nowrap;
}

.p-audition__schedule__ensemble th,
.p-audition__schedule__ensemble td {
  background: #fff0dc;
}

.p-audition__schedule__rehearsal th,
.p-audition__schedule__rehearsal td {
  background: #ffe3d5;
}

.p-audition__schedule__live th,
.p-audition__schedule__live td {
  background: #ffc9ca;
}

td.p-audition__schedule__divisi {
  background: #fff !important;
}

td.p-audition__schedule__rest {
  background: #ebebeb !important;
}

@media screen and (max-width: 820px) {
  .p-audition {
    padding: 30px 0;
  }
  .p-audition__close {
    margin-top: 20px;
    font-size: 18px;
  }
  .p-audition__date {
    font-size: 14px;
  }
  .p-audition__title {
    margin-top: 12px;
    font-size: 20px;
    font-weight: bold;
  }
  .p-audition__feature {
    font-size: 16px;
  }
  .p-audition__description {
    margin-top: 20px;
    text-align: left;
  }
}

.p-comment {
  padding: 80px 0;
  background: #efefef;
}

.p-comment .c-inner {
  max-width: 840px;
}

.p-comment__sign {
  text-align: right;
  font-weight: bold;
}

.p-comment__sign img {
  width: 140px;
  height: auto;
}

@media screen and (max-width: 820px) {
  .p-comment {
    padding: 40px 0;
  }
  .p-comment__sign {
    text-align: center;
  }
  .p-comment__sign img {
    display: block;
    margin: 0.5em auto 0;
  }
}

.p-copyright {
  padding: 20px 0;
  background: #dfdfdf;
  line-height: 1.3em;
}

.p-copyright .c-section__text {
  font-size: 11px;
}

/* Magnific Popup Overwrite ============== */
.mfp-bg {
  opacity: 1;
  background: rgba(0, 0, 0, 0.86);
}

.mfp-container {
  cursor: pointer;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.mfp-content .mfp-button_close {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* Utility
----------------------------------------------------------------- */
@media screen and (min-width: 821px) {
  .u-sp_only {
    display: none;
  }
  .u-pc_hide {
    display: none;
  }
}

@media screen and (max-width: 820px) {
  .u-pc_only {
    display: none;
  }
  .u-sp_hide {
    display: none;
  }
}

@media screen and (min-width: 821px) and (max-width: 1020px) {
  .u-tablet_hide {
    display: none;
  }
}

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

.u-breakctrl {
  display: inline-block;
}

/* Margin ============== */
.u-margin_top_short {
  margin-top: 1em !important;
}

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

.u-margin_top_long {
  margin-top: 5em !important;
}

/* image ============== */
.u-image__responsive {
  max-width: 100%;
  height: auto;
}

/* Text ============== */
.u-text__center {
  text-align: center !important;
}

.u-text__left {
  text-align: left !important;
}

.u-text__right {
  text-align: right !important;
}

.u-text__smaller {
  font-size: 0.857em !important;
}

.u-text__larger {
  font-size: 1.142em !important;
}

.u-text__exlarger {
  font-size: 1.71em !important;
}

@media screen and (max-width: 820px) {
  .u-text__exlarger {
    font-size: 1.5em !important;
  }
  .u-sp_text__center {
    text-align: center !important;
  }
  .u-sp_text__left {
    text-align: left !important;
  }
  .u-sp_text__right {
    text-align: right !important;
  }
}

/* Keyframe ============== */
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
