@charset "utf-8";
/* CSS Document */

/*------------ 初期設定 ------------*/
p {
	line-height: 1.7;
}

/*------------ 全体 ------------*/
html>body {
  font-size: 16px;
}
body {
  background: url("../images/common/bg.png") repeat center center;
}
._hover{
	transition: opacity 0.3s linear;
	opacity: 1;
}
._hover:hover{
	opacity: 0.7;
}
.font{
  font-family: 'Century Gothic','Noto Sans JP','Questrial', sans-serif;
}

.anim-fadeUp {
    -webkit-transition: opacity .8s,-webkit-transform .8s;
    transition: opacity .8s,-webkit-transform .8s;
    transition: transform .8s,opacity .8s;
    transition: transform .8s,opacity .8s,-webkit-transform .8s;
    opacity: 0;
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
}
.anim-fadeUp.is-show {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.anim-fade {
    transition: opacity .8s;
    opacity: 0;
}
.anim-fade.is-show {
    opacity: 1;
}
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .8s ease;
  transition: opacity .8s ease;
}
body.fadeout::after {
  opacity: 1;
}
/*
body.fadeout #wrapper{
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}
#wrapper {
  -webkit-transition: transform .8s ease-out;
  transition: transform .8s ease-out;
}
*/
*{
  box-sizing: border-box;
}
img{
  max-width: 100%;
  height: auto;
}
a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
.filter-shadow{
  text-shadow: 0 0 15px #0a5ca3, 0 0 15px #0a5ca3;
}
.filter-shadow__img{
  filter: drop-shadow(0 0 10px #0a5ca3);
}
.filter-shadow__img_dark{
  filter: drop-shadow(0 0 5px #0a5ca3) drop-shadow(0 0 10px #0a5ca3);
}
.filter-shadow__img_white{
  filter: drop-shadow(0 0 5px #FFF) drop-shadow(0 0 10px #FFF);
}

/*------------ WRAPPER ------------*/
#wrapper {
}
body #wrapper{
  background: url("../images/common/bg_head.png") no-repeat 50% -590px;
}
body.top #wrapper{
  background-position: center top;
}
.content_inner{
	max-width:1320px;
	margin:0 auto;
  position: relative;
  padding: 0 20px;
}

/*------------ HEADER ------------*/
header{
  position: relative;
  margin-bottom: 50px;
}
.flex-header{
  height: 165px;
  display: flex;
  justify-content: space-between;
}
.flex-header__li:nth-child(1){
  display: flex;
  align-items: flex-end;
}
.flex-header__li:nth-child(2){
  padding-right: 140px;
  display: flex;
  align-items: center;
}
#list_sns_header{
  display: flex;
  align-items: center;
}
#list_sns_header>li:nth-child(n+2){
  margin-left: 15px;
}


/*------------ NAVI ------------*/
#btn_menu{
  width: 56px;
  height: 56px;
  background: url("../images/common/btn_menu.svg") no-repeat center center;
  position: fixed;
  top: 55px;
  left: 50%;
  margin-left: 550px;
  cursor: pointer;
  z-index: 1000;
  transform: rotate(0deg);
  transition: transform .6s;
}
#btn_menu.active{
  transform: rotate(180deg);
}
#btn_menu:before{
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/common/btn_menu_close.svg") no-repeat center center;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  opacity: 0;
  transition: opacity .6s;
}
#btn_menu.active:before{
  opacity: 1;
}
#gnav{
  background-color: rgba(64,137,201,.9);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 440px;
  color: #FFF;
  z-index: 900;
  padding: 175px 30px 20px;
  transform: translateX(100%);
  transition: transform .6s;
  max-height: 100vh;
  overflow: auto;
}
#btn_menu.active ~ #gnav{
  transform: translateX(0%);
}
#gnav a:hover{
  text-decoration: none;
}
.list_gnav>li>a{
  padding: 15px 30px;
  display: block;
  font-size: 32px;
}
.list_gnav>li:nth-child(n+2){
  border-top: 1px solid #FFF;
}
.list_gnav>li>ul{
  padding-left: 30px;
  padding-bottom: 15px;
  margin-top: -10px;
}
.list_gnav>li>ul>li{
  font-size: 18px;
}

