@charset "UTF-8";
body {
  font-size: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.7;
  position: relative;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
}

p {
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

img {
  width: 100%;
}

a {
  transition-property: opacity;
  transition-duration: 0.5s;
}

a:hover {
  opacity: 0.5;
}

.sp_show {
  display: block;
}
@media (min-width: 768px) {
  .sp_show {
    display: none;
  }
}

.pc_show {
  display: none;
}
@media (min-width: 768px) {
  .pc_show {
    display: block;
  }
}

.sp_h_menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5000;
  background: #ffffff;
}
@media (min-width: 768px) {
  .sp_h_menu {
    display: none;
  }
}

h1 {
  left: 0;
  width: 12rem;
  padding: 1rem;
}
h1 img {
  width: 100%;
}
@media (min-width: 768px) {
  h1 {
    width: 200px;
    position: relative;
  }
}

/* pc nremu */
.pc_h_menu {
  display: none;
}
@media (min-width: 768px) {
  .pc_h_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
  }
  .pc_h_menu .pc_h_menu_wrap {
    display: block;
    width: 970px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    z-index: 5000;
  }
  .pc_h_menu .pc_h_menu_wrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc_h_menu .pc_h_menu_wrap ul li {
    margin-left: 2rem;
  }
  .pc_h_menu .pc_h_menu_wrap ul li a {
    font-size: 1rem;
    font-weight: bold;
  }
}

.to_requirements a {
  background: #ffffff;
  padding: 0.5rem 1rem;
  color: #113380;
  display: block;
}
@media (min-width: 768px) {
  .to_requirements a {
    background: #113380;
    color: #ffffff;
  }
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 5000;
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 3px;
  right: 15px;
  background: #707070;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 18px;
}

.hamburger__line--2 {
  top: 28px;
}

.hamburger__line--3 {
  top: 38px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 26px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 26px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%; /* 出てくるスライドメニューの幅 */
  padding: 5%;
  height: 100vh;
  background: #113380;
  transition: all 0.5s;
  z-index: 2000;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  font-weight: bold;
}
.sp-nav ul {
  margin-top: 3rem;
}
.sp-nav ul li {
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.7rem 0;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 1000;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

.wrap {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wrap {
    width: 970px;
  }
}

h2 {
  font-weight: bold;
  text-align: center;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  margin: 0 auto 3rem auto;
  width: 100%;
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.5rem;
    margin: 0 auto 5rem auto;
  }
}
h2 strong {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  font-size: 2.5rem;
  color: #113380;
  background: linear-gradient(transparent 60%, rgba(17, 51, 128, 0.2) 30%);
}
@media (min-width: 768px) {
  h2 strong {
    font-size: 3rem;
  }
}
h2 span {
  display: block;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  h2 span {
    margin-top: 2rem;
  }
}

.b_0 {
  margin-bottom: 0 !important;
}

footer {
  background: #113380;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  footer {
    padding: 0.6rem 0;
  }
}
footer p {
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  footer .wrap {
    display: flex;
    justify-content: space-between;
  }
}
footer ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer ul {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  footer ul li {
    width: 48%;
  }
}
footer ul li a {
  padding: 1rem;
}
footer ul .facebook {
  line-height: 1;
}
@media (max-width: 768px) {
  footer ul .facebook {
    width: 2rem;
  }
}
footer ul .facebook img {
  width: 1rem;
}
footer ul .youtube {
  line-height: 1;
}
@media (max-width: 768px) {
  footer ul .youtube {
    width: 2rem;
  }
}
footer ul .youtube img {
  width: 1.2rem;
}

#career_top {
  background: url(../img/img_main_bg.jpg) 50% 50%;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 4rem;
}
#career_top h2 {
  width: 100%;
}
#career_top img {
  width: 65%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #career_top img {
    width: 100%;
  }
}

.top_message section {
  color: #ffffff;
  width: 100%;
  margin-bottom: 5rem;
}
.top_message section .area_text {
  background-image: linear-gradient(90deg, rgb(15, 51, 128), rgb(35, 152, 179));
  padding: 5rem 0 2rem 0;
}
@media (min-width: 768px) {
  .top_message section .area_text {
    padding: 5rem 0 3rem 0;
  }
}
.top_message section .area_text h2 {
  color: #ffffff;
}
.top_message section .area_text h2 strong {
  color: #ffffff;
  background: linear-gradient(transparent 60%, rgba(175, 215, 237, 0.4) 30%);
}
.top_message section .area_text h3 {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .top_message section .area_text h3 {
    font-size: 2rem;
  }
}
.top_message section .area_text p {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .top_message section .area_text p {
    margin-bottom: 3rem;
  }
}
.top_message section .president strong {
  font-size: 1.5rem;
  display: block;
}

