@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-newgraduate: #009EED;
  --color-halfway: #F68732;
  --color-chubase: #E23737;
  --color-lexus: #D3B49D;
  --color-hacbase: #495F75;
  --color-gr-garage: #5E5E5E;
  --color-daihatsupark: #FF0101;
  --color-green01: #00A68D;
  --color-green02: #E5F7F5;
  --color-green03: #D2EEE3;
  --color-gray01: #CECECE;
  --color-gray02: #F6F6F6;
  --color-gray03: #CDCDCD;
  --color-gray-gradient: linear-gradient(90deg, rgba(248, 247, 247, 1), rgba(228, 228, 228, 1));
  /*===================== Font =====================*/
  --font-gen-interface: "Gen Interface JP", sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --font-inter: "Inter", sans-serif;
  /*===================== イージング =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*===================== 見出し =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*===================== 本文 =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*===================== 英語 =====================*/
/*=== PC ===*/
/*=== SP ===*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/*===================== マウスオーバー =====================*/
/*===================== ヘッダー 白 =====================*/
/*=============== 共通 ===============*/
.recruit-top-title {
  font-weight: 500;
  font-size: calc(30 / 375 * 100vw);
  line-height: 1.4em;
  letter-spacing: 0;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .recruit-top-title {
    font-size: max(10px, 45 / 1366 * 100vw);
    font-weight: 500;
    font-size: max(10px, 45 / 1366 * 100vw);
    line-height: 1.5em;
    letter-spacing: 0;
    line-height: 1.2em;
  }
}
@media screen and (min-width: 768px) {
  .recruit-top-title.vertical.animation::after {
    animation: recruit-top-title-af-vertical 0.6s 0.1s cubic-bezier(0.78, 0.02, 0.07, 0.99) forwards;
  }
  @keyframes recruit-top-title-af-vertical {
    0% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    100% {
      clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
  }
}
.recruit-top-title::after {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(19, 213, 142), rgb(111, 223, 122) 55%);
}
.recruit-top-title.animation::after {
  animation: recruit-top-title-af 0.3s 0s cubic-bezier(0.78, 0.02, 0.07, 0.99) forwards;
}
@keyframes recruit-top-title-af {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
.recruit-top-title.animation span.en {
  animation: fade 1s 0.3s ease forwards;
}
.recruit-top-title.animation .inner {
  animation: recruit-top-title 0.6s 0s ease forwards;
}
@keyframes recruit-top-title {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.recruit-top-title.animation .inner02 {
  animation: recruit-top-title 0.6s 0s ease forwards;
}
@media screen and (min-width: 768px) {
  .recruit-top-title.animation .inner02 {
    animation: recruit-top-title02 0.6s 0s ease forwards;
  }
}
@keyframes recruit-top-title02 {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.recruit-top-title .inner {
  transform: translate(0, 100%);
}
.recruit-top-title .inner02 {
  transform: translate(0, 100%);
}
@media screen and (min-width: 768px) {
  .recruit-top-title .inner02 {
    transform: translate(-100%, 0);
  }
}
.recruit-top-title .inner-sp {
  transform: translate(0, 100%);
}
@media screen and (min-width: 768px) {
  .recruit-top-title .inner-sp {
    display: inline-block;
    transform: translate(0);
  }
}
.recruit-top-title span {
  display: block;
  transition: all 0.3s;
}
.recruit-top-title span.en {
  color: var(--color-green01);
  opacity: 0;
  font-weight: 600;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .recruit-top-title span.en {
    margin-bottom: 0;
    font-family: var(--font-barlow);
    font-weight: 600;
    font-size: max(10px, 16 / 1366 * 100vw);
    line-height: 2.12em;
    letter-spacing: 0;
  }
}
.recruit-top-title span.ja {
  overflow: hidden;
}

.recruit-top-lead-txt {
  font-weight: 500;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.56em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .recruit-top-lead-txt {
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
  }
}

a.recruit-top-more-btn {
  display: block;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.56em;
  letter-spacing: 0;
  width: calc(118 / 375 * 100vw);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  a.recruit-top-more-btn {
    width: calc(122 / 1366 * 100vw);
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
  }
}
a.recruit-top-more-btn:hover .m-btn-dots::after {
  transform: translate(-50%, -50%) scale(0);
}
a.recruit-top-more-btn:hover .m-btn-dots img {
  transform: translate(0%, 0);
}
a.recruit-top-more-btn:hover {
  color: var(--color-green01);
}
a.recruit-top-more-btn .m-btn-dots {
  width: 1.6em;
  height: 1.6em;
}

/*===============  ===============*/
#l-header {
  animation: top-l-header 0.4s 2s ease forwards;
  opacity: 0;
}
@keyframes top-l-header {
  0% {
    transform: translate(0, -100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
#l-header div.hd-r-wrap a {
  border: none;
  position: relative;
  background: none;
}
#l-header div.hd-r-wrap a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  animation: fade 0.8s 3s ease forwards;
  z-index: -2;
}
#l-header div.hd-r-wrap a .inner {
  display: block;
  overflow: hidden;
}
#l-header div.hd-r-wrap a .inner span {
  display: block;
  animation: top-hd-entry-txt 1s 2.4s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
  transform: translate(0, 100%);
}
@keyframes top-hd-entry-txt {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
#l-header div.hd-r-wrap a span.line {
  display: block;
  position: absolute;
  background: #fff;
}
@keyframes line01 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes line02 {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes line03 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes line04 {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
#l-header div.hd-r-wrap a span.line.line01 {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  animation: line01 0.4s 2.6s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
#l-header div.hd-r-wrap a span.line.line02 {
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  animation: line02 0.4s 2.6s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
#l-header div.hd-r-wrap a span.line.line03 {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  animation: line03 0.4s 2.6s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
#l-header div.hd-r-wrap a span.line.line04 {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  animation: line04 0.4s 2.6s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

div.hero-area {
  background-image: linear-gradient(180deg, rgb(19, 213, 142), rgb(111, 223, 122) 55%);
  position: relative;
  overflow: hidden;
  height: calc(1330 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  div.hero-area {
    height: calc(1530 / 1366 * 100vw);
  }
}
div.hero-area h1 {
  position: absolute;
  top: calc(73 / 375 * 100vw);
  left: calc(17 / 375 * 100vw);
  color: #fff;
  font-weight: 500;
  font-size: calc(45 / 375 * 100vw);
  line-height: 1.5em;
  letter-spacing: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  div.hero-area h1 {
    font-weight: 500;
    font-size: max(10px, 58 / 1366 * 100vw);
    line-height: 1.38em;
    letter-spacing: 0;
    top: calc(140 / 1366 * 100vw);
    left: calc(62 / 1366 * 100vw);
  }
}
div.hero-area h1 span {
  line-height: 1em;
}
div.hero-area h1 .ani-span {
  display: inline-block;
  position: relative;
}
div.hero-area h1 .ani-span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
div.hero-area h1 .ani-span:nth-of-type(1)::after {
  animation: hero-ani-span 0.8s 0.4s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
}
div.hero-area h1 .ani-span:nth-of-type(1) span {
  animation: hero-ani-span-inner 0.4s 0.8s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
}
div.hero-area h1 .ani-span:nth-of-type(2)::after {
  animation: hero-ani-span 0.8s 0.6s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
}
div.hero-area h1 .ani-span:nth-of-type(2) span {
  animation: hero-ani-span-inner 0.4s 1s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
}
div.hero-area h1 .ani-span:nth-of-type(3)::after {
  animation: hero-ani-span 0.8s 0.8s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
}
div.hero-area h1 .ani-span:nth-of-type(3) span {
  animation: hero-ani-span-inner 0.4s 1.2s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
}
div.hero-area h1 .ani-span span {
  display: inline-block;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
@keyframes hero-ani-span {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes hero-ani-span-inner {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
div.hero-area p {
  position: absolute;
  color: #fff;
  z-index: 1;
  font-weight: 400;
  font-size: calc(14 / 375 * 100vw);
  line-height: 2em;
  letter-spacing: 0;
  top: calc(720 / 375 * 100vw);
  left: calc(99 / 375 * 100vw);
  width: calc(261 / 375 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  div.hero-area p {
    width: auto;
    top: calc(810 / 1366 * 100vw);
    left: auto;
    right: calc(90 / 1366 * 100vw);
    font-weight: 400;
    font-size: max(10px, 16 / 1366 * 100vw);
    line-height: 2.12em;
    letter-spacing: 0;
  }
}
div.hero-area p.animation {
  animation: fade 0.6s 0s ease forwards;
}
div.hero-area div.hero-chukuma {
  z-index: 1;
  position: absolute;
  width: calc(114 / 375 * 100vw);
  top: 130vw;
  left: 66vw;
}
@media screen and (min-width: 768px) {
  div.hero-area div.hero-chukuma {
    top: 13vw;
    left: 36vw;
    width: calc(171 / 1366 * 100vw);
  }
}
div.hero-area div.hero-chukuma {
  opacity: 0;
  animation: hero-chumaru 1s 2s cubic-bezier(0.33, 0.35, 0.3, 1) forwards, hero-fuwafuwa 8s 3.6s ease infinite;
}
@keyframes hero-chumaru {
  0% {
    transform: translate(0, 40%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes hero-fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 25%);
  }
  100% {
    transform: translate(0, 0);
  }
}
div.hero-area div.hero-chukuma div.hero-chumaru {
  animation: hero-chukuma01 8s 0s ease infinite;
}
@keyframes hero-chukuma01 {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0);
  }
  95% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
div.hero-area div.hero-chukuma div.hero-kumaru {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 60%;
  animation: hero-chukuma02 8s 0s ease infinite;
  opacity: 0;
}
@keyframes hero-chukuma02 {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  95% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

div.hero-slide-wrap {
  width: 206%;
  transform: translate(-26%, 130%) rotate(-44deg);
  position: relative;
  z-index: 0;
  animation: hero-slide 1s 1s cubic-bezier(0.47, 0.15, 0.13, 0.99) forwards;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  div.hero-slide-wrap {
    width: 133%;
    transform: translate(-13%, 55%) rotate(-44deg);
    transform: translate(-13%, 55%) rotate(-27deg);
  }
}
@keyframes hero-slide {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
div.hero-slide-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgb(162, 252, 198), rgb(188, 253, 192) 55%);
  z-index: -1;
}
div.hero-slide-wrap div.kumaru-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: hero-kumaru 20s 0s infinite linear;
  background-image: url(../../myimg/top/hero-kumaru-bg.webp);
  background-size: 200%;
}
div.hero-slide-wrap div.kumaru-wrap div.hero-kumaru {
  position: absolute;
}
@media screen and (min-width: 768px) {
  div.hero-slide-wrap div.kumaru-wrap div.hero-kumaru {
    top: 0;
    left: 0;
    width: 10%;
  }
}
@keyframes hero-kumaru {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 100%;
  }
}

.hero-slide {
  position: relative;
  -webkit-mask-image: url(../../myimg/top/hero-msak.png);
          mask-image: url(../../myimg/top/hero-msak.png);
  -webkit-mask-size: 200%;
          mask-size: 200%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation: mask-position 20s 0s infinite linear;
}
@keyframes mask-position {
  0% {
    -webkit-mask-position: 0;
            mask-position: 0;
  }
  100% {
    -webkit-mask-position: 100%;
            mask-position: 100%;
  }
}
.hero-slide .hero-slide-slider {
  display: flex;
}
.hero-slide .hero-slide-wrapper {
  overflow: hidden;
  width: 200%;
  position: relative;
}
.hero-slide .hero-slide-wrapper div.hero-slide {
  display: flex;
}
.hero-slide .hero-slide-wrapper .slider {
  animation: scroll-left 70s infinite linear 0s both;
  display: flex;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

div.gray-bg {
  background-color: var(--color-gray02);
  position: relative;
}

section.sec-top-message {
  box-sizing: border-box;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  transform: translate(0, calc(-85 / 375 * 100vw));
  width: 88%;
}
@media screen and (min-width: 768px) {
  section.sec-top-message {
    top: 0;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    width: 83.4%;
  }
}
section.sec-top-message .sec-top-message-inner {
  display: block;
  padding: calc(34 / 375 * 100vw) calc(30 / 375 * 100vw);
  border-radius: calc(12 / 375 * 100vw);
  background: #fff;
  transition: all 0.3s;
  border: solid 2px #fff;
}
@media screen and (min-width: 768px) {
  section.sec-top-message .sec-top-message-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: calc(29 / 1366 * 100vw) calc(55 / 1366 * 100vw);
    border-radius: 12px;
  }
}
section.sec-top-message .sec-top-message-inner:hover .m-btn-dots::after {
  transform: translate(-50%, -50%) scale(0);
}
section.sec-top-message .sec-top-message-inner:hover .m-btn-dots img {
  transform: translate(0%, 0);
}
section.sec-top-message .sec-top-message-inner:hover {
  background-color: var(--color-green01);
  color: #fff;
}
section.sec-top-message .sec-top-message-inner:hover .recruit-top-title span.en {
  color: #fff;
}
section.sec-top-message .sec-top-message-inner:hover div.message-img img {
  transform: scale(1.1);
}
section.sec-top-message div.message-txt-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  section.sec-top-message div.message-txt-wrap {
    width: 50%;
  }
}
section.sec-top-message div.message-txt-wrap .m-btn-dots {
  width: calc(25 / 375 * 100vw);
  height: calc(25 / 375 * 100vw);
  margin-bottom: 0.5em;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-top-message div.message-txt-wrap .m-btn-dots {
    width: calc(25 / 1366 * 100vw);
    height: calc(25 / 1366 * 100vw);
    margin-bottom: calc(13 / 1366 * 100vw);
    margin-left: calc(10 / 1366 * 100vw);
  }
}
section.sec-top-message div.message-txt-wrap p {
  margin-top: 1em;
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-top-message div.message-txt-wrap p {
    font-weight: 500;
    font-size: max(10px, 25 / 1366 * 100vw);
    line-height: 1.52em;
    letter-spacing: 0;
  }
}
section.sec-top-message div.message-img {
  overflow: hidden;
  isolation: isolate;
  border-radius: calc(17 / 375 * 100vw);
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-top-message div.message-img {
    width: 45%;
    border-radius: 17px;
    margin-top: 0;
  }
}
section.sec-top-message div.message-img img {
  transition: 0.3s;
}

section.sec-strengths {
  padding: calc(420 / 375 * 100vw) 0 calc(67 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-strengths {
    padding: calc(324 / 1366 * 100vw) 0 calc(165 / 1366 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  section.sec-strengths .recruit-top-title-wrap {
    text-align: center;
  }
}
section.sec-strengths .recruit-top-title .inner {
  transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  section.sec-strengths .recruit-top-title .inner {
    transform: translate(0, 100%);
  }
}
section.sec-strengths .recruit-top-title.animation .inner {
  animation: none;
}
@media screen and (min-width: 768px) {
  section.sec-strengths .recruit-top-title.animation .inner {
    animation: recruit-top-title 0.6s 0s ease forwards;
  }
}
section.sec-strengths .recruit-top-title.animation .inner-sp:nth-of-type(1) {
  animation: recruit-top-title 0.6s 0s ease forwards;
}
@media screen and (min-width: 768px) {
  section.sec-strengths .recruit-top-title.animation .inner-sp:nth-of-type(1) {
    animation: none;
  }
}
section.sec-strengths .recruit-top-title.animation .inner-sp:nth-of-type(2) {
  animation: recruit-top-title 0.6s 0.1s ease forwards;
}
@media screen and (min-width: 768px) {
  section.sec-strengths .recruit-top-title.animation .inner-sp:nth-of-type(2) {
    animation: none;
  }
}
section.sec-strengths div.sec-strengths-inner {
  position: relative;
  margin: auto;
  width: 88%;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.sec-strengths-inner {
    width: 90%;
  }
}
section.sec-strengths div.sec-strengths-inner div.strengths-img {
  position: absolute;
  top: 5vw;
  right: 0;
  width: calc(146 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.sec-strengths-inner div.strengths-img {
    top: -5%;
    right: auto;
    left: 18%;
    width: calc(153 / 1366 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.sec-strengths-inner div.strengths-img02 {
    position: absolute;
    top: -5%;
    right: 15%;
    width: calc(153 / 1366 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  section.sec-strengths .recruit-top-title {
    text-align: center;
  }
}
section.sec-strengths div.strengths-box-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: calc(20 / 375 * 100vw);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap {
    margin-top: calc(46 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box {
  border: solid 2px var(--color-green01);
  border-radius: calc(15 / 375 * 100vw);
  box-sizing: border-box;
  margin-bottom: calc(15 / 375 * 100vw);
  padding: calc(16 / 375 * 100vw) calc(14 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box {
    border: solid 3px var(--color-green01);
    width: 32.6%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 calc(45 / 1366 * 100vw);
    text-align: center;
    margin-bottom: calc(17 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box {
    padding: 0 calc(45 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box span {
  display: inline-block;
  line-height: 1em;
}
section.sec-strengths div.strengths-box-wrap div.strengths-box .slot-number {
  display: inline-flex;
  overflow: hidden;
  line-height: 1;
  height: 1em;
  vertical-align: baseline;
  letter-spacing: -0.04em;
  margin-right: 0.012em;
}
section.sec-strengths div.strengths-box-wrap div.strengths-box .slot-digit {
  overflow: hidden;
}
section.sec-strengths div.strengths-box-wrap div.strengths-box .slot-strip {
  display: block;
  transform: translateY(0);
}
section.sec-strengths div.strengths-box-wrap div.strengths-box .slot-strip span {
  display: block;
  height: 1em;
  line-height: 1;
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 {
  width: calc(157 / 375 * 100vw);
  height: calc(139 / 375 * 100vw);
  background: #fff;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 {
    width: 32.6%;
    height: calc(340 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 {
    height: calc(328 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box {
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box {
    padding-bottom: 2vw;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p {
  line-height: 0.4em;
  position: relative;
  font-size: calc(47 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p {
    font-size: calc(115 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p {
    font-size: calc(120 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p .black {
  position: absolute;
  bottom: -1.8em;
  left: 3.3em;
  font-weight: 400;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.45em;
  letter-spacing: 0;
  font-family: var(--font-gen-interface);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p .black {
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
    bottom: -1.4em;
    left: -2em;
    right: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p .nen {
  font-size: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p .nen {
    font-size: 3.1vw;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box01 div.number-box p .nen {
    font-size: 3.2vw;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 {
  width: calc(157 / 375 * 100vw);
  height: calc(139 / 375 * 100vw);
  background: #EFFFFD;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 {
    width: 32.6%;
    height: calc(340 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 {
    height: calc(328 / 1366 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box {
    padding-bottom: 2vw;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box p {
  line-height: 0.4em;
  position: relative;
  font-size: calc(45 / 375 * 100vw);
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box p {
    font-size: calc(120 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box p .black {
  position: absolute;
  bottom: -1.8em;
  left: 0em;
  right: 0;
  font-weight: 400;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.45em;
  letter-spacing: 0;
  font-family: var(--font-gen-interface);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box p .black {
    bottom: -1.5em;
    left: -2em;
    right: 0;
    font-weight: 400;
    font-size: max(10px, 11 / 1366 * 100vw);
    line-height: 1.45em;
    letter-spacing: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box p .nen {
  font-size: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box p .nen {
    font-size: 3.1vw;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box02 div.number-box p .nen {
    font-size: 3.2vw;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 {
  width: calc(156 / 375 * 100vw);
  height: calc(230 / 375 * 100vw);
  background: #EFFFFD;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 {
    width: 32.6%;
    height: calc(340 / 1366 * 100vw);
    background: #fff;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 {
    height: calc(328 / 1366 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 h3 {
    background-color: #fff;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box {
  padding-top: 2vw;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box {
    height: 14vw;
    padding-top: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p {
  line-height: 0.6em;
  position: relative;
  font-size: calc(45 / 375 * 100vw);
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p {
    width: 120%;
    transform: translate(-10%, -7%);
    font-size: calc(100 / 1366 * 100vw);
    height: 7.6vw;
    background: #fff;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p:nth-of-type(2) {
    transform: translate(-10%, -5%);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p .shop {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p .shop {
    text-align: right;
    width: 5em;
    font-weight: 500;
    font-size: max(10px, 25 / 1366 * 100vw);
    line-height: 1.52em;
    letter-spacing: 0;
    line-height: 1.2em;
    position: absolute;
    bottom: 0.2em;
    left: 0.6em;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p .number {
  text-align: right;
  line-height: 0.4em;
  margin-left: 0.3em;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p .number {
    width: 1em;
    margin-left: 1em;
    margin-right: 0.02em;
    transform: translate(0, 0.04em);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p .tenpo {
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box03 div.number-box p .tenpo {
    font-size: calc(40 / 1366 * 100vw);
    margin-left: 0.4em;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 {
  width: calc(156 / 375 * 100vw);
  height: calc(230 / 375 * 100vw);
  background: #fff;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 {
    width: 32.6%;
    height: calc(340 / 1366 * 100vw);
    padding-bottom: 2%;
    background: #EFFFFD;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 {
    height: calc(328 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box {
  padding-top: 2.4vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box {
    height: 14vw;
    padding-top: 0;
    transform: translate(0, -5%);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p {
  line-height: 0.6em;
  position: relative;
  font-size: calc(45 / 375 * 100vw);
  margin-bottom: 2vw;
  padding-left: 7.6vw;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p {
    width: 110%;
    transform: translate(-3%, 0);
    text-align: left;
    font-size: calc(100 / 1366 * 100vw);
    height: 7.2vw;
    padding-left: 0;
    margin-bottom: 0;
    line-height: 1em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p {
    height: 7.4vw;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p .shop {
  display: block;
  font-weight: 500;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.56em;
  letter-spacing: 0;
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p .shop {
    display: inline-block;
    margin-right: 0.2em;
    text-align: right;
    width: 5em;
    font-weight: 500;
    font-size: max(10px, 25 / 1366 * 100vw);
    line-height: 1.52em;
    letter-spacing: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p .number {
  text-align: right;
  line-height: 0.4em;
  margin-right: 0.1em;
  transform: translate(0, 0.1em);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p .number {
    width: 1em;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p .sai {
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box p .sai {
    font-weight: 500;
    font-size: max(10px, 45 / 1366 * 100vw);
    line-height: 1.5em;
    letter-spacing: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box .black {
  position: absolute;
  bottom: -1.8em;
  left: 1.4em;
  right: 0;
  font-weight: 400;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.45em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box .black {
    bottom: -2.5em;
    left: -1em;
    right: 0;
    font-weight: 400;
    font-size: max(10px, 11 / 1366 * 100vw);
    line-height: 1.45em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box .black {
    bottom: -2.5em;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box04 div.number-box .black {
    bottom: -3.5em;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 {
  width: calc(157 / 375 * 100vw);
  height: calc(139 / 375 * 100vw);
  background: #fff;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 {
    width: 32.6%;
    height: calc(340 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 {
    height: calc(328 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 div.number-box {
  padding-top: 1vw;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 div.number-box {
    padding-top: 0;
    padding-bottom: 2vw;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 div.number-box p {
  text-align: center;
  line-height: 0.4em;
  position: relative;
  font-size: calc(50 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 div.number-box p {
    font-size: calc(120 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 div.number-box p .black {
  position: absolute;
  bottom: -1.6em;
  left: 0.8em;
  right: 0;
  font-weight: 400;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.45em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 div.number-box p .black {
    bottom: -1em;
    left: -2em;
    right: 0;
    font-weight: 400;
    font-size: max(10px, 11 / 1366 * 100vw);
    line-height: 1.45em;
    letter-spacing: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box05 div.number-box p .day {
  font-size: 0.4em;
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 {
  width: calc(157 / 375 * 100vw);
  height: calc(139 / 375 * 100vw);
  background: #EFFFFD;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 {
    width: 32.6%;
    height: calc(340 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 {
    height: calc(328 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 div.number-box {
  padding-top: 1vw;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 div.number-box {
    padding-top: 0;
    padding-bottom: 2vw;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 div.number-box p {
  line-height: 0.4em;
  position: relative;
  font-size: calc(50 / 375 * 100vw);
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 div.number-box p {
    font-size: calc(120 / 1366 * 100vw);
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 div.number-box p .black {
  position: absolute;
  bottom: -1.6em;
  left: 0.4em;
  right: 0;
  font-weight: 400;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.45em;
  letter-spacing: 0;
  font-family: var(--font-gen-interface);
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 div.number-box p .black {
    bottom: -1.5em;
    left: -2em;
    right: 0;
    font-weight: 400;
    font-size: max(10px, 11 / 1366 * 100vw);
    line-height: 1.45em;
    letter-spacing: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box.strengths-box06 div.number-box p .oku {
  font-size: 0.4em;
}
section.sec-strengths div.strengths-box-wrap div.strengths-box h3 {
  text-align: center;
  border-bottom: solid 1px #000;
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
  line-height: 1.2em;
  padding-bottom: 0.4em;
  margin-bottom: 0.2em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section.sec-strengths div.strengths-box-wrap div.strengths-box h3 {
    font-weight: 500;
    font-size: max(10px, 30 / 1366 * 100vw);
    line-height: 1.4em;
    letter-spacing: 0;
    padding-bottom: 0.6em;
    margin-bottom: 0;
  }
}
section.sec-strengths div.strengths-box-wrap div.strengths-box div.number-box p {
  color: var(--color-green01);
}
section.sec-strengths div.strengths-box-wrap div.strengths-box div.number-box .number {
  font-family: var(--font-barlow);
}
section.sec-strengths div.strengths-box-wrap div.strengths-box div.number-box .black {
  color: #000;
}
section.sec-strengths a.recruit-top-more-btn {
  margin: calc(36 / 375 * 100vw) auto 0;
}
@media screen and (min-width: 768px) {
  section.sec-strengths a.recruit-top-more-btn {
    margin: calc(46 / 1366 * 100vw) auto 0;
  }
  section.sec-strengths a.recruit-top-more-btn:hover .m-btn-dots::after {
    transform: translate(-50%, -50%) scale(0);
  }
  section.sec-strengths a.recruit-top-more-btn:hover .m-btn-dots img {
    transform: translate(0%, 0);
  }
}

div.green-bg {
  background: linear-gradient(180deg, rgba(19, 213, 142, 0.15), rgba(111, 223, 122, 0.15));
}

section.sec-work {
  border-top: solid 1px var(--color-gray01);
  padding: calc(60 / 375 * 100vw) 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec-work {
    padding: calc(110 / 1366 * 100vw) 0;
  }
}
section.sec-work div.sec-work-inner {
  width: 93.8%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  section.sec-work div.sec-work-inner {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-work .recruit-top-title {
  margin-bottom: calc(20 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work .recruit-top-title {
    writing-mode: vertical-rl;
  }
}
section.sec-work div.work-slide-box {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-slide-box {
    width: 88%;
  }
}
section.sec-work div.work-slide-box.animation {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-work div.work-slide-wrap {
  margin-top: calc(37 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-slide-wrap {
    margin-top: calc(40 / 1366 * 100vw);
  }
}
section.sec-work .splide__slide a {
  display: block;
  transition: all 0.3s;
  background-color: #D9D9D9;
  box-sizing: border-box;
  padding: 0 0 calc(15 / 375 * 100vw) calc(17 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide a {
    padding: 0 0 calc(14 / 1366 * 100vw) calc(17 / 1366 * 100vw);
  }
}
section.sec-work .splide__slide a:hover .m-btn-dots::after {
  transform: translate(-50%, -50%) scale(0);
}
section.sec-work .splide__slide a:hover .m-btn-dots img {
  transform: translate(0%, 0);
}
section.sec-work .splide__slide a:hover.newcar {
  background: var(--color-green01);
}
section.sec-work .splide__slide a:hover.chubase {
  background: var(--color-chubase);
}
section.sec-work .splide__slide a:hover.lexus {
  background: var(--color-lexus);
}
section.sec-work .splide__slide a:hover.hacbase {
  background: var(--color-hacbase);
}
section.sec-work .splide__slide a:hover.gr {
  background: var(--color-gr-garage);
}
section.sec-work .splide__slide a:hover.daihatsupark {
  background: var(--color-daihatsupark);
}
section.sec-work .splide__slide a:hover p {
  color: #fff;
}
section.sec-work .splide__slide a.newcar p .m-btn-dots::after {
  background: var(--color-green01);
}
section.sec-work .splide__slide a.chubase p .m-btn-dots::after {
  background: var(--color-chubase);
}
section.sec-work .splide__slide a.lexus p .m-btn-dots::after {
  background: var(--color-lexus);
}
section.sec-work .splide__slide a.hacbase p .m-btn-dots::after {
  background: var(--color-hacbase);
}
section.sec-work .splide__slide a.gr p .m-btn-dots::after {
  background: var(--color-gr-garage);
}
section.sec-work .splide__slide a.daihatsupark p .m-btn-dots::after {
  background: var(--color-daihatsupark);
}
section.sec-work .splide__slide a p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.3s;
  margin-top: calc(33 / 375 * 100vw);
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
  line-height: 1.1em;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide a p {
    margin-top: calc(33 / 1366 * 100vw);
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
  }
}
section.sec-work .splide__slide a p.ir {
  margin-top: 3.7vw;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide a p.ir {
    margin-top: calc(33 / 1366 * 100vw);
  }
}
section.sec-work .splide__slide a p.ir .m-btn-dots {
  transform: translate(0, 50%);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide a p.ir .m-btn-dots {
    transform: translate(0);
  }
}
section.sec-work .splide__slide a p .m-btn-dots {
  margin-left: 3%;
  background: #fff;
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide a p .m-btn-dots {
    width: calc(20 / 1366 * 100vw);
    height: calc(20 / 1366 * 100vw);
  }
}
section.sec-work .splide-progress {
  width: 94.5%;
  height: calc(3 / 375 * 100vw);
  background: #fff;
  overflow: hidden;
  margin-top: calc(37 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide-progress {
    width: 75%;
    height: calc(3 / 1366 * 100vw);
    margin-top: calc(53 / 1366 * 100vw);
  }
}
section.sec-work .splide-progress__bar {
  width: 0;
  height: 100%;
  background: var(--color-gray01);
  transition: width 0.3s ease;
}
section.sec-work .splide__arrows {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 5%;
  width: calc(134 / 375 * 100vw);
  transform: translate(0, 355%);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__arrows {
    width: calc(165 / 1366 * 100vw);
    transform: translate(0, 215%);
  }
}
section.sec-work .splide__arrows .splide__arrow {
  position: relative;
  transform: translate(0);
  left: 0;
  background: none;
  right: 0;
  border: solid 1px #000;
  opacity: 1;
  width: calc(60 / 375 * 100vw);
  height: calc(25 / 375 * 100vw);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__arrows .splide__arrow {
    width: calc(73 / 1366 * 100vw);
    height: calc(32 / 1366 * 100vw);
  }
  section.sec-work .splide__arrows .splide__arrow:hover {
    border: solid 1px var(--color-green01);
    background: var(--color-green01);
  }
  section.sec-work .splide__arrows .splide__arrow:hover svg path {
    fill: #fff;
  }
}
section.sec-work .splide__arrows .splide__arrow.splide__arrow--prev {
  transform: rotate(180deg);
}
section.sec-work .splide__arrows .splide__arrow svg {
  width: 100%;
  height: auto;
  transform: translate(0) scale(1);
}
section.sec-work .splide__arrows .splide__arrow svg path {
  transition: all 0.3s;
}
section.sec-work a.recruit-top-more-btn {
  margin: calc(90 / 375 * 100vw) calc(22 / 375 * 100vw) 0 auto;
}
@media screen and (min-width: 768px) {
  section.sec-work a.recruit-top-more-btn {
    margin: 5vw 4vw 0 auto;
  }
}

section.sec-interview {
  border-top: solid 1px var(--color-gray01);
  overflow: hidden;
  padding: calc(102 / 375 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  section.sec-interview {
    padding: calc(144 / 1366 * 100vw) 0 calc(161 / 1366 * 100vw);
  }
}
section.sec-interview div.sec-interview-inner {
  position: relative;
  margin: auto;
  width: 88%;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.sec-interview-inner {
    width: 95%;
    margin: 0 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-interview div.sec-interview-inner.animation .recruit-top-more-btn {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-interview div.sec-interview-inner.animation div.interview-title-wrap p {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-interview div.sec-interview-inner.animation .interview-slide-wrap {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-interview div.sec-interview-inner.animation .splide-counter {
  animation: interview-scale 1s 0.2s cubic-bezier(0.69, 0.01, 0.07, 0.99) forwards;
}
@keyframes interview-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
section.sec-interview a.recruit-top-more-btn {
  z-index: 2;
  margin-top: 10vw;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-interview a.recruit-top-more-btn {
    position: absolute;
    top: -1vw;
    right: 3.5vw;
  }
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-title-wrap {
    width: 28%;
  }
}
section.sec-interview div.interview-title-wrap p {
  margin-top: 1.4em;
  opacity: 0;
}
section.sec-interview div.interview-slide-wrap {
  position: relative;
  margin-top: calc(30 / 375 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap {
    width: 70%;
    margin-top: calc(68 / 1366 * 100vw);
  }
}
section.sec-interview div.interview-slide-wrap .splide__arrows {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  top: 91vw;
  right: 5%;
  transform: translate(0, 0);
  width: calc(134 / 375 * 100vw);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap .splide__arrows {
    top: -5%;
    width: calc(165 / 1366 * 100vw);
  }
}
section.sec-interview div.interview-slide-wrap .splide__arrows .splide__arrow {
  position: relative;
  transform: translate(0);
  left: 0;
  background: none;
  right: 0;
  border: solid 1px #000;
  opacity: 1;
  width: calc(60 / 375 * 100vw);
  height: calc(25 / 375 * 100vw);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap .splide__arrows .splide__arrow {
    width: calc(73 / 1366 * 100vw);
    height: calc(32 / 1366 * 100vw);
  }
  section.sec-interview div.interview-slide-wrap .splide__arrows .splide__arrow:hover {
    border: solid 1px var(--color-green01);
    background: var(--color-green01);
  }
  section.sec-interview div.interview-slide-wrap .splide__arrows .splide__arrow:hover svg path {
    fill: #fff;
  }
}
section.sec-interview div.interview-slide-wrap .splide__arrows .splide__arrow.splide__arrow--prev {
  transform: rotate(180deg);
}
section.sec-interview div.interview-slide-wrap .splide__arrows .splide__arrow svg {
  width: 100%;
  height: auto;
  transform: translate(0) scale(1);
}
section.sec-interview div.interview-slide-wrap .splide__arrows .splide__arrow svg path {
  transition: all 0.3s;
}
section.sec-interview div.interview-slide-wrap a {
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a {
    pointer-events: none;
  }
}
section.sec-interview div.interview-slide-wrap a div.interview-img-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-img-wrap {
    width: 77%;
    margin: 0 0 0 auto;
  }
}
section.sec-interview div.interview-slide-wrap a div.interview-img-wrap div.interview-img01, section.sec-interview div.interview-slide-wrap a div.interview-img-wrap div.interview-img02 {
  transition: all 0.8s;
}
section.sec-interview div.interview-slide-wrap a div.interview-img-wrap div.interview-img02 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap {
  transition: all 1s;
  z-index: 2;
  opacity: 0;
  margin-top: calc(20 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap {
    position: absolute;
    bottom: -0.3vw;
    left: 0;
    margin-top: 0;
  }
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .tag {
  font-weight: bold;
  line-height: 1.2em;
  font-weight: 400;
  font-size: calc(14 / 375 * 100vw);
  line-height: 2em;
  letter-spacing: 0;
  line-height: 1.2em;
  font-weight: bold;
  margin-top: 0.6em;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .tag {
    font-weight: 400;
    font-size: max(10px, 16 / 1366 * 100vw);
    line-height: 2.8em;
    letter-spacing: 0;
    line-height: 1.2em;
    font-weight: bold;
    margin-top: 0.6em;
  }
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .tag .inner {
  display: inline-block;
  background: #fff;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .tag .inner .color {
  color: var(--color-green01);
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .copy-txt {
  font-weight: 500;
  font-size: calc(25 / 375 * 100vw);
  line-height: 1.52em;
  letter-spacing: 0;
  margin-top: calc(15 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .copy-txt {
    font-weight: 500;
    font-size: max(10px, 25 / 1366 * 100vw);
    line-height: 1.52em;
    letter-spacing: 0;
    margin-top: calc(15 / 1366 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .copy-txt span {
    display: inline-block;
    background-color: #E2F9ED;
    margin-top: 0.2em;
  }
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .recruit {
  display: inline-block;
  width: 5em;
  text-align: center;
  border: solid 1px;
  border-radius: 50em;
  font-weight: 400;
  font-size: calc(14 / 375 * 100vw);
  line-height: 2em;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0.2em 0;
  margin-top: 1em;
  margin-right: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .recruit {
    display: block;
    font-weight: 400;
    font-size: max(10px, 14 / 1366 * 100vw);
    line-height: 2em;
    letter-spacing: 0;
    margin-top: calc(28 / 1366 * 100vw);
    margin-right: 0;
  }
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .recruit.newgraduate {
  color: var(--color-newgraduate);
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .recruit.halfway {
  color: var(--color-halfway);
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .name {
  display: inline-block;
  background-color: #E2F9ED;
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
  transform: translate(0, 0.1em);
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .name {
    margin-top: calc(12 / 1366 * 100vw);
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
  }
}
section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .name span {
  display: inline-block;
  margin-left: 1em;
  font-weight: 400;
  font-size: calc(14 / 375 * 100vw);
  line-height: 2em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap a div.interview-txt-wrap .name span {
    font-weight: 400;
    font-size: max(10px, 14 / 1366 * 100vw);
    line-height: 2em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec-interview div.interview-slide-wrap .splide__slide .interview-img-wrap {
    opacity: 0.3;
    transform: scale(0.55);
    transition: 0.6s;
    transform-origin: bottom;
  }
  section.sec-interview div.interview-slide-wrap .splide__slide .interview-img-wrap img {
    transform: translate(-70%, 0);
  }
}
section.sec-interview div.interview-slide-wrap .splide__slide.is-active a {
  pointer-events: fill;
}
section.sec-interview div.interview-slide-wrap .splide__slide.is-active a:hover div.interview-img-wrap div.interview-img01 {
  opacity: 0;
}
section.sec-interview div.interview-slide-wrap .splide__slide.is-active a:hover div.interview-img-wrap div.interview-img02 {
  opacity: 1;
}
section.sec-interview div.interview-slide-wrap .splide__slide.is-active a div.interview-txt-wrap {
  opacity: 1;
}
section.sec-interview div.interview-slide-wrap .splide__slide.is-active .interview-img-wrap {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
section.sec-interview div.interview-slide-wrap .splide__slide.is-active .interview-img-wrap img {
  transform: translate(0);
  transition: all 0.3s;
}
section.sec-interview .splide-counter {
  position: absolute;
  width: calc(99 / 375 * 100vw);
  height: calc(99 / 375 * 100vw);
  display: grid;
  place-items: center;
  top: -2vw;
  left: -3%;
  transform: scale(0);
}
@media screen and (min-width: 768px) {
  section.sec-interview .splide-counter {
    top: auto;
    bottom: 0;
    left: -40%;
    width: calc(215 / 1366 * 100vw);
    height: calc(215 / 1366 * 100vw);
  }
}
section.sec-interview .splide-counter__circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
section.sec-interview .splide-counter__circle-bg,
section.sec-interview .splide-counter__circle-progress {
  fill: none;
  stroke-width: 0.5;
}
section.sec-interview .splide-counter__circle-bg {
  stroke: #c3d3ca;
}
section.sec-interview .splide-counter__circle-progress {
  stroke: var(--color-green01);
  stroke-linecap: round;
  stroke-dasharray: 138.2;
  stroke-dashoffset: 138.2;
}
section.sec-interview .splide-counter__circle-progress.is-active {
  animation: counterProgress 3.5s linear forwards;
}
section.sec-interview .splide-counter__num {
  z-index: 1;
  color: var(--color-green01);
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: max(10px, 16 / 375 * 100vw);
  line-height: 2.12em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-interview .splide-counter__num {
    font-family: var(--font-barlow);
    font-weight: 600;
    font-size: max(10px, 30 / 1366 * 100vw);
    line-height: 1.13em;
    letter-spacing: 0;
  }
}
section.sec-interview .splide-counter__num .splide-counter__current {
  position: absolute;
  top: 22%;
  left: 35%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  section.sec-interview .splide-counter__num .splide-counter__current {
    top: 32%;
  }
}
section.sec-interview .splide-counter__num .splide-counter__total {
  position: absolute;
  bottom: 22%;
  right: 37%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  section.sec-interview .splide-counter__num .splide-counter__total {
    bottom: 32%;
  }
}
section.sec-interview .splide-counter__num .splide-counter__slash {
  display: block;
  position: absolute;
  background-color: var(--color-green01);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 17vw;
  height: 0.15vw;
}
@media screen and (min-width: 768px) {
  section.sec-interview .splide-counter__num .splide-counter__slash {
    width: 9vw;
    height: 0.15vw;
  }
}
@keyframes counterProgress {
  from {
    stroke-dashoffset: 138.2;
  }
  to {
    stroke-dashoffset: 0;
  }
}

section.sec-crosstalk {
  border-top: solid 1px var(--color-gray01);
}
section.sec-crosstalk div.sec-crosstalk-inner {
  margin: auto;
  width: 88%;
  padding: calc(80 / 375 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sec-crosstalk-inner {
    width: 90%;
    padding: calc(90 / 1366 * 100vw) 0;
  }
}
section.sec-crosstalk div.recruit-top-title-wrap {
  margin-bottom: calc(58 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.recruit-top-title-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    -moz-column-gap: calc(52 / 1366 * 100vw);
         column-gap: calc(52 / 1366 * 100vw);
    margin-bottom: calc(58 / 1366 * 100vw);
  }
}
section.sec-crosstalk div.recruit-top-title-wrap p {
  margin-bottom: 0.2em;
  margin-top: 1em;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.recruit-top-title-wrap p {
    margin-top: 0;
  }
}
section.sec-crosstalk div.recruit-top-title-wrap p.animation {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-crosstalk div.sticky-area {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: calc(13 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area {
    row-gap: calc(23 / 1366 * 100vw);
  }
}
section.sec-crosstalk div.sticky-area .sticky-item {
  display: block;
  position: sticky;
  top: calc(80 / 375 * 100vw);
  left: 0;
  overflow: hidden;
  isolation: isolate;
  border: solid 2px var(--color-green01);
  border-radius: calc(12 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item {
    border-radius: 12px;
    top: calc(120 / 1366 * 100vw);
  }
}
section.sec-crosstalk div.sticky-area .sticky-item:hover .m-btn-dots::after {
  transform: translate(-50%, -50%) scale(0);
}
section.sec-crosstalk div.sticky-area .sticky-item:hover .m-btn-dots img {
  transform: translate(0%, 0);
}
section.sec-crosstalk div.sticky-area .sticky-item:hover .sticky-img img {
  transform: scale(1.04);
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-img img {
  transition: all 0.3s;
}
section.sec-crosstalk div.sticky-area .sticky-item .number {
  position: absolute;
  top: 2vw;
  left: 2vw;
  font-family: var(--font-barlow);
  line-height: 0.8em;
  color: var(--color-green01);
  mix-blend-mode: darken;
  font-size: calc(60 / 375 * 100vw);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .number {
    top: 2vw;
    left: 2vw;
    font-size: calc(106 / 1366 * 100vw);
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap {
  position: absolute;
  bottom: 3vw;
  left: 5vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap {
    bottom: 1.6vw;
    left: 2vw;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap .tag {
  display: inline-block;
  background: var(--color-green01);
  color: #fff;
  padding: 0.3em 0.4em;
  font-weight: bold;
  margin-bottom: 0.6em;
  font-weight: 400;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.45em;
  letter-spacing: 0;
  line-height: 1em;
  border-radius: calc(3 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap .tag {
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
    line-height: 1em;
    padding: 0.2em 0.4em;
    font-weight: bold;
    border-radius: 3px;
    margin-bottom: 1em;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap h3 {
  margin-bottom: 0.8em;
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap h3 {
    font-weight: 500;
    font-size: max(10px, 30 / 1366 * 100vw);
    line-height: 1.4em;
    letter-spacing: 0;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap h3 span {
  background-color: rgba(255, 255, 255, 0.9);
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt {
    align-items: center;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p {
  line-height: 1em;
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span {
  display: inline-block;
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.category {
  font-weight: 400;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.45em;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 0.25em 0.6em 0.25em;
  background-color: #fff;
  margin-right: 0.2em;
  border: solid 1px;
  border-radius: 50em;
  line-height: 1em;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.category {
    font-weight: 400;
    font-size: max(10px, 14 / 1366 * 100vw);
    line-height: 2em;
    letter-spacing: 0;
    line-height: 1em;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.category.newgraduate {
  color: var(--color-newgraduate);
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.category.halfway {
  color: var(--color-halfway);
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name {
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
  line-height: 1.2em;
  transform: translate(0, 0.1em);
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name {
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
    line-height: 1.2em;
    margin-right: 0.6em;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name.white {
  color: #fff;
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name.white {
  color: #fff;
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name.white-black {
  color: #fff;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name.white-black {
    color: #000;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name.black-white {
  color: #000;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt p span.name.black-white {
    color: #fff;
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross {
  display: inline-block;
  position: relative;
  width: calc(12 / 375 * 100vw);
  height: calc(12 / 375 * 100vw);
  transform: translate(0, -65%);
  margin: 0 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross {
    width: calc(12 / 1366 * 100vw);
    height: calc(12 / 1366 * 100vw);
    margin: 0;
    transform: translate(0, -20%);
    margin-right: calc(10 / 1366 * 100vw);
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross::after, section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross::before {
  content: "";
  display: block;
  width: 130%;
  height: calc(2 / 375 * 100vw);
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #B1B1B1;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross::after, section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross::before {
    height: calc(2 / 1366 * 100vw);
  }
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
section.sec-crosstalk div.sticky-area .sticky-item .sticky-txt-wrap div.recruit-txt .cross::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
section.sec-crosstalk div.sticky-area .sticky-item .m-btn-dots {
  position: absolute;
  bottom: calc(7 / 375 * 100vw);
  right: calc(16 / 375 * 100vw);
  width: calc(30 / 375 * 100vw);
  height: calc(30 / 375 * 100vw);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  section.sec-crosstalk div.sticky-area .sticky-item .m-btn-dots {
    width: calc(37 / 1366 * 100vw);
    height: calc(37 / 1366 * 100vw);
    bottom: calc(42 / 1366 * 100vw);
    right: calc(58 / 1366 * 100vw);
  }
}

section.sec-qa {
  border-top: solid 1px var(--color-gray01);
  padding: calc(82 / 375 * 100vw) 0 calc(62 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-qa {
    padding: calc(120 / 1366 * 100vw) 0 calc(95 / 1366 * 100vw);
  }
}
section.sec-qa div.sec-qa-inner {
  width: 88%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-qa div.sec-qa-inner {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  section.sec-qa div.qa-txt-wrap {
    width: 23.2%;
  }
}
section.sec-qa div.qa-txt-wrap.animation p {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-qa div.qa-txt-wrap.animation .recruit-top-more-btn {
  animation: fade 0.6s 0.1s ease forwards;
}
section.sec-qa div.qa-txt-wrap p {
  margin-top: 1em;
  margin-bottom: 1em;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-qa div.qa-txt-wrap p {
    margin-top: 1.6em;
  }
}
section.sec-qa div.qa-txt-wrap .recruit-top-more-btn {
  opacity: 0;
}
section.sec-qa div.qa-link-wrap {
  margin-top: calc(54 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-qa div.qa-link-wrap {
    margin-top: 0;
    width: 73%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-qa div.qa-link-wrap a {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: solid 2px var(--color-green01);
  border-radius: calc(12 / 375 * 100vw);
  margin-bottom: calc(16 / 375 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-qa div.qa-link-wrap a {
    width: 49%;
    margin-bottom: 0;
    border-radius: 6px;
  }
}
section.sec-qa div.qa-link-wrap a:hover .m-btn-dots::after {
  transform: translate(-50%, -50%) scale(0);
}
section.sec-qa div.qa-link-wrap a:hover .m-btn-dots img {
  transform: translate(0%, 0);
}
section.sec-qa div.qa-link-wrap a:hover div.qa-link-img img {
  transform: scale(1.05);
}
section.sec-qa div.qa-link-wrap a.animation {
  animation: fade 0.6s 0.1s ease forwards;
}
section.sec-qa div.qa-link-wrap a div.qa-link-img img {
  transition: 0.3s;
}
section.sec-qa div.qa-link-wrap a p {
  position: absolute;
  color: #fff;
  left: 6%;
  bottom: 2%;
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-qa div.qa-link-wrap a p {
    left: 6%;
    bottom: 4%;
    font-weight: 500;
    font-size: max(10px, 25 / 1366 * 100vw);
    line-height: 1.52em;
    letter-spacing: 0;
  }
}
section.sec-qa div.qa-link-wrap a .m-btn-dots {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: calc(32 / 375 * 100vw);
  height: calc(32 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-qa div.qa-link-wrap a .m-btn-dots {
    bottom: 3%;
    right: 3%;
    width: calc(37 / 1366 * 100vw);
    height: calc(37 / 1366 * 100vw);
  }
}

section.sec-environment {
  border-top: solid 1px var(--color-gray01);
}
section.sec-environment div.sec-environment-inner {
  width: 88%;
  margin: auto;
  padding: calc(82 / 375 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner {
    width: 75.8%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: calc(111 / 1366 * 100vw) 0 calc(132 / 1366 * 100vw);
  }
}
section.sec-environment div.sec-environment-inner div.environment-img-wrap {
  position: relative;
  width: 76.6%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-img-wrap {
    width: 45%;
    margin: 0;
  }
}
section.sec-environment div.sec-environment-inner div.environment-img-wrap div.environment-kumaru {
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 26%;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-img-wrap div.environment-kumaru {
    bottom: -5%;
    right: 0;
    width: 22.3%;
  }
}
section.sec-environment div.sec-environment-inner div.environment-img-wrap div.environment-chumaru {
  position: absolute;
  width: 26%;
  top: 5%;
  left: -15%;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-img-wrap div.environment-chumaru {
    top: 5%;
    left: -10%;
    width: 21%;
  }
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap {
  margin-top: calc(36 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-txt-wrap {
    width: calc(446 / 1366 * 100vw);
    margin-top: 0;
  }
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap p.recruit-top-lead-txt {
  margin-top: 1em;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-txt-wrap p.recruit-top-lead-txt {
    margin-top: 1.6em;
  }
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap p.recruit-top-lead-txt.animation {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul {
  font-weight: 500;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.56em;
  letter-spacing: 0;
  margin-top: calc(20 / 375 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul {
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
    margin-top: calc(50 / 1366 * 100vw);
  }
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul.animation {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li {
  border-bottom: solid 1px #C8C8C8;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li {
    border-bottom: solid 1px #fff;
  }
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li a {
  padding: 0.8em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li a {
    padding: 1.2em 0;
  }
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li a:hover .m-btn-dots::after {
  transform: translate(-50%, -50%) scale(0);
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li a:hover .m-btn-dots img {
  transform: translate(0%, 0);
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li a:hover {
  color: var(--color-green01);
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li a .txt .icon {
  display: inline-block;
  width: 0.8em;
  margin-top: 0.2em;
  margin-left: 0.4em;
}
section.sec-environment div.sec-environment-inner div.environment-txt-wrap ul li a .m-btn-dots {
  width: 1.4em;
  height: 1.4em;
}

section.sec-oktp {
  background-image: url(../../myimg/top/oktp-bg_sp.webp);
  background-size: cover;
  padding: calc(59 / 375 * 100vw) 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-oktp {
    background-image: url(../../myimg/top/oktp-bg_pc.webp);
    background-size: cover;
    padding: calc(60 / 1366 * 100vw) 0 calc(160 / 1366 * 100vw);
  }
}
section.sec-oktp div.sec-oktp-inner {
  width: 88%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-oktp div.sec-oktp-inner {
    width: 75.8%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
section.sec-oktp div.sec-oktp-inner ul {
  font-weight: 500;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.56em;
  letter-spacing: 0;
  opacity: 0;
  margin-top: calc(20 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-oktp div.sec-oktp-inner ul {
    width: 53%;
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
    margin-top: 0;
  }
}
section.sec-oktp div.sec-oktp-inner ul.animation {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-oktp div.sec-oktp-inner ul li {
  border-bottom: solid 1px #C8C8C8;
}
@media screen and (min-width: 768px) {
  section.sec-oktp div.sec-oktp-inner ul li {
    border-bottom: solid 1px #fff;
  }
}
section.sec-oktp div.sec-oktp-inner ul li a {
  padding: 0.8em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-oktp div.sec-oktp-inner ul li a {
    padding: 1.2em 0;
  }
}
section.sec-oktp div.sec-oktp-inner ul li a:hover .m-btn-dots::after {
  transform: translate(-50%, -50%) scale(0);
}
section.sec-oktp div.sec-oktp-inner ul li a:hover .m-btn-dots img {
  transform: translate(0%, 0);
}
section.sec-oktp div.sec-oktp-inner ul li a:hover {
  color: var(--color-green01);
}
section.sec-oktp div.sec-oktp-inner ul li a:hover .txt .icon path {
  stroke: var(--color-green01);
}
section.sec-oktp div.sec-oktp-inner ul li a .txt .icon {
  display: inline-block;
  width: 0.8em;
  margin-top: 0.2em;
  margin-left: 0.4em;
}
section.sec-oktp div.sec-oktp-inner ul li a .txt .icon path {
  transition: all 0.3s;
}
section.sec-oktp div.sec-oktp-inner ul li a .m-btn-dots {
  width: 1.4em;
  height: 1.4em;
}

section.sec-message {
  padding: calc(84 / 375 * 100vw) 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-message {
    padding: calc(167 / 1366 * 100vw) 0 0;
  }
}
section.sec-message div.sec-message-inner {
  width: 88%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-message div.sec-message-inner {
    width: 75.8%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-message .recruit-top-title {
  margin-bottom: calc(40 / 375 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-message .recruit-top-title {
    writing-mode: vertical-rl;
    width: 8.2%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap {
    width: 87.8%;
  }
}
section.sec-message div.message-box-wrap div.message-box {
  border-bottom: solid 1px var(--color-gray01);
  padding: calc(47 / 375 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap div.message-box {
    padding: calc(47 / 1366 * 100vw) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-message div.message-box-wrap div.message-box:nth-of-type(1) {
  padding-top: 0;
}
section.sec-message div.message-box-wrap div.message-box:last-child {
  border-bottom: none;
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap {
    width: 66.2%;
    order: -1;
  }
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap.animation {
  animation: fade 0.6s 0s ease forwards;
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap h3 {
  margin-bottom: 0.4em;
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap h3 {
    font-weight: 500;
    font-size: max(10px, 25 / 1366 * 100vw);
    line-height: 1.52em;
    letter-spacing: 0;
  }
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.info-txt {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.info-txt {
    font-weight: 400;
    font-size: max(10px, 14 / 1366 * 100vw);
    line-height: 2em;
    letter-spacing: 0;
    line-height: 1.2em;
  }
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.info-txt span {
  display: inline-block;
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.info-txt .category {
  color: var(--color-newgraduate);
  border: solid 1px;
  padding: 0.2em 0.5em;
  border-radius: 50em;
  margin-right: 0.4em;
  line-height: 1em;
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.info-txt .name {
  font-weight: 500;
  font-size: calc(18 / 375 * 100vw);
  line-height: 1.83em;
  letter-spacing: 0;
  margin-right: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.info-txt .name {
    font-weight: 500;
    font-size: max(10px, 18 / 1366 * 100vw);
    line-height: 1.83em;
    letter-spacing: 0;
  }
}
section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.body-txt {
  text-align: justify;
  word-break: break-all;
  font-weight: 400;
  font-size: calc(14 / 375 * 100vw);
  line-height: 2em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap div.message-box div.message-txt-wrap p.body-txt {
    font-weight: 400;
    font-size: max(10px, 16 / 1366 * 100vw);
    line-height: 2.12em;
    letter-spacing: 0;
  }
}
section.sec-message div.message-box-wrap div.message-box div.message-img {
  margin-bottom: calc(20 / 375 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-message div.message-box-wrap div.message-box div.message-img {
    width: 28.6%;
    margin-bottom: 0;
  }
}
section.sec-message div.message-box-wrap div.message-box div.message-img.animation {
  animation: fade 0.6s 0s ease forwards;
}/*# sourceMappingURL=style.css.map */