<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　CORE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　VARIABLE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　PATH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　COLOR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　FONT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　LAYOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　EASING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　MIXIN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　Animation
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@-webkit-keyframes scrollBar {
  0% {
    bottom: 68%;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    bottom: 34%;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  50.1% {
    bottom: 34%;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    bottom: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes scrollBar {
  0% {
    bottom: 68%;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    bottom: 34%;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  50.1% {
    bottom: 34%;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    bottom: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　MIXIN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　COMPONENT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　COMPONENT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.c-alt {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.c-red {
  color: #fd7b61;
}

.c-btn a {
  display: inline-block;
  position: relative;
  height: 6rem;
  padding: 0 9.6rem;
  border-radius: 3rem;
  background: #4fbc2b;
  -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
  color: #edf8e9;
  font-size: 1.6rem;
  line-height: 6rem;
  -webkit-transition: -webkit-box-shadow 0.75s cubic-bezier(0.46, 0.01, 0.17, 1), -webkit-transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: -webkit-box-shadow 0.75s cubic-bezier(0.46, 0.01, 0.17, 1), -webkit-transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: box-shadow 0.75s cubic-bezier(0.46, 0.01, 0.17, 1), transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: box-shadow 0.75s cubic-bezier(0.46, 0.01, 0.17, 1), transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1), -webkit-box-shadow 0.75s cubic-bezier(0.46, 0.01, 0.17, 1), -webkit-transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
  will-change: transform;
}

.c-btn a::after {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: .8rem;
  height: 1rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url(/img/common/c-btn_arrow.svg) no-repeat;
  background-size: contain;
  content: "";
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: -webkit-transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1), -webkit-transform 0.75s cubic-bezier(0.46, 0.01, 0.17, 1);
}

.c-btn a:hover {
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}

.c-btn a:hover::after {
  -webkit-transform: translate(1rem, -50%);
          transform: translate(1rem, -50%);
}

.c-recruit_ttl {
  position: relative;
  padding-bottom: 3rem;
  font-size: 4rem;
  font-weight: 300;
}

.c-recruit_ttl::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1.5rem);
  width: 2rem;
  height: .3rem;
  border-radius: .2rem;
  background: #90d91d;
  content: "";
}

.c-recruit_ttl::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% + 1rem);
  width: .6rem;
  height: .3rem;
  border-radius: .2rem;
  background: #fd7b61;
  content: "";
}

.l-slider_item {
  padding: 0 1.1rem;
}

.l-slider_item_img img {
  width: 72rem;
}

.l-slider_item_txt {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .04em;
}

.l-slider .slick-arrow {
  z-index: 1;
  position: absolute;
  top: 20rem;
  width: 6rem;
  height: 6rem;
  border: 0.3rem solid #4fbc2b;
  border-radius: 3rem;
  background: #fff;
  cursor: pointer;
}

.l-slider .slick-arrow::before {
  position: absolute;
  top: 43%;
  right: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  content: "";
}

.l-slider .slick-arrow.prev {
  left: calc(50% - 40rem);
}

.l-slider .slick-arrow.prev::before {
  left: 2rem;
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
  border-top: 0.3rem solid #4fbc2b;
  border-left: 0.3rem solid #4fbc2b;
}

.l-slider .slick-arrow.next {
  right: calc(50% - 40rem);
}

.l-slider .slick-arrow.next::before {
  right: 2rem;
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
  border-top: 0.3rem solid #4fbc2b;
  border-right: 0.3rem solid #4fbc2b;
}

.l-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}

