@charset "utf-8";
/* CSS Document */

@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
	font-family: 'sns_ico';
	src:
		url('../fonts/sns_ico.ttf?sij4de') format('truetype'),
		url('../fonts/sns_ico.woff?sij4de') format('woff'),
		url('../fonts/sns_ico.svg?sij4de#sns_ico') format('svg');
	font-weight: normal;
	font-style: normal;
}

i.snsIcon {
	font-family: 'sns_ico' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	color: #000;
}

.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-tw:before { content: "\e908";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}


html {
	scroll-behavior: smooth;
}
body {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: min(3.4vw, 16px);
	line-height: 1.8;
  letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%;
  color: #fff;
}
body::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: ;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
body.v2::before {
  background-color: ;
}
body::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_texture.png") repeat left top;
  background-size: 65px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .6s ease-out;
}
.anim.on {
	opacity: 1;
}



#fixMenu {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.2);
}
#fixMenu ul {
  display: flex;
}
#fixMenu ul li {
  width: 20%;
  border-left: #ddd solid 1px;
}
#fixMenu ul li a {
  text-align: center;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-decoration: none;
  line-height: 1.4;
  padding: min(3vw, 10px) min(2vw, 10px);
  font-size: min(3vw, 13px);
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
#fixMenu ul li.menuBtn {
  width: 20%;
  position: relative;
}
#fixMenu ul li.menuBtn.new::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffea00;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}
#fixMenu ul li.menuBtn a {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
}
#fixMenu ul li.menuBtn a::before,
#fixMenu ul li.menuBtn a::after {
  content: "";
  display: block;
  width: 54%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
}
#fixMenu ul li.menuBtn a::before {
  transform: translate(-50%, -300%);
}
#fixMenu ul li.menuBtn a::after {
  transform: translate(-50%, 250%);
}

#fixMenu ul li.menuBtn a.on::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#fixMenu ul li.menuBtn a.on::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.fixArea {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(4vw, 20px);
}

.fixArea .news {
  background-color: #fff;
  width: min(90vw, 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: min(3vw, 15px);
}
.fixArea .news h5 {
  width: 20%;
  font-size: min(3.6vw, 18px);
}
.fixArea .news .newsWrap {
  width: 80%;
  line-height: 1.4;
}
.fixArea .news .newsWrap .date {
  font-size: min(3vw, 12px);
  font-weight: bold;
  margin-bottom: min(1vw, 8px);
}
.fixArea .news .newsWrap a {
  color: #000;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
    display: block;
}
.fixArea .news .newsWrap a::after {
  content: "Official Site";
  display: block;
  text-align: right;
  font-size: min(2.8vw, 10px);
  margin-top: min(2vw, 10px);
  width: fit-content;
  padding-left: 1em;
  margin-left: auto;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.fixArea .news .newsWrap a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0.4em;
  left: 0;
  background-color: #000;
  position: absolute;
  z-index: 0;
}


.fixArea .fixBtn {
  display: flex;
  width: 100%;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.fixArea .fixBtn li {
  width: 40%;
  border-left: #ddd solid 1px;
}
.fixArea .fixBtn li a {
  text-align: center;
  display: block;
  color: #000000;
  text-decoration: none;
  line-height: 1.4;
  padding: min(3vw, 15px) min(2vw, 10px);
  font-size: min(3.8vw, 20px);
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
.fixArea .fixBtn li.menuBtn {
  width: 20%;
}
.fixArea .fixBtn li.menuBtn a {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
}
.fixArea .fixBtn li.menuBtn a::before,
.fixArea .fixBtn li.menuBtn a::after {
  content: "";
  display: block;
  width: 54%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
}
.fixArea .fixBtn li.menuBtn a::before {
  transform: translate(-50%, -300%);
}
.fixArea .fixBtn li.menuBtn a::after {
  transform: translate(-50%, 250%);
}

.fixArea .fixBtn li.menuBtn a.on::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.fixArea .fixBtn li.menuBtn a.on::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#modalMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9996;
  display: none;
}
#modalMenu .modalMenuInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 24%;
}
#modalMenu .menuBlock {
  padding: min(3vw, 15px) min(8vw, 80px);
}
#modalMenu .menuBlock + .menuBlock {
  border-top: #000 solid 1px;
}

