@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;
}

main .novisual_header {
  margin: 0;
  padding: 0;
}
main .cross_title {
  text-align: center;
  margin: 5rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  main .cross_title {
    margin: 3rem 0;
  }
}
main .cross_title h1 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  main .cross_title h1 {
    font-size: 2rem;
  }
}
main .jobzu {
  width: 1000px;
  margin: 0 auto 5rem auto;
}
@media only screen and (max-width: 992px) {
  main .jobzu {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  main .jobzu {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
main .job_flex {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 0;
  flex-wrap: wrap;
  margin: 0 0 0 -3%;
}
@media only screen and (max-width: 768px) {
  main .job_flex {
    display: block;
  }
}
main .job_flex .maintitle .jobs {
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin: 0 0 2rem 0;
}
main .job_flex .maintitle .jobs p {
  display: inline-block;
  padding: 0 0.5rem;
  color: #ffffff;
  background: #333;
  border-radius: 5px;
}
main .job_flex .maintitle .jobs p.tec {
  background: rgb(107, 63, 119);
}
main .job_flex .maintitle .jobs p.jim {
  background: rgb(184, 131, 74);
}
main .job_flex .maintitle .jobs p.job01 {
  background: #004AAC;
}
main .job_flex .maintitle .jobs p.job02 {
  background: #EB8725;
}
main .job_flex .maintitle .jobs p.job03 {
  background: #00ACC3;
}
main .job_flex .maintitle .jobs p.job04 {
  background: #4B008A;
}
main .job_flex .maintitle .jobs p.job05 {
  background: #C51522;
}
main .job_flex .maintitle .jobs p.job06 {
  background: #8FBB10;
}
main .job_flex .maintitle p.mains {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 2rem;
  margin: 0 0 10px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  main .job_flex .maintitle p.mains {
    font-size: 1.8rem;
  }
}
main .job_flex .maintitle p.mains::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #FEE200;
  display: block;
  transform: translateY(-20px);
}
main .job_flex .box {
  width: 30%;
  margin: 0 0 50px 3.3333%;
  position: relative;
  float: left;
  padding: 20px 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid #eee;
}
main .job_flex .box.dummy {
  visibility: hidden;
}
@media only screen and (max-width: 768px) {
  main .job_flex .box.dummy {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  main .job_flex .box {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
main .job_flex .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 999;
}
main .job_flex .box .image {
  overflow: hidden;
  margin: 0 0 30px 0;
}
main .job_flex .box .txts {
  position: relative;
  margin: 0 0 20px 0;
}
main .job_flex .box .txts p {
  font-size: 1.4rem;
}
main .job_flex .box .tags {
  border-top: 1px solid #eee;
  padding: 20px 0;
}
main .job_flex .box .tags h3 {
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: bold;
}
main .job_flex .box .tags ul {
  display: flex;
  flex-wrap: wrap;
}
main .job_flex .box .tags ul li {
  margin: 0 0.5px 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  main .job_flex .box .tags ul li {
    font-size: 1.2rem;
    margin: 0;
  }
}
main #searchbox {
  margin: 0 0 5rem 0;
  padding: 3rem 0;
  background: #fafafa;
}
@media only screen and (max-width: 768px) {
  main #searchbox {
    padding: 2rem 0;
  }
}
main #searchbox .label {
  font-weight: bold;
  margin: 0 3rem 0 0;
}
@media only screen and (max-width: 768px) {
  main #searchbox .label {
    text-align: center;
    margin: 0 0 1rem 0;
  }
}
main #searchbox .row {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  padding: 1rem 0;
}
@media only screen and (max-width: 768px) {
  main #searchbox .row {
    display: block;
    padding: 0.5rem 0;
  }
}
main #searchbox .btns {
  flex: 1;
  display: flex;
}
@media only screen and (max-width: 768px) {
  main #searchbox .btns {
    padding: 0;
  }
}
main #searchbox .btns.hash {
  padding: 0 0 0 60px;
}
@media only screen and (max-width: 768px) {
  main #searchbox .btns.hash {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  main #searchbox .btns {
    padding: 0;
  }
}
main .btns,
main .reset {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  main .btns,
  main .reset {
    width: 100%;
    justify-content: center;
  }
}
main .btns.hash,
main .reset.hash {
  padding: 0 0 0 30px;
}
main .btns.hash a,
main .reset.hash a {
  border: none;
  border-radius: 100px;
  background: #efefef;
  margin: 0 10px 1.5px 0;
  padding: 0.1px 10px;
  background: #ffffff;
}
main .btns.hash a:hover,
main .btns.hash a .active,
main .reset.hash a:hover,
main .reset.hash a .active {
  background: #333;
}
main .btns a,
main .reset a {
  display: block;
  background: #fff;
  font-weight: 500;
  margin: 0 1rem 0 0;
  cursor: pointer;
  display: block;
  padding: 0.5px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  main .btns a,
  main .reset a {
    padding: 0.7rem 10px;
    margin: 0 1px 10px 0;
    font-size: 1.2rem;
  }
}
main .btns a:hover, main .btns a.is-checked,
main .reset a:hover,
main .reset a.is-checked {
  background: #FEE200;
  color: #000;
}
main .btns02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 800px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  main .btns02 {
    width: 100%;
  }
}
main .btns02 a {
  position: relative;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  margin: 0 10px 20px 0;
  padding: 0.5px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  main .btns02 a {
    margin: 0 10px 10px 0;
    padding: 0.5px;
  }
}
main .btns02 a:hover, main .btns02 a.is-checked {
  background: #efefef;
}
main .btns02 a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #FEE200;
  display: inline-block;
  margin: 0 10px 0 0;
}
main .reset {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  main .reset {
    margin-top: 10px;
  }
}
main .int_title {
  background: #efefef;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 0rem 0;
  margin: 0 0 1rem 0;
  cursor: pointer;
}
main .people_flex {
  display: flex;
  justify-content: space-between;
}
main .people_flex .boxs {
  width: 48%;
  position: relative;
}
main .people_flex .boxs .images {
  position: relative;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}
main .people_flex .boxs .images.movie::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
}
main .people_flex .boxs .images .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 2rem;
  z-index: 200;
  color: #ffffff;
}
main .people_flex .boxs .txts {
  font-size: 1.2rem;
  font-weight: 500;
}
main .people_flex .boxs:hover .images {
  border: 2px solid #FEE200;
}
main .people_flex .boxs a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}