/* page job detail
    ========================================================================= */
.job-img-list {
  width: 80%;
  height: 100%;
  margin-bottom: 0 !important;
  margin-left: 10%;
}
.job-img-list__item {
  width: 100%;
  height: 220px;
  background-color: #eee;
}
@media screen and (min-width: 1025px) {
  .job-img-list__item {
    height: 320px;
  }
}
.job-img-list__item img {
  object-fit: contain;
  width: 100%;
  height: 220px;
}
@media screen and (min-width: 1025px) {
  .job-img-list__item img {
    height: 320px;
  }
}

.slick-dots {
  bottom: 15px;
}
.slick-dots .slick-active button:before {
  color: #fff !important;
}

.job-top {
  padding: 15px;
  border-bottom: solid 1px #eaeaea;
}
@media screen and (min-width: 1025px) {
  .job-top {
    padding: 15px 0;
  }
}
.job-top__ttl {
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  .job-top__ttl {
    font-size: 24px;
  }
}
.job-top__pay {
  color: #989797;
}
.job-top__pay span {
  font-size: 20px;
  font-weight: bold;
  color: #1c1b18;
}
@media screen and (min-width: 1025px) {
  .job-top__pay span {
    font-size: 24px;
  }
}

.job-summary {
  border-bottom: solid 1px #eaeaea;
}

.job-close {
  text-align: center;
  padding: 35px 0 20px 0;
}
.job-close__txt {
  line-height: 1.4em;
  font-size: 12px;
  font-weight: bold;
  color: #E01E1E;
}
.job-close__txt--l {
  font-size: 16px;
}

.entry-area {
  padding: 25px 15px;
  background: linear-gradient(45deg, #ffe9e9, 45%, #f9ece4);
  text-align: center;
}
.entry-area__copy {
  font-size: 18px;
  font-weight: bold;
  color: #1c1b18;
  margin-bottom: 20px;
}
.entry-area__btn {
  cursor: pointer;
  background: #FF0000;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  height: 60px;
  border-radius: 30px;
  line-height: 60px;
  max-width: 300px;
  width: 80%;
  text-align: center;
  display: block;
  margin: 0 auto 20px auto;
  transition: 0.3s;
}
.entry-area__btn:hover {
  background: #ff1f1f;
}
.entry-area__modal {
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding-left: 18px;
  color: #615350;
  transition: 0.2s;
  text-decoration: underline;
}
.entry-area__modal:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.entry-area__modal:before {
  content: "";
  background-image: url(../../../img/job/icon_hatena.svg);
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
}

.job-detail {
  margin: 30px 0;
}
.job-detail__headline {
  padding: 16px 15px 16px 38px;
  font-size: 18px;
  background-color: #f6f6f6;
  color: #FF0000;
  background-repeat: no-repeat;
  background-position: center left 15px;
  background-size: 18px 18px;
}
.job-detail__headline.s-attention {
  background-image: url(../../../img/job/icon_attention.svg);
}
.job-detail__headline.s-company {
  background-image: url(../../../img/job/icon_company.svg);
}
.job-detail__list {
  margin: 15px 15px 0 15px;
}
.job-detail__list__ttl {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 1025px) {
  .job-detail__list__ttl {
    font-size: 20px;
  }
}
.job-detail__list__txt {
  margin: 0 0 30px 0;
}
.job-detail__list__txt .map-link {
  margin: 10px 0 0 0px;
  color: #FF0000;
  border: 1px solid #FF0000;
  padding: 6px 10px;
  background-color: #fff;
  font-size: 12px;
  border-radius: 5px;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
  transition: 0.2s;
}
.job-detail__list__txt .map-link:hover {
  color: #fff;
  background-color: #FF0000;
}

.dl-area {
  background-color: #E01E1E;
  padding: 35px 15px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .dl-area {
    margin: 90px 0 0 0;
  }
}

.dl-badge {
  height: 52px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .dl-badge {
    height: 60px;
  }
}
.dl-badge__app-store, .dl-badge__google-play {
  height: 100%;
  display: inline-block;
}
.dl-badge__app-store img, .dl-badge__google-play img {
  height: 100%;
}
.dl-badge__app-store {
  margin: 0 15px 0 0;
}

.p-modal {
  text-align: justify;
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 100;
}
.p-modal__content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 90%;
}
@media screen and (min-width: 1025px) {
  .p-modal__content {
    width: 500px;
  }
}
.p-modal__content__inner {
  position: relative;
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  .p-modal__content__inner {
    padding: 40px;
  }
}
.p-modal__content__inner .dl-badge {
  text-align: center;
  margin: 20px 0;
  height: 45px;
}
@media screen and (max-width: 374px) {
  .p-modal__content__inner .dl-badge {
    margin: 15px 0;
  }
}
@media screen and (max-width: 374px) {
  .p-modal__content__inner p {
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-modal__content__top {
  border-bottom: solid 1px #eaeaea;
}
.p-modal__content__top h3 {
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .p-modal__content__top h3 {
    font-size: 22px;
  }
}
.p-modal__content .merit {
  margin: 20px 0 10px 0;
}
.p-modal__content .merit__item {
  margin: 0 0 15px 0;
}
.p-modal__close {
  position: absolute;
  top: 13px;
  right: 10px;
}
.p-modal__bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}
.p-modal .merit-ttl__num {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 10px;
  background-color: #FF0000;
  border-radius: 12px;
  display: flex;
  line-height: 1;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-modal .merit-ttl__num {
    font-size: 14px;
    border-radius: 16px;
  }
}
.p-modal .merit-ttl__txt {
  font-size: 16px;
  margin-left: 5px;
}
@media screen and (min-width: 1025px) {
  .p-modal .merit-ttl__txt {
    font-size: 18px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../../../../resources/sass/customer/part/job/job.scss%22,%22../../../../../resources/sass/customer/global/_define.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGA;AAAA;AAOA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAGJ;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;;AAOhB;EACI;;AAIQ;EACI;;;AAOhB;EACI;EACA;;AAEA;EAJJ;IAKQ;;;AAGJ;EACI;;AAEA;EAHJ;IAIQ;;;AAIR;EACI,OC3CS;;AD6CT;EACI;EACA;EACA,OCjDA;;ADmDA;EALJ;IAMQ;;;;AAMhB;EACI;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA,OChFM;;ADkFN;EACI;;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA,YCzGK;ED0GL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKZ;EACI;;AAEA;EACI;EACA;EACA,kBCrJI;EDsJJ,OChKK;EDiKL;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAIR;EACI;;AAEA;EACI;EACA,OChMH;EDiMG;EACA;EACA,kBC1LL;ED2LK;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA,kBC7MP;;;ADoNb;EACI,kBClNU;EDmNV;EACA;;AAEA;EALJ;IAMQ;;;;AAIR;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAGJ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;;;AAGJ;EACI;EACA;;AAEA;EAJJ;IAKQ;;;AAGJ;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAKJ;EADJ;IAEQ;IACA;;;AAKZ;EACI;;AAEA;EACI;EACA;;AAEA;EAJJ;IAKQ;;;AAKZ;EACI;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIA;EACI;EACA;EACA;EACA;EACA,kBC/UC;EDgVD;EACA;EACA;EACA;EACA;;AAEA;EAZJ;IAaQ;IACA;;;AAIR;EACI;EACA;;AAEA;EAJJ;IAKQ%22,%22file%22:%22job.css%22%7D */
