@charset "UTF-8";
/*!
variables
------------------------------
*/
:root {
  --color-white: #fff;
  --color-black: #111;
  --color-red: #e60012;
  --color-red-dark: #85000a;
  --color-gray: rgba(255, 255, 255, 0.7);
  --color-gray-dark: rgba(0, 0, 0, 0.1);
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Bebas Neue", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-red: 0 4px 16px rgba(230, 0, 18, 0.3);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --touch-target-size: 44px;
  --spacing-mobile: 1rem;
  --spacing-mobile-lg: 1.5rem;
}

/* モバイル向けの最適化 */
@media screen and (max-width: 767px) {
  :root {
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.25);
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
  }
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 100%;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
  }
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* モバイル向けのパフォーマンス最適化 */
@media screen and (max-width: 767px) {
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
  }
}

body {
  margin: 0 auto;
  font-family: var(--font-family-base);
  word-break: break-all;
  color: var(--color-white);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* モバイル向けのタッチ最適化 */
@media screen and (max-width: 767px) {
  * {
    -webkit-tap-highlight-color: rgba(230, 0, 18, 0.1);
  }
  
  button,
  a {
    -webkit-tap-highlight-color: rgba(230, 0, 18, 0.2);
    touch-action: manipulation;
  }
}

* {
  box-sizing: border-box;
}

/*!
utility
------------------------------
*/
.u-br-sp {
  display: block;
}

@media screen and (min-width: 992px) {
  .u-br-sp {
    display: none;
  }
}
.u-br-pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .u-br-pc {
    display: block;
  }
}
.u-desktop {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block !important;
  }
}
.u-mobile {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none !important;
  }
}
/*!
layout
------------------------------
*/
.l-container {
  margin: 0 auto;
}

.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1140px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/*!
component
------------------------------
*/
.c-largeButton {
  font-size: 0.9375rem;
  line-height: normal;
  font-weight: 600;
  display: block;
  padding: 0.875rem 1rem;
  min-height: var(--touch-target-size);
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  -webkit-tap-highlight-color: rgba(230, 0, 18, 0.3);
}
.c-largeButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-base);
}
@media screen and (min-width: 768px) {
  .c-largeButton {
    font-size: 2rem;
    border-radius: 50px;
    padding: 1.375rem 1.25rem;
    min-height: auto;
  }
  .c-largeButton:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-red);
  }
  .c-largeButton:hover::before {
    left: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-largeButton {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
    border-radius: 25px;
  }
  .c-largeButton:active {
    transform: scale(0.97);
    box-shadow: var(--shadow-sm);
  }
  .c-largeButton:active::before {
    left: 100%;
  }
}

.c-middleButton {
  font-size: 0.875rem;
  font-weight: 300;
  padding: 1.0625rem;
  color: var(--color-black);
  display: block;
  text-align: center;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  transition: color 0.3s, background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .c-middleButton:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    opacity: 1;
  }
}

.c-commonText {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-commonText {
    font-size: 1.75rem;
  }
}

.c-sectionTitle {
  font-family: var(--font-family-en);
  color: #000;
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: uppercase;
}

