@charset "UTF-8";
/*グローバル採用*/
/*インターンシップ*/
.saiyo-heading {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .saiyo-heading {
    font-size: 14px;
  }
}

.bnr-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .bnr-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bnr-area ul {
  width: calc(33.3333333333% - 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .bnr-area ul {
    width: 100%;
  }
}
.bnr-area ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  height: 52px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}
.bnr-area ul li a.is-light_blue {
  background: #27A9E9;
}
.bnr-area ul li a.is-blue {
  background: #0068B7;
}
.bnr-area ul li a.is-green {
  background: #9ACD32;
}
.bnr-area ul li a.is-orange {
  background: #FF8C00;
}
.bnr-area ul li a.is-pink {
  background: #FE4880;
}
.bnr-area .hidden-area {
  visibility: hidden;
}
@media only screen and (max-width: 768px) {
  .bnr-area .hidden-area {
    display: none;
  }
}