@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);
  }
  45% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  55% {
    transform-origin: left bottom;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: left bottom;
    transform: scale(1, 0);
  }
}
/*　メインビジュアル
=============================================================================================== */
.page .h1-wrap {
  background-color: #0B0B0B;
  color: #EFEFEF;
  padding-top: 120px;
  padding-bottom: 24px;
  margin-bottom: 160px;
  position: relative;
}
.page .h1-wrap > div {
  position: relative;
}
.page .h1-wrap > div::before {
  content: "";
  width: 67px;
  height: 0;
  display: inline-block;
  background-color: #0B0B0B;
  mask: url(../images/h1_arrow.svg);
  -webkit-mask: url(../images/h1_arrow.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  left: -20px;
  top: 100%;
  transition: 0.3s;
  transition-delay: 0.3s;
}
@media (max-width: 991px) {
  .page .h1-wrap > div::before {
    left: 0px;
  }
}
.page .h1-wrap h1 {
  position: relative;
}
.page .h1-wrap h1 .h1-textEn {
  font-size: 11vw;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  display: block;
  margin-bottom: 24px;
  letter-spacing: -4px;
}
@media (max-width: 767px) {
  .page .h1-wrap h1 .h1-textEn {
    font-size: 13vw;
    letter-spacing: 0px;
  }
}
.page .h1-wrap h1 .h1-textSub {
  font-size: 32px;
  font-weight: 400;
  padding-left: 24px;
  display: inline-block;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page .h1-wrap h1 .h1-textSub {
    font-size: 24px;
  }
}
.page h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.done .page .h1-wrap > div::before {
  height: 130px;
}

.page-link {
  margin-top: 128px;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-image: url(../images/audition_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .page-link {
    margin-top: 96px;
  }
}
.page-link a.audition-btn-bannar {
  position: relative;
  z-index: 10;
  background-color: rgba(11, 11, 11, 0.8);
}

/*　タレント一覧
=============================================================================================== */
.tarents-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.tarents-list .tarents-list-box {
  width: 33.333%;
  padding: 12px;
}
@media (max-width: 767px) {
  .tarents-list .tarents-list-box {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .tarents-list .tarents-list-box {
    width: 100%;
  }
}
.tarents-list .tarents-list-box h4 {
  font-size: 18px;
}

/*　COMPANY
=============================================================================================== */
.company01 .text-right {
  text-align: right;
  margin-top: 24px;
}

/*　メールフォーム
=============================================================================================== */
input[type=text], input[type=email], input[type=tel], input[type=password], select, textarea {
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  border: 1px solid #fff;
  border-color: transparent;
  color: #0B0B0B;
  padding: 12px 16px;
  margin: 5px 0;
  font-size: 16px;
  line-height: 1.42857143;
  border-radius: 0;
  transition: 0.5s;
  transition: background ease-in-out 0.5s, box-shadow ease-in-out 0.5s;
  transition: border-color ease-in-out 0.5s, box-shadow ease-in-out 0.5s;
  display: block;
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  width: 100%;
}

input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, select:focus, textarea:focus {
  border-color: #0B0B0B;
  outline: 0;
  box-shadow: none;
}

input[type=search], input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  box-sizing: border-box;
  cursor: pointer;
  min-width: 200px;
  margin: auto;
  text-align: center;
  display: block;
  padding: 16px 48px;
  background-color: #EE6352;
  color: #fff;
  transition: 0.3s;
  font-size: 18px;
  border: none;
  letter-spacing: 2px;
  margin-top: 32px;
}

.mail-form .required {
  font-size: 18px;
  color: #eb0000;
}

.contactus .contact-tab {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 4px solid #fff;
  position: relative;
}
.contactus .contact-tab::before {
  content: "";
  width: 50%;
  height: 4px;
  background-color: #EE6352;
  position: absolute;
  right: 0;
  transition: 0.3s;
  bottom: -4px;
}
.contactus .contact-tab .contact-tab-btn {
  width: 50%;
}
.contactus .contact-tab .contact-tab-btn span {
  display: inline-block;
  font-size: 20px;
  padding: 8px;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .contactus .contact-tab .contact-tab-btn span {
    font-size: 16px;
  }
}
.contactus .contact-tab .form2 span {
  color: #EE6352;
}
.contactus #form1 {
  display: none;
}
.contactus #form2 {
  display: block;
}
.contactus.formIris .contact-tab::before {
  right: 50%;
}
.contactus.formIris .form2 span {
  color: #0B0B0B;
}
.contactus.formIris .form1 span {
  color: #EE6352;
}
.contactus.formIris #form1 {
  display: block;
}
.contactus.formIris #form2 {
  display: none;
}
.contactus .form-wrap {
  overflow: hidden;
  position: relative;
}
.contactus .form-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #fff;
  z-index: 1;
  transform-origin: left top;
  transform: scale(1, 0);
}
.contactus.on .form-wrap::before {
  animation: slideC 1s ease 0s forwards;
}/*# sourceMappingURL=page.css.map */