@charset "UTF-8";
.jobs-list__box {
  position: relative;
}

.jobs-list__box:not(:first-child) {
  margin-top: 40px;
}

.jobs-list__box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 4px solid #106fbd;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 959px) {
  .jobs-list__box::after {
    content: normal;
  }
}

.jobs-list__box:hover::after {
  opacity: 1;
}

.jobs-list__box__anchor {
  display: block;
  padding: 40px;
  background-color: #f5f7fa;
  position: relative;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__anchor {
    padding: 20px;
  }
}

.jobs-list__box__anchor::before {
  content: '';
  display: block;
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #106fbd;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__anchor::before {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

.jobs-list__box__anchor::after {
  content: '';
  display: block;
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-image: url("../images/ico_arrow_link_right_white.svg");
  background-size: 21px 12px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__anchor::after {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-size: 18px 10px;
  }
}

.jobs-list__box__anchor:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

@media screen and (max-width: 959px) {
  .jobs-list__box__anchor:hover::after {
    -webkit-transform: inherit;
    transform: inherit;
  }
}

.jobs-list__box__head__heading {
  font-size: 21px;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 10px 0 10px 20px;
  border-left: 4px solid #106fbd;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__head__heading {
    font-size: 18px;
    padding: 8px 55px 8px 15px;
  }
}

.jobs-list__box__head__heading__sub {
  display: block;
  font-size: 15px;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__head__heading__sub {
    font-size: 13px;
  }
}  

.jobs-list__box__content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__content {
    margin-top: 20px;
  }
}

.jobs-list__box__body {
  flex: 1;
  margin-left: 40px;
}

.jobs-list__box__body:last-child {
  margin-left: 0;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__body {
    flex: 0 1 auto;
    margin-left: 0;
    width: 100%;
  }
}

.jobs-list__box__image {
  order: -1;
  margin-top: 10px;
  width: 370px;
}

.jobs-list__box__image img {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__image {
    margin-top: 0;
    width: 100%;
  }
}

.jobs-list__box__body__status {
  margin-top: 20px;
}

.jobs-list__box__body__status__inner {
  display: inline-block;
  background-color: #106fbd;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 6px 50px 5px;
  border-radius: 3px;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__body__status__inner {
    font-size: 13px;
    padding: 4px 25px 3px;
  }
}

.jobs-list__box__body__detail-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 15px 0;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__body__detail-list {
    padding: 10px 0;
  }
}

.jobs-list__box__body__detail-list__term {
  color: #106fbd;
  padding: 6px 45px 6px 25px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
  width: 5.5em;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__body__detail-list__term {
    font-size: 14px;
    padding: 6px 25px 6px 15px;
  }
}

.jobs-list__box__body__detail-list__desc {
  border-left: 1px solid #d9dbde;
  padding: 6px 45px 6px 25px;
  font-size: 16px;
  letter-spacing: .05em;
  flex: 1;
}

@media screen and (max-width: 959px) {
  .jobs-list__box__body__detail-list__desc {
    font-size: 14px;
    padding: 6px 25px 6px 15px;
  }
}

.jobs-list__pager {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 959px) {
  .jobs-list__pager {
    margin-top: 50px;
  }
}

.jobs-list__pager .page-numbers {
  display: none;
  background-color: #106fbd;
  border: 1px solid #106fbd;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px;
  width: 250px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 959px) {
  .jobs-list__pager .page-numbers {
    padding: 10px;
    font-size: 13px;
  }
}

.jobs-list__pager .page-numbers:not(:first-child) {
  margin-left: 20px;
}

.jobs-list__pager .page-numbers::after {
  content: '';
  background-image: url("../images/ico_arrow_right_white.svg");
  width: 8px;
  height: 12px;
  background-size: 8px 12px;
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 959px) {
  .jobs-list__pager .page-numbers::after {
    right: 10px;
  }
}

.jobs-list__pager .page-numbers.prev, .jobs-list__pager .page-numbers.next {
  display: block;
}

.jobs-list__pager .page-numbers.prev::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: auto;
  left: 20px;
}

