@charset "UTF-8";
.header {
  position: relative;
}
@media (min-width: 835px) {
  .header {
    margin-top: 60px;
  }
}

.header__img {
  width: 100%;
}

.header__ttl1 {
  position: absolute;
  top: 11.19vw;
  left: 4.68vw;
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 91.4vw;
  z-index: 1;
}
@media (min-width: 835px) {
  .header__ttl1 {
    position: absolute;
    top: 24.6%;
    left: 14.8%;
    height: 65%;
    width: 51.6%;
  }
}
.-ready .header__ttl1 {
  clip-path: inset(0 0 0 0);
}

.header__ttl2 {
  position: absolute;
  top: -6.52vw;
  left: 37.76vw;
  width: 51.17vw;
  opacity: 0;
}
@media (min-width: 835px) {
  .header__ttl2 {
    position: absolute;
    top: -13.7%;
    left: 33.9%;
    height: 126.8%;
    width: 27.4%;
  }
}
.-ready .header__ttl2 {
  animation: hithere 1s 0.3s ease forwards;
}
@keyframes hithere {
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
  40%, 60% {
    opacity: 1;
    transform: rotate(-20deg) scale(1.2);
  }
  50% {
    opacity: 1;
    transform: rotate(20deg) scale(1.2);
  }
  70% {
    opacity: 1;
    transform: rotate(0deg) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.header__ph {
  display: block;
  opacity: 0;
  transform-origin: bottom right;
}
.-ready .header__ph {
  animation: illIn 1s 0.5s ease forwards;
}
.header__ph.-ph01 {
  position: absolute;
  top: 17.6%;
  left: 65%;
  height: 61.7%;
  width: 12.2%;
}
.header__ph.-ph02 {
  position: absolute;
  top: 17.6%;
  left: 68.2%;
  animation-delay: 0.6s;
  height: 55.5%;
  width: 10.5%;
}
.header__ph.-ph03 {
  position: absolute;
  top: 15.8%;
  left: 70.3%;
  height: 60.6%;
  animation-delay: 0.7s;
  width: 12%;
}
@keyframes illIn {
  from {
    opacity: 0;
    transform: rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

.illust {
  color: #fff;
  margin: 6.25vw 8.33vw 0;
}
@media (min-width: 835px) {
  .illust {
    margin: 76px 0 0;
  }
}

.illust__txt {
  font-size: 0.875rem;
  margin-bottom: 7.29vw;
}
@media (min-width: 835px) {
  .illust__txt {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media (min-width: 835px) {
  .illust__txt br {
    display: none;
  }
}

.illust__content__list {
  display: grid;
  gap: 6.51vw 4.16vw;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 835px) {
  .illust__content__list {
    gap: 70px 40px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.illust__content__list__item {
  cursor: pointer;
}
.illust__content__list__item .story {
  font-size: 1.5625rem;
  align-items: center;
  background: #02d1e0;
  color: #000;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: 4px;
}
@media (min-width: 835px) {
  .illust__content__list__item .story {
    font-size: 1.875rem;
    padding: 5px;
  }
}
.illust__content__list__item .story span {
  font-size: 1.09375rem;
}
@media (min-width: 835px) {
  .illust__content__list__item .story span {
    font-size: 1.3125rem;
  }
}
.illust__content__list__item .illust__img {
  position: relative;
  aspect-ratio: 290/330;
  overflow: hidden;
}
.illust__content__list__item .illust__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 386%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  width: 394.4%;
}
@media (min-width: 835px) {
  .illust__content__list__item .illust__img img {
    transition: all 0.3s ease-out;
  }
}
.illust__content__list__item .illust__img:after {
  background: url(/tv/assets/img/page/special/daihon-illustration/btn.svg) no-repeat;
  content: "";
  height: 5.98vw;
  position: absolute;
  right: 1.95vw;
  top: 1.95vw;
  width: 5.98vw;
}
@media (min-width: 835px) {
  .illust__content__list__item .illust__img:after {
    height: 24px;
    right: 8px;
    top: 8px;
    width: 24px;
  }
}
@media (min-width: 835px) {
  .illust__content__list__item:hover img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  opacity: 0;
  overflow: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  overflow-y: scroll;
  pointer-events: none;
  scrollbar-width: none; /* Firefox 対応 */
  transition: all 0.5s 0s ease;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.c-modal.-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 10;
}
.c-modal::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.c-modal__inner {
  align-items: center;
  display: flex;
  min-height: 100%;
  position: relative;
  width: 100%;
}

.c-modal__sign {
  width: 100%;
  padding: 20px 0;
}
.c-modal__sign__img {
  display: block;
  width: 80%;
  margin: 0 auto;
  border: solid 2px #E0AB2D;
  box-sizing: border-box;
}
@media (min-width: 835px) {
  .c-modal__sign__img {
    width: auto;
    height: 90vh;
  }
}

.c-modal__close {
  cursor: pointer;
  padding: 0;
}
@media (max-width: 834px) {
  .c-modal__close {
    position: fixed;
    top: 20px;
    right: 20px;
    height: 64px;
    width: 64px;
  }
}
@media (min-width: 835px) {
  .c-modal__close {
    position: fixed;
    top: 20px;
    right: 50px;
    height: 80px;
    width: 80px;
  }
}
.c-modal__close:before, .c-modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  content: "";
  height: 1px;
  width: 100%;
}
.c-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__close.-bk:before, .c-modal__close.-bk:after {
  background: #000;
}

.special__top {
  margin: 14.58vw 12.5vw 16.14vw;
}
@media (min-width: 835px) {
  .special__top {
    margin: 76px 0 92px;
  }
}
.special__top__button {
  position: relative;
  font-size: 1.0625rem;
  border-bottom: solid 1px #fff;
  color: #fff;
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0 auto;
  padding: 1.56vw 0;
  text-align: center;
  width: 105px;
}
@media (min-width: 835px) {
  .special__top__button {
    font-size: 1.125rem;
    padding: 8px 0;
    width: 115px;
  }
}
@media (min-width: 835px) {
  .special__top__button:hover {
    border-bottom: solid 1px transparent;
  }
}
.special__top__button::before {
  position: absolute;
  top: 0;
  left: -22px;
  bottom: 0;
  background: url(/tv/assets/img/page/special/screening-talkevent/back.svg) no-repeat;
  content: "";
  height: 14px;
  margin: auto;
  width: 10px;
}