/*------------ TOP ------------*/
#main{
  /*
  display: flex;
  justify-content: center;
  */
}
#main_inner{
	max-width:1280px;
  padding: 10px 20px;
  position: relative;
  margin: 0 auto -17px;
}
#main_inner:before,
#main_inner:after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#main_inner>*{
  position: relative;
  z-index: 3;
}
#main_inner:before{
  background-color: rgba(255,255,255,.5);
  z-index: 1;
  transform: rotate(-5deg);
}
#main_inner:after{
  border: 4px solid #fff500;
  z-index: 2;
  transform: rotate(2deg);
}
#main .slick-dots {
  bottom: -25px;
  text-align: right;
  margin-right: -5px;
}
#main .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0;
}
#main .slick-dots>li:nth-child(n+1) {
  margin-left: 15px;
}
#main .slick-dots li button {
    width: 16px;
    height: 16px;
    padding: 5px;
}
#main .slick-dots li button:before {
    font-size: 16px;
    line-height: 1;
    width: 16px;
    height: 16px;
    opacity: 1;
    color: #FFF;
}
#main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #4089c9;
}
#sns_top{
  position: relative;
  z-index: 4;
}
#sns{
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  margin-left: -20px;
}
#sns>*{
  margin-left: 5px;
}
#sns>*:first-child{
  margin-left: 0;
}
#sns .fb-like>span{
  height: 21px !important;
}
#banner{
  margin-top: 100px;
}
.flex_bnr{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.flex_bnr_li{
  margin: 0 20px 40px;
}
#news{
  margin-top: 40px;
}
.ttl-news{
  text-align: center;
  margin-bottom: 35px;
}
.content-news{
  max-width: 1040px;
  margin: 0 auto;
}
.box-bg-wrap{
  background-color: rgba(255,255,255,.5);position: relative;
  padding: 30px;
}
.box-bg-wrap:before,
.box-bg-wrap:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-style: solid;
  pointer-events: none;
}
.box-bg-wrap:before{
  border-color: #FFF;
  top: -11px;
  left: -11px;
  z-index: 2;
}
.box-bg-wrap:after{
  border-color: #fff500;
  right: -11px;
  bottom: -11px;
  z-index: -1;
}
.list_news>li{
  padding: 20px 0;
}
.list_news>li:nth-child(n+2){
  border-top: 1px solid #FFF;
}
.flex_list_news{
  display: flex;
  align-items: center;
}
.flex_list_news_li:nth-child(1){
  margin-right: .6em;
}
.flex_list_news_li:nth-child(2){
  margin-right: 1.3em;
}
span.cat{
  width: 100px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: #4089c9;
  font-weight: 700;
}
.content-news .btn_more_wrapper{
  text-align: right;
  margin-top: 30px;
}
#tw_fb{
  margin-top: 105px;
}
.flex_tw_fb{
  display: flex;
  justify-content: center;
}
.flex_tw_fb_li{
  max-width: 480px;
  width: 50%;
  flex-shrink: 1;
}
.flex_tw_fb_li:nth-child(2){
  margin-left: 40px;
}

