*:focus,
*:active {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.listStyle_none {
  list-style-type: none;
}

h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 100px;
  font-weight: 700;
}

.heading-en {
  display: block;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
.heading-en::first-letter {
  color: #e10000;
}

.heading-ja {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 14px;
  letter-spacing: 0.05em;
}

h3 {
  font-weight: 700;
}

h4 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 1rem;
}

.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.mb0 {
  margin-bottom: 0;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.container-fluid {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.container-lg {
  max-width: 900px;
}

.main-contents {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 40px 60px;
}

#about {
  padding-top: 160px;
}

#about p {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 2.8;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #about {
    padding-top: 80px;
  }
  #about p {
    font-size: 1rem;
    line-height: 2;
    text-align: left;
  }
  .br-pc {
    display: none;
  }
}
.fullImageParent {
  background-color: #e10000;
  position: relative;
}

.fullImage {
  top: 0%;
  left: 0%;
  width: 100%;
  object-fit: cover;
}

.grd {
  width: 100%;
  height: 100%;
  background: linear-gradient();
}

.fitImg {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.box_centered {
  left: 50%;
  position: absolute;
  top: 50%;
}

.box_contents {
  text-align: center;
  width: 450px;
  transform: translate(-50%, 0%);
}

.live_logo {
  bottom: 4%;
  margin: auto;
  width: 63%;
  min-width: 150px;
  max-width: 590px;
}

.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}
.gnav.is-scrolled {
  background-color: #000;
  animation: gnav-slide-in 0.6s ease;
}

@keyframes gnav-slide-in {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-100%);
  }
  41% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.gnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

.gnav__logo {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gnav.is-scrolled .gnav__logo {
  opacity: 1;
}
.gnav__logo img {
  height: 86px;
  width: auto;
}

.gnav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav__menu a {
  display: block;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.gnav__menu a:hover {
  opacity: 0.7;
  color: #fff;
  text-decoration: none;
}

.gnav__shop-btn {
  background-color: #e10000;
  padding: 8px 24px !important;
  border-radius: 2px;
}
.gnav__shop-btn:hover {
  opacity: 0.85 !important;
}

.gnav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}
.gnav__hamburger:focus {
  outline: none;
}
.gnav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 8px;
  transition: transform 0.3s, opacity 0.3s;
}
.gnav__hamburger span:nth-child(1) {
  top: 11px;
}
.gnav__hamburger span:nth-child(2) {
  top: 19px;
}
.gnav__hamburger span:nth-child(3) {
  top: 27px;
}
.gnav__hamburger.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.gnav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.gnav__hamburger.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .gnav__inner {
    padding: 0 10px;
    height: 60px;
  }
  .gnav__hamburger {
    display: block;
  }
  .gnav__menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 0;
    gap: 0;
  }
  .gnav__menu.is-open {
    display: flex;
  }
  .gnav__menu a {
    padding: 18px 24px;
    font-size: 1.2rem;
  }
  .gnav__shop-btn {
    margin: 8px 24px;
    text-align: center;
    border-radius: 4px;
  }
}
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: -1;
  background-color: #333;
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(200, 0, 0);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-logo-spacer {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-logo-spacer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  pointer-events: none;
}

