@charset "UTF-8";
:root {
  --red: #c71918;
  --gray: #aaabab;
  --blk: #333;
  --line: #d9d9d9;
  --serif: "noto-serif-jp", serif;
}
/*=======================================================
container
=======================================================*/
.container {
  width: 1080px;
  margin: 0 auto;
}
.narrow {
  width: 940px;
}
/*=======================================================
よくある条件から探す
=======================================================*/
.section-title {
  display: table;
  margin: 0 auto 50px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  background: linear-gradient(transparent 68%, #eee 68%);
}
.bottom-search {
  padding: 118px 0 150px;
}
.condition-block {
  --condition-heading-height: 30px;
  position: relative;
  margin-top: calc(var(--condition-heading-height) + 20px);
  padding: 17px 14px 15px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
}
.condition-block + .condition-block {
  margin-top: calc(var(--condition-heading-height) + 60px);
}
.condition-block h3 {
  position: absolute;
  left: 0;
  top: calc((var(--condition-heading-height) + 20px) * -1);
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  background: #fff;
}
.condition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  font-size: 14px;
  line-height: 1.65;
}
.condition-tags a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.area-list {
  display: grid;
  gap: 9px;
  font-size: 14px;
  line-height: 1.65;
}
.area-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
}
.area-row b {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 8px;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  background: #999;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.area-row p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin: 0;
}
.area-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.case .bottom-search,
.voice .bottom-search {
  padding-top: 150px;
}
.case .section-title,
.voice .section-title,
.recruit .section-title,
.recruit-single .section-title {
  display: block;
  width: fit-content;
  margin: 0 0 calc(var(--condition-first-heading-height, 30px) + 80px);
  font-size: 32px;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
}
/*=======================================================
検索条件サイドバー
=======================================================*/
.recruit-search {
  padding: 30px 40px;
  margin-bottom: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}
.recruit-search > h2,
.recruit-search > h3 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.recruit-search .search-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 20px;
}
.recruit-search .search-row select {
  appearance: none;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background: #fff url("../images/top/select-arrow.svg") no-repeat right 16px
    center/12px 8px;
}
.recruit-search .condition-title {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}
.recruit-search .preferences {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 20px 71px;
  border: 1px solid var(--gray);
  border-radius: 4px;
}
.recruit-search .preferences-heading {
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 120%;
}
.recruit-search .preferences-content {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.recruit-search .preferences-content::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 71px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 100%);
}
.recruit-search .preferences.is-open .preferences-content {
  max-height: 2000px;
}
.recruit-search .preferences.is-open .preferences-content::after {
  opacity: 0;
}
.recruit-search .preferences.is-open .preferences-toggle::after {
  transform: rotate(180deg);
}
.recruit-search .preferences .preferences-group + .preferences-group {
  margin-top: 18px;
}
.recruit-search .preferences-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 20px;
}
.recruit-search .preferences-grid label {
  display: flex;
  gap: 5px;
  align-items: center;
  min-width: 0;
  font-size: 14px;
  line-height: 120%;
  cursor: pointer;
}
.recruit-search .preferences input[type="checkbox"] {
  appearance: none;
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transform: translateY(0.5px);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.recruit-search .preferences input[type="checkbox"]:checked {
  background-color: var(--red);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 9.2 7.5 12l6-6' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #ce2825 0%, #981613 100%);
}
.recruit-search .preferences input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.recruit-search .preferences-toggle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 2;
  width: max-content;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.recruit-search .preferences-toggle:after {
  border-bottom: none;
  border-right: none;
  content: "";
  display: block;
  width: 16px;
  height: 5.71px;
  margin: 10px auto 0;
  transform: rotate(0);
  background: center no-repeat url("../images/common/icon_more.png");
  background-size: cover;
}
.recruit-search .preferences-toggle:active {
  transform: translateX(-50%) translateY(1px);
}
.recruit-search input[type="search"] {
  appearance: none;
  display: block;
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
  padding: 0 20px;
  color: var(--blk);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background-color: #fff;
}
.recruit-search .search-submit {
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  height: 55px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 100%;
}
.recruit-search .search-submit img {
  width: 100%;
}
@media (hover: hover) {
  .recruit-search .search-submit:hover {
    background: center top url("../images/recruit/search_btn02_hover.png");
    background-size: cover;
    opacity: 1;
  }
  .recruit-search .search-submit:hover img {
    opacity: 0;
  }
}
/*=======================================================
サイドバー共通シェル
=======================================================*/
.lower aside img {
  width: 100%;
}
.lower aside > div + div,
.lower aside > div a {
  margin-top: 10px;
}
.lower aside > div:not(.anchor-links, .yt-anchor, .banner) {
  padding: 20px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background: #fff;
}
.lower aside > div > h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  text-align: center;
}
/*=======================================================
評判・口コミ
=======================================================*/
.lower aside .aside-voice li {
  padding: 12px 0;
  border-top: 1px solid var(--gray);
}
.lower aside .aside-voice-name {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
}
.lower aside .aside-voice-name:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: center no-repeat url("../images/common/aside_voice_icon.png");
  background-size: cover;
}
.lower aside .aside-voice-text {
  display: -webkit-box;
  margin-top: 6px;
  font-size: 12px;
  line-height: 120%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}
