@charset "UTF-8";

/*****************************
business
*****************************/
.busibox:not(:last-child) {
  margin-bottom: 10rem;
}
.busibox .imgbox {
  display: flex;
  justify-content: space-between;
  gap: 10vw;
  margin: 0 calc(50% - 50vw) 8rem;
  width: 100vw;
}
.busibox .imgbox .img:nth-child(2) {
  margin-top: 10rem;
}
.busibox .ttlbox2 {
  margin-top: -7rem;
  margin-bottom: 3rem;
}
.busibox .txtbox {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .busibox .imgbox {
    gap: 2vw;
  }
  .busibox .imgbox .img:nth-child(2) {
    margin-top: 7rem;
  }
}

/*****************************
interview
*****************************/
.catbox {
  margin: 5rem 0;
}
.catlist {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.catlist a {
  background: #fff;
  border: 1px solid #8FC224;
  display: block;
  opacity: 1;
  padding: .5rem 3rem .5rem 1rem;
  position: relative;
}
.catlist a:hover {
  background: #8FC224;
  color: #fff;
}
.catlist a::after {
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #8FC224;
  border-bottom: 0;
  content: '';
  top: 16px;
  right: 10px;
  position: absolute;
  height: 0;
  width: 0;
}
.catlist a:hover::after {
  border-top: 8px solid #fff;
}
.interviewlist > li:not(:last-child) {
  margin-bottom: 10rem;
}
.stafflist {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.stafflist li {
  width: calc(100% / 2 - 1rem);
}
.stafflist a {
  display: block;
  opacity: 1;
  overflow: hidden;
  position: relative;
}
.stafflist .imgbox {
  position: relative;
}
.stafflist .img {
  overflow: hidden;
  position: relative;
}
.stafflist .img::before {
  content: '';
  position: absolute;
  background-image: linear-gradient(90deg, #8FC224, #3ad8fc1a 25%, #03f4dc00 49%, #fff0 50%, #fff0);
  background-repeat: no-repeat;
  background-position: 0% center;
  background-size: 200% 100%;
  opacity: .5;
  top: 0;
  left: 50%;
  transition: background-position .3s ease;
  transform: translate(-50%);
  height: 100%;
  width: 100%;
  z-index: 1;
}
.stafflist a:hover img {
  transform: scale(1.1);
  transition: .5s;
}
.stafflist img {
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: top;
  transition: .5s;
  height: auto;
  width: 100%;
}
.stafflist .ja {
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem 1rem 1rem 6rem;
  width: 100%;
  z-index: 1;
}
.stafflist .ja::before {
  aspect-ratio: 28/31;
  background: #fff;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  mask-image: url(../../images/common/logomark.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  height: 35px;
  width: 35px;
}
@media only screen and (max-width: 1180px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 820px) {
  .stafflist .ja {
    padding: 1rem 1rem 1rem 5rem;
  }
  .stafflist .ja::before {
    height: 25px;
    width: 25px;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 767px) {
  .catlist {
    gap: 1rem;
  }
  .catlist li {
    width: calc(100% / 2 - .5rem);
  }
  .catlist a {
    font-size: 1.4rem;
  }
  .stafflist li {
    width: 100%;
  }
}