/*------------ ARTIST ------------*/
#contents_sub{
  padding-top: 65px;
}
#artist{
  padding-top: 50px;
}
body #fancybox-close {
  top: -1px;
  right: 0;
  width: 29px;
  height: 29px;
  transform: translateY(-100%);
  background: transparent url(../images/artist/btn_close.png) no-repeat center center;
}
#fancybox-wrap,
#fancybox-wrap *{
  box-sizing: content-box;
}
.fancybox-bg{
  display: none;
}
#main_sub{
  background-color: rgba(255,255,255,.75);
}
#main_sub>div{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
}
#breadcrumb_wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 10px 0;
}
#breadcrumb_wrapper #sns {
  justify-content: flex-end;
  flex: 2 2 auto;
}
#breadcrumb {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  color: #FFF;
}
#breadcrumb>li {
  font-size: 12px;
}
#breadcrumb>li a {
  color: inherit;
  text-decoration: underline;
  display: block;
  padding-right: 18px;
  margin-right: 10px;
  position: relative;
}
#breadcrumb>li a:hover {
  text-decoration: none;
}
#breadcrumb>li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ttl_artist{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 48px;
  margin-bottom: 20px;
}
.ttl_artist>span{
  margin: 0 -.2em 0 -.1em;
}
.ttl_artist:before,
.ttl_artist:after{
  content: "";
  width: 91px;
  height: 74px;
  background-position: center center;
  background-repeat: no-repeat;
}
.day1 .ttl_artist:before,
.day1 .ttl_artist:after{
  background-image: url("../images/artist/bg_ttl1.png");
}
.day2 .ttl_artist:before,
.day2 .ttl_artist:after{
  background-image: url("../images/artist/bg_ttl2.png");
}
.day3 .ttl_artist:before,
.day3 .ttl_artist:after{
  background-image: url("../images/artist/bg_ttl3.png");
}
.ab .ttl_artist:before,
.ab .ttl_artist:after{
  background-image: url("../images/artist/bg_ttl4.png");
}
.flex_artist{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flex_artist_li{
  width: calc((100% - (6px * 5)) / 6);
}
.flex_artist_li:nth-child(n+7){
  margin-top: 23px;
}
.block_artist + .block_artist{
  margin-top: 87px;
}

/*------------ NEWS ------------*/
.flex_contents_sub{
  display: flex;
  justify-content: space-between;
}
.flex_contents_sub_li:nth-child(1){
  flex-grow: 1;
  flex-shrink: 1;
  margin-right: 40px;
}
.flex_contents_sub_li:nth-child(1) .block_content:nth-of-type(n+2){
  margin-top: 58px;
}
.flex_contents_sub_li:nth-child(2){
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  width: 320px;
}
.flex_pager{
  display: flex;
  justify-content: center;
  margin-top: 43px;
}
.flex_pager>li:nth-child(n+2){
  margin-left: 20px;
}
.flex_pager>li a,
.flex_pager>li span{
  width: 2.1em;
  height: 2.1em;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  transition: all .3s;
}
.flex_pager>li span,
.flex_pager>li a:hover{
  background-color: #FFF;
  color: #4089c9;
  text-decoration: none;
}
.block_subnav{
  background-color: rgba(255,255,255,.5);
  padding: 20px;
  position: relative;
}
.block_subnav:before,
.block_subnav:after{
  content: "";
  width: 51px;
  height: 57px;
  background: url("../images/news/bg_side_content.png") no-repeat center center;
  position: absolute;
  pointer-events: none;
}
.block_subnav:before{
  left: 0;
  top: 0;
  transform: translate(-25%,-25%);
}
.block_subnav:after{
  right: 0;
  bottom: 0;
  transform: translate(25%,25%);
}
.block_subnav + .block_subnav{
  margin-top: 40px;
}
.ttl_subnav{
  text-align: center;
  margin-bottom: 20px;
}
.block_subnav li{
  padding: 15px 30px;
  padding-right: 0;
  background: url("../images/news/bg_list.png") no-repeat left center;
}
.block_subnav li:nth-child(n+2){
  border-top: 1px solid #FFF;
}
.sub_nav_fixed{
  width: 100%;
}
.flex-news-ttl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.flex-news-ttl .list_news>li {
  padding: 0;
}
#sns_n {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-end;
  /*margin-top: -20px;*/
}
#sns_n>* {
  margin-right: 5px;
}
#sns_n .fb-like>span {
  height: 20px !important;
}
.ttl_block{
  font-size: 28px;
  font-weight: 700;
  padding-bottom: .3em;
  margin-bottom: .5em;
  border-bottom: 1px solid #FFF;
}
.body-news__detail p + p{
  margin-top: 1em;
}
.btn_news_back{
  text-align: center;
  margin-top: 45px;
}
.body-news__detail del {
    background-image: linear-gradient(#000, #000);
    background-position: 0 50%;
    background-size: 100% 1px;
    background-repeat: repeat-x;
    text-decoration: none;
    padding: 0 2px;
}
/*------------ TICKET ------------*/
p + .block-ticket{
  margin-top: 1em;
}
.block-ticket + .block-ticket{
  margin-top: 1em;
}
.block-ticket__ttl{
  background-color: #4089c9;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  padding: .2em .4em;
  margin-bottom: 10px;
}
.block-ticket__body{
  padding: 0 10px;
  overflow-wrap:break-word;
  word-wrap:break-word;
}
.list-indent{
  padding-left: 1em;
  text-indent: -1em;
}
.block-ticket__body ul{
  font-size: 13px;
}
hr{
  display: block;
  background-color: #FFF;
  height: 1px;
  border: none;
  margin: 1.5em 0;
}
.block-ticket__body hr{
  margin: 1.5em -10px;
}
.block-ticket__body del {
    background-image: linear-gradient(#000, #000);
    background-position: 0 50%;
    background-size: 100% 1px;
    background-repeat: repeat-x;
    text-decoration: none;
    padding: 0 2px;
}
/*------------ THEMESONG ------------*/
.block_themesong{
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.mov_wrapper{
  max-width: 800px;
  margin: 0 auto;
}
.mov{
  position: relative;
  padding-top: 56.25%;
}
.mov iframe{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.contents_themesong{
  margin-top: 2vw;
}
.themesong_cdjkt{
  width: 320px;
  margin: 0 auto;
}
.themesong_info{
  margin: 1.5vw 0;
}
.themesong_info span.themesong_ttl{
  font-size: 32px;
}
.themesong_info a{
  text-decoration: underline!important;
}

/*------------ LIVE INFO ------------*/
.table_common{
  width: 100%;
}
.table_common th,
.table_common td{
  vertical-align: top;
  padding-bottom: 15px;
  font-weight: normal;
}
.table_common th{
  width: 6em;
}
.table_common tr:nth-child(n+2) th,
.table_common tr:nth-child(n+2) td{
  border-top:1px solid #FFF;
  padding-top: 15px;
}
.list_slash>li{
  display: inline;
}
.list_slash>li:nth-child(n+2):before{
  content: "/";
}
.list_slash + p{
  margin-top: 1em;
}

/*------------ NOTICE ------------*/
.bold{
  font-weight: 700;
}
.box-address{
  display: flex;
}
.box-address__inner{
  margin-top: 1em;
  border: 2px solid #000;
  padding: 25px 30px;
}

/*------------ INTERVIEW ------------*/

/*------------ GOODS ------------*/
.body_block p + p{
  margin-top: 1em;
}
.text-alignC{
  text-align: center;
}
.notes__goods{
  margin-top: 30px;
}
.notes__goods p + p{
  margin-top: 1em;
}
.link-underline{
  text-decoration: underline;
}
.link-underline:hover{
  text-decoration: none;
}

/* ★追加★ */
.goods-ttl-wrap{
  border: 3px solid #4089c9;
  outline: 3px solid #fff;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  font-weight: 700;
  color: #4089c9;
  line-height: 1;
  margin-bottom: 20px;
}
.goods-ttl-wrap>div:nth-child(1){
  font-size: 42px;
}
.goods-ttl-wrap>div:nth-child(2){
  font-size: 16px;
  margin-top: 10px;
}
.flex-goods-nav{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-decoration: underline;
  margin-bottom: 20px;
}
.flex-goods-nav-li{
  width: calc((100% - (10px * 2)) / 3);
  margin-left: 10px;
}
.flex-goods-nav-li:nth-child(3n+1){
  margin-left: 0;
}
.flex-goods-nav-li:nth-child(n+4){
  margin-top: 10px;
}
.flex-goods-nav-li a{
  display: block;
  text-align: center;
  background-color: #fff;
  color: #4089c9;
  text-decoration: none;
  padding: 10px;
}
.flex-goods-nav-li a span{
  padding-bottom: 2px;
  border-bottom: 1px solid #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.pic-pamph_penlight,
.pic-artistgoods{
  text-align: center;
}
.body-pamph_penlight,
.body-artistgoods{
  margin-top: 10px;
}
.body-pamph_penlight .ttl,
.body-artistgoods .ttl{
  font-weight: 700;
}
.ttl-artistgoods{
  color: #0050b4;
  font-weight: 700;
  line-height: 1.5;
  font-size: 40px;
}
.notes-pamph_penlight{
  font-size: 12px;
}
.flex-goods{
  display: flex;
  flex-wrap: wrap;
}
.flex-goods-li{
  width: calc((100% - 19px) / 2);
  margin-left: 19px;
}
.flex-goods-li:nth-child(odd){
  margin-left: 0;
}
.flex-goods-li:nth-child(n+3){
  margin-top: 20px;
}
.flex-goods-li .pic{
  border: 1px solid #4089c9;
  background-color: #FFF;
}
.flex-goods-li .pic img{
  display: block;
}
.flex-goods-li .body{
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
}

.block_goods_ticket{
  background-color: #fff500;
  padding: 20px;
  color: #4089c9;
  font-size: 20px;
  font-weight: 700;
}
.block_goods_ticket p{
  line-height: 1.5;
}
.goods_ticket_ttl{
  font-size: 36px;
  border-bottom: 1px solid #4089c9;
}
.goods_ticket_btn{
  display: block;
  word-wrap: break-word;
  margin: 20px auto 0;
  padding: 10px;
  width: calc((70% - 20px));;
  text-align: center;
  color: #fff500;
  background-color: #4089c9;
}
.goods_ticket_btn:hover{
  text-decoration: none;
}
.goods_ticket_btn_container{
  display: flex;
  justify-content: space-around;
  align-items: baseline;
}

.block_content{
  background-color: rgba(255,255,255,.5);
  padding: 40px;
  margin-bottom: 40px;
  display: block;
  position: relative;
}
.block_content::before,
.block_content::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-style: solid;
  pointer-events: none;
}
.block_content::before{
  border:2px solid #FFF;
  top:-11px;
  left:-11px;
}
.block_content::after{
  border:2px solid #fff500;
  top: 10px;
  left: 10px;
}

.anchor{
  position: relative;
  display: block;
  padding-top: 0;
  margin-top: 0;
}

.goods_thumbnail ul{
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumb{
  width: calc((100% - 0.5em) /5);
  padding: 0.25em;
}

/* ★追加ここまで★ */

/* ★Blu-ray追加★ */
.body-penlight {
  font-weight: 700;
}
.flex-pamphlet{
  display: flex;
}
.flex-pamphlet-li:nth-child(1){
  flex-shrink: 0;
  flex-grow: 0;
  width: 410px;
  margin-right: 20px;
}
.flex-pamphlet-li .notes{
  font-size: 12px;
  margin-top: 5px;
}
.flex-pamphlet-li .ttl{
  font-weight: 700;
}
.flex-pamphlet-li p{
  line-height: 1.5;
}
.pic-penlight{
  text-align: center;
}
.box-blu-ray {
  border-top: 1px solid #ffffff;
  padding-top: 20px;
  margin-top: 20px;
  font-weight: 700;
}
.box-blu-ray .flex-pamphlet-li:nth-child(1) {
  width: 400px;
}
.blu-ray-list dt {
  margin-top: 20px;  
}
.blu-ray-list dt:first-of-type {
  margin-top: 0;  
}
.blu-ray-artist {
  counter-reset: number 0;
}
.blu-ray-artist li {
  padding-left: 1.4em;
  text-indent: -1.4em;
}
.blu-ray-artist li:before {
  counter-increment: number 1;
  content: counter(number,decimal-leading-zero) " ";
}
.blu-ray-list dd:first-of-type .day-color,
.blu-ray-list dd:first-of-type .blu-ray-artist li:before { color: #64aa00; }
.blu-ray-list dd:nth-of-type(2) .day-color,
.blu-ray-list dd:nth-of-type(2) .blu-ray-artist li:before { color: #a5f6f2; }
.blu-ray-list dd:last-of-type .day-color,
.blu-ray-list dd:last-of-type .blu-ray-artist li:before { color: #fac03d; }


/*------------ OUTSIDE ------------*/

/* ★追加★ */
.notes-outside {
    font-size: 13px;
}
.block-area + .block-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #FFFFFF;
}
.box-numbered-ticket {
    border: 1px solid #FFF;
    padding: 20px;
}


.flex-outside-nav{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-decoration: underline;
  margin-bottom: 20px;
}
.flex-outside-nav-li{
  width: calc((100% - (10px * 2)) / 2);
  margin-left: 10px;
}
.flex-outside-nav-li:nth-child(2n+1){
  margin-left: 0;
}
.flex-outside-nav-li:nth-child(n+4){
  margin-top: 10px;
}
.flex-outside-nav-li a{
  display: block;
  text-align: center;
  background-color: #fff;
  color: #4089c9;
  text-decoration: none;
  padding: 10px;
}
.flex-outside-nav-li a span{
  padding-bottom: 2px;
  border-bottom: 1px solid #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.body-outside .ttl{
  font-weight: 700;
}
.ttl-outside{
  color: #0050b4;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
.body-outside a{
  font-weight: 700;
  text-decoration: underline;
  color: #4089c9;
}

/* ★追加ここまで★ */

/*------------  SETLIST ------------*/

/* ★追加★ */
.table-setlist{
  width: 100%;
}
.table-setlist th,
.table-setlist td{
  border: 1px solid #c8c8c8;
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 5px;
}
.table-setlist th{
  color: #FFF;
  text-align: center;
  width: 2em;
  box-sizing: border-box;
}
.day3 .table-setlist th{
  background-color: #fac03d;
}
.day3 .table-setlist .ttl-song{
  color: #fac03d;
}
.day2 .table-setlist th{
  background-color: #bce1df;
}
.day2 .table-setlist .ttl-song{
  color: #bce1df
}
.day1 .table-setlist th{
  background-color: #b5d67a;
}
.day1 .table-setlist .ttl-song{
  color: #b5d67a;
}
.table-setlist .ttl-artist:before{
  content: "/";
  margin-left: .4em;
  margin-right: .5em;
}

/* ★追加ここまで★ */


/*------------ FOOTER ------------*/
#bnr{
  padding: 0;
  margin-top: 100px;
}
.flex_bnr{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.flex_bnr_li{
  margin: 0 20px 40px;
}
.flex_bnr_li_curry{
  margin: 0 40px 40px;
}
footer{
  background: url("../images/common/bg_footer.png") no-repeat center bottom;
  padding-top: 80px;
}
#footer_inner{
}
.flex_footer{
  display: flex;
  flex-direction: column;
  text-align: center;
}
.flex_footer_li:nth-child(1){
  margin-bottom: 40px;
}
.flex_list_footer{
  display: flex;
  justify-content: center;
}
.flex_list_footer>li:nth-child(n+2){
  margin-left: 30px;
}
.flex_footer a{
  color: inherit;
  text-decoration: none;
}
#copyright{
  color: #FFF;
  text-align: center;
  padding: 80px 0 60px;
}
address{
  font-size: 16px;
  margin-bottom: 5px;
}
#copyright a{
  color: inherit;
  font-size: 12px;
}

/*-------- MARGIN★追加★ --------*/
.mt-10{
  margin-top: 10px !important;
}
.mt-20{
  margin-top: 20px !important;
}
.mt-30{
  margin-top: 30px !important;
}
.mt-40{
  margin-top: 40px !important;
}
.mt-50{
  margin-top: 50px !important;
}
.mt-60{
  margin-top: 60px !important;
}
.mt-70{
  margin-top: 70px !important;
}
.mt-80{
  margin-top: 80px !important;
}
.mt-1em{
  margin-top: 1em !important;
}
.mt-2em{
  margin-top: 2em !important;
}

/*-------- PADDING★追加★ --------*/
.pt-10{
  padding-top: 10px !important;
}
.pt-20{
  padding-top: 20px !important;
}
.pt-30{
  padding-top: 30px !important;
}
.pt-40{
  padding-top: 40px !important;
}
.pt-50{
  padding-top: 50px !important;
}
.pt-60{
  padding-top: 60px !important;
}
.pt-70{
  padding-top: 70px !important;
}
.pt-80{
  padding-top: 80px !important;
}
.pt-1em{
  padding-top: 1em !important;
}
.pt-2em{
  padding-top: 2em !important;
}
.pl-1em{
  padding-left: 1em !important;
}

/* ★追加ここまで★ */


@media (max-width:1320px) {
  #btn_menu{
    margin-left: 41.66vw;
  }
}

@media (min-width:769px) {
  .sp{
    display:none !important;
  }
}
@media (max-width:768px) {
  .pc{
    display:none !important;
  }
  body{
    -webkit-text-size-adjust: 100%;
  }
  img{
    max-width:100%;
    height:auto;
  }
  p{
    font-size: 3.6vw;
  }
  #wrapper *, #wrapper :after, #wrapper :before {
    box-sizing: border-box;
      text-decoration: inherit;
	word-wrap: break-word;
  }
/*------------ WRAPPER ------------*/
  #wrapper {
    width:100%;
    overflow: hidden;
    position: relative;
  }
  .content_inner{
    width:100%;
    margin:0 auto;
    padding: 0 2.66%;
    overflow: hidden;
    position: relative;
  	max-width:none;
  }
  body.top #wrapper{
    background: url("../images/common/bg_head.png") no-repeat center top;
    background-size: 200% auto;
  }

/*------------ HEADER ------------*/
  header{
    margin-bottom: 3.33vw;
  }
  .flex-header{
    height: 13.33vw;
  }
  .flex-header__li:nth-child(1){
    align-items: center;
  }
  .flex-header__li:nth-child(1) img{
    width: 36vw;
  }
  .flex-header__li:nth-child(2){
    padding-right: 11.33vw;
    justify-content: flex-end;
  }
  .flex-header__li:nth-child(2) img{
    width: 20vw;
  }


/*------------ NAVI ------------*/
  #btn_menu{
    width: 8.4vw;
    height: 8.4vw;
    background-size: contain;
    top: 2.66vw;
    left: auto;
    right: 2.66vw;
    margin-left: 0;
  }
  #btn_menu:before{
    background-size: contain;
  }
  #gnav{
    background-color: rgba(64,137,201,.95);
    width: 100vw;
    padding: 13.33vw 2.66vw 2.66vw;
    max-height: 100vh;
  }
  .list_sns_nav_sp{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2vw;
  }
  .list_sns_nav_sp img{
    width: 6.66vw;
    display: block;
  }
  .list_sns_nav_sp>li:nth-child(n+2){
    margin-left: 5.33vw;
  }
    .list_gnav{
      border-bottom: 1px solid #FFF;
    }
  .list_gnav>li>a{
    padding: 2vw 4vw;
    font-size: 4.26vw;
  }
  .list_gnav>li>ul{
    padding-left: 4vw;
    padding-bottom: 2vw;
    margin-top: -1.5vw;
  }
  .list_gnav>li>ul>li{
    font-size: 2.4vw;
  }
  .list_gnav>li>ul>li:nth-child(n+2){
    margin-top: .2em;
  }