#modalMenu .pageMenu {
  font-size: min(4.4vw, 24px);
  line-height: 1.6;
  color: #000;
}
#modalMenu .pageMenu a {
  color: #000;
  text-decoration: none;
  font-feature-settings: "palt";
  font-size: min(4.2vw, 24px);
  line-height: 1.4;
  position: relative;
}
#modalMenu .pageMenu span {
  font-size: 0.7em;
}
#modalMenu .pageMenu.new a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffea00;
  position: absolute;
  bottom: 1em;
  right: -0.6em;
}
#modalMenu .menuBlock ul {
  margin-top: min(3vw, 15px);
}
#modalMenu .menuBlock ul li + li {
  margin-top: min(0.5vw, 5px);
}
#modalMenu .menuBlock ul li a {
  color: #000;
  text-decoration: none;
  font-size: min(3.8vw, 20px);
  font-feature-settings: "palt";

  display: flex;
  line-height: 1.6;
  align-items: baseline;
  gap: min(2vw, 10px);
}
#modalMenu .menuBlock ul li a span {
  background-color: #000;
  color: #fff;
  font-size: 0.76em;
  padding: min(0.5vw, 3px) min(2vw, 10px);
  white-space: nowrap;
}

#remasterBnr {
  position: absolute;
  top: min(2vw, 15px);
  right: min(2vw, 20px);
  z-index: 2;
  width: min(26vw, 150px);
}


@media screen and (min-width: 821px) {

	.sp { display: none;}

	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}

  #fixMenu {
    display: none;
  }
  .v2 #fixMenu {
    display: block;
    top: 0;
    bottom: auto;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  }

  #fixMenu ul li {
    width: 21%;
  }
	#fixMenu ul li.menuBtn {
    width: 16%;
  }
  #fixMenu ul li.menuBtn a::before,
  #fixMenu ul li.menuBtn a::after {
    width: 46%;
  }


  .fixArea {
    flex-direction: row;
    justify-content: flex-end;
    max-width: 980px;
    bottom: 3vh;
    right: min(4vw, 30px);
    left: inherit;
    transform: translateX(0%);
  }

  .fixArea .news {
    width: 55%;
    border-radius: 100px;
    padding: min(3vw, 15px) min(6vw, 30px);
  }
  .fixArea .news .newsWrap .date {
    position: relative;
  }
  .fixArea .news .newsWrap .date span {
    background-color: #fff;
    position: relative;
    padding-right: min(2vw, 10px);
    z-index: 1;
  }
  .fixArea .news .newsWrap .date::after {
    content: "Official Site";
    display: block;
    text-align: right;
    font-size: min(2.8vw, 10px);
    width: fit-content;
    padding-left: 1em;
    margin-left: auto;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .fixArea .news .newsWrap .date::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0.7em;
    left: 0;
    background-color: #000;
    position: absolute;
    z-index: 0;
  }

  .fixArea .news .newsWrap a::after,
  .fixArea .news .newsWrap a::before {
    display: none;
  }

  .fixArea .news .newsWrap a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .fixArea .fixBtn {
    width: 43%;
    background-color: transparent;
    justify-content: space-between;
    border-radius: 0;
    align-items: center;
    box-shadow: none;
  }
  .fixArea .fixBtn li {
    width: 48%;
    border: none;
  }
  .fixArea .fixBtn li a {
    background-color: #fff;
    border-radius: 8px;
    border-radius: 100px;
    font-size: min(3.2vw, 14px);
    padding: min(5vw, 28px) min(2vw, 10px);
  }
  .fixArea .fixBtn li.menuBtn {
    display: none;
  }

  #modalMenu .modalMenuInner {
    padding-bottom: 2%;
  }

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

	.pc { display: none;}

  .fixArea {
    display: none;
  }
}


