@charset "UTF-8";
/*default*/
.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;
}

/*default*/
/*
Flaticon icon font: Flaticon
Creation date: 03/10/2020 15:15
*/
@font-face {
  font-family: "Flaticon";
  src: url("/company/recruitment/assets/fonts/Flaticon.eot");
  src: url("/company/recruitment/assets/fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("/company/recruitment/assets/fonts/Flaticon.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Flaticon.woff") format("woff"), url("/company/recruitment/assets/fonts/Flaticon.ttf") format("truetype"), url("/company/recruitment/assets/fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("/company/recruitment/assets/fonts/Flaticon.svg#Flaticon") format("svg");
  }
}
.fi:before {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-menu:before {
  content: "\f100";
}

.flaticon-next:before {
  content: "\f101";
}

.flaticon-go-back:before {
  content: "\f102";
}

.flaticon-forward:before {
  content: "\f103";
}

.flaticon-down-arrow:before {
  content: "\f104";
}

.flaticon-chevron:before {
  content: "\f105";
}

.flaticon-back:before {
  content: "\f106";
}

.flaticon-undo:before {
  content: "\f107";
}

.flaticon-right-arrow:before {
  content: "\f108";
}

.flaticon-left-arrow:before {
  content: "\f109";
}

.flaticon-plus:before {
  content: "\f10a";
}

.flaticon-play-button:before {
  content: "\f10b";
}

.flaticon-play:before {
  content: "\f10c";
}

.flaticon-left-arrow-1:before {
  content: "\f10d";
}

.flaticon-right-arrow-1:before {
  content: "\f10e";
}

.flaticon-left-arrow-2:before {
  content: "\f10f";
}

.flaticon-download:before {
  content: "\f110";
}

.flaticon-down-arrow-1:before {
  content: "\f111";
}

.flaticon-checked:before {
  content: "\f112";
}

.flaticon-question:before {
  content: "\f113";
}

.flaticon-play-button-1:before {
  content: "\f114";
}

.flaticon-up-arrow:before {
  content: "\f115";
}

.flaticon-file:before {
  content: "\f116";
}

.flaticon-chat:before {
  content: "\f117";
}

.flaticon-up-arrow-1:before {
  content: "\f118";
}

.flaticon-smartphone:before {
  content: "\f119";
}

.flaticon-cloud-computing:before {
  content: "\f11a";
}

.flaticon-login:before {
  content: "\f11b";
}

.flaticon-close:before {
  content: "\f11c";
}

main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .jobcont {
    margin: 0 0 5rem 0;
  }
}
.jobcont .maintxt {
  line-height: 1.75;
}
.jobcont .inner {
  min-width: 800px;
  max-width: 1000px;
  width: 100%;
  padding: 5%;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #eee;
}
@media only screen and (max-width: 768px) {
  .jobcont .inner {
    min-width: 0;
  }
}

section.surprise .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 5vw;
}
section.surprise .visuals {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  section.surprise .visuals {
    display: block;
  }
}
section.surprise .visuals .sup {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  section.surprise .visuals .sup {
    width: 60%;
    margin: 0 auto 2rem auto;
  }
}
section.surprise .visuals .lead {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  section.surprise .visuals .lead {
    width: 100%;
    margin: 0 0 5rem 0;
  }
}
section.surprise .visuals .lead p {
  margin: 0 0 1em 0;
}

