@charset "UTF-8";

*,
*::before,
*::after { box-sizing: border-box;
  margin: 0;
  padding: 0; }

html { font-size: 16px;
  -webkit-text-size-adjust: 100%; }

body {
  font-size: 1rem; 
  line-height: 1.6;
  margin: 0;
  font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic",-apple-system,BlinkMacSystemFont,"Helvetica Neue", Arial,sans-serif;
  background: black;
  color: white; }
  

ul, ol { list-style: none; }

img { max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a { color: inherit;
  text-decoration: none; }

.mt1 { margin-top: 1%; }
.mt2 { margin-top: 2%; }
.mt3 { margin-top: 3%; }
.mt4 { margin-top: 4%; }
.mt5 { margin-top: 5%; }

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

.pc { display: none;}

/*
h1 {
  font-size: clamp(2rem, 6vw, 3rem); }

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem); }

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem); }
*/

p,
li {
  font-size: 1rem; }

/* ===== ハンバーガーボタン ===== */
.hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 30px;
  background: none;
  border: none;
  z-index: 200;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  transition: 0.3s;
}

.menu-text {
  margin-top: 4px;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #fff;
}

.hamburger.open .menu-text {
  opacity: 0;
}

/* ===== メニュー本体 ===== */
.drawer {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  background: #111;
  z-index: 150;
  transition: left 0.3s ease;
  padding-top: 80px;
}

.drawer ul {
  list-style: none;
  padding: 0 20px;
}

.drawer li {
  margin-bottom: 20px;
}

.drawer a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