#mainTitle {
  padding: min(30vw, 120px) 0 min(12vw, 80px);
  text-align: center;
}
.v2 #mainTitle {
  /* padding: min(34vw, 140px) 0 min(12vw, 80px); */
  padding: min(24vw, 80px) 0 min(12vw, 80px);
}
#mainTitle .logo {
  line-height: 0;
  width: 46%;
  max-width: 460px;
  margin: 0 auto min(7vw, 40px);
}
#mainTitle h1 {
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-size: min(6.2vw, 64px);
  font-feature-settings: "palt";
  margin-bottom: min(6vw, 30px);
}
#mainTitle h1 span {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
}

/* #mainTitle h1.titleLogo {
  width: min(88vw, 740px);
  line-height: 0;
  margin: 0 auto min(2vw, 15px);
}
#mainTitle .logoSas {
  line-height: 0;
  width: min(64vw, 500px);
  margin: 0 auto min(4vw, 20px);
}
#mainTitle .titleSub {
  width: min(24vw, 180px);
  margin: 0 auto min(5vw, 40px);
} */
#mainTitle h1.titleLogo {
  width: min(73vw, 68svh);
  line-height: 0;
  margin: 0 auto min(3vw, 15px);
}
#mainTitle .logoMark {
  width: min(16vw, 14svh);
    line-height: 0;
    margin: 0 auto min(8vw, 45px);
}

#mainTitle .catch {
  font-size: min(4vw, 28px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .v2 #mainTitle {
    padding: min(24vw, 140px) 0 min(12vw, 80px);
  }
}


.info {
  border: #fff solid 3px;
  padding: min(4vw, 20px) min(4vw, 30px);
}
.info a {
  color: #fff;
  text-decoration: underline;
  font-size: min(3.4vw, 16px);
}

section {
  padding: min(6vw, 60px);
  max-width: 980px;
  margin: 0 auto;
}
section h2 {
  font-size: min(4.8vw, 36px);
  font-weight: normal;
  letter-spacing: 0.14em;
  margin-bottom: min(4vw, 20px);
}

.scheduleList{
 width: 100%;
 background-color:#E7E7E7;
 top: 0  ;
 padding: min(4vw, 15px); /* ← 30px を少し狭くするなど */
}

#schedule h3 {
  font-size: min(4.2vw, 24px);
  margin-bottom: min(3vw, 15px);
  margin-top: -30px 
}

.scheduleList {
  border-bottom: #fff solid 2px;
  margin-bottom: min(7vw, 40px);
}
.scheduleList dt {
  cursor: pointer;
  position: relative;
  border-top: #fff solid 2px;
  padding: min(2vw, 10px) min(10vw, 20px) min(2vw, 10px) 0;
}
.scheduleList dt::before,
.scheduleList dt::after {
  content: "";
  display: block;
  background-color: #fff;
  width: min(6vw, 30px);
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
}
.scheduleList dt::after {
  transition: all 0.3s ease-out;
  transform: rotate(90deg);
}
.scheduleList dt.on::after {
  transform: rotate(0deg);
}
.scheduleList dt .date {
  font-size: min(3.4vw, 16px);
  line-height: 1.4;
  margin-bottom: min(3vw, 15px);
  position: relative;
    
 color:black;   
    
}
.scheduleList dt .date span {
  font-size: 1.6em;
    
  color:black;  
    
    
}
.scheduleList dt .date .end {
  background-color: #d22b52;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-family: Arial, Helvetica, "sans-serif";
  font-size: min(2.6vw, 15px);
  font-weight: bold;
  line-height: 1.2;
  padding: min(1vw, 5px) min(2vw, 15px);
  vertical-align: bottom;
/*  border: #d22b52 solid 4px;*/
  position: absolute;
  top: 40%; 
  transform: translateY(-20%) rotate(-6deg);
  margin-left: min(3vw, 20px);
  white-space: nowrap;
}