/*!
project
------------------------------
*/
/* ヘッダー */
.p-header {
  padding: 0.625rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
@media screen and (max-width: 767px) {
  .p-header {
    padding: 0.75rem 1rem;
  }
}

.p-header__inner {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.p-header__button {
  text-transform: uppercase;
  display: none;
  font-family: var(--font-family-en);
}
@media screen and (min-width: 768px) {
  .p-header__button {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    font-size: 2.3125rem;
    font-weight: 400;
    line-height: normal;
    padding: 1.75rem 1.375rem;
    border-radius: 0 0 0 var(--border-radius-md);
    background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 100%);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    z-index: 1000;
  }
  .p-header__button:hover {
    transform: translateY(2px);
    box-shadow: var(--shadow-lg);
  }
}

.p-header__title {
  max-width: 4.125rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-header__title {
    margin-left: 0;
    max-width: 6.4375rem;
  }
}

.p-header__title a {
  display: block;
}

/* main */
.p-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-section {
    padding-top: 4rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-section {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}

.p-section.p-section--bgLayer {
  background-image: url(../images/bg.jpg);
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.p-section.p-section--bgLayer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 0;
}
.p-section.p-section--bgLayer > * {
  position: relative;
  z-index: 1;
}

.p-head__img {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-head__img {
    margin-top: 3.125rem;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-head__img {
    margin-top: 1.25rem;
  }
}

.p-head__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-head__img img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(230, 0, 18, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .p-head__img img {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
  }
}

.p-head__text {
  text-align: center;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-head__text {
    margin-top: 2.5625rem;
  }
}

.p-head__images {
  display: grid;
  row-gap: 1.5rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-head__images {
    margin-top: 6.3125rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-head__placeImg img {
  height: auto;
  display: block;
}

.p-head__subText {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  font-weight: 300;
  margin-top: 1rem;
}

.p-head__middleTextBox {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) {
  .p-head__middleTextBox {
    margin-top: 3.0625rem;
    padding: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-head__middleTextBox {
    margin-top: 1.5rem;
    padding: 1.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
  }
}

.p-head__miniText {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-head__miniText {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-head__miniText {
    font-size: 0.8125rem;
  }
}

.p-head__largeText {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-head__largeText {
    font-size: 2.25rem;
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-head__largeText {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.5;
  }
}

.p-head__largeText span {
  font-size: 1rem;
  margin-left: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-head__largeText span {
    margin-left: 0.8125rem;
    font-size: 1.5rem;
  }
}

.p-head__ticketBox {
  margin-top: 2rem;
  text-align: left;
  padding: 0 0.5rem;
  color: #ffffff !important;
}
.p-head__ticketBox * {
  color: #ffffff !important;
}
@media screen and (min-width: 768px) {
  .p-head__ticketBox {
    margin-top: 3.75rem;
    padding: 0;
    color: #ffffff !important;
  }
  .p-head__ticketBox * {
    color: #ffffff !important;
  }
}
@media screen and (max-width: 767px) {
  .p-head__ticketBox {
    margin-top: 1.5rem;
    color: #ffffff !important;
  }
  .p-head__ticketBox * {
    color: #ffffff !important;
  }
}

.p-ticket {
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
  color: #ffffff !important;
}
.p-ticket * {
  color: #ffffff !important;
}
@media screen and (min-width: 768px) {
  .p-ticket {
    margin-bottom: 2.5rem;
    padding: 2rem;
  }
  .p-ticket:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .p-ticket {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
  }
  .p-ticket:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
  }
}

.p-ticket__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__header {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ticket__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.p-ticket__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  flex: 1;
  min-width: 0;
  letter-spacing: 0.02em;
  color: var(--color-white);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-ticket__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ticket__title {
    font-size: 1rem;
    width: 100%;
  }
}

.p-ticket__price {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  color: var(--color-red);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(230, 0, 18, 0.3);
}
@media screen and (min-width: 768px) {
  .p-ticket__price {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ticket__price {
    font-size: 1rem;
    text-align: left;
    width: 100%;
  }
}

.p-ticket__benefits {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__benefits {
    margin-top: 1.5rem;
  }
}

.p-ticket__benefitText {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__benefitText {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}

.p-ticket__benefitText:last-child {
  margin-bottom: 0;
}

.p-ticket__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-ticket__divider {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.p-ticket__notes {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.p-ticket__note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__note {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ticket__note {
    font-size: 0.6875rem;
    line-height: 1.7;
    margin-bottom: 0.375rem;
  }
}

.p-ticket__note:last-child {
  margin-bottom: 0;
}

.p-ticket__footerNotes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  position: relative;
  z-index: 10 !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.p-head__ticketBox .p-ticket__footerNotes,
.p-ticket__footerNotes p,
.p-ticket__footerNotes * {
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
}
@media screen and (max-width: 767px) {
  .p-ticket__footerNotes {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

.p-ticket__footerNote {
  font-size: 0.75rem;
  font-weight: 300;
  color: #ffffff !important;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  filter: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-head__ticketBox .p-ticket__footerNote,
.p-ticket .p-ticket__footerNote,
.p-ticket__footerNotes .p-ticket__footerNote,
.p-ticket__footerNotes p.p-ticket__footerNote {
  color: #ffffff !important;
}
@media screen and (min-width: 768px) {
  .p-ticket__footerNote {
    font-size: 1rem;
    margin-bottom: 0.625rem;
    color: #ffffff !important;
  }
  .p-head__ticketBox .p-ticket__footerNote,
  .p-ticket .p-ticket__footerNote,
  .p-ticket__footerNotes .p-ticket__footerNote,
  .p-ticket__footerNotes p.p-ticket__footerNote {
    color: #ffffff !important;
  }
}
@media screen and (max-width: 767px) {
  .p-ticket__footerNote {
    font-size: 0.6875rem;
    line-height: 1.6;
    margin-bottom: 0.375rem;
    color: #ffffff !important;
  }
  .p-head__ticketBox .p-ticket__footerNote,
  .p-ticket .p-ticket__footerNote,
  .p-ticket__footerNotes .p-ticket__footerNote,
  .p-ticket__footerNotes p.p-ticket__footerNote {
    color: #ffffff !important;
  }
}

.p-ticket__footerNote:last-child {
  margin-bottom: 0;
}

/* 公演概要 */
.p-eventInfo {
  margin-top: 2rem;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-eventInfo {
    margin-top: 4.375rem;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo {
    margin-top: 1.5rem;
  }
}

.p-eventInfo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-eventInfo__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo__grid {
    gap: 1rem;
  }
}

.p-eventInfo__city {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}
@media screen and (min-width: 768px) {
  .p-eventInfo__city {
    padding: 2rem;
  }
  .p-eventInfo__city:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo__city {
    padding: 1rem;
    border-radius: var(--border-radius-sm);
  }
  .p-eventInfo__city:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.06);
  }
}

.p-eventInfo__cityBanner {
  width: 100%;
  background: linear-gradient(135deg, var(--color-white) 0%, #f8f8f8 100%);
  border: 2px solid var(--color-black);
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}
@media screen and (min-width: 768px) {
  .p-eventInfo__cityBanner {
    width: 100%;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.25rem;
  }
  .p-eventInfo__city:hover .p-eventInfo__cityBanner {
    box-shadow: var(--shadow-red);
    transform: scale(1.02);
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo__cityBanner {
    padding: 0.5rem 0.625rem;
    margin-bottom: 0.75rem;
    border-width: 1.5px;
  }
}

.p-eventInfo__cityTitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-red);
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-eventInfo__cityTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo__cityTitle {
    font-size: 1.125rem;
  }
}

.p-eventInfo__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-eventInfo__details {
    gap: 1rem;
  }
}

.p-eventInfo__date {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1.4;
  font-family: var(--font-family-base);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-eventInfo__date {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo__date {
    font-size: 1rem;
  }
}

.p-eventInfo__venue {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  font-family: var(--font-family-base);
  text-align: center;
}
.p-eventInfo__venueSub {
  font-size: 0.75em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-eventInfo__venue {
    font-size: 1.375rem;
  }
  .p-eventInfo__venueSub {
    font-size: 0.7em;
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo__venue {
    font-size: 0.875rem;
  }
  .p-eventInfo__venueSub {
    font-size: 0.75em;
  }
}

.p-eventInfo__time,
.p-eventInfo__acts,
.p-eventInfo__info,
.p-eventInfo__memo {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-eventInfo__time,
  .p-eventInfo__acts,
  .p-eventInfo__info,
  .p-eventInfo__memo {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-eventInfo__time,
  .p-eventInfo__acts,
  .p-eventInfo__info,
  .p-eventInfo__memo {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
}

.p-eventInfo__link {
  color: var(--color-white);
  text-decoration: underline;
  transition: var(--transition-base);
  position: relative;
}
.p-eventInfo__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: var(--transition-base);
}
@media (any-hover: hover) {
  .p-eventInfo__link:hover {
    color: var(--color-red);
    opacity: 1;
  }
  .p-eventInfo__link:hover::after {
    width: 100%;
  }
}

.p-head__bottomBox {
  margin-top: 2rem;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-head__bottomBox {
    margin-top: 3.375rem;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-head__bottomBox {
    margin-top: 1.5rem;
  }
}

/* cta */
.p-ctaBox {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 2px solid var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem 0.75rem;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(230, 0, 18, 0.2);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.p-ctaBox::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 0, 18, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .p-ctaBox {
    padding-top: 2.6875rem;
    padding-bottom: 2.875rem;
    border-width: 3px;
  }
  .p-ctaBox:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(230, 0, 18, 0.4);
    border-color: var(--color-red);
  }
}
@media screen and (max-width: 767px) {
  .p-ctaBox {
    padding: 1rem 0.75rem;
    border-radius: var(--border-radius-md);
  }
  .p-ctaBox:active {
    transform: scale(0.98);
  }
}

.p-ctaBox__inner {
  text-align: center;
}

.p-ctaBox__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ctaBox__title {
    font-size: 0.9375rem;
  }
}

.p-ctaBox__text {
  margin-top: 0.75rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-red);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__text {
    font-size: 2.125rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ctaBox__text {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }
}

.p-ctaBox__button {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__button {
    max-width: 36.6875rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ctaBox__button {
    margin-top: 0.875rem;
  }
}

.p-ctaBox__subText {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__subText {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.p-ctaBox__notes {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__notes {
    margin-top: 1.875rem;
  }
}

.p-ctaBox__note {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__note {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}

.p-ctaBox__note:last-child {
  margin-bottom: 0;
}

/* artist */
.p-artist {
  padding-top: 3.125rem;
  background-color: var(--color-white);
}

.p-artist__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-artist__title {
    font-size: 4.375rem;
  }
}

.p-artist__blockWrap {
  margin-top: 2.0625rem;
  display: grid;
  row-gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-artist__blockWrap {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-artist__block {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -moz-column-gap: 3.125rem;
         column-gap: 3.125rem;
  }
}

.p-artist__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-artist__img {
    max-width: 18.75rem;
  }
}

.p-artist__img img {
  display: block;
}

.p-artist__textBox {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-artist__textBox {
    margin-top: 0;
  }
}

.p-artist__subTitle {
  color: var(--color-black);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5333333333;
}
@media screen and (min-width: 768px) {
  .p-artist__subTitle {
    font-size: 2.25rem;
    line-height: 1.2777777778;
  }
}

.p-artist__text {
  display: block;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-artist__text {
    margin-top: 0.875rem;
  }
}

.p-artist__links {
  display: grid;
  row-gap: 0.875rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-artist__links {
    margin-top: 4.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    max-width: 34.25rem;
  }
}

.p-artist__moreText {
  font-size: 1.5rem;
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.9166666667;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-artist__moreText {
    font-size: 2.25rem;
    line-height: 1.2777777778;
  }
}

/* フッター */
.p-footer {
  background-image: url(../images/bg.jpg);
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.p-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 6.25rem;
    padding-bottom: 8.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
}

.p-footer__logo {
  display: block;
  max-width: 9.1875rem;
  margin-right: auto;
  margin-left: auto;
}

.p-footer__textBox {
  margin-top: 3.125rem;
  text-align: center;
}

.p-footer__text {
  display: block;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 2;
}

.p-footer__textSlash {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__textSlash {
    display: inline-block;
    margin-left: 0.125rem;
    margin-right: 0.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__textWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.p-footer__textWrap + .p-footer__text {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__textWrap + .p-footer__text {
    margin-top: 0;
  }
}

.p-footer__links {
  display: grid;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__links {
    margin-top: 3.125rem;
  }
}

.p-footer__icon {
  display: block;
  transition: var(--transition-base);
  filter: brightness(0.9);
  min-width: var(--touch-target-size);
  min-height: var(--touch-target-size);
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__icon {
    min-width: auto;
    min-height: auto;
    padding: 0;
  }
  .p-footer__icon:hover {
    transform: translateY(-4px) scale(1.15);
    filter: brightness(1.2);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__icon:active {
    transform: scale(0.95);
    filter: brightness(1.1);
  }
}

.p-footer__bottomText {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  line-height: 1.8;
  color: var(--color-white);
  font-weight: 300;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__bottomText {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2.875;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__bottomText {
    margin-top: 1.25rem;
    font-size: 0.6875rem;
  }
}

.p-footer__iconbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  margin-top: 1.5rem;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__iconbox {
    width: 400px;
    margin-top: 40px;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__iconbox {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-footer__iconbox a {
  padding: 0.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  transition: var(--transition-base);
  filter: brightness(0.9);
  min-width: var(--touch-target-size);
  min-height: var(--touch-target-size);
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__iconbox a {
    padding: 0;
    margin: 0 20px;
    min-width: auto;
    min-height: auto;
  }
  .p-footer__iconbox a:hover {
    transform: translateY(-4px) scale(1.1);
    filter: brightness(1.2);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__iconbox a:active {
    transform: scale(0.95);
    filter: brightness(1.1);
  }
}

/* artists section */
.p-artists {
  background-color: transparent;
  background-image: none;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-artists {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.p-artists--spacing {
  margin-top: 2rem;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists--spacing {
    margin-top: 50px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-artists--spacing {
    margin-top: 1.5rem;
  }
}

.p-artists__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists__header {
    margin-bottom: 3.75rem;
  }
}

.p-artists__title {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-red);
  font-family: var(--font-family-en);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  letter-spacing: 0.1em;
  border: 2px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-artists__title {
    font-size: 3rem;
    padding: 1rem 3rem;
    border-width: 3px;
  }
}

.p-artists__content {
  display: grid;
  row-gap: 2.5rem;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-artists__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 0;
  }
}

.p-artists__content--center {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-artists__content--center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.p-artists__block {
  text-align: center;
}

.p-artists__image {
  width: 100%;
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-artists__image {
    margin-bottom: 2rem;
  }
}

.p-artists__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  filter: brightness(1.05);
}
@media screen and (min-width: 768px) {
  .p-artists__image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(230, 0, 18, 0.2);
    filter: brightness(1.1);
  }
}
@media screen and (max-width: 767px) {
  .p-artists__image img {
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
  }
}

.p-artists__name {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0 0;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-artists__name {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.p-artists__name--asitis {
  border-bottom: 0.25rem solid var(--color-white);
  padding-bottom: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-artists__name--asitis {
    border-bottom-width: 0.35rem;
    padding-bottom: 0.75rem;
  }
}

.p-artists__name--gg {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists__name--gg {
    margin-bottom: 0.75rem;
  }
}

.p-artists__support {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-artists__support {
    font-size: 1.25rem;
  }
}

.p-artists__more {
  text-align: center;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-artists__more {
    font-size: 1.75rem;
    margin-top: 3.75rem;
  }
}

.p-artists__andMore {
  text-align: center;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-artists__andMore {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.p-artists__moreSection {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists__moreSection {
    margin-top: 3.75rem;
  }
}

.p-artists__cityBlock {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists__cityBlock {
    margin-bottom: 3.75rem;
  }
}

.p-artists__cityBlock:last-child {
  margin-bottom: 0;
}

.p-artists__cityTitle {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-artists__cityTitle {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}

.p-artists__guestContent {
  display: grid;
  row-gap: 1.5rem;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-artists__guestContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    row-gap: 0;
    width: 80%;
  }
}

.p-artists__guestBlock {
  text-align: center;
}

.p-artists__guestImage {
  width: 100%;
  margin-bottom: 1rem;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-artists__guestImage {
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
}

.p-artists__guestImage img {
  width: 100%;
  height: auto;
  display: block;
}

.p-artists__guestText {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-artists__guestText {
    font-size: 1.125rem;
  }
}

/* フッターノートのテキストを確実に白にする */
.p-head__ticketBox .p-ticket__footerNotes,
.p-head__ticketBox .p-ticket__footerNotes p,
.p-head__ticketBox .p-ticket__footerNotes .p-ticket__footerNote,
.p-ticket__footerNotes,
.p-ticket__footerNotes p,
.p-ticket__footerNotes .p-ticket__footerNote,
.p-ticket__footerNote {
  color: #ffffff !important;
}

@media screen and (min-width: 768px) {
  .p-head__ticketBox .p-ticket__footerNotes,
  .p-head__ticketBox .p-ticket__footerNotes p,
  .p-head__ticketBox .p-ticket__footerNotes .p-ticket__footerNote,
  .p-ticket__footerNotes,
  .p-ticket__footerNotes p,
  .p-ticket__footerNotes .p-ticket__footerNote,
  .p-ticket__footerNote {
    color: #ffffff !important;
  }
}

@media screen and (max-width: 767px) {
  .p-head__ticketBox .p-ticket__footerNotes,
  .p-head__ticketBox .p-ticket__footerNotes p,
  .p-head__ticketBox .p-ticket__footerNotes .p-ticket__footerNote,
  .p-ticket__footerNotes,
  .p-ticket__footerNotes p,
  .p-ticket__footerNotes .p-ticket__footerNote,
  .p-ticket__footerNote {
    color: #ffffff !important;
  }
}
/*# sourceMappingURL=style.css.map */