@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');

/* ==============================================
   RESET & BASE
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
}
html {
  -webkit-text-size-adjust: none;
}
body {
  width: 100%;
  font-size: 1rem;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', sans-serif;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.05em;
  word-break: break-all;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}
ul, ol { list-style: none; }
p { margin: 0; padding: 0; line-height: 1.7; }
img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -webkit-touch-callout: none;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
	
}
a:hover { opacity: 0.7; }
table { border-collapse: collapse; }

/* ==============================================
   VARIABLES
   ============================================== */
:root {
  --pink: #f98074;
  --v_pink: #e15386;
  --red: #e94545;
  --yellow: #f8d03f;
  --black: #000;
  --white: #fff;
  --purple: #753da3;
  --blue: #1255a0;
  --green: #49d931;
  --gray: #ece5da;
  --orange: #f0722d;
}

/* ==============================================
   LAYOUT
   ============================================== */
.wrapper { overflow-x: hidden; }

.container {
  width: 100%;
  padding: 3.8rem 1rem 5rem;
}

section {
  padding: 0;
}

.inner {
  margin-top: 1.5rem;
}

.sec-ttl i {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}
html body .sec-ttl > i.fas,
html body .sec-ttl > i.far,
html body .sec-ttl > i.fab {
  color: var(--black) !important;
  -webkit-text-fill-color: var(--black) !important;
}


/* ==============================================
   HAMBURGER TRIGGER
   ============================================== */
.trigger {
  position: fixed;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: var(--yellow);
  z-index: 100;
  cursor: pointer;
	border-radius: 50px;
}
.menu-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 20px;
}
.menu-trigger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-trigger span:nth-child(1) { top: 0; }
.menu-trigger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-trigger span:nth-child(3) { bottom: 0; }

.menu-trigger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-trigger.active span:nth-child(2) { opacity: 0; }
.menu-trigger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ==============================================
   NAV
   ============================================== */
.smp-nav-list {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.97);
  z-index: 90;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: "adelle-sans", sans-serif;
font-weight: 900;
font-style: normal;
}
.smp-nav-list.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.smp-nav-list ul {
  width: 100%;
  text-align: center;
  padding: 4rem 0;
}
.smp-nav-list ul li a {
  display: block;
  font-size: 1.8rem;
  color: var(--white);
  padding: 0.6rem 1rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}



.smp-nav-list ul li a:hover {
  color: var(--yellow);
  opacity: 1;
}
/* ==============================================
   HEADER / MV
   ============================================== */
header {
  position: relative;
  width: 100%;
}
.mv {
  position: relative;
  width: 100%;
  background: #000;
}
.mv_container {
  position: relative;
  width: 100%;
  line-height: 0;
}
/* MV背景画像 : imgタグで全幅表示 */
.mv_container .main {
 width: 100%;
  line-height: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.mv_container .main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4); /* 透過率はお好みで */
	z-index: 1;
}

.mv_container .main img {
  width: auto;
  display: block;
  height: 250px;
}



/* ロゴ : 画像の上に重ねる */
.mv_container .logo {
  position: absolute;
  top: 43%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
  line-height: 0;
  text-align: center;
}
.mv_container .logo img {
  width: 66%;
  height: auto;
}
/* ==============================================
   SNS BAR
   ============================================== */
.sns-bar {
  margin: 0 auto 0;
  padding: 2rem 1rem 1.2rem;
  background: var(--gray);
}
.top-sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}
.top-sns li a {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 3rem;
  transition: color 0.2s;
}
.top-sns li a:hover {
  color: var(--yellow);
  opacity: 1;
}
.top-sns .xIcon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #000 url(../images/common/x_icon.png) center / 25px no-repeat;
  border: 2px solid var(--white);
  transition: background 0.2s;
  margin-bottom: 0;
}

/* ==============================================
   SECTION 共通
   ============================================== */
