@charset "UTF-8";
/*======================================================= 
 採用サイト(募集要項)スタイル
=======================================================*/
.recruit-info-block{
  padding-bottom: 50px;
}
.recruit-info-title{
  background-color: #EB2B2B;
  color: #fff;
  text-align: left;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}
.recruit-info-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.recruit-info-item{
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 5px;
  box-shadow: 5px 5px 0 #EB2B2B;
  padding: 20px;
}
.recruit-info-item img{
  padding-bottom: 15px;
}
.recruit-info-item:hover{
  box-shadow: none;
  transform: translateY(5px);
}

/* ボタンデザイン */
.info-job-title{
  position: relative;
  font-weight: bold;
}
.info-job-title:before {
  display: block;
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #333;
}
.info-job-title:after {
  display: block;
  content: "";
  position: absolute;
  top: 9px;
  right: 4px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left: 13px solid #d32929;
}
.recruit-info-item:hover .info-job-title:before {
  background-color: #d32929;
}
.recruit-info-item:hover .info-job-title:after {
  border: 8px solid transparent;
  border-left: 13px solid #fff;
}

/* 募集要項子ページ */
.recruit-info-img{
  margin: 50px auto;
}
.recruit-info-name{
  color: #EB2B2B;
  font-size: 35px;
  text-align: left;
  padding: 0 0 15px 0;
}
.recruit-info{
  background-color: #f8f8f8;
  padding: 30px;
  margin-bottom: 50px;
}
/* テーブル */
.industry{
  font-size: 25px;
  font-weight: bold;
  border-bottom: 2px solid #333;
}
table tr{
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid #333;
}
table th, table td{
  font-size: 18px;
  text-align: left;
  padding: 25px;
  white-space: pre-wrap;
}

/* エントリーボタン */
.entry-info-btn{
  display: inline-block;
  width: 50%;
  background-color: #EB2B2B;
  margin-top: 1em;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
.entry-info-btn:hover{
  opacity: 0.8;
}
.entry-info-btn::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: '\f138';
  font-size: 1.3em;
  font-weight: bold;
  right: 25px;
  top: 27%;
  color: #fff;
}
.entry-info-btn a{
  display: block;
  font-weight: bold;
  color: #fff;
  padding: 20px 30px 20px 20px;
}

/* この職種で活躍する社員の声を見る */
.slash {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 35px;
  font-weight: bold;
}
.slash::before, .slash::after {
  content: "";
  width: 35px;
  height: 2px;
  background-color: #000;
  margin: 15px 4px 4px;
}
.slash::before {
  transform: rotate(55deg);
}
.slash::after {
  transform: rotate(-55deg);
}
.slash-br{
  display: none;
}
.interview-block{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 50px;
}
.interview-btn{
  position: relative;
  display: block;
  max-width: 300px;
  border: 1px solid #333;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  padding: 15px 15px 15px 0;
  margin: 0 auto 50px auto;
}
.interview-btn::after{
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: '\f04b';
  font-weight: bold;
  padding-left: 15px;
  top: 18px;
  color: #EB2B2B;
}

/* 採用フロー */
.flow{
  background-color: #f7f7f7;
  padding: 50px 0;
}
.flow-title{
  position: relative;
  text-align: left;
  padding: 1em 0 1em 1.2em;
}
.flow-title::before{
  position: absolute;
  background-color: #EB2B2B;
  border-radius: 5px;
  content: "";
  height: 5px;
  width: 60px;
  top: 1.5em;
  left: 0;
  transform: rotate(-60deg);
}
.flow-block {
  padding-bottom: 50px;
}
.flow-block li {
  list-style-type: none;
  position: relative;
  padding-left: 80px;
}
.flow-block li:not(:last-child) {
  padding-bottom: 20px;
}
.flow-block li .icon {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #EB2B2B;
  color: #fff;
  position: absolute;
  left: 0;
}
.flow-block li:not(:last-child)::before {
  content: '';
  background: #d9d9d9;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 21px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.flow-block li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  color: #EB2B2B;
}

/*950px以下*/
@media screen and (max-width: 950px){

  /* 採用フロー */
  .flow{
      padding: 30px 0;
  }
  .flow-title::before{
      height: 3px;
      width: 35px;
  }
  .flow-block{
      padding-bottom: 30px;
  }
  .flow-block li {
      padding-left: 60px;
  }
  .flow-block li:not(:last-child)::before {
      left: 18px;
  }
}

/*750px以下*/
@media screen and (max-width: 750px){
  .recruit-info-grid{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* 募集要項子ページ */
  .recruit-info-name{
    font-size: 30px;
  }
  .recruit-info{
    padding: 15px;
  }
  table th, table td{
    font-size: 15px;
    padding: 15px 10px;
  }

  /* この職種で活躍する社員の声を見る */
  .slash{
    font-size: 22px;
  }
  .interview-block{
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }
  .interview-block a:nth-child(n+3) {
    display: none;
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  .recruit-info-grid{
    gap: 10px;
  }
  .recruit-info-item{
    box-shadow: 3px 3px 0 #EB2B2B;
    padding: 15px 10px 20px 10px;
  }
  .info-job-title:before {
    width: 35px;
    height: 35px;
  }
  .info-job-title:after {
    top: 9px;
    right: 5px;
    border: 6px solid transparent;
    border-left: 10px solid #d32929;
  }
  .recruit-info-item:hover .info-job-title:after {
    border: 6px solid transparent;
    border-left: 10px solid #fff;
  }

  /* 募集要項子ページ */
  table th, table td{
    font-size: 14px;
    padding: 15px 0;
  }
  /* エントリーボタン */
  .entry-info-btn{
    width: 80%;
  }
  .entry-info-btn a{
    padding: 15px 30px 15px 20px;
  }
  .flow-block li {
    padding-left: 50px;
  }
  .flow-block li:not(:last-child)::before {
    left: 16px;
  }

  /* この職種で活躍する社員の声を見る */
  .slash{
    font-size: 20px;
  }
  .slash-br{
    display: block;
  }
}