@charset "UTF-8";

/* --------------
     top 
--------------*/
/* ----hero --- */

.top-hero {
  position: relative;
  --hero-zoom-time: 4s;
}

.top-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 0;
}

.top-hero__lane {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-left: -1px;
}

.top-hero__lane:first-child {
  margin-left: 0;
}

.top-hero__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-hero__frame.is-active {
  opacity: 1;
  z-index: 2;
}

.top-hero__frame.is-leaving {
  opacity: 0;
  z-index: 3;
}

.top-hero__frame img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
  object-fit: cover;
  display: block;
  transform: scale(1.18);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .top-hero {
    margin-top: 0;
  }

  .top-hero__split {
    grid-template-columns: 1fr;
  }

  .top-hero__lane {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .top-hero__frame,
  .top-hero__frame img {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* ----about-contena---- */

.about-contena {
  max-width: 58rem;
  width: 100%;
  height: auto;
  background:
    url("../../img/contents-bg.png") repeat,
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 30%);
  border-radius: 0.4rem;
  padding: 4rem 1rem;
  justify-content: center;
  gap: 4rem;
  margin: 9.2rem auto 0;

}

.about-contena__title,
.about-contena__note {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.about-contena__title {
  order: 2;
  gap: 1.6rem;
}

.about-contena__title span+span {
  margin: 0 0.4rem;
}

.about-contena__title.is-sp {
  display: none;
}

.about-contena__title-box {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0;
}

.about-contena__title-box span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.1rem solid #08131a;
  border-left: 0.1rem solid #08131a;
  border-right: 0.1rem solid #08131a;
  width: 3.6rem;
  height: 3.6rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2rem;
}

.about-contena__title-box span:last-child {
  border-bottom: 0.1rem solid #08131a;
}


.about-contena__note {
  order: 1;
  font-size: 1.8rem;
  line-height: 3.4rem;
}

@media (max-width: 768px) {
  .about-contena {
    background: none;
    padding: 0 3.2rem;
    gap: 3.2rem;
    aspect-ratio: auto;
  }

  .about-contena__title {
    display: none;
  }

  .about-contena__title.is-sp {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 28rem;
    z-index: 9;
  }

  .about-contena__title.is-sp .about-contena__title-box span {
    background: rgba(255, 255, 255, .68);
  }

  .about-contena__title-box span {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 2rem;
  }

  .about-contena__note {
    order: 0;
  }

  .about-contena__note {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}

/* ----theater-experience---- */

.theater-experience {
  margin: 10rem auto 0;
}

.theater-experience__inner {
  max-width: 75rem;
  width: 100%;
  margin: 10rem auto;
}

.theater-experience__title {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: clamp(2.8rem, 9vw, 5.4rem);
  margin: 6rem 4rem 2.4rem;
  text-align: center;
}

.theater-experience__img img {
  max-width: 58rem;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.theater-experience__note {
  margin: 4.4rem auto 0;
  text-align: left;
}

.theater-experience__link {
  display: block;
  margin: 6rem auto 0;
  width: fit-content;
}

.theater-experience__link {
  margin-top: 3.2rem;
}


@media (max-width: 768px) {
  .theater-experience__title {
    margin: 6rem 0 1.6rem;
  }

  .theater-experience__note {
    margin-top: 3.2rem;
  }
}


/* ----next-works---- */
.next-works {
  margin: 18rem 0;
}

.next-works__inner {
  background:
    url("../../img/contents-bg.png") repeat,
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 30%);
  border-radius: 0.4rem;
  max-width: 85rem;
  width: 100%;
  margin: 0 auto;
  padding: 6rem;
}

.next-works__column-wrap {
  margin-top: 4rem;
  display: flex;
  flex-flow: column;
  gap: 6rem;
}

.next-works__column {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4rem;
}

.next-works__column:nth-child(n+2) {
  border-top: 1px solid #08131a;
  padding-top: 6rem;
}

.next-works__column .btn-small-wh {
  padding: 1.4rem 3.6rem 1.4rem 4rem;
}

.next-works__img img {
  display: block;
  max-width: 42rem;
  width: 100%;
}

.next-works__info {
  text-align: center;
}

.next-works__subtitle {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}

.next-works__title {
  margin-top: 0.8rem;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 3.6rem;
  letter-spacing: 0.1rem;
}

.next-works__date {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  line-height: 1.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .next-works {
    margin: 10rem 0;
  }

  .next-works__inner {
    padding: 6rem 2.8rem;
  }

  .next-works__img img {
    max-width: 100%;
  }

  .next-works__column-wrap {
    margin-top: 3.2rem;
  }

  .next-works__column {
    gap: 3.2rem;
  }
}

/* ----top-news---- */

.top-section {
  max-width: 110rem;
  width: 100%;
  margin: 10rem auto 0;
}

.top-news__inner {
  margin: 4rem auto 0;
  max-width: 75rem;
  width: 100%;
}

.pager-next__wrap {
  margin-top: 2.4rem;
  display: block;
  width: fit-content;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.pager-next__wrap span {
  font-size: 1.4rem;
  line-height: 1.4rem;
}

.pager-next {
  background: linear-gradient(#08131a, #08131a) 0 100% / 0 1px no-repeat;
  transition: background-size .25s cubic-bezier(.165, .84, .44, 1);
  color: #08131a;
  text-decoration: none;
}

.pager-next:hover {
  background-size: 100% 1px;
}

.arrow-next {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-right: 0.8rem;
  border-radius: 9999px;
  background-color: #08131a;
}

.arrow-next::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #08131a;
  transform: rotate(34deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

/* ----todays-contena---- */

.todays-contena__inner {
  margin: 4rem auto 0;
  max-width: 35.7rem;
  background:
    url("../../img/contents-bg.png") repeat,
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 30%);
  border: 0.1rem solid #E0D8CC;
  border-radius: 0.2rem;
  padding: 2.8rem 2.8rem 3.2rem;
  position: relative;
}

.todays-contena__notice {
  width: 6.8rem;
  height: 6.8rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.3rem;
  letter-spacing: 0;
  background-color: #fff;
  border: 0.1rem solid #08131a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1.6rem;
  right: 1.6rem;
  z-index: 2;
}

.todays-contena__img {
  z-index: 1;
  height: 30rem;
}

.todays-contena__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.todays-contena__comments {
  margin: 2.8rem auto 0;
  width: fit-content;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

@media (max-width: 768px) {
  .todays-contena__inner {
    margin-top: 3.2rem;
  }
}

/* ----blog-contents---- */
.blog-contents__inner {
  justify-content: center;
  gap: 2.4rem;
  margin-top: 4rem;
}

.blog-contents__block {
  width: fit-content;
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 1.6rem;
}

.blog-contents__note {
  text-align: left;
}

@media (max-width: 768px) {
  .blog-contents__inner {
    margin-top: 3.2rem;
    flex-flow: column;
    gap: 3.2rem;
  }

  .blog-contents__block {
    gap: 0.8rem;
  }
}

/* ----top-profile---- */
.top-profile {
  margin: 10rem auto;
  background:
    url("../../img/contents-bg.png") repeat,
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 30%);
  border-radius: 0.4rem;
  padding: 6rem;
  max-width: 85rem;
  width: 100%;
}

.profile-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4.4rem;
}

.profile-kv {
  flex-shrink: 0;
}

.profile-kv img {
  display: block;
  max-width: 22rem;
  width: 100%;
}

.profile-block {
  flex-shrink: 1;
}

.profile-name {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.4;
}

.profile-border {
  margin-top: 1.6rem;
  height: 0.1rem;
  width: 100%;
  display: block;
  object-fit: cover;
}

.profile-intro {
  margin-top: 2.4rem;
}

.top-profile__link {
  width: fit-content;
  margin: 3.2rem auto 0;
}

@media (max-width: 768px) {
  .top-profile {
    padding: 6rem 2.8rem;
    margin-left: 2.8rem;
    margin-right: 2.8rem;
    width: fit-content;
  }

  .profile-kv img {
    max-width: 100%;
  }

  .profile-intro {
    margin-top: 1.6rem;
  }

  .profile-wrap {
    flex-direction: column;
    gap: 4.8rem;
  }

  .profile-name.contents-title {
    font-size: 1.8rem;
  }

}

/* ----top-works-archive---- */
.top-works-archive {
  max-width: 100rem;
  width: 100%;
  margin: 10rem auto 0;
}

.top-works-archive .thum-cards-wrapper {
  margin-top: 4rem;
}

.top-works-archive__link {
  margin: 4rem auto 0;
  display: block;
  width: fit-content;
}


/* ----theater contoronica---- */

.theater-contronica {
  max-width: 75rem;
  width: 100%;
  margin: 10rem auto 0;
}

.footer-bnr {
  display: block;
  width: 100%;
}

.theater-contronica__intro {
  margin-top: 1.6rem;
  text-align: center;
}

.footer-bnr.is_sp {
  display: none;
}

@media (max-width: 768px) {
  .footer-bnr.is_sp {
    display: block;
  }

  .footer-bnr.is_pc,
  .theater-contronica__intro br {
    display: none;
  }

  .theater-contronica__intro {
    text-align: left;
    margin-top: 0.8rem;
  }
}