@charset "UTF-8";
/* ================================================== */
/* index */
/* ================================================== */
/* ===== ローディング画面 ===== */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.loading .loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: var(--color-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading .loading-animation .logo {
  position: relative;
  width: 360px;
}
.loading .loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 600px) {
  .loading .loading-animation .logo {
    top: -50px;
    width: 240px;
  }
}
/* ===== MAIN VIEW ===== */
#main-view {
  height: 100vh;
  padding: 110px 7.5% 0;
}
#main-view .slider {
  width: 100%;
}
#main-view .slider .slider-item {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#main-view .slider .slider-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#main-view .slider .img01::before {
  background-image: url(../img/index/main-view_img01_pc.jpg);
}
#main-view .slider .img02::before {
  background-image: url(../img/index/main-view_img02_pc.jpg);
  background-position: left center;
}
#main-view .slider .img03::before {
  background-image: url(../img/index/main-view_img03_pc.jpg);
}
#main-view .slider .img04::before {
  background-image: url(../img/index/main-view_img04_pc.jpg);
  background-position: 32% center;
}
#main-view .slider .img05::before {
  background-image: url(../img/index/main-view_img05_pc.jpg);
  background-position: 28% center;
}
#main-view .slider .catch {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
  max-width: 760px;
}

@media screen and (min-width: 1301px) {
  #main-view {
    padding-left: 130px;
    padding-right: 130px;
  }
}
@media screen and (max-width: 1024px) {
  #main-view {
    padding: 110px 0 0;
  }
  #main-view .slider .slider-item {
    height: calc(100vh - 390px);
  }
}
@media screen and (max-width: 600px) {
  #main-view {
    padding: 75px 0 0;
  }
  #main-view .slider .slider-item {
    height: calc(100vh - 230px);
  }
  #main-view .slider .img01::before {
    background-image: url(../img/index/main-view_img01_sp.jpg);
  }
  #main-view .slider .img02::before {
    background-image: url(../img/index/main-view_img02_sp.jpg);
  }
  #main-view .slider .img03::before {
    background-image: url(../img/index/main-view_img03_sp.jpg);
  }
  #main-view .slider .img04::before {
    background-image: url(../img/index/main-view_img04_sp.jpg);
  }
  #main-view .slider .img05::before {
    background-image: url(../img/index/main-view_img05_sp.jpg);
    background-position: center;
  }
  #main-view .slider .catch {
    position: relative;
    right: auto;
    top: auto;
    transform: translateX(0);
    width: 35%;
    margin: 3% 8% 0 auto;
    max-width: 160px;
  }
}
/* ===== MAIN VIEW（catchアニメ設定） ===== */
.catch rect {
  opacity: 0;
  transform: translateX(100px) scaleX(0);
  animation: rect-anime-re 1s both;
}
.catch path,
.catch circle {
  opacity: 0;
  transform: translateX(50px);
  animation: path-anime-re 0.8s both;
}

.slick-active .catch rect {
  animation: rect-anime 1s both;
}
.slick-active .catch path,
.slick-active .catch circle {
  animation: path-anime 1s 1s both;
}

