.p-theater {
  width: 85%;
  max-width: 90rem;
  display: block;
  position: relative;
  margin: -0.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-theater {
    width: 92%;
  }
}
.p-theater__container {
  display: block;
  position: relative;
}
.p-theater__inner {
  min-width: 0;
  display: block;
  position: relative;
}
.p-theater__nav {
  display: block;
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .p-theater__nav {
    margin-bottom: 2rem;
  }
}
.p-theater__list {
  display: block;
  position: relative;
}
.p-theater__list-item {
  display: block;
  position: relative;
}
.p-theater_nav {
  display: block;
  position: relative;
}
.p-theater_nav__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-theater_nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem 1rem;
  }
}
.p-theater_nav__list-item {
  min-width: 0;
  display: block;
  position: relative;
}
.p-theater_nav__btn {
  width: 100%;
  min-height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--color-white);
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-theater_nav__btn {
    min-height: 3.5rem;
  }
}
.p-theater_nav__btn::before {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: var(--color-black);
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-theater_nav__btn::before {
    width: calc(100% - 0.4rem);
    height: calc(100% - 0.4rem);
    top: 0.2rem;
    left: 0.2rem;
    border-radius: 0.2rem;
  }
}
.p-theater_nav__btn::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
  border-radius: 0.5rem;
}
@media screen and (max-width: 960px) {
  .p-theater_nav__btn::after {
    border-radius: 0.2rem;
  }
}
.p-theater_nav__btn-base {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.5rem;
  opacity: 0;
  background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-sky) 100%);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-theater_nav__btn-base {
    border-radius: 0.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-theater_nav__btn-base {
    transition: opacity 1.2s var(--ease_out);
  }
  .p-theater_nav__btn:hover .p-theater_nav__btn-base {
    opacity: 1;
  }
}
.p-theater_nav__btn-text {
  display: block;
  position: relative;
  top: 0.1em;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-theater_nav__btn-text {
    font-size: 1.1rem;
  }
}
.p-theater_nav__date {
  display: block;
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1.9rem;
}
@media screen and (max-width: 960px) {
  .p-theater_nav__date {
    margin-top: 0.9rem;
    font-size: 1.4rem;
  }
}

.p-theater_content {
  display: block;
  position: relative;
  padding: 5rem 0;
}
@media screen and (max-width: 960px) {
  .p-theater_content {
    padding: 3rem 0;
  }
}
.p-theater_content__header {
  display: block;
  position: relative;
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 960px) {
  .p-theater_content__header {
    margin-bottom: 2.2rem;
  }
}
.p-theater_content__title {
  display: block;
  position: relative;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-theater_content__title {
    font-size: 2.5rem;
  }
}
.p-theater_content__inner {
  display: block;
  position: relative;
  padding: 3rem 5rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 960px) {
  .p-theater_content__inner {
    padding: 2.5rem 2rem;
  }
}

.p-theater_table {
  display: block;
  position: relative;
}
.p-theater_table__header {
  display: block;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 960px) {
  .p-theater_table__header {
    padding-bottom: 1.6rem;
  }
}
.p-theater_table__header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid var(--color-white);
}
.p-theater_table__line {
  display: grid;
  grid-template-columns: 14.22rem 1fr 15rem;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-theater_table__line {
    grid-template-columns: 5.6rem 1fr;
    grid-template-rows: 1fr auto;
    gap: 0 0.5rem;
  }
}
.p-theater_table__inner .p-theater_table__line {
  min-height: 6.1rem;
}
@media screen and (max-width: 960px) {
  .p-theater_table__inner .p-theater_table__line {
    min-height: 4.2rem;
  }
}
.p-theater_table__inner .p-theater_table__line::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.p-theater_table__line-item {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-theater_table__header .p-theater_table__line-item.--note {
    display: none;
  }
  .p-theater_table__inner .p-theater_table__line-item.--note {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.p-theater_table__cap {
  display: block;
  position: relative;
  padding: 0.6rem;
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 960px) {
  .p-theater_table__cap {
    padding: 0.1rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.p-theater_table__cell {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 1.4rem 0.6rem;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: 0.05rem;
}
.--note .p-theater_table__cell {
  min-height: auto;
  font-size: 1.3rem;
}
@media screen and (max-width: 960px) {
  .--note .p-theater_table__cell {
    margin-top: -0.2rem;
    padding: 0.1rem 0.1rem 1rem 6.1rem;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-theater_table__cell {
    padding: 1rem 0.1rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.p-theater_table__cell a {
  color: var(--color-white);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-theater_table__cell a:hover {
    text-decoration: none;
  }
}