@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Overpass:ital,wght@0,400;0,700;1,700&display=swap');

img {
  width: 100%;
  height: auto;
}

body {
  color: #000;
  background-color: #000;
  font-family: 'Overpass', 'Noto Sans JP', Helvetica, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}

a {
  color: #000;
}

.pc {
  display: block!important;
}

.sp {
  display: none!important;
}

/* ----------------------------------------
module
----------------------------------------- */

a, a img, input {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover, a:hover img, input:hover {
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  opacity:0.7;
  cursor: pointer;
}

.ico_skew {
  display: block;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
  .ico_skew .wrap {
    z-index: 10;
    position: relative;
  }
  .ico_skew:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #E50012;
    transform: skew(-18deg);
    position: absolute;
    left: -5px;
    top: 0;
    z-index: 0;
  }

/* ----------------------------------------
header
----------------------------------------- */

header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  padding: 1.6% 2%;
  border-left: 10px solid #E50012;
  background-color: #000;
  box-sizing: border-box;
}
header > :first-child {
  margin-right: auto;
}

header .logo {
  width: 144px;
}
header .gnav {
  display: flex;
  flex-wrap: nowrap;
}
  header .gnav li {
    margin-left: 1em;
  }
  header .gnav li:first-child {
    margin-left: 0;
  }
    header .gnav li a {
      font-size: 0.75rem;
      color: #fff;
    }
    header .gnav li.inactive a {
      color: #333;
    }

header .menu-trigger {
  display: none;
}

/* ----------------------------------------
hero
----------------------------------------- */

