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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "fieldwork", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #76161b;
  clip-path: polygon(-50% 150%, 150% -50%, 150% -50%, -50% 150%);
  transition: clip-path 0.8s ease-out;
  z-index: -2;
  pointer-events: none;
}

body.scrolled::before,
body:has(.detail-container)::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/red_bk.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

li {
  list-style-type: none;
}

.bold {
  font-weight: 600;
}

.red {
  color: #b60912;
}

.yw {
  color: #FFC800 !important;
}

.small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  color: rgba(255, 255, 255, 0.6);
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5vw 2.5vw;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.hamburger {
  width: 3.5vw;
  height: 3.5vw;
  min-width: 45px;
  min-height: 45px;
  max-width: 50px;
  max-height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4vw;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.hamburger:hover {
  background: rgba(182, 9, 18, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
}

.hamburger span {
  display: block;
  width: 1.7vw;
  min-width: 20px;
  max-width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  text-align: center;
}

.nav-menu ul li {
  margin: 2vw 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
}

.nav-menu.active ul li {
  opacity: 1;
  transform: translateX(0);
}

.nav-menu.active ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-menu.active ul li:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-menu.active ul li:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-menu.active ul li:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  display: block;
  padding: 0.7vw 1.5vw;
}

.nav-menu ul li a:hover {
  color: #b60912;
  transform: scale(1.1);
}

/* フッター */
footer {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 5vw 0 1vw;
  font-size: clamp(0.75rem, 0.85vw, 0.85rem);
  line-height: 1.8;
  font-weight: 400;
}

footer .copyright {
  margin-top: 0.8vw;
  font-size: clamp(0.7rem, 0.75vw, 0.75rem);
}

section {
  max-width: 85vw;
  margin: 0 auto;
  padding: 0 2vw;
}

.stage {
  position: relative;
  width: 100%;
  height: calc(100dvh - 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.circles-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 62vw;
  max-height: 62vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw;
  font-size: 7vw;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0;
  border: 4px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

.circle-osaka {
  left: -55vw;
  animation:
    fadeIn 0.8s ease-out 0.5s forwards,
    moveLeft 2s ease-out 1.5s forwards,
    fadeOut 1s ease-out 4.5s forwards;
}

.circle-tokyo {
  right: -55vw;
  animation:
    fadeIn 0.8s ease-out 0.5s forwards,
    moveRight 2s ease-out 1.5s forwards,
    fadeOut 1s ease-out 4.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes moveLeft {
  to {
    left: calc(-10vw + 60px);
  }
}

@keyframes moveRight {
  to {
    right: calc(-10vw + 60px);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.tour-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  /* animation: titleIn 1.5s ease-out 6s forwards;*/
  animation: titleIn 1.5s ease-out 0s forwards;
  transition: opacity 0.6s ease-out;
}

@keyframes titleIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.tour-title.fade-out {
  opacity: 0;
  transition: opacity 3s ease-out;
}

.tour-title.show {
  animation: none !important;
  opacity: 1 !important;
  transition: opacity 0.8s ease-in !important;
}

@keyframes titleOut {
  to {
    opacity: 0;
  }
}

h1 {
  display: block;
  width: 60vw;
  margin: auto;
  letter-spacing: 0.3em;
}

h1 span {
  display: block;
  margin-bottom: 3vw;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  text-align: center;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

h1 img {
  display: block;
  width: 80%;
  margin: auto;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 4vh;
  font-family: "fieldwork", sans-serif;
}

h4 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 6vw auto 3vw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}


#schedule {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.tour-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 120px);
  padding: 0;
  max-width: 95vw;
  margin: 0 auto;
  width: 96%;
  flex: 1;
  align-items: center;
}



.tour-item {
  padding: 4vw 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tour-item::before,
.tour-item::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s cubic-bezier(0.34, 1.35, 0.64, 1);
}

/* アニメーション後：上の線が上へ、下の線が下へ */
.tour-item.visible::before {
  top: 0;
  transform: translateY(0);
}

.tour-item.visible::after {
  top: 100%;
  transform: translateY(-100%);
}

/* 2つ目の公演の線は少し遅れる */
.tour-item:nth-child(2).visible::before,
.tour-item:nth-child(2).visible::after {
  transition-delay: 0.15s;
}

/* コンテンツ部分 */
.tour-content {
  opacity: 0;
  transition: opacity 0.8s ease 1s;
}

.tour-item.visible .tour-content {
  opacity: 1;
}

.tour-item:nth-child(2).visible .tour-content {
  transition-delay: 1.15s;
}

.tour-city {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.3em;
  font-weight: 800;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1.5vw;
}

.tour-date {
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  letter-spacing: 0.02em;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin: 1.2vw 0 3.5vw;
}

.tour-date .sat {
  color: #85b9dd;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
}

.tour-date .sun {
  color: #f03d34;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
}

.tour-venue-en {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5vw;
  font-family: "fieldwork", sans-serif;
  min-height: 9vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-item:nth-child(2) .tour-venue-en {
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  min-height: 9vw;
}

.tour-venue {
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 3vw;
  font-family: "Noto Sans JP", sans-serif;
  min-height: 1.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-time {
  font-size: clamp(1rem, 1.7vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5vw;
  font-family: "fieldwork", sans-serif;
  min-height: 5.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tour-contact {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6vw;
}

.tour-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.tour-contact a:hover {
  color: #fff;
}

.tour-contact span {
  display: block;
}

/*.tour-sold {
  background: #FFC800;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  color: #b60912;
  margin-top: 2vw;

}*/

.tour-sold {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: rgba(255, 200, 0, 0.78);
  color: #666;
  font-family: "fieldwork", sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  letter-spacing: 0.08em;
  padding: 0.45em 1.3em;
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-element.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fade-in-element.delay-1.visible {
  animation-delay: 0.15s;
}

.fade-in-element.delay-2.visible {
  animation-delay: 0.3s;
}

.fade-in-element.delay-3.visible {
  animation-delay: 0.45s;
}

.notes {
  font-size: clamp(0.75rem, 0.92vw, 0.88rem);
  line-height: 1.9;
}

.ticket-wrap {
  margin-bottom: 2vw;
}

.ticket-wrap .ticket-type {
  position: relative;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  padding: 0.6vw 0;
  margin: auto;
}

.ticket-seat {
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 600;
  text-align: center;
  line-height: 2;
  width: 55%;
  margin: 0;
  white-space: nowrap;
}

.ticket-price {
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
  width: max-content;
  flex-shrink: 0;
  text-align: left;
  margin-right: 2vw;
  white-space: nowrap;
}

.ticket-price .tax {
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  padding-left: 1vw;
}

/*.ticket-price {
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
}

.ticket-price .tax {
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  padding-left: 1vw;
}*/



.ticket-seat li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1vw 0;
  line-height: 1.6;
}

.ticket-seat li:last-of-type {
  border: none;
}

.ticket-wrap .ticket-type.sold-out::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(80, 8, 11, 0.6);
  z-index: 10;
}

.ticket-wrap .ticket-type.sold-out::after {
  content: '予定枚数終了';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  color: #fff;
  background-color: rgba(30, 2, 3, 0.95);
  padding: 0.5rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-family: "fieldwork", sans-serif;
  z-index: 11;
  white-space: nowrap;
}

.ticket-type .note {
  width: 80%;
  padding-top: 1.2vw;
  font-size: 0.755rem;
  line-height: 1.65;
  opacity: 0.8;
}

.ticket-wrap .ticket-type:last-child {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}



.ticket-seat {
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 600;
  text-align: center;
  margin: 0 13vw 0 4vw;
  width: 45%;
  line-height: 2;
}



ul.list {
  margin-bottom: 2vw;
}

.list li {
  line-height: 1.7;
  position: relative;
  padding-left: 0.5em;
  margin: .2vw 0;
}

.list li::before {
  content: "・";
  position: absolute;
  left: -0.5em;
  top: 0;
}

#ticket {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  width: 70%;
}

.specialseat {
  /*border-top: 2px solid rgba(255, 255, 255, 0.3);*/
  /*border-bottom: 2px solid rgba(255, 255, 255, 0.3);*/
  /*background-color: rgba(255, 255, 255, 0.1);*/
  padding: 1.5vw 1.5vw;
  width: 95%;
  margin: 4vw auto 0;
  color: rgba(255, 255, 255, 0.9);
}


.specialseat .head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  margin: 2vw auto 1.5vw;
  font-size: 2.2rem;
  font-weight: 600;
}


.specialseat p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.ticket-list {
  background-color: rgba(255, 255, 255, 0.88);
  color: #000;
  padding: 2.5vw 3vw;
  margin: 3vw auto;
  clip-path: polygon(40px 0,
      100% 0,
      100% calc(100% - 40px),
      calc(100% - 40px) 100%,
      0 100%,
      0 40px);
}

.ticket-list a {
  color: #000
}

.ticket-list .title {
  font-size: clamp(1.3rem, 1.55vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 1vw;
  text-align: center;
}

.ticket-list .title span {
  font-size: 0.9rem !important;
}



.ticket-list .period {
  margin: 2vw 0;
}

.ticket-list .period li {
  border-top: 0.8px solid #000;
  padding: 1vw 0;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.ticket-list .period li span {
  font-size: clamp(0.95rem, 1.02vw, 0.98rem);
  padding: 0 0.3vw;
}

.ticket-list .period li:last-of-type {
  border-bottom: 0.5px solid #000;
}

.ticket-list .period div {
  display: inline-block;
  margin: 0 2vw 0 2.2vw;
  padding-right: 3vw;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: clamp(1rem, 0.94vw, 0.9rem);
  border-right: 0.5px solid #000;
}

.ticket-list .heading {
  border-left: 3px solid #000;
  padding-left: 10px;
  font-weight: 600;
  margin: 2vw 0 0;
}

.ticket-list p {
  margin: 1vw 0.9vw 0;
  font-size: clamp(0.9rem, 0.94vw, 1rem);
  line-height: 1.5;
}

.ticket-list .fc {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
}


.special-seat {
  margin: 0 0 1rem;
}

.special-seat p {
  margin: 1vw 0.9vw 0;
  font-size: 0.99rem !important;
  line-height: 1.65;
  color: #000;
}

.special-seat img {
  display: block;
  margin: 1rem auto;
  width: 96.5%;

}

.seatmap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
}

.seatmap li {
  text-align: center;
  font-family: "fieldwork", sans-serif;
  font-size: 1.8rem;
}

.seatmap-note {
  font-size: 0.82rem !important;
  margin: 0.3rem 0 2rem;
}

.seatmap li img {
  margin: 0.5rem 0;
}

.special-seat-detail p {
  margin: 1vw 0.9vw 0;
  font-size: 0.89rem !important;
  line-height: 1.8;
  color: #000;
}


.ticket-list .note {
  margin: 1vw 0 0;
  color: #76161b;
  font-size: clamp(0.9rem, 0.84vw, 1rem);
  font-weight: 600;
}

.ticket-list .notice {
  display: inline-block;
  font-size: clamp(0.85rem, 0.84vw, 0.95rem);
  color: rgba(0, 0, 0, 0.7);
}

.ticket-list .notice2 {
  display: inline-block;
  font-size: clamp(0.83rem, 0.82vw, 0.93rem);
  color: rgba(0, 0, 0, 0.6);
  margin: 0.7rem 0.3rem 0;
}

.ticket-more-wrap {
  text-align: center;
  margin: 2.5vw 0 0;
}

.ticket-more-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "fieldwork", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  padding: 0.9vw 4vw;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ticket-more-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.ticket-more-btn.hidden {
  display: none;
}

.accordion-header {
  cursor: pointer;
  padding: 1.5vw 3vw;
  background-color: #FFC800;
  color: #000;
  margin: 3vw auto 0;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.45vw, 1.4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  user-select: none;
}

.accordion-header::after {
  content: '+';
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  content: '−';
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #FFF4DB;
  color: #000;
}

.accordion-content.active {
  max-height: 3000px;
  transition: max-height 0.6s ease-in;
}

.accordion-content-inner {
  padding: 2vw 3vw 0;
}

.detail-toggle-btn {
  cursor: pointer;
  padding: 0.5vw 1.8vw 0.7vw;
  background-color: #76161b;
  color: #fff;
  margin: 0 auto 0;
  font-weight: 500;
  font-size: clamp(0.9rem, 0.94vw, 0.95rem);
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
  user-select: none;
  border-radius: 5px;
}

.detail-toggle-btn:hover {
  background-color: #8a0610;
}

.detail-toggle-btn::after {
  content: ' ▼';
  font-size: clamp(0.7rem, 0.84vw, 0.8rem);
  margin-left: 0.5em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.detail-toggle-btn.active::after {
  transform: rotate(180deg);
}

.detail-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-top: 0.5vw;
}

.detail-content.active {
  max-height: 3000px;
  transition: max-height 0.6s ease-in;
}

#news {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  padding: 8vw 0;
  width: 70%;
}

.news-list {
  width: 100%;
  margin: 0 auto;
}

.news-list .small {
  font-size: clamp(0.75rem, 0.92vw, 0.88rem);
  line-height: 1.8;
  display: block;
  margin-bottom: 1.5rem;
}

.news-item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.news-item:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.news-item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.news-item.news-hidden {
  display: none;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 1.2vw;
  padding: 1.8vw 2.5vw 1.8vw 0.5vw;
  cursor: pointer;
  transition: opacity 0.2s ease;
  user-select: none;
}

.news-header:hover {
  opacity: 0.75;
}

.news-date {
  font-family: "fieldwork", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  letter-spacing: 0.05em;
  min-width: 6.5em;
}

.news-badge-new {
  display: inline-block;
  background: #b60912;
  color: #fff;
  font-family: "fieldwork", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px 3px;
  line-height: 1;
  white-space: nowrap;
}

.news-title-text {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.news-arrow {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.35s cubic-bezier(0.34, 1.35, 0.64, 1);
  flex-shrink: 0;
}

.news-item.open .news-arrow {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.8);
}

.news-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-out;
}

.news-item.open .news-body {
  max-height: 1200px;
  transition: max-height 0.6s ease-in;
}

.news-body-inner {
  padding: 0 2.5vw 1.8vw 0;
  margin-left: calc(6.5em + 1.2vw);
  padding-left: 1.5vw;
}

.news-body-inner p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
}

.news-body-inner .note {
  font-size: 0.95rem;
  line-height: 1.5;
}

.news-body-inner p:last-child {
  margin-bottom: 0;
}

.news-body-inner a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.news-body-inner a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

.news-body-inner .news-goods img {
  display: block;
  width: 50%;
  margin-bottom: 1rem;
}

.news-body-inner .detail-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "fieldwork", sans-serif;
  width: 18%;
  margin: 1rem 0 0;
  font-size: 0.95rem;
  padding: 0.6vw 0.9vw;
  text-align: center;
  border-radius: 5px;
}

.news-body-inner .detail-btn a {
  text-decoration: none;
}

.news-more-wrap {
  text-align: center;
  margin: 2.5vw 0 0;
}

.news-more-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "fieldwork", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  padding: 0.9vw 4vw;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-more-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.news-more-btn.hidden {
  display: none;
}

.news-tokuten {
  display: block;
  width: 60%;
  margin: 0 0 2vw;
}



/* ========================================
   layerBoard.css
   YouTube モーダル用スタイル
   ======================================== */

/* モーダル表示制御 */
#layer_board_area {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

#layer_board_area.is-open {
  display: flex;
}

/* 背景オーバーレイ */
.layer_board_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

/* モーダル本体 */
.layer_board {
  position: relative;
  z-index: 9999;
  width: min(860px, 92vw);
}

/* 16:9 レスポンシブ iframe ラッパー */
.yt-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 閉じるボタン（右上） */
.mdl_btn_close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.mdl_btn_close:hover {
  opacity: 1;
}

.mdl_btn_close::before,
.mdl_btn_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
}

