/* Layout
========================================== */
.l-bg-filter {
  background-color: rgba(0, 0, 0, 0.3);
}

.topCont {
  position: relative;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  padding: 1px 2rem;
}
.topCont#fv, .topCont#movie {
  padding: 0;
}
.topCont__bg {
  position: fixed;
  z-index: -1;
  inset: 0 0 auto;
  height: max(var(--section-bg-h, 0), 100vh);
  height: max(var(--section-bg-h, 0), 100dvh);
  transform: translateY(var(--section-bg-y, 0));
  will-change: transform;
  background-color: #000;
}
.topCont__bg img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
@media screen and (max-width: 600px) {
  .topCont {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.l-main,
.footer {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Loading
========================================== */
.loading {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading__inner {
  width: 100rem;
  max-width: 100%;
  margin: auto;
  transition: 1s ease;
}
.loading:not(.-open) .loading__inner {
  opacity: 0;
}

/* FirstView
========================================== */
.fv {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
}
.fv img {
  width: 100%;
}
.fv__img {
  position: relative;
  z-index: -1;
}
.fv__img::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 39rem;
  background-image: linear-gradient(to top, rgba(19, 0, 3, 0.5), transparent);
}
.fv__logo {
  position: absolute;
  top: 11%;
  left: 9.5%;
  width: 38%;
}
.fv__catch {
  position: absolute;
  top: 8.5%;
  right: max(10rem, 6%);
  width: 6.7%;
}
.fv__onair {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 58%;
}
@media screen and (max-width: 820px) {
  .fv {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto auto;
    padding-bottom: min(10vw, 6rem);
  }
  .fv__img {
    grid-area: 1/1/3/2;
    -webkit-mask-image: url(../img/home/kv_v-mask.png);
            mask-image: url(../img/home/kv_v-mask.png);
    -webkit-mask-position: center bottom;
            mask-position: center bottom;
    -webkit-mask-size: cover;
            mask-size: cover;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  .fv__logo {
    grid-area: 2/1/3/2;
    position: relative;
    inset: auto;
    width: 75%;
    margin: auto;
  }
  .fv__onair {
    position: static;
    width: 95%;
    margin: 2rem auto 0;
  }
}

/* MOVIE
========================================== */
#movie.topCont {
  background-color: transparent;
}

.movieArea::before, .movieArea::after {
  content: "";
  display: block;
  height: 0.3rem;
  background-image: linear-gradient(to right, #000 15%, #54ffff, #000 85%);
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.movieArea__thumb {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.movieArea__thumb::before, .movieArea__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(25%, 23.4rem);
  aspect-ratio: 1/1;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.movieArea__thumb::before {
  background-image: url(../img/cont/movie/btn_play.png);
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.movieArea__thumb::after {
  background-image: url(../img/cont/movie/btn_arrow.png);
}
.movieArea__thumb:hover::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.movieArea__thumb-img {
  height: min(50vw, 50rem);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.movieArea__thumb-img::before {
  content: "";
  position: absolute;
  inset: 1.5rem 2rem;
  border: 0.2rem solid;
  -o-border-image: linear-gradient(to right, rgba(84, 255, 255, 0.1) 15%, #54ffff, rgba(84, 255, 255, 0.1) 85%) 1;
     border-image: linear-gradient(to right, rgba(84, 255, 255, 0.1) 15%, #54ffff, rgba(84, 255, 255, 0.1) 85%) 1;
}
@media screen and (max-width: 600px) {
  .movieArea__thumb-img::before {
    inset: 0.5rem;
    border-width: 0.1rem;
  }
}
.movieArea__thumb-img img,
.movieArea__thumb-img iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  pointer-events: none;
}

/* Headline
========================================== */
.headlineArea {
  padding: min(10vw, 10rem) 0;
}
.headlineArea__body {
  max-width: 100rem;
  margin: auto;
}
.headlineArea__more {
  margin-top: 4.4rem;
  text-align: right;
}
.headlineArea__banner {
  margin-top: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .headlineArea {
    padding: min(12vw, 6rem) 0;
  }
}

/* INTORDUCTION
========================================== */
.introArea {
  position: relative;
  padding-bottom: 12rem;
}
@media screen and (max-width: 960px) {
  .introArea {
    padding-bottom: 6rem;
  }
}
.introArea::before {
  content: "";
  display: block;
  height: 0.3rem;
  background-image: linear-gradient(to right, rgba(84, 255, 255, 0), #54ffff, rgba(84, 255, 255, 0));
  background-position: center center;
  background-size: 70% 100%;
  background-repeat: no-repeat;
  margin-bottom: 10rem;
}
.introArea__body {
  text-align: center;
  font-size: min(2.8vw, 1.5em);
  font-weight: 700;
  line-height: 2.7;
  letter-spacing: 0.06em;
  filter: drop-shadow(0 5px 5px #000);
}
.introArea__body::before, .introArea__body::after {
  content: "";
  display: block;
  margin: 1em auto;
  font-size: min(5vw, 4rem);
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/dia.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.introArea__body p {
  margin-bottom: 2.7em;
}
.introArea__body em {
  font-size: min(5vw, 4rem);
  font-style: normal;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 25%, rgba(255, 255, 255, 0.8) 75%), linear-gradient(#ffe399, #ffe399);
  background-blend-mode: overlay;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.introArea__body em rt {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 25%, rgba(255, 255, 255, 0.8) 75%), linear-gradient(#ffe399, #ffe399);
  background-blend-mode: overlay;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.4em;
  text-align: center;
  letter-spacing: 0.14em;
  padding-left: 0.14em;
}

/* BANNER
========================================== */
.bannerArea {
  text-align: center;
  font-size: min(3.5vw, 2.4rem);
  padding: 3.5em 0 4em;
}

.banners {
  max-width: 99.8rem;
  margin: 1em auto 0;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
.banners a {
  display: block;
}
/*# sourceMappingURL=home.css.map */