.l-slider .slick-dots li.slick-active button::before {
  background: -webkit-gradient(linear, left top, right top, from(#fe9944), to(#fd726a));
  background: -webkit-linear-gradient(left, #fe9944 0%, #fd726a 100%);
  background: linear-gradient(90deg, #fe9944 0%, #fd726a 100%);
}

.l-slider .slick-dots li button {
  display: block;
  position: relative;
  width: 1rem;
  height: 1rem;
  margin: 0 .7rem;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.l-slider .slick-dots li button::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: .5rem;
  background: #dfe8e3;
  content: "";
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　PROJECT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.l-offering_job_role_wrapper {
  max-width: 120rem;
  margin: 0 auto;
  padding: 12rem 5rem 14rem;
}

.l-offering_job_role_ttl {
  margin-bottom: 5rem;
}

.l-offering_job_role_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 5rem -.8rem;
  padding: 0 5rem;
}

.l-offering_job_role_content_item {
  position: relative;
  width: calc(25% - .4rem);
  margin: 0 .4rem .4rem 0;
}

.l-offering_job_role_content_item a {
  display: block;
  padding: 3rem 1.8rem 1.8rem;
  border: .2rem solid #f1f5f3;
  background: #f1f5f3;
  -webkit-transition: border 0.55s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: border 0.55s cubic-bezier(0.46, 0.01, 0.17, 1);
}

.l-offering_job_role_content_item a:hover {
  border: 0.2rem solid #4fbc2b;
}

.l-offering_job_role_content_item a:hover .l-offering_job_role_content_item_txt::after {
  -webkit-transform: translate(1rem, -50%) rotate(-45deg);
          transform: translate(1rem, -50%) rotate(-45deg);
}

.l-offering_job_role_content_item_img {
  width: 10rem;
  margin: 0 auto 2.7rem;
}

.l-offering_job_role_content_item_txt {
  position: relative;
  color: #4c4c4c;
}

.l-offering_job_role_content_item_txt::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: .7rem;
  height: .7rem;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
  border-right: 0.2rem solid #4fbc2b;
  border-bottom: 0.2rem solid #4fbc2b;
  content: "";
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: -webkit-transform 0.55s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: transform 0.55s cubic-bezier(0.46, 0.01, 0.17, 1);
  transition: transform 0.55s cubic-bezier(0.46, 0.01, 0.17, 1), -webkit-transform 0.55s cubic-bezier(0.46, 0.01, 0.17, 1);
}

.l-offering_job_role .c-btn {
  width: 52.4rem;
  margin: 0 auto;
}

.l-offering_job_role .c-btn a {
  width: 100%;
  height: 8rem;
  border-radius: 4rem;
  font-size: 2.6rem;
  line-height: 8rem;
}

.p-kv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 12.7rem;
  padding-bottom: 6.2rem;
}

.p-kv_img {
  width: calc(89.5rem + ((100vw - 120rem) / 2));
  min-width: 89.5rem;
  margin: 0 auto 0 0;
  line-height: 0;
}

.p-kv_content {
  position: relative;
  width: calc(30.5rem + ((100vw - 120rem) / 2));
  min-width: 30.5rem;
  margin: 0 0 0 auto;
  margin-top: 17.7rem;
  padding-left: 5rem;
  text-align: left;
}

.p-kv_content::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(90.6rem + ((100vw - 120rem) / 2));
  min-width: 90.6rem;
  height: calc(100% + 6.2rem);
  background: #f1f5f3;
  content: "";
}

.p-kv_content_ttl {
  position: relative;
}

.p-kv_content_ttl::before {
  z-index: 2;
  position: absolute;
  content: "";
}

.p-kv_content_ttl span {
  display: inline-block;
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.3rem dotted #fd7b61;
  font-size: 2.1rem;
}

.p-kv_content_txt {
  max-width: 25.2rem;
  color: #4c4c4c;
  font-size: 1.4rem;
  line-height: 1.71429;
}

.p-kv_content_txt b {
  display: block;
  margin-bottom: 3rem;
}

.p-recruit_tm {
  position: relative;
  padding: 7.8rem 0 10rem;
}

.p-recruit_tm::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(90.6rem + ((100vw - 120rem) / 2));
  min-width: 90.6rem;
  height: 100%;
  background: #f1f5f3;
  content: "";
}

.p-recruit_tm.reverse {
  overflow-x: hidden;
}

.p-recruit_tm.reverse .p-recruit_tm_wrapper::before {
  top: 10.5rem;
  right: -2rem;
  left: auto;
  width: 3.7rem;
  height: 3.7rem;
}

.p-recruit_tm.reverse .p-recruit_tm_wrapper::after {
  top: 5rem;
  right: -7.2rem;
  left: auto;
  width: 3.7rem;
  height: 3.7rem;
}

.p-recruit_tm_wrapper {
  position: relative;
  max-width: 119rem;
  margin: 0 auto;
  padding: 10rem 11rem;
  background: #fff;
}