.mdl_btn_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mdl_btn_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"] {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}


/* ========================================
   Goods Page Styles
   ======================================== */


/* ----- HERO ----- */
.goods-hero {
  height: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.goods-hero-sub {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.68rem, 0.92vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.4rem;
}

h1.goods-hero-title {
  display: block;
  width: auto;
  margin: 0;
  font-family: "fieldwork", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
}

.goods-hero-quote {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 2rem;
}


/* ----- GOODS GRID SECTION ----- */
section.goods-section {
  max-width: 1100px;
  width: 88%;
  padding: 0 0 5vw;
}

/* ----- CATEGORY ----- */
.goods-category {
  margin-bottom: 6vw;
}

.goods-cat-header {
  margin-bottom: 3vw;
  padding-bottom: 1.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

h2.goods-cat-title {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-align: left;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.goods-cat-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.7rem, 0.82vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.cat-badge-new {
  display: inline-block;
  background: #b60912;
  color: #fff;
  font-family: "fieldwork", sans-serif;
  font-size: 0.6em;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 8px 3px;
  vertical-align: middle;
}

/* ----- GOODS GRID ----- */
.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5vw 3vw;
  margin-bottom: 3rem;
}

/* ----- GOODS CARD ----- */
.goods-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.goods-img-wrap {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.08);*/
  transition: box-shadow 0.4s ease;
}

/*.goods-card:hover .goods-img-wrap {
  box-shadow: inset 0 0 0 1px rgba(182, 9, 18, 0.5);
}*/

.goods-img-wrap::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.52rem, 0.68vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.45em;
  color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}