.scheduleList dt .venue {
  font-size: min(4.6vw, 28px);
  line-height: 1.5;
    
  color:black;  
    
}
.scheduleList dd {
  display: none;
  padding-top: min(2vw, 10px);
  padding-bottom: min(4vw, 20px);
}
.scheduleList dd a {
  color: ;
  text-decoration: underline;
   
   
}
.scheduleList dd p + p {
  margin-top: min(3vw, 15px);
}

.siteTop {
  margin-top: min(10vw, 80px);
  position: relative;
  background: url("../images/mv_pic.jpg") no-repeat center bottom;
  background-size: cover;
  padding: 62% 0 10%;
}
.siteTop .topBtn {
  width: min(60vw, 320px);
  margin: 0 auto;
}
.siteTop .topBtn a {
  display: block;
  background-color: #fff;
  text-align: center;
  color: #000;
  text-decoration: none;
  padding: min(3vw, 15px);
  font-size: min(3.6vw, 18px);
}

.scheduleList dt .date {
  white-space: nowrap;
}

@media screen and (min-width: 821px) {


  .scheduleList {
    display: flex;
    flex-wrap: wrap;
  }
  .scheduleList dt {
    width: 62%;
    padding: min(4vw, 20px) 0;
    pointer-events: none;
  }
  .scheduleList dt::before,
  .scheduleList dt::after {
    display: none;
      
  }
  .scheduleList dd {
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    width: 38%;
    border-top: #fff solid 2px;
    padding-top: min(4vw, 20px);
  }
  .scheduleList dd p {
    font-size: min(3vw, 14px);
    color:black;  
  }
  .scheduleList dd .open {
    font-size: min(3.4vw, 16px);
      
  }
   }  





@media screen and (max-width: 820px) {
  .scheduleList dt {
    position: relative;
    padding-right: min(10vw, 40px); 
  }

  .scheduleList dt .date .end {
    position: absolute;
    top: calc(50% + 28px); 
    right: -30px;
    transform: rotate(-6deg);
    font-size: 0.75em;
    font-weight: bold;
    padding: 4px 8px;
    background-color: #d22b52;
    color: #fff;
    white-space: nowrap;
    z-index: 10;
    text-align: center;
}   
}   
/* ＋マークの下に調整（必要に応じて増減） */  


    
    
  .siteTop {
    margin-top: min(10vw, 80px);
    position: relative;
    background: url("../images/mv_pic_pc.jpg") no-repeat center bottom;
    background-size: cover;
    padding: 62% 0 10%;
  }



.attention {
  border: #fff solid 4px;
  padding: min(4vw, 20px);
  margin-bottom: min(8vw, 60px);
}
.attention h3 {
  font-size: min(3.8vw, 20px);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: min(3vw, 15px);
}
.attention ul {
  list-style: disc;
  padding-left: min(4vw, 20px);
  margin-bottom: min(4vw, 20px);
}
.attention p + p {
  margin-top: min(3vw, 15px);
}
.attention a {
  color: #fff;
  text-decoration: underline;
}

.note {
  font-size: 0.84em;
}

.price {
  margin-bottom: min(8vw, 60px);
  text-align: center;
}
.price h3 {
  text-align: center;
  font-size: min(4.2vw, 24px);
  margin-bottom: min(4vw, 20px);
}
.price p {
  font-size: min(5.4vw, 28px);
  margin-bottom: min(3vw, 15px);
}
.price p span {
  font-size: 0.7em;
}
.price .note {
  font-size: 0.8em;
}

.boxWrap {
  margin-bottom: min(8vw, 60px);
}
.boxWrap h3 {
  border-top: #fff solid 1px;
  border-bottom: #fff solid 1px;
  padding: min(2vw, 10px) 0;
  margin-bottom: min(4vw, 20px);
}
.boxWrap h4 {
  font-size: min(3.4vw, 16px);
  font-weight: 600;
  line-height: 1.4;
  margin: min(6vw, 30px) 0 min(2vw, 10px);
}
.boxWrap p {
  margin-bottom: min(4vw, 20px);
}