@keyframes rect-anime-re {
  from {
    opacity: 1;
    transform: translateX(0);
    transition: 0.5s cubic-bezier(1, -0.01, 0.37, 1);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}
@keyframes rect-anime {
  from {
    opacity: 0;
    transform: translateX(100px) scaleX(0);
    transition: 0.5s cubic-bezier(1, -0.01, 0.37, 1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}
@keyframes path-anime-re {
  from {
    opacity: 1;
    transform: translateX(0);
    transition: 0.5s cubic-bezier(1, -0.01, 0.37, 1);
  }
  to {
    opacity: 0;
    transform: translateX(50px);
  }
}
@keyframes path-anime {
  from {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.5s cubic-bezier(1, -0.01, 0.37, 1);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===== MESSAGE ===== */
#message {
  position: relative;
  padding: 140px 0 250px;
}
#message .wrap {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
#message .headline {
  position: absolute;
  width: 470px;
}
#message .title {
  width: 75%;
}
#message .catch {
  width: 75%;
  margin: 40px 0 0 auto;
}
#message .text {
  position: relative;
  width: 510px;
  text-align: justify;
  margin: 0 0 0 auto;
}
#message .text p {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
}
#message .text p:not(:last-child) {
  margin: 0 0 2.5em;
}
#message .loop-text {
  position: absolute;
  left: 0;
  bottom: 280px;
  display: flex;
  align-items: center;
  width: 5000px;
  overflow: hidden;
}
#message .loop-text .loop-item {
  width: 100%;
  font-size: 140px;
  font-size: 8.75rem;
  font-family: var(--fontfamily-en);
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 0 0.5em;
  white-space: nowrap;
  opacity: 0.05;
  animation: scroll-loop infinite linear 50s both;
}
@keyframes scroll-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 1300px) {
  #message .headline {
    width: calc(100% - 500px);
    min-width: 200px;
    max-width: 420px;
  }
  #message .text {
    width: 410px;
  }
}
@media screen and (max-width: 1024px) {
  #message {
    padding: 50px 0 250px;
  }
}
@media screen and (max-width: 768px) {
  #message {
    padding: 0 0 200px;
  }
  #message .headline {
    position: relative;
    width: 100%;
  }
  #message .title {
    width: 240px;
  }
  #message .catch {
    width: 90%;
    max-width: 460px;
    margin: 30px 0 50px;
    padding: 0 0 0 10%;
  }
  #message .text {
    width: 100%;
    padding: 0 0 0 15%;
  }
  #message .loop-text {
    bottom: 240px;
  }
}
@media screen and (max-width: 600px) {
  #message .headline {
    position: relative;
    width: 100%;
  }
  #message .title {
    width: 180px;
    margin: 0 0 0 -5%;
  }
  #message .catch {
    margin: 20px 0 60px;
    padding: 0;
  }
  #message .text {
    width: 100%;
    padding: 0;
  }
  #message .text p {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}
/* ===== related_company（indexのみ） ===== */
#index #related_company {
  background-color: var(--color-bluegray);
  padding: 70px 0 125px;
}
#index #related_company .wrap {
  width: 75%;
  max-width: 1600px;
  margin: 0 0 0 auto;
}
#index #related_company .title {
  position: absolute;
  top: -100px;
  display: flex;
  width: 60%;
  max-width: 1000px;
  min-width: 720px;
  background: var(--color-bluegradation);
  padding: 65px 0 100px 180px;
  white-space: nowrap;
  margin: 0;
}
#index #related_company .title .jp,
#index #related_company .title .en {
  line-height: 1em;
}
#index #related_company .title .jp {
  color: var(--color-white);
  font-size: 50px;
  font-size: 3.125rem;
  letter-spacing: 0.05em;
}
#index #related_company .title .en {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: var(--fontfamily-en);
  letter-spacing: 0.05em;
  top: 0.3em;
  margin: 0 0 0 1em;
}
#index #related_company .company_link {
  max-width: 690px;
}

@media screen and (max-width: 1024px) {
  #index #related_company .wrap {
    width: 80%;
  }
  #index #related_company .title {
    width: calc(10% + 560px);
    min-width: auto;
    padding: 65px 0 100px 12.5%;
  }
}
@media screen and (max-width: 768px) {
  #index #related_company {
    padding: 70px 0 100px;
  }
  #index #related_company .wrap {
    width: 90%;
  }
  #index #related_company .title {
    top: -50px;
    width: calc(10% + 420px);
    padding: 40px 0 80px 10%;
  }
  #index #related_company .title .jp {
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 600px) {
  #index #related_company {
    padding: 30px 0 100px;
  }
  #index #related_company .wrap {
    width: 80%;
    margin: 0 auto;
  }
  #index #related_company .title {
    top: -50px;
    width: calc(10% + 240px);
    padding: 30px 0 60px 10%;
  }
  #index #related_company .title .jp {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  #index #related_company .title .en {
    font-size: 14px;
    font-size: 0.875rem;
    font-family: var(--fontfamily-en);
    letter-spacing: 0.05em;
  }
}
/* ===== related_person-job（indexのみ） ===== */
#index #related_person-job::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: calc(100% - 120px);
  background-color: var(--color-bluegray);
}
#index #related_person-job .title .en {
  color: var(--color-skyblue);
}
#index #related_person-job .fx-rollin.active::after {
  background-color: var(--color-bluegray);
}

/*# sourceMappingURL=index.css.map */