.goods-card:hover .goods-img-wrap::before {
  color: rgba(255, 255, 255, 0.18);
}

.goods-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #b60912;
  z-index: 4;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.goods-card:hover .goods-img-wrap::after {
  width: 100%;
}

.goods-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 2;
  transition: transform 0.55s ease;
}

.goods-card:hover .goods-img-wrap img {
  transform: scale(1.04);
}

.goods-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #b60912;
  color: #fff;
  font-family: "fieldwork", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 9px 4px;
  z-index: 5;
  pointer-events: none;
}

.goods-info {
  padding: 1.1vw 0 0;
}

.goods-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.98rem, 1.42vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.83);
  line-height: 1.6;
  margin-bottom: 0.45vw;
  transition: color 0.25s ease;
}

.goods-card:hover .goods-name {
  color: #fff;
}

.goods-price {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.goods-price .tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  padding-left: 0.15em;
}

.goods-banner {
  width: 80%;
  margin: 5vw auto 3vw;
  color: rgba(255, 255, 255, 0.8);
}

.goods-banner img {
  display: block;
  width: 100%;
  margin-bottom: 0.3vw;
}

.goods-lineup-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.5vw;
}

.goods-lineup-btn img {
  display: block;
  width: 100%;
  transition: opacity 0.2s ease;
}

