@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 {
  width: 100%;
  overflow: hidden;
  position: relative;
}

section.around .visuals {
  position: relative;
}
section.around .visuals ul.pins button {
  background: none;
  border: none;
  z-index: 8002;
  position: relative;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 1000;
}
section.around .visuals ul.pins a {
  display: block;
  position: absolute;
  width: 12vw;
  height: 12vw;
  top: -8vw;
  left: -5vw;
  content: "";
  z-index: 1001;
}
section.around .visuals ul.pins li {
  position: absolute;
  cursor: pointer;
}
section.around .visuals ul.pins li.is-ac {
  z-index: 8000;
}
section.around .visuals ul.pins li .pins {
  width: 3.6vw;
  position: relative;
  z-index: -1;
  animation: move-y 0.5s infinite alternate ease-in-out;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(5px);
  }
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li .pins {
    width: 8vw;
  }
}
section.around .visuals ul.pins li.pin01 {
  top: 14%;
  left: 40%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin01 {
    top: 25%;
    left: 70%;
  }
}
section.around .visuals ul.pins li.pin02 {
  top: 24%;
  left: 59%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin02 {
    top: 38%;
    left: 71%;
  }
}
section.around .visuals ul.pins li.pin03 {
  top: 23%;
  right: 15.5%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin03 {
    top: 53.5%;
    left: 71%;
  }
}
section.around .visuals ul.pins li.pin04 {
  top: 50%;
  left: 8%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin04 {
    top: 21%;
    left: 26%;
  }
}
section.around .visuals ul.pins li.pin05 {
  top: 40%;
  left: 20%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin05 {
    top: 17%;
    left: 46%;
  }
}
section.around .visuals ul.pins li.pin06 {
  bottom: 31%;
  left: 42%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin06 {
    bottom: 52%;
    left: 19%;
  }
}
section.around .visuals ul.pins li.pin07 {
  bottom: 18%;
  left: 57.2%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin07 {
    bottom: 17%;
    left: 23%;
  }
}
section.around .visuals ul.pins li.pin08 {
  bottom: 41%;
  left: 71%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin08 {
    bottom: 29%;
    left: 47%;
  }
}
section.around .visuals ul.pins li.pin09 {
  bottom: 29%;
  left: 86%;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins li.pin09 {
    bottom: 13%;
    left: 75%;
  }
}
section.around .visuals ul.pins .fuki {
  position: absolute;
  top: -12vw;
  left: -3.8vw;
  width: 12vw;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins .fuki {
    width: 14vw;
    top: -14vw;
    left: -1.5vw;
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
}
section.around .visuals ul.pins .fuki.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2900;
}
@media only screen and (max-width: 768px) {
  section.around .visuals ul.pins .fuki.active {
    visibility: visible;
    opacity: 1;
  }
}

.facont {
  display: flex;
  justify-content: space-between;
  padding: 3rem;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .facont {
    display: block;
    padding: 5rem 2rem;
  }
}
.facont .image {
  width: 28%;
}
@media only screen and (max-width: 768px) {
  .facont .image {
    width: 100%;
    display: flex;
    margin: 0 0 2rem 0;
  }
}
.facont .image .images {
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  .facont .image .images {
    width: 50%;
    margin: 0;
  }
}
.facont .txts {
  flex: 1;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  .facont .txts {
    padding: 0;
  }
}
.facont .txts p.enb {
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
}
.facont .txts h2 {
  font-weight: bold;
  font-size: 2.4rem;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  .facont .txts h2 {
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
  }
}
.facont .txts p.tit {
  font-weight: bold;
  display: inline-block;
  background: #FEE200;
  padding: 0 1rem;
  margin: 0 0 1rem 0;
  display: none;
}
.facont .txts p {
  line-height: 1.75;
}

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

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}
.modal::-webkit-scrollbar {
  display: none !important;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal__overlay::-webkit-scrollbar {
  display: none !important;
}

.modal__container {
  padding: 30px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal__container::-webkit-scrollbar {
  display: none !important;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: 1rem;
  right: 1rem;
  background: none;
  outline: none;
  border: none;
  background: #000;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.modal__close:hover {
  background: #FEE200;
}
.modal__close:hover:after {
  color: #000;
}
.modal__close: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: #ffffff;
  transition: all 0.3s ease;
  display: block;
  z-index: 999;
  text-align: center;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
    Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}