@charset "UTF-8";
.pc {
  display: none !important;
}
@media (min-width: 1025px) {
  .pc {
    display: inline !important;
  }
}

.tab-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .tab-pc {
    display: inline !important;
  }
}

@media (min-width: 768px) {
  .tab {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp-br {
    display: none;
    /* SPのみ改行 */
  }
}

.pc-br {
  display: none;
}
@media (min-width: 768px) {
  .pc-br {
    display: block;
    /* PCのみ改行 */
  }
}

.txt-s {
  font-size: 12px;
  line-height: 1.5em;
}
@media (min-width: 1025px) {
  .txt-s {
    font-size: 14px;
  }
}

.txt-m {
  font-size: 14px;
  line-height: 1.8em;
}
@media (min-width: 1025px) {
  .txt-m {
    font-size: 16px;
  }
}

.txt-l {
  font-size: 14px;
  line-height: 1.8em;
}
@media (min-width: 1025px) {
  .txt-l {
    font-size: 18px;
  }
}

.txt-ll {
  font-size: 16px;
  line-height: 1.8em;
}
@media (min-width: 1025px) {
  .txt-ll {
    font-size: 21px;
  }
}

.title-main {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 27px;
  font-family: "Overpass", sans-serif;
  line-height: 1em;
  text-align: center;
}
@media (min-width: 1025px) {
  .title-main {
    font-size: 47px;
    margin: 0 0 50px 0;
  }
}

.title-main_w {
  margin: 0 0 10px 0;
  padding: 0;
  color: white;
  font-size: 27px;
  font-family: "Overpass", sans-serif;
  line-height: 1em;
  text-align: center;
}
@media (min-width: 1025px) {
  .title-main_w {
    font-size: 47px;
    margin: 0 0 50px 0;
  }
}

.title-l {
  font-size: 24px;
  line-height: 1.3em;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .title-l {
    font-size: 32px;
  }
}

.title-m {
  font-size: 21px;
  line-height: 1.3em;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .title-m {
    font-size: 28px;
  }
}

.title-s {
  font-size: 18px;
  line-height: 1.3em;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .title-s {
    font-size: 26px;
  }
}

.txt-r {
  text-align: right;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none;
}

.btn-inner {
  max-width: 250px;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  padding-right: 10px;
  display: block;
  border-radius: 20px;
  background: #efd38b;
  display: grid;
  place-content: center;
  place-items: center;
  font-size: 16px;
  position: relative;
  transition: all 0.5s;
}
.btn-inner:hover {
  opacity: 0.6;
}
.btn-inner span {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  color: black;
  width: 15px;
  height: 1px;
  background: black;
}
.btn-inner span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid black;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  position: absolute;
  top: -4px;
  right: -5px;
  box-sizing: border-box;
}
.btn-inner__en {
  font-size: 20px;
}
.btn-inner_no-link {
  pointer-events: none;
  background: #dedede;
  color: #707070;
}
.btn-inner_no-link span {
  background: #707070;
}
.btn-inner_no-link span::before {
  border: 1px solid #707070;
  border-left: 0;
  border-bottom: 0;
}

.btn-outer {
  max-width: 250px;
  width: 90%;
  height: 40px;
  margin: 0 auto;
  padding: 0 40px 0 0;
  display: block;
  font-size: 14px;
  line-height: 1.3em;
  position: relative;
  transition: all 0.5s;
  color: white;
  transform: skewX(-7deg);
  text-align: center;
  display: grid;
  place-content: center;
  place-items: center;
}
@media (min-width: 1025px) {
  .btn-outer {
    height: 50px;
    padding: 0 50px 0 0;
    font-size: 16px;
  }
}
.btn-outer:hover {
  opacity: 0.6;
}
.btn-outer span {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: white;
}
@media (min-width: 1025px) {
  .btn-outer span {
    width: 50px;
    height: 50px;
  }
}
.btn-outer span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  color: black;
  width: 15px;
  height: 1px;
  background: black;
}
.btn-outer span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid black;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .btn-outer span {
    width: 50px;
    height: 50px;
  }
  .btn-outer span::after {
    right: 20px;
  }
  .btn-outer span::before {
    right: 15px;
  }
}
.btn-outer__en {
  font-size: 20px;
}
.btn-outer_u23 {
  background: #3296d7;
  border: 2px solid #3296d7;
}
.btn-outer_bs {
  background: #005ab4;
  border: 2px solid #005ab4;
}
.btn-outer_nj {
  background: #dc236e;
  border: 2px solid #dc236e;
}