/*------------ TOP ------------*/
  #main{
    display: flex;
    justify-content: center;
  }
  #main_inner{
    max-width: none;
    width: calc(100vw - (2.66vw * 2));
    padding: 0;
    margin: 0 2.66vw;
  }
  #main_inner:before{
    background-color: rgba(255,255,255,.5);
    transform: rotate(3deg) scale(.98);
  }
  #main_inner:after{
    border: 2px solid #fff500;
    transform: rotate(-2deg);
  }
  #main .slick-dots {
    bottom: -6vw;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-right: 0;
  }
  #main .slick-dots li {
      width: 2.13vw;
      height: 2.13vw;
      margin: 0;
  }
  #main .slick-dots>li:nth-child(n+1) {
    margin-left: 2.13vw;
  }
  #main .slick-dots li button {
      width: 2.13vw;
      height: 2.13vw;
      padding: 0;
  }
  #main .slick-dots li button:before {
      font-size: 2.13vw;
      width: 2.13vw;
      height: 2.13vw;
  }
  #sns_top{
    position: relative;
    z-index: 4;
  }
  #sns{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    margin-left: -20px;
  }
  #sns>*{
    margin-left: 5px;
  }
  #sns>*:first-child{
    margin-left: 0;
  }
  #sns .fb-like>span{
    height: 21px !important;
  }
  #banner{
  margin-top: 5.66vw;
}
#banner .flex_bnr{
  display: block;
}
#banner .flex_bnr_li {
    width: 100%;
}
.flex_bnr{
  flex-wrap: wrap;
  width: 100%;
}
.flex_bnr_li{
  margin: 0;
  text-align: center;
  padding: 0 1vw;
  margin-bottom: 4vw;
}
  #news{
    margin-top: 5.66vw;
  }
  .ttl-news{
    text-align: center;
    margin-bottom: 5.33vw;
  }
  .ttl-news img{
    height: 14.4vw;
    width: auto;
  }
  .content-news{
    max-width: none;
    margin: 0 auto;
  }
  .box-bg-wrap{
    padding: 4vw 4vw;
  }
  .box-bg-wrap:before{
    top: -1.46vw;
    left: -1.46vw;
  }
  .box-bg-wrap:before,
  .box-bg-wrap:after{
    border-width: 1px;
  }
  .box-bg-wrap:after{
    right: -1.46vw;
    bottom: -1.46vw;
  }
  .list_news>li{
    padding: 2.66vw 0;
  }
  .flex_list_news{
    flex-wrap: wrap;
  }
  .flex_list_news_li:nth-child(1){
    margin-right: .6em;
    font-size: 2.66vw;
  }
  .flex_list_news_li:nth-child(2){
    margin-right: 0;
  }
  .flex_list_news_li:nth-child(3){
    width: 100%;
    font-size: 3.2vw;
    margin-top: .2em;
  }
  span.cat{
    font-size: 2.4vw;
    width: 17.73vw;
    height: 4.26vw;
  }
  .content-news .btn_more_wrapper{
    margin-top: 4vw;
  }
  .btn_more_wrapper .more img{
    height: 3.33vw;
    width: auto;
  }
  #tw_fb{
    margin-top: 11.33vw;
  }
  .flex_tw_fb{
    flex-direction: column;
    padding: 0 15.73vw;
  }
  .flex_tw_fb_li{
    max-width: none;
    width: 100%;
    flex-shrink: 1;
  }
  .flex_tw_fb_li:nth-child(2){
    margin-left: 0;
    margin-top: 5.33vw;
  }

