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

.cross_title {
  text-align: center;
  margin: 5rem 0;
}
@media only screen and (max-width: 768px) {
  .cross_title {
    margin: 3rem 0;
  }
}
.cross_title h1 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .cross_title h1 {
    font-size: 2rem;
  }
}

section.message {
  width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  section.message {
    width: 100%;
  }
}
section.message .visual {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  section.message .visual {
    margin: 0 0 3rem 0;
  }
}
section.message .message_txt {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  section.message .message_txt {
    margin: 0 0 3rem 0;
    padding: 0 8vw;
  }
}
section.message .message_txt h2 {
  font-size: 3.6rem;
  margin: 0 0 5rem 0;
  font-feature-settings: "palt";
  text-align: center;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  section.message .message_txt h2 {
    font-size: 2.4rem;
    margin: 0 0 2rem 0;
    text-align: left;
    padding-left: 1em;
    text-indent: -0.5em;
    margin: 0 0 2rem -1em;
  }
}
section.message .message_txt p {
  margin: 0 0 1em 0;
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  section.message .message_txt p {
    text-align: left;
  }
  section.message .message_txt p br {
    display: none;
  }
}
section.message .message_txt .prof {
  margin: 0 0 5rem 0;
  font-weight: 500;
}
section.message .message_txt .prof p.job {
  line-height: 1.6;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  section.message .message_txt .prof p.job {
    font-size: 1.3rem;
    margin: 0;
  }
}
section.message .message_txt .prof p.name {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  section.message .message_txt .prof p.name {
    font-size: 1.6rem;
  }
}

.zu_block {
  display: flex;
  align-items: center;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .zu_block {
    display: block;
    margin: 0 0 2rem 0;
  }
}
.zu_block .left {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  .zu_block .left {
    width: 200px;
    margin: auto;
  }
}
.zu_block .left .round {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  text-align: center;
  background: #FEE200;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .zu_block .left .round {
    width: 200px;
    height: 200px;
  }
}
.zu_block .left .round p.small {
  font-size: 1.3rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .zu_block .left .round p.small {
    font-size: 1.2rem;
  }
}
.zu_block .left .round p.big {
  font-weight: 500;
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  .zu_block .left .round p.big {
    font-size: 2rem;
  }
}
.zu_block .arr {
  margin: 0 0 0 1rem;
}
@media only screen and (max-width: 768px) {
  .zu_block .arr {
    transform: rotate(90deg);
    width: 80px !important;
    margin: -5rem auto;
  }
  .zu_block .arr img[src$=".svg"],
  .zu_block .arr img {
    width: 100%;
  }
}
.zu_block .right {
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  .zu_block .right {
    padding: 0 8vw;
  }
}
.zu_block .right .fi {
  margin: 0 0 2rem 0;
}
.zu_block .right .point dl {
  display: flex;
  margin: 0 0 1rem 0;
  align-items: center;
}
.zu_block .right .point dl dt {
  width: 10em;
  background: #F7F4F2;
  text-align: center;
  padding: 1rem 0;
  border-radius: 5px;
  font-weight: 500;
}
.zu_block .right .point dl dd {
  flex: 1;
  padding: 0 0 0 2rem;
}

.omoi {
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  .omoi {
    padding: 8vw;
  }
}
.omoi h2 {
  font-size: 2.4rem;
  margin: 0 0 2rem 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .omoi h2 {
    font-size: 1.6rem;
  }
}
.omoi .omoi_block {
  background: #F7F4F2;
  padding: 5rem 3rem;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .omoi .omoi_block {
    padding: 3rem;
  }
}
.omoi .omoi_block p {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .omoi .omoi_block p {
    font-size: 1.4rem;
    text-align: left;
  }
  .omoi .omoi_block p br {
    display: none;
  }
}

.lastvisual {
  width: 900px;
  margin: 0 auto 10rem auto;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .lastvisual {
    width: 100%;
    margin: 0 0 5rem 0;
  }
}
.lastvisual p {
  text-align: center;
  margin: 0.8em 0 0 0;
  font-weight: 500;
}