@charset "UTF-8";

/* fadeアニメーション共通 */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* bodyロード時用 */
body.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

body.fade.show {
  opacity: 1;
  transform: translateY(0);
}



body{
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff9d7;
    transition: filter 0.3s ease;
    background: none; /* ←ここ消すの大事 */
    font-family: "Zen Kaku Gothic New", sans-serif;
    
    
}
body.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

body.fade.show {
  opacity: 1;
  transform: translateY(0);
}



/* 背景レイヤー */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:  #fff9d7 center/cover no-repeat;
  z-index: -1;

  filter: blur(var(--blur, 0px));
  transform: scale(1.1); /* ←これないと端が見える */
  transition: filter 0.2s ease;
}

.TOP {
  position: fixed;
  inset: 0;
  z-index: -1;
  filter: blur(var(--blur, 0px));
}





footer{
    color: rgb(0, 0, 0);
    text-align: center;
}

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

ul {
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  color: rgb(0, 0, 0);
  line-height: 50px;
}

.name img{
    display: block;
    max-width: 35%;
    margin: auto ;
    margin-top: 50px;
}

.teamename{
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 30px;
}

.moji{
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 20px;
    line-height: 50px;
}
.title{
    color: #F88C1F;
    font-size: 35px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 70px;
    font-family: "Titan One", sans-serif !important;
}

.LIVE{
    margin-top: 550px;
}

.LIVE img{
    display: block;
    max-width: 35%;
    margin: auto;
    margin-top: 120px;
}

.live-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.osaka{
    width: 80%;
    background-color: #ffffff;
    text-align: center;
    margin: auto;
    padding: 30px 0;
}

.osaka02 {
    margin: auto 0;
    padding-left: 25px;
  text-align: left;
}

.osaka p{
    font-size: 24px;
}

.narabi {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  
}

.narabi02{
text-align: left;
} 

.kaijou p,.time p {
  margin: 0;
  padding-top: 5px;
}

.day p{
    padding: 0;
}

.day1{
    display: inline-block;
    font-size: 16px;
    margin-bottom: 10px;
}

.kaijou{
    margin-bottom: 10px;
}

.time{
    margin-bottom: 10px;
}


.haishin{
    margin-bottom: 10px;
}



.tokyo02{
     color: #000000;
    
}



.ticket{
    color: rgb(0, 0, 0);
}

.waku{
    background-color: #fff;
}



.tokuten p{
    text-align: left;
    margin: auto;
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 550px;
    
}

.comingsoon{
    font-size: 30px;
    text-align: center;
    color: aliceblue;
    margin-bottom: 30px;
}


.attention{
    background-color: #ffffff;
}



.at{
    padding-bottom: 30px;
}


/* .attention ul{
    list-style-position: inside;
    padding: 0;
    
}

.attention ul li{
    font-size: 12px;
    color: aliceblue;
    line-height: 25px;
    width: 90%;
    text-align: center;
    
} */


.goods img{
    display: block;
    max-width: 25%;
    margin: auto;
}




/* =========================
アコーディオン
========================= */

.details {
  border-top: 2px solid #efefef;
  border-left: 2px solid #efefef;
  border-right: 2px solid #efefef;
  background: #fff;
}

.details:last-of-type {
  border-bottom: 2px solid #efefef;
}

/* タイトル部分 */

.details-summary {
  position: relative;
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: #f88c1f90;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.details-summary:hover {
  opacity: 0.8;
}

/* ＋ボタン */

.btn {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

/* 横棒 */

.btn::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;

  width: 18px;
  height: 4px;

  background: #fff;
  border-radius: 10px;
}

/* 縦棒 */

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;

  width: 4px;
  height: 18px;

  background: #fff;
  border-radius: 10px;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* 開いたら－になる */

.details.is-open .btn::before {
  opacity: 0;
  transform: scaleY(0);
}

/* 中身 */

.details-content {
  max-height: 0;
  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    padding 0.4s ease;

  padding: 0 20px;

  background: #fff;
}

/* 開いた時 */

.details.is-open .details-content {
  opacity: 1;
  padding: 20px;
}

/* テキスト */

.details-content p {
  margin: 0 0 20px;
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}

.details-content p:last-of-type {
  margin-bottom: 0;
}

/* 2~発売のとこ */
.tick02 .details-summary{
    margin-top: 20px;
    background-color: #C3BAAA;
    text-align: left;
    padding-left: 200px;
}

.attention{
    background-color: #ffffff;
    margin-top: 50px;
}


/* チケットボタン＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* youtube先行 */
.btn_yu{
    margin-top: 40px;
    display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #c86422;
  border: 1px solid #c86422;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 45px;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
/* 一般大阪 */
a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #c86422;
  border: 1px solid #c86422;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 45px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_03:before
.btn_yu:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #c86422;
  border-right: 2px solid #c86422;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn_03:hover
.btn_yu:hover
 {
  background: #fff;
  color: #c86422;
}
a.btn_03:hover:before
.btn_yu::hover:before{
  border-top: 2px solid #c86422;
  border-right: 2px solid #c86422;
}


/* 一般東京 */

a.btn_04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #d1c51b;
  border: 1px solid #d1c51b;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 45px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-top: 40px;
}
a.btn_04:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #d1c51b;
  border-right: 2px solid #d1c51b;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn_04:hover {
  background: #fff;
  color: #d1c51b;
}
a.btn_04:hover:before {
  border-top: 2px solid #d1c51b;
  border-right: 2px solid #d1c51b;
}