.hero-logo-spacer__img {
  width: 90%;
  max-width: 900px;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  z-index: 2;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll__text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.hero-scroll__icon {
  font-size: 1.6rem;
}

@keyframes heroScrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@media (max-width: 768px) {
  .hero-scroll__text {
    font-size: 0.7rem;
  }
  .hero-scroll__icon {
    font-size: 1.2rem;
  }
}
@media (min-width: 1921px) {
  .hero-logo-spacer__img {
    max-width: 46.875vw;
  }
}
.ticket {
  border: 1px solid #333;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 40px;
  color: #1a1a1a;
  opacity: 0.85;
}

.ticket_title {
  font-size: 1.35rem;
  font-weight: bold;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 12px;
}

.ticket_type {
  background-color: #000;
  color: #fff;
  padding: 6px 12px;
  margin-right: 12px;
}

.ticket_buy_2 a {
  display: block;
  width: 100%;
  background-color: #b3b3b3;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
}

.price {
  font-size: 1.35rem;
}

.price_text {
  font-size: 0.8rem;
}

.schejule {
  font-weight: bold;
  margin-bottom: 4px;
}

.schejule_2 {
  font-size: 0.8rem;
}

.img-fluid {
  height: 300px;
  width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
}

.talent_name {
  font-size: 1.6rem;
  font-weight: bold;
}

.talent_sns a {
  color: #000;
}

.talent_youtube {
  margin-right: 12px;
}

.ph_caption {
  font-size: 0.8rem;
  margin-top: 8px;
}

.blackbox_website {
  font-size: 0.9rem;
}

.audition_btn a {
  display: block;
  width: 40%;
  background-color: transparent;
  padding: 20px 0;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.audition_btn a:hover {
  background-color: #fff;
  color: #1a1a1a;
  text-decoration: none;
}

.talent-carousel-section {
  background-color: transparent;
  padding: 120px 0;
  overflow: hidden;
}
.talent-carousel-section h2 {
  color: #fff;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.talent-grid__card {
  cursor: pointer;
  text-align: center;
  position: relative;
}
.talent-grid__card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #e10000;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
}

.talent-grid__card-img-wrap {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
}

.talent-grid__card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}
.talent-grid__card:hover .talent-grid__card-img {
  transform: scale(1.05);
}

.talent-grid__card-name {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 18px;
  padding: 10px 16px;
}

@media (max-width: 768px) {
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  .talent-grid__card::before {
    top: 6px;
    left: -6px;
  }
  .talent-grid__card-name {
    margin-top: 8px;
  }
  .talent-grid__card-name {
    font-size: 0.9rem;
  }
}
.talent-carousel {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 80px;
}

.talent-carousel__viewport {
  overflow: hidden;
}

.talent-carousel__track {
  display: flex;
  gap: 36px;
  transition: transform 0.4s ease;
}

.talent-carousel__card {
  flex: 0 0 calc((100% - 72px) / 3);
  cursor: pointer;
  text-align: center;
}

.talent-carousel__card-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
}

.talent-carousel__card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  transform: scale(2.8);
  transform-origin: top center;
  transition: transform 0.3s ease;
}
.talent-carousel__card:hover .talent-carousel__card-img {
  transform: scale(2.9);
}
.talent-carousel__card-img--zoom-sm {
  transform: scale(1.8);
}
.talent-carousel__card:hover .talent-carousel__card-img--zoom-sm {
  transform: scale(1.9);
}

.talent-carousel__card-name {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 18px;
  padding: 10px 16px;
}

.talent-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  transition: color 0.3s;
  line-height: 1;
}
.talent-carousel__arrow:hover {
  color: #e10000;
}
.talent-carousel__arrow--prev {
  left: 0;
}
.talent-carousel__arrow--next {
  right: 0;
}
.talent-carousel__arrow:disabled {
  opacity: 0.2;
  cursor: default;
}
.talent-carousel__arrow:disabled:hover {
  color: #fff;
}

.talent-carousel__btn-all {
  display: block;
  width: 260px;
  margin: 40px auto 0;
  padding: 14px 0;
  background-color: #e10000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border: none;
  transition: opacity 0.3s;
}
.talent-carousel__btn-all:hover {
  opacity: 0.7;
  color: #fff;
  text-decoration: none;
}

.talent-modal .modal-dialog {
  max-width: 1200px;
}

.talent-modal__wrapper {
  position: relative;
  width: 100%;
}

.talent-modal__wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background-color: var(--talent-color, #e10000);
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 80px 100%, 0 calc(100% - 80px));
  z-index: -1;
}

.talent-modal .modal-content {
  background-color: #fff;
  color: #1a1a1a;
  border: none;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 80px, 100% 100%, 80px 100%, 0 calc(100% - 80px));
  position: relative;
}

