@charset "utf-8";
/* recruit
----------------------------------------------------------------------------------------------------*/
.main {
  width: min(90%, 1140px);
  margin: 0 auto;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* Page Title
----------------------------------------------------------------------------------------------------*/
.page-title {
  width: 100%;
  height: 10rem;
  background-color: #0081BB;
  margin-bottom: 8rem;
}
.page-title h3 {
  display: flex;
  align-items: center;
  width: 41.2rem;
  height: 10rem;
  background-color: #FFF;
  border: 1px solid #0081BB;
  padding-left: 3rem;
  color: #000;
  font-size: 3.2rem;
  font-weight: 700;
}
.page-body__copy {
  margin-bottom: 3rem;
  font-size: 3.2rem;
  font-weight: 600;
}
.page-body__text {
  font-size: 1.8rem;
  line-height: 1.75;
}
.page-body__text p {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .page-title {
    margin-bottom: 3rem;
  }
  .page-title h3 {
    width: 100%;
    padding-left: 3rem;
    font-size: 2.6rem;
  }
}
/* Page Headline
----------------------------------------------------------------------------------------------------*/
.recruit__headline {
  margin-bottom: 6.5rem;
}
.page-body__title {
  margin-bottom: 1rem;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-body__title {
    font-size: 2.6rem;
  }
}
/* Page SubTitle
----------------------------------------------------------------------------------------------------*/
.page-subtitle {
  width: 100%;
  background-color: #0081BB;
  margin-bottom: 5rem;
}
.page-subtitle h4 {
  padding: 2rem;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-subtitle h4 {
    padding: 1rem;
    font-size: 2rem;
  }
}
/* recruit nav
----------------------------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
.recruit-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 10rem;
}
.recruit-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0083c4;
  color: #FFF;
  text-decoration: none;
  font-size: 2rem;
  width: 30rem;
  height: 8rem;
  border-radius: 4px;
  position: relative;
}
.recruit-nav a::after {
  content: "";
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.recruit-nav a:hover {
  background-color: #323232;
}
@media screen and (max-width: 767px) {
  .recruit-nav {
    flex-direction: column;
  }
  .recruit-nav a {
    width: 100%;
  }
}
/* Page Body
----------------------------------------------------------------------------------------------------*/
.recruit__body {
  margin-bottom: 15rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .recruit__body {
    margin-bottom: 5rem;
    font-size: 2rem;
  }
}
/* recruit info
----------------------------------------------------------------------------------------------------*/
.recruit__profile {
  display: table;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.75;
  width: 100%;
  margin: 50px 0 0;
}
.recruit__profile .profile__row {
  display: table-row;
}
.profile__ttl, .profile__txt {
  display: table-cell;
  border-top: 1px solid #dcdcdc;
  padding: 20px 0;
}
.profile__ttl {
  width: 25%;
  background-color: #F4F4F4;
  padding-left: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}
.profile__txt {
  padding-left: 2rem;
  font-size: 2.4rem;
  vertical-align: middle;
}
.txt__areaBox {
  padding: 0 0 20px 0;
}
.recruit__profile .profile__row:first-child .profile__ttl, .recruit__profile .profile__row:first-child .profile__txt {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .recruit__profile {
    font-size: 1.8rem;
  }
  .profile__ttl, .profile__txt {
    font-size: 1.4rem;
  }
  .profile__ttl {
    width: 11.3rem;
    padding: 0.5rem;
  }
  .profile__txt {
    padding: 0.5rem;
  }
}
/* Side Navigation
----------------------------------------------------------------------------------------------------*/
.contents {
  position: relative;
}
.side-nav {
  display: flex;
  align-items: center;
  position: fixed;
  top: 45rem;
  right: 0;
  width: 36.5rem;
  height: 22.3rem;
  background-color: #fff;
  border-radius: 1rem 0 0 1rem;
  box-shadow: -3px 3px 16px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow: hidden;
}
.side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-nav a {
  display: block;
  width: 36.5rem;
  padding: 1rem;
  text-decoration: none;
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: left;
  transition: background 0.3s, color 0.3s;
}
.side-nav a::before {
  content: '◀';
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 2rem;
  color: #000;
}
.side-nav a.active, .side-nav a:hover {
  background-color: #0081BB;
  color: #fff;
}
.side-nav a.active::before, .side-nav a:hover::before {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contents {
    position: inherit;
  }
  .side-nav {
    display: none;
  }
}