.goods-lineup-btn:hover img {
  opacity: 0.8;
}

.goods-lineup-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  justify-content: center;
  align-items: flex-start;
}

.goods-lineup-modal.is-open {
  display: flex;
}

.goods-lineup-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

/* innerがスクロール領域＆閉じるボタンの親になる */
.goods-lineup-modal-inner {
  position: relative;
  z-index: 2001;
  width: 100%;
  max-width: 1000px;
  height: 100dvh;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  padding: 0 16px 40px;
}

/* 閉じるボタンをinnerの先頭に固定 */
.goods-lineup-modal-header {
  position: fixed;
  top: 1.5vw;
  right: 2.5vw;
  z-index: 2002;
  pointer-events: none;
}

.goods-lineup-close {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.goods-lineup-close span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
}

.goods-lineup-close span:nth-child(1) {
  transform: rotate(45deg);
}

.goods-lineup-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.goods-lineup-modal-inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   INFO TABS SECTION
   ======================================== */
section.goods-info-section {
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
  padding: 0 0 12vw;
  font-weight: 400;
}

section.goods-info-section p {
  margin-top: 1rem;
}


/* ----- Tabs ----- */
.info-tabs {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 4vw;
}

.info-tab {
  flex: 1;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  padding: 1.8rem 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.info-tab:hover {
  color: rgba(255, 255, 255, 0.75);
}

.info-tab.active {
  color: #fff;
}

.info-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 4px;
  background: #fff;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-tab.active::after {
  width: 100%;
  left: 0;
}

.tab-label-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.info-tab.active .tab-label-en {
  color: rgba(182, 9, 18, 0.85);
}

/* ----- Panels ----- */
.info-panel {
  display: none;
  animation: fadeInPanel 0.45s ease;
}

.info-panel p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.92rem, 1.08vw, 1.02rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.info-panel .small {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  color: rgba(255, 255, 255, 0.6);
}

