@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.visual_header {
  background: url(/company/recruitment/assets/img/business/business.jpg) center center;
  background-size: cover;
}
section.visual_header .title {
  color: #fff;
  padding: 0 5vw;
}
@media only screen and (max-width: 768px) {
  section.visual_header {
    background: url("/company/recruitment/assets/img/business/business_sp.jpg") center center;
    background-size: cover;
  }
}

#business .inner {
  max-width: calc(1200px + 10%);
  padding: 0 5%;
  margin: auto;
}
#business .first-lead {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 100px auto;
}
@media only screen and (max-width: 768px) {
  #business .first-lead {
    flex-direction: column;
    margin: 50px auto;
  }
}
#business .first-lead .copy {
  width: 45%;
  font-size: clamp(3rem, 3.2vw, 4.2rem);
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  #business .first-lead .copy {
    width: 100%;
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
#business .first-lead p {
  width: 55%;
}
@media only screen and (max-width: 768px) {
  #business .first-lead p {
    width: 100%;
  }
}
#business .zu {
  max-width: 956px;
  margin: 0 auto 100px;
}
@media only screen and (max-width: 768px) {
  #business .zu {
    margin-bottom: 60px;
  }
}
#business .field {
  position: relative;
  padding: 80px 0 0;
  margin-bottom: 250px;
}
@media only screen and (max-width: 768px) {
  #business .field {
    padding: 40px 0 0;
    margin-bottom: 80px;
  }
}
#business .field#field2 {
  margin-bottom: 0;
}
#business .field::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -94px;
  width: 100%;
  height: calc(100% + 125px);
  background: linear-gradient(45deg, #FFF8CC, #FFFEF7, #FDE236);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  #business .field::before {
    left: -5vw;
    width: 100vw;
  }
}
#business .field h2 {
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #business .field h2 {
    margin-bottom: 10px;
  }
}
#business .field h2 .sub {
  font-size: 1.8rem;
  display: block;
}
#business .field h2 .main {
  font-size: 4rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  #business .field h2 .main {
    font-size: 2.2rem;
  }
}
#business .field .tags {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  #business .field .tags {
    margin-bottom: 40px;
  }
}
#business .field .tags li {
  border-radius: 14px;
  border: 1px solid #3E3E3E;
  background-color: #fff;
  line-height: 1;
  padding: 4px 15px;
  font-size: 1.4rem;
}
#business .field a .blank {
  display: inline-block;
  vertical-align: 1px;
  line-height: 12px;
  margin-left: 4px;
}
#business .field a .blank img {
  width: 12px;
}
#business .field .business-block {
  position: relative;
  background-color: #FAFAFA;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 1028px) {
  #business .field .business-block {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  #business .field .business-block {
    display: block;
  }
}
#business .field .business-block .txt {
  padding: 100px 6% 60px;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  #business .field .business-block .txt {
    padding: 80px 5% 50px;
  }
}
#business .field .business-block .txt h3 {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  background-color: #FDE236;
  line-height: 1;
  padding: 20px 40px;
}
@media only screen and (max-width: 768px) {
  #business .field .business-block .txt h3 {
    font-size: 1.6rem;
    padding: 20px 20px;
  }
}
#business .field .business-block .txt .tag span {
  display: inline-block;
  border-radius: 14px;
  border: 1px solid #3E3E3E;
  background-color: #fff;
  line-height: 1;
  padding: 4px 15px;
  font-size: 1.4rem;
  margin-bottom: 20px;
  margin-right: 5px;
}
#business .field .business-block .txt .copy {
  font-size: clamp(2rem, 2vw, 3rem);
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  #business .field .business-block .txt .copy {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
#business .field .business-block .txt p {
  margin-bottom: 2rem;
}
#business .field .business-block .txt a {
  font-size: 1.4rem;
}
#business .field .business-block .exsample {
  background-color: #F6F5F0;
  padding: 70px 5%;
  width: 530px;
}
@media screen and (max-width: 1028px) {
  #business .field .business-block .exsample {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #business .field .business-block .exsample {
    width: 100%;
    padding: 35px 5% 10px;
  }
}
#business .field .business-block .exsample h4 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}
#business .field .business-block .exsample .row {
  margin-bottom: 20px;
}
#business .field .business-block .exsample .row.row-layout {
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  #business .field .business-block .exsample .row.row-layout {
    display: block;
  }
  #business .field .business-block .exsample .row.row-layout .col {
    margin-bottom: 20px;
  }
}
#business .field .business-block .exsample .row h5 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
#business .field .business-block .exsample .row h5::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #FDE236;
  margin-right: 8px;
  vertical-align: -2px;
}
#business .field .business-block .exsample .row .layout {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  #business .field .business-block .exsample .row .layout {
    gap: 8%;
  }
}
#business .field .business-block .exsample .row .layout figure {
  width: 126px;
}
@media only screen and (max-width: 768px) {
  #business .field .business-block .exsample .row .layout figure {
    width: 46%;
    margin-bottom: 1rem;
  }
}
#business .field .business-block .exsample .row .layout figure figcaption {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 7px;
}
#business .annouce {
  text-align: right;
  padding: 0 0 50px;
  font-size: 1.2rem;
}
#business #movie {
  background-color: #3E3E3E;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  #business #movie {
    padding: 30px 0 0;
  }
}
#business #movie h2 {
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #business #movie h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
#business #movie .layout {
  display: flex;
  gap: 2%;
}
@media only screen and (max-width: 768px) {
  #business #movie .layout {
    display: block;
  }
}
#business #movie .layout .box {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #business #movie .layout .box {
    width: 100%;
    margin-bottom: 40px;
  }
}
#business #movie .layout .box .title {
  color: #fff;
  font-size: 1.5rem;
  display: block;
}
#business #movie .layout .box .time {
  color: #fff;
  display: block;
  font-size: 1.3rem;
}
#business #movie .layout .box-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#business #movie .layout .box-layout .box {
  width: 48%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #business #movie .layout .box-layout .box {
    width: 100%;
  }
}
#business #movie .layout .blank {
  display: inline-block;
  vertical-align: 1px;
  line-height: 12px;
}
#business #movie .layout .blank img {
  width: 12px;
}