/* ===== 背景オーバーレイ ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 100;
}

/* ===== 開いた状態 ===== */
.drawer.open {
  left: 0;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===== ボタンアニメーション（×に変形） ===== */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hum_hr {
   width: 90%;
   border: 1px solid gray;
   margin-bottom: 5%; }

.slideshow {
  position: relative;
  width: 100%;
  height: 65vw;
  background: #000;
  overflow: hidden;
  margin-top: 5%;
}

.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← 重要 */
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slideshow img.active {
  opacity: 1;
}

.top_pad {
   height: 20vw; }

.site-title {
  width: 88%;
  margin-left: 6%;
  padding-top: 12%;
  background: url(img/logo.png) no-repeat center;
  background-size: contain;
  text-indent: -9999px; /* 視覚的に隠す */
}

.under_logo {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.6rem; }

.top_photo {
  width: 90%;
  margin-left: 5%;
  padding-top: 0%; }

.top-movie {
  text-align: center;
  padding-top: 13%;
}

.top-movie h2 {
  font-size: clamp(1rem, 1.6vw, 1.6rem);
}


.youtube-lite {
  position: relative;
  max-width: 90%;
  margin-left: 5%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.youtube-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.youtube-lite iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 3rem;
}

.pick_up {
  margin-top: 9%; 
  margin-bottom: 1%;
  text-align: center;
  letter-spacing: 0.4rem; }

.box {
  width: 90%;
  margin-left: 5%;
  border: solid 1px gray; 
  padding: 3%; }

.pick_left {
   width: 33%;
   display: inline-block;
   vertical-align: top; }

.pick_right {
   width: 60%;
   margin-left: 4.5%;
   display: inline-block;
   vertical-align: top; }

.pick_day {
   font-size: clamp(1.2rem, 4vw, 2.4rem); }

.pick_place {
   font-size: clamp(1.2rem, 3.6vw, 2.4rem);
   font-weight: bold; }
   
.pick_event {
   font-size: clamp(1rem, 3.2vw, 2.4rem); }

.pick_time {
   font-size: clamp(0.9rem, 1.4vw, 2rem);
   margin-top: 3%; }
   
.pick_yen {
   font-size: clamp(0.9rem, 1.4vw, 2rem); }

.pick_hr {
   margin-top: 3%;
   margin-bottom: 3%;
   border: solid 1px gray; }

.mb_menu_box {
  margin-top: 20%;}

.mb_menu_box p {
   font-weight: bold;
   text-align: center;
   font-size: 1rem;
   margin-bottom: 4%;
   letter-spacing: 0.4rem; }

.tri {
   font-size: 0.65rem;
   vertical-align: top;
   line-height: 2.5;
   margin-right: 1%; }
   
.tri2 {
   font-size: 0.55rem;
   vertical-align: top;
   line-height: 1;
   margin-right: 1.5%; }
   
.tri3 {
   font-size: 0.7rem;
   vertical-align: top;
   line-height: 2.6;
   margin-right: 1.5%; }
   
.tri4 {
   font-size: 0.6rem;
   vertical-align: top;
   line-height: 2.6;
   margin-right: 1.2%; }

.sns_box {
   width: 60%;
   margin-left: 31%;
   margin-top: 11%;
   display: inline-block;
}


.sns_icon_mb {
  display: inline-block;
   width: 15%;
   margin-right: 6.5%; 
}

.sns_icon_mb2 {
   width: 22%; }

.footer {
   margin-top: 15%; }

.footer p {
   text-align: center;
   color: gray; 
   padding-bottom: 4%; }

.pc_menu_footer {
   margin-bottom: 5%; }

/* -------------------- LIVE ページ -------------------------*/

.top_logo2 {
  width: 30%;
  margin-left: 3%;
  padding-top: 4%;
  margin-bottom: 0%;
}

.under_logo2 {
  font-weight: bold;
  text-align: left;
  margin-left: 3.3%;
  font-size: clamp(0.3rem,3.2vw,1.2rem);
  letter-spacing: 0.16rem; }
  
.content_box {
  width: 90%;
  margin-left: 5%;
  margin-top: 11%; }

.content_box h1 {
   font-size: clamp(1rem,4.4vw,2.5rem); 
   text-align: center;
   letter-spacing: 0.3rem;
   margin-bottom: 8%; }

.live_box {
  padding: 2% 4%;
  margin-bottom: 10%;
  border: solid white 1px; }

.live_box h3 {
   font-size: clamp(0.6rem,4.6vw,2rem); }

.live_event {
   margin-top: 2%; }

.live_band {
   margin-top: 4%; }

.live_left {
  width: 24.5%;
  display: inline-block;
  vertical-align: top; }
  
.live_right {
  width: 70%;
  margin-left: 3.8%;
  display: inline-block;
  font-size: clamp(0.6rem,1.6vw,1rem);
  vertical-align: top; }
  
.live_right p {
  font-size: clamp(0.8rem,2.2vw,1rem); }

.popup-img {
  cursor: pointer;
}

/* 背景 */
.img-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9999;
}

/* 表示状態 */
.img-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* 拡大画像 */
.img-popup img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* 閉じるボタン */
.img-popup .close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.live_hr {
   margin-top: 3.5%;
   margin-bottom: 3.5%; }

.mail-reserve {
  display: inline-block;
  padding: 1% 2%;
  background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 50%, #b5b5b5 100%);
  color: black;
  text-decoration: none;
  font-size: clamp(0.6rem,2.8vw,2rem);
  border-radius: 10px;
  font-weight: bold;
  margin-right: 1.5%;
}

.mail-reserve2 {
  display: inline-block;
  padding: 0.6% 2%;
  background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 50%, #b5b5b5 100%);
  color: black;
  text-decoration: none;
  font-size: clamp(0.6rem,2vw,2rem);
  border-radius: 8px;
  font-weight: bold;
  margin-right: 1.5%;
}

.mail_box {
  margin-top: 3%;
  margin-bottom: 2%; }

.live_etc {
   margin-top: 20%;
   padding-bottom: 0%; }

.live_etc p {
   font-size: clamp(0.5rem,3.2vw,1rem); 
   margin-bottom: 7%; }


/* -------------------- DISC ページ -------------------------*/


.disc_box {
  padding: 4% 4% 1% 4%;
  margin-bottom: 7%;
  border: solid white 1px; }
 
