/******************
/* career.css
******************/
@import url("low_common.css");
#career .main_section {
 margin: 55px 0 250px;
}
#career .main_section h1 {
 position: relative;
 font-size: 2.8rem;
 padding-bottom: 5px;
 margin-bottom: 10px;
}
#career .main_section h1::after {
 content: "";
 display: block;
 height: 2px;
 width: 100%;
 background: linear-gradient(to right, #315BA7 0%, #315BA7 25%, #dddddd 25%, #dddddd 100%);
}
#career .main_section .fl_box{
 width: 50%;
 margin:0 auto;
 padding-bottom:60px;
}
#career .main_section .fl_box .btn {
 width: 200px;
 margin-top: 20px;
}
#career .main_section .fl_box .btn a {
 position: relative;
 display: block;
 color: #fff;
 font-size: 1.8rem;
 padding: 10px 20px 10px 30px;
 background: #2e62ae;
 transition: 0.4s ease-in-out;
}

#career .main_section .fl_box .btn a::before {
 position: absolute;
 content: "";
 top: 16px;
 left: 15px;
 box-sizing: border-box;
 width: 8px;
 height: 8px;
 border: 8px solid transparent;
 border-left: 8px solid #ffff;
}
#career .main_section .fl_box .btn a:hover {
 opacity: 0.7;
 }

/* 追加20240325*/
#career .main_section .fl_box .btnlong {
 width: 300px;
 margin-top: 20px;

}
#career .main_section .fl_box .btnlong a {
 position: relative;
 display: block;
 color: #fff;
 font-size: 1.8rem;
 padding: 10px 20px 10px 30px;
 background: #2e62ae;
 transition: 0.4s ease-in-out;
}

#career .main_section .fl_box .btnlong a::before {
 position: absolute;
 content: "";
 top: 16px;
 left: 15px;
 box-sizing: border-box;
 width: 8px;
 height: 8px;
 border: 8px solid transparent;
 border-left: 8px solid #ffff;
}
#career .main_section .fl_box .btnlong a:hover {
 opacity: 0.7;
 }



}
@media screen and (max-width: 767px) {
 #career .main_section {
  margin: 7vw 0 20vw;
 }
 #career .main_section h1 {
  font-size: 2.0rem;
  padding-bottom: 1vw;
  margin-bottom: 1.5vw;
 }

#career .main_section .fl_box .btn {
  width: 50vw;
  margin-top: 3vw;
 }
 #career .main_section .fl_box .btn a {
  font-size: 1.4rem;
  padding: 1.3vw 2.6vw 1.3vw 5vw;
 }
 #career .main_section .fl_box .btn a::before {
  position: absolute;
  content: "";
  top: 2.5vw;
  left: 2vw;
  box-sizing: border-box;
  width: 1.5vw;
  height: 1.5vw;
  border: 1.5vw solid transparent;
  border-left: 1.5vw solid #ffff;
 }
 /* 追加20240325*/
 #career .main_section .fl_box .btnlong {
  width: 75vw;
  margin-top: 3vw;
 }
 #career .main_section .fl_box .btnlong a {
  font-size: 1.4rem;
  padding: 1.3vw 2.6vw 1.3vw 5vw;
 }
 #career .main_section .fl_box .btnlong a::before {
  position: absolute;
  content: "";
  top: 2.5vw;
  left: 2vw;
  box-sizing: border-box;
  width: 1.5vw;
  height: 1.5vw;
  border: 1.5vw solid transparent;
  border-left: 1.5vw solid #ffff;
 }
 
}