.block_businessJobs .business_contentsSet .flexBox--column {
  display: flex;
  flex-direction: column;
  gap: 84px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #CCCCCC;
}
.block_businessJobs .business_contentsSet .flexBox--column .title_tate {
  margin-bottom: 0;
}
.block_businessJobs .business_contentsSet .flexBox--column p {
  text-box-trim: trim-both;
}
.block_businessJobs .jobContents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.block_businessJobs .jobContents .recruit_infoLink {
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  height: 60px;
  position: relative;
}
.block_businessJobs .jobContents .recruit_infoLink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  width: 11px;
  height: 7px;
  background: url("../img/jobs/arrow_link.svg") no-repeat center/contain;
}
.block_businessJobs .list_jobCategories {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.block_businessJobs .list_jobCategories .jobCategory {
  display: flex;
  flex-direction: column;
}
.block_businessJobs .list_jobCategories .jobCategory > input {
  display: none;
}
.block_businessJobs .list_jobCategories .jobCategory > input:checked ~ label::after {
  background-image: url("../img/jobs/icon-minus.svg");
  rotate: 180deg;
}
.block_businessJobs .list_jobCategories .jobCategory > input:checked ~ .jobTags_wrap {
  grid-template-rows: 1fr;
}
.block_businessJobs .list_jobCategories .jobCategory > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0.72px;
}
.block_businessJobs .list_jobCategories .jobTags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 5px;
  padding-top: 20px;
}
.block_businessJobs .list_jobCategories .jobTags_wrap {
  display: grid;
  transition: grid-template-rows 0.3s ease;
}
.block_businessJobs .list_jobCategories .jobTags_inner {
  overflow: hidden;
}
.block_businessJobs .list_jobCategories .jobTags .jobTag > input {
  display: none;
}
.block_businessJobs .list_jobCategories .jobTags .jobTag > input:checked + label {
  background-color: #000;
  color: #fff;
}
.block_businessJobs .list_jobCategories .jobTags .jobTag > label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 13px;
  border: 1px solid #000;
  border-radius: 10rem;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.52px;
  text-box-trim: trim-both;
  cursor: pointer;
}
.block_businessJobs .list_jobList {
  display: grid;
  grid-template-columns: 1fr;
}
.block_businessJobs .list_jobList .jobItem {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  border-block: 1px solid #CCC;
  margin-top: -1px;
}
.block_businessJobs .list_jobList .jobItem_img {
  aspect-ratio: 320/213;
  max-width: 300px;
  margin: 0 auto 20px;
}
.block_businessJobs .list_jobList .jobItem_title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 1px;
  text-box-trim: trim-both;
  margin-bottom: 14px;
}
.block_businessJobs .list_jobList .jobItem_description {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.56px;
  text-align: left;
  text-box-trim: trim-both;
  margin-bottom: 20px;
}
.block_businessJobs .list_jobList .jobItem_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 20px;
}
.block_businessJobs .list_jobList .jobItem_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid #000;
  border-radius: 10rem;
  font-size: 13px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: normal;
  text-box-trim: trim-both;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.block_businessJobs .list_jobList .jobItem_tag.is-active {
  background-color: #000;
  color: #fff;
}
.block_businessJobs .list_jobList .jobItem_link {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  margin: auto auto 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .block_businessJobs .list_jobCategories .jobCategory > label::after {
    content: "";
    width: 38px;
    height: 38px;
    background: url("../img/jobs/icon-plus.svg") no-repeat center center/contain;
    transition: background-image 0.3s ease, rotate 0.3s ease;
  }
  .block_businessJobs .list_jobCategories .jobTags_wrap {
    grid-template-rows: 0fr;
  }
}
@media screen and (min-width: 768px) {
  .block_businessJobs .business_contentsSet .flexBox--column {
    gap: 98px;
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
  .block_businessJobs .jobContents .recruit_infoLink:hover::after {
    filter: invert(1);
  }
  .block_businessJobs .list_jobCategories {
    gap: 50px;
  }
  .block_businessJobs .list_jobCategories .jobCategory > label {
    pointer-events: none;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.8px;
  }
  .block_businessJobs .list_jobCategories .jobTags {
    gap: 15px 10px;
  }
  .block_businessJobs .list_jobList {
    grid-template-columns: repeat(2, 1fr);
    margin-right: -1px;
  }
  .block_businessJobs .list_jobList .jobItem {
    border-inline: 1px solid #CCC;
    margin-left: -1px;
  }
  .block_businessJobs .list_jobList .jobItem_link {
    transition: transform 0.5s;
    overflow: hidden;
  }
  .block_businessJobs .list_jobList .jobItem_link span {
    display: flex;
    position: relative;
    transition: transform 0.5s;
  }
  .block_businessJobs .list_jobList .jobItem_link span::after {
    content: attr(data-item);
    position: absolute;
    left: 0;
    bottom: -1.8em;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: opacity 0.5s ease 0.2s;
  }
  .block_businessJobs .list_jobList .jobItem_link:hover span {
    transform: translateY(-1.8em);
  }
  .block_businessJobs .list_jobList .jobItem_link:hover span::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1200px) {
  .block_businessJobs .list_jobList {
    grid-template-columns: repeat(3, 1fr);
  }
  .block_businessJobs .list_jobList .jobItem {
    padding: 40px;
  }
  .block_businessJobs .jobPopover_close {
    width: 46px;
    height: 46px;
    right: auto;
    left: calc(100% + 14px);
    top: -14px;
  }
  .block_businessJobs .jobContents {
    gap: 80px;
  }
  .block_businessJobs .jobContents .recruit_infoLink {
    max-width: 378px;
    height: 80px;
  }
  .block_businessJobs .jobContents .recruit_infoLink::after {
    right: 30px;
  }
}

.fancybox__slide.has-close-btn {
  padding: 50px 25px 25px;
}
.fancybox__navs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fancybox__nav {
  all: unset;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0.64px;
  text-box-trim: trim-both;
  text-decoration: underline;
  text-underline-offset: 2px;
  position: relative;
}
.fancybox__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: inline-flex;
  width: 7px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.fancybox__nav--prev {
  padding-left: 17px;
}
.fancybox__nav--prev::before {
  left: 0;
  background-image: url("../img/jobs/arrow_prev.svg");
}
.fancybox__nav--next {
  padding-right: 17px;
}
.fancybox__nav--next::before {
  right: 0;
  background-image: url("../img/jobs/arrow_next.svg");
}

.f-button.is-close-button {
  top: -8px;
  right: 0;
  translate: 0 -100%;
  width: 23px;
  height: 23px;
  background: url("../img/jobs/icon-close.svg") no-repeat center/contain;
}
.f-button.is-close-button svg {
  display: none;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 1200px) {
  .f-button.is-close-button {
    right: auto;
    left: calc(100% + 14px);
    top: -14px;
    width: 46px;
    height: 46px;
  }
}

.f-button.is-arrow {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.f-html {
  width: 100%;
  max-width: 1055px;
  padding: 30px 30px 40px;
}
.f-html_img {
  display: block;
  aspect-ratio: 320/213;
  margin: 0 auto 10px;
}
.f-html_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 1.1px;
  text-box-trim: trim-both;
  text-align: center;
}
.f-html_description {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.56px;
  text-box-trim: trim-both;
  text-align: left;
}
@media (max-width: 767px) {
  .f-html_img {
    max-width: 270px;
  }
  .f-html_title {
    margin-bottom: 20px;
  }
  .f-html_description {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .f-html {
    padding-block: 80px 50px;
  }
  .f-html_top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
  }
  .f-html_header {
    display: flex;
    flex-direction: column;
  }
  .f-html_description {
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0.64px;
  }
}
@media (min-width: 1200px) {
  .f-html {
    padding-inline: 70px 100px;
  }
}

body:has(.jobPopover:popover-open) {
  overflow: hidden;
  overscroll-behavior-y: none;
  touch-action: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}/*# sourceMappingURL=style_jobs.css.map */