article {
  overflow: hidden;
}

.sec-profile {
  margin-top: 120px;
}
@media screen and (max-width: 900px) {
  .sec-profile {
    margin-top: 240px;
  }
}
.sec-profile .content-wrapper .top {
  margin-bottom: 16px;
  aspect-ratio: 5/2;
}
.sec-profile .content-wrapper .top .tag {
  margin-bottom: 12px;
}
.sec-profile .content-wrapper .top h2 {
  font-size: 32px;
  margin-bottom: 24px;
}
.sec-profile .content-wrapper .top h2::before {
  content: none;
}
.sec-profile .content-wrapper .top .question {
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.sec-profile .content-wrapper .top .answer {
  width: 60%;
  font-size: 24px;
  color: #000;
  margin-bottom: 64px;
}
@media screen and (max-width: 900px) {
  .sec-profile .content-wrapper .top .answer {
    width: 100%;
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.sec-profile .content-wrapper .top .grid-container {
  width: 60%;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .sec-profile .content-wrapper .top .grid-container {
    width: 100%;
  }
}
.sec-profile .content-wrapper .top .grid-container img {
  border-radius: 8px;
}
.sec-profile .rotate-image {
  z-index: 0;
}
@media screen and (max-width: 900px) {
  .sec-profile .rotate-image {
    top: -240px !important;
  }
}

.sec-main-work {
  margin-top: 120px;
}
@media screen and (max-width: 640px) {
  .sec-main-work .grid-container {
    grid-template-columns: 1fr;
  }
}
.sec-main-work .grid-container .main-work-cont {
  background-color: #f2f6fb;
  padding: 32px;
  border: 0;
  border-radius: 8px;
}
.sec-main-work .grid-container .main-work-cont .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.sec-main-work .grid-container .main-work-cont .lead {
  margin-bottom: 0;
}

.sec-target-person {
  margin-top: 120px;
  margin-bottom: 120px;
}
.sec-target-person h2 {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .sec-target-person .grid-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .sec-target-person .grid-container {
    grid-template-columns: 1fr;
  }
}
.sec-target-person .grid-container .target-person-cont {
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 52px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}
@media (max-width: 640px) {
  .sec-target-person .grid-container .target-person-cont {
    padding: 32px;
  }
}
.sec-target-person .grid-container .target-person-cont:hover {
  background-color: #f2f6fb;
}
.sec-target-person .grid-container .target-person-cont.active::after {
  animation: checkDraw 0.8s ease forwards;
  opacity: 1;
}
.sec-target-person .grid-container .target-person-cont:hover .wrap-checkbox .checkbox::after {
  background-color: #f2f6fb;
}
.sec-target-person .grid-container .target-person-cont .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sec-target-person .grid-container .target-person-cont .list li {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .sec-target-person .grid-container .target-person-cont .list li {
    display: flex;
    gap: 36px;
  }
}
.sec-target-person .grid-container .target-person-cont .wrap-checkbox {
  position: relative;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 640px) {
  .sec-target-person .grid-container .target-person-cont .wrap-checkbox {
    margin-bottom: 0;
    width: auto;
  }
}
.sec-target-person .grid-container .target-person-cont .wrap-checkbox input {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%) scale(1.5);
  width: 1.1rem;
  height: 1.1rem;
  opacity: 1;
  z-index: 2;
  cursor: pointer;
}
.sec-target-person .grid-container .target-person-cont .wrap-checkbox .checkbox {
  position: static;
  cursor: pointer;
}
@media (max-width: 640px) {
  .sec-target-person .grid-container .target-person-cont .wrap-checkbox .checkbox {
    position: absolute;
  }
}
.sec-target-person .grid-container .target-person-cont .wrap-checkbox .checkbox:before {
  transition: all 0.2s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.sec-target-person .grid-container .target-person-cont .wrap-checkbox .checkbox:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.sec-target-person .grid-container .target-person-cont .wrap-checkbox .checkbox:checked:before {
  transform: translateY(-50%) rotate(-45deg);
  height: 0.5rem;
  border: 2px solid #1558A0;
  border-radius: 0;
  border-top-style: none;
  border-right-style: none;
}
.sec-target-person .grid-container .target-person-cont .wrap-checkbox .checkbox:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sec-target-person .grid-container .target-person-cont p {
  font-size: 16px;
  text-align: center;
}
@media (max-width: 640px) {
  .sec-target-person .grid-container .target-person-cont p {
    text-align: left;
  }
}
.sec-target-person .diagnosis-button-wrapper {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 12px;
}
.sec-target-person .diagnosis-button {
  background-color: #1558A0;
  color: #fff;
  border: none;
  padding: 8px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.sec-target-person .diagnosis-button:hover {
  opacity: 0.7;
}
.sec-target-person .percentage-wrapper {
  text-align: center;
}
.sec-target-person .percentage-text {
  text-align: center;
  font-size: 24px;
}
.sec-target-person .percentage-text span {
  color: #1558A0;
  font-size: 48px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.sec-target-person .percentage-text.animate span {
  animation: percentageChange 0.2s ease;
}
.sec-target-person .compatibility-comment {
  display: inline-block;
  background: #F2F6FB;
  border-radius: 4px;
  margin-top: 16px;
  padding: 12px 18px;
}
@keyframes percentageChange {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes checkDraw {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 12px;
  }
  50% {
    height: 24px;
    width: 12px;
  }
  100% {
    height: 24px;
    width: 12px;
  }
}

.sec-employee {
  margin-bottom: 72px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.sec-employee .area-interview .interview-swiper .swiper-slide > a {
  width: 100%;
}

.sec-employee .area-interview .flex-container,
.sec-other-jobs .area-interview .flex-container {
  align-items: flex-start;
}
@media (max-width: 768px) {
  .sec-employee .area-interview .flex-container,
  .sec-other-jobs .area-interview .flex-container {
    gap: 8px;
    flex-direction: column;
  }
  .sec-employee .area-interview .flex-container h2,
  .sec-other-jobs .area-interview .flex-container h2 {
    margin-bottom: 0;
  }
}
.sec-employee .area-interview .flex-container .button-link,
.sec-other-jobs .area-interview .flex-container .button-link {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .sec-employee .area-interview .flex-container .button-link,
  .sec-other-jobs .area-interview .flex-container .button-link {
    margin-bottom: 32px;
  }
}
.sec-employee .area-interview .interview-item .flex-container,
.sec-other-jobs .area-interview .interview-item .flex-container {
  align-items: center;
}
@media (max-width: 768px) {
  .sec-employee .area-interview .interview-item .flex-container,
  .sec-other-jobs .area-interview .interview-item .flex-container {
    flex-direction: row;
  }
}/*# sourceMappingURL=job-posts.css.map */