@charset "UTF-8";
@keyframes slidein-bound-right {
  0% {
    transform: translateX(500px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(-15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-right-sp {
  0% {
    transform: translateX(300px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(-15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-left {
  0% {
    transform: translateX(-500px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(-25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-left-sp {
  0% {
    transform: translateX(-300px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(-25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-bottom {
  0% {
    transform: translateY(250px);
  }
  30% {
    transform: translateY(0);
  }
  37% {
    transform: translateY(25px);
  }
  43% {
    transform: translateY(0);
  }
  53% {
    transform: translateY(15px);
  }
  68% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slidein-bound-bottom-sp {
  0% {
    transform: translateY(150px);
  }
  30% {
    transform: translateY(0);
  }
  37% {
    transform: translateY(25px);
  }
  43% {
    transform: translateY(0);
  }
  53% {
    transform: translateY(15px);
  }
  68% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes marquee-loop {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes flowing-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes slide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slide-reverse {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-row {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-row-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main {
  margin-top: 0;
}

.top_kv {
  height: 100vh;
  padding-top: 100px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.top_kv_inner {
  max-width: 1920px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.top_kv_text {
  font-size: clamp(20px, 4rem + 3vw, 140px);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  /* 下から上に少し動く */
  animation: fadeInUp 0.7s ease-out forwards;
}
.top_kv_text strong {
  font-size: clamp(50px, 6rem + 3vw, 180px);
}
@media screen and (max-width: 768px) {
  .top_kv_text {
    font-size: min(10vw, 60px);
  }
  .top_kv_text strong {
    font-size: min(20vw, 100px);
  }
}
.top_kv_text:first-child {
  top: 0;
  left: 0;
}
.top_kv_text:last-child {
  line-height: 1.5;
  bottom: 0;
  right: 0;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .top_kv_text:last-child {
    bottom: 35px;
  }
}
.top_kv_teamname {
  position: absolute;
  bottom: 30px;
  left: 0;
  font-size: clamp(14px, 0.632rem + 1.04vw, 30px);
  font-weight: 500;
  z-index: 20;
  transition: opacity 0.5s ease;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_kv_teamname {
    bottom: 10px;
  }
}
.top_kv_teamname.hide {
  opacity: 0;
}
.top_kv_swiper {
  z-index: 10;
  position: relative;
  width: 100vw;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .top_kv_swiper {
    top: 54%;
  }
}
.top_kv_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top_kv_swiper .swiper-slide_item {
  width: 100%;
  max-width: 1920px;
}
@media screen and (max-width: 768px) {
  .top_kv_swiper .swiper-slide_item {
    max-width: 1000px;
    min-width: 830px;
  }
}
.top_message {
  background-color: #44BEC7;
  max-height: 1000px;
  min-height: 500px;
  width: 100%;
  aspect-ratio: 1/0.563;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_message {
    aspect-ratio: 1/0.65;
  }
}
@media screen and (max-width: 768px) {
  .top_message {
    aspect-ratio: auto;
    min-height: auto;
    padding: 50px 0 30px;
  }
}
.top_message .section_title {
  text-align: left;
  display: inline;
  font-size: clamp(18px, 0.8rem + 1.6vw, 45px);
  margin-bottom: 0;
}
.top_message .section_title-ja {
  display: inline;
  font-size: clamp(16px, 0.8rem + 0.5vw, 24px);
  margin-left: 5px;
}
.top_message .container {
  display: flex;
  align-items: center;
  gap: 70px;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top_message .container {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top_message .container {
    gap: 20px;
    height: auto;
    flex-direction: column-reverse;
  }
}
.top_message_slide {
  display: flex;
  gap: 20px;
  width: 54%;
  height: 100%;
  max-width: 916px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top_message_slide {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top_message_slide {
    flex-direction: column;
    width: 100vw;
    gap: 5px;
  }
}
.top_message_slide_contents {
  transform: translateZ(0);
  will-change: transform;
  position: absolute;
  width: calc(50% - 10px);
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top_message_slide_contents {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 768px) {
  .top_message_slide_contents {
    display: flex;
    align-items: center;
    width: 200%;
    position: relative;
  }
}
.top_message_slide_contents1 .top_message_slide-wrapper {
  transform: translateX(-100%);
  animation: slide-reverse 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .top_message_slide_contents1 .top_message_slide-wrapper {
    transform: translateX(-100%);
    animation: slide-row-reverse 30s linear infinite;
  }
}
.top_message_slide_contents2 {
  left: auto;
  right: 0;
}
.top_message_slide_contents2 .top_message_slide-wrapper {
  animation: slide 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .top_message_slide_contents2 .top_message_slide-wrapper {
    animation: slide-row 30s linear infinite;
  }
}
@media screen and (max-width: 768px) {
  .top_message_slide-wrapper {
    display: flex;
  }
}
.top_message_slide-item {
  min-width: 130px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top_message_slide-item {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .top_message_slide-item {
    padding: 0 5px 0 0;
  }
}
.top_message_info {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top_message_info {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .top_message_info {
    margin-bottom: 30px;
  }
}
.top_message_info-main {
  font-size: clamp(20px, 0.4rem + 3.5vw, 82px);
  font-weight: 600;
  line-height: 1.3;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .top_message_info-main {
    font-size: 38px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .top_message_info-main span {
    display: inline-block;
  }
}
.top_message_info .btn {
  margin-top: 40px;
  max-width: 320px;
}
@media screen and (max-width: 1250px) {
  .top_message_info .pc {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top_message_info .pc {
    display: none;
  }
}
.top_message_bg {
  position: absolute;
  bottom: -20%;
  left: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .top_message_bg {
    bottom: -160px;
  }
}
@media screen and (max-width: 768px) {
  .top_message_bg {
    bottom: -110px;
  }
}
.top_message_bg-inner {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 30%;
  max-width: 563px;
}
@media screen and (max-width: 768px) {
  .top_message_bg-inner {
    max-width: 185px;
    width: 37%;
    right: -20px;
  }
}
.top_tiktok {
  padding: 80px 0;
  background-color: #5163C9;
}
@media screen and (max-width: 1024px) {
  .top_tiktok {
    padding: 50px 0;
  }
}
.top_tiktok_contents {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .top_tiktok_contents {
    padding: 0;
    background-color: transparent;
    overflow: hidden;
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .top_tiktok_contents .tiktok-embed {
    margin: 0 auto;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .top_tiktok_contents .tiktok-embed {
    border-radius: 5px;
  }
}
.top_workstyle {
  padding: 80px 0;
  background-color: #FF8B4D;
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .top_workstyle {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top_workstyle {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle {
    padding-bottom: 140px;
  }
}
.top_workstyle .container {
  position: relative;
}
.top_workstyle_top {
  position: relative;
}
.top_workstyle_top-main {
  font-size: clamp(35px, 1.475rem + 3.04vw, 82px);
  font-weight: 700;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px 0 0;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .top_workstyle_top-main {
    margin-top: 20px;
    padding-bottom: 45px;
  }
}
.top_workstyle_top-main p {
  line-height: 1.2;
}
.top_workstyle_ceo {
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 40%;
  max-width: 629px;
}
.top_workstyle_ceo-info {
  position: absolute;
  bottom: 50px;
  right: 0;
  font-size: 18px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .top_workstyle_ceo-info {
    font-size: 10px;
    bottom: 30px;
  }
}
.top_workstyle_contents {
  background-color: #fff;
  color: #262626;
  border-radius: 10px;
  padding: 70px 20px 50px;
  margin-top: -2px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_contents {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_contents {
    padding: 20px 10px 30px;
    border-radius: 5px;
  }
}
.top_workstyle_contents-inner {
  width: 96%;
  max-width: 1250px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_contents-inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_contents-inner {
    max-width: 600px;
    margin: 0 auto;
  }
}
.top_workstyle_item + .top_workstyle_item {
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item + .top_workstyle_item {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item + .top_workstyle_item {
    margin-top: 40px;
  }
}
.top_workstyle_item_title {
  font-size: clamp(18px, 0.488rem + 2.72vw, 60px);
  font-weight: 700;
  color: #E63C66;
  position: relative;
  padding-left: 20px;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_title {
    margin-bottom: 10px;
    padding-left: 10px;
  }
}
.top_workstyle_item_title::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  background-color: #E63C66;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item_title::before {
    width: 8px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_title::before {
    width: 4px;
  }
}
.top_workstyle_item_title-info {
  line-height: 1.3;
  width: 80%;
  max-width: 800px;
  font-size: clamp(12px, 0.629rem + 0.52vw, 20px);
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_title-info {
    width: 100%;
  }
}
.top_workstyle_item_contents {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item_contents {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_contents {
    display: block;
    margin-top: 10px;
  }
}
.top_workstyle_item_text {
  width: 44.9%;
  max-width: 580px;
  min-width: 330px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item_text {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_text {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.top_workstyle_item_text p {
  line-height: 1.5;
}
.top_workstyle_item_text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  border-style: solid;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #262626;
  translate: 100% -50%;
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_text::before {
    top: auto;
    right: auto;
    bottom: 3px;
    left: 50%;
    border-width: 20px 15px 0 15px;
    border-color: #262626 transparent transparent;
    translate: -50% 100%;
  }
}
.top_workstyle_item_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  border-style: solid;
  border-width: 8.8px 0 8.8px 11.7px;
  border-color: transparent transparent transparent #fff;
  translate: 100% -50%;
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_text::after {
    top: auto;
    right: auto;
    bottom: 3px;
    left: 50%;
    border-width: 16.7px 12.5px 0 12.5px;
    border-color: #fff transparent transparent;
    translate: -50% 100%;
  }
}
.top_workstyle_item_text-inner {
  height: 100%;
  width: 100%;
  border: 5px solid #262626;
  border-radius: 5px;
  padding: 30px 25px;
  box-sizing: border-box;
  font-size: clamp(18px, 0.65rem + 1.7vw, 45px);
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item_text-inner {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_text-inner {
    border-width: 3px;
    padding: 8px 8px 40px;
  }
}
.top_workstyle_item_text strong {
  display: inline-block;
  color: #E63C66;
}
.top_workstyle_item_text img {
  width: 57%;
  max-width: 344px;
  position: absolute;
  bottom: -13%;
  right: 1%;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item_text img {
    width: 65%;
    max-width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_text img {
    width: 30%;
    max-width: 100px;
    bottom: -20%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_text br {
    display: none;
  }
}
.top_workstyle_item_list {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_list {
    max-width: 600px;
    margin: 0 auto;
  }
}
.top_workstyle_item_list_item {
  display: flex;
  align-items: stretch;
  background-color: #E63C66;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_list_item {
    border-radius: 5px;
  }
}
.top_workstyle_item_list_item + .top_workstyle_item_list_item {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item_list_item + .top_workstyle_item_list_item {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_list_item + .top_workstyle_item_list_item {
    margin-top: 8px;
  }
}
.top_workstyle_item_list_item-img {
  width: 40%;
  line-height: 0;
}
.top_workstyle_item_list_item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_workstyle_item_list_item-num {
  font-size: clamp(13px, 0.737rem + 0.32vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background-color: #E63C66;
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px;
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_list_item-num {
    padding: 4px 8px 6px 6px;
  }
}
.top_workstyle_item_list_item-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  margin: 34px 0;
}
@media screen and (max-width: 768px) {
  .top_workstyle_item_list_item-main {
    margin: 20px;
  }
}
.top_workstyle_item_list_item-main strong {
  display: block;
  font-size: clamp(18px, 0.9rem + 0.7vw, 30px);
  font-weight: 600;
  line-height: 1.2;
}
.top_workstyle_item_list_item:nth-child(2) {
  background-color: #5163C9;
}
.top_workstyle_item_list_item:nth-child(2) .top_workstyle_item_list_item-num {
  background-color: #5163C9;
}
.top_workstyle_item_list_item:nth-child(3) {
  background-color: #93B82E;
}
.top_workstyle_item_list_item:nth-child(3) .top_workstyle_item_list_item-num {
  background-color: #93B82E;
}
.top_workstyle_item_box {
  border: 2px solid #44BEC7;
  background-color: #44BEC7;
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  font-size: clamp(14px, 0.814rem + 0.26vw, 18px);
  font-weight: 600;
}
.top_workstyle_item_box-name {
  padding: 3px 0;
}
.top_workstyle_item-support {
  position: relative;
}
.top_workstyle_item-support_bg {
  position: absolute;
  max-width: 350px;
  width: 28%;
  top: -11%;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item-support_bg {
    top: -7%;
    min-width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item-support_bg {
    display: none;
  }
}
.top_workstyle_item-system {
  position: relative;
}
.top_workstyle_item-system .top_workstyle_item_title {
  color: #44BEC7;
}
.top_workstyle_item-system .top_workstyle_item_title::before {
  background-color: #44BEC7;
}
.top_workstyle_item-system .top_workstyle_item_contents {
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item-system .top_workstyle_item_contents {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item-system .top_workstyle_item_contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
  }
}
.top_workstyle_item-system_bg {
  position: absolute;
  width: 30%;
  max-width: 320px;
  top: -5%;
  right: 1%;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_item-system_bg {
    max-width: 200px;
    top: 3%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_item-system_bg {
    display: none;
  }
}
.top_workstyle_btn {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .top_workstyle_btn {
    margin-top: 40px;
  }
}
.top_workstyle_environment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_environment {
    margin-top: 60px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_environment {
    flex-direction: column;
    margin-top: 50px;
    gap: 20px;
  }
}
.top_workstyle_environment-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_workstyle_environment-img {
    border-radius: 5px;
  }
}
.top_workstyle_environment_contents {
  width: 25%;
  min-width: 300px;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_environment_contents {
    min-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_environment_contents {
    width: 100%;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_environment_contents .top_workstyle_system_environment-btn {
    max-width: 400px;
  }
}
.top_workstyle_environment_title {
  font-size: clamp(32px, 1.45rem + 1vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
.top_workstyle_bg {
  position: absolute;
  bottom: -20px;
  right: 0;
  max-width: 353px;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .top_workstyle_bg {
    width: 23%;
  }
}
@media screen and (max-width: 768px) {
  .top_workstyle_bg {
    width: 30%;
    min-width: 180px;
  }
}
.top_joblist {
  padding: 40px 0 80px;
  background-color: #FFC547;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_joblist {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .top_joblist {
    padding: 30px 0 50px;
  }
}
.top_joblist .section_title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_joblist .section_title {
    margin-bottom: 40px;
  }
}
.top_joblist_cta {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top_joblist_cta {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_joblist_cta {
    padding-top: 40px;
  }
}
.top_joblist_cta a {
  display: block;
  padding: 30px 50px;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(20px, 0.947rem + 1.29vw, 40px);
  background-color: #E63C66 !important;
  color: #fff !important;
}
@media screen and (max-width: 1024px) {
  .top_joblist_cta a {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 768px) {
  .top_joblist_cta a {
    padding: 15px 12px;
    border-radius: 5px;
  }
}
.top_joblist_cta a:hover {
  opacity: 0.9;
}
.top_joblist_cta-ja {
  font-size: clamp(25px, 1.032rem + 2vw, 60px);
  line-height: 1.4;
}
.top_joblist_cta-ja span {
  display: inline-block;
}
.top_joblist_cta-btn {
  margin-top: 40px;
  font-size: clamp(13px, 0.65rem + 0.39vw, 18px);
  background-color: #fff !important;
  color: #E63C66 !important;
  position: relative;
  z-index: 1;
}
.top_joblist_cta-btn .circle-arrow {
  background-color: #E63C66 !important;
}
.top_joblist_cta-btn .circle-arrow::before, .top_joblist_cta-btn .circle-arrow::after {
  background-color: #fff !important;
}
@media screen and (max-width: 1024px) {
  .top_joblist_cta-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top_joblist_cta-btn {
    margin-top: 20px;
  }
}
.top_joblist_cta-bg {
  position: absolute;
  width: 28%;
  max-width: 1536px;
  bottom: -15%;
  right: 1%;
}
@media screen and (max-width: 1024px) {
  .top_joblist_cta-bg {
    right: -2%;
  }
}
@media screen and (max-width: 768px) {
  .top_joblist_cta-bg {
    max-width: 250px;
    width: 42%;
    bottom: -14%;
    right: -6%;
  }
}
.top_joblist_bg {
  position: absolute;
  top: -8%;
  left: -5%;
  max-width: 590px;
  width: 33%;
}
@media screen and (max-width: 1024px) {
  .top_joblist_bg {
    top: -5%;
    min-width: 170px;
  }
}
@media screen and (max-width: 768px) {
  .top_joblist_bg {
    min-width: 145px;
    top: 11px;
    left: -50px;
  }
}
.top_member {
  padding: 60px 0;
  background-color: #93B82E;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top_member {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .top_member {
    padding: 40px 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .top_member {
    padding-bottom: 100px;
  }
}
.top_member .section_title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_member .section_title {
    margin-bottom: 30px;
  }
}
.top_member .container-md {
  width: 80%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top_member .container-md {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .top_member .container-md {
    width: 85%;
  }
}
@media screen and (max-width: 689px) {
  .top_member .container-md {
    width: 100%;
  }
}
.top_member_swiper {
  min-width: 700px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.top_member_swiper .swiper-slide {
  height: auto;
  transform: scale(0.9);
  transition: transform 0.5s;
}
.top_member_swiper .swiper-slide-next {
  transform: scale(1);
}
.top_member_swiper .swiper-slide-item {
  height: 100%;
}
.top_member_btn {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .top_member_btn {
    margin-top: 30px;
  }
}
.top_member_bg {
  position: absolute;
  bottom: -10%;
  left: 4%;
  max-width: 360px;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .top_member_bg {
    bottom: -9%;
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  .top_member_bg {
    width: 180px;
    bottom: -82px;
  }
}