@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
a {
  -webkit-transition: .3s;
  transition: .3s;
}

#main {
  margin-top: 111px;
}

@media screen and (max-width: 768px) {
  #main {
    margin-top: 70px;
  }
}

.bg_wrap {
  position: relative;
}

.bg_wrap:before {
  content: "";
  width: 1150px;
  height: 95%;
  background-color: #F7F7F7;
  position: absolute;
  left: 0;
  top: 170px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .bg_wrap:before {
    width: 320px;
  }
}

.interview_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .interview_main {
    display: block;
  }
}

.interview_main .ph {
  width: 65%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .interview_main .ph {
    width: calc(100% - 55px);
    margin-left: 55px;
  }
}

.interview_main .txt {
  margin-left: calc((100% - 1000px) / 2);
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

@media screen and (max-width: 991px) {
  .interview_main .txt {
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  .interview_main .txt {
    margin-left: auto;
    position: relative;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-left: 28px;
  }
}

.interview_main .txt h2 {
  font-size: 34px;
  font-weight: lighter;
  border: none;
  letter-spacing: 0.1em;
}

.interview_main .txt h2 .h2_inner {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0%, #E0E0E0));
  background: linear-gradient(transparent 0, #E0E0E0 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 2px 4px;
}

@media screen and (max-width: 768px) {
  .interview_main .txt h2 {
    font-size: 17px;
    line-height: 2;
    position: absolute;
    right: 0;
    top: 0%;
    text-align: right;
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
}

.interview_main .txt .infomation {
  margin-top: 47px;
}

@media screen and (max-width: 768px) {
  .interview_main .txt .infomation {
    margin-top: 24px;
  }
}

.interview_main .txt .infomation .join, .interview_main .txt .infomation .department {
  font-size: 12px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #ffffff));
  background: linear-gradient(transparent 12px, #ffffff 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 2px 0;
  letter-spacing: 0.08em;
}

.interview_main .txt .infomation .department {
  margin-top: 20px;
}

.interview_main .txt .infomation .job {
  font-size: 30px;
  letter-spacing: 0.08em;
  font-weight: lighter;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #ffffff));
  background: linear-gradient(transparent 80%, #ffffff 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 2px 0;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 60px;
    padding-top: 20px;
  }
}

.faq_block {
  padding-bottom: 96px;
}

@media screen and (max-width: 768px) {
  .faq_block {
    padding-bottom: 0;
  }
}

.faq_block dt, .faq_block dd {
  letter-spacing: 0.1em;
  text-align: justify;
}

.faq_block dt {
  font-size: 18px;
  margin-top: 50px;
  position: relative;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .faq_block dt {
    font-size: 14px;
    margin-top: 30px;
  }
}

.faq_block dt:before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-150%);
          transform: translateY(-50%) translateX(-150%);
  display: block;
}

.faq_block dt.row2:before {
  top: 25%;
}

.faq_block dd {
  font-size: 12px;
  margin-top: 15px;
  line-height: 2.3;
}

@media screen and (max-width: 768px) {
  .faq_block dd {
    margin-top: 12px;
  }
}

.faq_ph_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-bottom: 22px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .faq_ph_block {
    display: block;
    margin-top: 40px;
  }
}

.faq_ph_block .faq_block {
  padding-bottom: 0;
}

.faq_ph_block .ph {
  width: 45%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .faq_ph_block .ph {
    width: 100%;
    margin-top: 60px;
  }
}

.faq_ph_block dl {
  margin-left: 90px;
  margin-right: calc((100% - 1000px) / 2);
}

@media screen and (max-width: 768px) {
  .faq_ph_block dl {
    margin: 0 28px;
  }
}

.faq_ph_block dl dt:first-of-type {
  margin-top: 0;
}

.other {
  margin-left: calc((100% - 1000px) / 2);
}

@media screen and (max-width: 768px) {
  .other {
    margin-left: 28px;
  }
}

.other h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: lighter;
  border: none;
  margin-top: 96px;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 32px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .other h2 {
    margin-top: 63px;
    padding-bottom: 20px;
    font-size: 20px;
  }
}

.other .other_person ul .slick-list {
  overflow: visible;
  padding-right: 10%;
}

@media screen and (max-width: 768px) {
  .other .other_person ul .slick-list {
    overflow: visible;
    padding-right: 20%;
  }
}


.other .other_person ul li {
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .other .other_person ul li {
    padding-right: 30px;
  }
}

.other .other_person ul li a {
  display: block;
}

.other .other_person ul li a .txt {
  font-size: 10px;
  margin-top: 10px;
  line-height: 1.6;
  letter-spacing: 0.13em;
}

.other_pages {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .other_pages {
    margin-top: 30px;
  }
}

.other_pages .to_top {
  text-align: center;
}

.other_pages .to_top a {
  font-family: 'Josefin Sans', sans-serif;
  border-bottom: solid 1.5px #000;
}

.bottom_btns {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .bottom_btns {
    margin-top: 50px;
  }
}

.bottom_btns a {
  padding: 10px 15px;
  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;
}

@media screen and (max-width: 768px) {
  .bottom_btns a:first-of-type {
    padding: 8px;
  }
}

@media screen and (max-width: 768px) {
  .bottom_btns a:first-of-type img {
    width: 230px;
  }
}

.bottom_btns a:first-of-type:hover {
  background-color: #fff;
  opacity: .6;
}

@media screen and (max-width: 768px) {
  .bottom_btns a:last-of-type {
    margin-top: 20px;
    padding: 17px;
  }
}
