@charset "UTF-8";
:root {
  --headerHeight: 140px;
  --flexMargin: 16px;
  --paddingSection: 40px;
  --paddingLR: 24px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 80px;
    --flexMargin: 8px;
    --paddingSection: 40px;
  }
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: -webkit-gradient(linear, left top, left bottom, from(#033ab5), to(#021d5b));
  background: -webkit-linear-gradient(#033ab5 0%, #021d5b 100%);
  background: linear-gradient(#033ab5 0%, #021d5b 100%);
}
#loading .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
#loading .fx_text > g path {
  --dashoffset: 1400px;
  --delay-time: 0.125s;
  --duration-time: 0.75s;
}
#loading .fx_text > g rect {
  --delay-time: 0.125s;
  --duration-time: 0.75s;
}
#loading .main_area {
  max-width: 90%;
  margin-top: 64px;
  padding: 80px 0 144px;
  background: center/contain url("../img/index/index_mv_icon.svg") no-repeat;
}
#loading .main_area img,
#loading .main_area svg {
  margin-left: auto;
  margin-right: auto;
}
#loading .sub_area {
  text-align: center;
  font-size: clamp(1.125rem, 1.82292vw, 2.1875rem);
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: 15%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#loading .sub_area .fx_fadeUp {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
@media screen and (max-width: 959px) {
  #loading .main_area {
    margin-top: 0;
  }
  #loading .sub_area {
    width: 100%;
    bottom: 25%;
  }
}

/*========== トップページ ==========*/
body {
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  body {
    overflow: visible;
  }
}

#header .menu_area {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
#header.upper .menu_area {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.layout_index {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.layout_index .fx_text > g path {
  -webkit-animation-name: none;
          animation-name: none;
}
.layout_index .fx_text.trigger > g path {
  -webkit-animation-name: svgAnime_aqua;
          animation-name: svgAnime_aqua;
  --dashoffset: 5600px;
  --start-delay: 0.5s;
  --delay-time: 0.25s;
  --duration-time: 1s;
}
.layout_index > * {
  width: 50%;
}
.layout_index .title {
  font-family: "Viga", sans-serif;
  font-size: clamp(2rem, 2.85715vw, 2.5rem);
}
.layout_index .text {
  font-size: clamp(1rem, 1.4286vw, 1.25rem);
  font-weight: 600;
  line-height: 2.5;
  margin-top: 1em;
}
.layout_index .slider_area {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-top: 64px;
}
.layout_index .text_img {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  position: absolute;
  z-index: 20;
}
.layout_index .btn_01 {
  font-size: clamp(1rem, 1.4286vw, 1.25rem);
}
@media screen and (max-width: 959px) {
  .layout_index {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .layout_index .text_area {
    width: 100%;
  }
  .layout_index .slider_area {
    width: 100%;
    margin-top: 80px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .layout_index .slider_area .text_img {
    height: 30%;
  }
  .layout_index .text {
    line-height: 1.75;
  }
  .layout_index .btn_01 {
    margin-top: 24px;
  }
  .layout_index .text_img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*==========
メインビジュアル
==========*/
#mv {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  position: relative;
  z-index: 1;
}
#mv .flex {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#mv .bg_movie {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#mv .bg_movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .btn_area {
  margin-left: auto;
  position: absolute;
  right: 5%;
  bottom: 15%;
}
#mv .btn_movie {
  font-size: clamp(1rem, 1.14584vw, 1.375rem);
}
@media screen and (max-width: 959px) {
  #mv {
    height: auto;
  }
  #mv .bg_movie {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  #mv .btn_area {
    bottom: 5%;
  }
  #mv .scroll_area {
    left: calc(var(--paddingLR) / 2);
  }
}

/*==========
THE HISTORY OF FORCE-R
==========*/
#index_intro.trigger .fx_text > g path, #index_intro.trigger.fx_text > g path {
  -webkit-animation-name: svgAnime_aqua;
          animation-name: svgAnime_aqua;
  --dashoffset: 4000px;
  --start-delay: 0.5s;
  --delay-time: 0.25s;
  --duration-time: 1s;
}
#index_intro .flex {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
#index_intro .row_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#index_intro .row_title .text_img {
  max-width: 240px;
}
#index_intro .title {
  font-family: "Viga", sans-serif;
  font-size: clamp(2rem, 2.85715vw, 2.5rem);
  margin-right: 12px;
}
#index_intro .text {
  font-size: clamp(1rem, 1.4286vw, 1.25rem);
  font-weight: 600;
  line-height: 2.5;
  margin-top: 1em;
}
#index_intro .signature {
  margin-top: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#index_intro .signature .name {
  font-size: clamp(1rem, 1.4286vw, 1.25rem);
  font-weight: 600;
  margin-right: 1em;
  margin-top: 0.25em;
}
#index_intro .signature .text_img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 200px;
}
#index_intro .btn_01 {
  font-size: clamp(1rem, 1.4286vw, 1.25rem);
  width: 100%;
  max-width: 478px;
  min-width: auto;
  margin-left: auto;
}
#index_intro .img_area {
  margin-left: auto;
  margin-right: -8%;
}
#index_intro .img_area > *:not(:first-of-type) {
  margin-top: 56px;
}
#index_intro .img_area .relative {
  position: relative;
}
#index_intro .img_area .text_img {
  width: 82.032%;
  position: absolute;
  right: -15%;
  bottom: -36%;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  #index_intro .flex {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  #index_intro .row_title .text_img {
    max-width: 160px;
  }
  #index_intro .text {
    line-height: 1.75;
  }
  #index_intro .btn_01 {
    margin-top: 24px;
    max-width: 320px;
  }
  #index_intro .text_area {
    width: 100%;
  }
  #index_intro .signature .text_img {
    max-width: 160px;
  }
  #index_intro .img_area {
    max-width: 320px;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin-left: auto;
    margin-right: auto;
  }
  #index_intro .img_area > *:not(:first-of-type) {
    margin-top: 40px;
  }
}

#index_story .layout_index .text_img {
  width: 35.3125%;
  left: -2%;
  top: -28%;
}
@media screen and (max-width: 959px) {
  #index_story .layout_index .text_img {
    top: -15%;
  }
}

#index_future .layout_index .text_img {
  width: 63.125%;
  left: -5%;
  top: -33%;
}
@media screen and (max-width: 959px) {
  #index_future .layout_index .text_img {
    top: -15%;
  }
}

#index_job .layout_index .text_img {
  width: 27.5%;
  left: -7%;
  top: -28%;
}
@media screen and (max-width: 959px) {
  #index_job .layout_index .text_img {
    top: -15%;
  }
}

#index_culture .layout_index .text_img {
  width: 55.625%;
  left: -10%;
  top: -20%;
}
@media screen and (max-width: 959px) {
  #index_culture .layout_index .text_img {
    top: -15%;
    left: -5%;
  }
}