.container {
  padding: 4.6rem 2rem 7rem;
}
/* 初期状態：非表示 */
.fadeUpTrigger {
  opacity: 0;
  transform: translateY(60px) scale(1.05); /* 移動距離を大きく */
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* 発火後：表示 */
.fadeUpTrigger.fadeUp {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sec-ttl {
  font-family: "adelle-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--black);
  text-align: center;
  margin-bottom: 3rem;
  margin-top: .8rem;
}
/* アイコン付き見出し（共通装飾） */
.sec-ttl-wrap {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 0;
}
.sec-icon {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: var(--black);
}
/* セクション背景の交互切り替え */
#news,#about,#lineup,#ticket,#access,#goods {
  background: var(--gray);
}

.sec-ttl span {
  display: inline-block;
}

/* セクション背景 */
.back-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.back-img.is-visible {
  opacity: 1;
}
.back-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.parallax-spacer {
  height: 20vh;
  background: transparent;
  margin-bottom: -2px;
}
/* ==============================================
   NEWS
   ============================================== */
#news .container {
  background: var(--gray);
  margin: 0rem auto;
  padding: 3rem 2rem 9rem;
}
#news .inner {
  background: var(--white);
  border: 5px solid #000;
  border-radius: 20px;
}
.news_lists {
  /*  margin:20px 16px 30px;*/
  padding: 2rem;
}
.news_list {
  margin-bottom: 1rem;
}
.news_list {
  padding-bottom: 1.2rem;
  margin-bottom: 0.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 11px 6px;
}
.news_list:last-child {
  background-image: none;
  margin-bottom: 0;
}
.news-data {
  display: inline-block;
  padding: 3px 14px 0 0;
  font-family: "adelle-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--black);
}
.news-title {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 1.4rem;
}
.news-title-top {
  margin-top: 0;
}
.news-title a {
  text-decoration: underline;
  color: var(--black);
}
/* ==============================================
   ABOUT
   ============================================== */
#about .container {
  background: var(--gray);
	margin-bottom: 200px
}
#about a {
  text-decoration: underline;
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 5px solid var(--black);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1rem;
}
.about-img img {
  width: 100%;
  height: auto;
}
.about-img-logo {
  width: 40%;
  height: auto;
  margin: 0 auto;
  padding-top: 1rem;
}
.about-text {
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-info {
  padding-top: 2rem;
  margin-top: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 11px 6px;
}
dl.table {
  display: flex;
  flex-direction: column;
  margin-bottom: -2px;
}
dl.table dt {
  color: var(--black);
  padding: 1rem 1rem 0 0;
  font-size: 0.9rem;
  font-weight: bold;
}
dl.table dd {
  color: var(--black);
  padding: 0 1rem 1rem 0;
  font-size: 0.9rem;
}
/* ==============================================
   LINE UP
   ============================================== */
#lineup .container {
  background: var(--gray);
	margin-bottom: 200px
}
.lineup-lists {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  background: var(--white);
  border: 5px solid var(--black);
  border-radius: 20px;
  padding: 2rem;
}
.lineup-item {
  padding: 0 0 1rem;
  overflow: hidden;
}
.lineup-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.lineup-item:hover .lineup-img img {
  transform: scale(1.03);
}
.lineup-name {
  text-align: center;
  font-family: "adelle-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.4rem;
  padding: 0.75rem 0;
  background: var(--white);
  color: var(--black);
  letter-spacing: 0.05em;
}
.lineup-name img {
  height: 72px;
  width: auto;
}
.lineup-more {
  text-align: center;
  font-family: "adelle-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5rem;
  color: var(--pink);
  font-style: italic;
  margin-top: 2rem;
}
/* ==============================================
   TICKET
   ============================================== */
#ticket .container {
  background: var(--gray);
	margin-bottom: 200px
}
.ticket-box {
  background: var(--white);
  border: 5px solid var(--black);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}
.ticket-lead {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.ticket-lead span {
  font-size: 0.85rem;
}
.ticket-period {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.ticket-note {
  font-size: 0.8rem;
  margin-top: 0.75rem;
}
.btn {
  max-width: 320px;
  margin: 0 auto;
}
.btn a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  border: 3px solid var(--black);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn a:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}
/* ==============================================
   ACCESS
   ============================================== */
#access .container {
  background: var(--gray);
	margin-bottom: 200px
}
.access-box {
  background: #fff;
  border: 5px solid var(--black);
  border-radius: 20px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding: 2rem;
}
.access-note {
  font-size: .8rem;
}
.map-wrap {
	margin-top: 1.5rem;
  overflow: hidden;
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: none;
}
/* ==============================================
   GOODS
   ============================================== */
#goods {
  margin-top: -2px;
}
#goods .container {
  background: var(--gray);
  margin-bottom: 200px;
}
.goods-coming {
  text-align: center;
  font-family: "adelle-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.2rem;
  color: var(--black);
  padding: 0 0 2rem;
  letter-spacing: 0.05em;
}
/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: var(--yellow);
  border-top: 20px solid var(--black);
}
.footer_container {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--white);
}
.footer_container .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.footer_container .sns li a {
  color: var(--white);
  transition: color 0.2s;
}
.footer_container .sns li a:hover {
  color: var(--yellow);
  opacity: 1;
}
#footer .xIcon {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  background: var(--black) url(../images/common/x_icon.png) center / 25px no-repeat;
  margin-top: 4px;
}
.footer_container .sns {
  font-size: 3rem;
}
.copyright {
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0.85;
  color: #000;
}

/* ==============================================
   UTILITIES
   ============================================== */
