#breadcrumbs {
  position: relative;
  z-index: 1;
  height: 228px;
}
#info {
  background-color: var(--background-color-lightgray);
}
.info-container {
  padding-bottom: 120px;
}

.info-wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 58px;
}
.info-side-wrap {
  width: max-content;
  position: sticky;
  top: 0;
  margin-top: -90px;
  padding: 150px 0 60px;
}
.info-side-title {
  margin-bottom: 17px;
}
.info-work-title {
  font-weight: bold;
}
.place-name {
  font-size: 1.4rem;
  line-height: 28px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.place-name::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #afddd5;
}
.info-notice {
  display: block;
  color: var(--secondary-color-red);
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  margin: 18px 0;
}

/* main */
.info-main-wrap {
  margin-top: 70px;
  background-color: var(--secondary-color-white);
  padding: 52px 60px;
  border-radius: 12px;
  box-shadow: 0px 0px 8px 0px rgba(39, 65, 104, 0.2);
  max-width: 820px;
  margin-bottom: 60px;
}
.info-list {
  margin-bottom: 43px;
}
.info-list:last-of-type {
  margin-bottom: 0;
}
.info-list-item {
  font-weight: bold;
  padding-bottom: 11px;
  border-bottom: solid 1px;
  border-image: linear-gradient(
    to right,
    #73c6be 0%,
    #4d8393 60%,
    #274168 100%
  );
  border-image-slice: 1;
}
.info-list-detail {
  margin-top: 13px;
}
.info-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 172px;
  height: 44px;
  border-radius: 40px;
  background: linear-gradient(to right, #dbeeeb 0%, #73c6be 100%);
  font-size: 1.4rem;
  line-height: 28px;
  font-weight: bold;
  margin-top: 8px;
}
.info-list a::after {
  width: 10px;
  height: 10px;
  background-image: url(/common/img/arrow_navy.png);
  background-size: cover;
  transform: translate(-50%, -50%) rotate(90deg);
  right: 10%;
}
.info-list a::before {
  width: 10px;
  height: 10px;
  background-image: url(/common/img/arrow_navy.png);
  background-size: cover;
  transform: translate(-50%, -50%) rotate(90deg);
}
.info-list a:hover::before {
  right: 10%;
}
.return-recruit-top-button {
  max-width: 287px;
  margin: 0 auto;
}

.job-info .job-wrap::before {
  background-color: var(--background-color-lightgray);
}
@media screen and (max-width: 1023px) {
  #breadcrumbs {
    height: 180px;
  }
  .breadcrumbs {
    left: 4.5%;
  }
  .info-wrap {
    display: block;
  }
  .info-container {
    padding-bottom: 80px;
  }
  .info-side-wrap {
    position: static;
    margin-top: 0;
    padding: 35px 0 0 0;
  }
  .info-side-title {
    margin-bottom: 13px;
  }
  .info-main-wrap {
    margin: 24px auto 40px;
    padding: 20px;
  }
  .info-list {
    margin-bottom: 50px;
  }
  .info-list-item {
    padding-bottom: 5px;
  }
  .info-list-detail {
    margin-top: 8px;
  }
}
