@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #fff;
  pointer-events: none;
  transition: all 1s;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.loading__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34.7%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.loading__image.is-active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 140px;
}
.hero__image {
  width: 79.35%;
  max-height: calc(100vh - 210px);
  margin-left: auto;
  margin-right: 4%;
}
.hero__image img {
  max-height: 100%;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero__catch {
  position: absolute;
  bottom: 50px;
  left: 4%;
  width: 240px;
}
.hero__heading {
  position: absolute;
  top: 20%;
  left: 10%;
  font-weight: 600;
  font-size: 18px;
  writing-mode: vertical-lr;
  letter-spacing: 0.25em;
}
.hero__text {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 100%;
  overflow: hidden;
}
.hero__text p {
  margin-right: 30px;
  white-space: nowrap;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.hero__text p img {
  width: 132vw;
  height: auto;
  max-width: none;
  margin-right: 70px;
}
@media screen and (max-width: 992px) {
  .hero__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-43%, -50%);
    width: 100%;
    margin: 0;
  }
  .hero__heading {
    top: auto;
    right: 20px;
    bottom: 50px;
    left: auto;
    writing-mode: initial;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    height: 600px;
    margin-bottom: 80px;
  }
  .hero__image {
    top: 120px;
    transform: translate(-43%, 0);
    width: 430px;
  }
  .hero__text {
    top: 45%;
  }
  .hero__catch {
    top: 420px;
    bottom: auto;
    left: 20px;
    width: 140px;
  }
  .hero__heading {
    top: 560px;
    bottom: auto;
    left: 20px;
    font-size: 16px;
    letter-spacing: 0.2em;
  }
}

.catch {
  position: relative;
  margin-bottom: 130px;
}
.catch__inner {
  position: relative;
}
.catch__image {
  width: 94.2%;
}
.catch__image--sp {
  display: none;
}
.catch__heading {
  position: absolute;
  top: 0;
  right: 12%;
  transform: translateY(-10%);
  width: 145px;
}
.catch__heading--sp {
  display: none;
}
.catch__copy {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(10px);
  color: #8CBACC;
  font-weight: bold;
  font-size: 80px;
  font-family: "Helvetica Neue", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 992px) {
  .catch__copy {
    font-size: 42px;
  }
}
@media screen and (max-width: 576px) {
  .catch {
    margin-bottom: 100px;
  }
  .catch__copy {
    font-size: 21px;
  }
  .catch__heading {
    width: 80px;
  }
  .catch__heading--pc {
    display: none;
  }
  .catch__heading--sp {
    display: block;
  }
}

.company {
  position: relative;
}
.company::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 190px 0 0 100vw;
  border-color: transparent transparent transparent #f2f2f2;
  content: "";
}
.company__inner {
  display: flex;
}
.company__contents {
  display: flex;
  justify-content: flex-end;
  width: 456px;
  margin-right: 25px;
  padding-top: 90px;
}
.company__heading {
  margin-bottom: 45px;
}
.company__sentence {
  width: 270px;
  font-weight: 500;
  line-height: 2.2;
}
.company__sentence span {
  margin-right: 5px;
  padding-top: 1px;
  padding-bottom: 2px;
  padding-left: 5px;
  background-color: #FBCA38;
}
.company__image {
  flex: 1;
}
@media screen and (max-width: 992px) {
  .company__inner {
    flex-direction: column-reverse;
  }
  .company__image {
    width: 80%;
    margin-left: auto;
  }
  .company__contents {
    display: block;
    width: 90%;
    padding-top: 30px;
    padding-left: 10%;
  }
  .company__heading {
    margin-bottom: 30px;
  }
  .company__sentence {
    width: 95%;
  }
}
@media screen and (max-width: 576px) {
  .company::after {
    border-width: 100px 0 0 100vw;
  }
  .company__image {
    width: 95%;
  }
  .company__contents {
    width: 100%;
    padding: 20px 20px 0;
  }
  .company__heading {
    margin-bottom: 20px;
  }
  .company__sentence {
    width: 100%;
  }
}

