@charset "UTF-8";
/*　基本
=============================================================================================== */
/*　フォント
=============================================================================================== */
/*　media queries
=============================================================================================== */
/*　余白
=============================================================================================== */
/*　アニメーション
=============================================================================================== */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes menuOpen02 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: rotate(-40deg) translate(3px, -4px);
  }
}
@keyframes scrollAnime {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(20%);
  }
}
@keyframes loop-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes slide {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  45% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  55% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@keyframes slideC {
  0% {
    transform-origin: left top;
    transform: scale(1, 0);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: left bottom;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: left bottom;
    transform: scale(1, 0);
  }
}
/*　メインビジュアル
=============================================================================================== */
#animation .main-v {
  display: flex;
  flex-wrap: wrap;
  background-color: #0B0B0B;
  color: #EFEFEF;
  padding-top: 120px;
  min-height: 100vh;
}
@media (max-width: 767px) {
  #animation .main-v {
    padding-top: 72px;
    min-height: 920px;
    display: block;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(#0B0B0B 90%, rgba(11, 11, 11, 0) 90%);
  }
}
#animation .main-v .main-text {
  width: 70%;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  #animation .main-v .main-text {
    width: 100%;
  }
}
#animation .main-v .main-text h1 {
  font-size: 18vw;
  position: relative;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  padding-top: 40px;
  padding-bottom: 73px;
  padding-left: 5%;
  margin-bottom: 40px;
}
#animation .main-v .main-text h1::before {
  content: "";
  width: 200px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 20px;
}
@media (min-width: 992px) {
  #animation .main-v .main-text h1::before {
    display: none;
  }
}
@media (max-width: 767px) {
  #animation .main-v .main-text h1 {
    font-size: 24vw;
    padding-bottom: 28px;
    padding-right: 0;
    display: inline-block;
  }
}
#animation .main-v .main-text h1 .h1-textEn span.delay2 {
  width: 7%;
}
#animation .main-v .main-text h1 .h1-textSub {
  position: absolute;
  display: block;
  line-height: 1;
  font-size: 8vw;
  color: #909090;
  right: 0;
  bottom: 0;
}
#animation .main-v .main-text .audition-btn-box {
  padding-bottom: 40px;
}
#animation .main-v .main-text .audition-btn-box .audition-btn {
  display: block;
  width: 70%;
  border-radius: 0 200px 200px 0;
  background-color: #EE6352;
  color: #fff;
  padding: 40px 40px 40px 5%;
  font-size: 18px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-text .audition-btn-box .audition-btn {
    padding-right: 60px;
  }
}
#animation .main-v .main-text .audition-btn-box .audition-btn::before {
  content: "";
  display: inline-block;
  width: 63px;
  height: 63px;
  mask: url(../images/audition_btn.svg);
  -webkit-mask: url(../images/audition_btn.svg);
  mask-position: top;
  -webkit-mask-position: top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
  position: absolute;
  right: 32px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-text .audition-btn-box .audition-btn::before {
    width: 50px;
    height: 50px;
  }
}
#animation .main-v .main-text .audition-btn-box .audition-btn:hover::before {
  animation: rotate 1s linear infinite;
}
@media (max-width: 767px) {
  #animation .main-v .main-text .audition-btn-box {
    display: none;
  }
}
#animation .main-v .main-img-wrap {
  width: 30%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  #animation .main-v .main-img-wrap {
    width: 100%;
    height: 595px;
    overflow: hidden;
  }
}
#animation .main-v .main-img {
  position: relative;
  animation: scrollAnime linear 1s forwards;
  animation-timeline: view();
  animation-range: exit-crossing;
}
@media (max-width: 767px) {
  #animation .main-v .main-img {
    width: 100%;
    max-width: 380px;
    margin: auto;
  }
}
#animation .main-v .main-img .main-img-box {
  overflow: hidden;
}
#animation .main-v .main-img .main-img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #EE6352;
  z-index: 1;
  transform-origin: left top;
  transform: scale(0, 1);
}
#animation .main-v .main-img .main-img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.1s;
  transition-delay: 0.5s;
}
#animation .main-v .main-img .main-img01 {
  width: 210px;
  height: 270px;
  position: absolute;
  right: 260px;
  top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-img .main-img01 {
    width: 190px;
    height: 240px;
    right: 230px;
  }
}
@media (max-width: 767px) {
  #animation .main-v .main-img .main-img01 {
    width: 200px;
    height: 260px;
    right: 180px;
    top: 20px;
  }
}
#animation .main-v .main-img .main-img02 {
  width: 220px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-img .main-img02 {
    width: 190px;
    height: 270px;
  }
}
@media (max-width: 767px) {
  #animation .main-v .main-img .main-img02 {
    width: 140px;
    height: 180px;
    top: 0;
    right: 20px;
  }
}
#animation .main-v .main-img .main-img03 {
  width: 170px;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 250px;
  top: 300px;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-img .main-img03 {
    width: 140px;
    height: 200px;
    right: 220px;
    top: 270px;
  }
}
@media (max-width: 767px) {
  #animation .main-v .main-img .main-img03 {
    right: 180px;
    width: 90px;
    height: 120px;
    top: 300px;
  }
}
#animation .main-v .main-img .main-img04 {
  width: 100px;
  height: 125px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 120px;
  top: 360px;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-img .main-img04 {
    width: 90px;
    height: 115px;
    right: 110px;
    top: 330px;
  }
}
@media (max-width: 767px) {
  #animation .main-v .main-img .main-img04 {
    width: 190px;
    height: 240px;
    right: -20px;
    top: 200px;
  }
}
#animation .main-v .main-img .main-img05 {
  width: 100px;
  height: 125px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 260px;
  top: 560px;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-img .main-img05 {
    display: none;
  }
}
@media (max-width: 767px) {
  #animation .main-v .main-img .main-img05 {
    width: 130px;
    height: 155px;
    right: 200px;
    top: 440px;
  }
}
#animation .main-v .main-img .main-img06 {
  width: 200px;
  height: 266px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 22px;
  top: 530px;
}
@media (min-width: 768px) and (max-width: 991px) {
  #animation .main-v .main-img .main-img06 {
    display: none;
  }
}
@media (max-width: 767px) {
  #animation .main-v .main-img .main-img06 {
    width: 90px;
    height: 120px;
    right: 90px;
    top: 460px;
  }
}
#animation.done .main-v .main-img .main-img-box img {
  opacity: 1;
}
#animation.done .main-v .main-img .main-img-box::before {
  animation: slide 1s ease 0s forwards;
}

