/*
 * style Name: single_recruit.css
  description: 採用情報用
 */

 
.page_topvisual {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 35vh;
  width: 100vw;
  position: relative;
  margin: 0 calc(50% - 50vw);
}

.page_topvisual-title {
  font-size: 30px;
  font-weight: bold;
  text-shadow: 0 0 10px #333, 0 0 10px #333, 0 0 10px #333;
  color: #fff;
  margin: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.topvisual_recruit {
  background-image: url(../images/recruitment_header.jpg);
  margin-top: 125px;
}

.flex_recruit_imgs {
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 50px;
  display: flex;
}

.flex_recruit_box {
  width: 30%;
}

.flex_recruit_box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.main_single-recruit {
  background: #fff;
  width: 100%;
  padding: 0 20px 50px;
}

.single_ttl {
  text-align: center;
  margin: 50px 0 10px;
  font-size: 28px;
  color: #266fcb;
}

.single_subttl {
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}

.recruit_title {
  position: relative;
  display: inline-block;
  padding: 10px 50px;
  text-align: center;
  font-size: 20px;
}

.recruit_title::before, .recruit_title::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #333;
  transform: translateY(-50%);
}

.recruit_title::before {
  left: 38%;
}

.recruit_title::after {
  right: 38%;
}

.recruit_content {
  margin-bottom: 20px;
}

.recruit_table {
  border-collapse: collapse;
  margin-bottom: 30px;
}

.recruit_table tr {
  border-bottom: 1px solid #999;
}

.recruit_table tr:last-child {
  border-bottom: none;
}

.recruit_table th {
  padding: 10px 20px;
  width: 22%;
}

.recruit_table td {
  padding: 10px 0;
  width: 85%;
}

.recruit_contact {
  text-align: center;
}

.recruit_contact a {
  padding: 10px 20px;
  background: #ff894a;
  width: 100%;
  box-shadow: 4px 4px 2px -2px #999;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.recruit_contact a:hover {
  opacity: .7;
}

@media (max-width:820px) {
  .topvisual_recruit {
    margin-top: 83px;
  }
}

@media (max-width: 800px) {
  .flex_single-recruit {
    display: flex;
    margin: 0;
  }
}

@media (max-width:750px) {
  .recruit_title::before {
    left: 30%;
  }

  .recruit_title::after {
    right: 30%;
  }
}

@media (max-width:600px) {
  .single_ttl {
    font-size: 22px;
    line-height: 1.3;
  }

  .single_subttl {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .recruit_title::before {
    left: 20%;
  }

  .recruit_title::after {
    right: 20%;
  }

  .recruit_table th {
    width: 32%;
  }

  .recruit_contact a {
    font-size: 14px;
    padding: 10px;
  }

  .flex_recruit_imgs {
    display: block;
  }

  .flex_recruit_box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .flex_recruit_box img {
    height: 180px;
  }
}

@media (max-width:400px) {
  .recruit_table {
    width: 100%;
  }

  .recruit_table th {
    width: 100%;
    display: block;
    padding: 15px 0 10px;
    text-align: left;
    font-size: 16px;
  }

  .recruit_table td {
    display: block;
    padding: 0 0 15px;
    width: 100%;
  }
}