@charset "UTF-8";

/* -----sectionTitle----- */
.sectionTitle {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 95%;
  margin: 30px auto;
}

.sectionTitle h1 {
  font-family: 'DIN Condensed', sans-serif;
  font-size: 42px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: #850000;
  text-underline-offset: 15px
}

.sectionTitle p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-left: 26px;
}

@media screen and (max-width:520px) {
  .sectionTitle h1 {
    font-size: 28px;
  }

  .sectionTitle p {
    margin-left: 23px;
  }
}

/* -----firstView----- */

.firstView {
  background: url(../images/entry_pc_image.png) center center/cover no-repeat;
  height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruitTitle {
  display: flex;
  align-items: center;
  color: white;
}

.recruitTitle h1 {
  font-size: 70px;
  font-family: 'DIN Condensed', sans-serif;
  letter-spacing: 0.05em;
}

.recruitTitle p {
  font-size: 24px;
  margin-left: 50px;
}

@media screen and (max-width:520px) {
  .firstView {
    background: url(../images/sp_entry_image.png) center center/cover no-repeat;
    height: 70vh;
  }

  .recruitTitle {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .recruitTitle h1 {
    font-size: 62px;
    font-family: 'DIN Condensed', sans-serif;
    letter-spacing: 0.05em;
  }

  .recruitTitle p {
    font-size: 20px;
    margin-left: 0px;
  }
}



/* ----Recruit Information----- */

.recruitSection {
  background: url(../images/information_image.png)center center/cover no-repeat;
  padding: 50px 0 100px 0;
}

.informationContainer {
  margin: 50px 0;
}

.informationItem {
  max-width: 1000px;
  width: 90%;
  margin: 50px auto;
  border: #850000 solid 2px;
  border-radius: 3px;
}

.recruitStyle {
  background-color: #850000;
  text-align: center;
  padding: 30px 0;
  color: white;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.informationTable {
  width: 95%;
  margin: 60px auto;
}

.informationTable tr {
  border-bottom: 1px solid black;
}

.informationTable th {
  text-align: left;
  padding: 20px 10px 20px 30px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  width: 20%;
  margin: 0 auto;
}

.informationTable td {
  padding: 20px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-size: 18.4px;
  letter-spacing: 0.05em;
}

.entryBtn {
  font-size: 20px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体";
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 30px auto;
  padding: 20px 0;
  width: 40%;
  background-color: #d70c19;
  text-align: center;
}

.entryBtn a {
  text-decoration: none;
  color: white;
}

@media screen and (max-width:520px) {

  .recruitStyle {
    padding: 20px 0;
  }

  .informationTable {
    margin: 30px auto;
  }

  .informationTable tr {
    border-bottom: 1px solid black;
  }

  .informationTable th {
    width: 40%;
    font-size: 16px;
  }

  .informationTable td {
    padding: 20px 0;
    font-size: 16px;
    letter-spacing: 0.03em;
  }

  .entryBtn {
    padding: 15px 0;
    width: 70%;
  }
}