.ta_c { text-align: center; }
.ta_l { text-align: left; }
.ta_r { text-align: right; }
.bold { font-weight: bold; }
.red  { color: red; }
.mt0  { margin-top: 0; }     .mt5  { margin-top: 5px; }
.mt10 { margin-top: 10px; }  .mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }  .mt25 { margin-top: 25px; }
.mt30 { margin-top: 30px; }  .mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }  .mt60 { margin-top: 60px; }
.mb0  { margin-bottom: 0; }  .mb5  { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }.mb25 { margin-bottom: 25px; }
.mb30 { margin-bottom: 30px; }.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }.mb60 { margin-bottom: 60px; }
.pt5  { padding-top: 5px; }  .pt10 { padding-top: 10px; }
.pt15 { padding-top: 15px; } .pt20 { padding-top: 20px; }
.pt30 { padding-top: 30px; } .pt40 { padding-top: 40px; }
.pt50 { padding-top: 50px; } .pt60 { padding-top: 60px; }
.pb5  { padding-bottom: 5px; }.pb10 { padding-bottom: 10px; }
.pb15 { padding-bottom: 15px; }.pb20 { padding-bottom: 20px; }
.pb30 { padding-bottom: 30px; }.pb40 { padding-bottom: 40px; }
.pb50 { padding-bottom: 50px; }.pb60 { padding-bottom: 60px; }
.fs_bl { font-size: 140%; }
.fs_l  { font-size: 115% !important; }
.fs_m  { font-size: 92%  !important; }
.fs_s  { font-size: 50%  !important; }
.br_sp { display: block; }
.br_pc { display: none; }

/* ==============================================
   PC : min-width 769px
   ============================================== */
@media screen and (min-width: 769px) {
  body {
    font-size: 1.25rem;
  }
  .br_sp {
    display: none;
  }
  .br_pc {
    display: block;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5.2rem 2rem 11rem;
  }
  .mv_container .main img {
    width: 100%;
    display: block;
    height: auto;
  }
  /* nav */
  .smp-nav-list {
    width: 28%;
  }
  .smp-nav-list ul li a {
    font-size: 1.5rem;
    text-align: left;
    padding-left: 3rem;
  }
  /* MV logo */
  .mv_container .logo {
    width: 71%;
    top: 45%;
    left: 51%;
  }
  /* SNS */
  .top-sns li a {
    font-size: 3.4rem;
  }
  .top-sns .xIcon {
    width: 53px;
    height: 53px;
    margin-bottom: 4px;
    border-radius: 13px;
    background: #000 url(../images/common/x_icon.png) center / 30px no-repeat;
  }
  /* 見出し */
  .sec-ttl {
    font-size: 4.6rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
  .sec-ttl i {
    font-size: 3rem;
  }
  .news_lists {
    
    
    padding: 3rem;
  }
  #news .container {
    padding: 4rem 2rem 11rem;
  }
	#news .news-title {
    font-size: 1.3rem;
  }
	#news .news-data {
    font-size: 1.6rem;
  }
	
	
  /* ABOUT */
  .about-grid {
    flex-direction: column;
    align-items: center;
    padding: 3rem;
  }
  .about-img {
    width: 80%;
    flex-shrink: 0;
  }
  .about-img-logo {
    width: 30%;
    flex-shrink: 0;
  }
  .about-text {
    flex: 1;
    font-size: 1.3rem;
    padding: 0 .75rem;
  }
  dl.table {
    flex-direction: row;
    border: none;
    margin-bottom: 0;
  }
  dl.table dt {
    width: 200px;
    flex-shrink: 0;
    padding: 0.75rem 0;
    font-size: 1.3rem;
  }
  dl.table dd {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1.3rem;
  }
  .about-info {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  /* LINEUP */
  .lineup-lists {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
	  padding: 3rem;
  }
  .lineup-item {
    width: calc(32% - 0.75rem);
    padding: 2rem 0 1rem;
  }
  .lineup-more {
    font-size: 2rem;
  }
  .lineup-name img {
    height: 60px;
    width: auto;
  }
  /* TICKET */
  .ticket-box {
    padding: 3rem;
  }
  .ticket-lead {
    font-size: 1.6rem;
  }
	.ticket-lead span {
		font-size: 1rem;
	}
	
  .ticket-period {
    font-size: 1.3rem;
  }
	.ticket-note {
		font-size: 1rem;
	}
	
	
  .btn {
    max-width: 360px;
  }
  .btn a {
    font-size: 1.1rem;
    padding: 1rem;
  }
  /* ACCESS */
  .map-wrap iframe {
    height: 360px;
  }
  .access-box {
    padding: 3rem;
	  font-size: 1.3rem;
  }
	
	.access-note {
		font-size: 1rem;
	}
	
  /* GOODS */
  .goods-coming {
    font-size: 2rem;
    padding: 3rem 0;
  }
  /* FOOTER */
  .footer_container .sns {
    font-size: 3rem;
  }
  .copyright {
    font-size: 0.8rem;
  }
}