.info-panel a {
  color: rgba(255, 255, 255, 0.78);
}


.info-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0 0 1.4rem;
  padding-bottom: 1.1rem;
  text-align: left;
  line-height: 1.5;
}

.info-title:not(:first-child) {
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 3rem;
}


.info-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 2.2rem;
  line-height: 1.9;
}

/* ========================================
   GOODS アプリ案内ブロック
   ======================================== */
.app-info-block {
  position: relative;
  background: rgba(255, 255, 266, 0.6);
  border: 4px solid #76161b;
  padding: 2rem 2.2rem;
  margin: 3rem 0 3rem;
  overflow: hidden;
  border-radius: 10px;
}

.app-info-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.app-info-text {
  flex: 1;
}

.app-info-block .app-info-title {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(1.24rem, 1.6vw, 1.44rem) !important;
  font-weight: 700;
  text-transform: uppercase;
  color: #76161b !important;
  margin: 0 0 0.9rem !important;
}

.app-info-block .app-info-title a {
  color: #76161b !important;
}

.app-info-block p {
  color: rgba(0, 0, 0, 0.88) !important;
  margin: 0 0 0.5rem !important;
  font-size: clamp(0.88rem, 1vw, 0.95rem) !important;
  line-height: 1.75 !important;
}

.app-info-block .small {
  color: rgba(0, 0, 0, 0.68) !important;
  font-size: clamp(0.75rem, 0.85vw, 0.8rem) !important;
}

.app-install-btn {
  flex-shrink: 0;
  display: block;
  width: clamp(80px, 8vw, 110px);
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.app-install-btn img {
  display: block;
  width: 100%;
  height: auto;
}


/* ----- Section heading ----- */
.info-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.18rem, 1.55vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 4rem 0 1.6rem;
  padding-left: 0.95rem;
  border-left: 4px solid #b60912;
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  scroll-margin-top: 2rem;
}

.info-anchor-nav+.info-subtitle {
  margin-top: 0;
}

/* ----- Sub heading ----- */
.info-sub-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.05em;
  margin: 2.6rem 0 1.2rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.info-sub-subtitle::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}


.info-text-read {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 1);
  line-height: 1.85;
  margin: 0.4rem 0 1.5rem;
}

.info-text-small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin: 0.4rem 0 1.5rem;
}

.info-text-xsmall {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.85rem, 0.9vw, 0.9rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0rem 0 3.5rem;
}

/* ----- Notes block ----- */
.info-block.notes {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.3rem 1.7rem;
  margin: 1.5rem 0 2rem;
}

.info-block.notes p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-weight: normal;
  margin: 0 0 0.2rem;
}

.info-block.notes p:last-child {
  margin-bottom: 0;
}

.note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.note-list li {
  position: relative;
  padding-left: 1.4em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: normal;
}

.note-list li::before {
  content: '※';
  position: absolute;
  left: 0;
}

/* ----- Schedule ----- */
.info-schedule {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.info-schedule li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  padding: 1.3rem 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.9);
}

.info-schedule li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-schedule .date {
  font-weight: 700;
  color: #fff;
  min-width: 7em;
  letter-spacing: 0.04em;
}

.info-schedule .venue {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.info-schedule .date-venue {
  color: #fff;
  min-width: 18em;
  letter-spacing: 0.04em;
  font-size: clamp(1.02rem, 1.22vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  padding-right: 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.info-schedule .time {
  font-size: clamp(1.02rem, 1.22vw, 1.15rem);
  font-family: "fieldwork", sans-serif;
  letter-spacing: 0.05em;
}

.info-schedule .time small {
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
}

/* ----- Product list ----- */
.info-product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.info-product-list li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Noto Sans JP", sans-serif;
}

.info-product-list .product-name {
  font-size: clamp(1.02rem, 1.22vw, 1.15rem);
  font-weight: 600;
  color: #fff;
  flex: 1 1 60%;
  letter-spacing: 0.02em;
}

.info-product-list .product-meta {
  font-size: clamp(0.88rem, 1.02vw, 0.96rem);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
}

.info-product-list .product-price {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  margin-left: auto;
}

.info-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.92rem);
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  margin: 0 0 3rem;
}

/* ----- Key info ----- */
.info-key-info {
  margin: 2.5rem 0 1rem;
  padding: 0.5rem 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.key-row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.key-row+.key-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.4rem;
  padding-top: 1.1rem;
}

.key-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  min-width: 7em;
  padding-left: 0.85rem;
}

.key-value {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

/* ----- Shop links ----- */
.info-shops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.4rem 0 1rem;
}

.pre-shop-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.4rem 0 1rem;
}

.pre-shop-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.6rem 1.7rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.shop-link {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.6rem 1.7rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-link:hover {
  background: rgba(182, 9, 18, 0.06);
  border-color: rgba(182, 9, 18, 0.5);
  transform: translateY(-2px);
}

.shop-link .shop-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.02rem, 1.22vw, 1.15rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

.shop-link .shop-meta {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  color: rgba(255, 255, 255, 0.55);
}

.shop-link .shop-url {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.78rem, 0.92vw, 0.88rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
  word-break: break-all;
  transition: color 0.25s ease;
}

.shop-link:hover .shop-url {
  color: #FFC800;
}

/* ----- Contact ----- */
.info-contact {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(1.1rem, 1.2vw, 1.1rem);
  font-weight: 500;
  margin: 1rem 0 0.5rem;
}

.info-contact a {
  color: #fff;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.info-contact a:hover {
  color: #b60912;
  border-bottom-color: #b60912;
}


/* ========================================
   ANCHOR NAVIGATION (Index-style buttons)
   ======================================== */
.info-anchor-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 0 0 4rem;
}