.talent-modal .modal-body {
  padding: 60px;
  overflow-y: auto;
}
.talent-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}
.talent-modal .modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.talent-modal .modal-body::-webkit-scrollbar-thumb {
  background-color: var(--talent-color, #e10000);
  border-radius: 4px;
}
.talent-modal .modal-body {
  scrollbar-width: thin;
  scrollbar-color: var(--talent-color, #e10000) transparent;
}

.talent-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  text-shadow: none;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.talent-modal__close:hover {
  color: #e10000;
}

.talent-modal__img {
  width: 100%;
  max-width: 600px;
  object-fit: contain;
  border-radius: 4px;
}

.talent-modal__name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.talent-modal__name-en {
  font-size: 1rem;
  color: #4d4d4d;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.talent-modal__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--talent-label-text, #fff);
  background-color: var(--talent-color, #e10000);
  display: inline-block;
  padding: 2px 8px;
  margin-top: 0;
  margin-bottom: 12px;
}

.talent-modal__bio {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 32px;
}

.talent-modal__birthday {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.talent-modal__sns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.talent-modal__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  color: #1a1a1a;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.talent-modal__sns a:hover {
  background-color: var(--talent-color, #e10000);
  border-color: var(--talent-color, #e10000);
  color: var(--talent-label-text, #fff);
  text-decoration: none;
}

.talent-modal__status {
  display: inline-block;
  font-size: 0.8rem;
  padding: 2px 8px;
  border: 1px solid #4d4d4d;
  color: #4d4d4d;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .talent-modal {
    padding: 20px !important;
  }
  .talent-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
  }
  .talent-modal .modal-content {
    max-height: 80vh;
    overflow: hidden;
  }
  .talent-modal__wrapper {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
  }
  .talent-modal .modal-content {
    clip-path: none;
  }
  .talent-modal .modal-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 8px);
    height: 60px;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 3;
  }
  .talent-modal__wrapper::before {
    display: none;
  }
  .talent-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    color: #1a1a1a;
    pointer-events: auto;
  }
  .talent-modal__wrapper::before {
    pointer-events: none;
  }
  .talent-modal .modal-body {
    padding: 20px 20px 60px;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }
  .talent-modal__name {
    font-size: 1.6rem;
  }
  .talent-modal__name-en {
    font-size: 0.85rem;
  }
  .talent-modal__bio {
    margin-bottom: 16px;
    font-size: 0.95rem;
    text-align: left;
  }
  .talent-modal__img {
    max-width: none;
    max-height: 340px;
  }
  .talent-modal__birthday {
    font-size: 0.95rem;
  }
  .talent-modal__sns {
    justify-content: center;
  }
}
.audition-accordion {
  margin-top: 40px;
  margin-bottom: 120px;
}

.audition-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background-color: #e10000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s;
}
.audition-accordion__toggle:hover {
  opacity: 0.85;
}
.audition-accordion__toggle:focus {
  outline: 2px solid #1a1a1a;
}

.audition-accordion__toggle .heading-en::first-letter {
  color: inherit;
}

.audition-accordion__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audition-accordion__arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.audition-accordion__toggle[aria-expanded=true] .audition-accordion__arrow {
  transform: rotate(180deg);
}

.audition-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  line-height: 2.2;
}
.audition-accordion__body.is-open {
  max-height: 600px;
  padding: 24px 20px;
}
.audition-accordion__body h3 {
  text-align: center;
  font-size: 1rem;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .audition-accordion__toggle .heading-en {
    font-size: 1.8rem;
  }
  .audition-accordion__body.is-open {
    max-height: 1500px;
  }
}
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.supporter_section {
  background-color: #fff;
  opacity: 0.9;
  padding: 20px 0 40px 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.supporter {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.supporter_logo {
  max-width: 100%;
  height: 30px;
}

.supporter_logo2 {
  max-width: 100%;
  height: 30px;
}

.news-section {
  background-color: transparent;
  color: #fff;
  padding: 120px 40px;
}
.news-section h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 60px;
}

.news-section__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.news-section__loading {
  text-align: center;
  color: #b3b3b3;
  width: 100%;
}

.news-section__empty {
  text-align: center;
  color: #b3b3b3;
  width: 100%;
}

.news-section__item {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}
.news-section__item:hover {
  opacity: 0.7;
  color: #fff;
  text-decoration: none;
}

.news-section__thumb-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-section__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-section__body {
  padding: 16px 0 0;
}

.news-section__date {
  font-size: 1rem;
  font-weight: 600;
  color: #e10000;
  margin-bottom: 8px;
}

.news-section__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.news-section__more {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .news-section {
    padding: 80px 20px;
  }
  .news-section__item {
    width: 100%;
  }
  .news-section__list {
    gap: 20px;
  }
  .news-section__title {
    font-size: 1rem;
  }
}
.info-section {
  background-color: transparent;
  color: #fff;
  padding: 120px 40px;
}
.info-section h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 100px;
}

