@charset "UTF-8";
.inner {
  width: 1300px;
  padding-inline: 60px;
  margin-inline: auto;
}
/* ==== 十字飾り ==== */
.cross {
  margin-top: 75px;
}

/* =====================
  About
===================== */
.about {
  position: relative;
  background-color: #000;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAIAAABKoV4MAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDcuMi1jMDAwIDc5LjFiNjVhNzliNCwgMjAyMi8wNi8xMy0yMjowMTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkU5RkQ3OUY0QzA5NjExRURCOUY0Q0E5RkQzMkJDMUUxIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkU5RkQ3OUY1QzA5NjExRURCOUY0Q0E5RkQzMkJDMUUxIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RTlGRDc5RjJDMDk2MTFFREI5RjRDQTlGRDMyQkMxRTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RTlGRDc5RjNDMDk2MTFFREI5RjRDQTlGRDMyQkMxRTEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6L9m1yAAAAXUlEQVR42uzSMQoAMAhDUbGzo97/nE4NHXqBQl2+Q8EsKfhWRHS3nXH3zNT7LbE72qtKvxlI6J64gg12K7HBbiXIRz7y0Yd85KMP+chHH/KRjz7kIx99yH9ItgADALyekyWn14OsAAAAAElFTkSuQmCC');
  background-repeat: repeat;
  overflow: hidden;
}
/* メカ */
.about::before {
  content: '';
  display: block;
  background-image: url('/assets/image/top/works_bg_decoration.png');
  width: 639px;
  height: 658px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -236px;
  right: 0;
  pointer-events: none;
}
/* タウン */
.about::after {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-image: url('../../image/top/about_bg.png');
  height: 565px;
  min-height: 43.461538vw;
  width: 100%;
  bottom: -84px;
  left: 50%;
  transform: translateX(-50%);
}
.about .inner {
  position: relative;
  padding-block: 203px 189px;
  padding-inline: 84px;
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 111px;
}
.about .deco-tri {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  top: 0;
  position: absolute;
  left: 0;
  border-width: 210px 210px 0 0;
  border-color: var(--navy) transparent transparent transparent;
}

/* ==== 画像 左 ==== */
.about .inner .img {
  flex-shrink: 0;
  min-height: 628px;
  position: relative;
}
.about .inner .img img {
  opacity: 0;
  margin-top: 104px;
  position: relative;
  z-index: 2;
  transform: translateX(-6em) skewX(10deg);
  filter: blur(1em);
  transition: all 600ms var(--easeOutExpo) 100ms;
}
.about.on .inner .img img {
  opacity: 1;
  transform: translateX(0) skewX(0);
  filter: blur(0);
}
.about .inner .img .deco {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 1200ms var(--easeOutExpo) 300ms;
  opacity: 0;
}
.about .inner .img .deco {
  overflow: hidden;
  background-size: 200%;
  filter: blur(1em);
}
.about.on .inner .img .deco {
  background-size: 100%;
  opacity: 1;
  filter: blur(0);
}
.about .inner .img .deco[data-id='1'] {
  background-image: url('../../image/top/about_01.png');
  width: 150px;
  height: 150px;
  right: 79px;
  transition: all 1200ms var(--easeOutExpo) 150ms;
}
.about .inner .img .deco[data-id='2'] {
  background-image: url('../../image/top/about_02.png');
  width: 137px;
  height: 137px;
  left: -53px;
  top: 421px;
  transition: all 1200ms var(--easeOutExpo) 300ms;
}
.about .inner .img .deco[data-id='3'] {
  background-image: url('../../image/top/about_03.png');
  width: 210px;
  height: 210px;
  right: -43px;
  top: 418px;
  transition: all 1200ms var(--easeOutExpo) 450ms;
}

/* ==== テキスト 右 ==== */
.about .inner .text {
  min-height: 628px;
  position: relative;
  padding-top: 75px;
}
.about .inner .text .cross {
  position: relative;
  top: -29px;
  left: -62px;
}
.about .inner .text .h2 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
}
.about .inner .text .h2::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../../image/top/h2_about.png');
  width: 271px;
  height: 72px;
  display: block;
}
.about .inner .text h3 {
  font-size: 32px;
  line-height: 1.6875;
  font-family: var(--mincho);
  font-weight: bold;
  font-feature-settings: 'palt';
  letter-spacing: 0.03em;
  padding-top: 27px;
}
.about .inner .text p {
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.03em;
  font-feature-settings: 'palt';
  width: 482px;
  margin-top: 37px;
}
.about .inner .text .anchor {
  margin-top: 74px;
  margin-left: 14px;
  position: relative;
  z-index: 2;
}

