@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #f2eee9;
  background: #050505;
  font-family: "Roboto";
  font-size: 18px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% -15%, #250008 0, #050505 32rem);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  mix-blend-mode: difference;
}

.brand, .footer-brand {
  display: block;
}

.brand img {
  display: block;
  width: 126px;
  height: auto;
}

.footer-brand img {
  display: block;
  width: 170px;
  height: auto;
  margin: 0 auto;
}

.global-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 40px);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: #c40018;
  transition: width 0.3s;
}

.global-nav a:hover::after, .global-nav a.is-current::after {
  width: 100%;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px 6vw 80px;
}

.hero__tour-logo {
  position: relative;
  z-index: 2;
  width: min(12vw, 800px);
  text-align: center;
}

.hero__tour-logo p {
  margin: 0;
}

.hero__tour-artist {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero__tour-year {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  margin-top: clamp(28px, 5vh, 52px) !important;
  color: #c40018;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
}

.hero__tour-year::before, .hero__tour-year::after {
  content: "";
  width: clamp(42px, 8vw, 110px);
  height: 1px;
  background: #c40018;
}

.hero__tour-year strong {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero__tour-logo h1 {
  margin: clamp(18px, 3vh, 34px) 0 0;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.1;
  white-space: nowrap;
}

.hero__tour-logo h1 span, .hero__tour-logo h1 em {
  display: inline;
}

.hero__tour-logo h1 em {
  color: #c40018;
  font-style: normal;
}

.hero__main-logo {
  display: block;
  width: 100%;
  height: auto;
}

.scroll-link {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: block;
  height: 72px;
  color: #9c9692;
  font-size: 9px;
  letter-spacing: 0.3em;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
}

.scroll-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 36px;
  background: #c40018;
  animation: scroll 1.9s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll {
  0% {
    transform: scaleY(0);
  }
  45% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.section {
  position: relative;
  padding: clamp(90px, 12vw, 180px) 5vw;
}

.section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: clamp(46px, 7vw, 90px);
}

.section-heading h2 {
  margin: 0;
  font-family: "Roboto";
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.8;
}

.news-entry {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-block: 1px solid rgba(196, 0, 24, 0.62);
}

.news-entry time {
  color: #c40018;
  font-family: "Roboto";
  font-size: 20px;
}

.news-entry p {
  margin: 0;
}

.schedule-list {
  border-top: 1px solid rgba(196, 0, 24, 0.62);
  margin-bottom: 100px;
}

.schedule-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(280px, 1fr) 230px 180px;
  gap: 30px;
  align-items: center;
  min-height: 174px;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(196, 0, 24, 0.62);
  transition: background 0.3s;
}

.schedule-card:hover {
  background: rgba(196, 0, 24, 0.055);
}

.schedule-card__date span, .schedule-card__date em {
  display: block;
  color: #9c9692;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.schedule-card__date strong {
  display: block;
  font-family: "Roboto";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
}

.schedule-card__venue p {
  margin: 0 0 5px;
  color: #c40018;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.schedule-card__venue h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.65;
}

.schedule-card__venue small {
  font-size: 0.76em;
  font-weight: 400;
}

.schedule-card__time {
  margin: 0;
  font-family: "Roboto";
  font-size: 18px;
  white-space: nowrap;
}

.schedule-card__time span {
  color: #c40018;
  font: 700 9px "Roboto";
  letter-spacing: 0.15em;
}

.schedule-card__time i {
  padding: 0 8px;
  color: #65000c;
  font-style: normal;
}

.schedule-card__info {
  font-size: 15px;
  line-height: 1.7;
}

.schedule-card__info span {
  color: #9c9692;
  font-size: 14px;
}

#schedule .btnWrap.dearFans {
  margin-top: 48px;
}

#schedule .btnWrap {
  display: flex;
  justify-content: center;
}

#schedule .btnWrap a:first-child {
  margin-left: 0;
}

#schedule .btnWrap.dearFans a {
  background-color: #c40018;
  color: #fff;
}

#schedule .btnWrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 64px;
  background-color: var(--accent);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #000;
  margin-left: 24px;
  padding: 1em;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

#dearFans {
  box-sizing: border-box;
  background-color: #000;
  border: #ffffff 4px solid;
  overflow: auto;
  color: #fff;
  height: 100%;
  width: 100%;
  padding: 32px;
}

#dearFans h3 {
  font-size: 24px;
  margin-bottom: 1.4em;
  text-align: center;
}

#dearFans p {
  font-size: 18px;
  margin-bottom: 1em;
}

