@charset "UTF-8";
/*default*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;1,200;1,300;1,400;1,500;1,600&family=Noto+Sans+JP:wght@200;300;400;500;600;700;900&display=swap");
.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 30px;
  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;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}
*::-ms-backdrop, .marquee__inner {
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
@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 10px;
  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*/
body {
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans", "メイリオ", meiryo, sans-serif;
}
body.noto {
  color: #333;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}
main {
  line-height: 1.75;
}
.en {
  font-family: "Satoshi-Medium", sans-serif;
  letter-spacing: 0.1em;
}
.enb {
  font-family: "Satoshi-Bold", sans-serif;
  letter-spacing: 0.1em;
}
.ens {
  font-family: "Satoshi-Black", sans-serif;
  letter-spacing: 0.1em;
}
/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("/recruit/new/fonts/Satoshi-LightItalic.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-LightItalic.woff") format("woff"), url("/recruit/new/fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("/recruit/new/fonts/Satoshi-Regular.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-Regular.woff") format("woff"), url("/recruit/new/fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("/recruit/new/fonts/Satoshi-Italic.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-Italic.woff") format("woff"), url("/recruit/new/fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("/recruit/new/fonts/Satoshi-Medium.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-Medium.woff") format("woff"), url("/recruit/new/fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("/recruit/new/fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-MediumItalic.woff") format("woff"), url("/recruit/new/fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("/recruit/new/fonts/Satoshi-Bold.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-Bold.woff") format("woff"), url("/recruit/new/fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("/recruit/new/fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-BoldItalic.woff") format("woff"), url("/recruit/new/fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("/recruit/new/fonts/Satoshi-Black.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-Black.woff") format("woff"), url("/recruit/new/fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("/recruit/new/fonts/Satoshi-BlackItalic.woff2") format("woff2"), url("/recruit/new/fonts/Satoshi-BlackItalic.woff") format("woff"), url("/recruit/new/fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
._pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  ._pc {
    display: none;
  }
}
._sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  ._sp {
    display: block;
  }
}
.adelay01 {
  animation-delay: 0.1s !important;
}
@media only screen and (max-width: 768px) {
  .adelay01 {
    animation-delay: 0s !important;
  }
}
.adelay02 {
  animation-delay: 0.2s !important;
}
@media only screen and (max-width: 768px) {
  .adelay02 {
    animation-delay: 0s !important;
  }
}
.adelay03 {
  animation-delay: 0.3s !important;
}
@media only screen and (max-width: 768px) {
  .adelay03 {
    animation-delay: 0s !important;
  }
}
.adelay04 {
  animation-delay: 0.4s !important;
}
@media only screen and (max-width: 768px) {
  .adelay04 {
    animation-delay: 0s !important;
  }
}
.adelay05 {
  animation-delay: 0.5s !important;
}
@media only screen and (max-width: 768px) {
  .adelay05 {
    animation-delay: 0s !important;
  }
}
.adelay06 {
  animation-delay: 0.6s !important;
}
@media only screen and (max-width: 768px) {
  .adelay06 {
    animation-delay: 0s !important;
  }
}
.adelay07 {
  animation-delay: 0.7s !important;
}
@media only screen and (max-width: 768px) {
  .adelay07 {
    animation-delay: 0s !important;
  }
}
.adelay08 {
  animation-delay: 0.8s !important;
}
@media only screen and (max-width: 768px) {
  .adelay08 {
    animation-delay: 0s !important;
  }
}
.adelay09 {
  animation-delay: 0.9s !important;
}
@media only screen and (max-width: 768px) {
  .adelay09 {
    animation-delay: 0s !important;
  }
}
.adelay10 {
  animation-delay: 1s !important;
}
@media only screen and (max-width: 768px) {
  .adelay10 {
    animation-delay: 0s !important;
  }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.inview.fadeInup03 {
  overflow: hidden;
}
.inview.fadeInup, .inview.fadeInup03 img, .inview.fadeInup03:after {
  opacity: 0;
}
.inview.fadeInup.active {
  animation: fadeInup 0.5s ease-out;
  animation-fill-mode: forwards;
}
.inview.fadeInup03.active img {
  animation: zoom02 2s cubic-bezier(0.61, 1, 0.88, 1);
  animation-fill-mode: forwards;
}
.inview.fadeInup03:after {
  transition: all 1s ease;
  transition-delay: 0.3s;
}
.inview.fadeInup03.active:after {
  opacity: 1;
}
.inview.leftright {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .inview.leftright {
    opacity: 1;
  }
}
.inview.leftright.active {
  animation: leftright_anim 0.5s ease;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 768px) {
  .inview.leftright.active {
    animation: none;
  }
}
.inview.rightleft {
  opacity: 0;
}
.inview.rightleft.active {
  animation: rightleft_anim 0.5s ease-out;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 768px) {
  .inview.rightleft.active {
    animation: none;
  }
}
.inview.show {
  opacity: 0;
}
.inview.show.active {
  animation: show 1s ease-out;
  animation-fill-mode: forwards;
}
@keyframes zoom02 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.image-anime-mask {
  overflow: hidden;
  transform: translate3d(-100%, 0, 0);
  transition: all 0.5s ease;
  transform-origin: left;
}
.image-anime-mask.active {
  transform: translate3d(0, 0, 0);
}
.image-anime-main {
  display: block;
  transform: translate3d(100%, 0, 0);
  transition: all 0.5s ease;
}
.image-anime-main.active {
  transform: translate3d(0, 0, 0);
}
.anim_box span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.3s;
  line-height: 1.5;
  transform: translateY(12px);
}
.anim_box span.gr:before {
  background: #31955B;
}
.anim_box span:before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 9;
  background: #31955B;
  transform: translateX(-101%);
}
.anim_box span.adelay02 {
  transition-delay: 0.6s;
}
.anim_box.is-active span {
  opacity: 1;
  transform: translateY(0);
}
.anim_box.is-active span:before {
  animation-name: copyslide;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  animation-delay: 0.1s;
}
.anim_box.is-active span.adelay02:before {
  animation-delay: 0.3s;
}
.anim_box.is-active span.adelay04:before {
  animation-delay: 0.6s;
}
.anim_box.is-active.ren span:nth-of-type(1):before {
  animation-delay: 0.3s;
}
.anim_box.is-active.ren span:nth-of-type(2):before {
  animation-delay: 0.4s;
}
.anim_box.is-active.ren span:nth-of-type(3):before {
  animation-delay: 0.5s;
}
.anim_box.is-active.ren span:nth-of-type(4):before {
  animation-delay: 0.6s;
}
@keyframes fadeInup {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes leftright_anim {
  0% {
    transform: translatex(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes rightleft_anim {
  0% {
    transform: translatex(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mt0 {
  margin-top: 0px;
}
.mb0 {
  margin-bottom: 0px;
}
.ml0 {
  margin-left: 0px;
}
.mr0 {
  margin-right: 0px;
}
.pt0 {
  padding-top: 0px;
}
.pb0 {
  padding-bottom: 0px;
}
.pl0 {
  padding-left: 0px;
}
.pr0 {
  padding-right: 0px;
}
.mt5 {
  margin-top: 5px;
}
.mb5 {
  margin-bottom: 5px;
}
.ml5 {
  margin-left: 5px;
}
.mr5 {
  margin-right: 5px;
}
.pt5 {
  padding-top: 5px;
}
.pb5 {
  padding-bottom: 5px;
}
.pl5 {
  padding-left: 5px;
}
.pr5 {
  padding-right: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.ml10 {
  margin-left: 10px;
}
.mr10 {
  margin-right: 10px;
}
.pt10 {
  padding-top: 10px;
}
.pb10 {
  padding-bottom: 10px;
}
.pl10 {
  padding-left: 10px;
}
.pr10 {
  padding-right: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mb15 {
  margin-bottom: 15px;
}
.ml15 {
  margin-left: 15px;
}
.mr15 {
  margin-right: 15px;
}
.pt15 {
  padding-top: 15px;
}
.pb15 {
  padding-bottom: 15px;
}
.pl15 {
  padding-left: 15px;
}
.pr15 {
  padding-right: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.ml20 {
  margin-left: 20px;
}
.mr20 {
  margin-right: 20px;
}
.pt20 {
  padding-top: 20px;
}
.pb20 {
  padding-bottom: 20px;
}
.pl20 {
  padding-left: 20px;
}
.pr20 {
  padding-right: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mb25 {
  margin-bottom: 25px;
}
.ml25 {
  margin-left: 25px;
}
.mr25 {
  margin-right: 25px;
}
.pt25 {
  padding-top: 25px;
}
.pb25 {
  padding-bottom: 25px;
}
.pl25 {
  padding-left: 25px;
}
.pr25 {
  padding-right: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml30 {
  margin-left: 30px;
}
.mr30 {
  margin-right: 30px;
}
.pt30 {
  padding-top: 30px;
}
.pb30 {
  padding-bottom: 30px;
}
.pl30 {
  padding-left: 30px;
}
.pr30 {
  padding-right: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mb35 {
  margin-bottom: 35px;
}
.ml35 {
  margin-left: 35px;
}
.mr35 {
  margin-right: 35px;
}
.pt35 {
  padding-top: 35px;
}
.pb35 {
  padding-bottom: 35px;
}
.pl35 {
  padding-left: 35px;
}
.pr35 {
  padding-right: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mb40 {
  margin-bottom: 40px;
}
.ml40 {
  margin-left: 40px;
}
.mr40 {
  margin-right: 40px;
}
.pt40 {
  padding-top: 40px;
}
.pb40 {
  padding-bottom: 40px;
}
.pl40 {
  padding-left: 40px;
}
.pr40 {
  padding-right: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mb45 {
  margin-bottom: 45px;
}
.ml45 {
  margin-left: 45px;
}
.mr45 {
  margin-right: 45px;
}
.pt45 {
  padding-top: 45px;
}
.pb45 {
  padding-bottom: 45px;
}
.pl45 {
  padding-left: 45px;
}
.pr45 {
  padding-right: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mb50 {
  margin-bottom: 50px;
}
.ml50 {
  margin-left: 50px;
}
.mr50 {
  margin-right: 50px;
}
.pt50 {
  padding-top: 50px;
}
.pb50 {
  padding-bottom: 50px;
}
.pl50 {
  padding-left: 50px;
}
.pr50 {
  padding-right: 50px;
}
.parenthesis {
  position: relative;
}
.parenthesis::before,
.parenthesis::after {
  position: absolute;
  top: 0%;
  content: "";
  width: 10px;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
.parenthesis::before {
  left: 0;
  border-left: 1px solid #fff;
}
.parenthesis::after {
  right: 0;
  border-right: 1px solid #fff;
}
/*スクロールバー全体*/
/*スクロールバーの軌道*/
/*スクロールバーの動く部分*/
.bevel {
  background: linear-gradient(45deg, transparent 0, rgba(212, 15, 31, 0.9) 0), linear-gradient(135deg, transparent 50px, rgba(212, 15, 31, 0.9) 50px), linear-gradient(225deg, transparent 0, rgba(212, 15, 31, 0.9) 0), linear-gradient(315deg, transparent 50px, rgba(212, 15, 31, 0.9) 50px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.bevel.white {
  background: linear-gradient(45deg, transparent 0, #ffffff 0), linear-gradient(135deg, transparent 20px, #ffffff 20px), linear-gradient(225deg, transparent 0, #ffffff 0), linear-gradient(315deg, transparent 20px, #ffffff 20px);
}
.image100 img {
  width: 100%;
}
@keyframes masking {
  0% {
    transform: translate(0, -101%);
  }
  42%, 58% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 101%);
  }
}
@keyframes copyslide {
  0% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes copyslide_stop {
  0% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
.sc_box {
  position: absolute;
  right: 0;
  bottom: 50px;
  display: flex;
  z-index: 7000;
  width: 3em;
}
.sc_box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 200%;
  top: -100%;
  left: 0;
  content: "";
  z-index: 999;
}
.sc_box p {
  color: #ffffff;
  font-size: 10px;
  font-size: 1rem;
  margin-top: -5em;
  transform: translateX(46%);
}
.scroll_btn {
  content: "";
  height: 50px;
  width: 1px;
  background: #fff;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll_btn {
    height: 30px;
  }
}
.scroll_btn .in {
  width: 1px;
  height: 50px;
  background: #333;
  z-index: 999;
  animation: masking 2s ease infinite;
}
@media only screen and (max-width: 768px) {
  .scroll_btn .in {
    height: 30px;
  }
}
.scroll_btn .in2 {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  animation: masking 2s ease infinite;
}
.scroll_btn a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2000;
}
@keyframes masking {
  0% {
    transform: translate(0, -101%);
  }
  42%, 58% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 101%);
  }
}
@keyframes arrows {
  0% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}
.image100 img {
  width: 100%;
}
.animate_btn.rv a:after {
  color: #D40F1F;
  position: absolute;
  font-family: "ionicons";
  top: 50%;
  right: 90%;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f125";
  font-size: 12px;
  font-size: 1.2rem;
  z-index: 999;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}
.animate_btn a {
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  padding: 10px 30px 10px 30px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .animate_btn a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.animate_btn a:before {
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  background: #D40F1F;
  transition: all 0.3s ease;
  right: 0;
  left: auto;
}
.animate_btn a:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 20px;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f102";
  font-size: 18px;
  font-size: 1.8rem;
  z-index: 999;
  transition: all 0.3s ease;
}
.animate_btn a span {
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .animate_btn a:hover {
    color: #D40F1F;
  }
}
.animate_btn a:hover span {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .animate_btn a:hover span {
    color: #ffffff;
  }
}
.animate_btn a:hover:before {
  width: 100%;
  left: 0;
}
.animate_btn a:hover:after {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .animate_btn a:hover:after {
    color: #ffffff;
  }
}
@keyframes animate_btn_on {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes animate_btn_off {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.image_wrap {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .image_wrap {
    width: 100%;
  }
}
.image_wrap.bg01 {
  padding: 0 50px 0 0;
}
@media only screen and (max-width: 768px) {
  .image_wrap.bg01 {
    padding: 0;
  }
}
.image_wrap.bg01:after {
  background: #31955B;
  height: 100%;
  top: -50px;
  left: 50px;
}
.image_wrap.bg02 {
  padding: 0 0 0 50px;
  margin: 0 0 100px 0;
}
@media only screen and (max-width: 768px) {
  .image_wrap.bg02 {
    padding: 0;
    margin: 0;
  }
}
.image_wrap.bg02:after {
  background: #D40F1F;
  height: 70%;
  bottom: -50px;
  left: -50px;
}
.image_wrap.bg03 {
  padding: 0 50px 0 0;
}
@media only screen and (max-width: 768px) {
  .image_wrap.bg03 {
    padding: 0;
  }
}
.image_wrap.bg03:after {
  background: #666;
  height: 100%;
  top: -50px;
  left: 50px;
}
.image-mask {
  transform: translate3d(-100%, 0, 0);
  transition: 0.5s ease;
  transform-origin: left;
  overflow: hidden;
  display: block;
}
.image-mask.active {
  transform: translate3d(0, 0, 0);
}
.image-mask.active .img_main {
  transform: translate3d(0, 0, 0);
}
.image-mask .img_main {
  transform: translate3d(101%, 0, 0);
  transition: 0.8s ease;
}
@keyframes hoverElem {
  0% {
    transform: translate3D(0, 0, 0);
  }
  49% {
    transform: translate3D(100%, 0, 0);
    visibility: hidden;
  }
  50% {
    transform: translate3D(-100%, 0, 0);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}
.image_wrap {
  position: relative;
  margin: 0 0 0 0.1px;
}
.image-mask {
  transform: translate3d(-100%, 0, 0);
  transition: 1s ease;
  transform-origin: left;
  overflow: hidden;
  display: block;
}
.image-mask.active {
  transform: translate3d(0, 0, 0);
}
.image-mask.active .img_main {
  transform: translate3d(0, 0, 0) scale(1);
}
.image-mask .image {
  position: relative;
}
.image-mask .img_main {
  transform: translate3d(101%, 0, 0) scale(1.2);
  transition: 1s ease;
}
@keyframes hoverElem {
  0% {
    transform: translate3D(0, 0, 0);
  }
  49% {
    transform: translate3D(100%, 0, 0);
    visibility: hidden;
  }
  50% {
    transform: translate3D(-100%, 0, 0);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}
@keyframes hoverElem {
  0% {
    transform: translate3D(0, 0, 0);
  }
  49% {
    transform: translate3D(100%, 0, 0);
    visibility: hidden;
  }
  50% {
    transform: translate3D(-100%, 0, 0);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}
/* perfect-scrollbar v0.8.1 */
.ps {
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.ps.ps--active-x > .ps__scrollbar-x-rail, .ps.ps--active-y > .ps__scrollbar-y-rail {
  display: block;
  background-color: transparent;
}
.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #999;
  height: 11px;
}
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #999;
  width: 11px;
}
.ps > .ps__scrollbar-x-rail {
  display: none;
  position: absolute;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  bottom: 0px;
  height: 15px;
}
.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  position: absolute;
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  bottom: 2px;
  height: 6px;
}
.ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x, .ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
  height: 11px;
}
.ps > .ps__scrollbar-y-rail {
  display: none;
  position: absolute;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  right: 0;
  width: 15px;
}
.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  position: absolute;
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  right: 2px;
  width: 6px;
}
.ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
  width: 11px;
}
.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #999;
  height: 11px;
}
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #999;
  width: 11px;
}
.ps:hover > .ps__scrollbar-x-rail, .ps:hover > .ps__scrollbar-y-rail {
  opacity: 0.6;
}
.ps:hover > .ps__scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
  background-color: #999;
}
.ps:hover > .ps__scrollbar-y-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  background-color: #999;
}
:root {
  --offset: 40vw;
  --move-initial: calc(-30% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}
.bg_image {
  --offset: 30vw;
  --move-initial: calc(-30% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}
*::-ms-backdrop, :root {
  --move-initial: -40vw;
  --move-final: -150vw;
}
.marquee {
  width: 100vw;
  overflow: hidden;
}
section.lead .inner {
  padding: 0 0 30px 0;
}
.marquee__inner {
  width: 600%;
  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;
}
*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  margin: 0;
}
*::-ms-backdrop, .marquee__inner {
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
@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);
  }
}
.scroll {
  content: "";
  position: relative;
  height: 100px;
  width: 1px;
  margin: auto;
  background: #ccc;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll {
    height: 30px;
  }
}
.scroll .in {
  position: absolute;
  width: 1px;
  height: 100px;
  background: #000;
  z-index: 999;
  animation: masking 2s ease infinite;
}
@media only screen and (max-width: 768px) {
  .scroll .in {
    height: 30px;
  }
}
.scroll .in2 {
  position: absolute;
  width: 1px;
  height: 100px;
  background: #000;
  z-index: 999;
  animation: masking 2s ease infinite;
}
.scroll a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2000;
}
body {
  color: #3E3E3E;
}
a {
  color: #3E3E3E;
}
a:hover {
  color: #D40F1F;
  text-decoration: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  outline: none !important;
}
img {
  vertical-align: bottom;
  line-height: 1;
}
._pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}
._sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  ._sp {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  ._tablet {
    display: none;
  }
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
}
.tate {
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 768px) {
  .tate {
    writing-mode: horizontal-tb;
  }
}
.tatete {
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
html.win.gecko .ro, html.win.gecko .la {
  transform: rotate(0.001deg);
}
a, img {
  outline: none !important;
}
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.unborder::after {
  content: "";
  display: block;
  margin: 10px auto 10px auto;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #D40F1F;
}
@media only screen and (max-width: 768px) {
  .unborder::after {
    margin: 0.8rem auto;
  }
}
.lborder::after {
  content: "";
  display: block;
  margin: 10px 0 10px 0;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #000;
}
.unborder_big::after {
  content: "";
  display: block;
  margin: 20px auto 20px auto;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .unborder_big::after {
    margin: 1.4px auto;
  }
}
ul, li {
  list-style: none;
}
ul.normal_list {
  margin: 0;
  padding: 0 0 0 1em;
}
ul.normal_list li {
  padding: 0 0 0 0;
  margin: 0 0 0 0.3em;
  position: relative;
  list-style-type: disc;
  line-height: 1.5;
}
.d02s {
  animation-delay: 0.2s;
}
.d03s {
  animation-delay: 0.3s;
}
.d04s {
  animation-delay: 0.4s;
}
.d06s {
  animation-delay: 0.6s;
}
.d08s {
  animation-delay: 0.8s;
}
.d1s {
  animation-delay: 1s;
}
/*
Flaticon icon font: Flaticon
Creation date: 03/10/2020 15:15
*/
@font-face {
  font-family: "Flaticon";
  src: url("/recruit/new/font/Flaticon.eot");
  src: url("/recruit/new/font/Flaticon.eot?#iefix") format("embedded-opentype"), url("/recruit/new/font/Flaticon.woff2") format("woff2"), url("/recruit/new/font/Flaticon.woff") format("woff"), url("/recruit/new/font/Flaticon.ttf") format("truetype"), url("/recruit/new/font/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("/recruit/new/font/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;
}
.overlay {
  overflow: hidden;
}
#fullpage {
  line-height: 1.75;
}
section.history_visual {
  height: 80vh;
  min-height: 600px;
  position: relative;
  margin: 0 auto 0 auto;
  max-width: 1400px;
  overflow: hidden;
}
section.history_visual .copy {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 768px) {
  section.history_visual .copy {
    top: 40%;
  }
}
section.history_visual .copy p.enb {
  font-size: 60px;
  font-size: 3.75rem;
  text-align: center;
  letter-spacing: 0.5em;
}
@media only screen and (max-width: 768px) {
  section.history_visual .copy p.enb {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
section.history_visual .copy h1 {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  section.history_visual .copy h1 {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.history_visual .copy h1 span {
  display: inline-block;
  background: #ffffff;
}
section.history_visual {
  position: relative;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  section.history_visual {
    margin-bottom: 100px;
  }
}
section.history_visual .mv {
  position: absolute;
}
section.history_visual .mv img {
  width: 100%;
}
section.history_visual .mv.mv01 {
  width: 22%;
  top: 0;
}
@media only screen and (max-width: 768px) {
  section.history_visual .mv.mv01 {
    width: 38%;
  }
}
section.history_visual .mv.mv02 {
  width: 30%;
  left: 70%;
  top: -50px;
}
@media only screen and (max-width: 768px) {
  section.history_visual .mv.mv02 {
    top: 50px;
    width: 50%;
    left: 50%;
  }
}
section.history_visual .mv.mv03 {
  width: 20%;
  left: 100px;
  bottom: -2rem;
}
section.history_visual .mv.mv033 {
  width: 20%;
  left: 220px;
  bottom: 50px;
}
@media only screen and (max-width: 768px) {
  section.history_visual .mv.mv033 {
    bottom: 50px;
    left: 50px;
  }
}
section.history_visual .mv.mv04 {
  width: 20%;
  bottom: -5rem;
  left: 40%;
}
section.history_visual .mv.mv043 {
  width: 23%;
  bottom: 0;
  left: 40%;
}
@media only screen and (max-width: 768px) {
  section.history_visual .mv.mv043 {
    width: 50%;
    left: 0%;
    bottom: 25%;
  }
}
section.history_visual .mv.mv05 {
  width: 25%;
  right: 0;
  bottom: 30px;
}
@media only screen and (max-width: 768px) {
  section.history_visual .mv.mv05 {
    bottom: 0;
    right: 50%;
  }
}
section.history_visual .mv.mv053 {
  width: 25%;
  right: 0;
  bottom: 30px;
}
@media only screen and (max-width: 768px) {
  section.history_visual .mv.mv053 {
    width: 40%;
    bottom: 100px;
  }
}
.hisotry_block {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .hisotry_block {
    width: 100%;
    display: block;
    margin: 0 0 100px 0;
    overflow: hidden;
  }
}
.hisotry_block .in {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 5rem 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .hisotry_block .in {
    display: block;
    padding: 0;
  }
}
.hisotry_block .in .image {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .hisotry_block .in .image {
    width: 100%;
    margin: 0 0 50px 0;
  }
}
.hisotry_block .in .txt {
  width: 55%;
}
@media only screen and (max-width: 768px) {
  .hisotry_block .in .txt {
    width: 100%;
  }
}
.hisotry_block .bgb {
  display: block;
  position: absolute;
  width: 80%;
  height: 100%;
  top: 50px;
  right: 0;
  content: "";
  z-index: 0;
  background: #fafafa;
}
.hisotry_block.left {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .hisotry_block.left {
    margin-bottom: 100px;
  }
}
.hisotry_block.left .in {
  display: flex;
  justify-content: space-between;
  margin: 0;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .hisotry_block.left .in {
    display: block;
  }
}
.hisotry_block.left .txt {
  text-align: left;
  padding: 0 0 0 10vw;
}
@media only screen and (max-width: 768px) {
  .hisotry_block.left .txt {
    padding: 0 8vw;
    width: 100%;
  }
}
.hisotry_block.left .txt .entate {
  left: 17px;
}
@media only screen and (max-width: 768px) {
  .hisotry_block.left .txt .entate {
    left: calc(100% - 54px);
  }
}
.hisotry_block.left .txt .year {
  right: 0;
}
.hisotry_block.left .txt .txtblock p {
  text-align: left;
}
.hisotry_block .image {
  width: 50%;
  position: relative;
  z-index: 100;
}
.hisotry_block.right .txt {
  padding: 0 10vw 0 0;
}
@media only screen and (max-width: 768px) {
  .hisotry_block.right .txt {
    padding: 0 8vw;
  }
}
.hisotry_block.right .txt .entate {
  right: 17px;
}
@media only screen and (max-width: 768px) {
  .hisotry_block.right .txt .entate {
    right: auto;
    left: calc(100% - 54px);
  }
}
.hisotry_block.right .txt .year {
  right: 8vw;
}
.hisotry_block.right .txt .txtblock p {
  text-align: left;
}
.hisotry_block .txt {
  position: relative;
  z-index: 99;
  width: 45%;
}
.hisotry_block .txt .entate {
  position: absolute;
  top: 0;
  color: #D40F1F;
  font-size: 12px;
  line-height: 1.5;
}
.hisotry_block .txt .year {
  font-size: 5rem;
  line-height: 1;
  font-feature-settings: "palt";
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .hisotry_block .txt .year {
    margin: 0 0 10px 0;
    font-size: 64px;
    font-size: 4rem;
    position: static;
  }
}
.hisotry_block .txt h2 {
  font-weight: bold;
  margin: 0 0 30px 0;
  font-feature-settings: "palt";
  line-height: 1.3;
  font-size: 34px;
  font-size: 2.125rem;
}
@media only screen and (max-width: 768px) {
  .hisotry_block .txt h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.hisotry_block .txt .txtblock h3 {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
}
.hisotry_block .txt .txtblock p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
}
section.future {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  section.future {
    padding: 0 5vw;
    margin: 0 0 50px 0;
  }
}
section.future .inner {
  width: 680px;
  background: #ffffff;
  margin: auto;
  padding: 5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media only screen and (max-width: 768px) {
  section.future .inner {
    width: 100%;
    padding: 2rem;
  }
}
section.future .title {
  text-align: center;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  section.future .title {
    margin: 0 0 50px 0;
  }
}
section.future .title p.enb {
  color: #D40F1F;
  line-height: 1;
  font-size: 50px;
  font-size: 3.125rem;
}
@media only screen and (max-width: 768px) {
  section.future .title p.enb {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
  }
}
section.future .title p.jp {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  font-size: 30px;
  font-size: 1.875rem;
}
@media only screen and (max-width: 768px) {
  section.future .title p.jp {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
  }
}
section.future h3 {
  font-weight: bold;
  margin: 0 0 10px 0;
  font-feature-settings: "palt";
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}
section.future p {
  margin: 0 0 1em 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  section.future p {
    text-align: left;
  }
  section.future p br {
    display: none;
  }
}
.links_btn {
  margin: 50px 0 0 0;
  text-align: center;
}
.links_btn a {
  display: inline-block;
  font-weight: bold;
  position: relative;
  padding: 0;
}
.links_btn a span.c-icon {
  margin: 0 0.2em 0.2em;
}
.links_btn a:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.3s ease;
  transform-origin: right top;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media only screen and (max-width: 768px) {
  .links_btn a:before {
    background-color: none;
    width: auto;
    height: auto;
    display: none;
  }
}
.links_btn a:hover {
  color: #333;
}
.links_btn a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}