.jobbtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  height: 60px;
  width: 100%;
  border-radius: 100vmax;
  max-width: 480px;
  border: 2px solid #fed900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: #fed900;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: clamp(16px, 4vw, 20px);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .jobbtn {
    height: 50px;
  }
}
@media (any-hover: hover) {
  .jobbtn {
    -webkit-transition: ease 200ms;
    transition: ease 200ms;
  }
  .jobbtn:hover {
    color: #000;
    background-color: #fff;
  }
}

.jobSearch__ttl {
  text-align: center;
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .jobSearch__ttl {
    padding-top: 1.5em;
    margin-bottom: 1.5em;
    font-size: 2em;
  }
}
.jobSearch__inner {
  width: min(1080px, 100% - 20px);
  margin: 0 auto 0;
  border: 2px solid #000;
  padding: 80px min(100px, 8vw);
}
@media screen and (max-width: 640px) {
  .jobSearch__inner {
    padding: 25px 20px;
  }
}
.jobSearch__conditions .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 640px) {
  .jobSearch__conditions .row {
    display: block;
  }
}
.jobSearch__conditions .row:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid;
}
.jobSearch__conditions .row dt {
  margin: 0;
  width: 200px;
  padding-right: 20px;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  border-left: 10px solid #fed900;
  padding-left: 1em;
  margin-top: 0.5em;
}
@media screen and (max-width: 640px) {
  .jobSearch__conditions .row dt {
    width: 100%;
  }
}
.jobSearch__conditions .row dd {
  margin: 0;
  width: calc(100% - 200px);
}
@media screen and (max-width: 640px) {
  .jobSearch__conditions .row dd {
    width: 100%;
    padding: 25px 0 0;
  }
}
.jobSearch__conditions .selectWrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.jobSearch__conditions .selectWrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  color: #fff;
  padding: 0.75em 3em 0.75em 1em;
  width: 100%;
  font-size: clamp(16px, 4vw, 20px);
  background-color: #000;
  background-image: url(../img/shop-select-arrow.svg);
  background-repeat: no-repeat;
  background-size: auto 70%;
  background-position: right 10px center;
  -webkit-transition: background-color 200ms;
  transition: background-color 200ms;
  cursor: pointer;
}
.jobSearch__conditions .selectWrap select:hover {
  background-color: #333;
}
.jobSearch__conditions .checkboxArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 5px;
  font-size: clamp(14px, 3vw, 16px);
}
@media screen and (max-width: 640px) {
  .jobSearch__conditions .checkboxArea {
    gap: 12px;
  }
}
.jobSearch__conditions .checkboxArea li {
  min-width: calc((100% - 10px) * 0.3333);
}
.jobSearch__conditions .checkboxChildrenArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
  font-size: clamp(12px, 2.5vw, 14px);
  margin-top: 1em;
  margin-left: 2em;
}
@media screen and (max-width: 640px) {
  .jobSearch__conditions .checkboxChildrenArea {
    gap: 12px;
    padding-bottom: 1em;
  }
}
.jobSearch__conditions .checkboxWrap {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.jobSearch__conditions .checkboxWrap input {
  display: none;
}
.jobSearch__conditions .checkboxWrap .checkboxDummy {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #999;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0.75em;
  -webkit-transition: background-color 100ms;
  transition: background-color 100ms;
  position: relative;
}
.jobSearch__conditions .checkboxWrap .checkboxDummy::before {
  content: "";
  display: block;
  width: 55%;
  height: 30%;
  top: 35%;
  left: 45%;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-style: solid;
  border-width: 0 0 2px 2px;
  position: absolute;
  border-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 100ms;
  transition: opacity 100ms;
}
.jobSearch__conditions .checkboxWrap *:checked ~ .checkboxDummy {
  background-color: #000;
}
.jobSearch__conditions .checkboxWrap *:checked ~ .checkboxDummy::before {
  opacity: 1;
}
.jobSearch__submit {
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .jobSearch__submit {
    margin-top: 40px;
  }
}

.jobSearchResults {
  padding-bottom: 80px;
  width: min(1080px, 100% - 20px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .jobSearchResults {
    padding-bottom: 60px;
  }
}
.jobSearchResults__header {
  padding-top: 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .jobSearchResults__header {
    padding-top: 80px;
    margin-bottom: 60px;
  }
}
.jobSearchResults__ttl {
  text-align: center;
  font-size: clamp(20px, 6vw, 28px);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.jobSearchResults__date {
  text-align: center;
  font-size: 14px;
}
.jobSearchResults__item:not(:last-child) {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 640px) {
  .jobSearchResults__item:not(:last-child) {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.jobSearchResults__itemInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 640px) {
  .jobSearchResults__itemInner {
    display: block;
  }
}
.jobSearchResults__itemFig {
  width: 50%;
  padding-right: min(80px, 8vw);
  margin: 0;
}
@media screen and (max-width: 640px) {
  .jobSearchResults__itemFig {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
  }
}
.jobSearchResults__itemFig img {
  display: block;
  max-width: 100%;
}
.jobSearchResults__itemMain {
  display: block;
  width: 50%;
}
@media screen and (max-width: 640px) {
  .jobSearchResults__itemMain {
    width: 100%;
  }
}
.jobSearchResults__itemHead {
  padding-right: 20px;
  border-left: 10px solid #fed900;
  padding-left: 1em;
  margin-bottom: 40px;
}
.jobSearchResults__itemHead .ttl {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.jobSearchResults__itemHead .address {
  font-size: min(14px, 4vw, 16px);
  line-height: 1.7;
}
.jobSearchResults__itemHead .link {
  display: block;
  line-height: 2;
  width: 140px;
  background-color: #000;
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-top: 1em;
  font-size: clamp(16px, 4.5vw, 18px);
  border-radius: 100vmax;
  padding-right: 1em;
  text-decoration: none;
  position: relative;
  border: 1px solid #000;
}
.jobSearchResults__itemHead .link::before, .jobSearchResults__itemHead .link::after {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  top: calc(50% - 0.35em);
  right: 0.75em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: currentColor;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.jobSearchResults__itemHead .link::after {
  right: 1.2em;
}
@media (any-hover: hover) {
  .jobSearchResults__itemHead .link {
    -webkit-transition: ease 200ms;
    transition: ease 200ms;
  }
  .jobSearchResults__itemHead .link:hover {
    background-color: #fff;
    color: #000;
  }
}
.jobSearchResults__itemBody {
  font-size: clamp(14px, 4.2vw, 17px);
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  .jobSearchResults__itemBody {
    padding: 0 10px;
    font-size: 14px;
  }
}
.jobSearchResults__itemBody p {
  margin-bottom: 1em;
}
.jobSearchResults__itemBody h2 {
  font-size: 1.2em;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 2em;
}
.jobSearchResults__itemBody h3 {
  font-size: 1.1em;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 2em;
}
.jobSearchResults__itemBody h4 {
  font-size: 1em;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 2em;
}
.jobSearchResults__itemBody .addtoany_share_save_container {
  display: none !important;
}
.jobSearchResults__entry {
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .jobSearchResults__entry {
    margin-top: 60px;
  }
}
.jobSearchResults__noResult {
  text-align: center;
  font-size: clamp(16px, 4.5vw, 18px);
  font-weight: bold;
  margin-top: 2em;
  color: #999;
}