.boxWrap a {
  color: #fff;
  text-decoration: underline;
}

.txtList {
  list-style: disc;
  padding-left: min(4vw, 20px);
  margin-bottom: min(4vw, 20px);
}

.eTicket {
  display: flex;
  flex-wrap: wrap;
  gap: min(4vw, 20px) 0;
  justify-content: space-between;
  margin-bottom: min(6vw, 30px);
}
.eTicket li {
  width: 48%;
  line-height: 0;
}

.resaleImg {
  margin-bottom: min(6vw, 30px);
}

.idCheck {
  border: #fff solid 4px;
  padding: min(2vw, 10px) min(4vw, 20px);
  margin-bottom: min(6vw, 30px);
}
.idCheck h4 {
  font-size: min(3.8vw, 20px);
  margin-top: min(3vw, 15px);
}


.fanclubLogo {
  width: 100%;
  margin-bottom: min(6vw, 30px);
  text-align: center;
}
.fanclubLogo img {
  margin-bottom: min(4vw, 20px);
}
.fanclubLogo p {
  color: #fff;
}
.fanclubWrap {
  border: #fff solid 1px;
  padding: min(6vw, 30px) min(6vw, 60px);
}
.fanclubWrap p {
  margin-bottom: min(4vw, 20px);
}

.comingsoon {
  border: #fff solid 1px;
  padding: min(10vw, 80px) min(6vw, 30px);
  text-align: center;
  font-size: min(3.8vw, 20px);
}

.lineMarker {
    background: linear-gradient(transparent 20%, #e457a2 20%);
    padding: 6px 0;
}

.btnLTike {
  width: fit-content;
  margin: min(12vw, 70px) auto min(4vw, 20px);
}
.btnLTike a {
  background: #1f5fa8;
  padding: min(5vw, 24px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: min(3.4vw, 16px);
  color: #fff;
  line-height: 1.7;
  text-align: center;
  text-decoration: none;

  flex-direction: column;
  gap: min(3vw, 15px);
}
.btnLTike a img {
  width: 40%;
}

.preRequest {
  text-align: center;
}

.btnNormal {
  width: fit-content;
  margin: min(12vw, 80px) auto min(4vw, 20px);
}
.btnNormal a {
  background: #fff;
  padding: min(5vw, 24px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: min(3.4vw, 16px);
  color: #000;
  line-height: 1.7;
  text-align: center;
  text-decoration: none;
}

.btnList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(2vw, 10px) 0;
  margin-bottom: min(8vw, 60px);
}
.btnList li {
  width: min(64vw, 320px);
}
.btnList li a {
  display: block;
  background-color: #fff;
  text-align: center;
  color: #000;
  text-decoration: none;
  padding: min(3vw, 15px);
  font-size: min(3.6vw, 18px);
}


#fanclub center {
  margin-top: min(4vw, 20px);
  font-feature-settings: "palt";
}

#fanclub .campaign {
  padding-bottom: min(8vw, 60px);
  margin-bottom: min(12vw, 60px);
  border-bottom: #fff solid 1px;
}
#fanclub .campaign > p {
  text-align: center;
  margin-bottom: min(7vw, 40px);
  font-size: min(3.6vw, 18px);

}
#fanclub .fanclubTtl {
  text-align: center;
  font-size: min(4.2vw, 26px);
  margin-bottom: min(6vw, 30px);
}
#fanclub p + .fanclubTtl {
  margin-top: min(6vw, 30px);
}

#fanclub .cpFlex {
  display: flex;
  justify-content: space-between;
}
#fanclub .cpFlex .txt {
  width: 54%;
}
#fanclub .cpFlex .img {
  width: 40%;
  line-height: 0;
}

.instaLink a {
  font-size: min(3.6vw, 18px);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0 0.8em;
  border: #fff solid 1px;
  padding: min(3vw, 15px) min(5vw, 25px);
  margin: 0 auto;
  width: fit-content;
  border-radius: 100px;
  line-height: 1.4;
}
.instaLink a .snsIcon {
  font-size: 1.6em;
  color: #fff;
}