.surprise_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 5rem 0;
}
.surprise_flex .box {
  width: 18%;
  margin-bottom: 2%;
}
@media only screen and (max-width: 992px) {
  .surprise_flex .box {
    width: 24%;
  }
}
@media only screen and (max-width: 768px) {
  .surprise_flex .box {
    width: 32%;
    margin: 0 0 1% 0;
  }
}
.surprise_flex .box:hover {
  opacity: 0.9;
}
@media only screen and (max-width: 768px) {
  .surprise_flex .box:hover {
    opacity: 1;
  }
}
.surprise_flex .box_wide {
  width: 49.4%;
}
@media only screen and (max-width: 992px) {
  .surprise_flex .box_wide {
    width: 70%;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .surprise_flex .box_wide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.surprise_flex .box_wide .flogs {
  width: 50%;
  margin: auto;
  padding: 5rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .surprise_flex .box_wide .flogs {
    width: 80%;
    padding: 2rem 0 0 0;
  }
}
a.modal__next {
  background: transparent;
  border: 0;
  position: absolute;
  display: block;
  cursor: pointer;
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: none;
  outline: none;
  border: none;
  background: #000;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  z-index: 1000;
}
a.modal__next:hover {
  background: #FEE200;
}
a.modal__next:hover:after {
  color: #000;
}
a.modal__next:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
  content: "\f101";
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
  color: #ffffff;
  transition: all 0.3s ease;
  display: block;
  z-index: 999;
  text-align: center;
}

.supd_flex {
  display: flex;
  justify-content: space-between;
  margin: auto;
  position: relative;
  z-index: 10;
}
.supd_flex.ups {
  justify-content: flex-start;
}
@media only screen and (max-width: 992px) {
  .supd_flex {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .supd_flex {
    display: block;
  }
  .supd_flex h3 {
    font-weight: 700;
    margin: 0 0 1em 0;
    font-size: 2.4rem;
    line-height: 1.4;
    font-feature-settings: "palt";
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .supd_flex h3 {
    font-size: 2.4rem;
    margin: 1em 0 3rem 0;
  }
}
.supd_flex .images {
  margin: 0 0 3rem 0;
  width: 70%;
}
.supd_flex .images.zus {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .supd_flex .images {
    width: 70%;
    margin: 0 auto 3rem auto;
  }
}
@media only screen and (max-width: 768px) {
  .supd_flex .images {
    width: 80%;
    margin: 0 auto 3rem auto;
  }
}
.supd_flex .image {
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .supd_flex .image {
    width: 50%;
    margin: 0 auto 3rem auto;
  }
}
.supd_flex .image.people {
  width: 40%;
  margin: auto;
  padding: 2rem;
}
@media only screen and (max-width: 992px) {
  .supd_flex .image.people {
    width: 50%;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .supd_flex .image.people {
    width: 80%;
    padding: 0;
    margin: 0 auto 3rem auto;
  }
}
.supd_flex .image.people.pup {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .supd_flex .image {
    width: 100%;
  }
}
.supd_flex .txt {
  flex: 1;
  padding: 0 6rem 0 2rem;
}
@media only screen and (max-width: 992px) {
  .supd_flex .txt {
    text-align: center;
    margin: 0 0 3rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .supd_flex .txt {
    padding: 3vw;
    margin: 0 0 2rem 0;
  }
}
.supd_flex .txt h3 {
  font-weight: 700;
  margin: 0 0 1em 0;
  font-size: 2.8rem;
  line-height: 1.4;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  .supd_flex .txt h3 {
    font-size: 1.6rem;
  }
  .supd_flex .txt h3 br {
    display: none;
  }
}
.supd_flex .txt p {
  font-weight: 500;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper2 {
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .swiper2 {
    max-width: 300px;
  }
}

.suplogo {
  width: 30%;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  .suplogo {
    width: 70%;
    margin: 0 0 2rem 0;
  }
}

/* ---------------------------- */
/* --- Base --- */
/* ---------------------------- */
.swiperModalButton {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  padding: 10rem 0;
  overflow-y: scroll;
}
@media only screen and (max-width: 768px) {
  .modal {
    top: 3vh;
    overscroll-behavior-y: contain;
  }
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  z-index: 9999;
  pointer-events: auto;
  visibility: visible;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 992px) {
  .modal__content {
    max-width: 640px;
  }
}
@media only screen and (max-width: 768px) {
  .modal__content {
    max-width: 300px;
    height: auto;
    display: block;
    top: 0;
    padding: 0 0 10rem 0;
  }
}

.modal_inner {
  filter: drop-shadow(0px 0px 4px #ddd);
  background: #FFF;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 5px solid #FEE200;
  padding: 5rem;
}
@media only screen and (max-width: 768px) {
  .modal_inner {
    padding: 20px 15px 20px 15px;
  }
}

/* 閉じるボタン */
.modal__close-btn {
  background: transparent;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  position: absolute;
  width: 7rem;
  height: 7rem;
  top: -3.5rem;
  right: -3.5rem;
  background: none;
  outline: none;
  border: none;
  background: #FEE200;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1000;
}
.modal__close-btn:hover {
  background: #000;
}
.modal__close-btn:hover:after {
  color: #FEE200;
}
.modal__close-btn:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
  content: "\f11c";
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
  color: #000;
  transition: all 0.3s ease;
  display: block;
  z-index: 999;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .modal__close-btn {
    width: 5rem;
    height: 5rem;
    top: -2.5rem;
    right: -2.5rem;
  }
}

p.swiperText {
  margin: 0;
  text-align: center;
}

.swiper-button-next::after, .swiper-button-prev::after {
  content: none !important;
}

.swiper-button-next, .swiper-button-prev {
  display: block;
  width: 54px !important;
  height: 54px !important;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: #000;
  top: 28rem !important;
}
@media only screen and (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    width: 34px !important;
    background: #000;
    height: 34px !important;
  }
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: #222;
}
@media only screen and (max-width: 768px) {
  .swiper-button-next:hover, .swiper-button-prev:hover {
    background: #222;
  }
}

.swiper-button-next {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .swiper-button-next {
    right: 5px !important;
    position: fixed !important;
  }
}
.swiper-button-next:before {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
  content: "\f101";
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
  color: #fff;
  transition: all 0.3s ease;
  display: block;
  z-index: 999;
  text-align: center;
}

.swiper-button-prev {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 5px !important;
    position: fixed !important;
  }
}
.swiper-button-prev:before {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1;
  content: "\f106";
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
  color: #fff;
  transition: all 0.3s ease;
  display: block;
  z-index: 999;
  text-align: center;
}

.sarani {
  background: #fafafa;
  padding: 2rem;
  margin: 1em 0 0 0;
}
.sarani h4 {
  border-bottom: 1px solid #ccc;
  padding: 0 0 1em 0;
  margin: 0 0 1em 0;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .sarani h4 {
    font-weight: bold;
  }
}
.sarani a.txtlink {
  color: #000;
  font-weight: normal;
  font-size: 14px;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  .sarani a.txtlink {
    font-size: 13px;
  }
}
.sarani a.txtlink:hover {
  text-decoration: underline;
}

.swiper-button-disabled {
  display: none !important;
}