@charset 'utf-8';

main {
  margin: 0 1rem;
}

main .h-left-border {
  margin-bottom: 15px;
}

/* -------------------------------------------------------------------------- */
/* nav.genres */
/* -------------------------------------------------------------------------- */
main nav.genres {
  margin-bottom: 10px;
  background: linear-gradient(#9f7f4d, #633f1a);
}
main nav.genres ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}
main nav.genres ul li {
  display: block;
}
main nav.genres ul li a {
  display: inline-block;
  padding: 0.7rem 0.5rem;
  color: #fff;
}
main nav.genres ul li.active a,
main nav.genres ul li a:hover {
  background: linear-gradient(#efd28b, #db9717);
  color: #6b3a0c;
  font-weight: bold;
  text-decoration: none;
}
/* スマホでは横スクロール表示 */
@media (max-width: 991px) {
  main nav.genres ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
  main nav.genres ul li {
    flex: 0 0 auto;
  }
}

/* -------------------------------------------------------------------------- */
/* nav.areas */
/* -------------------------------------------------------------------------- */
main nav.areas {
  margin-bottom: 15px;
}
main nav.areas ul {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-bottom: 5px solid #f29500;
}
main nav.areas ul li {
  margin-top: 5px;
  margin-right: 0.5rem;
}
main nav.areas ul li a {
  display: inline-block;
  padding: 0.8rem 1rem 0.5rem;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background: linear-gradient(#faf5ee, #fdf5e9, #f6e9d7);
  color: #a98049;
}
main nav.areas ul li.active a,
main nav.areas ul li:hover a {
  background: linear-gradient(#f29700, #fcd58a, #f29500);
  color: #6b3a0c;
  text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* .recruit-count */
/* -------------------------------------------------------------------------- */
.recruit-count {
  margin-bottom: 15px;
}

/* -------------------------------------------------------------------------- */
/* .recruits */
/* -------------------------------------------------------------------------- */
.recruits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% / 2 - 7px);
  margin-bottom: 15px;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 7px;
}
/* スマホでは2列表示を解除 */
@media (max-width: 991px) {
  .recruits {
    display: block;
  }
  .recruit {
    width: auto;
  }
}
/* 雇用形態 */
.recruit .type {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-weight: bold;
}
.recruit .type.employee {
  background-color: #03c;
  color: #fff;
}
.recruit .type.part-time {
  background-color: #c30;
  color: #fff;
}
.recruit .type.other {
  background-color: #3d8d00;
  color: #fff;
}
/* 職種 */
.recruit .job-name {
  font-size: 2rem;
  font-weight: bold;
}
/* 掲載店名 */
.recruit .shop-name {
  margin-bottom: 1rem;
}
.recruit .shop-name a {
  color: #777;
}
/* 店舗写真とPR文 */
.recruit .shop-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.recruit .shop-info .photo {
  width: 105px;
}
.recruit .shop-info .photo img {
  border-radius: 4px;
}
.recruit .shop-info .pr {
  width: calc(100% - 105px - 1rem);
  box-sizing: border-box;
  padding: 1.2rem;
  background: #faf5ee;
  border-radius: 4px;
  color: #6b3a0c;
}
/* 求人詳細 */
.recruit table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.recruit table th {
  width: 5rem;
  color: #ed6d00;
  font-weight: bold;
  letter-spacing: .1rem;
  white-space: nowrap;
}
.recruit table th,
.recruit table td {
  padding: 1.2rem;
  border-top: 1px dashed #6b3a0c;
  border-bottom: 1px dashed #6b3a0c;
  font-size: 1.2rem;
  text-align: left;
}
/* 詳細を見るボタン */
.recruit a.to-detail {
  display: block;
  padding: 1rem;
  background: #337ab7;
  color: #fff;
  text-align: center;
}
.recruit a.to-detail .glyphicon {
  margin-right: 0.5rem;
}
.recruit a.to-detail:hover {
  background: #23527c;
}

/* -------------------------------------------------------------------------- */
/* .sorry (募集中の求人情報なし) */
/* -------------------------------------------------------------------------- */
.sorry {
  text-align: center;
  margin: 5rem 0;
}
.sorry img {
  margin-bottom: 0.5rem;
}