/*  */
@media screen and (min-width:768px) {

.narabi {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 150px;
  margin-left: 250px;
  
}

.day1{
    font-size: 30px;
    margin-top: 15px;
}

.tokuten{
    font-size: 30px;
}

.title{
    color: #F88C1F;
    font-size: 55px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 80px;
    font-family: "Titan One", sans-serif !important;
}


.attention{

    margin-top: 180px;
}

.goods{
margin-top: 50px;
}


}






/* --------------------------
/* --------------------------
/* --------------------------
スマホここからーーーーーーーーーーーーーーーーー */

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

    
body{
    width: 100%;
    margin: 0;
    padding: 0;
    /* background: #fff9d7; */
}

footer{
    color: rgb(0, 0, 0);
    text-align: center;
}

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

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

.name img{
    display: block;
    max-width: 50%;
    margin: auto ;
    margin-top: 50px;
}

/* .intro{
    background-color:#fff;
  background-image:linear-gradient(135deg, transparent 0%, #fff 25%, #fff 75%, transparent 100%), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAIklEQVQoU2N89+7dfwYsQEhIiBEkzDgkFGDzAbIY2Cv4AACvrBgJjYNGfwAAAABJRU5ErkJggg==);
} */

.teamename{
    text-align: center;
    color: #797979;
    font-size: 24px;
}

.moji{
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 14px;
    line-height: 30px;
}

.LIVE img{
    display: block;
    max-width: 50%;
    margin: auto;
    margin-top: 50px;
}
.live-wrap {
    flex-direction: column; /* 縦に積む */
    gap: 30px;             /* 間隔を少し小さく */
    align-items: center;   /* 中央揃え */
   
  }
  .osaka p{
    font-size: 14px;
}


.osaka{
    width: 80%;
    background-color: #ffffff;
    text-align: center;
    margin: auto;
    padding: 30px 0;
}
/* 
.osaka02{
    display:block;
    color: #000000;
    padding: 5px;
    width: 40%;
    margin: auto;
    padding-top: 10px;
    
} */

.narabi {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}


.narabi02{
text-align: left;
} 

.kaijou p,.time p {
  margin: 0;
  padding-top: 5px;
}

.day p{
    padding: 0;
}

.day1{
    display: inline-block;
    font-size: 16px;
    margin-bottom: 10px;
}

.kaijou{
    margin-bottom: 10px;
}

.time{
    margin-bottom: 10px;
}


.haishin{
    margin-bottom: 10px;
}

.tokyo{
    margin-top: 30px;
}

.tokyo02{
     color: #000000;
   
}



.ticket{
    color: rgb(0, 0, 0);
}


.tokuten p{
    text-align: left;
    max-width: 300px;
    margin: auto;
    font-size: 12px;
    margin-bottom: 10px;
    
}

.moji02{
    font-size: 14px;
}



.attention{
    background-color: #ffffff;
    margin-top: 50px;
}

.attention img{
    display: block;
    max-width: 50%;
    margin: auto;
}

.at{
    padding-bottom: 30px;
}

.attention ul li{
    font-size: 12px;
    color: rgb(0, 0, 0);
    line-height: 25px;
    width: 90%;
    
}


.goods{
margin-top: 50px;
}

.goods-coming{
    font-size: 30px;
    text-align: center;
    color: rgb(0, 0, 0);
    
    
}


/* =========================
アコーディオン
========================= */

.details {
  border-top: 2px solid #efefef;
  border-left: 2px solid #efefef;
  border-right: 2px solid #efefef;
  background: #fff;
}

.details:last-of-type {
  border-bottom: 2px solid #efefef;
}

/* タイトル部分 */

.details-summary {
  position: relative;
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #f88c1f90;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.details-summary:hover {
  opacity: 0.8;
}

/* ＋ボタン */

.btn {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

/* 横棒 */

.btn::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;

  width: 18px;
  height: 4px;

  background: #fff;
  border-radius: 10px;
}

/* 縦棒 */

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;

  width: 4px;
  height: 18px;

  background: #fff;
  border-radius: 10px;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* 開いたら－になる */

.details.is-open .btn::before {
  opacity: 0;
  transform: scaleY(0);
}

/* 中身 */

.details-content {
  max-height: 0;
  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    padding 0.4s ease;

  padding: 0 20px;

  background: #fff;
}

/* 開いた時 */

.details.is-open .details-content {
  opacity: 1;
  padding: 20px;
}

/* テキスト */

.details-content p {
  margin: 0 0 20px;
  color: #000;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.details-content p:last-of-type {
  margin-bottom: 0;
}

/* 2~発売のとこ */
.tick02 .details-summary{
    margin-top: 20px;
    background-color: #C3BAAA;
    text-align: left;
    padding-left: 60px;
}


/* 一般チケットぼたん　大阪・東京 */

a.btn_03 a.btn_04 {
padding: 0 45px 0 45px;
}

a.btn_yu{
    font-size: 12px;
}




}