@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */
/* =====================================================================
    common
======================================================================*/
.gDef-contents .fontEn {
  font-family: "M PLUS 1p", sans-serif;
}
.gDef-contents .red {
  color: #fc5c2c;
}
.gDef-contents .blue {
  color: #00a0e9;
}
.gDef-contents .z1 {
  position: relative;
  z-index: 1;
}
.gDef-contents p {
  font-size: 4rem;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .gDef-contents p {
    font-size: 2.2rem;
  }
}
.gDef-contents .forSP {
  display: block;
}
@media screen and (min-width: 768px) {
  .gDef-contents .forSP {
    display: none;
  }
}
.gDef-contents .forPC {
  display: none;
}
@media screen and (min-width: 768px) {
  .gDef-contents .forPC {
    display: block;
  }
}
.gDef-contents ::before,
.gDef-contents ::after {
  content: "";
  display: block;
  position: absolute;
}

h2.ttl {
  font-size: 8rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 7.5rem;
  width: 90%;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
h2.ttl span {
  display: block;
  font-size: 3.6rem;
  padding-top: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  h2.ttl {
    margin: 0 auto 3rem;
  }
  h2.ttl span {
    font-size: 3rem;
  }
}

/* =====================================================================
    header
======================================================================*/
#wrapper {
  background: url(../images/bg.jpg) repeat-y top center/contain;
  padding: 0;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}
#wrapper section {
  padding: 0;
  border-bottom: none;
}