.disc_in_box{
   width: 100%; } 
 
.disc_jacket {
  width: 30%;
  display: inline-block;
  vertical-align: top; } 
  
.disc_jacket2 {
  width: 100%;
  margin-top: 15%; } 
  
.disc_jacket3 {
  width: 100%; } 
 
.disc_comment {
   width: 60%;
   margin-left: 3%;
   display: inline-block;
   vertical-align: top; } 
  
.album {
  margin-bottom: 0;
}

.album-head {
  display: flex;
  align-items: center;
  gap: 12px;
}



/* 詳細ボタン */
.accordion-btn {
  flex: 1;
  margin-top: 4%;
  font-size: clamp(0.6rem,3vw,2rem);
  color: white;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: 0.3vw;
}

.accordion-btn .icon {
  font-size: clamp(0.3rem,2.8vw,2rem);
  margin-right: 6px;
}

/* アコーディオン中身 */
.accordion-content {
  margin-left: 2%; /* ジャケット幅 + gap */
  margin-top: 2%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  padding: 0;
}

.accordion-content.open {
  max-height: 800px;
  opacity: 1;
}

/*
@media (max-width: 600px) {
  .album-head {
    flex-direction: column;
    align-items: stretch;
  }
*/

.accordion-content {
    margin-left: 0;
  }

.disc_name {
  font-size: clamp(0.4rem,4vw,2rem); }

.disc_jp {
   font-size: clamp(0.4rem,3.3vw,2rem);
   margin-top: 0%; }

.disc_pad {
   margin-top: 3.5%;
   font-size: clamp(0.6rem,3vw,2rem); }
   
.disc_day {
   margin-top: 3.5%;
   font-size: clamp(0.6rem,3vw,2rem); }
   
.disc_number {
   margin-top: 0.5%;
   font-size: clamp(0.6rem,3vw,2rem); }
   
.disc_number2 {
   margin-top: 5%;
   font-size: clamp(0.6rem,3vw,2rem); }
   
.disc_price {
   margin-top: 0.5%;
   font-size: clamp(0.6rem,3vw,2rem); }

.disc_list_end {
   margin-bottom: 3%; }

/* -------------------- PROFILE ページ -------------------------*/

.p_photo {
   width: 100%; }

.p_name {
   font-size: clamp(0.6rem,5vw,2rem); 
   text-align: center;
   margin-top: 3%; }
   
.p_name2 {
   font-size: clamp(0.6rem,4vw,2rem); 
   text-align: center;
   margin-top: 1%; }
   
.p_name3 {
   font-size: clamp(0.6rem,4.5vw,2rem); 
   text-align: center;
   margin-top: 8%;
   margin-bottom: 5%; }

.p_hr {
   border: 1px solid gray; 
   margin-top: 6%; }

.m_box {
   width: 100%;
   margin-left: 5%;
   display: inline-block;
   margin-bottom: 7%; }

.m_left {
   width: 20%;
   margin-left: 0%;
   vertical-align: top;
   display: inline-block; }
   
.m_right {
   width: 60%;
   margin-left: 5%;
   vertical-align: top;
   display: inline-block; }

.m_name {
   font-size: clamp(0.6rem,4vw,1.3rem); 
   margin-top: 0%; }
   
.m_name2 {
   font-size: clamp(0.6rem,3.2vw,1.3rem); 
   margin-top: 0%;
   font-weight: bold; }

.m_name3 {
   margin-top: 6%; }

/* -------------------- CONTACT PAGE ------------------- */

.contact_box {
   width: 90%;
   margin-left: 5%; 
   padding: 5%;
   border: solid 1px white; }

.contact_mail {
   text-align: center;
   font-weight: bold;
   font-size: clamp(0.5rem,4.6vw,1.5rem); 
   margin-top: 5%;}

.contact_bottom {
   width: 90%;
   margin-left: 5%;
   margin-top: 7%; }

}