.business {
  padding-top: 180px;
  padding-bottom: 45vh;
  background-color: #F2F2F2;
}
.business * {
  min-width: 0;
  min-height: 0;
}
.business__inner {
  display: flex;
  align-items: flex-start;
  padding-right: 120px;
}
.business__gallery {
  flex: 1;
  position: relative;
}
.business__background {
  position: absolute;
  top: 0;
  right: 100px;
  width: 440px;
  opacity: 0.35;
}
.business__background--01 {
  transform: rotate(10deg);
  z-index: 1;
}
.business__background--02 {
  transform: rotate(-10deg);
  z-index: 2;
}
.business__list {
  position: absolute;
  top: 0;
  right: 100px;
  transform: rotate(-5deg);
  z-index: 10;
  width: 440px;
}
.business__contents {
  width: 640px;
}
.business__heading {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
.business__illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 199px;
}
.business__sentence {
  margin-bottom: 40px;
  line-height: 2.2;
}
.business__buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.business__buttons::after {
  display: block;
  width: 28.75%;
  content: "";
}
.business__buttons .slick-list {
  width: 100%;
}
.business__buttons .slick-track {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transform: unset !important;
  width: 100% !important;
}
.business__buttons .slick-track::before {
  display: none;
}
.business__buttons .slick-track::after {
  display: block;
  width: 28.75%;
}
.business__button {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 28.75%;
  height: 65px;
  margin-bottom: 15px;
  border-radius: 7px;
  background-color: #191919;
  cursor: pointer;
  transition: 0.2s;
}
.business__button span {
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  transition: inherit;
}
.business__button.slick-current {
  background-color: #FBCA38;
}
.business__button.slick-current span {
  color: #191919;
}
@media screen and (min-width: 1600px) {
  .business__inner {
    justify-content: center;
  }
  .business__gallery {
    flex: initial;
    width: 600px;
  }
}
@media screen and (max-width: 992px) {
  .business {
    padding-top: 160px;
    padding-bottom: 30vh;
  }
  .business__inner {
    display: block;
    position: relative;
    padding: 0;
  }
  .business__contents {
    width: 85.7%;
    margin: auto;
  }
  .business__heading {
    margin-bottom: 30px;
  }
  .business__sentence {
    margin-bottom: 600px;
  }
  .business__illustration {
    width: 160px;
  }
  .business__gallery {
    position: absolute;
    top: 280px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    margin: 0;
  }
  .business__list {
    position: relative;
    right: 0;
    width: 360px;
  }
  .business__background {
    right: 0;
    width: 360px;
  }
}
@media screen and (max-width: 576px) {
  .business__illustration {
    width: 110px;
  }
  .business__contents {
    width: calc(100% - 40px);
  }
  .business__gallery {
    top: 300px;
  }
  .business__gallery, .business__list, .business__background {
    width: 310px;
  }
  .business__sentence {
    margin-bottom: 490px;
  }
  .business__buttons .slick-track::after {
    width: 32%;
  }
  .business__button {
    width: 32%;
    height: 50px;
    margin-bottom: 7px;
  }
  .business__button span {
    font-size: 14px;
  }
}

.works {
  position: relative;
  margin-top: -15vh;
}
.works__top {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%) rotate(-10deg);
  width: 100%;
}
.works__box {
  width: 300%;
  height: 500px;
  background-color: #fff;
}
.works__text {
  display: flex;
  align-items: center;
  width: 110%;
}
.works__text p {
  margin-right: 30px;
  white-space: nowrap;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.works__text p img {
  width: 110vw;
  height: auto;
  max-width: none;
  margin-right: 70px;
}
.works__inner {
  position: relative;
  z-index: 5;
}
.works__head {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 45px;
  text-align: center;
}
.works__illustration--01 {
  width: 96px;
}
.works__illustration--02 {
  width: 102px;
}
.works__heading {
  margin: 0 100px 0 110px;
}
.works__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 89.6%;
  margin: auto;
}
.works__list::after {
  display: block;
  width: 28.68%;
  content: "";
}
.works__item {
  width: 28.68%;
}
.works__item:nth-of-type(2), .works__item:nth-of-type(5) {
  margin-top: 60px;
}
.works__item:nth-of-type(3), .works__item:nth-of-type(6) {
  margin-top: 120px;
}
.works__image {
  margin-bottom: 15px;
}
.works__title {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  text-align: center;
  text-indent: 0.075em;
}
@media screen and (max-width: 992px) {
  .works__item {
    width: 47%;
  }
  .works__item:nth-of-type(odd) {
    margin-top: 0;
  }
  .works__item:nth-of-type(even) {
    margin-top: 100px;
  }
}
@media screen and (max-width: 576px) {
  .works {
    padding-bottom: 50px;
  }
  .works__heading {
    margin: 0 20px 0 30px;
  }
  .works__illustration--01 {
    width: 58px;
  }
  .works__illustration--02 {
    width: 66px;
  }
  .works__list {
    width: 80%;
    margin: auto;
  }
  .works__item {
    width: 100%;
  }
  .works__item:nth-of-type(odd), .works__item:nth-of-type(even) {
    margin-top: 0;
  }
  .works__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.recruit__inner {
  position: relative;
  background-image: url(../images/banner_recruit_background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.recruit__inner::after {
  display: block;
  padding-top: 57.4%;
  content: "";
}
.recruit__contents {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}
.recruit__heading {
  margin-bottom: 50px;
  color: #fff;
}
.recruit__sentence {
  margin-bottom: 80px;
  color: #fff;
  font-weight: 500;
  line-height: 2.2;
}
.recruit__button a {
  margin: auto;
}
@media screen and (max-width: 992px) {
  .recruit__inner {
    background-image: url(../images/banner_recruit_background_tb.png);
  }
  .recruit__inner::after {
    display: block;
    padding-top: 95%;
    content: "";
  }
}
@media screen and (max-width: 576px) {
  .recruit__inner {
    background-image: url(../images/banner_recruit_background_sp.png);
  }
  .recruit__inner::after {
    display: block;
    padding-top: 113%;
    content: "";
  }
  .recruit__contents {
    top: 55%;
    width: 100%;
    white-space: normal;
  }
  .recruit__heading {
    margin-bottom: 20px;
  }
  .recruit__sentence {
    width: 90%;
    margin: 0 auto 25px;
    text-align: left;
  }
}/*# sourceMappingURL=front-page.css.map */