#dearFans p + h4 {
  margin-top: 2em;
}

#dearFans h4 {
  font-size: 20px;
  margin-bottom: 0.6em;
  color: #c40018;
}

.section--ticket {
  background: linear-gradient(180deg, transparent, rgba(90, 0, 10, 0.15), transparent);
}

.ticket-accordion {
  display: grid;
  gap: 24px;
}

.ticket-panel {
  --ornament-color: #c40018;
  padding: clamp(44px, 6vw, 58px);
  background: rgba(5, 5, 5, 0.28);
  position: relative;
  border: 0;
}
.ticket-panel::before, .ticket-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(var(--ornament-color), var(--ornament-color)) center top/calc(100% - 40px) 1px no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) center bottom/calc(100% - 40px) 1px no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) left center/1px calc(100% - 40px) no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) right center/1px calc(100% - 40px) no-repeat, linear-gradient(135deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) left top/20px 20px no-repeat, linear-gradient(45deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) right top/20px 20px no-repeat, linear-gradient(45deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) left bottom/20px 20px no-repeat, linear-gradient(135deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) right bottom/20px 20px no-repeat;
}
.ticket-panel::before {
  inset: 0;
}
.ticket-panel::after {
  inset: 8px;
  opacity: 0.55;
}

.ticket-panel > * {
  position: relative;
  z-index: 2;
}

.ticket-panel__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.ticket-panel__summary::-webkit-details-marker {
  display: none;
}

.ticket-panel__summary::after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 20px;
  border-left: 2px solid #c40018;
  border-bottom: 2px solid #c40018;
  transform: translateY(-25%) rotate(135deg);
  transition: all 0.3s;
}

.ticket-panel[open] .ticket-panel__summary::after {
  content: "";
  transform: translateY(-75%) rotate(-45deg);
}

.ticket-panel__heading {
  min-width: 0;
}

.ticket-panel__badge {
  display: table;
  margin: 0 0 22px;
  padding: 4px 12px;
  color: #c40018;
  border: 1px solid #c40018;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.ticket-panel__title {
  display: block;
  font-family: "Roboto";
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.45;
}

.ticket-panel__lead {
  display: block;
  margin-top: 14px;
  color: #cbc4c0;
  font-size: clamp(16px, 1.4vw, 18px);
}

.ticket-panel__body {
  margin-top: 38px;
  overflow-wrap: anywhere;
}

.ticket-detail {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ticket-detail > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
}

.ticket-detail dt {
  color: #c40018;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ticket-detail dd {
  margin: 0;
  color: #d2ccca;
}

.ticket-detail small {
  color: #9c9692;
  font-size: 15px;
}

.ticket-detail__flow {
  line-height: 2;
}

p.attention_text2 {
  padding: 20px 20px 20px;
  background: rgba(255, 255, 255, 0.2);
  font-size: clamp(16px, 1.35vw, 18px);
}

.attention_text2__link {
  color: #ff0000;
  border-bottom: 2px solid #ff0000;
  transition: 0.25s ease;
}

.primary-button {
  --ornament-color: rgba(242,238,233,.92);
  display: flex;
  align-items: center;
  min-height: 74px;
  margin: 46px auto 36px;
  padding: 21px 32px;
  color: #f2eee9;
  background: #c40018;
  -webkit-clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
          clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.3s, background 0.3s;
  text-decoration: underline;
  color: #c40018;
  width: min(450px, 100%);
  justify-content: center;
  position: relative;
  border: 0;
}
.primary-button::before, .primary-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(var(--ornament-color), var(--ornament-color)) center top/calc(100% - 28px) 1px no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) center bottom/calc(100% - 28px) 1px no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) left center/1px calc(100% - 28px) no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) right center/1px calc(100% - 28px) no-repeat, linear-gradient(135deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) left top/14px 14px no-repeat, linear-gradient(45deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) right top/14px 14px no-repeat, linear-gradient(45deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) left bottom/14px 14px no-repeat, linear-gradient(135deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) right bottom/14px 14px no-repeat;
}
.primary-button::before {
  inset: 0;
}
.primary-button::after {
  inset: 5px;
  opacity: 0.55;
}

.primary-button:hover {
  --ornament-color: #c40018;
  color: #c40018;
  background: transparent;
}

.primary-button span, .primary-button i {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.primary-button i {
  font-size: 24px;
  font-style: normal;
}

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

.ticket-notes li {
  position: relative;
  padding-left: 1.35em;
  color: #d2ccca;
  font-size: 16px;
  line-height: 2;
}

.ticket-notes li + li {
  margin-top: 8px;
}

.ticket-notes li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #c40018;
  font-size: 0.65em;
  line-height: 3;
}