.lower aside .aside-voice-more {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: fit-content;
  height: 27px;
  margin: 0 auto;
  padding: 0 14px;
  font-size: 14px;
  border: 1px solid var(--gray);
  border-radius: 13.5px;
}
.lower aside .aside-voice-more:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: center no-repeat url("../images/common/icon_arrow_left02.png");
  background-size: cover;
}
/*=======================================================
転職事例解説・ジャーナル
=======================================================*/
.lower aside .aside-case li,
.lower aside .aside-journal li {
  padding: 20px 0;
  border-top: 1px solid var(--gray);
}
.lower aside .aside-case li h4,
.lower aside .aside-journal li h4 {
  display: -webkit-box;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.lower aside .aside-case02 li {
  padding: 10px 0;
}
.lower aside .aside-case02 li a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
.lower aside .aside-case02 li img {
  flex-shrink: 0;
  width: 90px;
}
.lower aside .aside-case02 li h4 {
  display: block;
  margin-top: 0;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
/*=======================================================
条件から求人を探す（こだわり／業種タグ）
=======================================================*/
.lower aside .aside-recruit-tags .aside-recruit-tags-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px 14px;
}
.lower aside .aside-recruit-tags .aside-recruit-tags-wrapper a {
  margin-top: 0;
  padding: 5px 0 7px;
  font-size: 14px;
  line-height: 1;
  border-bottom: 1px solid var(--blk);
}
/*=======================================================
YouTube・相談採用リンク・バナー
=======================================================*/
.lower aside .yt-anchor a {
  background: center no-repeat url("../images/common/aside_yt_btn_hover.png");
  background-size: cover;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    -webkit-transform 0.28s ease;
}
.lower aside .yt-anchor a picture {
  width: 100%;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .lower aside .yt-anchor a:hover {
    opacity: 1 !important;
    transform: translateY(-1px);
  }
  .lower aside .yt-anchor a:hover picture {
    opacity: 0;
  }
}
.lower aside .anchor-links a {
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.lower aside .anchor-links a + a {
  margin-top: 10px;
}
.lower aside .yt-anchor,
.lower aside .anchor-links,
.lower aside .banner {
  margin-top: 20px;
}
.lower aside .yt-anchor a,
.lower aside .anchor-links a,
.lower aside .banner a {
  display: block;
}
/*=======================================================
aside内の検索条件サイドバー上書き
=======================================================*/
.lower aside .recruit-search .search-row {
  gap: 10px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}
.lower aside .recruit-search .condition-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 14px;
  text-align: center;
}
.lower aside .recruit-search .preferences {
  margin-bottom: 20px;
  padding: 14px 15px 65px;
  position: relative;
}
.lower aside .recruit-search .preferences-heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}
.lower aside .recruit-search .preferences-content::after {
  height: 41px;
}
.lower aside .recruit-search .preferences-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
.lower aside .recruit-search .preferences-toggle {
  bottom: 16px;
  font-size: 14px;
}
.lower aside .recruit-search .search-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.lower aside .recruit-search .search-submit picture,
.lower aside .recruit-search .search-submit img {
  display: block;
  max-width: unset;
  width: auto;
  height: 100%;
}
/*=======================================================
SP
=======================================================*/
@media screen and (max-width: 767px) {
  .lower .bottom-search {
    padding: 100px 0;
  }
  .lower .bottom-search .narrow {
    max-width: calc(100vw - 40px);
  }
  .section-title {
    margin-bottom: 34px;
    font-size: 25px;
  }
  .condition-block {
    padding: 18px 16px 20px;
  }
  .area-list {
    gap: 14px;
    font-size: 14px;
  }
  .area-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .area-row b {
    width: 100%;
    font-size: 14px;
  }
  .area-row p {
    gap: 6px 14px;
  }
  .case .bottom-search,
  .voice .bottom-search {
    padding-top: 100px;
  }
  .case .section-title,
  .voice .section-title,
  .recruit .section-title,
  .recruit-single .section-title {
    margin: 0 auto calc(var(--condition-first-heading-height, 30px) + 60px);
    text-align: center;
    background: linear-gradient(transparent 87%, #eee 0);
  }
  .lower aside .aside-case li,
  .lower aside .aside-journal li {
    padding: 20px 0;
  }
  .lower aside .aside-case li a,
  .lower aside .aside-journal li a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  .lower aside .aside-case li img,
  .lower aside .aside-journal li img {
    flex-shrink: 0;
    width: 176px;
  }
  .lower aside .aside-case li h4,
  .lower aside .aside-journal li h4 {
    display: block;
    margin-top: 0;
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    line-height: 160%;
  }
  .lower aside .aside-case02 li {
    padding: 20px 0;
  }
  .lower aside .aside-case02 li a {
    gap: 20px;
  }
  .lower aside .aside-case02 li img {
    flex-shrink: 0;
    width: 176px;
  }
  .lower aside .aside-case02 li h4 {
    line-height: 160%;
  }
  .lower aside .anchor-links,
  .lower aside .banner {
    max-width: 88.8888888889%;
    margin-right: auto;
    margin-left: auto;
  }
  .recruit-search {
    padding: 30px 15px;
  }
  .recruit-search .search-row {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
  .recruit-search .preferences-heading {
    font-size: 16px;
  }
  .recruit-search .preferences-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruit-search .search-submit {
    height: auto;
  }
  .lower aside .recruit-search .search-row {
    margin-bottom: 22px;
  }
  .lower aside .recruit-search .preferences-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lower aside .recruit-search .search-submit picture,
  .lower aside .recruit-search .search-submit img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .area-row b {
    width: fit-content;
    min-width: 132px;
  }
}