.our_work ul {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .our_work ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.our_work ul li {
  background: rgba(175, 215, 237, 0.4);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .our_work ul li {
    margin-bottom: 4rem;
    width: 48%;
  }
}
.our_work ul li h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.our_work ul li h3 div {
  padding: 0;
  color: #113380;
  font-size: 1.8rem;
}
.our_work ul li div {
  padding: 1.5rem;
}

.working_environment {
  background-image: linear-gradient(90deg, rgb(15, 51, 128), rgb(35, 152, 179));
  color: #ffffff;
  padding: 5rem 0;
  margin-bottom: 5rem;
}
.working_environment h2 {
  color: #ffffff;
}
.working_environment h2 strong {
  color: #ffffff;
  background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.3) 30%);
}
.working_environment .we_title {
  margin-bottom: 3rem;
}
.working_environment .we_title h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px #ffffff;
  margin-bottom: 1rem;
}
.working_environment .we_office {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.working_environment .we_office img:nth-child(1) {
  width: 60%;
}
.working_environment .we_office img:nth-child(2) {
  width: 38%;
}
.working_environment .we_event {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .working_environment .we_event {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.working_environment .we_event li {
  background: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .working_environment .we_event li {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .working_environment .we_event li {
    width: 32%;
  }
}
.working_environment .we_event li div {
  padding: 1.5rem;
}
.working_environment .we_event li h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.working_environment .we_qualification,
.working_environment .we_education,
.working_environment .we_benefit {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .working_environment .we_qualification,
  .working_environment .we_education,
  .working_environment .we_benefit {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.working_environment .we_qualification li,
.working_environment .we_education li,
.working_environment .we_benefit li {
  color: #000000;
  padding: 1rem 1.5rem;
  background: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .working_environment .we_qualification li,
  .working_environment .we_education li,
  .working_environment .we_benefit li {
    width: 48%;
    padding: 3%;
    margin-bottom: 1.5rem;
  }
}
.working_environment .we_qualification li h4,
.working_environment .we_education li h4,
.working_environment .we_benefit li h4 {
  font-weight: bold;
  font-size: 1rem;
  color: #113380;
}
@media (min-width: 768px) {
  .working_environment .we_qualification li h4,
  .working_environment .we_education li h4,
  .working_environment .we_benefit li h4 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .working_environment .we_qualification {
    margin-bottom: 0;
  }
}
.working_environment .we_qualification li {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.working_environment .we_qualification li div {
  width: 80%;
}
.working_environment .we_qualification li img {
  width: 18%;
  padding: 1rem 0 0 1rem;
}
.working_environment .we_qualification .we_q_04 {
  display: block;
  background: #113380;
  color: #ffffff;
}
.working_environment .we_qualification .we_q_04 h4 {
  color: #ffffff;
}
.working_environment .strength {
  color: #000000;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .working_environment .strength {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.working_environment .strength li {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 5%;
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .working_environment .strength li {
    width: 49%;
  }
}
.working_environment .strength li h4 {
  font-size: 1.3rem;
  font-weight: bold;
}
.working_environment .strength .pc_strength01 {
  width: 100%;
  padding: 3rem 4rem 1rem 4rem;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength01 {
    padding: 3rem 5rem;
    display: flex;
    justify-content: space-between;
  }
}
.working_environment .strength .pc_strength01 div {
  width: 90%;
  margin: 0 auto 3rem auto;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength01 div {
    width: 30%;
    margin-bottom: 0;
  }
}
.working_environment .strength .pc_strength01 div h4 {
  margin-top: 1.5rem;
}
.working_environment .strength .pc_strength01 div h4 span {
  font-size: 0.8rem;
  font-weight: normal;
  padding-left: 0.5rem;
}
.working_environment .strength .pc_strength02 div {
  display: flex;
  align-items: center;
  padding: 1rem 3rem;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength02 div {
    padding: 1rem 3rem;
    justify-content: space-between;
  }
}
.working_environment .strength .pc_strength02 div img {
  width: 40%;
}
@media (max-width: 768px) {
  .working_environment .strength .pc_strength02 div img {
    width: 30%;
    margin-right: 2rem;
  }
}
.working_environment .strength .pc_strength02 div p {
  font-size: 1rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength02 div p {
    font-size: 1.5rem;
  }
}
.working_environment .strength .pc_strength02 div p strong {
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength02 div p strong {
    font-size: 3.5rem;
  }
}
.working_environment .strength .pc_strength02:nth-child(3) div img {
  width: 30%;
}
@media (max-width: 768px) {
  .working_environment .strength .pc_strength02:nth-child(3) div img {
    width: 27%;
    margin: 1rem 2.5rem 1rem 0;
  }
}
.working_environment .strength .pc_strength03 {
  display: flex;
  text-align: left;
  align-items: center;
  line-height: 1.2;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength03 {
    padding: 2rem 4.5rem;
  }
}
.working_environment .strength .pc_strength03 .strength_info {
  text-align: right;
  font-size: 0.6rem;
  position: absolute;
  right: 5%;
  bottom: 1rem;
  font-weight: normal;
}
.working_environment .strength .pc_strength03 img {
  width: 40%;
  height: auto;
  display: block;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .working_environment .strength .pc_strength03 img {
    width: 30%;
  }
}
.working_environment .strength .pc_strength03 h4 {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength03 h4 {
    font-size: 1.3rem;
  }
}
.working_environment .strength .pc_strength03 p {
  font-size: 1rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength03 p {
    font-size: 1.5rem;
  }
}
.working_environment .strength .pc_strength03 p strong {
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (min-width: 768px) {
  .working_environment .strength .pc_strength03 p strong {
    font-size: 3.5rem;
  }
}

.interview_wrap li {
  border-bottom: 1px dotted #000000;
  padding: 2rem 0 2rem 0;
}
@media (min-width: 768px) {
  .interview_wrap li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5rem 0 4rem 0;
  }
}
@media (min-width: 768px) {
  .interview_wrap li .interview_person {
    width: 45%;
  }
}
.interview_wrap li .interview_person h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.interview_wrap li .interview_person .interview_detail {
  padding: 1rem 0 2rem 0;
}
@media (min-width: 768px) {
  .interview_wrap li .interview_person .interview_detail {
    padding: 1.5rem;
  }
}
.interview_wrap li .interview_person .interview_detail h3 {
  margin-bottom: 1rem;
}
.interview_wrap li .interview_person .interview_detail h3 span {
  font-size: 0.8rem;
  font-weight: normal;
  padding-left: 1rem;
}
.interview_wrap li .interview_person .interview_img {
  position: relative;
}
.interview_wrap li .interview_person .interview_img h3 {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 1rem;
  z-index: 1000;
  text-align: right;
  color: #ffffff;
}
@media (min-width: 768px) {
  .interview_wrap li .interview_qa {
    width: 50%;
  }
}
.interview_wrap li .interview_qa li {
  padding: 0;
  border-bottom: none;
  margin-bottom: 1rem;
}
.interview_wrap li .interview_qa li h4 {
  font-size: 1rem;
  font-weight: bold;
}
.interview_wrap .even {
  flex-direction: row-reverse;
}
.interview_wrap .even .interview_qa li {
  flex-direction: row;
}

.entry {
  background-image: linear-gradient(90deg, rgb(15, 51, 128), rgb(35, 152, 179));
  color: #ffffff;
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .entry {
    padding: 6rem 0;
  }
}
.entry h2 {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .entry h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .entry .entry_area {
    display: flex;
    justify-content: space-between;
  }
}
.entry .entry_area a {
  display: block;
  width: 100%;
  background: #ffffff;
  color: #113380;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .entry .entry_area a {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .entry .entry_area a {
    width: 48%;
    font-size: 2rem;
  }
}
.entry .entry_area a::after {
  content: "→";
  display: block;
}

.human_image h2,
.flow h2,
.requirements h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .human_image h2,
  .flow h2,
  .requirements h2 {
    font-size: 3rem;
  }
}

.requirements ul {
  border-top: 1px dotted #000000;
  margin-bottom: 5rem;
}
.requirements li {
  border-bottom: 1px dotted #000000;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .requirements li {
    display: flex;
    flex-wrap: nowrap;
    padding: 4rem 0 2rem 0;
  }
}
.requirements li h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #113380;
}
@media (min-width: 768px) {
  .requirements li h3 {
    width: 30%;
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .requirements li div {
    width: 68%;
  }
}
.requirements li div p {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .requirements li div p {
    margin-bottom: 2rem;
  }
}
.requirements li div h4 {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .requirements li div h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.flow {
  background-color: rgba(175, 215, 237, 0.4);
  padding: 4rem 0;
  margin-bottom: 5rem;
}
.flow ul {
  color: #113380;
}
@media (min-width: 768px) {
  .flow ul {
    display: flex;
    justify-content: space-between;
  }
}
.flow li::after {
  content: "↓";
}
@media (min-width: 768px) {
  .flow li::after {
    content: "→";
  }
}
.flow li:last-child::after {
  content: none;
}
.flow li {
  text-align: center;
  font-size: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .flow li {
    display: flex;
    justify-content: space-between;
    width: 32%;
  }
}
.flow li div {
  background: #ffffff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  line-height: 1.2;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .flow li div {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .flow li div {
    width: 260px;
    height: 260px;
    line-height: 1.6;
    padding: 5rem 0;
  }
}

.human_image ul {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .human_image ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.human_image ul li {
  background: rgba(175, 215, 237, 0.4);
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .human_image ul li {
    width: 48%;
  }
}
.human_image ul li img {
  width: 30%;
  margin: 2rem auto 0 auto;
}
.human_image ul li div {
  padding: 2rem;
}
.human_image ul li div h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.human_image ul li div p {
  text-align: left;
}/*# sourceMappingURL=career.css.map */