/* =====================
  ビジネス
===================== */
.business {
  position: relative;
  min-height: 806px;
  z-index: 3;
  background-color: #000000;
}
.business::before,
.business::after {
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  top: 0;
  left: 30px;
}
.business::before {
  background-image: url('../../image/top/business_bg.png');
  height: 806px;
  width: 100%;
  left: 30px;
}
/* 三角形 */
.business::after {
  top: 0;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 155px 155px 0 0;
  border-color: #0c0c0c transparent transparent transparent;
}
.business .inner {
  position: relative;
  z-index: 3;
  padding-left: 90px;
  justify-content: space-between;
  margin-inline: auto;
  display: flex;
  flex-direction: row-reverse;
}

/* ==== 画像 左 ==== */
.business .inner .img {
  flex-shrink: 0;
  min-height: 628px;
  top: -77px;
  position: relative;
  right: -27px;
}
.business .inner .img img {
  position: relative;
  z-index: 2;
}

.business .inner .img .unit {
  opacity: 0;
  filter: blur(1em);
  transition: all 600ms var(--easeOutExpo) 0s;
}
.business .inner .img .unit[data-id='1'] {
  transform: translateX(-3em) skewX(10deg);
  transition-delay: 0ms;
}
.business .inner .img .unit[data-id='2'] {
  transform: translateX(3em) skewX(-10deg);
  transition-delay: 300ms;
}
.business.on .inner .img .unit {
  transform: translateX(0) skewX(0);
  opacity: 1;
  filter: blur(0);
}
.business .inner .img .unit[data-id='2'] {
  position: absolute;
  z-index: 3;
  top: 490px;
  left: -81px;
}

/* ==== テキスト 右 ==== */
.business .inner .cross {
  width: auto;
  position: relative;
  top: -31px;
  left: -62px;
}
.business .inner .text {
  position: relative;
  padding-left: 32px;
  padding-top: 181px;
}
.business .inner .text .cross {
  position: relative;
}
.business .inner .text .h2 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
}
.business .inner .text .h2::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../../image/top/h2_business.png');
  width: 321px;
  height: 72px;
  display: block;
}
.business .inner .text h3 {
  font-size: 32px;
  line-height: 1.6875;
  font-family: var(--mincho);
  font-weight: bold;
  font-feature-settings: 'palt';
  letter-spacing: 0.03em;
  padding-top: 26px;
}
.business .inner .text p {
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.03em;
  font-feature-settings: 'palt';
  width: 512px;
  margin-top: 36px;
}
.business .inner .text .anchor {
  margin-top: 74px;
  margin-left: 14px;
}

/* ==== バナー ==== */
.business .inner[data-id='banner'] {
  width: 1180px;
  margin-top: 58px;
  position: relative;
  left: 30px;
  padding: 60px 60px 56px;
  border-radius: 10px;
  position: relative;
  z-index: 5;
  margin-inline: auto;
  background-image: -moz-linear-gradient(164deg, rgb(35, 64, 96) 0%, rgb(24, 48, 76) 100%);
  background-image: -webkit-linear-gradient(164deg, rgb(35, 64, 96) 0%, rgb(24, 48, 76) 100%);
  background-image: -ms-linear-gradient(164deg, rgb(35, 64, 96) 0%, rgb(24, 48, 76) 100%);
}
.business .inner .banner p {
  text-align: center;
  line-height: 1;
  letter-spacing: 0.03em;
  padding-top: 18px;
  font-feature-settings: 'palt';
}
.business .inner .banner a {
  display: grid;
  place-content: center;
  font-weight: bold;
  font-size: 28px;
  font-feature-settings: 'palt';
  letter-spacing: 0.04em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('../../image/top/business_bnr.png');
  width: 1060px;
  height: 150px;
}
.business .gear {
  position: relative;
  z-index: 3;
}
.business .gear::before {
  content: '';
  display: block;
  background-image: url('/assets/image/top/works_bg_decoration.png');
  width: 639px;
  height: 658px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -124px;
  right: 0;
  pointer-events: none;
}

/* =====================
  WORKS
===================== */
.works {
  background-color: #000;
  background-repeat: repeat;
  position: relative;
  min-height: 1373px;
  padding-top: 107px;
  padding-bottom: 137px;
}
.works .text-slide {
  position: relative;
  z-index: 2;
}
.works .text-slide::before {
  display: block;
  content: '';
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  background-image: url('../../image/top/business-textslide1.png');
  width: 2473px;
  height: 152px;
  animation: scroll-anim 50s linear infinite;
  position: relative;
  z-index: 2;
}
@keyframes scroll-anim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2473px 0;
  }
}
.works .text-slide::after {
  content: '';
  display: block;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  background-image: url('../../image/top/business-textslide2.png');
  width: 2477px;
  height: 156px;
  animation: scroll-anim2 50s linear reverse infinite;
  position: relative;
  top: -31px;
  z-index: 2;
}
@keyframes scroll-anim2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2477px 0;
  }
}

