@charset "UTF-8";
/* ==========================================================================
   Variables - 変数定義ファイル
   ========================================================================== */
/* ==========================================================================
   TOP Page - Mobile First Style Sheet (Base: SP & Tablet ~1024px)
   ========================================================================== */
#wrapper {
  background-color: #edf2f7;
}

/* 1. Base / Reset Styles
   -------------------------------------------------------------------------- */
h1 {
  margin: 0 auto;
  max-width: 1120px;
  font-size: 1.1rem;
  color: #666666;
  padding: 0;
  text-align: left;
}

.js-image-switch {
  /* display: none; */
}

/* 2. Information Block
   -------------------------------------------------------------------------- */
.infomation-wrap {
  background: #f6f6f6;
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 1rem;
}
@media screen and (min-width: 1025px) {
  .infomation-wrap {
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
  }
}

/* 3. Main Visual (MV) Wrap & Search Card
   -------------------------------------------------------------------------- */
.mv-wrap {
  position: relative;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 4rem;
  background-color: #004680;
  background: -webkit-gradient(linear, left top, right bottom, from(#6dd1ff), color-stop(30%, #3c99d6), color-stop(50%, #176db4), color-stop(70%, #055091), color-stop(90%, #004680));
  background: linear-gradient(to bottom right, #6dd1ff, #3c99d6 30%, #176db4 50%, #055091 70%, #004680 90%);
}
@media screen and (min-width: 768px) {
  .mv-wrap {
    margin-bottom: 10rem;
  }
}
.mv-wrap .inner-wrap {
  background-color: #f4f4f4;
}
.mv-wrap-inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mv-wrap-inner {
    margin-bottom: -4rem;
    max-width: 836px;
  }
}
.mv-wrap-txt {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 100%;
  color: #dce4ef;
}
@media screen and (min-width: 768px) {
  .mv-wrap-txt {
    bottom: 8rem;
    left: 0;
    -webkit-transform: none;
            transform: none;
    text-align: left;
    width: auto;
  }
}
.mv-wrap-txt-p {
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(0, 70, 128, 0.6), 0 0 4px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .mv-wrap-txt-p {
    font-size: 3rem;
  }
}
.mv-wrap-txt-p sup {
  font-size: 1rem;
  font-weight: normal;
}
.mv-wrap-txt-sub-p {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .mv-wrap-txt-sub-p {
    font-size: 1.8rem;
  }
}
.mv-wrap .note {
  color: #a7bcd6;
  font-size: 1.2rem;
  line-height: 1.2;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .mv-wrap .note {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    bottom: 3rem;
  }
}

.mv-search-wrap {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mv-search-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 90vw;
  bottom: -2rem;
}
@media screen and (min-width: 768px) {
  .mv-search-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2.5rem;
    padding: 3rem 3.5rem;
  }
}

/* 各入力項目 */
.mv-search-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}
.mv-search-item .mv-search-label {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 0.8rem;
  border: none;
}
.mv-search-item .select-wrap {
  position: relative;
  width: 100%;
}
.mv-search-item .select-wrap select {
  width: 100%;
  height: 4rem;
  padding: 0 3rem 0 0.5rem;
  color: #333333;
  background: transparent;
  border: none;
  border-bottom: 2px solid #b2b2b2;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-size: 1.8rem;
}
.mv-search-item .select-wrap select:focus {
  border-bottom: 2px solid #004680;
  bottom: -2px;
}
.mv-search-item .select-wrap::after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.6rem;
  color: #999999;
  pointer-events: none;
}

