@charset "UTF-8";
@import url("https://use.typekit.net/xda6sbo.css");
/* scss
@include animation(anime-opening_face 4s ease 0.5s);
@include keyframes(anime-opening_face){
    0%  { transform: translate(-50%,100%); }
    30% { transform: translate(-50%,0); }
    70% { transform: translate(-50%,0); }
    100%{ transform: translate(-50%,100%); }
}
*/
/*---------------------------------------------
header
---------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 95px;
}
@media (max-width: 1040px) {
  header {
    min-width: 100%;
    height: 80px;
  }
}
header .header_inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 40px;
}
@media (max-width: 1040px) {
  header .header_inner {
    padding: 0;
    width: 90%;
    margin: 0 auto;
    height: 100%;
  }
}
header .header_inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.5s;
}
header .header_inner .head_logo {
  position: relative;
  z-index: 2;
  margin: 0 65px 0 0;
  flex-shrink: 0;
  max-width: 176px;
  transition: all 0.5s;
  /*
  @include sp(1040px) {
    width: auto;
    height: 40px;
    margin: 0;
    a {
      width: auto;
      height: 100%;
    }
    img {
      width: auto;
      height: 100%;
    }
  }
  */
}
header .header_inner .head_logo a {
  display: block;
}
header .header_inner .head_nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0 2em;
  width: 100%;
  font-size: clamp(12px, 5.625vw, 14px);
  line-height: 100%;
  letter-spacing: 0.2em;
}
@media (max-width: 1040px) {
  header .header_inner .head_nav {
    display: none;
  }
}
header .header_inner .head_nav .head_nav_list {
  display: flex;
  align-items: center;
  gap: 0 2em;
}
header .header_inner .head_nav .head_nav_list li a {
  position: relative;
  display: block;
  transition: all 0.5s;
  padding: 10px 0;
  z-index: 1;
}
header .header_inner .head_nav .head_nav_list li a b {
  position: relative;
  z-index: 2;
  font-weight: normal;
}
header .header_inner .head_nav .head_nav_list li a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 0;
  height: 100%;
  transition: all 0.5s;
  background: #333;
}
@media (max-width: 1040px) {
  header .header_inner .head_nav .head_nav_list li a::after {
    background: none;
  }
}
header .header_inner .head_nav .head_nav_list li a:hover {
  opacity: 1;
}
@media (min-width: 1041px) {
  header .header_inner .head_nav .head_nav_list li a:hover {
    color: #fff;
  }
}
header .header_inner .head_nav .head_nav_list li a:hover::after {
  width: 100%;
}
header .header_inner .head_nav .head_nav_list li.js-head_sub {
  position: relative;
  z-index: 2;
}
@media (max-width: 1040px) {
  header .header_inner .head_nav .head_nav_list li.js-head_sub {
    margin-bottom: 10px;
  }
}
@media (min-width: 1041px) {
  header .header_inner .head_nav .head_nav_list li.js-head_sub .js-head_sub_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-bottom: 0px;
    transform: translateY(50%);
    opacity: 0;
    transition: all 0.5s;
  }
}
header .header_inner .head_nav .head_nav_list li.js-head_sub .js-head_sub_inner a {
  display: block;
  margin-top: 1px;
  background: #000;
  padding: 0.5em;
  position: relative;
}
@media (min-width: 1041px) {
  header .header_inner .head_nav .head_nav_list li.js-head_sub .js-head_sub_inner a {
    color: #fff;
  }
}
@media (max-width: 1040px) {
  header .header_inner .head_nav .head_nav_list li.js-head_sub .js-head_sub_inner a {
    padding: 10px 1.5em;
    margin-left: 20px;
    background: none;
  }
  header .header_inner .head_nav .head_nav_list li.js-head_sub .js-head_sub_inner a::before {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    background: #aaa;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
header .header_inner .head_nav .head_nav_list li.js-head_sub.js-hover .js-head_sub_bg {
  display: block;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
@media (min-width: 1041px) {
  header .header_inner .head_nav .head_nav_list li.js-head_sub.js-hover .js-head_sub_inner {
    opacity: 1;
    transform: translateY(100%);
  }
}
@media (max-width: 1040px) {
  header .header_inner .head_nav .head_nav_list li.js-head_sub.js-hover .js-head_sub_inner {
    display: block;
  }
}
@media (min-width: 1041px) {
  header .header_inner .head_nav .head_nav_list li.js-head_sub:not(.js-hover) .js-head_sub_inner a {
    pointer-events: none;
  }
}
header .header_inner .head_nav .head_specialList {
  position: relative;
  z-index: 2;
  display: flex;
}
header .header_inner .head_nav .head_specialList li:not(:last-child) {
  margin: 0 10px 0 0;
}
header .header_inner .head_nav .head_specialList li a {
  display: block;
  padding: 10px;
  color: #333;
  border: 1px solid #333;
  transition: all 0.5s;
}
header .header_inner .head_nav .head_specialList li a:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}
header .header_inner .head_nav .head_specialList li a[href$="/special/"] {
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 1040px) {
  header .header_inner .js-head_spBtn {
    display: block;
    width: 30px;
    height: 24px;
    transition: all 0.5s;
    position: relative;
    z-index: 2;
    cursor: pointer;
    top: 0;
    right: 0;
    margin-left: auto;
  }
  header .header_inner .js-head_spBtn span {
    display: block;
    position: absolute;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: all 0.5s;
  }
  header .header_inner .js-head_spBtn span:nth-child(1) {
    top: 0px;
    transform: translate(-50%, 0) rotate(0);
  }
  header .header_inner .js-head_spBtn span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
  }
  header .header_inner .js-head_spBtn span:nth-child(3) {
    bottom: 0px;
    transform: translate(-50%, 0) rotate(0);
  }
}
header.js-clicked .header_inner .js-head_spBtn span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-315deg);
}
header.js-clicked .header_inner .js-head_spBtn span:nth-child(2) {
  opacity: 0;
}
header.js-clicked .header_inner .js-head_spBtn span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(315deg);
}
@media (max-width: 1040px) {
  header {
    min-width: 100%;
    height: 80px;
  }
  header .header_inner .head_nav {
    transform: translateX(100%);
    transition: all 0.5s;
  }
  header .header_inner .head_nav {
    display: flex;
    background: #fff;
    position: fixed;
    justify-content: flex-start;
    top: 0;
    right: 0;
    transform: translateX(100%);
    flex-direction: column;
    flex-wrap: wrap;
    box-shadow: 0px 5px 5px 0 rgba(0, 0, 0, 0.2);
    width: 80%;
    height: 100%;
  }
  header .header_inner .head_nav .head_nav_list {
    flex-direction: column;
    flex-wrap: wrap;
  }
  header .header_inner .head_nav .head_nav_list li {
    margin: 0;
    width: 100%;
  }
  header .header_inner .head_nav .head_nav_list li a {
    background: #fff;
    display: block;
    padding: 20px;
    width: 100%;
  }
  header .header_inner .head_nav .head_specialList {
    padding: 20px;
  }
  header.js-clicked .js-head_spBg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000;
    opacity: 0.5;
  }
  header .header_inner .head_nav .head_nav_list li {
    opacity: 0;
    transform: translateX(100%);
  }
  header.js-clicked .header_inner .head_nav {
    transform: translateX(0);
  }
  header.js-clicked .header_inner .head_nav .head_nav_list li {
    transform: translateX(0);
    opacity: 1;
  }
  header.js-clicked .header_inner .head_nav .head_nav_list li:nth-child(1) {
    -webkit-animation: anime-header_menu_open 1s ease 0.5s;
    -moz-animation: anime-header_menu_open 1s ease 0.5s;
    animation: anime-header_menu_open 1s ease 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.6s;
  }
  header.js-clicked .header_inner .head_nav .head_nav_list li:nth-child(2) {
    -webkit-animation: anime-header_menu_open 1s ease 0.5s;
    -moz-animation: anime-header_menu_open 1s ease 0.5s;
    animation: anime-header_menu_open 1s ease 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.7s;
  }
  header.js-clicked .header_inner .head_nav .head_nav_list li:nth-child(3) {
    -webkit-animation: anime-header_menu_open 1s ease 0.5s;
    -moz-animation: anime-header_menu_open 1s ease 0.5s;
    animation: anime-header_menu_open 1s ease 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.8s;
  }
  header.js-clicked .header_inner .head_nav .head_nav_list li:nth-child(4) {
    -webkit-animation: anime-header_menu_open 1s ease 0.5s;
    -moz-animation: anime-header_menu_open 1s ease 0.5s;
    animation: anime-header_menu_open 1s ease 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.9s;
  }
  header.js-clicked .header_inner .head_nav .head_nav_list li:nth-child(5) {
    -webkit-animation: anime-header_menu_open 1s ease 0.5s;
    -moz-animation: anime-header_menu_open 1s ease 0.5s;
    animation: anime-header_menu_open 1s ease 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 1s;
  }
  @-webkit-keyframes anime-header_menu_open {
    0% {
      transform: translateX(20px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @-moz-keyframes anime-header_menu_open {
    0% {
      transform: translateX(20px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes anime-header_menu_open {
    0% {
      transform: translateX(20px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  header.js-clicked .header_inner .head_nav .head_specialList {
    -webkit-animation: anime-header_menu_special_open 1s ease 0.5s;
    -moz-animation: anime-header_menu_special_open 1s ease 0.5s;
    animation: anime-header_menu_special_open 1s ease 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 1.2s;
  }
  @-webkit-keyframes anime-header_menu_special_open {
    0% {
      transform: translateX(20px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @-moz-keyframes anime-header_menu_special_open {
    0% {
      transform: translateX(20px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes anime-header_menu_special_open {
    0% {
      transform: translateX(20px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
}

/*---------------------------------------------
main
---------------------------------------------*/
.video-shared {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  z-index: 0;
  background: linear-gradient(to right, #8cdaf3 0%, #d5dbff 50%, #8cdaf3 100%);
  background-size: 200% 100%;
  -webkit-animation: anime-video_shared 5s linear 0s infinite;
  -moz-animation: anime-video_shared 5s linear 0s infinite;
  animation: anime-video_shared 5s linear 0s infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes anime-video_shared {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@-moz-keyframes anime-video_shared {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@keyframes anime-video_shared {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.page-recruit .video-shared,
.page-recruit_thanks .video-shared {
  background: linear-gradient(to right, #ffc700 0%, #ff4900 50%, #ffc700 100%);
  background-size: 200% 100%;
}

.detail_inner {
  padding: 0;
}
.detail_inner .sec {
  opacity: 0;
  transition: all 0.5s;
}
.detail_inner .sec.js-inview_active {
  opacity: 1;
}

.tit_clip {
  display: inline-flex;
  position: relative;
  line-height: 1;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.01s;
  transition-delay: 0.5s;
}
.js-inview_active .tit_clip {
  opacity: 1;
}
.tit_clip .tit_clip_txt {
  font-size: clamp(48px, 10.6vw, 64px);
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 10px;
  line-height: 1;
  position: relative;
  z-index: 2;
  color: #000;
}
.tit_clip .tit_clip_txt span {
  display: inline-block;
}
.tit_clip .tit_clip_bar {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  height: 5px;
  width: 100%;
  transform-origin: left;
  background: #000;
}
.tit_clip .tit_clip_txt,
.tit_clip .tit_clip_bar {
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.js-inview_active .tit_clip .tit_clip_txt,
.js-inview_active .tit_clip .tit_clip_bar {
  animation-name: anime-tit_clip_txt;
}
@keyframes anime-tit_clip_txt {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.tit_clip .video-shared {
  mix-blend-mode: lighten;
  z-index: 3;
}

.sec {
  position: relative;
  z-index: 2;
}

.bg_sec {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media (max-width: 900px) {
  .bg_sec {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.svg_clip {
  position: relative;
  overflow: hidden;
}
.svg_clip svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.svg_clip svg rect {
  fill: #fff;
}

.js-txt_up {
  display: flex;
  position: relative;
  line-height: 1;
  overflow: hidden;
  color: #fff;
  font-family: din-condensed, sans-serif;
}

/*---------------------------------------------
lity
---------------------------------------------*/
.lity {
  background: rgba(0, 0, 0, 0.5);
}
.lity .lity-content img {
  padding: 20px;
}

/*---------------------------------------------
slick for product
---------------------------------------------*/
.mainImg.js-slide {
  margin: 40px auto 0;
}
.mainImg.js-slide .js-slide_item {
  display: inline-block;
  width: auto;
  height: 100%;
  width: 80vh;
}
.mainImg.js-slide img {
  display: inline-block;
}
.mainImg.js-slide .slick-list {
  position: relative;
  z-index: 0;
  padding-bottom: 10px;
}
.mainImg.js-slide .slick-slide {
  transition: transform 0.5s, opacity 0.5s;
  position: relative;
  z-index: 1;
}
.mainImg.js-slide .slick-slide:not(.slick-current) {
  transform: scale(0.5);
  z-index: 0;
  opacity: 0.5;
}
.mainImg.js-slide .slick-slide .js-slide_item {
  padding: 10px;
}
.mainImg.js-slide .slick-slide .js-slide_item a {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 60vw;
  height: calc(100vh - 80px - 140px - 1em);
  pointer-events: none;
}
@media (max-width: 900px) {
  .mainImg.js-slide .slick-slide .js-slide_item a {
    height: calc(90vh - 80px - 140px - 1em);
  }
}
.mainImg.js-slide .slick-slide .js-slide_item a:hover {
  opacity: 1;
}
.mainImg.js-slide .slick-slide .js-slide_item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  /*
  width: auto;
  height: 100%;
  max-width: none;
  max-height: calc(100vh - $header_height_sp - 140px - 1em);
  transform: translateX(0%);
  // box-shadow: 0px 0px 10px rgba($color: $black, $alpha: 0.2);
  */
}
.mainImg.js-slide .slick-prev,
.mainImg.js-slide .slick-next {
  height: 60px;
  width: 40px;
  z-index: 1000;
}
.mainImg.js-slide .slick-prev::before,
.mainImg.js-slide .slick-next::before {
  display: block;
  content: "";
  left: 0px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: 50%;
  transform-origin: center center;
}
.mainImg.js-slide .slick-prev.slick-disabled:before, .mainImg.js-slide .slick-prev.slick-disabled:before,
.mainImg.js-slide .slick-next.slick-disabled:before,
.mainImg.js-slide .slick-next.slick-disabled:before {
  opacity: 0;
}
.mainImg.js-slide .slick-prev {
  left: 0;
}
.mainImg.js-slide .slick-prev::before {
  left: 50%;
  transform: translate(-100%, -50%) rotate(-135deg);
}
.mainImg.js-slide .slick-next {
  right: 0;
}
.mainImg.js-slide .slick-next::before {
  left: 50%;
  transform: translate(0%, -50%) rotate(45deg);
}
.mainImg .js-slick_arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
}
.mainImg .js-slick_arrow::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #9c9c9c;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -3px;
  margin-top: -9px;
}
.mainImg .js-slick_arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #9c9c9c;
  border-right: solid 2px #9c9c9c;
  position: absolute;
  top: 50%;
  left: 2px;
  margin-top: -2px;
  transform: rotate(45deg);
}
.mainImg .js-slick_arrow.js-slick_arrow_prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.mainImg .js-slick_arrow.js-slick_arrow_next {
  right: 0;
  transform: translateY(-50%);
}

/*---------------------------------------------
footer
---------------------------------------------*/
.footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #fff;
  opacity: 0;
}
.content-loaded .footer {
  opacity: 1;
}
.content-leave .footer {
  opacity: 0;
}
.footer .copyright {
  height: 40px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  font-size: clamp(10px, 2.6vw, 12px);
}
@media (max-width: 900px) {
  .footer .copyright {
    justify-content: center;
  }
}

/*---------------------------------------------
all
---------------------------------------------*/
body,
html {
  height: 100%;
  letter-spacing: 0.02em;
  line-height: 200%;
  text-align: justify;
  text-justify: inter-ideograph;
}

html {
  overscroll-behavior: none;
}

body {
  background: #a1c4fd;
  overflow: hidden;
}
body.page-contact .grecaptcha-badge, body.page-recruit_mid .grecaptcha-badge, body.page-recruit_new .grecaptcha-badge {
  z-index: 9999;
}

canvas {
  vertical-align: bottom;
}

.english {
  font-family: din-condensed, sans-serif;
}

.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.wrap {
  width: 100%;
  margin: auto;
  min-height: 100%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .wrap {
    min-width: 100%;
  }
}

.loading-box__img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

/*
.loading-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  &__circle {
    width: 150px;
    height: 150px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    // background: $sky;
    // background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, rgba(137, 229, 245, 1) 100%);
    background: $white;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 33%, rgba(255, 255, 255, 1) 100%);
    animation: anime-spin 0.8s linear 0s infinite;
  }
  &__core {
    width: 100%;
    height: 100%;
    background-color: #a1c4fd;
    border-radius: 50%;
  }
}
@keyframes anime-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
*/
#content {
  position: relative;
  z-index: 2;
  overflow: auto;
  overscroll-behavior: none;
  height: calc(100vh - 95px);
  height: calc(100dvh - 95px);
  margin-top: 95px;
}
@media (max-width: 1040px) {
  #content {
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    margin-top: 80px;
  }
}
#content .detail_inner {
  position: relative;
  min-height: calc(100vh - 95px);
}
@media (max-width: 900px) {
  #content .detail_inner {
    min-height: calc(100vh - 80px);
  }
}
#content .detail_inner #js-page_loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  transition: transform 0.5s ease-in-out;
  transform-origin: top left;
  transform: scaleX(0);
}
.content-loaded #content .detail_inner #js-page_loading {
  transform: scaleX(1);
  transform-origin: top left;
}
.content-leave #content .detail_inner #js-page_loading {
  transform: scaleX(0);
  transform-origin: top right;
}
[data-barba-namespace=recruit] #content .detail_inner #js-page_loading {
  display: none;
}
.content-leave #content .js-inview {
  opacity: 0;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

.inner {
  position: relative;
}
@media (max-width: 900px) {
  .inner {
    max-width: 90vw;
    margin: auto;
  }
}

.detail_maxInner {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: auto;
}
@media (max-width: 900px) {
  .detail_maxInner {
    max-width: 90vw;
  }
}

.ib {
  display: inline-block;
}

.bg {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.bg::before {
  position: absolute;
  display: block;
  content: "";
  top: 0%;
  right: 0;
  width: 0%;
  height: 100%;
  padding: 30px;
  z-index: 0;
}
.js-inview_active .bg::before {
  -webkit-animation: anime-bg_white 1s ease 0s;
  -moz-animation: anime-bg_white 1s ease 0s;
  animation: anime-bg_white 1s ease 0s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes anime-bg_white {
  0% {
    padding: 0px;
    width: 0%;
    height: 110%;
  }
  100% {
    padding: 30px;
    width: 110%;
    height: 110%;
  }
}
@-moz-keyframes anime-bg_white {
  0% {
    padding: 0px;
    width: 0%;
    height: 110%;
  }
  100% {
    padding: 30px;
    width: 110%;
    height: 110%;
  }
}
@keyframes anime-bg_white {
  0% {
    padding: 0px;
    width: 0%;
    height: 110%;
  }
  100% {
    padding: 30px;
    width: 110%;
    height: 110%;
  }
}
.bg .cmn-tit,
.bg .cmn-read,
.bg .p-service__list,
.bg .p-staff__list,
.bg .p-flow__list,
.bg .cmn-att,
.bg .p-works__list,
.bg .p-president__area,
.bg .p-company__data,
.bg .p-access__list,
.bg .p-contact__tel,
.bg .p-form {
  opacity: 0;
}
.js-inview_active .bg .cmn-tit,
.js-inview_active .bg .cmn-read,
.js-inview_active .bg .p-service__list,
.js-inview_active .bg .p-staff__list,
.js-inview_active .bg .p-flow__list,
.js-inview_active .bg .cmn-att,
.js-inview_active .bg .p-works__list,
.js-inview_active .bg .p-president__area,
.js-inview_active .bg .p-company__data,
.js-inview_active .bg .p-access__list,
.js-inview_active .bg .p-contact__tel,
.js-inview_active .bg .p-form {
  -webkit-animation: anime-bg_contents 1s ease 0.5s;
  -moz-animation: anime-bg_contents 1s ease 0.5s;
  animation: anime-bg_contents 1s ease 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes anime-bg_contents {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes anime-bg_contents {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anime-bg_contents {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cmn-linkpoint {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -80px;
}

main {
  transform-origin: top center;
}
main .pt0 {
  padding-top: 0;
}
main .pb0 {
  padding-bottom: 0;
}
main .taC {
  text-align: center;
}

/*---------------------------------------------
#video
---------------------------------------------*/
.loading-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.loading-box__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}
.loading-box__img__recruit {
  z-index: 0;
}
.page-recruit .loading-box__img__recruit,
.loading-box__img__recruit .page-recruit_new, .page-recruit_mid .loading-box__img__recruit {
  z-index: 2;
  opacity: 1;
}

#video-bg,
#video-bg_recruit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
}
#video-bg video,
#video-bg_recruit video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
#video-bg.video-loaded,
#video-bg_recruit.video-loaded {
  opacity: 1;
}

#video-bg {
  transition: opacity 1s;
}

#video-bg_recruit {
  z-index: 1;
  display: none;
}

/*---------------------------------------------
common
---------------------------------------------*/
@media (max-width: 900px) {
  .u-pc {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .u-sp {
    display: none !important;
  }
}
/*---------------------------------------------
cmn
---------------------------------------------*/
.cmn-tit {
  position: relative;
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 5.4rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (max-width: 900px) {
  .cmn-tit {
    font-size: 10.6vw;
  }
}

.cmn-read {
  position: relative;
  padding: 20px 0 40px;
  text-align: center;
}
@media (max-width: 900px) {
  .cmn-read {
    width: 100%;
    margin: auto;
  }
}

.cmn-color__red {
  color: #e30012;
}

.cmn-sub {
  margin-top: 1em;
}

.cmn-att {
  padding: 1em 0 0;
  text-align: right;
  font-size: clamp(10px, 2.6vw, 12px);
  line-height: 140%;
}
.cmn-att__left {
  text-align: left;
}/*# sourceMappingURL=common.css.map */