/* ==== スライダー ==== */
.works-slide {
  overflow: hidden;
  margin-top: -99px;
  position: relative;
  z-index: 3;
}
.works-slide-wrapper {
  position: relative;
  max-width: 1060px;
  padding-left: 30px;
  margin: auto;
}
.works-slide-contents {
  margin-right: calc(50% - 50vw);
  display: flex;
  gap: 15px;
}
.works-slide-unit {
  position: relative;
}
.works-slide-unit[data-id='1'] {
  min-width: 450px;
  width: 34.61538461538461vw;
}
.works-slide-unit[data-id='2'] {
  min-width: 450px;
  width: 34.61538461538461vw;
  padding-top: 133px;
}
.works-slide-unit[data-id='3'] {
  min-width: 220px;
  width: 16.923076923076923vw;
  padding-top: 70px;
}
.works-slide-unit .works-unit-inner {
  background: #000;
  width: 100%;
  position: relative;
  min-height: 540px;
  height: 41.53846153846154vw;
  overflow: hidden;
}
.works-slide-unit .works-unit-inner::after {
  content: '';
  transition: background-image 2500ms ease 0s;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 540px;
  height: 41.53846153846154vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation-name: zoom;
  animation-duration: 15000ms;
  animation-delay: 0ms;
  animation-timing-function: ease; /* ease/ease-in/ease-out/ease-in-out/linear/cubic-bezier()/steps(1, jump-end) */
  animation-iteration-count: 1; /* {num}/infinite */
  animation-direction: normal; /* normal/reverse/alternate/alternate-reverse */
  animation-fill-mode: none; /* none/backwards(0%)/forwards(100%)/both(0%->100%) */
  animation-play-state: running; /* running/paused */
}
.works-unit-inner[data-state='1']::after {
  background-image: url('../../image/top/works_01.png');
}
.works-unit-inner[data-state='2']::after {
  background-image: url('../../image/top/works_02.png');
}
.works-unit-inner[data-state='3']::after {
  background-image: url('../../image/top/works_03.png');
}
@keyframes zoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* コントローラー */
.works-slide-controller {
  position: absolute;
  width: 135px;
  bottom: 50px;
  right: 0;
}
.works-slide-controller .works-slide-controller-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.works-slide-controller .works-slide-controller-inner button {
  background-repeat: no-repeat;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-image: url('../../image/top/btn_r.png');
  width: 60px;
  height: 60px;
}
.works-slide-controller .works-slide-controller-inner button.prev {
  transform: scale(-1, -1);
}

.works::after {
  content: '';
  display: block;
  background-image: url('/assets/image/top/works_bg.png');
  width: 100%;
  min-height: 1035px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

/* ==== てきすと ==== */
.works-text {
  margin-top: -20px;
}
.works-text .cross {
  width: 100%;
  position: relative;
  top: -30px;
  left: -32px;
}
.works-text .unit[data-id='1'] {
  display: flex;
  margin-top: 97px;
  justify-content: space-between;
}
.works-text .unit[data-id='1'] p {
  line-height: 2.1;
  letter-spacing: -0.02em;
  padding-left: 31px;
}

.works-text .unit[data-id='1'] a {
  margin-right: 47px;
  position: relative;
  top: -4px;
}

/* =====================
  リクルート（一番下）
===================== */
.recruit {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/assets/image/top/recruit_bg.png');
  width: 100%;
  min-height: 630px;
}
.recruit .cross {
  width: 100%;
  position: relative;
  top: -29px;
  right: 5px;
}
.recruit .inner {
  position: relative;
  padding-top: 109px;
  padding-inline: 31px;
}
.recruit .inner::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/image/top/recruit01.png');
  width: 700px;
  height: 396px;
  position: absolute;
  top: 113px;
  right: 0px;
  transform: translateY(-2em) scale(1.05);
  filter: blur(1em);
  opacity: 0;
  transition: all 600ms var(--easeOutExpo) 0ms;
}
.recruit.on .inner::after {
  filter: blur(0);
  transform: translateY(0) scale(1);
  opacity: 1;
}
.recruit .inner .h2-title {
  margin-left: 60px;
}
.recruit .inner > p {
  font-feature-settings: 'palt';
  width: 465px;
  line-height: 2.1;
  margin-top: 103px;
  margin-left: 60px;
  letter-spacing: 0.03em;
}
.recruit .inner .u-anchor {
  font-family: var(--title);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  margin-left: 95px;
  margin-top: 44px;
}