/* 検索ボタン */
.btn-search {
  width: 100%;
  height: 4.8rem;
  background-color: #0085ff;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-search:hover {
  background-color: #0066cc;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .btn-search {
    width: 130px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

/* 4. Viewed List (最近チェックした求人)
   -------------------------------------------------------------------------- */
.viewed-list-wrap {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .viewed-list-wrap {
    margin-bottom: 10rem;
  }
}
.viewed-list-wrap .viewed-list-ttl {
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1025px) {
  .viewed-list-wrap .viewed-list-ttl {
    font-size: 2.4rem;
  }
}

.viewed-list .viewed-item .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.viewed-list .viewed-item .slick-slide {
  padding: 0 6px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.viewed-list .viewed-item .slick-slide > div {
  height: 100%;
}
.viewed-list .viewed-item .slick-prev {
  left: -1.5rem;
  z-index: 999;
}
.viewed-list .viewed-item .slick-prev::before {
  content: "\f104";
}
.viewed-list .viewed-item .slick-next {
  right: -1.5rem;
  z-index: 999;
}
.viewed-list .viewed-item .slick-next::before {
  content: "\f105";
}
.viewed-list .viewed-item li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.viewed-list .viewed-thumb {
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
}
.viewed-list .viewed-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.viewed-list .viewed-thumb img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.viewed-list .viewed-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.4;
}
.viewed-list .viewed-txt .viewed-txt-type {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  display: inline-block;
  font-style: normal;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .viewed-list .viewed-txt .viewed-txt-type {
    font-size: 1.4rem;
  }
}
.viewed-list .viewed-txt .viewed-catch-txt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.viewed-item-unit {
  width: 100%;
}
.viewed-item-unit .viewed-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  padding: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none !important;
  color: #333333 !important;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
@media screen and (min-width: 1025px) {
  .viewed-item-unit .viewed-card {
    padding: 1.6rem 2rem;
  }
}
.viewed-item-unit .viewed-card:hover {
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
  color: #333333 !important;
}

.viewed-card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.viewed-item-unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.viewed-item-unit-bottom {
  margin-top: auto;
  padding-top: 1rem;
}
.viewed-item-unit-bottom .tag-icon-list-wrap {
  margin-bottom: 0.6rem;
}

.viewed-shop-name {
  font-size: 1.2rem;
  color: #666666;
}
@media screen and (min-width: 1025px) {
  .viewed-shop-name {
    font-size: 1.3rem;
  }
}

/* 5. Description Block
   -------------------------------------------------------------------------- */
.description-wrap {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .description-wrap {
    margin-bottom: 10rem;
  }
}
.description-wrap .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.description-wrap .description-wrap-ttl {
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
  width: 100%;
  font-size: 2.4rem;
  color: #004680;
}
@media screen and (min-width: 1025px) {
  .description-wrap .description-wrap-ttl {
    font-size: 3.6rem;
  }
}
.description-wrap .description-wrap-txt {
  line-height: 1.85;
}
@media screen and (min-width: 1025px) {
  .description-wrap .description-wrap-txt {
    font-size: 1.8rem;
  }
}

/* 6. Feature & Support Blocks
   -------------------------------------------------------------------------- */
.feature-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.feature-wrap .feature-wrap-ttl {
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .feature-wrap .feature-wrap-ttl {
    font-size: 2.4rem;
  }
}

.feature-unit,
.support-unit {
  border: 1px solid #b2b2b2;
  margin-top: 2rem;
}
.feature-unit a,
.support-unit a {
  color: #333333;
  display: block;
  overflow: hidden;
}
.feature-unit a:hover,
.support-unit a:hover {
  text-decoration: none;
}
.feature-unit a:hover img,
.support-unit a:hover img {
  opacity: 0.8;
}
.feature-unit img,
.support-unit img {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.feature-unit dl,
.support-unit dl {
  border-top: 1px solid #b2b2b2;
  padding: 1rem 2rem;
}
.feature-unit dl dt,
.support-unit dl dt {
  font-weight: bold;
}
.feature-unit dl dt i,
.support-unit dl dt i {
  color: #004680;
}
@media screen and (min-width: 1025px) {
  .feature-unit dl dt,
  .support-unit dl dt {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .feature-unit,
  .support-unit {
    width: calc(50% - 1rem);
    margin-left: 1rem;
    margin-top: 0;
  }
}

/* 7. Layout Main Structure
   -------------------------------------------------------------------------- */
.main {
  margin: 0 auto;
  max-width: 90vw;
}
@media screen and (min-width: 1025px) {
  .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1367px) {
  .main {
    max-width: 1440px;
  }
}

@media screen and (min-width: 1025px) {
  .top-content-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

/* 8. Strength Section (ハウスドゥチェーンの強み)
   -------------------------------------------------------------------------- */
.strength-wrap {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .strength-wrap {
    margin-bottom: 10rem;
  }
}
.strength-wrap .strength-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1025px) {
  .strength-wrap .strength-ttl {
    font-size: 2.4rem;
  }
}

.strength-card-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .strength-card-list {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.strength-card {
  background-color: #ffffff;
  border: 1px solid #b2b2b2;
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.strength-card:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.strength-card-thumb {
  margin: -2.5rem -2rem 2rem;
  width: calc(100% + 4rem);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 15px 15px 0 0;
}
.strength-card-thumb .strength-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.strength-card-thumb .strength-card-img[src=""], .strength-card-thumb .strength-card-img:not([src]) {
  opacity: 0;
}
.strength-card-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #004680;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.strength-card-ttl sup {
  font-size: 1rem;
  font-weight: normal;
  top: -0.5em;
}
.strength-card-txt {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.strength-card .btn-strength-more {
  width: 100%;
  display: inline-block;
  padding: 1rem 0;
  background-color: #004680;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.strength-card .btn-strength-more:hover {
  background-color: #002b76;
  text-decoration: none;
  color: #ffffff;
}

.strength-note {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #666666;
}

/* 9. FAQ Section (よくあるご質問 - 常時展開デザイン)
   -------------------------------------------------------------------------- */
.faq-wrap .faq-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1025px) {
  .faq-wrap .faq-ttl {
    font-size: 2.4rem;
  }
}

.faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #b2b2b2;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  padding: 2rem;
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 2rem;
}
.faq-question .faq-q-icon {
  font-size: 1.8rem;
  font-weight: bold;
  color: #004680;
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.4;
}
.faq-question .faq-question-txt {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .faq-question .faq-question-txt {
    font-size: 1.8rem;
  }
}

.faq-answer {
  display: block;
}
.faq-answer .faq-answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq-answer .faq-a-icon {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e95471;
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5;
}
.faq-answer .faq-answer-txt {
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.7;
}
@media screen and (min-width: 1025px) {
  .faq-answer .faq-answer-txt {
    font-size: 1.5rem;
  }
}

/* 10. Search Sidebar / List Wrap
   -------------------------------------------------------------------------- */
.search-list-wrap {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.2rem 2.4rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
@media screen and (min-width: 1025px) {
  .search-list-wrap {
    max-width: 280px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
  }
}

.search-block {
  margin-bottom: 2.6rem;
}
@media screen and (min-width: 1025px) {
  .search-block {
    margin-bottom: 4.8rem;
  }
}
.search-block:last-child {
  margin-bottom: 2rem;
}

.search-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #004680;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #b2b2b2;
  margin-bottom: 1.2rem;
}
.search-ttl i {
  font-size: 1.6rem;
  margin-right: 0.8rem;
  color: #004680;
}

.search-area-wrap > ul > li {
  margin-bottom: 0.8rem;
}
.search-area-wrap > ul > li:last-child {
  margin-bottom: 0;
}
.search-area-wrap .search-list-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 1.8rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.search-area-wrap .search-list-ttl:hover {
  color: #006ac9;
}
.search-area-wrap .search-list-ttl::before {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 0.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #999999;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.search-area-wrap .search-list-ttl.is-open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.search-area-wrap .search-list {
  display: none;
  padding: 0.4rem 0 0.4rem 1.8rem;
}
.search-area-wrap .search-list > li {
  margin-bottom: 0.4rem;
}
.search-area-wrap .search-list > li a {
  display: block;
  padding: 0.4rem 0;
  color: #666666;
  text-decoration: none;
}
.search-area-wrap .search-list > li a:hover {
  color: #fe5d16;
  text-decoration: underline;
}

.search-job-wrap .search-list,
.search-type-wrap .search-list,
.search-good-wrap .search-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.search-job-wrap .search-list > li,
.search-type-wrap .search-list > li,
.search-good-wrap .search-list > li {
  margin-bottom: 0.6rem;
}
.search-job-wrap .search-list > li:last-child,
.search-type-wrap .search-list > li:last-child,
.search-good-wrap .search-list > li:last-child {
  margin-bottom: 0;
}
.search-job-wrap .search-list > li a,
.search-type-wrap .search-list > li a,
.search-good-wrap .search-list > li a {
  display: block;
  padding: 0.4rem 0.5rem;
  color: #333333;
  text-decoration: none;
  line-height: 1.2;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.search-job-wrap .search-list > li a:hover,
.search-type-wrap .search-list > li a:hover,
.search-good-wrap .search-list > li a:hover {
  color: #006ac9;
}