@media screen and (max-width: 959px) {
  .jobs-list__pager .page-numbers.prev::after {
    left: 10px;
  }
}

.jobs-list__pager .page-numbers:hover {
  background-color: #fff;
  color: #106fbd;
}

.jobs-list__pager .page-numbers:hover::after {
  background-image: url("../images/ico_arrow_right.svg");
}

.jobs-detail-content__heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 16px 0 15px 25px;
  border-left: 4px solid #106fbd;
}

@media screen and (max-width: 959px) {
  .jobs-detail-content__heading {
    font-size: 22px;
    padding: 10px 0 9px 15px;
  }
}

.jobs-detail-content__table {
  margin-top: 30px;
}

.jobs-detail-content__table > tbody > tr > th,
.jobs-detail-content__table > tbody > tr > td {
  font-size: 15px;
  padding: 25px 29px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.86em;
}

@media screen and (max-width: 959px) {
  .jobs-detail-content__table > tbody > tr > th,
  .jobs-detail-content__table > tbody > tr > td {
    display: block;
    font-size: 13px;
    padding: 15px 10px 15px;
  }
}

.jobs-detail-content__table > tbody > tr > th {
  width: 290px;
  text-align: left;
  border-top: 1px solid #106fbd;
  font-weight: 700;
}

@media screen and (max-width: 959px) {
  .jobs-detail-content__table > tbody > tr > th {
    width: 100%;
    font-weight: 700;
  }
}

.jobs-detail-content__table > tbody > tr > td {
  border-top: 1px solid #d9dbde;
}

.jobs-detail-content__table > tbody > tr > td ul li {
  position: relative;
  padding-left: 20px;
}

.jobs-detail-content__table > tbody > tr > td ul li::before {
  content: '・';
  color: #106fbd;
  position: absolute;
  top: 0;
  left: 0;
}

.jobs-detail-content__table > tbody > tr > td p:not(:first-child) {
  margin-top: 20px;
}

.jobs-detail-content__table > tbody > tr > td p:not(:last-child) {
  margin-bottom: 20px;
}

.jobs-detail-content__table > tbody > tr > td p + ul {
  margin-top: -20px;
}

.jobs-detail-content__table > tbody > tr:last-child > th {
  border-bottom: 1px solid #106fbd;
}

.jobs-detail-content__table > tbody > tr:last-child > td {
  border-bottom: 1px solid #d9dbde;
}