.p-recruit_tm_wrapper::before {
  display: block;
  position: absolute;
  top: 7.2rem;
  left: 0;
  width: 5.4rem;
  height: 5.4rem;
  background: -webkit-gradient(linear, left top, right top, from(#fe9944), to(#fd726a));
  background: -webkit-linear-gradient(left, #fe9944 0%, #fd726a 100%);
  background: linear-gradient(90deg, #fe9944 0%, #fd726a 100%);
  content: "";
}

.p-recruit_tm_wrapper::after {
  display: block;
  position: absolute;
  top: -.82rem;
  left: 7.6rem;
  width: 5.4rem;
  height: 5.4rem;
  background: -webkit-gradient(linear, left top, right top, from(#fe9944), to(#fd726a));
  background: -webkit-linear-gradient(left, #fe9944 0%, #fd726a 100%);
  background: linear-gradient(90deg, #fe9944 0%, #fd726a 100%);
  content: "";
}

.p-recruit_tm_ttl {
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  font-size: 3.5rem;
  line-height: 1.37143;
}

.p-recruit_tm_txt {
  color: #4c4c4c;
  line-height: 1.875;
  text-align: left;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　UTILITY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.u-pc__show {
  display: block;
}

.u-sp__show {
  display: none;
}

.noscroll {
  height: 100vh;
  overflow: hidden !important;
}

@media screen and (max-width: 48em) {
  .c-btn {
    text-align: center;
  }
  .c-recruit_ttl {
    padding-bottom: 2.5rem;
    font-size: 2.8rem;
    line-height: 1.42857;
    text-align: center;
  }
  .l-slider_item_img img {
    width: 22rem;
  }
  .l-slider_item_txt {
    font-size: 1.6rem;
  }
  .l-slider .slick-arrow {
    top: 5.5rem;
    width: 3rem;
    height: 3rem;
  }
  .l-slider .slick-arrow::before {
    width: 1rem;
    height: 1rem;
  }
  .l-slider .slick-arrow.prev {
    left: calc(50% - 12.2rem);
  }
  .l-slider .slick-arrow.prev::before {
    left: 1rem;
  }
  .l-slider .slick-arrow.next {
    right: calc(50% - 12.2rem);
  }
  .l-slider .slick-arrow.next::before {
    right: 1rem;
  }
  .l-offering_job_role_wrapper {
    padding: 6.5rem 2rem 7rem;
  }
  .l-offering_job_role_content {
    margin: 0 auto 4rem;
    padding: 0;
  }
  .l-offering_job_role_content_item {
    width: calc(50% - .4rem);
  }
  .l-offering_job_role_content_item_img {
    margin-bottom: 2rem;
  }
  .l-offering_job_role_content_item_txt {
    color: #4fbc2b;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .l-offering_job_role .c-btn {
    width: 25.5rem;
  }
  .l-offering_job_role .c-btn a {
    height: 6rem;
    font-size: 1.6rem;
    line-height: 6rem;
  }
  .p-kv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 7rem;
    padding-bottom: 0;
  }
  .p-kv_img {
    width: 100%;
    min-width: 0;
  }
  .p-kv_content {
    width: 100%;
    min-width: 100%;
    margin-top: 0;
    padding: 6.2rem 2rem 5.6rem;
  }
  .p-kv_content::after {
    right: auto;
    left: 50%;
    width: 50%;
    min-width: 0;
    height: 100%;
  }
  .p-kv_content_ttl {
    text-align: center;
  }
  .p-kv_content_ttl span {
    margin-bottom: 1.5rem;
    padding-bottom: .9rem;
    border-bottom: 0.3rem dotted #fd7b61;
    font-size: 2rem;
  }
  .p-kv_content_txt {
    max-width: none;
    letter-spacing: .04em;
  }
  .p-kv_content_txt b {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  .p-recruit_tm {
    padding: 0 0 7rem;
  }
  .p-recruit_tm::after {
    top: 0;
    right: auto;
    left: 50%;
    width: 50%;
    min-width: 0;
  }
  .p-recruit_tm.reverse .p-recruit_tm_wrapper::before {
    top: 9.2rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
  }
  .p-recruit_tm.reverse .p-recruit_tm_wrapper::after {
    top: 6rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
  }
  .p-recruit_tm_wrapper {
    width: calc(100% - 4rem);
    padding: 6rem 2rem 5.5rem;
  }
  .p-recruit_tm_wrapper::before {
    top: 2rem;
    left: 2rem;
    width: 2rem;
    height: 2rem;
  }
  .p-recruit_tm_wrapper::after {
    top: -1rem;
    left: 5rem;
    width: 2rem;
    height: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .u-pc__show {
    display: none;
  }
  .u-sp__show {
    display: block;
  }
}
</pre></body></html>