.ticketLead {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 35px;
  text-align: center;
}

.ticketLead__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 7px 16px;
  background: transparent;
  color: #c40018;
  font-size: 1.3rem;
  line-height: 1;
  border: 1px solid #c40018;
}

.ticketLead__price {
  margin: 0;
  font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 1;
  color: #fff;
}

.ticketLead__price span {
  margin-left: 6px;
  font-size: 1.2rem;
  color: #fff;
}

.ticketLead__note, .ticketLead__sale {
  margin: 15px 0 0;
  font-size: 1.4rem;
}

.section--attention {
  background: linear-gradient(180deg, transparent, rgba(90, 0, 10, 0.1), transparent);
}

.attention-panel {
  background: rgba(134, 101, 104, 0);
  padding: 0 0 35px;
}

#schedule .attention-panel {
  padding: clamp(32px, 5vw, 60px);
  background: rgba(196, 0, 24, 0.1);
}

.attention-panel h3 {
  margin: 0;
  padding-bottom: 22px;
  color: #c40018;
  border-bottom: 1px solid rgba(196, 0, 24, 0.5);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.attention-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.attention-list + .attention-list {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.attention-list li {
  position: relative;
  padding-left: 1.55em;
  color: #d2ccca;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 2;
}

.attention-list li + li {
  margin-top: 8px;
}

.attention-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #c40018;
  font-weight: 700;
}

.section--coming {
  min-height: 58vh;
}

.coming-soon {
  --ornament-color: #c40018;
  box-sizing: border-box;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 58px) 28px;
  color: #9c9692;
  font-family: "Roboto";
  font-size: clamp(28px, 5vw, 68px);
  letter-spacing: 0.12em;
  text-align: center;
  position: relative;
  border: 0;
}
.coming-soon::before, .coming-soon::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(var(--ornament-color), var(--ornament-color)) center top/calc(100% - 40px) 1px no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) center bottom/calc(100% - 40px) 1px no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) left center/1px calc(100% - 40px) no-repeat, linear-gradient(var(--ornament-color), var(--ornament-color)) right center/1px calc(100% - 40px) no-repeat, linear-gradient(135deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) left top/20px 20px no-repeat, linear-gradient(45deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) right top/20px 20px no-repeat, linear-gradient(45deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) left bottom/20px 20px no-repeat, linear-gradient(135deg, transparent 48%, var(--ornament-color) 49%, var(--ornament-color) 51%, transparent 52%) right bottom/20px 20px no-repeat;
}
.coming-soon::before {
  inset: 0;
}
.coming-soon::after {
  inset: 8px;
  opacity: 0.55;
}

.coming-soon span {
  display: block;
  width: 80px;
  height: 1px;
  margin: 24px auto 0;
  background: rgba(196, 0, 24, 0.62);
}

.site-footer {
  padding: 80px 5vw 40px;
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 70px;
  color: rgba(196, 0, 24, 0.62);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.site-footer p {
  margin: 20px 0 0;
  color: #9c9692;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.section--faq {
  position: relative;
}

#faq .section__bgMark {
  top: -10px;
  transform: translateX(-50%);
  opacity: 0.2;
}

.faqBlock {
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(196, 0, 24, 0.62);
  border-bottom: 1px solid rgba(196, 0, 24, 0.62);
}

.faqList {
  margin: 0;
  padding: 0;
}

.faqItem {
  border-bottom: 1px solid rgba(196, 0, 24, 0.62);
}

.faqItem:last-child {
  border-bottom: 0;
}

.faqItem dt {
  margin: 0;
}

.faqQuestion {
  width: 100%;
  position: relative;
  display: block;
  margin: 0;
  padding: 26px 72px 26px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1.5;
  transition: color 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.faqQuestion:focus-visible {
  outline: 2px solid rgba(196, 0, 24, 0.62);
  outline-offset: 6px;
}

.faqQuestion__text {
  display: block;
}

.faqQuestion__icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  pointer-events: none;
}

.faqQuestion__icon::before, .faqQuestion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 2px;
  background: #c40018;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

