.container-1000 {
  width: calc(100% - 30px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-720 {
  width: calc(100% - 30px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .container-720 {
    width: 100%;
  }
}

.l-two-divi {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 60px;
}
.l-two-divi .l-cell {
  flex-basis: calc(100% - 0px);
}
@media screen and (min-width: 768px) {
  .l-two-divi .l-cell {
    flex-basis: calc(50% - 90px);
  }
}
.l-two-divi .l-cell-2 {
  flex-basis: calc(100% - 0px);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .l-two-divi .l-cell-2 {
    flex-basis: calc(50% - 30px);
  }
}

.l-three-divi {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
}
@media screen and (min-width: 768px) {
  .l-three-divi {
    flex-direction: row;
  }
}
.l-three-divi .l-cell {
  flex-basis: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-three-divi .l-cell {
    flex-basis: calc(50% - 90px);
    width: 100%;
    max-width: 400px;
    margin-left: inherit;
    margin-right: inherit;
  }
}
@media screen and (min-width: 1000px) {
  .l-three-divi .l-cell {
    flex-basis: calc(33% - 75px);
    max-width: 240px;
  }
}

.l-four-divi {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 30px;
}
.l-four-divi .l-cell {
  flex-basis: calc(50% - 15px);
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-four-divi .l-cell {
    flex-basis: calc(25% - 23px);
  }
}

.center-head {
  display: flex;
  justify-content: center;
}

.mat-gray1100 {
  background-color: #F2F2F2;
}

.mat-gray1050 {
  background-color: #E6E6E6;
}

.mat-gray1030 {
  background-color: #E0DDDD;
}

.mat-gray1000 {
  background-color: #D9D9D9;
}

.mat-white {
  background-color: white;
}

.mt-120 {
  margin-top: 120px;
}

.mt-100 {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .mt-100 {
    margin-top: 100px;
  }
}

.mt-60 {
  margin-top: 60px;
}

.w-100p {
  width: 100%;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-44 {
  margin-bottom: 44px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-75 {
  margin-bottom: 75px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pos-relative {
  position: relative;
}

.h1-title {
  font-size: 60px;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-weight: 400;
  font-style: italic;
  position: relative;
  display: inline;
}
.h1-title::after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  width: 100%;
  height: 10px;
  background-color: black;
}
@media screen and (min-width: 768px) {
  .h1-title {
    font-size: 90px;
  }
}

.h2-title {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.h2-message {
  position: relative;
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .h2-message {
    font-size: 30px;
    line-height: 44px;
  }
}
.h2-message::after {
  position: absolute;
  content: "";
  bottom: -32px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 297px;
  height: 24px;
  background-image: url("message_balloon-underline.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.h3-title {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.h3-title-bar {
  position: relative;
  padding-left: 15px;
}
.h3-title-bar::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 35px;
  background-color: black;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.h4-title {
  font-size: 21px;
  line-height: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.p-large {
  font-size: 24px;
  line-height: 35px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-medium {
  font-size: 16px;
  line-height: 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-small {
  font-size: 12px;
  line-height: 17px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-center {
  text-align: center;
}

.dis-block {
  display: block;
}

.dis-none {
  display: none;
}

@media screen and (min-width: 400px) {
  .dis-sm-block {
    display: block;
  }
}

@media screen and (min-width: 400px) {
  .dis-sm-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .dis-md-block {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .dis-md-none {
    display: none;
  }
}

.internal-link-group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  column-gap: 30px;
}
@media screen and (min-width: 768px) {
  .internal-link-group {
    flex-direction: row;
  }
}

.internal-link-group.culture {
  flex-direction: column;
}

.internal-link {
  width: 100%;
}

.internal-link-label {
  padding: 15px 15px 15px 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  column-gap: 10px;
}
.internal-link-label .icon-down {
  width: 30px;
  height: 30px;
}

.internal-link-item {
  position: relative;
  padding: 15px 15px 15px 30px;
}
.internal-link-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  width: 8px;
  height: 2px;
  background-color: black;
}

.data-table dt, .data-table dd {
  padding: 30px;
}
.data-table dt {
  background-color: #D9D9D9;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 26px;
}
.data-table dd {
  background-color: white;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 26px;
}
.data-table dd:last-child {
  box-sizing: border-box;
  border-bottom: solid 1px #D9D9D9;
}

.capsule-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.capsule-item {
  font-size: 21px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 30px;
  background-color: #2B59D3;
  color: white;
  text-align: center;
  padding: 27px;
  border-radius: 42px;
  margin-bottom: 60px;
  position: relative;
  box-sizing: border-box;
  border: solid 2px #2B59D3;
}
.capsule-item::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 60px;
  background-color: #2B59D3;
}
.capsule-item:last-child {
  margin-bottom: 0;
}
.capsule-item:last-child::after {
  content: none;
}

.capsule-link {
  font-size: 21px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 30px;
  color: #2B59D3;
  background-color: white;
  text-align: center;
  border-radius: 42px;
  margin-bottom: 60px;
  position: relative;
  box-sizing: border-box;
  border: solid 3px #2B59D3;
}
.capsule-link::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 60px;
  background-color: #2B59D3;
}
.capsule-link:hover {
  background-color: #2B59D3;
  color: white;
}
.capsule-link:hover > a {
  color: white;
  text-decoration: none;
}
.capsule-link > a {
  color: #2B59D3;
  display: block;
  width: calc(100% - 54px);
  height: 100%;
  margin: 27px;
}
.capsule-link > a:hover {
  text-decoration: none;
}

a.capsule-item:hover {
  text-decoration: none;
  border: solid 2px #2B59D3;
  background-color: white;
  color: #2B59D3;
}

.works_point {
  font-size: 21px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-left: 45px;
  position: relative;
}
.works_point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("icon_works_point.png");
}

.works_image {
  width: 100%;
}

.works_profile-frame {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.works_profile-frame-2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 139px;
}
@media screen and (min-width: 768px) {
  .works_profile-frame-2 {
    margin-bottom: 30px;
  }
}

.works_profile {
  position: absolute;
  bottom: -62px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 290px;
  margin-bottom: 0px;
}
.works_profile-2 {
  position: absolute;
  bottom: -162px;
  right: 50%;
  transform: translate(50%, 0);
  width: 290px;
  margin-bottom: 0px;
  height: 237px;
}
@media screen and (min-width: 768px) {
  .works_profile-2 {
    bottom: -49px;
    right: 0;
    transform: translate(-50%, 0);
    height: auto;
  }
}

.works_profile_label {
  background-color: #1C3775;
  color: white;
  font-size: 14px;
  padding: 15px;
  font-weight: 700;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  column-gap: 15px;
  align-items: center;
}

.works_profile_label-2 {
  color: #1C3775;
  background-color: white;
  font-size: 14px;
  padding: 30px;
  font-weight: 700;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  column-gap: 15px;
  align-items: center;
  flex-direction: column;
}

.works_profile_image {
  width: 30px;
  height: 30px;
}

.works_profile_name {
  color: #1C3775;
  background-color: white;
  padding: 15px;
  box-sizing: border-box;
  border-left: 2px solid #1C3775;
  border-right: 2px solid #1C3775;
  border-bottom: 2px solid #1C3775;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

.works_profile_name-2 {
  background-color: #1C3775;
  color: white;
  padding: 30px;
  box-sizing: border-box;
  border-left: 2px solid #1C3775;
  border-right: 2px solid #1C3775;
  border-bottom: 2px solid #1C3775;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  display: flex;
  flex-direction: column;
}

.company_business-item {
  position: relative;
  padding: 30px;
  margin-top: 125px;
}

.company_business-image {
  width: 100%;
  max-width: 250px;
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 0;
}

.culture_efforts-item {
  position: relative;
  padding: 30px;
  margin-top: 125px;
}

.culture_efforts-image {
  width: 100%;
  max-width: 390px;
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 0;
}

.sec_people .swiper {
  width: 600px;
  height: 300px;
}

@media screen and (min-width: 768px) {
  .slide-people:nth-child(even) {
    margin-top: 50px;
  }
}

.slide-people-image {
  width: calc(100% - 30px);
  max-width: 290px;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.stickout-bottom {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 240px;
}
@media screen and (min-width: 768px) {
  .stickout-bottom {
    width: 161px;
  }
}

.sec-firstview {
  padding-bottom: 60px;
  background: linear-gradient(to right, #2B59D3, #1E429F);
}
@media screen and (min-width: 768px) {
  .sec-firstview {
    background: unset;
    height: 633px;
    padding-bottom: 0;
  }
}

.top-fv_image {
  position: inherit;
  height: auto;
  z-index: 70;
}
@media screen and (min-width: 768px) {
  .top-fv_image {
    position: absolute;
    top: 40px;
    left: 0;
    height: 489px;
  }
}
@media screen and (min-width: 1000px) {
  .top-fv_image {
    height: 513px;
  }
}

.top-fv_text {
  box-sizing: border-box;
}

.top-fv_title {
  position: inherit;
  z-index: 80;
}
@media screen and (min-width: 768px) {
  .top-fv_title {
    position: absolute;
    top: 287px;
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .top-fv_title {
    top: 340px;
  }
}
.top-fv_title .top-fv_title-en {
  font-size: 45px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  color: white;
  font-style: italic;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top-fv_title .top-fv_title-en {
    font-size: 90px;
  }
}
.top-fv_title .top-fv_title-jp {
  font-size: 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-fv_title .top-fv_title-jp {
    margin-bottom: 0;
  }
}

.top-fv_link {
  position: inherit;
  z-index: 90;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  row-gap: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-fv_link {
    position: absolute;
    top: 540px;
    right: 0;
    flex-direction: row;
    width: 90%;
  }
}
@media screen and (min-width: 1000px) {
  .top-fv_link {
    top: 360px;
    flex-direction: column;
    width: auto;
  }
}
.top-fv_link > a {
  width: auto;
  display: block;
  padding: 25px;
  background-color: white;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1C3775;
  text-align: right;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-fv_link > a {
    width: 235px;
  }
}
@media screen and (min-width: 1000px) {
  .top-fv_link > a {
    width: 300px;
  }
}
.top-fv_link > a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: white;
  top: 50%;
  left: -15px;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .top-fv_link > a::before {
    width: 75px;
    left: -75px;
  }
}
.top-fv_link > a::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #1C3775;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .top-fv_link > a::after {
    width: 75px;
  }
}

.top-fv_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 654px;
  background: linear-gradient(to right, #2B59D3, #1E429F);
  z-index: 60;
}
@media screen and (min-width: 1000px) {
  .top-fv_bg {
    height: 633px;
  }
}

.top-company_label {
  background-color: #1C3775;
  padding: 15px;
}

.top-company_label-jp {
  color: white;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
}

.top-company_label-en {
  color: white;
  font-size: 14px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
}

.top-message_frame {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1000px) {
  .top-message_frame {
    flex-wrap: nowrap;
  }
}

.top-message_item > img {
  width: 100%;
}

.tmi-1 {
  order: 2;
  flex-basis: 50%;
}
@media screen and (min-width: 1000px) {
  .tmi-1 {
    order: 1;
    padding-top: 85px;
    padding-bottom: 85px;
    flex-basis: 100%;
  }
}

.tmi-3 {
  order: 3;
  flex-basis: 50%;
}
@media screen and (min-width: 1000px) {
  .tmi-3 {
    padding-top: 85px;
    padding-bottom: 85px;
    flex-basis: 100%;
  }
}

.top-message_item_message {
  background-color: #1C3775;
  padding: 50px 15px;
  order: 1;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .top-message_item_message {
    order: 2;
    padding: 50px;
    flex-basis: 100%;
  }
}

.top-message_head-en {
  color: white;
  text-align: center;
  font-size: 18px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
}

.top-message_head-jp {
  font-size: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 54px;
  color: white;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 35px;
}

.top-message_description {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 32px;
  color: white;
  margin: 0 auto 60px;
  max-width: 400px;
}

a.top-message_link {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  border: solid 2px white;
  padding: 20px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 26px;
  color: white;
  max-width: 400px;
  margin: 0 auto;
}

.top-works_link-list {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 60px;
}

.top-works_link-item {
  display: flex;
  flex-direction: column;
  height: auto;
}
.top-works_link-item:nth-child(even) .top-works_link-text {
  right: none;
  left: 485px;
}
@media screen and (min-width: 1000px) {
  .top-works_link-item:nth-child(even) .top-works_link-text {
    right: none;
    left: 665px;
  }
}
.top-works_link-item:nth-child(even) .top-works_link-image {
  right: none;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top-works_link-item {
    height: 400px;
  }
}
@media screen and (min-width: 1000px) {
  .top-works_link-item {
    height: 520px;
  }
}

.top-works_link-text {
  z-index: 950;
  background-color: black;
  padding: 15px;
  display: flex;
  flex-direction: column;
  order: 2;
}
.top-works_link-text:hover {
  color: white;
}
@media screen and (min-width: 768px) {
  .top-works_link-text {
    position: absolute;
    top: 60px;
    right: 475px;
    z-index: 950;
    background-color: black;
    padding: 15px;
    width: 200px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1000px) {
  .top-works_link-text {
    top: 90px;
    right: 665px;
  }
}

.top-works_link-message, .top-works_link-volume {
  color: white;
}
@media screen and (min-width: 768px) {
  .top-works_link-message, .top-works_link-volume {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.top-works_link-message {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .top-works_link-message {
    font-size: 18px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1000px) {
  .top-works_link-message {
    font-size: 21px;
    line-height: 42px;
  }
}

.top-works_link-volume {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 21px;
}

.top-works_link-image {
  z-index: 900;
  width: 100%;
  order: 1;
}
@media screen and (min-width: 768px) {
  .top-works_link-image {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 900;
    width: 600px;
  }
}
@media screen and (min-width: 1000px) {
  .top-works_link-image {
    width: 780px;
  }
}
.top-works_link-image > img {
  width: 100%;
}

.message_president-sign {
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 50px;
  width: 180px;
}

.company_head > p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}
.company_head > h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}

.culture_graph {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.youtube-embed {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube-embed iframe {
  margin-bottom: 75px;
  width: 100%;
  height: 100%;
}

.container {
  margin-top: 0px;
}

#recruit .container {
  margin-top: 0px;
}

@media screen and (min-width: 769px) {
  #recruit .container {
    margin-top: 128px;
  }
  .container {
    margin-top: 128px;
  }
}
header .head_inr {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
}
header .head_inr .hyogoinfo {
  padding-top: 29px;
}
header .head_inr .header-list {
  display: none;
}
header .open_toggle {
  top: 63px;
}

@media screen and (min-width: 769px) {
  header .head_inr .header-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    width: calc(100% - 300px);
    padding-top: 15px;
  }
  header .head_inr .header-list .header-item {
    align-self: center;
    font-weight: 700;
    flex-basis: 20%;
    text-align: right;
  }
  .header-bottom-nav {
    display: none;
  }
}
.header-bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
.header-bottom-nav .header-logo {
  display: none;
}
.header-bottom-nav .header-list {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  background-color: white;
}
.header-bottom-nav .header-list .header-item {
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  flex-basis: 20%;
  text-align: center;
  box-sizing: border-box;
  border-right: 1px solid black;
}
.header-bottom-nav .header-list .header-item:last-child {
  border-right: none;
}
.header-bottom-nav .header-list .header-item a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}

.open_target.general .sp_menu {
  padding-top: 79px;
}

@media screen and (min-width: 768px) {
  .open_target.general .sp_menu {
    padding-top: 106px;
  }
}

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