@charset "utf-8";

.common_title.cl_f .en_title {
  @media screen and (max-width: 400px) {
    font-size: 3.6rem;
  }
  @media screen and (max-width: 350px) {
    font-size: 3.2rem;
  }
}

.content {
	padding: 6em 0;
}
.req_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  &:not(:last-child) {
    margin-bottom: 104px;
  }
  @media screen and (max-width: 767px) {
    &:not(:last-child) {
      margin-bottom: 80px;
    }
  }
}
.req_inner .common_title {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  margin-bottom: 80px;
  h2 {font-weight: bold;}
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
  }
  @media screen and (max-width: 400px) {
    p {font-size: 4.0rem;}
  }
}
.req_inner table {
  width: 100%;
  margin: 0 auto;
  tr {
    border-bottom: 1px solid var(--main-color);
    &:first-child {
      border-top: 1px solid var(--main-color);
    }
  }
  th {
    width: 20%;
    padding: 0.75em 15px;
    background: rgba(207, 233, 231, 0.25);
    color: #000;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
  }
  td {
    padding: 1em 40px;
  }
  @media screen and (max-width: 767px) {
    th {
      display: block;
      width: 100%;
    }
    td {
      display: block;
      padding: 1em 20px;
    }
  }
}

.req_note {
  font-size: 2.2rem;
  letter-spacing: 1.1px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5em;
  /* &:has(+ table) {margin-bottom: 1em;} */
  &.mb-none {margin-bottom: 0;}
  @media screen and (max-width: 767px) {
    font-size: 1.8rem;
    letter-spacing: 0.9px;
    text-align: left;
  }
}

.temp_link--flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  .temp_link {margin-inline: 0;}
  @media screen and (max-width: 767px) {
    .temp_link--txt {
      flex-direction: column;
      gap: 0;
    }
  }
}
.temp_link {
  position: relative;
  border: 2px solid var(--main-color);
  width: 100%;
  max-width: 328px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  &::after {
    transition: all .3s;
    content: "";
    background: url(/recruit/common/img/menubg.svg) no-repeat center / cover;
    width: 326px;
    height: 232px;
    position: absolute;
    bottom: calc(50% - 10px);
    right: calc(50% - 10px);
    transform: translate(50%, 50%);
    z-index: -1;
  }
  &:hover::after {
    transition: all .3s;
    bottom: calc(50% - 0px);
    right: calc(50% - 0px);
  }
  @media screen and (max-width: 767px) {
    max-width: 220px;
    &::after {
      width: 100%;
      height: 100%;
    }
  }
}
.temp_link--txt {
  transition: all .5s;
  padding: 2rem 2.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  background: #fff;
  color: var(--main-color);
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0;
  height: 116px;
  &::after {
    content: "";
    background: url(/recruit/common/img/g_arrow.svg) center / contain no-repeat;
    width: 60px;
    height: 35px;
  }
  @media screen and (max-width: 767px) {
    font-size: 1.6rem;
    padding: 1rem 5%;
    /* flex-direction: column; */
    justify-content: center;
    height: 90px;
    gap: 0.5em;
    &::after {
      width: 35px;
      height: 35px;
    }
  }
}
.temp_link:hover .temp_link--txt {
  transition: all .5s;
  background: none;
}