@charset "UTF-8";
.home-hero {
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .home-hero {
    flex-direction: column;
  }
}
.home-hero__image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home-hero__image {
    width: 100%;
  }
}
.home-hero__content {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: calc(100vh - 11.4rem);
}
@media screen and (max-width: 768px) {
  .home-hero__content {
    position: static;
    width: 100%;
    height: auto;
    margin-top: -7rem;
    padding-bottom: 5rem;
  }
}
.home-hero__title {
  width: 40.2083333333vw;
}
@media screen and (max-width: 768px) {
  .home-hero__title {
    width: 35.3rem;
  }
}

.layout-header {
  top: -11.4rem;
  will-change: top;
}
@media screen and (max-width: 768px) {
  .layout-header {
    top: -6rem;
  }
}

.home-hero__title, .home-hero__image {
  opacity: 0;
}

.is-loaded .layout-header {
  top: 0;
  transition: top 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}
.is-loaded .home-hero__title, .is-loaded .home-hero__image {
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.home-section {
  position: relative;
  padding: 12rem 4rem;
}
@media screen and (max-width: 768px) {
  .home-section {
    padding: 6.5rem 2rem;
  }
}
.home-section__inner {
  width: 100%;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
.home-section__title {
  margin-top: 10rem;
  color: #3AA7F2;
  font-size: 7rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-section__title {
    margin-top: 6rem;
    font-size: 3.6rem;
  }
}
.home-section__title:first-child {
  margin-top: 0;
}

.home-comment-button {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  height: 3.6rem;
  padding: 0 1.8rem;
  color: #fff;
  background: #3AA7F2;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  transition: background-color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1), color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.home-comment-button::before {
  content: "";
  display: block;
  width: 2.7rem;
  height: 2.2rem;
  background: #fff;
  mask: url("/assets/img/home/icn_comment.svg") no-repeat center center/contain;
  transition: background-color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (hover: hover) {
  .home-comment-button:hover {
    background: #FF5F00;
  }
}
@media (hover: none) {
  .home-comment-button:active {
    background: #FF5F00;
  }
}

.home-comment {
  position: relative;
  width: 90rem;
  padding: 4.8rem 4.4rem 6.8rem;
  border: 0.2rem solid #fff;
  border-radius: 1rem;
  color: #fff;
  background: #2B2B2B;
}
@media screen and (max-width: 768px) {
  .home-comment {
    width: 33.4rem;
    padding: 6rem 2rem 4rem;
  }
}
.home-comment::before, .home-comment::after {
  content: "";
  position: absolute;
  width: 4.1rem;
  height: 3.3rem;
  background: url("/assets/img/home/img_corner.svg") no-repeat center center/contain;
}
.home-comment::before {
  top: -0.4rem;
  left: -0.4rem;
}
.home-comment::after {
  top: -0.4rem;
  right: -0.4rem;
  transform: rotateY(180deg);
}
.home-comment__inner::before, .home-comment__inner::after {
  content: "";
  position: absolute;
  width: 4.1rem;
  height: 3.3rem;
  background: url("/assets/img/home/img_corner.svg") no-repeat center center/contain;
}
.home-comment__inner::before {
  bottom: -0.4rem;
  left: -0.4rem;
  transform: rotateX(180deg);
}
.home-comment__inner::after {
  bottom: -0.4rem;
  right: -0.4rem;
  transform: rotateY(180deg) rotateX(180deg);
}
.home-comment__title {
  font-size: 3rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-comment__title {
    font-size: 2.6rem;
    text-align: right;
  }
}
.home-comment__header {
  position: absolute;
  top: 4.8rem;
  left: -3rem;
  min-width: 22rem;
  padding: 1.6rem 3.2rem;
  border: 0.2rem solid #fff;
  border-radius: 0.6rem;
  background: #2B2B2B;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-comment__header {
    top: 3.8rem;
    left: -1.6rem;
    min-width: 18.6rem;
    padding: 1.2rem 1.8rem;
  }
}
.home-comment__role {
  font-size: 1.4rem;
}
.home-comment__name {
  margin-top: 0.8rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .home-comment__name {
    font-size: 2rem;
  }
}
.home-comment__content {
  display: flex;
  gap: 3.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .home-comment__content {
    flex-direction: column;
    gap: 3rem;
    margin-top: 3.8rem;
  }
}
.home-comment__text {
  flex: 1;
}
.home-comment__image {
  width: calc(var(--w) / 10 * 1rem);
}
@media screen and (max-width: 768px) {
  .home-comment__image {
    width: 100%;
  }
}
.home-comment__image--original02 {
  margin: -7rem 0 -2.8rem;
}
@media screen and (max-width: 768px) {
  .home-comment__image--original02 {
    margin: 0;
  }
}

.home-trailer {
  padding: 14rem 4rem;
  background: #E8F7FF;
}
@media screen and (max-width: 768px) {
  .home-trailer {
    padding: 5rem 0;
  }
}
.home-trailer__background {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.home-trailer__background picture, .home-trailer__background img {
  display: block;
  width: 100%;
}
.home-trailer__foreground {
  position: relative;
  z-index: 1;
}
.home-trailer__player {
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
.home-trailer__player iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.home-cast {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .home-cast {
    margin-top: 2rem;
  }
}
.home-cast__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
}
.home-cast__name {
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-cast__name {
    font-size: 2.4rem;
  }
}
.home-cast__cv {
  margin-top: 1.5rem;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-cast__cv {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
.home-cast__button {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .home-cast__button {
    margin-top: 1rem;
  }
}

.home-staff {
  display: flex;
  justify-content: center;
  gap: 10rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .home-staff {
    flex-wrap: wrap;
    gap: 3rem 0;
    margin-top: 2rem;
  }
}
.home-staff__item {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-staff__item {
    flex-direction: column;
    align-items: center;
    gap: 1rem 0;
    width: 50%;
  }
}
.home-staff__content {
  white-space: nowrap;
}
.home-staff__position {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-staff__position {
    font-size: 1.2rem;
  }
}
.home-staff__name {
  margin-top: 1rem;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-staff__name {
    font-size: 2rem;
  }
}
.home-staff__button {
  flex-shrink: 0;
}

.home-original {
  overflow: clip;
  color: #fff;
}
.home-original .home-section__title {
  color: #fff;
}
.home-original__background {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
.home-original__foreground {
  position: relative;
  z-index: 1;
}
.home-original__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-original__content {
    font-size: 2rem;
    margin-top: 3.5rem;
  }
}
.home-original__heading {
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-original__heading {
    font-size: 1.4rem;
  }
}
.home-original__list {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.7rem;
}
@media screen and (max-width: 768px) {
  .home-original__list {
    position: relative;
  }
}
.home-original__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .home-original__item {
    flex-direction: column;
    gap: 1rem;
  }
}
.home-original__item:nth-child(2)::before {
  content: "／";
  margin-right: 0.4rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .home-original__item:nth-child(2)::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 2rem;
    line-height: 1;
  }
}
.home-original__name {
  font-size: 2.4rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .home-original__name {
    font-size: 2rem;
  }
}
.home-original__button {
  flex-shrink: 0;
}
.home-original__button .home-comment-button {
  color: #3AA7F2;
  background: #fff;
}
.home-original__button .home-comment-button::before {
  background: #3AA7F2;
}
@media (hover: hover) {
  .home-original__button .home-comment-button:hover {
    color: #fff;
    background: #FF5F00;
  }
  .home-original__button .home-comment-button:hover::before {
    background: #fff;
  }
}
@media (hover: none) {
  .home-original__button .home-comment-button:active {
    color: #fff;
    background: #FF5F00;
  }
  .home-original__button .home-comment-button:active::before {
    background: #fff;
  }
}
.home-original__note {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-original__note {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
.home-original__banner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .home-original__banner {
    gap: 1.2rem;
    margin-top: 7rem;
  }
}
.home-original__banner-item {
  width: 32rem;
  background: #fff;
  border-radius: 1rem;
}
.home-original__banner-item a {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (hover: hover) {
  .home-original__banner-item a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .home-original__banner-item a:active {
    opacity: 0.6;
  }
}