@media screen and (min-width: 821px) {

  .eTicket li {
    width: 24%;
  }

  .btnList {
    flex-direction: row;
    justify-content: center;
    max-width: 780px;
    margin: 0 auto min(8vw, 60px);
    gap: min(2vw, 10px) 4%;
  }
  .btnList li {
    width: 48%;
  }

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


  #fanclub .cpFlex {
    flex-direction: column;
  }

  #fanclub .cpFlex .txt {
    width: 100%;
  }
  #fanclub .cpFlex .img {
    width: 100%;
  }

  .instaLink a .snsIcon {
    font-size: 2em;
  }

}



/* ////////////////////////////////////////////////////////////////////////////////

	Goods

//////////////////////////////////////////////////////////////////////////////// */
#goods .goodsImgWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: min(4vw, 32px) min(3vw, 24px);
	margin-bottom: min(5vw, 32px);
}
#goods .goodsImgWrap .goodsItem img {
  vertical-align: middle;
}
#goods .goodsImgWrap .goodsItem p {
  font-size: min(3.2vw, 16px);
  margin-top: 0.6em;
  margin-bottom: 0;
  line-height: 1.4;
}
#goods p {
	font-size: 18px;
	margin-bottom: 1em;
}
#goods p a {
	color: #fff;
}
#goods h4 {
	font-size: 20px;
	font-weight: normal;
}
#goods .btnWrap {
  display: flex;
  justify-content: center;
	margin: 40px 0;
}
#goods .btnWrap a {
  background: #fff;
  padding: min(5vw, 24px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: min(3.4vw, 16px);
  color: #000;
  line-height: 1.7;
  text-align: center;
  text-decoration: none;
}
#goods .btnWrap a span {
  font-size: min(5vw, 18px);
}


@media screen and (max-width: 820px) {
	#goods .goodsImgWrap {
    grid-template-columns: 1fr 1fr;
	}
	#goods p {
		font-size: min(4.2vw, 16px);
	}
	#goods h4 {
		font-size: min(4.6vw, 18px);
	}
	#goods .btnWrap {
		margin: min(6vw, 40px) 0;
	}
	#goods .btnWrap a {
		line-height: 1.4;
	}
}




