@charset "UTF-8";
.p-hero {
  width: 100%;
  padding-top: 56.25%;
  display: block;
  position: relative;
}
.p-hero__container {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-white-pearl);
}
.p-hero__movie {
  --clip: 50rem;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-hero__movie {
    --clip: 10rem;
  }
}
.is-load .p-hero__movie {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  animation: clip-in-circle 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-hero__movie::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-hero__movie-img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.2);
}
.is-load .p-hero__movie-img {
  transform: scale(1.001);
  transition: transform 10s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-hero__movie-img img {
  width: 100%;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
.p-hero__movie-player {
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white-pearl);
}
.p-hero__movie-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-hero__movie-player video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-hero__movie-icon {
  width: 15rem;
  height: 15rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__movie-icon {
    width: 7.8rem;
    height: 7.8rem;
  }
}
.p-hero__movie-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/btn_play_mark.png") no-repeat center/contain;
}
.p-hero__movie-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/btn_play_txt-reel.png") no-repeat center/contain;
  animation: rotate 10s linear infinite;
}

.p-top_news {
  width: 100%;
  display: block;
  position: relative;
  color: var(--color-text-white);
  padding: 12.8rem 0 14.2rem;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-top_news {
    padding: 6.4rem 0 8rem;
  }
}
.is-load .p-top_news {
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}
.p-top_news::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-orange);
}
.p-top_news__container {
  width: 90%;
  max-width: var(--max-width);
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-top_news__container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.p-top_news__header {
  width: 20rem;
  display: block;
  position: relative;
  margin-right: 5rem;
  opacity: 0;
  transform: translateX(-2rem);
}
@media screen and (max-width: 960px) {
  .p-top_news__header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 2rem;
  }
}
.is-load .p-top_news__header {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-top_news__title {
  display: block;
  position: relative;
  font-size: 5.2rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 960px) {
  .p-top_news__title {
    font-size: 3rem;
    letter-spacing: 0.02rem;
  }
  .p-top_news__title br {
    display: none;
  }
}
.p-top_news__btn {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-top_news__btn {
    margin-top: 4.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-top_news__btn {
    margin-left: 2rem;
  }
}
.p-top_news__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-2rem);
}
@media screen and (min-width: 961px) {
  .p-top_news__inner {
    flex: 1 1 0;
    min-width: 0;
  }
}
.is-load .p-top_news__inner {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.p-top_news__list {
  display: block;
  position: relative;
}
.p-top_news__list-item {
  display: block;
  position: relative;
}
.p-top_news__list-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 0.1rem solid var(--color-white-pearl);
  pointer-events: none;
}
.p-top_news__list-item:first-child {
  border-top: 0.1rem solid var(--color-white-pearl);
}