.hero {
  position: relative;
}
.hero .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hero .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
  .hero .timer {
    width: 210px;
    margin: 10% auto 2%;
    position: relative;
  }
    .hero .timer::before {
      content: '';
      display: block;
      width: 100%;
      height: 18px;
      border-top: 1px solid #fff;
      border-left: 1px solid #fff;
      border-right: 1px solid #fff;
      position: absolute;
      top: -4px;
      left: 0;
    }
    .hero .timer::after {
      content: '';
      display: block;
      width: 100%;
      height: 18px;
      border-bottom: 1px solid #fff;
      border-left: 1px solid #fff;
      border-right: 1px solid #fff;
      position: absolute;
      bottom: -4px;
      left: 0;
    }
  .hero .timer p {
    width: 96%;
    margin-left: 2.5%;
    font-size: 1.625rem;
    color: #fff;
    text-align: center;
    background-color: #E50012;
    position: relative;
  }
    .hero .timer p:before, .hero .timer p:after {
      content: '';
      display: block;
      width: 2px;
      height: 2px;
      background-color: #fff;
      position: absolute;
    }
    .hero .timer p:before {
      left: 0;
      top: 0;
    }
    .hero .timer p:after {
      right: 0;
      bottom: 0;
    }
  .hero .date {
    margin-top: 1.5em;
    font-size: 1rem;
    color: #fff;
    text-align: center;
  }
    .hero .date span {
      display: inline-block;
      vertical-align: top;
      min-width: 30px;
      font-size: 0.75rem;
      margin: 0 0.5em;
      padding: .1em .2em;
      background-color: #E50012;
      box-sizing: border-box;
    }
  .hero .catch {
    font-size: 0.875rem;
    color: #fff;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .hero iframe{
    margin: auto -20%;
    width: 140%;
  }

  .hero .btn_scroll {
    text-align: center;
    position: absolute;
    bottom: 3%;
    right: 1%;
    z-index: 1001;
  }
  .hero .btn_scroll.under {
    bottom: -50%;
  }

  .hero .btn_scroll:after {
    display: inline-block;
    content: '';
    width: 8px;
    height: 19px;
    background-image: url(../images/icon_hero_scroll.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    -webkit-animation: arrow01 1.8s infinite;
    animation: arrow01 1.8s infinite;
  }

  .hero .btn_scroll span {
    display: block;
    margin-bottom: 0.8em;
    font-size: 1rem;
    color: #fff;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  @-webkit-keyframes arrow01 {
    0% {
      -webkit-transform: rotate(0deg) translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: rotate(0deg) translate(0px, 10px);
      opacity: 0;
    }
  }
  @keyframes arrow01 {
    0% {
      transform: rotate(0deg) translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: rotate(0deg) translate(0px, 10px);
      opacity: 0;
    }
  }

.hero .background {
  width: auto;
  height: 56.25%;
}
.hero .background:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.hero .background video {
  width: 100%;
  vertical-align: bottom;
}

/* ----------------------------------------
news
----------------------------------------- */

.news {
  background-color: #E6E6E6;
  position: relative;
}
  .news .news_backtxt {
    width: 568px;
    position: absolute;
    left: 5%;
    top: 5%;
  }
  .news .news_decoration_dot {
    width: 76px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .news .news_decoration_dot .img {
    width: 76px;
    position: absolute;
    right: 12vw;
    bottom: 0;
  }
  .news .news_decoration_dot:before {
    content: '';
    display: block;
    width: 23vw;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    right: 0;
    bottom: 4vh;
  }

  .news .wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 5% 4%;
    border-left: 1px solid #CCC;
    position: relative;
    box-sizing: border-box;
    z-index: 10;
  }
    .news .wrap::before, .news .wrap::after {
      content: '';
      display: block;
      width: 42px;
      height: 11px;
      background-image: url(../images/icon_news_decoration_square.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      position: absolute;
      left: 0;
      top: 0;
    }
    .news .wrap::after {
      right: -50px;
      left: auto;
      top: 0;
    }
    .news h1 {
      font-size: 2.25rem;
    }
    .news .postlist li {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      margin-top: 1.5em;
      font-size: 0.875rem;
    }
      .news .postlist li .date {
        margin-right: 1em;
        padding: .1em .5em;
        text-align: center;
        color: #fff;
        background-color: #E50012;
      }

/* ----------------------------------------
notice
----------------------------------------- */
.notice {
  position: relative;
  text-align: center;
  font-size: 1rem;
  line-height: 2.1;
  color: #fff;
  background: #1A1A1A;
}
  .notice .wrap {
    margin: 0 auto;
    width: 760px;
    padding: 5% 0;
  }
  .notice h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }

/* ----------------------------------------
about
----------------------------------------- */

.about {
  background-image: url(../images/img_about_back@2x.jpg);
  background-repeat: no-repeat;
  background-position: 0 bottom;
  background-size: contain;
  background-color: #100F25;
  position: relative;
}
.about .about_decoration_dot {
  position: absolute;
  left: 5%;
  top: 10%;
}
  .about .wrap {
    max-width: 960px;
    padding: 10% 0;
    margin: 0 auto;
    border-left: 1px solid rgb(255, 255, 255, .1);
    position: relative;
    box-sizing: border-box;
    z-index: 10;
  }
    .about .news_backtxt {
      width: 222px;
      position: absolute;
      left: 4%;
      top: 5%;
    }
    .about h1 {
      width: 444px;
      margin: 0 auto;
    }
    .about h1 .cacth {
      max-width: 386px;
      margin: 1.5em auto 0;
      padding: .2em;
      font-size: 1.125rem;
    }
    .about .txt {
      line-height: 2.1;
      font-size: 0.875rem;
      text-align: center;
      color: #fff;
      margin-top: 3em;
    }
      .about .txt strong {
        display: inline-block;
        margin-top: 3em;
        font-size: 1.1875rem;
        font-weight: 400;
      }
    .about .sponsor {
      margin: 40vh auto 0;
      width: 24%;
    }
      .about .sponsor li {
        font-size: 0.875rem;
        color: #fff;
        margin-top: 1em;
      }
      .about .sponsor li .icon {
        display: inline-block;
        min-width: 74px;
        padding: .2em;
        vertical-align: middle;
        margin-right: 1em;
        font-size: 0.875rem;
      }

/* ----------------------------------------
timetable
----------------------------------------- */

.timetable:before {
    content: '';
    display: block;
    width: 466px;
    height: 32px;
    background-image: url(../images/img_timetable_top.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
}
.timetable .timetable_decoration {
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
}

.timetable > .wrap {
  max-width: 1040px;
  margin: -32px auto 0;
  padding: 8% 0 10%;
  color: #fff;
  border-left: 1px solid rgb(255, 255, 255, .1);
  position: relative;
  z-index: 20;
}
.timetable .timetable_back_top {
  width: 378px;
  position: absolute;
  top: 4%;
  left: 4%;
  z-index: -1;
}
.timetable .title {
  text-align: right;
}
  .timetable .title h1 {
    font-size: 4.125rem;
  }
  .timetable .title .txt {
    max-width: 65%;
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 2em;
    margin-left: auto;
  }
.timetable .timetable_list_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 10%;
}
  .timetable .timetable_list {
    width: 406px;
  }
  .timetable .timetable_list .title {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .timetable .timetable_list.left .title {
    flex-direction: row-reverse;
  }
  .timetable .timetable_list h2 {
    line-height: 1;
    box-sizing: border-box;
    font-size: 3.562rem;
    font-style: italic;
    color: #E50012;
  }
    .timetable .timetable_list .title h2 .weekday {
      font-size: 2.5rem;
      margin-left: .3em;
    }
  .timetable .timetable_list .title .day {
    display: block;
    width: 106px;
    margin-left: -4px;
    padding: 0.3em 0.8em;
    font-size: 1.375rem;
    color: #E50012;
    text-align: center;
    border: 1px solid #E50012;
    border-radius: 999px;
    box-sizing: border-box;
    position: relative;
  }
  .timetable .timetable_list.left .title .day {
    margin-right: 0.5em;
  }
  .timetable .timetable_list.right .title .day {
    margin-left: 0.5em;
  }
    .timetable .timetable_list .title .day:after {
      content: '';
      display: block;
      width: 70px;
      height: 6px;
      background-image: url(../images/img_artist_line.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      position: absolute;
      left: -70px;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
    }
    .timetable .timetable_list.right .title .day:after {
      transform: rotate(-180deg);
      left: auto;
      right: -70px;
    }
  .timetable .timetable_list .list li {
    position: relative;
    margin-top: 2em;
  }
    .timetable .timetable_list .list li:before {
      content: '';
      display: block;
      width: 406px;
      height: 6px;
      background-image: url(../images/img_timetable_bar_left.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      position: absolute;
      left: 0;
      top: -4px;
    }
    .timetable .timetable_list.right .list li:before {
      background-image: url(../images/img_timetable_bar_right.svg);
    }
    .timetable .timetable_list .list .txt {
      max-width: 70%;
      padding: .2em 2em;
      font-size: 1.125rem;
      text-align: center;
      margin-right: 1em;
      margin-left: auto;
      box-sizing: border-box;
    }
    .timetable .timetable_list.right .list .txt {
      margin-left: 1em;
    }
    .timetable .timetable_list.left .list .ico_skew:after {
      left: 5px;
      transform: skew(18deg);
    }
  .timetable .timetable_list_timeline {
    /* min-width: 140px; */
    text-align: center;
    margin-top: 3.2em;
  }
  .timetable .timetable_list_timeline .list li {
    margin-top: 0.72em;
    font-size: 1.875rem;
    padding: 0 1em;
  }



/* ----------------------------------------
artist
----------------------------------------- */

.artist {
  position: relative;
  background-color: #000;

}
.artist > .wrap {
  max-width: 1040px;
  margin: 0 auto;
  border-left: 1px solid rgb(255, 255, 255, .1);
}
  .artist .title {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 8% 0;
    position: relative;
  }
    .artist .title .img_artist_backtxt {
      width: 739px;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
    }
    .artist .title h1 {
      margin-right: 1em;
      font-size: 4.125rem;
      color: #fff;
    }
    .artist .lineup_link {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }
      .artist .lineup_link:before, .artist .lineup_link:after {
        content: '';
        display: block;
        width: 70px;
        height: 6px;
        background-image: url(../images/img_artist_line.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
      }
      .artist .lineup_link::after {
        transform: rotate(-180deg);
      }
      .artist .lineup_link li.line {
        content: '';
        display: block;
        width: 48px;
        height: 1px;
        background-color: #E50012;
      }
        .artist .lineup_link li a {
          display: block;
          min-width: 106px;
          padding: .2em 1em;
          font-size: 1.375rem;
          color: #E50012;
          text-align: center;
          border: 1px solid #E50012;
          border-radius: 999px;
          box-sizing: border-box;
        }
        .artist .lineup_link li a:hover {
          color: #fff;
          background-color: #E50012;
        }
  .artist .module_artistList {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .artist .module_artistList.glay .wrap {
    background-color: #1A1A1A;
    padding-bottom: 10%;
  }
    .artist .module_artistList h2 {
      width: 394px;
      margin-left: auto;
      margin-top: -67px;
      line-height: 1;
      padding: .21em 0 0 1em;
      box-sizing: border-box;
      font-size: 3.562rem;
      font-style: italic;
      color: #E50012;
      background-image: url(../images/img_artist_title_vol01.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contian;
    }
      .artist .module_artistList.glay h2  {
        background-image: url(../images/img_artist_title_vol02.svg);
      }
      .artist .module_artistList h2 .weekday {
        font-size: 2.5rem;
        margin-left: .3em;
      }
    .artist .module_artistList .list {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      max-width: 1040px;
      margin: 0 auto;
      padding: 5% 0 2%;
    }
      .artist .module_artistList .list li {
        width: 32%;
        margin: 5% 2% 0 0;
      }
      .artist .module_artistList .list li:nth-child(3n) {
          margin-right: 0;
      }
      .artist .module_artistList .list li .name {
        margin-top: 1em;
        font-size: 1.125rem;
        text-align: center;
        color: #808080;
      }
      .artist .module_artistList.glay .list li .name {
        color: #fff;
      }
      .artist .module_artistList .list li .new {
        display: inline-block;
        vertical-align: top;
        min-width: 30px;
        font-size: 0.75rem;
        margin: 0 0.5em;
        padding: .1em .2em;
        color: #FFFFFF;
        background-color: #E50012;
        box-sizing: border-box;
      }
    .artist .artistlink {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }
    .artist .module_artistList .list li .artistlink li {
      width: 40%;
      margin: 5% 2% 0 0;
    }
    .artist .artistlink .link a {
      display: block;
      min-width: 130px;
      padding: .3em 1em;
      font-size: 1rem;
      color: #E50012;
      text-align: center;
      border: 1px solid #E50012;
      border-radius: 999px;
      box-sizing: border-box;
    }
    .artist .artistlink .link a:hover {
      color: #fff;
      background-color: #E50012;
    }
  .artist .andmore {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .artist .andmore:before, .artist .andmore:after {
    content: '';
    display: block;
    width: 214px;
    height: 18px;
    background-image: url(../images/img_artist_line.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
  }
  .artist .andmore::after {
    transform: rotate(-180deg);
  }
    .artist .andmore strong {
      display: block;
      min-width: 600px;
      padding: 0.3em 2em;
      font-size: 3rem;
      font-weight: 500;
      color: #E50012;
      text-align: center;
      border: 4px solid #E50012;
      border-radius: 999px;
      box-sizing: border-box;
    }
    .artist .module_artistList.mc .title h1 {
      width: 100%;
      text-align: center;
    }
    .artist .module_artistList.mc ul {
      margin-bottom: 5%;
      padding: 0;
      justify-content: center;
    }
    .artist .module_artistList.mc ul li {
      margin: 0 1%;
    }

/* ----------------------------------------
ticket
----------------------------------------- */

.ticket {
  background-color: #E6E6E6;
}
.ticket > .wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding-bottom: 12%;
  border-left: 1px solid #CCC;
  position: relative;
}
.ticket > .wrap::before, .ticket > .wrap::after {
  content: '';
  display: block;
  width: 42px;
  height: 11px;
  background-image: url(../images/icon_news_decoration_square.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  left: -42px;
  top: 0;
}
.ticket > .wrap::after {
  right: -47px;
  left: auto;
  top: 0;
}
  .ticket .img_ticket {
    width: 560px;
    position: absolute;
    left: -6%;
    top: -6.5%;
    z-index: 10;
  }
  .ticket .img_ticket_backtxt {
    width: 152px;
    position: absolute;
    left: 30%;
    top: 18%;
  }
  .ticket .detail {
    width: 430px;
    margin-left: auto;
    padding-top: 8%;
  }
    .ticket .detail h1 {
      font-size: 4.125rem;
    }
    .ticket .detail .price {
      margin-top: 6%;
    }
    .ticket .detail .price h2 {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      font-size: 2.0625rem;
    }
      .ticket .detail .price h2:before {
        content: '';
        display: block;
        width: 8px;
        height: 22px;
        margin-right: 0.5em;
        background-image: url(../images/icon_ticket_day01.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
      }
      .ticket .detail .price.day2 h2:before {
        background-image: url(../images/icon_ticket_day02.svg);
      }
      .ticket .detail .price .txt_jpn {
        min-width: 140px;
        margin-left: auto;
        padding: .1em 1em;
        font-size: 1.25rem;
        box-sizing: border-box;
      }
      .ticket .detail .price .list li {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 1em;
        border-top: 1px solid #CCC;
      }
      .ticket .detail .price .list li:first-child {
        border-top: none;
      }
        .ticket .detail .price .list li .txt {
          line-height: 1.3;
          font-size: 1.375rem;
        }
        .ticket .detail .price .list li .num {
          font-size: 2.25rem;
          margin-left: 1.5em;
        }
      .ticket .detail .price .bnt_cv {
        font-size: 2.25rem;
        margin-left: 1.5em;
      }
      .ticket .detail .price .attention {
        line-height: 1.5;
        font-size: 0.875rem;
        margin-top: 1em;
      }
    .ticket .bnt_cv {
      width: 330px;
      margin: 10% 0 0;
      position: relative;
    }
    .ticket .bnt_cv::before {
      content: '';
      display: block;
      width: 100%;
      height: 18px;
      border-top: 1px solid #808080;
      border-left: 1px solid #808080;
      border-right: 1px solid #808080;
      position: absolute;
      top: -4px;
      left: 0;
    }
    .ticket .bnt_cv::after {
      content: '';
      display: block;
      width: 100%;
      height: 18px;
      border-bottom: 1px solid #808080;
      border-left: 1px solid #808080;
      border-right: 1px solid #808080;
      position: absolute;
      bottom: -4px;
      left: 0;
    }
    .ticket .bnt_cv a, .ticket .bnt_cv span {
      display: block;
      width: 98%;
      padding: 1em .4em;
      margin-left: 1.5%;
      font-size: 1.125rem;
      color: #fff;
      text-align: center;
      background-color: #E50012;
      position: relative;
      box-sizing: border-box;
      z-index: 10;
    }
    .ticket .bnt_cv a:before, .ticket .bnt_cv a:after {
      content: '';
      display: block;
      width: 2px;
      height: 2px;
      background-color: #fff;
      position: absolute;
    }
    .ticket .bnt_cv a:before {
      left: 0;
      top: 0;
    }
    .ticket .bnt_cv a:after {
      right: 0;
      bottom: 0;
    }
    .ticket .bnt_cv a {
      background-color: #E50012;
    }

    .ticket .icon_decoration_square {
      width: 42px;
      height: 11px;
      position: absolute;
    }
    .ticket .icon_decoration_square.left {
      left: -42px;
      top: 0;
    }
    .ticket .icon_decoration_square.right {
      right: 2%;
      top: 0;
    }
    .ticket .icon_ticket_decoration_dot {
      width: 9px;
      position: absolute;
      left: -2%;
      top: 69%;
    }
    .ticket .icon_ticket_decoration {
      width: 131px;
      position: absolute;
      left: 28px;
      bottom: 26px;
    }

/* ----------------------------------------
goods
----------------------------------------- */

.goods:before {
  content: '';
  display: block;
  width: 394px;
  height: 68px;
  background-image: url(../images/img_goods_decoration_top.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.goods > .wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 10% 0;
  border-right: 1px solid rgb(255 255 255 / .1);
  position: relative;
}
.goods .icon_goods_decoration {
  width: 100px;
  position: absolute;
  left: -60px;
  top: 0;
}
.goods .icon_goods_decoration img {
  vertical-align: top;
}

.goods .title {
  position: relative;
}
  .goods .title .img_goods_backtxt {
    width: 700px;
    position: absolute;
    right: 7%;
    top: -9%;
    color: #fff;
  }
  .goods .title h1 {
    font-size: 4.125rem;
    font-weight: 500;
    color: #fff;
  }
  .goods .title .cacth {
    max-width: 343px;
    margin-top: 0.5em;
    padding: .2em;
    font-size: 1.125rem;
  }
  .goods .title .txt {
    max-width: 660px;
    line-height: 2;
    margin-top: 2em;
    font-size: 0.875rem;
    color: #fff;
  }

.goods .btn_vrlink {
    max-width: 530px;
    margin: 10% auto 0;
    position: relative;
  }
    .goods .btn_vrlink::before {
      content: '';
      display: block;
      width: 100%;
      height: 32px;
      border-top: 1px solid #808080;
      border-left: 1px solid #808080;
      border-right: 1px solid #808080;
      position: absolute;
      top: -4px;
      left: 0;
    }
    .goods .btn_vrlink::after {
      content: '';
      display: block;
      width: 100%;
      height: 32px;
      border-bottom: 1px solid #808080;
      border-left: 1px solid #808080;
      border-right: 1px solid #808080;
      position: absolute;
      bottom: -4px;
      left: 0;
    }
  .goods .btn_vrlink a, .goods .btn_vrlink span {
    display: block;
    width: 98%;
    padding: 1em .4em;
    margin-left: 1.5%;
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    background-color: #E50012;
    position: relative;
    box-sizing: border-box;
    z-index: 10;
  }
    .goods .btn_vrlink a:before, .goods .btn_vrlink a:after {
      content: '';
      display: block;
      width: 2px;
      height: 2px;
      background-color: #fff;
      position: absolute;
    }
    .goods .btn_vrlink a:before {
      left: 0;
      top: 0;
    }
    .goods .btn_vrlink a:after {
      right: 0;
      bottom: 0;
    }
    .goods .btn_vrlink a, .ticket .bnt_cv span {
      /* background-color: #999; */
    }
.goods .txt_attention {
  text-align: center;
  margin-top: 1.5em;
  font-size: 0.875rem;
  color: #999;
}

.goods .lineup {
  margin-top: 15%;
  position: relative; 
}
  .goods .lineup::after {
    content: '';
    display: block;
    width: 42px;
    height: 11px;
    background-image: url(../images/icon_news_decoration_square.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    right: -72px;
    top: 0;
  }
  .goods .lineup_main {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .goods .lineup_main .module_lineup {
     max-width: 480px;
  }
    .goods .lineup_main .logo {
      width: 404px;
    }
    .goods .lineup_main .logo .txt {
      display: block;
      margin-top: 1.8em;
      font-size: 1.812rem;
      color: #fff;
    }
    .goods .lineup_main h2 {
      margin-top: 0.2em;
      font-size: 3.75rem;
      color: #fff;
    }
      .goods .lineup_main h2:after {
        content: '';
        display: inline-block;
        width: 139px;
        height: 30px;
        margin-left: 1em;
        vertical-align: middle;
        background-image: url(../images/img_goods_decoration_lineup.svg);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
      }
 .goods .module_lineup .txt_price {
   margin-top: 2em;
   text-align: center;
   color: #fff;
  }
    .goods .module_lineup .txt_price .model {
      display: block;
      font-size: 1rem;
      padding: .2em;
    }
    .goods .module_lineup .txt_price .num {
      display: block;
      font-size: 1.375rem;
      padding: .2em;
      border-top: 1px solid #333;
    }
  .goods .lineup .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 1040px;
    margin: 0 auto;
    padding: 5% 0 2%;
  }
    .goods .lineup .list li {
      width: 23.5%;
      margin: 5% 2% 0 0;
    }
    .goods .lineup .list li:nth-child(4n) {
      margin-right: 0;
      position: relative;
    }
    .goods .lineup .list li:nth-child(4n):after {
      content: '';
      display: block;
      width: 40px;
      height: 91px;
      background-image: url(../images/img_goods_decoration_side.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      position: absolute;
      right: -72px;
      top: 0;
    }

/* ----------------------------------------
guide
----------------------------------------- */

.guide {
  padding: 10% 0;
}
  .guide h1 {
    font-size: 4.125rem;
    color: #fff;
    text-align: center;
  }
  .guide .menulist {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 3em;
  }
    .guide .menulist li {
      max-width: 150px;
      width: 100%;
      margin: 0 1.5%;
    }
    .guide .menulist li .txt {
      text-align: center;
      font-size: 1rem;
      margin-top: 0.5em;
      color: #fff;
    }
  .guide .txt_checklink {
    text-align: center;
    font-size: 1.125rem;
    color: #fff;
    margin: 5em 0 1em;
  }
    .guide .txt_checklink a {
      color: #E50012;
    }
  .guide .bnt_guide_detail {
    margin-top: 1em;
    text-align: center;
  }
    .guide .bnt_guide_detail a {
      display: inline-block;
      width: 342px;
      padding: 1em;
      text-align: center;
      font-size: 1.125rem;
      color: #fff;
      background-color: #E50012;
      box-sizing: border-box;
    }

/* ----------------------------------------
contact
----------------------------------------- */

.contact {
  padding: 8% 0;
  color: #fff;
  background-color: #1A1A1A;
}
  .contact h1 {
    font-size: 4.125rem;
    text-align: center;
  }
  .contact .wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact .txt_attention {
    margin-top: 3em;
  }
    .contact .txt_attention li {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      margin-top: .2em;
    }
    .contact .txt_attention li:before {
      content: '';
      display: block;
      width: 7px;
      height: 7px;
      margin-top: 7px;
      background-color: #E50012;
    }
    .contact .txt_attention li p {
      width: 97%;
      margin-left: 0.5em;
      line-height: 1.8;
      font-size: 0.875rem;
    }
    .contact .txt_attention li a {
      text-decoration: underline;
      color: #fff;
    }
  .contact .label {
    display: block;
    font-size: 1rem;
    margin: 1.5em 0 1em;
  }
  .contact .label:first-child {
    margin-top: 7em;
  }
  .contact input, .contact textarea {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  .contact .submit {
    display: inline-block;
    width: 100%;
    margin-top: 3em;
    padding: 1.9em;
    text-align: center;
    font-size: 1.125rem;
    color: #fff;
    border: none;
    background-color: #E50012;
  }

  .contact {
    background-color: #1A1A1A;
    position: relative;
  }
  .contact:after{
    content: "";
    display: block;
    height: 100%;
    border-right: 1px solid rgb(255 255 255 / .1);
    position: absolute;
    top: 0;
    right: 5%;
  }
  .contact h1 .txt {
    display: block;
    text-align: center;
    font-size: 1.25rem;
  }
  .contact .img_backtxt{
    margin: auto;
    width: 8%;
    max-width: 105px;
    position: absolute;
    top: 5%;
    left: 5%;
  }
  .contact .img_subpage_dot {
    position: absolute;
    right: 5%;
    top: 3%;
  }
  .contact .img_contact_bg01{
    width: 2.5%;
    position: absolute;
    right: 2.5%;
    top: 0;
  }
  .contact .img_contact_bg02{
    width: 13%;
    position: absolute;
    right: 7.7%;
    top: 2.5%;
  }
  .contact .complete{
    margin: 120px auto auto;
    text-align: center;
  }
  .contact .complete strong{
    font-size: 1.1875rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
  }
  .contact .complete p{
    margin-top: 2rem;
    font-size: 0.875rem;
  }
  .contact .complete .bnt_cv {
    width: 530px;
    margin: 10% auto 0;
    position: relative;
  }
  .contact .complete .bnt_cv::before {
    content: '';
    display: block;
    width: 100%;
    height: 18px;
    border-top: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #808080;
    position: absolute;
    top: -4px;
    left: 0;
  }
  .contact .complete .bnt_cv::after {
    content: '';
    display: block;
    width: 100%;
    height: 18px;
    border-bottom: 1px solid #808080;
    border-left: 1px solid #808080;
    border-right: 1px solid #808080;
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  .contact .complete .bnt_cv a, .contact .complete .bnt_cv span {
    display: block;
    width: 98%;
    padding: 1em .4em;
    margin-left: 1.5%;
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    background-color: #E50012;
    position: relative;
    box-sizing: border-box;
    z-index: 10;
  }
  .contact .complete .bnt_cv a:before, .contact .complete .bnt_cv a:after {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    background-color: #fff;
    position: absolute;
  }
  .contact .complete .bnt_cv a:before {
    left: 0;
    top: 0;
  }
  .contact .complete .bnt_cv a:after {
    right: 0;
    bottom: 0;
  }
  .contact .complete .bnt_cv a {
    background-color: #E50012;
  }


/* ----------------------------------------
sns
----------------------------------------- */

.sns {
  background-color: #E6E6E6;
}
.sns:after{
  content: '';
  display: block;
  width: 394px;
  height: 68px;
  background-image: url(../images/icon_sns_decoration_bottom.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
  .sns .wrap {
    max-width: 1040px;
    padding: 10% 0 18%;
    margin: 0 auto;
    display: flex;
    border-left: 1px solid #CCC;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
  }
  .sns .wrap::before,
  .sns .wrap::after {
    content: '';
    display: block;
    width: 42px;
    height: 11px;
    background-image: url(../images/icon_news_decoration_square.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    left: -42px;
    top: 0;
  }
  .sns h1 {
    margin-bottom: 6rem;
    font-size: 4.125rem;
    text-align: center;
    width: 100%;
    z-index: 0;
  }
  .sns h1 span{
    display: block;
    margin-top: 1em;
    text-align: center;
    font-size: 1.25rem;    
  }
  .sns .img_sns_backtxt{
    width: 73%;
    position: absolute;
    right: 5%;
    top: 5%;
    color: #fff;
  }
  .sns  h2{
    margin: auto auto 1rem;
    width: 96px;
  }
  .sns .insta > div,
  .sns .twitter > div{
    height: 490px;
  }
  .sns .insta{
    margin: 0;
    width: 50%;
    position: relative;
  }

  .sns .insta > img{
    display: block;
    width: 54.666%;
    position: absolute;
    right: -4%;
    bottom: -60px;
  }
  .sns .twitter{
    margin: 0;
    width: 40%;
    position: relative;
  }
  .sns .twitter > img{
    display: block;
    width: 53.6666%;
    position: absolute;
    right: -4%;
    bottom: -60px;
  }
  .sns .icon_sns_decoration{
    position: absolute;
    bottom: 0;
    left: -110px;
    width: 95px;
  }



  /* ----------------------------------------
device
----------------------------------------- */

.device {
  padding: 10% 0;
  color: #fff;
}
  .device h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .device .wrap {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
  }
    .device .wrap table {
      width: 48%;
      margin-top: 10%;
    }
    .device .wrap table th.title {
      font-size: 1.5rem;
      color: #fff;
    }
    .device .wrap table th {
      color: #ccc;
    }
    .device .wrap table th,
    .device .wrap table td {
      border-bottom: #333 solid 1px;
      padding: .5em;
    }
    .device .wrap table.ios th,
    .device .wrap table.ios td {
      width: 50%;
    }
    .device .wrap table.android th,
    .device .wrap table.android td {
      width : 30%;
    }
    .device .wrap table.android th:first-child,
    .device .wrap table.android td:first-child {
      width : 40%;
    }
    .device .txt {
      margin-top: 1em;
      text-align: center;
      line-height: 2.1;
      font-size: 0.875rem;
    }
    .device td.note {
      text-align: center;
    }

/* ----------------------------------------
subpage
----------------------------------------- */
.subpage {
  position: relative;
  background-color: #1A1A1A;
  overflow-x: hidden;
}
.subpage .img_subpage_dot {
  position: absolute;
  left: -10%;
  top: 5%;
}

.subpage .wrap {
  max-width: 964px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 8%;
  padding-right: 1em;
  position: relative;
  color: #fff;
  border-left: 1px solid rgb(255 255 255 / .1);
}
.subpage .img_backtxt {
  width: 60%;
  right: -8%;
  top: 4%;
  position: absolute;
}
.subpage h1 {
  width: 220px;
  margin: 0 auto;
}
  .subpage h1 .txt {
    display: block;
    margin-top: 1em;
    text-align: center;
    font-size: 1.25rem;
  }
.subpage .txt_intro {
  line-height: 2;
  font-size: 0.875rem;
  margin-top: 120px;
  padding-left: 5em;
}

.subpage .list {
  margin-top: 8%;
}
  .subpage .list dt {
    padding-left: 5em;
    padding-bottom: 1em;
    font-size: 1rem;
  }
    .subpage .list dt .num {
      display: inline-block;
      width: 1.5em;
      height: 1.5em;
      vertical-align: middle;
      margin-right: 1em;
      margin-top: -4px;
      font-size: 0.9375rem;
      text-align: center;
      color: #E50012;
      border: 1px solid #E50012;
      border-radius: 99px;
    }
    .subpage .list dt .icon {
      display: inline-block;
      width: 13px;
      margin-right: 1.2em;
      margin-top: -4px;
      line-height: 0;
      vertical-align: middle;
    }
  .subpage .list dd {
    padding: 1em 0 1em 5em;
    position: relative;
  }
  .subpage .list dd:before {
    content: '';
    display: block;
    width: calc(100% + 50%);
    border-top: 1px solid rgb(255 255 255 / .1);
    position: absolute;
    right: -50%;
    top: 0;
  }
    .subpage .list dd .txt {
      font-size: 0.875rem;
    }

    .subpage .list dd ol {
      margin-left: 1em;
    }
    .subpage .list dd ol.second {
      margin-top: 1em;
    }
    .subpage .list dd ol li {
      line-height: 1.8;
      font-size: 0.875rem;
      margin-top: 2em;
      list-style-type: decimal;
      list-style-position: outside;
      padding-left: 0.5em;
    }
      .subpage .list dd ol li:first-child {
        margin-top: 0;
      }
      
    .subpage .list dd ol ul {
      margin-top: 1em;
      margin-left: 1em;
    }

    .subpage .list dd ol ul li,
    .subpage .list dd ol.sub ul li {
      margin-top: 1em;
      list-style: disc;
    }

    .subpage .list dd ol.sub ul li {
      padding: 0;
      text-indent: 0;
    }

    .subpage .list dd ol ol,
    .subpage .list dd ol.sub {
      margin-top: 1.5em;
      margin-left: 2em;
      counter-reset: item;
      list-style-type: none;
      padding-left: 0;
    }
    
    .subpage .list dd ol ol li,
    .subpage .list dd ol.sub li {
      margin-top: 1em;
      text-indent: -2.8em;
      padding-left: 1.3em;
      list-style-type: none;
    }
    
    .subpage .list dd ol ol li:before,
    .subpage .list dd ol.sub li:before {
      counter-increment: item;
      content: counter(item)'';
      margin-right: 1em;
      padding: 0 .5em;
      border-left: #ccc solid 1px;
      border-right: #ccc solid 1px;
      border-radius: .8em;
      font-size: 0.812rem;
    }

    .subpage .list dd ol.sub ul li:before {
      counter-increment: none;
      content: none;
      margin: 0;
      padding: 0;
    }

    .subpage .list a {
      margin-left: .2em;
      margin-right: .2em;
      color: #E50012;
    }

.foot_txt {
  display: flex;
  margin-top: 5em;
  padding-left: 5em;
}

.foot_txt p {
  width: 50%;
  text-align: right;
  font-size: 0.875rem;
}

.foot_txt p.date {
  text-align: left;
}


/* ----------------------------------------
guide
----------------------------------------- */
.howto {
    position: relative;
    background-color: #e6e6e6;
    overflow-x: hidden;
}
  .howto > .wrap {
      max-width: 1040px;
      margin: 0 auto;
      border-left: 1px solid #CCC;
      position: relative;
      padding-bottom: 2%;
  }
  .howto > .wrap::before, .howto > .wrap::after {
      content: '';
      display: block;
      width: 42px;
      height: 11px;
      background-image: url(../images/icon_news_decoration_square.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      position: absolute;
      left: -42px;
      top: 0;
  }
  .howto > .wrap::after {
      right: -47px;
      left: auto;
      top: 0;
  }
  .howto .icon_howto_decoration_dot {
    width: 9px;
    position: absolute;
    left: -2%;
    top: .7%;
  }
  
  .howto .title {
    padding-top: 10%;
    position: relative;
    text-align: center;
  }
  .howto h1 {
    position: relative;
    font-size: 4.125rem;
    color: #000;
    text-align: center;
    z-index: 10;
  }
  .howto .title .txt {
    position: relative;
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
    z-index: 10;
  }
  .howto .title .img_howto_backtxt {
    width: 614px;
    position: absolute;
    right: -40px;
    bottom: 0;
    z-index: 0;
  }
  
  .howto .navigation {
    margin: 5% -40px 0;
    font-size: 1.125rem;
  }
  .howto .navigation ul {
    display: flex;
    justify-content: space-between;
  }
  .howto .navigation ul li {
    width: 23.5%;
  }
  .howto .navigation ul li:last-child {

  }
  .howto .navigation ul li a {
    display: block;
    padding: .7em 0;
    text-align: center;
    color: #e50012;
    border: #e50012 solid 2px;
  }


  /* 2020.11.24 add */
  .howto h2 {
    margin-bottom: 5%;
    font-size: 4rem;
  }
  .howto h2 span{
    margin-left: 2rem;
    display: inline-block;
    padding: 0 2rem;
    height: 1.6rem;
    font-size: 1.1rem;
    line-height: 1.7rem;
    letter-spacing: 0.07rem;
    font-weight: normal;
    color: #fff;
    background: #e50012;
    vertical-align: middle;
    position: relative;
  }
  .howto h2 span:after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.6rem 0.6rem 0 0;
    border-color: #e50013 transparent transparent transparent;
    position: absolute;
    right: -0.6rem;
    top: 0;
  }
  .howto .line{
    padding-left: 4%;
    border-left: solid 4px #e50012;
    position: relative;
  }
  .howto .line.before{
    margin-bottom: 10%;
  }
  .howto .line.not{border-left: solid 4px transparent;}
  .howto .line:before{
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: #e50012;
    border-radius: 50%;
    position: absolute;
    left: -10px;
  }
  .howto .line.before:after,
  .howto .line.cando:after{
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: #e50012;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    bottom: 0;
  }
  .howto .line h3{
    margin-bottom: 2rem;
    color: #e50012;
    font-size: 1rem;
  }
  .howto .line .step{
    padding-left: 1.5%;
    padding-bottom: 6%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .howto .line .step > img{
    margin: 0 3.2% 0 0;
    max-width: 236px;
    width: 24.8%;
  }
  .howto .line .step > div{
    margin: 0;
    width: 72%;
  }
  .howto .line .step > div h4 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
  }
  .howto .line .step > div h4 img{
    margin-right: 0.6rem;
    width: 1.5rem;
    display: inline-block;
    vertical-align: baseline;
  }
  .howto .line .step > div h4 span{
    margin-right: 1rem;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    vertical-align: middle;
  }
  .howto .line.cando .step > div h4 img{
    margin-right: 1rem;
    width: 5%;
  }
  .howto .line .step > div h4 + p{
    font-size: 0.9rem;
  }
  .howto .line .step > div ul{
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 52%;
  }
  .howto .line .step > div ul li{
    margin: 0;
    width: 46%;
  }
  .howto .line .step > div .note{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top:solid 1px #ccc;
    font-size: 0.9rem;
  }
  .howto .line .step > div div{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top:solid 1px #ccc;
  }
  .howto .line .step > div div > img{
    margin-right: 1rem;
    display: inline-block;
    width: 7.2%;
    vertical-align: middle;
  }
  .howto .line .step > div div span{
    color: #e50012;
    font-weight: bold;
  }
  .howto .recommend > div{
    padding-bottom: 8rem;
    width: 60%;
    position: relative;
  }
  .howto .recommend > div:before{
    content: "";
    display: block;
    width: 50%;
    border-top: solid 4px #e50012;
    position: absolute;
    top: 1rem;
    right: 0;
  }
  .howto .recommend > div:after{
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: #e50012;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0.6rem;
  }
  .howto .recommend > div h2{
    margin: auto auto 2rem 0;
    padding: 0.5rem 0;
    display: inline-block;
    width: 50%;
    font-size: 1.25rem;
    text-align: center;
    line-height: 1;
    color: #fff;
    background: #e50012;
    border-radius: 2rem;
  }
  .howto .recommend > div h2 + p{
    font-size: 2rem;
    line-height: 2;
  }
  .howto .recommend > div > img{
    display: block;
    width: 131px;
    position: absolute;
    bottom: 0;
    left: 11%;
  }
  /* 2020.11.24 add end */



/* 画像対応分  ----------------------------------------- */
.howto .preparation {
  margin: 10% -40px 0;
}
.howto .preparation h2 {
  margin-bottom: 5%;
  max-width: 660px;
}
.howto .img {
  position: relative;
}
.howto .img img {
  vertical-align: top;
}
.howto .img .icon {
  max-width: 18px;
  margin-right: 30px;
}
.howto .img .flow {
  max-width: 959px;
}
.howto .preparation .img .icon_app_android {
  position: absolute;
  left: 340px;
  top: 868px;
}
.howto .preparation .img .icon_app_ios {
  position: absolute;
  left: 550px;
  top: 868px;
}
.howto .preparation .img .icon_app_android img,
.howto .preparation .img .icon_app_ios img {
  width: auto;
  height: 55px;
}

.howto .enjoy {
  margin: 15% -40px 0;
}
.howto .enjoy h2 {
  margin-bottom: 5%;
  max-width: 711px;
}
.howto .enjoy .img {
  position: relative;
}
.howto .enjoy .preparation .img .flow {
  max-width: 959px;
}
.howto .enjoy .enjoy .img .flow {
  max-width: 958px;
}
.howto .enjoy .enjoy .img .cando {
  max-width: 928px;
}
.howto .enjoy .img.cando {
  margin-top: 5%;
}

.howto .recommend {
  margin: 10% -40px 0;
}
.howto .recommend .txt {
  max-width: 666px;
}
.howto .recommend .txt {
  max-width: 574px;
}

.howto {
  background: #e6e6e6 url("../images/img_howto_recommend.png") no-repeat bottom right;
  background-size: 761px 708px;
}
.howto br.sp {
  display: none;
}



section.model {
    position: relative;
    background-color: #1a1a1a;
    overflow-x: hidden;
}
  section.model:before {
      content: '';
      display: block;
      width: 394px;
      height: 68px;
      background-image: url(../images/img_goods_decoration_top.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      position: absolute;
      left: 0;
      top: 0;
  }
  section.model > .wrap {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      border-left: 1px solid rgb(255, 255, 255, .1);
      border-right: 1px solid rgb(255, 255, 255, .1);
      color: #fff;
      padding-bottom: 10%;
  }
  .model .icon_model_decoration {
    width: 100px;
    position: absolute;
    left: 32px;
    top: 0;
  }
  .model .icon_model_decoration img {
      vertical-align: top;
  }
  
  .model .title {
    padding-top: 10%;
    position: relative;
    text-align: center;
  }
  .model h1 {
    position: relative;
    font-size: 4.125rem;
    text-align: center;
    z-index: 10;
  }
  .model .title .txt {
    position: relative;
    font-size: 1.25rem;
    font-weight: bold;
    z-index: 10;
  }
  .model .note {
    margin: 3em auto 5em;
    text-align: center;
    font-size: 0.875rem;
  }
  
  .model .table {
    display: flex;
    text-align: left;
    padding: 0 5%;
    justify-content: space-between;
  }
  .model .table .ios,
  .model .table .android {
    position: relative;
  }
  .model .table .ios{width: 35%;}
  .model .table .ios img {
    position: absolute;
    max-width: 79px;
    width: 41%;
    left: 50%;
    top: 0;
    margin-left: -40px;
  }
  .model .table .android{width: 60%;}
  .model .table .android img {
    position: absolute;
    max-width: 92px;
    width: 41%;
    left: 50%;
    top: 1%;
    margin-left: -46px;
  }
  
  /* 2020.11.24 add */
  .model .table .detail {
    margin-top: 7rem;
    border-collapse: separate;
    border-spacing: 0.8rem;
    width: 100%;
  }
  .model .table .detail table {
    margin-right: 2rem;
  }
  .model .table .ios table:last-child,
  .model .table .android table:last-child {
    margin-right: 0;
  }
  .model .table .android table th {
    width: 224px;
  }
  .model .table .android th.num {
    width: 167px;
  }
  .model .table .android th.ver {
    width: 167px;
  }
  .model .table .detail th {
    padding: 0 0 .6em 0;
    border-bottom: #666 solid 1px;
  }
  .model .table .detail td {
    padding: 0 0 .6em 0;
    border-bottom: #666 dotted 1px;
  }
  .model .table .detail tr:last-child td{
    border: none;
  }
  .model .table .android table th{
    width: 31%;
  }
  /* 2020.11.24 add end */

  .model .table .ios dl.name {
    width: 194px;
  }
  .model .table .ios dl.ver {
    width: 167px;
  }


.faq {
    background-color: #000;
    overflow-x: hidden;
    color: #fff;
}
  .faq > .wrap {
      max-width: 1200px;
      margin: 0 auto 0;
      position: relative;
      border-left: 1px solid rgb(255, 255, 255, .1);
      border-right: 1px solid rgb(255, 255, 255, .1);
      color: #fff;
      padding-bottom: 5%;
      z-index: 20;
  }
  .faq:before {
    content: '';
    display: block;
    width: 466px;
    height: 32px;
    background-image: url(../images/img_timetable_top.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -32px;
    z-index: 15;
}
  
  .faq .title {
    margin-bottom: 10%;
    padding-top: 10%;
    position: relative;
    text-align: center;
  }
  .faq h1 {
    position: relative;
    font-size: 4.125rem;
    text-align: center;
    z-index: 10;
  }
  .faq .title .txt {
    position: relative;
    font-size: 1.25rem;
    font-weight: bold;
    z-index: 10;
  }
  .faq h2 {
    padding: 5% 10%;
    font-size: 1.5rem;
    font-weight: bold;
    border-top: 1px solid rgb(255, 255, 255, .1);
  }
  
  .faq dl {
    margin: 0 auto 10%;
    max-width: 926px;
  }
  .faq dl a {
    color: #e50012;
  }
  .faq dl dt {
    border-bottom: #fff dotted 1px;
    position: relative;
    padding: .5rem 4rem 1.5rem 60px;
  }
  .faq dl dt:before {
    content: '';
    display: block;
    width: 42px;
    height: 42px;
    background-image: url(../images/icon_faq_question.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .faq dl dd {
    position: relative;
    padding: 1.5rem 1rem 0 60px;
  }
  .faq dl dd:before {
    content: '';
    display: block;
    width: 42px;
    height: 66px;
    background-image: url(../images/icon_faq_answer.svg);
    background-repeat: no-repeat;
    background-position: 0 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
  }
  /* 2020.11.24 add*/
  .faq dl dt{
    cursor: pointer;
  }
  .faq dl dt{
    position: relative;
  }
  .faq dl dt:after{
    content: '';
    display: block;
    width: 42px;
    height: 42px;
    background-image: url(../images/icon_faq_close.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .4s;
  }
  .faq dl dt.open:after{
    transform: rotate(180deg);
  }
  .faq dl dd{
    display: none;
  }
  /* 2020.11.24 add end */


/* ----------------------------------------
footer
----------------------------------------- */

footer {
  padding: 2% 0;
  background-color: #1A1A1A;
}
  footer .logo {
    width: 117px;
    margin: 0 auto;
  }
  footer .otherlink {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 30%;
    margin: 1em auto 1.5em;
  }
    footer .otherlink a {
      color: #fff;
    }
  footer .copy {
    font-size: 0.875rem;
    color: #fff;
    text-align: center;
  }

@media screen and (max-width: 860px) {

  .pc {
    display: none!important;
  }

  .sp {
    display: block!important;
  }

  /* header */
  header {
    width: 100%;
    height: 44px;
    border-width: 5px;
    position: fixed;
    z-index: 1010;
  }

  header .logo {
    width: 110px;
  }
  
  header .menu_open {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgb(0 0 0 / 0.9);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  header .menu_open.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  header .wrap {
    width: 100%;
    max-width: 220px;
    /* padding: 0 5%; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  header .gnav {
    display: block;
  }

  header .menu-trigger {
    display: block;
    width: 44px;
    height: 44px;
    top: 0;
    right: 0;
    z-index: 1020;
  }
  header .menu-trigger:hover {
    cursor: pointer;
  }
  .menu-trigger,
  .menu-trigger span {
      display: inline-block;
      transition: all .4s;
      box-sizing: border-box;
  }
  .menu-trigger {
      position: relative;
      width: 40px;
      height: 18px;
  }
  .menu-trigger:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .8;
  }

  .menu-trigger span {
      position: absolute;
      width: 70%;
      height: 2px;
      left: 8px;
      background-color: #fff;
  }
  .menu-trigger span:nth-of-type(1) {
      top: 10px;
  }
  .menu-trigger span:nth-of-type(2) {
      top: 21px;
  }
  .menu-trigger span:nth-of-type(3) {
      top: 32px;
  }
  .menu-trigger.active span:nth-of-type(1) {
    top: 21px;
    left: 17%;
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    left: -50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .5s forwards;
    animation: active-menu-bar02 .5s forwards;
  }
  @-webkit-keyframes active-menu-bar02 {
    100% {
        width: 0;
    }
  }
  @keyframes active-menu-bar02 {
    100% {
        width: 0;
    }
  }
  .menu-trigger.active span:nth-of-type(3) {
    top: 38px;
    left: 17%;
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
  }

  header .gnav {
    padding: 0 0 0 1em;
    text-align: left;
  }

  header .gnav li {
    display: block;
    margin: 1em 0 0;
  }

  header .gnav li a {
    padding: 0;
    font-size: 1.2rem;
  }
  

.modal_text {
  min-width: 0 !important;
}
  
.modal_text dt {
  width: 100% !important;
}

.modal_text dd {
  width: 100% !important;
  margin-bottom: 2rem !important;
}
  
  

  @media screen and (orientation: landscape) {
		header .menu_open {
			overflow-y: auto;
		}

		header .menu_open .wrap {
			height: 100%;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}
	}

  /* 
  hero
   */

  .hero {
    width: 100%;
    min-height: 100%;
  }

  .hero .background {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }

  .hero .background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    margin-left: -100%;
    z-index: -1;
  }
  @media screen and (orientation: landscape) {
    .hero .wrap {
      margin: 0 auto;
      padding: 88px 0;
      position: static;
      transform: translate(0, 0);
    }
    .hero .background {
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
    }
      .hero .background video {
        margin-left: 0;
      }
  }

  .hero .wrap {
    width: 80%;
  }
    .hero .logo {
      width: 210px;
      margin: 0 auto;
    }
    .hero .timer {
      margin-top: 2em;
    }

    .hero iframe{
      margin: auto;
      width: 100%;
    }

  /* 
  news
   */

  .news .wrap {
    max-width: 96%;
    padding-bottom: 10%;
  }
    .news .wrap::after {
      right: 0;
    }
  .news h1 {
    font-size: 2rem;
  }
  .news .postlist li {
    line-height: 1.6;
    align-items: flex-start;
  }
    .news .postlist li .date {
      font-size: 0.8rem;
    }
  .news .news_backtxt {
    width: 50vw;
  }

  /* 
  notice
   */
  .notice h2,
  .notice .txt {
    padding: 0 1.5rem;
  }
  .notice .wrap {
    max-width: 96%;
    text-align: left;
  }

  /* 
  about
   */

  .about {
    background-size: auto 40%;
    background-position: 50% bottom;
  }
  .about .wrap {
    max-width: 96%;
  }
  .about h1 {
    width: 290px;
  }
  .about .wrap {
    font-size: 0.937rem;
  }

  .about .news_backtxt {
    width: 50vw;
  }
  .about .about_decoration_dot {
    display: none;
  }

  .about .sponsor {
    width: 66%;
    margin: 10vh auto 0;
  }

  .about .txt {
    font-size: 1rem;
    padding: 0 1.5em;
  }

  /* 
  timetable
   */

  .timetable:before {
    max-width: 65vw;
    height: auto;
    padding-top: 5%;
    top: 1.65%;
  }
  .timetable .timetable_decoration {
  top: 1.65%;
}
.timetable .timetable_back_top{
  width: 90%;
}
  .timetable .title h1 {
    font-size: 3rem;
  }
  .timetable > .wrap {
    max-width: 96%;
  }
  .timetable .title {
    padding: 0 1.5em;
    text-align: right;
  }
  .timetable .title .txt {
    max-width: 100%;
    text-align: left;
  }
  .timetable .timetable_list .title {
    padding: 0 .5em;
    display: block;
  }
  .timetable .timetable_list.right .title {
    text-align: left;
  }
  .timetable .timetable_list h2 {
    font-size: 2rem;
  }
  .timetable .timetable_list .title h2 .weekday {
    font-size: 1.8rem;
  }
  .timetable .timetable_list .title .day {
    margin: .5em auto 0 40px !important;
    padding: .2em 1em;
    font-size: 1.1rem;
  }
  .timetable .timetable_list.right .title .day {
    margin: .5em 40px 0 auto !important;
  }
  .timetable .timetable_list .title .day:after {
    width: 40px;
    left: -40px;
    top: 52%;
  }
  .timetable .timetable_list.right .title .day:after {
    right: -40px;
    top: 38%;
  }
  .timetable .timetable_list_timeline .list li {
    margin-top: 2.24em;
    font-size: 0.875rem;
    padding: 0 .3em;
  }
  .timetable .timetable_list .list li:before {
    width: 160px;
    top: -1px;
  }
  .timetable .timetable_list_timeline {
    text-align: center;
    margin-top: 4.3em;
  }
  
  .timetable .timetable_list .list .txt {
    max-width: 90%;
    padding: .2em .2em;
    font-size: 0.687rem;
  }

  /* 
  artist
   */

  .artist > .wrap {
    max-width: 96%;
  }
  
  .artist .title h1 {
    font-size: 3rem;
  }

  .artist .title {
    display: block;
    padding: 5%;
  }

  .artist .title .img_artist_backtxt {
    display: none;
  }
  .artist .lineup_link li a {
    font-size: 1.1rem;
  }
  .artist .lineup_link {
    margin-bottom: 2rem;
  }

  .artist .module_artistList h2 {
    width: 220px;
    margin-left: auto;
    margin-top: -2.4rem;
    font-size: 2rem;
    padding-top: .19em;
  }
  .artist .module_artistList h2 .weekday {
    font-size: 1.5rem;
  }

  .artist .module_artistList .list {
    padding: 5%;
  }
    .artist .module_artistList .list li .name {
      font-size: 0.8rem;
    }
    .artist .artistlink {
      display: block;
    }
    .artist .module_artistList .list li .artistlink li {
      width: 90%;
      margin: 5% auto 0;
    }
    .artist .artistlink .link a {
      padding: .5em 0;
      font-size: 0.5rem;
      min-width: 0;
    }
  .artist .andmore {
    width: 90%;
    margin: 12% auto 10%;
    align-items: center;
    justify-content: center;
  }
    .artist .andmore strong {
      min-width: 50%;
      font-size: 1.3rem;
      border-width: 2px;
    }
    .artist .andmore:before, .artist .andmore:after {
      width: 25%;
      background-position: 0 50%;
    }

  /* 
  ticket
   */

  .ticket > .wrap {
    max-width: 96%;
  }
    .ticket > .wrap::before {
      left: 0;
    }
    .ticket > .wrap::after {
      display: none;
    }
    .ticket .img_ticket {
      width: 80%;
      margin: 0 auto;
      padding-top: 5%;
      left: 0;
      top: 0;
      position: relative;
      z-index: 10;
    }
    .ticket .img_ticket_backtxt {
      width: 26vw;
      left: auto;
      right: 9%;
      top: 9%;
      z-index: 0;
    }

    .ticket .detail {
      width: 100%;
      padding: 0 5%;
      box-sizing: border-box;
    }
      .ticket .detail h1 {
        font-size: 3rem;
      }
      .ticket .detail .price h2 {
        font-size: 1.5rem;
      }
      .ticket .detail .price .txt_jpn {
        min-width: 110px;
        font-size: 0.9rem;
      }
      .ticket .bnt_cv {
        width: 100%;
      }

    .ticket .icon_ticket_decoration_dot,
    .ticket .icon_ticket_decoration {
      display: none;
    }
  
  /* 
  goods
   */
  
  .goods:before {
    max-width: 50vw;
    height: auto;
    padding-top: 8.5%;
  }

  .goods > .wrap {
    padding: 10% 5%;
  }

  .goods .title .img_goods_backtxt {
    width: 80vw;
    top: 0;
    right: 0;
  }

  .goods .btn_vrlink a, .goods .btn_vrlink span {
    font-size: 0.9rem;
  }

  .goods .title h1 {
    font-size: 3rem;
  }

  .goods .lineup_main > div {
    width: 100%;
  }
  .goods .lineup_main .logo {
    width: 80%;
    margin: 0 auto;
  }
    .goods .lineup_main .logo .txt {
      font-size: 1.2rem;
      margin-top: 1em;
      text-align: center;
    }
  .goods .lineup_main h2 {
    font-size: 3rem;
    margin-top: 1em;
  }
    .goods .lineup_main h2:after {
      width: 16vw;
      height: auto;
      padding-top: 4%;
      margin-left: 0.5em;
    }
  .goods .lineup_main .module_lineup {
    margin-top: 1em;
  }

  .goods .module_lineup .txt_price {
    margin-top: 1em;
  }
    .goods .module_lineup .txt_price .model {
      font-size: 0.9rem;
    }
    .goods .module_lineup .txt_price .num {
      font-size: 1.1rem;
    }

  .goods .lineup .list li {
    width: 49%;
  }
    .goods .lineup .list li:nth-child(2n) {
      margin-right: 0;
    }
    .goods .lineup .list li:nth-child(4n) {
      /* margin-right: auto; */
    }

  .goods .lineup_main {
    flex-wrap: wrap;
  }

  .goods .lineup::after, .goods .lineup .list li:nth-child(4n):after {
    display: none;
  }

  /* 
  sns
   */

   .sns {
    width: 100%;
  }
  .sns:after{
    width: 50vw;
    height: 8vw;
    background-position: right;
  }
    .sns .wrap {
      width: 96%;
      padding: 10% 5%;
      box-sizing: border-box;
    }
    .sns .wrap::before,
    .sns .wrap::after {
      left: 0;
    }
    .sns h1 {
      margin-bottom: 2rem;
      font-size: 3rem;
    }
    .sns h1 span{
      margin: auto;
    }
    .sns .img_sns_backtxt{
      width: 80vw;
      right: 0;
      top: 2%;
    }
    .sns h2{
      margin: auto auto .5rem;
      width: 50px;
    }
    .sns .insta{
      margin: 0 0 4rem;
      width: 94%;
      position: relative;
    }
  
    .sns .insta > img{
      display: block;
      width: 51.666%;
      position: absolute;
      right: -3%;
      bottom: -10vw;
    }
    .sns .insta > div{
      height: auto;
    }
    .sns .insta iframe{
      height: auto!important;
      min-height: 200px;
    }
    .sns .twitter{
      margin: 0 0 5rem;
      width: 94%;
    }
    .sns .twitter > div{
    }
    .sns .twitter iframe{
    }
    .sns .twitter > img{
      display: block;
      width: 39.5%;
      position: absolute;
      right: -3%;
      bottom: -7vw;
    }
    .sns .icon_sns_decoration{
      position: absolute;
      bottom: 0;
      left: -110px;
      width: 95px;
    }
  
  
    /* 
   guide
   */

  .guide {
    width: 90%;
    margin: 0 auto;
  }
    .guide h1 {
      font-size: 3rem;
    }
    .guide .menulist li .txt {
      font-size: 0.8rem;
    }
    .guide .txt_checklink {
      font-size: 0.9rem;
    }
    .guide .bnt_guide_detail a {
      width: 100%;
    }


  /* 
   device
   */

  .device {
    padding: 12% 5%;
  }
    .device h1 {
      font-size: 2.25rem;
    }
    .device .wrap {
    display: block;
  }
    .device .wrap table {
      width: 100%;
      margin-top: 10%;
    }


  /* 
   contact
   */

  .contact {
    padding: 12% 5%;
  }
    .contact h1 {
      font-size: 3rem;
    }
    .contact .txt_attention li p {
      width: 92%;
      line-height: 1.5;
      font-size: 0.9rem;
    }
    .contact .label:first-child {
      margin-top: 3em;
    }
    .contact .submit {
      padding: 1.2em;
    }

        .contact {
          padding: 110px 5% 12%;
        }
        .contact:after{
          display: none;
        }
        .contact .img_contact_bg01{
          display: none;
        }
        .contact .img_contact_bg02{
          display: none;
        }
        .contact .img_backtxt{
          display: none;
        }
    
    
      
  /* 
  subpage
   */

  .subpage .img_subpage_dot {
    display: none;
  }

  .subpage .wrap {
    padding-top: 110px;
    padding-right: 5%;
  }

  .subpage .img_backtxt {
    width: 80vw;
    right: 0;
    top: 5%;
  }

  .subpage .txt_intro, .subpage .list dt, .subpage .list dd, .subpage .foot_txt {
    padding-left: 5%;
  }

  .subpage .txt_intro {
    margin-top: 3em;
  }

  /* 
  guide
   */

  .howto {
    background-image: none;
  }
  .howto .title {
    margin-top: 10%;
  }
  .howto .title h1 {
    font-size: 3rem;
  }
  .howto .icon_howto_decoration_dot {
    display: none;
  }
  .howto > .wrap::before, .howto > .wrap::after {
    display: none;
}
  .howto .title .txt {
    font-size: 1rem;
  }
  .howto .img_howto_backtxt {
    display: none;
  }
  .howto .navigation {
    margin: 5% 5% 0;
  }
  .howto .navigation ul {
    display: block;
  }
  .howto .navigation ul li {
    width: 100%;
    margin-bottom: 2%;
  }
  
  .howto .preparation,
  .howto .enjoy {
    margin: 10% 5% 0;
  }
  .howto .icon {
    display: none;
  }
  .howto .preparation .img {
    text-align: center;
  }
  .howto .preparation .img .icon_app_android,
  .howto .preparation .img .icon_app_ios {
    position: relative;
    left: 0;
    top: 0;
  }
  .howto .preparation .img .icon_app_android img,
  .howto .preparation .img .icon_app_ios img {
    margin-top: 5%;
    width: 80%;
    height: auto;
  }
  .howto .recommend {
    margin: 10% 5% 0;
  }
  .howto br.sp {
    display: block;
  }

    /* 2020.11.24 add */
  .howto h2{
    font-size: 3rem;
    line-height: 1;
  }
  .howto h2 span{
    margin: 0;
    font-size: 0.8rem;
  }
  .howto .line .step{
    align-items: end;
    padding-left: 0;
  }
  .howto .line .step > img{
    margin-right: 2%;
    width: 30%;
  }
  .howto .line .step > div{
    width: 70%;
  }
  .howto .line .step > div h4{
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .howto .line .step > div h4 img{
    width: 7%;
  }
  .howto .line .step > div h4 span{
    font-size: 1.4rem;
    display: block;
  }
  .howto .line .step > div div{
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    padding-left: 10%;
    position: relative;
  }
  .howto .line .step > div div > img{
    margin: auto;    
    position: absolute;
    left: 0;
    top: 1.15rem;
  }
  .howto .line .step > div .note{
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .howto .line.cando .step > div h4{
    padding-left: 12%;
    position: relative;
  }
  .howto .line.cando .step > div h4 img{
    width: 10%;
    position: absolute;
    left: 0;
  }
  .howto .recommend > div{
    width: 100%;
  }
  .howto .recommend > div h2{
    font-size: 1rem;
    width: 60%;
  }
  .howto .recommend > div:before{
    width: 40%;
  }
  .howto .recommend > div h2 + p{
    font-size: 1.2rem;
  }
  .howto .recommend > div > img{
    display: none;
  }
  /* 2020.11.24 add end */


  .model:before {
    display: none;
  }
  .model .icon_model_decoration {
    display: none;
  }
  
  .model .title {
    margin: 0 10%;
    padding-top: 22%;
  }
  .model .title h1 {
    font-size: 3rem;
  }
  .model .title .txt {
    font-size: 1rem;
  }
  .model .note {
    margin: 3em 4%;
    font-size: 1rem;
  }
  .model .table {
    display: block;
  }

  .model .table .ios,
  .model .table .android{width: 100%;}
  .model .table .detail {
    margin-top: 0;
    padding-top: 7rem;
  }
  .model .table .android dl {
    margin-right: .5rem;
  }
  
  .model .table .ios dl.name {
    width: 50%;
  }
  .model .table .ios dl.ver {
    width: 50%;
  }
  .model .table .android dl.name {
    width: calc(100% / 3);
  }
  .model .table .android dl.num {
    width: calc(100% / 3);
  }
  .model .table .android dl.ver {
    width: calc(100% / 3);
  }
  .timetable_decoration {
    display: none;
  }
  .faq .title h1 {
    font-size: 3rem;
  }
  .faq h2 {
    padding: 5%;
  }
  .faq .title .txt {
    font-size: 1rem;
  }
  .faq dl {
    width: 90%;
  }

  /* 
  footer
   */

  footer {
    padding: 8% 0;
  }
    footer .logo {
      width: 146px;
    }
    footer .otherlink {
      width: 100%;
      padding: 0 1.5em;
      box-sizing: border-box;
    }
      footer .otherlink a {
        font-size: 0.9rem;
      }

}


/* ----------------------------------------
magnific-popup
----------------------------------------- */

.mfp-wrap {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-staff {
  position: relative;
}

.modal-staff_inner {
  position: relative;
  display: table;
  max-width: 850px;
  margin: 60px auto;
  padding: 40px 25px;
  background: #fff;
  box-sizing: border-box;
}
  .modal-staff_inner:before {
      content: '';
      display: block;
      width: calc(100% - 140px);
      height: 1px;
      background-color: #E5E5E5;
      position: absolute;
      left: 0;
      top: 0.8%;
    }
    .modal-staff_inner::after {
      content: '';
      display: block;
      width: 175px;
      height: 32px;
      background-image: url(../images/img_modal_profile_wrap_top.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      position: absolute;
      right: 0;
      top: -31px;
    }

.mfp-close-btn-in .mfp-close {
  display: none;
}

.modal-dismiss {
  width: 66px;
  position: absolute;
  top: -16px;
  right: 34px;
  z-index: 10;
}
  .modal-dismiss a {
    display: block;
  }

.modal-dismiss a img {
  display: inline-block;
  vertical-align: middle;
  line-height: 44px;
}

.modal_image {
  display: block;
  vertical-align: top;
  width: 100%;
  padding-bottom: 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.modal_content {
  display: block;
  vertical-align: middle;
  width: 100%;
}
  .modal_content:after {
      content: '';
      display: block;
      width: 102px;
      height: 100%;
      position: absolute;
      right: 3.5%;
      top: 18%;
      background-image: url(../images/img_modal_profile_bg_profile.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
    }
.modal-comment .modal_content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.modal_heading {
    width: 100%;
    padding-left: 0.1em;
    padding-bottom: .3em;
    font-size: 1.7rem;
    font-style: italic;
    color: #E50012;
    box-sizing: border-box;
    position: relative;
  }
    .modal_heading:after {
      content: '';
      display: block;
      height: 1px;
      width: 100%;
      background-color: #E5E5E5;
      position: absolute;
      bottom: 0px;
      right: 0;
    }

  .modal_meta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 1.7rem;
    margin-top: 1em;
  }
    .modal_meta:before {
      content: '';
      display: block;
      width: 8px;
      height: 22px;
      margin-right: 0.5em;
      background-image: url(../images/icon_ticket_day01.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
    }

  .modal_day {
    display: block;
    width: 106px;
    margin-top: 1em;
    margin-left: -4px;
    padding: .2em 0.8em;
    font-size: 1.1rem;
    color: #E50012;
    text-align: center;
    border: 1px solid #E50012;
    border-radius: 999px;
    box-sizing: border-box;
    position: relative;
  }
    .modal_day:after {
      content: '';
      display: block;
      width: 100%;
      height: 3px;
      background-image: url(../images/img_modal_profile_bar.svg);
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      position: absolute;
      right: -100%;
      top: 50%;
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
    }

.modal_text {
  margin-top: 2em;
  font-size: 0.9rem;
  line-height: 1.8;
  min-width: 658px;
}

dl.modal_text  {
  display: flex;
  flex-wrap: wrap;
}
.modal_text dt {
  width: 10%;
  margin-bottom: 1rem;
}

.modal_text dd {
  width: 90%;
  margin-bottom: 1rem;
}

.modal_text dd ul {
  padding-left: 1.5rem;
}
.modal_text dd li {
  list-style: disc;
}

@media screen and (min-width: 1200px) {
  .modal-staff_inner {
    padding: 0;
    position: relative;
  }
    .modal-staff_inner:before {
      top: 1.5%;
    }
    .modal-staff_inner::after {
      top: -31px;
    }

  .modal-dismiss {
    width: 93px;
    top: -1.8%;
    right: 3%;
  }

  .modal_content {
    display: table-cell;
    vertical-align: middle;
    width: auto;
    padding: 66px 80px;
    position: relative;
  }
    .modal_content:after {
      right: 4.5%;
      top: 10%;
    }

  .modal_artistData {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
    .modal_artistData li:last-child {
      width: calc(100% - 330px);
      padding-left: 44px;
      box-sizing: border-box;
    }

  .modal_heading {
    font-size: 1.8rem;
  }
    .modal_heading:after {
      width: calc(100% + 80px);
      right: -80px;
    }

  .modal_meta {
    font-size: 1.8rem;
    margin-top: 1em;
  }

  .modal_day {
    font-size: 1.375rem;
  }
    .modal_day:after {
      width: 246px;
      height: 6px;
      right: -246px;
      top: 50%;
    }

  .modal_image {
    width: 330px;
  }

  .modal_text {
    line-height: 1.8;
    font-size: .9rem;
  }
    .modal_text:first-child {
      margin-top: 0;
    }

  .modal_text_wrap {
    margin-top: 3em;
    padding: 0 1em;
    max-height: 400px;
    overflow-y: scroll;
    position: relative;
  }
    .modal_text a {
      color: #E50012;
      text-decoration: underline;
    }
    .modal_text a:hover {
      text-decoration: none;
    }

  .ps__thumb-y {
    background-color: #E50012!important;
  }
}

@media screen and (min-width:861px) and ( max-width:1100px) {
  .hero iframe {
    margin: auto;
    width: 80%;
  }
}



/* 1203 DL goods  guide add  */
#download{
  padding: 5% 0;
  color: #fff;
  text-align: center;
}
#download .wrap{
  margin: 5% auto auto;
  max-width: 1040px;
}
#download h1{
  font-size: 4.125rem;
}
#download p{
  line-height: 2;
}
#download ul{
  margin: 5% auto;
  width: 75%;
  display: flex;
  justify-content: space-between;
}
#download ul li{
  margin: 0 auto;
  width: 48%;
}

#download ul li img{
  max-height: 110px;
}

#goods .border_txt{
  margin: 2em auto auto;
  padding: 2em;
  max-width: 600px;
  line-height: 2;
  color: #fff;
  border: solid 2px #E50012;
}
#goods .border_txt span{
  font-size: 1.4rem;
}

#guide .broadcast{
  margin: auto auto 5%;
  padding: 0 3%;
  color: #fff;
  max-width: 1040px;
}
#guide .broadcast h1{
  margin: auto auto 2%;
  font-size: 3.5rem; 
}
#guide .broadcast p{
  margin: auto auto 1.5em;
  line-height: 2;
}

@media screen and (max-width: 860px){
#download .wrap{
    margin-top: 15%;
}
  #download h1{
    font-size: 3rem;
    white-space: nowrap;
  }
  #download ul{
    margin: 5% auto;
    display: block;
  }
  #download ul li{
    margin: 0 auto 5%;
    width: 100%;
  }
  #goods .border_txt{
    padding: 1em;
  }

  #guide .broadcast h1{
    font-size: 1.8rem;
    white-space: nowrap;
  }
}