.top h2.h2-textEn {
  font-size: 11vw;
  line-height: 1;
  margin-bottom: 56px;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  .top h2.h2-textEn {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .top h2.h2-textEn {
    font-size: 15vw;
  }
}
.top h2 .h2-textJp-text {
  display: inline-block;
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .top h2 .h2-textJp-text {
    font-size: 18px;
  }
}
.top h2 .h2-textJp-text span {
  padding: 8px 24px;
  background-color: #0B0B0B;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .top .message {
    margin-top: 40px;
  }
}
.top .message h2 {
  color: #fff;
  text-align: center;
}
.top .message .message-text {
  font-size: 24px;
  text-align: center;
}
.top .message .message-text p {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .top .message .message-text {
    font-size: 20px;
  }
}
.top .tarents .tarents-slide {
  height: 450px;
}
@media (min-width: 768px) {
  .top .tarents .tarents-slide {
    margin-top: -150px;
  }
}
@media (max-width: 767px) {
  .top .tarents .tarents-slide {
    margin-top: 40px;
  }
}
.top .tarents .tarents-slide .swiper {
  max-width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .top .tarents .tarents-slide .swiper {
    max-width: calc(100% - 420px);
    margin-left: 420px;
  }
}
.top .tarents .tarents-slide .swiper-wrapper {
  height: 100%;
}
.top .tarents .tarents-slide .swiper-wrapper .swiper-slide {
  position: relative;
}
.top .tarents .tarents-slide .swiper-wrapper .swiper-slide .tarents-img {
  height: 100%;
}
.top .tarents .tarents-slide .swiper-wrapper .swiper-slide .tarents-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top .tarents .tarents-slide .swiper-wrapper .swiper-slide h4 {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background-color: #0B0B0B;
  color: #fff;
  padding: 8px 32px;
}
.top .works h2, .top .audition h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top .works {
  background-color: #fff;
  padding-top: 128px;
  padding-bottom: 128px;
  position: relative;
}
@media (max-width: 767px) {
  .top .works {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.top .works .h2-letter {
  position: absolute;
  right: 0;
  top: -70px;
}
@media (max-width: 575px) {
  .top .works .h2-letter {
    top: -30px;
  }
}
.top .works .h2-letter .letter-text .border {
  -webkit-text-stroke: 1px #EFEFEF;
  text-stroke: 1px #EFEFEF;
}
.top .works .works-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
@media (max-width: 767px) {
  .top .works .works-list {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.top .works .works-list .works-list-box {
  width: 33.333%;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .top .works .works-list .works-list-box {
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.top .works .works-list .works-list-box .works-img {
  display: flex;
  margin-bottom: 8px;
}
.top .works .works-list .works-list-box h4 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}
.top .audition {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-image: url(../images/audition_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.top .audition > div {
  padding-top: 128px;
  padding-bottom: 128px;
}
@media (max-width: 767px) {
  .top .audition > div {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.top .audition::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(11, 11, 11, 0.8);
  z-index: 1;
}
.top .audition > div {
  position: relative;
  z-index: 10;
  color: #fff;
}
.top .audition .audition-text {
  text-align: center;
  margin-bottom: 80px;
}
.top .audition .audition-text p {
  margin-bottom: 12px;
}
.top .audition .audition-text p:first-child {
  font-size: 18px;
}
.top .audition .audition-point {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .top .audition .audition-point {
    justify-content: space-around;
  }
}
@media (max-width: 991px) {
  .top .audition .audition-point .audition-point-box {
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .top .audition .audition-point .audition-point-box:first-child {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .top .audition .audition-point .audition-point-box {
    width: 280px;
    height: 280px;
  }
}
@media (min-width: 1200px) {
  .top .audition .audition-point .audition-point-box {
    width: 330px;
    height: 330px;
  }
}
.top .audition .audition-point .audition-point-box .audition-point-round {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #EFEFEF;
}
@media (max-width: 991px) {
  .top .audition .audition-point .audition-point-box .audition-point-round {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 575px) {
  .top .audition .audition-point .audition-point-box .audition-point-round {
    width: 140px;
    height: 140px;
    font-size: 16px;
  }
}
.top .audition .audition-point .audition-point-box .audition-point-round span {
  font-size: 42px;
  display: block;
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
}
@media (max-width: 575px) {
  .top .audition .audition-point .audition-point-box .audition-point-round span {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.top .contact {
  margin-bottom: 128px;
}
@media (max-width: 767px) {
  .top .contact {
    margin-bottom: 96px;
  }
}
.top .contact h2 {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .top .contact h2 {
    margin-bottom: 40px;
  }
}
.top .contact .contactList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}
@media (max-width: 575px) {
  .top .contact .contactList {
    margin-left: 0;
    margin-right: 0;
  }
}
.top .contact .contactList .contact-box {
  width: 50%;
  padding: 16px;
}
@media (max-width: 575px) {
  .top .contact .contactList .contact-box {
    width: 100%;
    padding: 8px 0;
  }
}
.top .contact .contactList .contact-box a {
  display: block;
  background-color: #1481BA;
  color: #fff;
  text-align: center;
  padding: 40px 32px;
  transition: 0.3s;
}
.top .contact .contactList .contact-box a h3 {
  margin-bottom: 8px;
}
.top .contact .contactList .contact-box a div {
  position: relative;
  display: inline-block;
}
.top .contact .contactList .contact-box a div::after {
  content: "";
  width: 17px;
  height: 14px;
  display: inline-block;
  background-color: #fff;
  mask: url(../images/arrow.svg);
  -webkit-mask: url(../images/arrow.svg);
  mask-position: top;
  -webkit-mask-position: top;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: 0.3s;
  margin-left: 4px;
}
.top .contact .contactList .contact-box a:hover, .top .contact .contactList .contact-box afocus {
  background-color: #EE6352;
  transform: scale(1.05);
}
.top .contact .contactList .contact-box a:hover div::after, .top .contact .contactList .contact-box afocus div::after {
  transform: translateY(2px) rotate(360deg);
}/*# sourceMappingURL=top.css.map */