.p-top_works {
  width: 100%;
  display: block;
  position: relative;
  padding: 12.8rem 0 16.2rem;
}
@media screen and (max-width: 960px) {
  .p-top_works {
    padding: 7.6rem 0 8rem;
  }
}
.p-top_works__container {
  width: 90%;
  max-width: var(--max-width);
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-top_works__header {
  display: block;
  position: relative;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateX(-2rem);
}
@media screen and (max-width: 960px) {
  .p-top_works__header {
    margin-bottom: 2.7rem;
  }
}
.is-load .p-top_works__header {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-top_works__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.7rem 9rem 0.7rem 0;
}
@media screen and (max-width: 960px) {
  .p-top_works__title {
    padding: 0.7rem 5.5rem 0.7rem 0;
  }
}
.p-top_works__title-text {
  display: block;
  position: relative;
  font-size: 5.2rem;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.3rem;
  color: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .p-top_works__title-text {
    font-size: 3rem;
    letter-spacing: -0.1rem;
  }
}
@media (hover: hover) {
  .p-top_works__title-text {
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-top_works__title:hover .p-top_works__title-text {
    transform: translateX(1rem);
  }
}
.p-top_works__title-arrow {
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 50%;
  right: 0;
  border-radius: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-top_works__title-arrow {
    width: 4rem;
    height: 4rem;
  }
}
@media (hover: hover) {
  .p-top_works__title-arrow {
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-top_works__title:hover .p-top_works__title-arrow {
    transform: translate(1rem, -50%);
  }
}
.p-top_works__title-arrow::before {
  content: "";
  width: 6rem;
  height: 6rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--color-orange);
}
@media screen and (max-width: 960px) {
  .p-top_works__title-arrow::before {
    width: 4rem;
    height: 4rem;
  }
}
@media (hover: hover) {
  .p-top_works__title-arrow::before {
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-top_works__title:hover .p-top_works__title-arrow::before {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.p-top_works__title-img {
  width: 2.7rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-top_works__title-img {
    width: 1.5rem;
  }
}
.p-top_works__title-svg {
  display: block;
  position: relative;
  fill: var(--color-white-pearl);
}
@media (hover: hover) {
  .p-top_works__title:hover .p-top_works__title-svg {
    animation: arrow2 1s linear;
  }
}
.p-top_works__btn {
  display: block;
  position: relative;
  margin-top: 4.2rem;
}
.p-top_works__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(-2rem);
}
.is-load .p-top_works__inner {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}

.p-top_works_slide {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.p-top_works_slide__inner {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.p-top_works_slide__list {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 0;
  letter-spacing: -0.4em;
  white-space: nowrap;
}
.p-top_works_slide__list-item {
  width: 31.4rem;
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-size: 1rem;
  letter-spacing: normal;
  white-space: normal;
}
@media screen and (max-width: 960px) {
  .p-top_works_slide__list-item {
    width: 16.5rem;
  }
}
.p-top_works_slide__scrollbar {
  width: 100%;
  height: 0.4rem;
  position: relative;
  margin: 4.5rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-top_works_slide__scrollbar {
    height: 0.2rem;
    margin-top: 2.4rem;
  }
}
.p-top_works_slide__scrollbar::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-gray-paerl);
  border-radius: 200px;
}
.p-top_works_slide__scrollbar-item {
  height: 100%;
  cursor: grab;
}
.p-top_works_slide__scrollbar-item::before {
  content: "";
  width: 100%;
  height: 0.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
  border-radius: 200px;
}
@media screen and (max-width: 960px) {
  .p-top_works_slide__scrollbar-item::before {
    height: 0.4rem;
  }
}

.p-top_works_data {
  display: block;
  position: relative;
}
.p-top_works_data__header {
  display: block;
  position: relative;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 961px) {
  .p-top_works_data__header {
    padding-right: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-top_works_data__header {
    margin-bottom: 0.5rem;
  }
}
.p-top_works_data__cap {
  display: block;
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Be Vietnam Pro", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 961px) {
  .p-top_works_data__cap {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 960px) {
  .p-top_works_data__cap {
    margin-top: 1rem;
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .p-top_works_data__cap {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-top_works_data:hover .p-top_works_data__cap {
    color: var(--color-orange);
  }
}
.p-top_works_data__thumb {
  width: 100%;
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-top_works_data__thumb {
    border-radius: 0.8rem;
  }
}
.p-top_works_data__thumb-img {
  width: 100%;
  padding-top: 140%;
  display: block;
  position: relative;
  background: var(--color-orange);
  margin: 0 !important;
}
@media screen and (max-width: 960px) {
  .p-top_works_data__thumb-img {
    padding-top: 138%;
  }
}
@media (hover: hover) {
  .p-top_works_data__thumb-img {
    transform: scale(1.001);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-top_works_data:hover .p-top_works_data__thumb-img {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.p-top_works_data__thumb-img img {
  width: 100%;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-top_works_data__inner {
  display: block;
  position: relative;
}
.p-top_works_data__title {
  display: block;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .p-top_works_data__title {
    font-size: 1.1rem;
  }
}
@media (hover: hover) {
  .p-top_works_data__title {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-top_works_data:hover .p-top_works_data__title {
    color: var(--color-orange);
  }
}