/*------------ ARTIST ------------*/
  #contents_sub{
    padding-top: 8vw;
  }
  #artist{
    padding-top: 0;
  }
  body #fancybox-close {
    top: -1px;
    right: 0;
    width: 29px;
    height: 29px;
    transform: translateY(-100%);
    background: transparent url(../images/artist/btn_close.png) no-repeat center center;
  }
  #main_sub>div{
    height: 25vw;
  }
  #main_sub>div img{
    height: 15vw;
    width: auto;
  }
  .ttl_artist{
    font-size: 6vw;
    margin-bottom: 4vw;
    text-align: center;
  }
  .ttl_artist>span{
    margin: 0 -.2em 0 -.1em;
  }
  .ttl_artist:before,
  .ttl_artist:after{
    width: 11vw;
    height: 8vw;
    background-size: contain;
  }
  .flex_artist{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .flex_artist_li{
    width: calc((100% - 2.66vw) / 2);
  }
  .flex_artist_li:nth-child(odd){
    margin-left: 0;
  }
  .flex_artist_li:nth-child(even){
    margin-left: 2.66vw;
  }
  .flex_artist_li:nth-child(n+3){
    margin-top: 4vw;
  }
  .block_artist + .block_artist{
    margin-top: 8vw;
  }

/*------------ NEWS ------------*/
  .flex_contents_sub{
  }
  .flex_contents_sub_li:nth-child(1){
    width: 100%;
    margin-right: 0;
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
  .flex_contents_sub_li:nth-child(1) .block_content:nth-of-type(n+2){
    margin-top: 8vw;
  }
  .flex_contents_sub_li:nth-child(2){
    display: none;
  }
  .flex_pager{
    margin-top: 8vw;
  }
  .flex_pager>li:nth-child(n+2){
    margin-left: 4vw;
  }
  .flex_pager>li a,
  .flex_pager>li span{
    font-size: 3.7vw;
  }
  .flex-news-ttl{
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column-reverse;
    margin-bottom: 1vw;
  }
  .flex-news-ttl__li:nth-child(2){
    margin-bottom: 4vw;
    width: 100%;
  }
  .flex-news-ttl .list_news>li {
    padding: 0;
  }
  #sns_n {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: flex-end;
    margin-top: 0;
  }
  #sns_n>* {
    margin-right: 5px;
  }
  #sns_n .fb-like>span {
    height: 20px !important;
  }
  .ttl_block{
    font-size: 5vw
  }
  .ttl_block span{
    margin-right: 0 !important;
  }
  .btn_news_back{
    margin-top: 8vw;
  }
  .btn_news_back img{
    width: 50vw;
  }