.anchor-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.7rem 1.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.anchor-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #b60912;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.anchor-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(182, 9, 18, 0.5);
}



/* Text group */
.anchor-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.anchor-btn-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.05rem, 1.32vw, 1.22rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.anchor-btn-en {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.62rem, 0.78vw, 0.72rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.3em;
  transition: color 0.3s ease;
}

.anchor-btn:hover .anchor-btn-en {
  color: rgba(255, 255, 255, 0.9);
}

/* Arrow circle */
.anchor-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.anchor-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.anchor-btn:hover .anchor-arrow {
  background: #b60912;
  border-color: #b60912;
  color: #fff;
}

/* ========================================
   会場受取
   ======================================== */

.pickup-schedule {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 0;
}

.pickup-day {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.6rem 1.3rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}


.pickup-schedule .pickup-day-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.pickup-day-num {
  font-family: "fieldwork", sans-serif;
  font-size: 0.78em;
  font-weight: 600;
  color: rgba(255, 200, 0, 0.8);
  letter-spacing: 0.1em;
}

.pickup-times {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pickup-times li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.pickup-times li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pickup-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.76rem, 0.9vw, 0.83rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

.pickup-time {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pickup-time-after {
  display: inline-block;
  font-size: clamp(0.72rem, 0.85vw, 0.78rem);
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  margin-top: .3vw;
}

.pickup-time-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.72rem, 0.85vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}



/* ========================================
   RANDOM GACHA
   ======================================== */
.gacha-price-badge {
  display: inline-block;
  background: #b60912;
  color: #fff;
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25em 0.85em 0.3em;
  vertical-align: middle;
}

.gacha-schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0 0 2rem;
}

.gacha-img {
  display: block;
  width: 100%;
  margin: 3vw 0 0;
}

.gacha-day {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.6rem 1.3rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}


.gacha-schedule .gacha-day-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.gacha-day-num {
  font-family: "fieldwork", sans-serif;
  font-size: 0.78em;
  font-weight: 600;
  color: rgba(255, 200, 0, 0.8);
  letter-spacing: 0.1em;
}

