@charset "UTF-8";
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

.novisual_header {
  text-align: center;
  padding: 10rem 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .novisual_header {
    padding: 3rem 0 0 0;
  }
}

section.pickup {
  background: #eee;
  padding: 5vw;
  /* ページネーションの余白 */
  /* ページネーションのサイズと色 */
}
@media only screen and (max-width: 992px) {
  section.pickup {
    padding: 3rem 3rem 20rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  section.pickup {
    padding: 3rem 3rem 10rem 3rem;
  }
}
section.pickup .pickup_title {
  color: #ffffff;
  font-size: 3rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 5rem;
  color: #000;
}
section.pickup .pickup_slide_wrap {
  position: relative;
  padding: 0 5rem;
}
@media only screen and (max-width: 768px) {
  section.pickup .pickup_slide_wrap {
    padding: 0 3rem;
  }
}
section.pickup .pickup-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
section.pickup .pickup-wrapper .pickup-slide {
  width: calc(33.3333% - 1.3333rem);
}
@media only screen and (max-width: 992px) {
  section.pickup .pickup-wrapper .pickup-slide {
    width: calc(50% - 1rem);
  }
}
@media only screen and (max-width: 768px) {
  section.pickup .pickup-wrapper .pickup-slide {
    width: 100%;
  }
}
section.pickup .swiper-slide,
section.pickup .pickup-slide {
  position: relative;
}
section.pickup .swiper-slide .image,
section.pickup .pickup-slide .image {
  position: relative;
  margin: 0 0 1em 0;
  overflow: visible;
}
section.pickup .swiper-slide .image .bu,
section.pickup .pickup-slide .image .bu {
  background-color: #333;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2rem 0.6rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}
section.pickup .swiper-slide .txt.outer p.jp:after,
section.pickup .pickup-slide .txt.outer p.jp:after {
  display: none !important;
}
section.pickup .swiper-slide .txt p.jp,
section.pickup .pickup-slide .txt p.jp {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
}
section.pickup .swiper-slide .txt p.jp:after,
section.pickup .pickup-slide .txt p.jp:after {
  position: absolute;
  font-family: "Flaticon";
  bottom: 0.2em;
  right: 0;
  line-height: 1;
  content: "\f101";
  font-size: 20px;
  font-size: 2rem;
  z-index: 300;
  color: #000;
  transition: all 0.3s ease;
  display: block;
}
@media only screen and (max-width: 768px) {
  section.pickup .swiper-slide .txt p.jp:after,
  section.pickup .pickup-slide .txt p.jp:after {
    display: none;
  }
}
section.pickup .swiper-slide a,
section.pickup .pickup-slide a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}
section.pickup .navbtn {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
section.pickup .swiper-button-next::after,
section.pickup .swiper-button-prev::after {
  content: none !important;
}
section.pickup .swiper-button-next,
section.pickup .swiper-button-prev {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
section.pickup .swiper-button-next i,
section.pickup .swiper-button-prev i {
  display: block;
  width: 34px;
  height: 34px;
  background: #FEE200;
  border-radius: 50%;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.pickup .swiper-navigation-icon {
  display: none;
}
section.pickup .swiper-button-next {
  right: 5rem;
}
@media only screen and (max-width: 768px) {
  section.pickup .swiper-button-next {
    right: 2rem;
  }
}
section.pickup .swiper-button-prev {
  left: -5rem;
}
section.pickup .swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
section.pickup .swiper-pagination {
  bottom: -6rem;
}
section.pickup .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
section.pickup .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px 5px;
}
section.pickup .swiper-pagination-bullet {
  background-color: #000;
  height: 16px;
  width: 16px;
}
@media only screen and (max-width: 768px) {
  section.pickup .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

main section.interview_hero {
  background: url("/company/recruitment/assets/img/pickup/bg.png");
  background-size: cover;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  main section.interview_hero {
    margin: 0 0 5rem 0;
  }
}
main section.interview_hero .intv_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 8vw;
}
@media only screen and (max-width: 768px) {
  main section.interview_hero .intv_flex {
    display: block;
  }
}
main section.interview_hero .intv_flex .txt {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  main section.interview_hero .intv_flex .txt {
    width: 100%;
  }
}
main section.interview_hero .intv_flex .txt h1.en {
  margin: 0 0 1rem 0;
}
main section.interview_hero .intv_flex .txt h2 {
  font-weight: bold;
  font-size: 2.4rem;
  margin: 0 0 1em 0;
}
@media only screen and (max-width: 768px) {
  main section.interview_hero .intv_flex .txt h2 {
    font-size: 1.6rem;
  }
}
main section.interview_hero .intv_flex .image {
  width: 46%;
}
@media only screen and (max-width: 768px) {
  main section.interview_hero .intv_flex .image {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
main .contents_nav {
  padding: 0 8vw 8vw 8vw;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  main .contents_nav {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  main .contents_nav {
    display: block;
  }
}
main .contents_nav.box2_nav {
  max-width: 980px;
  margin: auto;
  gap: 10%;
}
main .contents_nav.box2_nav .box {
  width: 50%;
}
@media only screen and (max-width: 992px) {
  main .contents_nav.box2_nav .box {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  main .contents_nav.box2_nav .box {
    width: 100%;
  }
}
main .contents_nav .box {
  border-right: 1px solid #000;
  width: 30%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  main .contents_nav .box {
    width: 100%;
    border-right: 0;
    padding: 2rem 0;
    border-bottom: 1px solid #000;
  }
}
main .contents_nav .box:after {
  position: absolute;
  font-family: "Flaticon";
  top: 60%;
  right: 2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
  content: "\f104";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  color: #ffffff;
  background: #000;
  line-height: 18px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}
@media only screen and (max-width: 768px) {
  main .contents_nav .box:after {
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  main .contents_nav .box {
    width: 100%;
    border-right: 0;
    padding: 2rem 0;
    border-bottom: 1px solid #000;
  }
}
main .contents_nav .box:last-child {
  border-right: none;
}
@media only screen and (max-width: 768px) {
  main .contents_nav .box:last-child {
    border-bottom: none;
  }
}
main .contents_nav .box:hover {
  opacity: 0.6;
}
main .contents_nav .box a {
  display: block;
}
main .contents_nav .box2 {
  width: 48%;
}
main .int_block {
  background: #ffffff;
  max-width: 1400px;
  margin: 0 auto 10rem auto;
  padding: 0 8vw;
}
main .int_block .inner {
  padding: 5vw;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
main .int_block .headers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  main .int_block .headers {
    display: block;
    margin: 0 0 3rem 0;
  }
}
main .int_block .headers .txt {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  main .int_block .headers .txt {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
main .int_block .headers .txt::before {
  content: "";
  width: 10px;
  height: 100%;
  background: #FEE200;
  position: absolute;
  top: 0;
  left: -5vw;
}
main .int_block .headers .txt .num p.en {
  font-size: 5rem;
}
@media only screen and (max-width: 768px) {
  main .int_block .headers .txt .num p.en {
    font-size: 3rem;
  }
}
main .int_block .headers .txt h3 {
  font-weight: bold;
  font-size: 2.4rem;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  main .int_block .headers .txt h3 {
    font-size: 2rem;
  }
}
main .int_block .headers .image {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  main .int_block .headers .image {
    width: 100%;
  }
}
main .int_block .int_main {
  margin: 0 0 5rem 0;
}
main .int_block .int_main h3 {
  font-weight: bold;
  font-size: 2.4rem;
  border-left: 10px solid #FEE200;
  margin: 0 0 3rem 0;
  padding: 0 0 0 2rem;
}
main .int_block .int_main h4 {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 1em 0;
}
main .int_block .int_main h4::before {
  content: "";
  width: 3rem;
  height: 1px;
  display: block;
  background: #000;
  margin: 0 1em 0 0;
}
main .middle_photo {
  width: 700px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 992px) {
  main .middle_photo {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  main .middle_photo {
    width: 100%;
  }
}
main .last_photo {
  width: 700px;
  margin: auto;
}
@media only screen and (max-width: 992px) {
  main .last_photo {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  main .last_photo {
    width: 100%;
  }
}
main .shuten,
main .shuten_left {
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  padding: 0 5vw;
  text-align: right;
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  main .shuten,
  main .shuten_left {
    font-size: 1.1rem;
  }
}
main .shuten_left {
  text-align: left;
  padding: 0;
  margin: 1em 0 0 0;
}