/* .main-wrap {
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-wrap {
    width: auto;
    padding: 0 16px;
  }
} */

.main-wrap-left {
  display: none;
}

.search {
  position: relative;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .05);
  overflow: hidden;
  margin: -40px 0 80px;
  z-index: 5;
}
.search-wrap {
  overflow: inherit;
}
.search-box {
  padding: 24px 40px 0;
}
.search-head {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
}
.ttl {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 24px 0 0;
}
.ttl img {
  flex: 0 0 25px;
  margin: 0 16px 0 0;
}
.txt {
  flex: 1;
  font-size: 12px;
  color: #6D7175;
}
.search-main {
  display: flex;
  gap: 0 16px;
}
.search-select-item {
  position: relative;
  flex: 1;
}
.search-select-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #6D7175;
  border-bottom: 1px solid #6D7175;
  transform: translateY(-50%) rotate(45deg);
  margin-top: -2px;
}
.search-select-item select {
  width: 100%;
  height: 46px;
  font-size: 14px;
  font-weight: 400;
  color: #202223;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 0 40px 0 16px;
  -webkit-appearance: none;
  appearance: none;
}
.search-select-button {
  flex: 0 0 180px;
}
.search-select-button button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  border: 1px solid #5985B7;
  border-radius: 3px;
  background: #5985B7;
  padding: 0 24px;
  transition: .3s;
}
.search-select-button button::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('/front/assets/img/common/search_FILL1_wght400_GRAD0_opsz48.png');
  background-size: 20px;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  margin: 0 12px 0 0;
  transition: .3s;
}
.search-input {
  display: none;
  position: relative;
  padding: 40px 0 0;
  margin: 40px 0 0;
}
.is-open .search-input {
  display: block;
}
.search-input::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  left: -100vw;
  height: 1px;
  background: #E6E6E6;
}
.search-input-item + .search-input-item {
  margin: 40px 0 0;
}
.search-input-ttl {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 12px;
}
.search-input-detail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.search-input-detail-item {
  position: relative;
}
.search-input-detail-item input {
  opacity: 0;
  position: absolute;
  left: 0;
}
.search-input-detail-item label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  border: 1px solid #E6E6E6;
  border-radius: 9999px;
  background: #fff;
  margin-left: 0;
  padding: 8px;
  cursor: pointer;
}
.search-input-detail-item input:checked + label {
  color: #fff;
  border-color: #5985B7;
  background: #5985B7;
}
.search-input-detail-item input:focus-visible + label {
  outline: 2px solid #333;
}
.search-btn-wrap {
  background: #E0EEFD;
  padding: 32px;
  margin: 40px -40px 0;
}
.search-btn-toggle-off {
  display: flex;
  justify-content: center;
  align-items: center;
}
form.is-open .search-btn-toggle-off {
  display: none;
}
.search-btn-toggle-off button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  font-size: 14px;
  font-weight: 400;
  color: #5985B7;
  border: 1px solid #CCDAE8;
  border-radius: 3px;
  background: #fff;
  padding: 10px 24px;
  transition: .3s;
}
.search-btn-toggle-off button span {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 100%;
  background: #5985B7;
  margin: 0 12px 0 0;
}
.search-btn-toggle-off button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 2px;
  height: 10px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.search-btn-toggle-off button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.search-btn-toggle-on {
  display: none;
}
form.is-open .search-btn-toggle-on {
  display: block;
}
.search-btn-toggle-on ul {
  display: flex;
  gap: 0 20px;
  max-width: 660px;
  margin: 0 auto;
}
.search-btn-toggle-on ul li {
  width: 100%;
}
.search-btn-toggle-on ul li button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  padding: 10px 24px;
  transition: .3s;
}
.search-btn-toggle-on ul li button.close {
  color: #6D7175;
  border: 1px solid #CCDAE8;
  background: #fff;
}
.search-btn-toggle-on ul li button.close span {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 100%;
  background: #6D7175;
  margin: 0 12px 0 0;
}
.search-btn-toggle-on ul li button.close span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 2px;
  height: 10px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.search-btn-toggle-on ul li button.close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.search-btn-toggle-on ul li button.search-selection-btn {
  color: #fff;
  border: 1px solid #5985B7;
  background: #5985B7;
}
.search-btn-toggle-on ul li button.search-selection-btn::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url({@icon-search@});
  background-size: 20px;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  margin: 0 12px 0 0;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .search-select-button button:hover {
    color: #5985B7;
    background: #fff;
  }
  .search-select-button button:hover::before {
    filter: none;
  }
  .search-btn-toggle-off button:hover {
    color: #fff;
    background: #5985B7;
  }
  .search-btn-toggle-on ul li button.close:hover {
    color: #fff;
    background: #333;
    opacity: 1;
  }
  .search-btn-toggle-on ul li button.search-selection-btn:hover {
    color: #5985B7;
    background: #fff;
    opacity: 1;
  }
  .search-btn-toggle-on ul li button.search-selection-btn:hover::before {
    filter: none;
  }
}