.gacha-times {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gacha-times .gacha-row-triple {
  flex-direction: row;
  gap: 1rem;
  border-bottom: none;
  padding-bottom: 0;
}

.gacha-times .gacha-times-after {
  display: inline-block;
  font-size: clamp(0.76rem, 0.9vw, 0.83rem);
  color: rgba(255, 255, 255, 0.7);
}

.gacha-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gacha-times li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.gacha-times li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gacha-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.76rem, 0.9vw, 0.83rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

.gacha-time {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gacha-time-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.72rem, 0.85vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.tokuten-img {
  display: block;
  width: 40%;
  margin: 2vw 0 2vw;
}



/* ========================================
   Goods Detail Page Styles
   ======================================== */

.detail-container {
  padding-top: 64px;
}

/* Only the active slide is shown */
.detail-slide {
  display: none;
}

.detail-slide.active {
  display: block;
  animation: detailFadeIn 0.45s ease-out both;
}

@keyframes detailFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- BACK BAR ----- */
/*.detail-back-btn {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.45em 1.2em;
  margin-top: 0.4em;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.detail-back-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}*/

/* ----- MAIN CONTENT ----- */
/* Override style.css .detail-content accordion rule */
.goods-detail-content {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
  max-height: none;
  overflow: visible;
}

/* ----- GALLERY ----- */
.detail-main-img-wrap {
  aspect-ratio: 1 / 1;
  width: min(100%, clamp(240px, 80vh, 800px));
  background: #fff;
  overflow: hidden;
  position: relative;
}

.detail-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  inset: 0;
  transition: opacity 0.18s ease;
}

.detail-thumbs {
  display: flex;
  gap: 1vw;
  margin-top: 1vw;
  flex-wrap: wrap;
}

.detail-thumbs img {
  width: calc(20% - 0.75vw);
  max-width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.22s ease, box-shadow 0.22s ease;
  background: #fff;
}

.detail-thumbs img.active,
.detail-thumbs img:hover {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(182, 9, 18, 0.5);
}

/* ----- PRODUCT INFO ----- */
.detail-info {
  padding-top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.detail-tour-name {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.58rem, 0.92vw, 0.66rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.detail-new-badge {
  display: inline-block;
  background: #b60912;
  color: #fff;
  font-family: "fieldwork", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 9px 4px;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}

/* Override parent h1 styles */
h1.detail-product-name {
  display: block;
  width: auto;
  margin: 0 0 0.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.3rem, 1.85vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.detail-new-badge+h1.detail-product-name {
  margin-top: 0;
}

.kids {
  font-size: 1vw;
  display: inline;
}

.detail-product-price {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  margin-top: 0.8rem;
  margin-bottom: 0;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-product-price .tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.55em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  padding-left: 0.3em;
  letter-spacing: 0.02em;
}

.detail-divider {
  display: none;
}

/* ----- SPECS ----- */
.detail-specs {
  display: grid;
  grid-template-columns: 5.8em 1fr;
  margin-top: 0;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.detail-specs dt {
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.7rem, 0.82vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin: 0;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
}

.detail-specs dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 0.88rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin: 0;
  padding: 0.7rem 0 0.7rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  letter-spacing: 0.05em;
  align-items: center;
}

.detail-specs dd:has(br),
.detail-specs dd:has(.note) {
  display: block;
}

.detail-specs dd .note {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1vw;
  font-size: 0.9vw !important;
  margin: 1vw 0;
}

.detail-specs dd .kinds {
  display: block;
  margin-bottom: -10px;
  font-weight: 700;
}

.apology {
  background-color: rgba(0, 0, 0, 0.1);
  font-size: clamp(0.78rem, 0.88vw, 0.85rem);
  color: #FFC800;
  /*color: #b60912;*/
  font-weight: 700;
  padding: 1vw;
  margin-bottom: 1vw;
}

.apology p {
  margin: 1vw 0 0;
}


/* ----- NOTES ----- */
.detail-note-highlight {
  font-size: clamp(0.78rem, 0.88vw, 0.85rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.detail-note-text {
  font-size: clamp(0.65rem, 0.76vw, 0.72rem);
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.75;
}

/* ----- SIZE SELECTOR ----- */
.detail-size-block {
  padding: 1.1rem 0 0rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.detail-size-label {
  font-family: "fieldwork", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.detail-size-options {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.size-btn {
  font-family: "fieldwork", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: none;
  padding: 0 1rem 0 0;
  cursor: default;
  pointer-events: none;
}

/* ----- SIZE GUIDE ACCORDION ----- */
.detail-accordion {
  padding-bottom: 1rem;
}

.detail-accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6em;
  padding: 0.82rem 0;
  cursor: pointer;
  font-family: "fieldwork", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  transition: color 0.2s;
}

.detail-accordion-trigger:hover,
.detail-accordion-trigger.open {
  color: rgba(255, 255, 255, 0.65);
}

.accordion-icon {
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 1;
  transition: transform 0.25s ease;
}

.detail-accordion-trigger.open .accordion-icon {
  transform: rotate(45deg);
}

.detail-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.detail-size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.6rem;
}

.detail-size-table th {
  font-family: "fieldwork", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  text-align: right;
  padding: 0.45rem 0.5rem 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-size-table th:first-child,
.detail-size-table td:first-child {
  text-align: left;
  padding-left: 0;
}

.detail-size-table td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
  padding: 0.45rem 0.5rem 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ----- NAVIGATION ----- */
.detail-nav {
  width: 100%;
  margin: 1.5vw auto 2vw;
  padding-top: 1.5vw;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
}

.detail-back-btn {
  grid-column: 2;
  justify-self: center;
  font-family: "fieldwork", sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.45em 1.2em;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.detail-back-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.detail-nav-btn {
  display: none;
}

.detail-nav-btn-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  text-decoration: none;
}

.detail-nav-btn-fixed.detail-prev {
  left: 3vw;
}

.detail-nav-btn-fixed.detail-next {
  right: 3vw;
}

.detail-nav-btn-fixed svg polyline {
  stroke: rgba(255, 255, 255, 0.6);
}

.detail-nav-btn-fixed svg {
  width: 20px;
  height: 32px;
}

/* ========================================
   Fanclub Styles
   ======================================== */

#fanclub {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  width: 80%;
  margin-top: 4vw;
}


.fanclub-list {
  background-color: rgba(255, 255, 255, 0.88);
  color: #000;
  padding: 2.5vw 3vw;
  margin: 3vw auto;
}

.fanclub-list dt {
  font-weight: 700;
  margin: 2rem 0 .5rem;
}

.fanclub-list dd {
  margin-bottom: 1rem;
}

.fanclub-list .head {
  background: #b60912;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 2vw;
  text-align: center;
  border-bottom: 1px solid #b60912;
  padding: 0.8vw 0 1vw;
}


.fanclub-list .head span {
  display: inline-block;
  font-size: 1rem;
}

.fanclub-list p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1vw 0;
}

.fanclub-list a {
  color: #000;
}

/*.fanclub-list .fanclub-list-wrap {
  border-top: 1px solid #b60912;
  border-bottom: 1px solid #b60912;
  padding: 1vw 0;
}*/

.fanclub-list .note {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 1vw 0 0;
  color: rgba(0, 0, 0, 0.8);
  /*  margin: 2vw 0;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1.2vw 1.5vw;*/
}

.howto {
  display: flex;
}

.howto li {
  width: 50%;
  border: 1px solid #000;
  padding: 1rem 1.5rem 0;
  margin: 1rem 1rem 1rem 0;
}



.howto li:last-of-type {
  margin: 1rem 0 1rem 1rem;
}

.howto li div {
  text-align: center;
  font-family: "fieldwork", sans-serif;
  font-size: 2.4rem;
}

.howto li p {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin: 1rem 0 !important;
}

.howto-caution {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1.5vw 1.8vw;
  margin: 2vw 0 0;
}


.about-sendoff {
  background-color: rgba(182, 9, 18, 0.1);
  padding: 1.5vw 1.8vw;
  color: #b60912;
  margin: 2vw 0 0;
}

.about-sendoff dt {
  margin: 0rem 0 .5rem;
  color: #b60912;
  font-size: 1.1rem;
  border-bottom: 1px #b60912 solid;
  padding: 0 0 1vw;
}

.fanclub-list .caution {
  font-size: 0.9rem;
  line-height: 1.5;
}


.pc {
  display: block !important;
}

/*PCで表示、SPでは非表示*/
.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: inline-block !important;
  }

  /*PCで非表示、SPでは表示*/
}

/* ============================================================
   FAQ
   ============================================================ */

#faq {
  width: 80%;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 4vw;
  padding-bottom: 6vw;
}

.faq-common {
  margin-bottom: 3vw;
}

/* FAQ カテゴリ */
.faq-category {
  margin-top: 3vw;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-category-label {
  font-family: "fieldwork", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  padding-bottom: 1vw;
  display: flex;
  align-items: center;
  gap: 0.8em;
}


#faq .accordion-header {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.2vw 0 0.6vw;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.faq-category-label+.accordion-header {
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}

#faq .accordion-header:hover {
  color: #fff;
}

#faq .accordion-content {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
}

/* アコーディオン共通（max-height拡張） */
#faq .accordion-content.active {
  max-height: 800px;
}