.info-section__inner {
  display: flex;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.info-section__col {
  flex: 1;
}
.info-section__col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 32px;
}
.info-section__col h3 + ul {
  margin-bottom: 32px;
}
.info-section__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-section__col li {
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.info-section__col li::before {
  font-family: "bootstrap-icons";
  content: "\f285";
  margin-right: 6px;
  font-size: 0.7rem;
  vertical-align: middle;
  color: #e10000;
}
.info-section__col a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.info-section__col a:hover {
  opacity: 0.7;
  color: #fff;
}

.contact-section {
  background-color: transparent;
  padding: 120px 40px 200px;
  text-align: center;
}
.contact-section h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 40px;
}

.contact-section__text {
  color: #fff;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .info-section__inner {
    flex-direction: column;
    gap: 0;
  }
  .info-section__col {
    margin-bottom: 40px;
  }
  .contact-section__text {
    text-align: left;
  }
  .contact-form__select {
    appearance: menulist;
    -webkit-appearance: menulist;
  }
}
.contact-section__btn {
  display: inline-block;
  padding: 16px 50px;
  background-color: #e10000;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}
.contact-section__btn:hover {
  opacity: 0.7;
  color: #fff;
  text-decoration: none;
}
.contact-section__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form__group {
  margin-bottom: 24px;
}

.contact-form__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-form__required {
  font-size: 0.75rem;
  color: #e10000;
  margin-left: 4px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-family: inherit;
  appearance: none;
  transition: border-color 0.3s;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #e10000;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #999;
}

.contact-form__select-wrap {
  position: relative;
  width: 100%;
}
.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1a1a1a;
  pointer-events: none;
}

.contact-form__select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s;
}
.contact-form__select:focus {
  outline: none;
  border-color: #e10000;
}
.contact-form__select:invalid {
  color: #999;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__group--checkbox {
  margin-top: 32px;
  margin-bottom: 40px;
}

.contact-form__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
}
.contact-form__checkbox-label a {
  color: #fff;
  text-decoration: underline;
}
.contact-form__checkbox-label a:hover {
  opacity: 0.7;
}

.contact-form__checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: #e10000;
  cursor: pointer;
}

.contact-form__submit {
  text-align: center;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
}

.footer__logo {
  margin-bottom: 40px;
}

.footer__logo-link {
  display: inline-block;
}
.footer__logo-link img {
  height: 120px;
  width: auto;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer__sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
.footer__sns-btn svg {
  display: block;
}
.footer__sns-btn:hover {
  background-color: #fff;
  color: #1a1a1a;
  text-decoration: none;
}

.footer__links {
  margin-bottom: 28px;
  font-size: 0.85rem;
}
.footer__links a {
  color: #fff;
  text-decoration: none;
}
.footer__links a:hover {
  text-decoration: underline;
}

.footer__links-sep {
  margin: 0 8px;
  color: #b3b3b3;
}

.footer-copy {
  background-color: #e10000;
  padding: 20px;
  text-align: center;
}

.footer-copy__text {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
}

@keyframes rotationy {
  0% {
    transform: rotatey(0);
  }
  100% {
    transform: rotatey(360deg);
  }
}
@media (max-width: 768px) {
  .fullImageParent {
    padding-top: 50%;
  }
  .fullImage {
    position: absolute;
    left: 0%;
    width: 100%;
    height: 54vw;
    object-fit: cover;
  }
  .live_logo {
    top: 33vw;
    width: 40%;
  }
  .headline br {
    display: none;
  }
  .supporter_logo {
    margin-bottom: 30px;
  }
  .talent_name {
    margin-top: 20px;
  }
  .audition_btn a {
    width: 100%;
  }
  .talent-carousel__card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .talent-carousel {
    padding: 0 50px;
  }
  .talent-modal__img {
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
  }
}
@media (max-width: 575.98px) {
  .talent-carousel__card {
    flex: 0 0 100%;
  }
  .talent-carousel {
    padding: 0 40px;
  }
  .talent-carousel__arrow {
    font-size: 2rem;
  }
  .talent-carousel-section h2 {
    font-size: 1.8rem;
  }
  .info-section__inner {
    flex-direction: column;
    gap: 0;
  }
}

/*# sourceMappingURL=style.css.map */