.jobs-detail-content__button {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.jobs-detail-content__button__anchor {
  text-align: center;
  font-size: 17px;
  padding: 19px 20px 18px;
}

@media screen and (max-width: 959px) {
  .jobs-detail-content__button__anchor {
    font-size: 15px;
    padding: 15px 20px 14px;
  }
}


.jobs-detail-main__inner {
  display: flex;
}

.jobs-detail-main__text {
  flex: 1;
  margin-left: 40px;
  margin-right: 60px;
}

.jobs-detail-main__image {
  order: -1;
  width: 510px;
  flex-shrink: 0;
}

.jobs-detail-main__image img {
  width: 100%;
}

.jobs-detail-point {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.jobs-detail-point__item {
  margin: 10px;
  width: calc(33.333% - 20px);
}

.jobs-detail-point__image img {
  width: 100%;
}

.jobs-detail-message__inner {
  display: flex;
}

.jobs-detail-message__text {
  flex: 1;
  margin-left: 40px;
}

.jobs-detail-message__name {
  font-weight: 700;
  text-align: right;
}

.jobs-detail-message__image {
  order: -1;
  width: 400px;
}

.jobs-detail-message__image img {
  width: 100%;
}

.jobs-detail-form {
  text-align: center;
}

.jobs-detail-form__number {
  color: #106fbd;
  font-size: 46px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 30px 0;
}

.jobs-detail-other {
  text-align: center;
}

.jobs-detail-movie {
  max-width: 840px;
  margin: auto;
}

.jobs-detail-movie__inner {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.jobs-detail-movie__inner iframe {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.jobs-detail-other {
  overflow: visible;
  margin: auto;
  width: 620px;
}

.jobs-detail-other__content {
  margin-top: 60px;
}

.jobs-detail-other__item {
  display: block;
  margin: auto;
  position: relative;
  text-align: left;
  width: 620px;
}

.jobs-detail-other__item::after {
  background: url("../images/ico_arrow_right.svg") center center no-repeat;
  background-size: 10px 12px;
  content: '';
  display: block;
  height: 12px;
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 10px;
}

.jobs-detail-other__image {

}

.jobs-detail-other__image img {
  width: 100%;
}

.jobs-detail-other__title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 30px;
  padding-right: 40px;
}

.jobs-detail-other .slick-arrow {
  background-color: #106fbd;
  box-shadow: 0px 3px 0px 0px rgba(4, 8, 13, 0.75);
  width: 60px;
  height: 120px;
  -webkit-transform: translate(0, calc(-50% - 50px));
  transform: translate(0, calc(-50% - 50px));
  z-index: 10;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.jobs-detail-other .slick-arrow:focus {
  opacity: 1;
  background-color: #106fbd;
}

.jobs-detail-other .slick-arrow:hover {
  background-color: #106fbd;
  opacity: .8;
}

.jobs-detail-other .slick-prev {
  left: -110px;
}

.jobs-detail-other .slick-prev::before {
  opacity: 1;
  content: '';
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  width: 22px;
  height: 16px;
  background-image: url("../images/ico_arrow_right_white.svg");
  background-size: 22px 16px;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.jobs-detail-other .slick-next {
  right: -110px;
}

.jobs-detail-other .slick-next::before {
  opacity: 1;
  content: '';
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  width: 22px;
  height: 16px;
  background-image: url("../images/ico_arrow_right_white.svg");
  background-size: 22px 16px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 959px){
  .jobs-detail-main__inner {
    flex-wrap: wrap;
  }
  
  .jobs-detail-main__text {
    flex: 0 1 auto;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }
  
  .jobs-detail-main__image {
    width: 100%;
  }

  .jobs-detail-point {
    margin: -10px 0;
  }
  
  .jobs-detail-point__item {
    margin: 10px 0;
    width: 100%;
  }
  
  .jobs-detail-message__inner {
    flex-wrap: wrap;
  }
  
  .jobs-detail-message__text {
    flex: 0 1 auto;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }
  
  .jobs-detail-message__image {
    width: 100%;
  }

  .jobs-detail-other {
    width: 100%;
  }
  
  .jobs-detail-other__content {
    margin-top: 20px;
  }
  
  .jobs-detail-other__item {
    width: 100%;
  }
  
  .jobs-detail-other__title {
    font-size: 18px;
    margin-top: 10px;
    padding-right: 30px;
  }

  .jobs-detail-other .slick-arrow {
    width: 40px;
    height: 60px;
    -webkit-transform: translate(0, calc(-50% - 30px));
    transform: translate(0, calc(-50% - 30px));
  }
    
  .jobs-detail-other .slick-prev {
    left: -20px;
  }
  
  .jobs-detail-other .slick-next {
    right: -20px;
  }
}

.jobs-search {
  background-color: #f5f7fa;
  padding: 40px;
}

.jobs-search .button--input:not(:first-child) {
  margin-top: 20px;
}

.jobs-search__inner {

}

.jobs-search__inner__content {
  display: flex;
  margin: 0 -10px;
}

.jobs-search__inner__item {
  margin: 0 10px;
  width: calc(33.333% - 20px);
}

.jobs-search__inner__item__title {
  color: #106fbd;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.jobs-search__inner__item__select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #ffffff url(../images/ico_arrow_bottom.svg) right 1.5em center no-repeat;
  background-size: 10px 10px;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 16px;
  padding: 1em 1.5em;
  width: 100%;
}

@media screen and (max-width: 959px){
  .jobs-search {
    padding: 20px;
  }

  .jobs-search__inner__content {
    flex-wrap: wrap;
    margin: -10px 0;
  }
  
  .jobs-search__inner__item {
    margin: 10px 0;
    width: 100%;
  }
  
}