/* FAQ 回答内テキスト */
.faq-answer {
  padding: 1.5vw 3vw 2vw 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.faq-answer p+p {
  margin-top: 0.8em;
}

.faq-answer .list {
  padding-left: 1.4em;
  margin: 0.6em 0;
}

.faq-answer .list li {
  list-style-type: disc;
  margin: 0.3em 0;
}

.faq-answer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* 会場別タブ */
.faq-each {
  margin-top: 2vw;
}

.faq-venue-tabs {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 3vw;
}

.faq-venue-tab {
  flex: 1;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  padding: 1.8rem 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.faq-venue-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.faq-venue-tab.active {
  color: #fff;
}

.faq-venue-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #fff;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-venue-tab.active::after {
  width: 100%;
  left: 0;
}

.faq-tab-label-main {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.faq-tab-label-sub {
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.faq-venue-panel {
  display: none;
  animation: fadeInPanel 0.35s ease;
}

.faq-venue-panel.active {
  display: block;
}

/*会場MAP*/

.venue-map-btn {
  display: inline-block;
  margin-top: 3vw;
  background: transparent;
  /* color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);*/
  border: none;
  background-color: #FFC800;
  color: #000;
  font-family: "fieldwork", sans-serif;
  font-size: clamp(1.04rem, 1.235vw, 1.235rem);
  font-weight: 800;
  padding: 0.6em 1.8em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.venue-map-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.venue-map-btn:disabled {
  opacity: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.15);
  cursor: default;
}

.venue-map-btn:disabled:hover {
  background: transparent;
}

.venue-map-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.venue-map-modal.is-open {
  display: flex;
}

.venue-map-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.venue-map-modal-inner {
  position: relative;
  z-index: 3001;
  width: min(700px, 90vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.venue-map-modal-inner img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(90vh - 3rem);
  object-fit: contain;
  background: #fff;
}

.venue-map-modal-title {
  color: #fff;
  font-family: "fieldwork", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1vw;
}


.venue-map-modal-header {
  position: fixed;
  top: 1.5vw;
  right: 2.5vw;
  z-index: 3002;
}

.venue-map-modal-close {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.venue-map-modal-close span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
}

.venue-map-modal-close span:nth-child(1) {
  transform: rotate(45deg);
}

.venue-map-modal-close span:nth-child(2) {
  transform: rotate(-45deg);
}

/* ========================================
   情報解禁 テキストモーダル
   ======================================== */
.info-reveal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3100;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-reveal-modal.is-open {
  display: flex;
}

.info-reveal-modal.is-visible {
  opacity: 1;
}

.info-reveal-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.info-reveal-modal-inner {
  position: relative;
  z-index: 3101;
  width: min(640px, 90vw);
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  color: #000;
  padding: 3rem 3rem 3.2rem;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.info-reveal-modal.is-visible .info-reveal-modal-inner {
  transform: translateY(0);
}

.info-reveal-modal-date {
  font-family: "fieldwork", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #b60912;
  margin-bottom: 0.1rem;
}

.info-reveal-modal-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
  /*  border-bottom: 2px solid #000;*/
}

.info-reveal-modal-body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

.info-reveal-modal-body p {
  margin-bottom: 1em;
}

.info-reveal-modal-body p:last-child {
  margin-bottom: 0;
}

.info-reveal-modal-body a {
  color: #000;
  text-decoration: underline;
}

.info-reveal-modal-header {
  position: fixed;
  top: 1.5vw;
  right: 2.5vw;
  z-index: 3102;
}

.info-reveal-modal-close {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info-reveal-modal-close span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
}

.info-reveal-modal-close span:nth-child(1) {
  transform: rotate(45deg);
}

.info-reveal-modal-close span:nth-child(2) {
  transform: rotate(-45deg);
}