/* ////////////////////////////////////////////////////////////////////////////////

	Footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
  font-family: "source-han-sans-japanese", sans-serif;
	background-color: #000;
	color: #fff;
	position: relative;
}
footer .ftrSns {
	display: flex;
	border-bottom: #333 solid 1px;
}
footer .ftrSns li {
	width: 20%;
}
footer .ftrSns li + li {
	border-left: #333 solid 1px;
}
footer .ftrSns li a {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 25px 30px;
	height: 100%;
}
footer .ftrSns li a i.snsIcon {
	color: #fff;
	font-size: 24px;
	margin-right: 20px;
}
footer .ftrSns li a span {
    width: 45px;
	line-height: 0;
	margin-right: 20px;
}

footer .ftrMain {
	padding: min(6vw, 60px) min(6vw, 60px) min(10vw, 100px);
}
footer .ftrMain .copyWrap {
	display: flex;
	align-items: center;
	width: 82%;
	max-width: 880px;
	margin: auto;
}
footer .ftrMain .copyWrap .logo {
	width: 140px;
	margin-right: 30px;
}
footer .ftrMain .copyWrap p {
	font-size: 12px;
	font-weight: 200;
}
footer .ftrMain .copyright {
	font-size: 10px;
	text-align: center;
	margin-top: 30px;
	font-weight: 200;
}


footer .ftrMain .ftrNav {
	width: 50%;
	display: flex;
}
footer .ftrMain .ftrNav ul {
	width: 50%;
	border-left: #333 solid 1px;
	padding: 0 6%;
}
footer .ftrMain .ftrNav li + li {
	margin-top: 8px;
}
footer .ftrMain .ftrNav a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}
footer .ftrMain .ftrSubNav {
	width: 25%;
	border-left: #333 solid 1px;
	padding: 0 3%;
}
footer .ftrMain .ftrSubNav li + li {
	margin-top: 8px;
}
footer .ftrMain .ftrSubNav a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

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

	footer .ftrSns {
		display: flex;
		flex-wrap: wrap;
	}
	footer .ftrSns li {
		width: 50%;
	}
	footer .ftrSns li:last-child {
		width: 100%;
	}
	footer .ftrSns li + li {
		border-left: none;
	}
	footer .ftrSns li:nth-child(even) {
		border-left: #333 solid 1px;
	}
	footer .ftrSns li:nth-child(n+3) {
		border-top: #333 solid 1px;
	}

	footer .ftrSns li a {
    	font-size: min(2.6vw, 12px);
		padding: min(4vw, 25px) min(5vw, 30px);
	}
	footer .ftrSns li a i.snsIcon {
		font-size: min(6vw, 24px);
		margin-right: min(3vw, 20px);
	}
	footer .ftrSns li a span {
		width: min(14vw, 45px);
		margin-right: min(4vw, 20px);
	}
	footer .ftrSns li:last-child a {
		justify-content: center;
	}

	footer .ftrMain {
	  padding: min(6vw, 60px) min(6vw, 60px) min(22vw, 100px);
	}
	footer .ftrMain .copyWrap {
		flex-direction: column;
	}
	footer .ftrMain .copyWrap .logo {
		width: 42%;
		max-width: 160px;
		margin: 0 auto min(8vw, 30px);
	}
	footer .ftrMain .copyWrap p {
		font-size: min(3vw, 12px);
	}
	footer .ftrMain .copyright {
		font-size: min(2.2vw, 10px);
		margin-top: min(8vw, 30px);
	}

}

.cookie {
    position: fixed;
    bottom: 8px;
    left: 17%;
    width: 66%;
    z-index: 9999;
}
.cookie > div {
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .3);
}
.cookie > div p {
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.6;
    text-align: left;
    flex: 1;
}
.cookie ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.cookie ul li [type="button"] {
    background-color: #000;
    padding: 10px;
    color: #fff;
    width: 100%;
    font-size: 12px;
}
.cookie ul li a {
    color: #000;
    text-decoration: underline;
    font-size: 12px;
    letter-spacing: 0;
}

@media screen and (max-width: 820px) {
    .cookie {
        left: 3%;
        width: 94%;
    }
    .cookie > div {
        padding: 12px;
        display: flex;
        flex-direction: column;
    }
    .cookie > div p {
        font-size: 11px;
    }
    .cookie ul {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
    .cookie ul li {
        width: 48%;
    }
    .cookie ul li [type="button"] {
        padding: 8px 16px;
        font-size: 10px;
    }
    .cookie ul li a {
        font-size: 10px;
    }
}

.liveViewing {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  border: #fff solid 3px;
  padding: min(4vw, 30px);
  text-align: center;
}

.liveViewing .liveViewingInfo {
  font-size: min(4.9vw, 26px);
  font-weight: bold;
}
.liveViewing .btnDetail {
  margin-top: min(4vw, 15px);
}
.liveViewing .btnDetail a {
  display: block;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: min(2.2vw, 12px) min(8vw, 80px);
  font-size: min(3.6vw, 16px);
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
}

a.playList {
  display: flex;
  align-items: center;
  gap: min(4vw, 32px);
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  border: #fff solid 3px;
  padding: min(4vw, 30px);
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.playList .playListImg {
  width: 24%;
}
.playList .playListImg img {
  vertical-align: middle;
}
.playList p {
  flex-grow: 1;
  font-size: min(4.2vw, 22px);
  font-weight: bold;
}

@media screen and (max-width: 820px) {
  a.playList {
    gap: min(2vw, 32px);
    padding: min(2vw, 30px);
  }
  .playList .playListImg {
    width: 30%;
  }
  .playList p {
    line-height: 1.5;
    font-size: min(3vw, 22px);
    width: 60%;
  }
}

