.content {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/bg-contents.png);
  padding-bottom: 120px;
}
@media (min-width: 960px) {
  .content {
    padding-bottom: 200px;
  }
}

.sectionTitleText {
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  .sectionTitleText {
    font-size: 3.2rem;
  }
}
@media (min-width: 960px) {
  .sectionTitleText {
    font-size: 4.6rem;
  }
}

.hero {
  min-height: 230px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1200px) {
  .hero {
    height: calc(100vh - 130px);
  }
}

.heroImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(10px);
  animation: blur 1.5s ease-out 0.5s forwards;
}

@keyframes blur {
  85% {
    filter: blur(0);
  }
  100% {
    filter: blur(0);
  }
}
.heroText {
  height: 100%;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .heroText {
    display: block;
  }
}
@media (min-width: 1200px) {
  .heroText {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.requirementNavButton {
  background-color: #FFEF27;
  border: 1px solid #FFEF27;
  border-radius: 30px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5em 1em;
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 3;
  transition: 0.3s;
}
.requirementNavButton:after {
  content: "";
  display: block;
  background-color: #FFEF27;
  border: 5px solid #333;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  min-width: 16px;
  transition: 0.3s;
}
.requirementNavButton:hover {
  background-color: #fff;
}
.requirementNavButton:hover:after {
  background-color: #fff;
  border: 5px solid #FFEF27;
}
@media (min-width: 768px) {
  .requirementNavButton {
    border-radius: 50px;
    font-size: 2.2rem;
    width: 300px;
  }
  .requirementNavButton:after {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}
@media (min-width: 960px) {
  .requirementNavButton {
    font-size: 2.4rem;
    width: 350px;
  }
}

.lead {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.lead:before {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url(../images/lead-deco-01.png);
  width: 100%;
  height: 65px;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .lead:before {
    top: 30px;
    height: 95px;
  }
}
.lead:after {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url(../images/lead-deco-02.png);
  width: 100%;
  height: 65px;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .lead:after {
    bottom: 30px;
    height: 95px;
  }
}
@media (min-width: 768px) {
  .lead {
    padding: 170px 0;
  }
}

.leadText {
  width: 95%;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .leadText {
    width: 90%;
  }
}
@media (min-width: 960px) {
  .leadText {
    font-size: 1.8rem;
    max-width: 900px;
  }
}

.about {
  position: relative;
}
@media (min-width: 960px) {
  .about {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
  }
}

.aboutTitle {
  max-width: 326px;
  width: 100%;
  margin: auto auto 30px;
}
@media (min-width: 768px) {
  .aboutTitle {
    max-width: 100%;
    width: 40%;
    margin: 0;
  }
}
@media (min-width: 960px) {
  .aboutTitle {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .aboutQaList {
    width: 65%;
    margin: -35% 0 0 auto;
  }
}
@media (min-width: 960px) {
  .aboutQaList {
    width: 100%;
    margin-top: 100px;
  }
}

.aboutQaListItem {
  counter-increment: item;
  border-top: 1px solid #D9D9D9;
  padding: 30px 0;
}
.aboutQaListItem:last-child {
  border-bottom: 1px solid #D9D9D9;
}
@media (min-width: 960px) {
  .aboutQaListItem {
    padding: 40px 0;
  }
}

.aboutQaTitle {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  width: 100%;
  margin-bottom: 15px;
}
.aboutQaTitle:before {
  color: #E9E9E9;
  font-family: "Montserrat", sans-serif;
  content: "Q" counter(item);
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .aboutQaTitle {
    grid-template-columns: 55px 1fr;
    gap: 10px;
    font-size: 2.6rem;
  }
  .aboutQaTitle:before {
    font-size: 3.6rem;
  }
}
@media (min-width: 960px) {
  .aboutQaTitle {
    grid-template-columns: 80px 1fr;
    gap: 20px;
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
  .aboutQaTitle:before {
    font-size: 4.6rem;
    margin-top: 2px;
  }
}

.aboutQaText {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .aboutQaText {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .aboutQaText {
    font-size: 2rem;
    padding-left: 100px;
  }
}

.jobOuter {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}
.jobOuter:after {
  content: "";
  display: block;
  background-color: #F5F5F5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}
@media (min-width: 960px) {
  .jobOuter {
    padding: 150px 0;
  }
  .jobOuter:after {
    width: 80%;
  }
}

.job {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .job {
    gap: 30px;
  }
}
@media (min-width: 960px) {
  .job {
    grid-template-columns: 440px 1fr;
    gap: 5%;
  }
}

.jobTextBox {
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .jobTextBox {
    width: 100%;
  }
}

.jobTitleColumnBox {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 5%;
  width: 100%;
}

.jobLInkButton {
  background-color: #00D8D8;
  border: 1px solid #00D8D8;
  border-radius: 30px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5em 1em;
  min-width: 170px;
  position: relative;
  transition: 0.3s;
}
.jobLInkButton:after {
  content: "";
  display: block;
  background-color: #00D8D8;
  border: 5px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  min-width: 16px;
  transition: 0.3s;
}
.jobLInkButton:hover {
  background-color: #fff;
}
.jobLInkButton:hover:after {
  background-color: #fff;
  border: 5px solid #00D8D8;
}

.jobList {
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .jobList {
    margin-bottom: 0;
  }
}

.jobListItem {
  border-top: 1px solid #D9D9D9;
}
.jobListItem:last-child {
  border-bottom: 1px solid #D9D9D9;
}

.jobLink {
  display: flex;
  align-items: center;
  gap: 20px;
  color: inherit;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  padding: 1em 0.5em 1em 0;
  transition: 0.3s;
}
.jobLink:before {
  content: "";
  display: block;
  background-color: #fff;
  border: 5px solid #C2C2C2;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  min-width: 16px;
  transition: 0.3s;
}
.jobLink:hover:before {
  border: 5px solid #00D8D8;
}
@media (min-width: 960px) {
  .jobLink {
    font-size: 2.4rem;
  }
  .jobLink:before {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}

.jobImgBox {
  position: relative;
}
@media (min-width: 960px) {
  .jobImgBox {
    margin-right: -10%;
  }
}

.jobImgLabel {
  color: #00D8D8;
  font-family: "Montserrat", sans-serif;
  font-size: 8vw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin: auto;
  position: absolute;
  bottom: -8%;
  right: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 960px) {
  .jobImgLabel {
    font-size: 4vw;
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .jobImgLabel {
    font-size: 6.4rem;
  }
}

.jobImg {
  position: relative;
  z-index: 1;
}

.welfareColumnBox {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .welfareColumnBox {
    gap: 30px;
  }
}
@media (min-width: 960px) {
  .welfareColumnBox {
    grid-template-columns: 42% 1fr;
    gap: 5%;
  }
}

.welfareImg {
  margin: auto;
}

.welfarePointImg {
  margin-left: auto;
  margin-right: auto;
}

.welfarePointList {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .welfarePointList {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
  }
}
@media (min-width: 960px) {
  .welfarePointList {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
  }
}

.welfarePointTitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .welfarePointTitle {
    font-size: 2rem;
  }
}

.welfareSlider {
  position: relative;
}
.welfareSlider .swiperNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
}
@media (min-width: 768px) {
  .welfareSlider .swiperNav {
    gap: 50px;
  }
}
.welfareSlider .swiperNav .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  position: static;
  bottom: auto;
  left: auto;
  right: auto;
  width: auto;
}
.welfareSlider .swiperNav .swiper-pagination-bullet {
  background: #ccc;
  width: 12px;
  height: 12px;
  margin: 0;
  opacity: 1;
  transition: 0.3s;
}
.welfareSlider .swiperNav .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #18357F;
}
.welfareSlider .swiperNav .swiper-pagination-bullet:hover {
  background: #18357F;
  opacity: 0.7;
}

.educationColumnBox {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .educationColumnBox {
    gap: 30px;
  }
}
@media (min-width: 960px) {
  .educationColumnBox {
    grid-template-columns: 1fr 42%;
    gap: 5%;
  }
}

@media (min-width: 960px) {
  .educationTextBox {
    order: 2;
  }
}

@media (min-width: 960px) {
  .educationImgBox {
    order: 1;
  }
}

.educationImg {
  margin: auto;
}

.educationPointList {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .educationPointList {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 960px) {
  .educationPointList {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.educationPointListItem {
  background-color: #F5F5F5;
  box-shadow: 4px 4px 0px 0px #ccc;
  padding: 30px 15px;
}

.educationPointTitle {
  color: #0085EE;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .educationPointTitle {
    font-size: 2rem;
  }
}

.voiceSectionTitle {
  text-align: center;
}

.voiceArchiveList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .voiceArchiveList {
    gap: 20px;
    width: 90%;
  }
}
@media (min-width: 960px) {
  .voiceArchiveList {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
}

.voiceArchiveListItem {
  list-style-type: none;
  margin-left: 0;
}

.voiceArchiveListLink {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.voiceArchiveListLink:after {
  content: "";
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .voiceArchiveListLink:after {
    height: 116px;
  }
}
.voiceArchiveListLink:hover .voiceArchiveImg {
  transform: translate3d(0, 0, 0) scale(1.2);
}

.voiceArchivePlant {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.voiceArchivePlant.shizuoka {
  background-color: #0085EE;
}
.voiceArchivePlant.kyushu {
  background-color: #FF4867;
}
.voiceArchivePlant.tohoku {
  background-color: #99DA00;
}
@media (min-width: 768px) {
  .voiceArchivePlant {
    font-size: 1.2rem;
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1200px) {
  .voiceArchivePlant {
    font-size: 1.5rem;
    width: 80px;
    height: 80px;
  }
}

.voiceArchiveTextBox {
  padding-right: 10px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}
@media (min-width: 768px) {
  .voiceArchiveTextBox {
    bottom: 20px;
    left: 20px;
  }
}
@media (min-width: 960px) {
  .voiceArchiveTextBox {
    bottom: 10px;
    left: 10px;
  }
}

.voiceArchiveDept {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0;
}
@media (min-width: 768px) {
  .voiceArchiveDept {
    font-size: 1.8rem;
  }
}

.voiceArchiveName {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .voiceArchiveName {
    font-size: 4.2rem;
  }
}

.voiceArchiveImg {
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
  transition: 0.3s;
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1);
}

.messageSectionTitle {
  text-align: center;
}

.messageColumnBox {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .messageColumnBox {
    gap: 30px;
  }
}
@media (min-width: 960px) {
  .messageColumnBox {
    grid-template-columns: 1fr 40%;
    gap: 40px;
  }
}

.messageTitle {
  color: #00D8D8;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
}
.messageTitle span {
  display: inline-block;
}
@media (min-width: 768px) {
  .messageTitle {
    font-size: 2.6rem;
  }
}
@media (min-width: 960px) {
  .messageTitle {
    font-size: 3.2rem;
  }
}

.messageImg {
  margin: auto;
}

.profile {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.profileTitle {
  display: flex;
  align-items: center;
  gap: 20px;
}
.profileTitle span {
  min-width: fit-content;
}
.profileTitle:after {
  content: "";
  display: block;
  background-color: #CCCCCC;
  width: 100%;
  height: 1px;
}

.profileDept {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profileDeptTitle {
  border: 1px solid #AEAEAE;
  font-size: 1.4rem;
  padding: 0 5px;
}

.profileText {
  margin-top: 5px;
}

.requirementNavList {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .requirementNavList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .requirementNavList {
    gap: 40px;
  }
}

.requirementNavLink {
  border-radius: 20px;
  color: inherit;
  display: inline-flex;
  gap: 0 1em;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 1em 0.5em;
  text-decoration: none;
  transition: 0.3s;
}
.requirementNavLink.shinsotsu {
  background-color: #FFEF27;
  border: 1px solid #FFEF27;
}
.requirementNavLink.career {
  background-color: #00D8D8;
  border: 1px solid #00D8D8;
}
.requirementNavLink:hover.shinsotsu {
  background-color: #fff;
}
.requirementNavLink:hover.career {
  background-color: #fff;
}
@media (min-width: 768px) {
  .requirementNavLink {
    font-size: 2.4rem;
  }
}
@media (min-width: 960px) {
  .requirementNavLink {
    font-size: 3.4rem;
  }
}

/*# sourceMappingURL=recruit.css.map*/