@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/history_future/visual.jpg) center center;
  background-size: cover;
}
section.visual_header .title {
  color: #fff;
  padding: 0 5vw;
}

.novisual_header {
  background-color: #fff;
}

#history_future .inner {
  position: relative;
  margin: auto;
}
#history_future #first {
  text-align: center;
  padding: 0 5% 150px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #history_future #first {
    padding: 50px 5% 50px;
    text-align: left;
    margin-top: -1px;
  }
}
#history_future #first p {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #history_future #first p {
    font-size: 1.4rem;
  }
}
#history_future .content-block {
  position: relative;
  padding-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block {
    padding-bottom: 100px;
  }
}
#history_future .content-block h2 {
  position: absolute;
  background-color: #FBE100;
  color: #000;
  max-width: 150px;
  min-width: 100px;
  width: 11vw;
  left: 5px;
  top: -25px;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  line-height: 1.2;
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block h2 {
    min-width: 60px;
    width: auto;
    height: auto;
    padding: 15px;
    max-width: none;
    flex-direction: column;
  }
}
#history_future .content-block h2 .year {
  writing-mode: vertical-rl;
  font-size: 3.6rem;
  font-size: clamp(3rem, 2.8vw, 3.6rem);
}
@media only screen and (max-width: 768px) {
  #history_future .content-block h2 .year {
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
  }
}
#history_future .content-block h2 .title {
  writing-mode: vertical-rl;
  font-weight: 500;
  font-size: 5.8rem;
  font-size: clamp(4rem, 4.2vw, 5.8rem);
}
@media only screen and (max-width: 768px) {
  #history_future .content-block h2 .title {
    writing-mode: horizontal-tb;
    font-size: 2rem;
  }
}
#history_future .content-block h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  aspect-ratio: 3/10;
  left: 0;
  bottom: 0;
  transform: translateY(75%);
  background: url(/company/recruitment/assets/img/history_future/side-arrow.svg) no-repeat center center/100% auto;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block h2::after {
    display: none;
  }
}
#history_future .content-block .content-visual {
  padding: 140px 100px 100px 200px;
  min-height: 373px;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-visual {
    padding: 80px 5% 0;
    min-height: 200px;
  }
  #history_future .content-block .content-visual .bg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
  }
  #history_future .content-block .content-visual .bg img {
    width: auto;
    height: 100vh;
  }
}
#history_future .content-block .content-visual p {
  color: #fff;
  font-size: 2.2rem;
  max-width: 800px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-visual p {
    font-size: 1.4rem;
    padding-bottom: 50px;
  }
}
#history_future .content-block .content-inner {
  background-color: #fff;
  padding: 70px 8% 70px 15%;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner {
    padding: 5%;
  }
}
#history_future .content-block .content-inner .content-row {
  display: flex;
  gap: 5%;
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row {
    display: block;
  }
}
#history_future .content-block .content-inner .content-row.nm {
  margin-bottom: 0;
}
#history_future .content-block .content-inner .content-row.mt {
  margin-top: 5rem;
}
#history_future .content-block .content-inner .content-row .txt {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row .txt {
    width: 100%;
  }
}
#history_future .content-block .content-inner .content-row .txt.wide {
  width: 100%;
}
#history_future .content-block .content-inner .content-row .txt .year {
  font-size: 3.3rem;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row .txt .year {
    font-size: 2rem;
  }
}
#history_future .content-block .content-inner .content-row .txt h3 {
  font-size: clamp(3rem, 2.8vw, 3.6rem);
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row .txt h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row .txt p {
    margin-bottom: 20px;
  }
}
#history_future .content-block .content-inner .content-row .image {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row .image {
    width: 100%;
  }
}
#history_future .content-block .content-inner .content-row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#history_future .content-block .content-inner .content-row2 .box {
  width: 47%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row2 .box {
    display: block;
    width: 100%;
  }
}
#history_future .content-block .content-inner .content-row2 .box h4 {
  background-color: #FBE100;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row2 .box h4 {
    font-size: 1.6rem;
  }
}
#history_future .content-block .content-inner .content-row2 .box h4 .year {
  line-height: 0.8;
  font-size: 4rem;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row2 .box h4 .year {
    font-size: 3rem;
  }
}
#history_future .content-block .content-inner .content-row2 .box p {
  padding: 20px 3%;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row2 .box p {
    font-size: 1.6rem;
  }
}
#history_future .content-block .content-inner .content-row2 .box sub {
  font-size: 70%;
}
#history_future .content-block .content-inner .content-row2 .box .det {
  flex-grow: 1;
  font-size: 1.5rem;
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  #history_future .content-block .content-inner .content-row2 .box .det {
    font-size: 1.3rem;
  }
}
#history_future #h1 {
  background: url(/company/recruitment/assets/img/history_future/bg01.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  #history_future #h1 {
    background: none;
  }
  #history_future #h1 .content-visual {
    background: url(/company/recruitment/assets/img/history_future/bg01.jpg) no-repeat center center/cover;
  }
}
#history_future #h1 .content-inner .content-row {
  max-width: 860px;
  margin-inline: auto;
}
#history_future #h1 .content-inner .content-row .txt {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  #history_future #h1 .content-inner .content-row .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#history_future #h1 .content-inner .content-row .image {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  #history_future #h1 .content-inner .content-row .image {
    width: 100%;
  }
}
#history_future #h2 {
  background: url(/company/recruitment/assets/img/history_future/bg02.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  #history_future #h2 {
    background: none;
  }
  #history_future #h2 .content-visual {
    background: url(/company/recruitment/assets/img/history_future/bg02.jpg) no-repeat center center/cover;
  }
}
#history_future #h2 .content-row-col3 {
  display: flex;
  gap: 5%;
}
@media only screen and (max-width: 768px) {
  #history_future #h2 .content-row-col3 {
    display: block;
  }
}
#history_future #h2 .content-row-col3 .box {
  width: 33.333%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #history_future #h2 .content-row-col3 .box {
    width: 100%;
    margin-bottom: 15px;
  }
}
#history_future #h2 .content-row-col3 .box .year {
  font-size: 2.8rem;
  font-weight: bold;
}
#history_future #h3 {
  background: url(/company/recruitment/assets/img/history_future/bg03.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  #history_future #h3 {
    background: none;
  }
  #history_future #h3 .content-visual {
    background: url(/company/recruitment/assets/img/history_future/bg03.jpg) no-repeat center center/cover;
  }
}
#history_future #h3 .topics {
  background-color: #FFFCEA;
}
#history_future #h3 .topics h3 {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 24px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #history_future #h3 .topics h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#history_future #h3 .topics h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 3px;
  background-color: #FFDC00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#history_future #h3 .topics .content-row {
  margin-bottom: 0;
}
#history_future #h3 .topics .content-row .txt h4 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #history_future #h3 .topics .content-row .txt h4 {
    font-size: 1.8rem;
  }
}
#history_future #h4 {
  background: url(/company/recruitment/assets/img/history_future/bg04.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  #history_future #h4 {
    background: none;
  }
  #history_future #h4 .content-visual {
    background: url(/company/recruitment/assets/img/history_future/bg04.jpg) no-repeat center center/cover;
  }
}
#history_future #h4 .content-row {
  margin-bottom: 0;
}
#history_future #h4 .arrow {
  width: 158px;
  margin: 0 auto 50px auto;
}
#history_future #h4 .more {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  margin-block: 40px;
}
@media only screen and (max-width: 768px) {
  #history_future #h4 .more {
    font-size: 1.8rem;
  }
}
#history_future #h5 {
  background: url(/company/recruitment/assets/img/history_future/bg05.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  #history_future #h5 {
    background: none;
    padding-bottom: 50px;
  }
  #history_future #h5 .content-visual {
    background: url(/company/recruitment/assets/img/history_future/bg05.jpg) no-repeat center center/cover;
  }
}
#history_future #h5 h2 {
  background: linear-gradient(180deg, #FBE100 0%, #FFFDF0 100%);
}
#history_future #h5 h2::after {
  background: none;
  background-color: #FFFDF0;
  width: 100%;
  height: 90px;
  bottom: -90px;
  left: 0;
  transform: none;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#history_future #h5 .first {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #history_future #h5 .first {
    font-size: 1.4rem;
  }
}
#history_future #h5 h3 {
  text-align: center;
  font-size: clamp(4rem, 4.2vw, 5.8rem);
  font-weight: 500;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #history_future #h5 h3 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
#history_future #h5 .lead {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #history_future #h5 .lead {
    font-size: 1.4rem;
    text-align: left;
  }
}
#history_future #h5 .key-image {
  margin-block: 40px;
}
#history_future #h5 .arrow {
  width: 158px;
  margin: 0 auto 50px auto;
}
#history_future #h5 .more {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin-block: 40px;
}
@media only screen and (max-width: 768px) {
  #history_future #h5 .more {
    font-size: 1.6rem;
    text-align: left;
    margin-block: 15px;
  }
}