.faqItem.is-open .faqQuestion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faqAnswer {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faqAnswer[hidden] {
  display: none;
}

.faqAnswer__inner {
  padding: 0 0 26px;
}

.faqAnswer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.faqAnswer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.faqAnswer a:hover {
  color: rgba(196, 0, 24, 0.62);
  border-color: rgba(196, 0, 24, 0.62);
}

@media (max-width: 1000px) {
  .schedule-card {
    grid-template-columns: 96px 1fr;
    gap: 14px 20px;
    padding: 28px 8px;
  }
  .schedule-card__date {
    grid-row: span 2;
  }
  .schedule-card__date strong {
    font-size: 30px;
  }
  .schedule-card__venue h3 {
    font-size: 17px;
  }
  .schedule-card__time, .schedule-card__info {
    grid-column: 2;
  }
  .schedule-card__time {
    font-size: 15px;
  }
  .gip {
    grid-column: 2;
  }
}
@media (max-width: 900px) {
  .site-header {
    height: 66px;
    padding: 0 20px;
    mix-blend-mode: normal;
  }
  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
  }
  .menu-button__label {
    font-size: 9px;
    letter-spacing: 0.2em;
  }
  .menu-button__lines, .menu-button__lines::before {
    display: block;
    width: 25px;
    height: 1px;
    background: #c40018;
    transition: transform 0.3s, top 0.3s;
  }
  .menu-button__lines {
    position: relative;
  }
  .menu-button__lines::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
  }
  .menu-button[aria-expanded=true] .menu-button__lines {
    transform: rotate(45deg);
  }
  .menu-button[aria-expanded=true] .menu-button__lines::before {
    top: 0;
    transform: rotate(90deg);
  }
  .global-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12vw;
    background: rgba(5, 5, 5, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.35s;
  }
  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .global-nav a {
    font-family: "Roboto";
    font-size: clamp(34px, 10vw, 56px);
    line-height: 1.2;
  }
  .hero {
    min-height: 92svh;
  }
  .hero__tour-logo {
    width: min(26vw, 760px);
  }
  .hero__main-logo {
    width: min(26vw, 680px);
  }
  .scroll-link {
    bottom: 0px;
  }
  #dearFans {
    padding: min(5vw, 32px);
  }
  #dearFans h3 {
    font-size: min(4.8vw, 24px);
  }
  #dearFans p {
    font-size: min(4vw, 18px);
  }
  #dearFans h4 {
    font-size: min(4.2vw, 20px);
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.9;
  }
  .section {
    padding-inline: 22px;
  }
  .hero__tour-logo {
    width: 94vw;
  }
  .hero__tour-artist {
    font-size: 30px;
  }
  .hero__tour-year {
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.22em;
  }
  .hero__tour-year::before, .hero__tour-year::after {
    width: 34px;
  }
  .hero__tour-logo h1 {
    font-size: 8vw;
    letter-spacing: 0.015em;
  }
  .news-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .news-entry time {
    font-size: 16px;
  }
  .ticket-panel {
    padding: 34px 22px;
  }
  .ticket-panel__summary {
    align-items: flex-start;
    gap: 12px;
  }
  .ticket-panel__badge {
    margin-bottom: 16px;
  }
  .ticket-panel__title {
    font-size: 28px;
  }
  .ticket-panel__lead {
    margin-top: 10px;
    font-size: 16px;
  }
  .ticket-panel__summary::after {
    margin-top: -20px;
    font-size: 26px;
    top: 35px;
  }
  .ticket-panel__body {
    margin-top: 28px;
  }
  .ticket-detail > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .primary-button {
    padding: 17px;
    font-size: 15px;
  }
  .schedule-card {
    grid-template-columns: 78px 1fr;
  }
  .schedule-card__date strong {
    font-size: 24px;
  }
  .schedule-card__info {
    font-size: 14px;
  }
  .ticket-notes li {
    font-size: 14px;
    line-height: 1.95;
  }
  .attention-panel h3 {
    padding-bottom: 18px;
    font-size: 18px;
  }
  .attention-list {
    margin-top: 22px;
  }
  .attention-list + .attention-list {
    margin-top: 24px;
    padding-top: 24px;
  }
  .attention-list li {
    padding-left: 1.45em;
    font-size: 16px;
    line-height: 1.9;
  }
  .ticketLead__label {
    font-size: 1.1rem;
  }
  .ticketLead__note, .ticketLead__sale {
    font-size: 1.2rem;
  }
  .ticket-detail dd {
    font-size: 14px;
  }
  .enty_txt {
    font-size: 14px;
  }
  .ticketLead {
    padding: 0 0 25px;
  }
  .pc {
    display: none;
  }
  .scroll-link {
    bottom: -17px;
  }
  .hero__main-logo {
    width: min(40vw, 680px);
  }
  .hero__tour-logo {
    width: 40vw;
  }
}
@media (min-width: 601px) {
  .sp {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}