.contents_header {
  width: 100%;
  position: relative;
  background: url(../images/bg_main_sp.png) repeat-y top center/cover;
  padding: 10rem 0 9rem;
}
.contents_header .inner {
  width: 66.6666666667%;
  margin: 0 auto;
  padding: 0;
}
.contents_header .inner h1 {
  width: 100%;
  padding-bottom: 8rem;
}
.contents_header .inner .date {
  width: 94%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contents_header {
    background: url(../images/bg_mv.jpg) repeat-y top center/cover;
    padding: 17rem 0 10rem;
  }
  .contents_header .inner {
    width: 90%;
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contents_header .inner h1 {
    width: 44.4%;
    padding-bottom: 0;
  }
  .contents_header .inner .date {
    width: 45.7%;
    margin: auto 0;
  }
}

/* =====================================================================
    nav
======================================================================*/
.nav_menu {
  position: relative;
  top: 0;
  right: 0;
  z-index: 200;
}
.nav_menu .toggle {
  width: 11rem;
  height: 11rem;
  background: #00a0e9;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  cursor: pointer;
  z-index: 500;
}
.nav_menu .toggle span {
  display: block;
  width: 4.4rem;
  height: 0.8rem;
  border-radius: 1rem;
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_menu .toggle span:nth-child(1) {
  top: 3rem;
  left: 3.4rem;
}
.nav_menu .toggle span:nth-child(2) {
  top: 5.2rem;
  left: 3.4rem;
}
.nav_menu .toggle span:nth-child(3) {
  top: 7.3rem;
  left: 3.4rem;
}
.nav_menu .nav_bg {
  width: 50%;
  height: 100vh;
  background: #00a0e9;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  padding: 24rem 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_menu .nav_bg ul {
  width: 100%;
  margin: auto;
}
.nav_menu .nav_bg ul li {
  font-size: 3.6rem;
  line-height: 8rem;
  text-align: center;
}
.nav_menu .nav_bg ul li a {
  color: #fff;
}
.nav_menu .nav_bg ul li a:hover {
  color: #7bd3fc;
}
.nav_menu.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.nav_menu.fixed .nav_bg {
  position: fixed;
}
@media screen and (min-width: 768px) {
  .nav_menu {
    position: relative;
  }
  .nav_menu .toggle {
    display: none;
  }
  .nav_menu .nav_bg {
    width: 100%;
    height: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .nav_menu .nav_bg ul {
    width: 90%;
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: auto;
  }
  .nav_menu .nav_bg ul li {
    font-size: 3rem;
    line-height: 8rem;
  }
  .nav_menu .nav_bg ul li a {
    color: #fff;
  }
  .nav_menu .nav_bg ul li a:hover {
    color: #7bd3fc;
  }
  .nav_menu.fixed .nav_bg {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
    -webkit-animation-name: slidein;
            animation-name: slidein;
  }
  @-webkit-keyframes slidein {
    from {
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes slidein {
    from {
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
.nav_menu.open .nav_bg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.nav_menu.open .toggle span {
  width: 6.4rem;
}
.nav_menu.open .toggle span:nth-child(1) {
  top: 4.8rem;
  left: 2.5rem;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.nav_menu.open .toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.nav_menu.open .toggle span:nth-child(3) {
  top: 4.8rem;
  left: 2.5rem;
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

/* =====================================================================
    artists
======================================================================*/
.artists {
  padding: 10rem 0 8rem !important;
  background: #fc5c2c;
  position: relative;
}
.artists_inner {
  position: relative;
  margin: auto;
}
.artists_block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 20;
  width: 74.6666666667%;
  margin: 0 auto 10rem;
}
.artists_block figure {
  position: relative;
  width: 100%;
  margin-bottom: 7rem;
}
.artists_block figure figcaption {
  display: inline-block;
  color: #00a0e9;
  background: #fff;
  font-size: 4rem;
  font-weight: 700;
  padding: 0 1em;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -3.2rem;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
.artists_block figure figcaption.long {
  display: block;
  width: 48rem;
  padding: 0;
}
.artists_block a.comment {
  font-size: 3rem;
  color: #fff;
  width: 46rem;
  border: 2px solid #fff;
  margin: 0 auto;
  padding: 2rem 0;
  border-radius: 6rem;
  position: relative;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.artists_block a.comment::after {
  width: 2rem;
  height: 3rem;
  background: url(../images/icon_arrow.svg) no-repeat center center/contain;
  top: calc(50% - 1.5rem);
  right: 4rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.artists_block a.comment:hover {
  color: #e83e0b;
  background: #fff;
}
.artists_block a.comment:hover::after {
  background: url(../images/icon_arrow_hover.svg) no-repeat center center/contain;
}
.artists_block.host::before {
  content: "TALK HOST";
  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;
  width: 11rem;
  height: 11rem;
  font-size: 2.6rem;
  color: #00a0e9;
  background: #eaff00;
  border-radius: 50%;
  z-index: 2;
  font-weight: 900;
  line-height: 1.2;
  top: 2.5rem;
  left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .artists {
    padding: 8rem 0 6rem !important;
  }
  .artists_inner {
    width: 90%;
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .artists_block {
    width: 48%;
    margin: 0 0 6rem;
  }
  .artists_block figure {
    margin-bottom: 5.8rem;
  }
  .artists_block figure figcaption {
    font-size: 3.4rem;
    padding: 0 1em;
    left: 50%;
    bottom: -3.2rem;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .artists_block figure figcaption.long {
    display: block;
    width: 38rem;
    padding: 0;
  }
  .artists_block figure img {
    height: 35rem;
    -o-object-fit: contain;
       object-fit: contain;
    background: #000;
  }
  .artists_block.kyuso figure img, .artists_block.fantastics figure img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .artists_block a.comment {
    font-size: 2.6rem;
    width: 30rem;
    padding: 0.5rem 0;
    border-width: 3px;
  }
  .artists_block a.comment::after {
    width: 1.7rem;
    height: 2.2rem;
    top: calc(50% - 1.1rem);
    right: 2rem;
  }
}

/* =====================================================================
    ticket
======================================================================*/
.ticket {
  background: #f1f1f1;
}
.ticket_inner {
  padding: 15rem 0 14rem;
  width: 86.6666666667%;
  margin: auto;
}
.ticket_inner .ttl {
  color: #e83e0b;
}
.ticket_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #00a0e9;
}
.ticket_list dt,
.ticket_list dd {
  font-size: 3rem;
  padding: 3rem 0;
  border-top: 1px solid #00a0e9;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.ticket_list dt {
  font-weight: 800;
  color: #00a0e9;
  width: 23rem;
}
.ticket_list dd {
  width: calc(100% - 23rem);
}
.ticket_list dd span.fontL {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .ticket_inner {
    padding: 10rem 0 14rem;
    width: 90%;
    max-width: 1000px;
  }
  .ticket_list dt,
  .ticket_list dd {
    font-size: 2.2rem;
    padding: 1.5rem 0;
  }
  .ticket_list dt {
    width: 23rem;
  }
  .ticket_list dd {
    width: calc(100% - 23rem);
  }
  .ticket_list dd span.fontL {
    font-size: 3.2rem;
  }
  .ticket_list dd a {
    display: inline;
  }
}
.ticket_banner {
  margin: 6rem auto 0;
}
 .soldout::after {
  content: "";
  text-align: center;
  display: block;
  background: url(../images/soldout.png) no-repeat;
  width: calc(300 / 750 * 100%);
  height: calc(30 / 750 * 100%);
  background-size: contain;
  opacity: 0.7;
  margin-left: calc(-30 / 750 * 100%);
  margin-top: calc(-180 / 750 * 100%);


}
 /* .soldout::after {
    content: "SOLD OUT";
    color: #030303;
    text-align: center;
    display: block;
    margin: -3.5em 0 -0.9em;
    background: #ff0;
    width: calc(278 / 750 * 100%);
    height: calc(31 / 750 * 100%);
    background-size: contain;
    opacity: 0.7;
    font-size: 0.7em;
     transform: rotate(-15deg);
    font-weight: 900;
    font-family: 'Noto Sans JP';
} */
@media screen and (min-width: 768px) {
  .ticket_banner {
    width: 64.5161290323%;
  }
  .ticket_banner a:hover {
    opacity: 0.7;
  }
    /* .soldout::after {
      margin: -2.5em 0 0 -.7em;
      content: url(../images/soldout.png);
} */
  .soldout::after {
  content: "";
  margin: -2.2em 0 0 -0.8em;
  background: url(../images/soldout.png) no-repeat;
  display: block;
  width: calc(175 / 750 * 100%);
  height: calc(30 / 750 * 100%);
  background-size: contain;

}
}

@media screen and (min-width: 1025px) {
  .soldout::after {

    }
  }
/* =====================================================================
    news
======================================================================*/
.news {
  padding: 15rem 0 !important;
}
.news_inner {
  position: relative;
  background: #fff;
  border-radius: 3rem;
  width: 92.5333333333%;
  margin: auto;
  padding: 8rem 4.5rem;
}
.news_inner h2.ttl {
  color: #e83e0b;
}
.news_list dt,
.news_list dd {
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.news_list dt {
  width: 100%;
  font-weight: 800;
  color: #00a0e9;
  padding-top: 3rem;
  position: relative;
  line-height: 3rem;
}
.news_list dt:first-child::before {
  content: "NEW";
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background: #00a0e9;
  border-radius: 4rem;
  line-height: 3rem;
  position: static;
  padding: 0 0.5em;
  margin-right: 1rem;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
}
.news_list dd {
  width: 100%;
  border-bottom: 1px solid #bee2f3;
  padding-bottom: 3rem;
  letter-spacing: 0.1em;
}
.news_list dd span.fontL {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 9rem 0 !important;
  }
  .news_inner {
    width: 90%;
    max-width: 1000px;
    padding: 5rem 4.5rem;
  }
  .news_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news_list dt,
  .news_list dd {
    font-size: 2rem;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    line-height: 1.4;
  }
  .news_list dt {
    width: 20.5rem;
    padding-left: 7rem;
    border-bottom: 1px solid #bee2f3;
  }
  .news_list dt:first-child::before {
    font-size: 1.4rem;
    border-radius: 4rem;
    line-height: 1.6;
    position: absolute;
    padding: 0 0.7em;
    margin-right: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 2.2rem;
    left: 0;
  }
  .news_list dd {
    width: calc(100% - 20.5rem);
    border-bottom: 1px solid #bee2f3;
  }
  .news_list dd span.fontL {
    font-size: 4rem;
  }
}

/* =====================================================================
    goods
======================================================================*/
.goods {
  padding: 15rem 0 6rem !important;
  background: rgba(0, 160, 233, 0.6);
}
.goods_inner {
  width: 74.6666666667%;
  margin: auto;
}
.goods_list {
  font-weight: 700;
}
.goods_list li {
  text-align: center;
  padding-bottom: 6rem;
}
.goods_list li img {
  background: #fff;
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.goods_list li h3 {
  font-size: 3rem;
  color: #fff;
}
.goods_list li p.price {
  font-size: 4.4rem;
}
.goods_list li p.price::before {
  content: "￥";
  position: static;
  display: inline;
}
.goods_list li p.price::after {
  content: "（税込）";
  position: static;
  display: inline;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .goods {
    padding: 7rem 0 !important;
  }
  .goods_list {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .goods_list li {
    width: 48%;
    margin: 0;
  }
  .goods_list li img {
    margin-bottom: 2rem;
  }
  .goods_list li h3 {
    font-size: 2.4rem;
  }
  .goods_list li p.price {
    font-size: 3.4rem;
  }
  .goods_list li p.price::after {
    font-size: 2.4rem;
  }
}

/* =====================================================================
    footer
======================================================================*/
.contents_footer {
  position: relative;
  background: url(../images/bg_footer.jpg) repeat top center/auto;
  padding: 16rem 0 30rem !important;
}
.contents_footer::after {
  width: 100%;
  height: 50%;
  z-index: 0;
  position: bottom;
  left: 0;
  bottom: 0;
  background: url(../images/img_footer_sukashi_sp.png) no-repeat bottom center/contain;
}
.contents_footer .logo {
  width: 62.6666666667%;
  margin: 0 auto 10rem;
}
.contents_footer h3 {
  font-size: 8rem;
  color: #e83e0b;
  text-align: center;
  font-weight: 900;
  margin: 0 auto 8rem;
}
.contents_footer .text {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.contents_footer .text span.pink {
  color: #e80bc1;
}
.contents_footer .text span.blue {
  color: #00a0e9;
}
.contents_footer .text span.red {
  color: #dd0000;
}
.contents_footer .text span.orange {
  color: #e83e0b;
}
@media screen and (min-width: 768px) {
  .contents_footer {
    padding: 13rem 0 20rem !important;
  }
  .contents_footer::after {
    background: url(../images/img_footer_sukashi.png) no-repeat bottom center/contain;
  }
  .contents_footer .logo {
    width: 32rem;
    margin: 0 auto 6rem;
  }
  .contents_footer h3 {
    font-size: 6rem;
    margin: 0 auto 6rem;
  }
}

.modaal-overlay {
  background: rgba(103, 61, 49, 0.8) !important;
}

#gDefFooter .gDef-footer-copyright {
  padding: 20px 0;
  font-size: 1.6rem !important;
  color: #fff !important;
  background: #00a0e9 !important;
  text-align: center;
  font-weight: 800 !important;
}

/* =====================================================================
    about
======================================================================*/
.about_list {
  margin: 8rem auto 0;
  width: calc(680 / 750 * 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #00a0e9;
}
.about_list dt,
.about_list dd {
  font-size: 3rem;
  padding: 3rem 0;
  border-top: 1px solid #00a0e9;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.about_list dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 800;
  color: #00a0e9;
  padding-right: 1em !important;
  width: 7em;
}
@media screen and (max-width: 767px) {
  .about_list dt.wide {
    padding-bottom: 0;
    width: 100%;
  }
  .about_list dt.wide + dd {
    border-top: 0;
  }
}
.about_list dd {
  width: calc(100% - 7em);
}
.about_list dd span.fontL {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .about_list {
    width: 90%;
    max-width: 1000px;
  }
  .about_list dt,
  .about_list dd {
    font-size: 2.2rem;
    padding: 1.5rem 0;
  }
  .about_list dt {
    width: 15em;
  }
  .about_list dd {
    width: calc(100% - 15em);
  }
  .about_list dd span.fontL {
    font-size: 3.2rem;
  }
  .about_list dd a {
    display: inline;
  }
}
.about_banner {
  margin: 6rem auto 0;
  width: calc(680 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .about_banner {
    width: 40.3225806452%;
    max-width: 500px;
  }
  .about_banner a:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=layout.css.map */

/* =====================================================================
    バナー追加
======================================================================*/
.banner-ttl{
  font-size: 5rem !important;
  color: #fff;
  background-color: #fc5c2c;
  text-align: center;
  padding: 0.5em 0;
  margin: 0.5em auto 0.5em;
}
.banner-list{
  margin-bottom: 6em;
}
.banner-list li{
  margin-bottom: 1em;
}
.banner-list li:hover{
  opacity: 0.7;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .banner-ttl{
    font-size: 3.5rem;
      padding: 0.5em;
      width: 95%;
      margin-left: auto;
      margin-right: auto;
  }
.banner-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.banner-list li{
  width: 35%;
  margin-right: 1em;
}
.no-margin{
  margin-right: 0 !important;
}
}