.block-news__body del{
    text-decoration: line-through 1px ;
}
/*------------ TICKET ------------*/
  .block-ticket__ttl{
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  .block-ticket__body{
    padding: 0;
	overflow-wrap:break-word;
	word-wrap:break-word;
  }
  .block-ticket__body ul{
    font-size: 3.2vw;
  }
  .block-ticket__body hr{
    margin: 1.5em 0;
  }
  .block-ticket__body del{
    text-decoration: line-through 1px ;
}

/*------------ THEMESONG ------------*/
.block_themesong{
  font-size: 3.2vw;
  text-align: center;
  color: #fff;
}
.mov_wrapper{
  max-width: 100%;
  margin: 0 auto;
}
.mov{
  position: relative;
  padding-top: 56.25%;
}
.mov iframe{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.contents_themesong{
  margin-top: 5vw;
}
.themesong_cdjkt{
  max-width: 100%;
}
.themesong_info{
  margin: 4.5vw 0;
}
.themesong_info span.themesong_ttl{
  font-size: 8vw;
}
.themesong_info a{
  text-decoration: underline!important;
}

/*------------ LIVE INFO ------------*/
  .table_common{
    width: 100%;
  }
  .table_common th,
  .table_common td{
    padding-bottom: 2vw;
    font-size: 3.6vw;
  }
  .table_common th{
    width: 6em;
  }
  .table_common tr:nth-child(n+2) th,
  .table_common tr:nth-child(n+2) td{
    padding-top: 2vw;
  }

/*------------ NOTICE ------------*/
  .box-address{
    display: flex;
  }
  .box-address__inner{
    flex-grow: 1;
    border: 1px solid #000;
    padding: 2vw 4vw;
    font-size: 3.6vw;
  }

/*------------ INTERVIEW ------------*/

/*------------ GOODS ------------*/
  .notes__goods{
    margin-top: 6vw;
  }
  .notes__goods p{
    font-size: 3.2vw;
  }

  /* ★追加★ */
  .goods-ttl-wrap{
    border: 4px solid #0086c2;
    padding: 2vw;
    margin-bottom: 4vw;
  }
  .goods-ttl-wrap>div:nth-child(1){
    font-size: 6vw;
    white-space: nowrap;
  }
  .goods-ttl-wrap>div:nth-child(2){
    font-size: 4vw;
    margin-top: 2vw;
  }
  .flex-goods-nav{
    margin-bottom: 4vw;
  }
  .flex-goods-nav-li{
    width: calc((100% - 2vw) / 2);
    margin-left: 2vw;
  }
  .flex-goods-nav-li:nth-child(3n+1){
    margin-left: 2vw;
  }
  .flex-goods-nav-li:nth-child(2n+1){
    margin-left: 0;
  }
  .flex-goods-nav-li:nth-child(n+3){
    margin-top: 2vw;
  }
  .flex-goods-nav-li a{
    padding: 2vw;
  }
  .flex-goods-nav-li a span{
    padding-bottom: 2px;
    font-size: 3.2vw;
  }
  .body-pamph_penlight,
  .body-artistgoods{
    margin-top: 2vw;
  }
  .ttl-artistgoods{
    font-size: 6vw;
  }

  .flex-goods-li{
    width: calc((100% - 2vw) / 2);
    margin-left: 2vw;
  }
  .flex-goods-li:nth-child(odd){
    margin-left: 0;
  }
  .flex-goods-li:nth-child(n+3){
    margin-top: 4vw;
  }
  .flex-goods-li .body{
    margin-top: 2vw;
    font-size: 3vw;
  }
.box-goods-artist{
  margin-top: 2vw;
}
.box-goods-artist + .box-goods-artist{
  margin-top: 6vw;
}
.box-goods-artist .ttl{
  font-size: 6vw;
}
.box-goods-artist .img{
  margin-top: 1vw;
}
.box-goods-artist .body{
  margin-top: 2vw;
}
  .goods-ttl-wrap>div:nth-child(1) {
    font-size: 5vw;
  }
  .goods-ttl-wrap>div:nth-child(1) span{
    font-size: 3.5vw;
  }
  .box-blu-ray .flex-pamphlet-li:nth-child(1) {
    width: auto;
  }

.block_goods_ticket{
  display: block;
  padding: 15px;
  color: #4089c9;
  font-size: 5vw;
  font-weight: 700;
}
.goods_ticket_ttl{
  font-size: 5vw;
  border-bottom: 1px solid #4089c9;
}
.goods_ticket_li{
  width:100%;
}
.goods_ticket_btn{
  width: 100%;
  height: auto;
  margin: 2vh 0 0;
  text-align: center;
}
.goods_ticket_btn_container{
  display: block;
}
.goods_ticket_btn p{
    font-size: 4.2vw;
}
.goods_ticket_btn img{
  width: 20vw;
}

.block_content{
  padding: 6vw;
  margin-bottom: 6vw;
}
.block_content::before{
  top:-2vw;
  left:-2vw;
  width:calc(100% - 1vw);
  height:calc(100% - 1vw);
}
.block_content::after{
  top: 2vw;
  left: 2vw;
  width:calc(100% - 1vw);
  height:calc(100% - 1vw);
}
 .sp_none{
  display: none;
 }

 .anchor{
  position: relative;
  display: block;
  padding-top: 0;
  margin-top: 0;
}

.goods_thumbnail ul{
  flex-wrap: wrap;
}
.thumb{
  width: calc((100% - 1vw) /3);
  padding: 1vw;
}

  /* ★追加ここまで★ */

/* ★Blu-ray 追加分★ */
  .flex-pamphlet{
    flex-direction: column;
  }
  .flex-pamphlet-li:nth-child(1){
    flex-shrink: 1;
    flex-grow: 1;
    width: auto;
    margin-right: 0;
    margin-bottom: 4vw;
  }
  .flex-pamphlet-li .notes{
    font-size: 3vw;
    margin-top: 1vw;
  }
  .body-penlight{
    margin-top: 2vw;
  }
  .goods-ttl-wrap>div:nth-child(1) {
    font-size: 5vw;
  }
  .goods-ttl-wrap>div:nth-child(1) span{
    font-size: 3.5vw;
  }
  .box-blu-ray .flex-pamphlet-li:nth-child(1) {
    width: auto;
  }
  /* ★追加ここまで★ */
  
  
/*------------ OUTSIDE ------------*/

  /* ★追加★ */
  .flex-outside-nav-li{
    width: calc((100% - 2vw) / 2);
    margin-left: 2vw;
  }
  .flex-outside-nav-li:nth-child(3n+1){
    margin-left: 2vw;
  }
  .flex-outside-nav-li:nth-child(2n+1){
    margin-left: 0;
  }
  .flex-outside-nav-li:nth-child(n+3){
    margin-top: 2vw;
  }
  .flex-outside-nav-li a{
    padding: 2vw;
  }
  .flex-outside-nav-li a span{
    padding-bottom: 2px;
    font-size: 3.2vw;
  }
  /* ★追加ここまで★ */

/*------------  SETLIST ------------*/

  /* ★追加★ */
  .table-setlist th,
  .table-setlist td{
    font-size: 3.6vw;
    padding: 1vw;
  }
  /* ★追加ここまで★ */

/*------------ FOOTER ------------*/
  #bnr{
    padding: 0;
    margin-top: 10.66vw;
  }
  .flex_bnr{
    flex-wrap: wrap;
  }
  .flex_bnr_li{
    margin: 0;
    width: calc(100% / 3);
    text-align: center;
    padding: 0 4vw;
    margin-bottom: 4vw;
  }
  .flex_bnr_li_curry{
    margin: 0;
    width: calc(100% / 7);
    text-align: center;
    padding: 0 4vw;
    margin-bottom: 4vw;
  }
  .footer-wrap{
    background: url("../images/common/bg_footer.png") no-repeat center bottom;
    background-size: 580% auto;
  }
  footer{
    background: none;
    padding-top: 5.33vw;
  }
  #footer_inner{
  }
  .flex_footer{
  }
  .flex_footer_li:nth-child(1){
    margin-bottom: 5.33vw;
  }
  .flex_footer_li:nth-child(1) img{
    height: 9.33vw;
    width: auto;
  }
  .flex_list_footer{
    flex-wrap: wrap;
  }
  .flex_list_footer img{
    display: block;
  }
  .flex_list_footer>li{
    width: calc((100% - (5.33vw * 6)) / 7);
    margin-left: 5.33vw !important;
  }
  .flex_list_footer>li:nth-child(7n+1){
    margin-left: 0 !important;
  }
  .flex_list_footer>li:nth-child(n+8){
    margin-top: 4vw;
  }
  #copyright{
    color: #FFF;
    text-align: center;
    padding: 10.66vw 0 4vw;
  }
  address{
    margin-bottom: 1em;
    font-size: 3.2vw;
  }
  #copyright a{
    font-size: 1.86vw;
  }
  .btn_pc{
    padding-bottom: 5.33vw;
    font-size: 1.86vw;
    text-align: center;
    color: #FFF;
  }
}