@media screen and (max-width: 767px) {
  .search {
    margin: 0 -16px 40px;
  }
  .search-box {
    padding: 24px 16px 0;
  }
  .search-head {
    display: block;
    margin: 0 0 24px;
  }
  .ttl {
    margin: 0 0 14px;
  }
  .search-main {
    display: block;
  }
  .search-select-item + .search-select-item {
    margin: 16px 0 0;
  }
  .search-select-button {
    margin: 16px 0 0;
  }
  .search-select-button button {
    width: 100%;
  }
  .search-input {
    padding: 24px 0 0;
    margin: 24px 0 0;
  }
  .search-input-item + .search-input-item {
    margin: 20px 0 0;
  }
  .search-input-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 14px;
  }
  .search-btn-wrap {
    padding: 24px 16px;
    margin: 24px -16px 0;
  }
  .search-btn-toggle-off button {
    min-width: inherit;
    width: 100%;
  }
  .search-btn-toggle-on ul {
    flex-direction: column-reverse;
    max-width: inherit;
  }
  .search-btn-toggle-on ul li + li {
    margin: 0 0 16px;
  }
}

/*
【トップ】最新の求人情報
*/

.recruitment {
  margin: 0 0 80px;
}
.recruitment .ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 40px;
}
.recruitment-li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 0 56px;
}
.recruitment-item a {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  padding: 0 24px 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}
.article-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0 0 24px;
  order: 2;
}
.article-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 16px;
  order: 2;
}
.article-ttl span {
  background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
  transition: background .3s;
}
.article-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0 0 16px;
  order: 1;
}
.article-cat {
  font-size: 12px;
  color: #5985B7;
}
.article-date {
  font-size: 12px;
  color: #B2B2B2;
}
.article-facility {
  display: flex;
  align-items: center;
  gap: 4px 16px;
  margin: 0 0 15px;
  order: 3;
}
.article-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 0 0 8px;
  order: 3;
}
.article-type-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6D7175;
}
.article-type-item img {
  flex: 0 0 16px;
  margin: 0 8px 0 0;
}
.article-money {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6D7175;
  order: 4;

}
.article-money img {
  flex: 0 0 14px;
  margin: 0 8px 0 0;
}
.article-type span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.article-money span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* overflow: hidden; */
  /* display: block; */
  white-space: break-spaces;
  text-overflow: ellipsis;
  max-width: 250px;
}
.article-img {
  overflow: hidden;
  margin: 0 -24px 24px;
  order: 1;
}
.article-img img {
  width: 100%;
  transition: .3s;
}
.article-btn {
  font-size: 12px;
  font-weight: 700;
  color: #5985B7;
  text-align: center;
  border: 1px solid #5985B7;
  border-radius: 9999px;
  background: #fff;
  padding: 10px 24px;
  transition: .3s;
  order: 3;
}
.btn {
  text-align: center;
}
.btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #E6E6E6;
  border-radius: 9999px;
  background: #fff;
  padding: 10px 24px 10px 42px;
  color: #5985B7;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #5985B7;
  border-right: 1px solid #5985B7;
  transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}

.btn a:hover {
  background-color: #5a86b5 !important;
}

@media screen and (min-width: 768px) {
  .recruitment-item a:hover .article-ttl span {
    background-size: 100% 1px;
  }
  .recruitment-item a:hover .article-img img {
    transform: scale(1.1);
  }
  .recruitment-item a:hover .article-btn {
    color: #fff;
    background: #5985B7;
  }
  .btn a:hover {
    color: #fff;
    background: #333;
  }
  .btn a:hover::before {
    border-color: #fff;
  }
}
/* @media screen and (max-width: 1200px) {
  .recruitment-li {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 24px;
  }
} */
@media screen and (max-width: 767px) {
  .recruitment {
    margin: 0 0 40px;
  }
  .ttl {
    text-align: center;
    margin: 0 0 24px;
  }
  .recruitment-li {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin: 0 0 24px;
  }
  .btn a {
    display: flex;
    min-width: inherit;
  }
  .recruitment .ttl {
    display: block;
  }
  .btn a:hover::before {
    border-color: #fff;
  }
  .btn a:hover {
    color: #fff;
    background: #333;
  }
}