.dummy-img {
  width: 100%;
  height: 200px;
  display: grid;
  place-content: center;
  place-items: center;
  background: #bac1c7;
}

.contents-base {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
}

.font-bizudgothic, .po2024_nj__subnav,
.po2024_u23__subnav,
.po2024_bs__subnav, .po2024_nj__squad-list ul li, .po2024_nj__squad-list-staff ul li,
.po2024_u23__squad-list ul li,
.po2024_u23__squad-list-staff ul li,
.po2024_bs__squad-list ul li,
.po2024_bs__squad-list-staff ul li, .btn-inner, .btn-outer {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
}

.font-akshar, .po2024_nj__squad .po2024_nj__nav a, .po2024_nj__squad .po2024_u23__nav a,
.po2024_u23__squad .po2024_nj__nav a,
.po2024_u23__squad .po2024_u23__nav a,
.po2024_bs__squad .po2024_nj__nav a,
.po2024_bs__squad .po2024_u23__nav a, .po2024_nj__squad .po2024_bs__nav a,
.po2024_u23__squad .po2024_bs__nav a,
.po2024_bs__squad .po2024_bs__nav a, .po2024_nj .po2024-sub-ttl,
.po2024_u23 .po2024-sub-ttl,
.po2024_bs .po2024-sub-ttl, .btn-inner__en, .btn-outer__en {
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.po2024_nj__squad .po2024_nj__nav, .po2024_nj__squad .po2024_u23__nav,
.po2024_u23__squad .po2024_nj__nav,
.po2024_u23__squad .po2024_u23__nav,
.po2024_bs__squad .po2024_nj__nav,
.po2024_bs__squad .po2024_u23__nav {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .po2024_nj__squad .po2024_nj__nav, .po2024_nj__squad .po2024_u23__nav,
  .po2024_u23__squad .po2024_nj__nav,
  .po2024_u23__squad .po2024_u23__nav,
  .po2024_bs__squad .po2024_nj__nav,
  .po2024_bs__squad .po2024_u23__nav {
    flex-wrap: nowrap;
  }
}
.po2024_nj__squad .po2024_nj__nav a, .po2024_nj__squad .po2024_u23__nav a,
.po2024_u23__squad .po2024_nj__nav a,
.po2024_u23__squad .po2024_u23__nav a,
.po2024_bs__squad .po2024_nj__nav a,
.po2024_bs__squad .po2024_u23__nav a {
  width: 48%;
  padding: 0;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024_nj__squad .po2024_nj__nav a, .po2024_nj__squad .po2024_u23__nav a,
  .po2024_u23__squad .po2024_nj__nav a,
  .po2024_u23__squad .po2024_u23__nav a,
  .po2024_bs__squad .po2024_nj__nav a,
  .po2024_bs__squad .po2024_u23__nav a {
    width: 30%;
  }
}
.po2024_nj__squad .po2024_bs__nav,
.po2024_u23__squad .po2024_bs__nav,
.po2024_bs__squad .po2024_bs__nav {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .po2024_nj__squad .po2024_bs__nav,
  .po2024_u23__squad .po2024_bs__nav,
  .po2024_bs__squad .po2024_bs__nav {
    flex-wrap: nowrap;
  }
}
.po2024_nj__squad .po2024_bs__nav a,
.po2024_u23__squad .po2024_bs__nav a,
.po2024_bs__squad .po2024_bs__nav a {
  padding: 0;
  text-align: center;
}
.po2024_nj__subnav,
.po2024_u23__subnav,
.po2024_bs__subnav {
  margin: 20px auto 0;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024_nj__subnav,
  .po2024_u23__subnav,
  .po2024_bs__subnav {
    margin: 50px auto 0;
    font-size: 16px;
  }
}
.po2024_nj__subnav a,
.po2024_u23__subnav a,
.po2024_bs__subnav a {
  margin: 0 10px;
  transition: all 0.5s;
}
.po2024_nj__squad-list ul, .po2024_nj__squad-list-staff ul,
.po2024_u23__squad-list ul,
.po2024_u23__squad-list-staff ul,
.po2024_bs__squad-list ul,
.po2024_bs__squad-list-staff ul {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 2%;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .po2024_nj__squad-list ul, .po2024_nj__squad-list-staff ul,
  .po2024_u23__squad-list ul,
  .po2024_u23__squad-list-staff ul,
  .po2024_bs__squad-list ul,
  .po2024_bs__squad-list-staff ul {
    margin-top: 50px;
    gap: 20px 2%;
  }
}
.po2024_nj__squad-list ul li, .po2024_nj__squad-list-staff ul li,
.po2024_u23__squad-list ul li,
.po2024_u23__squad-list-staff ul li,
.po2024_bs__squad-list ul li,
.po2024_bs__squad-list-staff ul li {
  width: 48%;
  text-align: center;
  font-size: 12px;
}
.po2024_nj__squad-list ul li p, .po2024_nj__squad-list-staff ul li p,
.po2024_u23__squad-list ul li p,
.po2024_u23__squad-list-staff ul li p,
.po2024_bs__squad-list ul li p,
.po2024_bs__squad-list-staff ul li p {
  margin: 5px 0;
}
.po2024_nj__squad-list ul li p span, .po2024_nj__squad-list-staff ul li p span,
.po2024_u23__squad-list ul li p span,
.po2024_u23__squad-list-staff ul li p span,
.po2024_bs__squad-list ul li p span,
.po2024_bs__squad-list-staff ul li p span {
  margin: 0 0 5px 0;
  font-size: 90%;
  display: block;
}
@media (min-width: 1025px) {
  .po2024_nj__squad-list ul li, .po2024_nj__squad-list-staff ul li,
  .po2024_u23__squad-list ul li,
  .po2024_u23__squad-list-staff ul li,
  .po2024_bs__squad-list ul li,
  .po2024_bs__squad-list-staff ul li {
    width: 23%;
    font-size: 16px;
  }
  .po2024_nj__squad-list ul li p, .po2024_nj__squad-list-staff ul li p,
  .po2024_u23__squad-list ul li p,
  .po2024_u23__squad-list-staff ul li p,
  .po2024_bs__squad-list ul li p,
  .po2024_bs__squad-list-staff ul li p {
    margin: 10px 0;
  }
  .po2024_nj__squad-list ul li p span, .po2024_nj__squad-list-staff ul li p span,
  .po2024_u23__squad-list ul li p span,
  .po2024_u23__squad-list-staff ul li p span,
  .po2024_bs__squad-list ul li p span,
  .po2024_bs__squad-list-staff ul li p span {
    margin-right: 10px;
    display: inline;
  }
}
.po2024_nj__squad-list ul li a, .po2024_nj__squad-list-staff ul li a,
.po2024_u23__squad-list ul li a,
.po2024_u23__squad-list-staff ul li a,
.po2024_bs__squad-list ul li a,
.po2024_bs__squad-list-staff ul li a {
  transition: all 0.5s;
}
.po2024_nj__squad-list ul li a:hover, .po2024_nj__squad-list-staff ul li a:hover,
.po2024_u23__squad-list ul li a:hover,
.po2024_u23__squad-list-staff ul li a:hover,
.po2024_bs__squad-list ul li a:hover,
.po2024_bs__squad-list-staff ul li a:hover {
  opacity: 0.8;
}
.po2024_nj__squad-list-staff,
.po2024_u23__squad-list-staff,
.po2024_bs__squad-list-staff {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .po2024_nj__squad-list-staff,
  .po2024_u23__squad-list-staff,
  .po2024_bs__squad-list-staff {
    margin-bottom: 100px;
  }
}
.po2024_nj__squad-list-staff ul li,
.po2024_u23__squad-list-staff ul li,
.po2024_bs__squad-list-staff ul li {
  width: 48%;
  text-align: center;
}

.po2024_nj__subnav a:hover {
  color: #dc236e;
}
@media (min-width: 1025px) {
  .po2024_nj__squad-list-staff ul li {
    width: 18%;
  }
}

.po2024_u23__subnav a:hover {
  color: #3296d7;
}
@media (min-width: 1025px) {
  .po2024_u23__squad-list-staff ul li {
    width: 23%;
  }
}

.po2024_bs__subnav a:hover {
  color: #005ab4;
}
@media (min-width: 1025px) {
  .po2024_bs__squad-list-staff ul li {
    width: 23%;
  }
}