@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, .news-block h3 .subheading_en {
  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, .news-block h3 .subheading_en {
    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: 40px;
  position: relative;
  transition: all 0.5s;
  color: white;
  transform: skewX(-7deg);
  text-align: center;
}
@media (min-width: 1025px) {
  .btn-outer {
    height: 50px;
    padding: 0 50px 0 0;
    font-size: 16px;
    line-height: 50px;
  }
}
.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, .po2024-schedule, .po2024-schedule-nj, .po2024-schedule-u23, .po2024-schedule-bs, .po2024-squad__block, .po2024-contents__teamcam-con, .po2024-contents__countrylist-con, .po2024-contents__op-history-con, .po2024-contents__t-history-con, .po2024-passport__block, .po2024-passport__b-ing-block, .po2024-sns__block, .po2024_nj__nav,
.po2024_u23__nav,
.po2024_bs__nav, .po2024_nj__block,
.po2024_u23__block,
.po2024_bs__block {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
}

.font-bizudgothic, .po2024-sub-ttl, .po2024-name h1, .po2024-pu-news__youtube h3, .po2024-schedule__table table, .po2024-schedule__results-table_nj, .po2024-schedule__results-table_u23, .po2024-list-block, .po2024-contents__teamcam-ttl, .po2024_nj__nav a,
.po2024_u23__nav a,
.po2024_bs__nav a, .po2024_nj__country > ul > li h4,
.po2024_u23__country > ul > li h4,
.po2024_bs__country > ul > li h4, .tab-btn, .btn-inner, .btn-outer {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 700;
}

.font-akshar, .po2024-ttl, .po2024-nav ul li a, .btn-inner__en, .btn-outer__en {
  font-family: 'Overpass', sans-serif;
  font-size: 37px;
  font-weight: 900;
  color: #001e55;
  letter-spacing: 3.5px;
  line-height: 1;
}

.head-area h3{
  text-align: center;
  float: none;
  color: #001e55;
}

.head-area h3 span{
  display: block;
}

.head-area h3 .subheading_en{
  font-family: 'Overpass', sans-serif;
  font-size: 37px;
  font-weight: 900;
  color: #001e55;
  letter-spacing: 3.5px;
  line-height: 1;
}

/*　ハンバーガーボタン　*/
.sp-nav {
  display: block;
  position: fixed;
  z-index: 3;
  right: 10px;
  top: 9px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  /* ナビ開いてる時のボタン */
}
@media (min-width: 1025px) {
  .sp-nav {
    display: none;
  }
}
.sp-nav span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: white;
  transition: 0.3s ease-in-out;
}
.sp-nav span:nth-child(1) {
  top: 10px;
}
.sp-nav span:nth-child(2) {
  top: 20px;
}
.sp-nav span:nth-child(3) {
  top: 30px;
}
.sp-nav.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: white;
  transform: rotate(-45deg);
}
.sp-nav.active span:nth-child(2), .sp-nav.active span:nth-child(3) {
  top: 16px;
  background: white;
  transform: rotate(45deg);
}

.po2024-nav {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: white;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: grid;
  place-content: center;
  visibility: hidden;
  /* このクラスを、jQueryで付与・削除する */
}
@media (min-width: 1025px) {
  .po2024-nav {
    width: auto;
    opacity: 1;
    background: none;
    position: absolute;
    right: 30px;
    left: auto;
    visibility: visible;
  }
}
.po2024-nav ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
@media (min-width: 1025px) {
  .po2024-nav ul {
    width: auto;
    display: flex;
  }
}
.po2024-nav ul li {
  list-style-type: none;
  padding: 20px 0;
  transition: 0.4s all;
}
@media (min-width: 1025px) {
  .po2024-nav ul li {
    padding: 0 20px 0 20px;
    border-right: 3px solid white;
  }
  .po2024-nav ul li:nth-child(5), .po2024-nav ul li:nth-child(6) {
    border: none;
  }
  .po2024-nav ul li:nth-child(6) {
    padding: 0;
  }
}
.po2024-nav ul li a {
  display: block;
  color: white;
  text-decoration: none;
  line-height: 1em;
  font-size: 30px;
}
.po2024-nav ul li a.language {
  width: 100px;
  margin: 0 auto;
  color: #10112d;
  border-radius: 15px;
  background: white;
}
@media (min-width: 1025px) {
  .po2024-nav ul li a.language {
    width: auto;
    padding: 0 20px;
  }
}
.po2024-nav.active {
  opacity: 100;
  visibility: visible;
}

.swiper-results-nj,
.swiper-results-u23,
.swiper-results-bs,
#swiper-results-nj,
#swiper-results-u23,
#swiper-results-bs,
.swiper-teamcam-nj,
.swiper-teamcam-u23,
.swiper-passport {
  overflow: hidden;
}

.swiper-wrapper {
  padding-bottom: 15px;
}

.po2024-schedule-bs__block ul li::before {
  content: "";
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}

/*--------------------------------------
swiperスライダー（FIXTURES & RESULTS部分）
--------------------------------------*/
.swiper-results-btn-next,
.swiper-results-btn-prev {
  width: 30px;
  height: 30px;
  z-index: 1;
  position: absolute;
  top: calc(50% - 20px);
  cursor: pointer;
  background: #EFD38B;
}
@media (min-width: 1025px) {
  .swiper-results-btn-next,
  .swiper-results-btn-prev {
    width: 40px;
    height: 40px;
  }
}

.swiper-results-btn-next::after,
.swiper-results-btn-prev::after {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  border-top: 1px solid black;
  border-right: 1px solid black;
}
@media (min-width: 1025px) {
  .swiper-results-btn-next::after,
  .swiper-results-btn-prev::after {
    width: 15px;
    height: 15px;
  }
}

.swiper-results-btn-next::after {
  top: 11px;
  right: 10px;
  transform: rotate(45deg);
}

.swiper-results-btn-prev::after {
  top: 11px;
  left: 10px;
  transform: rotate(-135deg);
}

@media (min-width: 1025px) {
  .swiper-results-btn-next::after {
    top: 11px;
    right: 15px;
  }
  .swiper-results-btn-prev::after {
    top: 11px;
    left: 15px;
  }
}
.swiper-results-btn-prev {
  left: -5%;
}

.swiper-results-btn-next {
  right: -5%;
}

@media (min-width: 1025px) {
  .swiper-results-btn-prev {
    left: -60px;
  }
  .swiper-results-btn-next {
    right: -60px;
  }
}
.swiper-pagination {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0px 2px 0;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
  border: 1px solid white;
}
@media (min-width: 1025px) {
  .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 10px 5px 0;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #DC000C;
  border: 1px solid white;
}

.swiper-squad-nj,
.swiper-squad-u23 {
  margin-top: 30px;
}
@media (min-width: 1025px) {
  .swiper-squad-nj,
  .swiper-squad-u23 {
    margin-top: 50px;
  }
}

.swiper-squad-nj .swiper-wrapper,
.swiper-squad-u23 .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-squad-nj .swiper-wrapper a,
.swiper-squad-u23 .swiper-wrapper a {
  transition: all 0.5s;
}
.swiper-squad-nj .swiper-wrapper a:hover,
.swiper-squad-u23 .swiper-wrapper a:hover {
  opacity: 0.8;
}

.tab-wrap ul {
  display: flex;
}

.tab-btn {
  width: 50%;
  height: 50px;
  padding-left: 30px;
  text-align: center;
  list-style: none;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  font-size: 12px;
  background: #dedede;
  display: grid;
  place-items: center start;
  text-align: left;
  line-height: 1.1em;
}
@media (min-width: 1025px) {
  .tab-btn {
    height: 70px;
    padding-left: 80px;
    font-size: 25px;
  }
}
.tab-btn_nj, .tab-btn_u23, .tab-btn_bs {
  position: relative;
}
.tab-btn_nj.show, .tab-btn_u23.show, .tab-btn_bs.show {
  color: white;
  position: relative;
}
.tab-btn_nj.show::before, .tab-btn_u23.show::before, .tab-btn_bs.show::before {
  width: 20px;
  height: 50px;
  margin: 0 auto;
  content: "";
  transform: skewX(-7deg);
  position: absolute;
  top: 0;
  left: 5px;
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 1025px) {
  .tab-btn_nj.show::before, .tab-btn_u23.show::before, .tab-btn_bs.show::before {
    width: 40px;
    height: 70px;
  }
}
.tab-btn_nj.show {
  background: #dc236e;
}
.tab-btn_u23.show {
  background: #3296d7;
}
.tab-btn_bs.show {
  background: #005ab4;
}
.tab-btn_nj::before, .tab-btn_u23::before, .tab-btn_bs::before {
  width: 20px;
  height: 50px;
  margin: 0 auto;
  content: "";
  transform: skewX(-7deg);
  position: absolute;
  top: 0;
  left: 5px;
}
@media (min-width: 1025px) {
  .tab-btn_nj::before, .tab-btn_u23::before, .tab-btn_bs::before {
    width: 40px;
    height: 70px;
  }
}
.tab-btn_nj::before {
  background: #dc236e;
}
.tab-btn_u23::before {
  background-color: #3296d7;
}
.tab-btn_bs::before {
  background-color: #005ab4;
}

.tab-contents {
  display: none;
  transition: all 0.5s ease 0s;
}

.tab-contents.show {
  display: block;
  padding: 20px;
}

.po2024-contents__countrylist .tab-btn {
  height: 80px;
  font-size: 10px;
  padding-left: 30px;
}
@media (min-width: 1025px) {
  .po2024-contents__countrylist .tab-btn {
    height: 100px;
    padding-left: 70px;
    font-size: 25px;
  }
}
.po2024-contents__countrylist .tab-btn_nj.show::before, .po2024-contents__countrylist .tab-btn_u23.show::before, .po2024-contents__countrylist .tab-btn_bs.show::before {
  height: 100px;
  left: 10px;
}
.po2024-contents__countrylist .tab-btn_nj::before, .po2024-contents__countrylist .tab-btn_u23::before, .po2024-contents__countrylist .tab-btn_bs::before {
  height: 80px;
  left: 5px;
}
@media (min-width: 1025px) {
  .po2024-contents__countrylist .tab-btn_nj::before, .po2024-contents__countrylist .tab-btn_u23::before, .po2024-contents__countrylist .tab-btn_bs::before {
    height: 100px;
    left: 10px;
  }
}

/*--------------------------------------
パリオリンピック2024
--------------------------------------*/
.po2024-ttl {
  font-family: 'Overpass', sans-serif;
  font-size: 25px;
  font-weight: 900;
  color: #001e55;
  line-height: 1;
  text-align: center;
}
.po2024-ttl_txt {
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  margin-top: -20px;
}
@media (min-width: 1025px) {
  .po2024-ttl {
    font-size: 37px;
}
.po2024-ttl_txt {
  font-size: 1.17em;
  font-weight: bold;
  color: #001e55;
  letter-spacing: 1.5px;
  text-align: center;
  margin-top: -20px;
}
}
.po2024-ttl::before, .po2024-ttl::after {
  width: 8px;
  margin: 0 auto;
  content: "";
  transform: skewX(-7deg);
  position: absolute;
  top: calc(50% - 10px);
}
@media (min-width: 1025px) {
  .po2024-ttl::before, .po2024-ttl::after {
    width: 15px;
    height: 40px;
    top: calc(50% - 23px);
  }
}
.po2024-ttl::before {
  background-color: #003288;
  left: -20px;
}
@media (min-width: 1025px) {
  .po2024-ttl::before {
    left: -40px;
  }
}
.po2024-ttl::after {
  background-color: #dc000c;
  right: -20px;
}
@media (min-width: 1025px) {
  .po2024-ttl::after {
    right: -40px;
  }
}
.po2024-ttl_white {
  color: #001e55;
}
.po2024-ttl_white::before {
  background-color: #001e55;
}
.po2024-ttl_white::after {
  background-color: #001e55;
}
.po2024-ttl_cwhite {
  color: white;
}
.po2024-ttl_cwhite::before, .po2024-ttl_cwhite::after {
  content: none;
}
@media (min-width: 1025px) {
  .po2024-ttl_nj, .po2024-ttl_u23, .po2024-ttl_bs {
    font-size: 40px;
  }
}
.po2024-ttl_nj::before {
  background-color: #dc236e;
}
.po2024-ttl_nj::after {
  background-color: #dc236e;
}
.po2024-ttl_u23::before {
  background-color: #3296d7;
}
.po2024-ttl_u23::after {
  background-color: #3296d7;
}
.po2024-ttl_bs::before {
  background-color: #005ab4;
}
.po2024-ttl_bs::after {
  background-color: #005ab4;
}

.po2024-sub-ttl {
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  list-style: 1em;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024-sub-ttl {
    font-size: 28px;
  }
}
.po2024-sub-ttl__nj, .po2024-sub-ttl__u23, .po2024-sub-ttl__bs, .po2024-sub-ttl__op {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.po2024-sub-ttl__nj::before, .po2024-sub-ttl__nj::after, .po2024-sub-ttl__u23::before, .po2024-sub-ttl__u23::after, .po2024-sub-ttl__bs::before, .po2024-sub-ttl__bs::after, .po2024-sub-ttl__op::before, .po2024-sub-ttl__op::after {
  width: 50px;
  height: 12px;
  margin: 0 auto;
  content: "";
  position: absolute;
  top: calc(50% - 6px);
}
@media (min-width: 1025px) {
  .po2024-sub-ttl__nj::before, .po2024-sub-ttl__nj::after, .po2024-sub-ttl__u23::before, .po2024-sub-ttl__u23::after, .po2024-sub-ttl__bs::before, .po2024-sub-ttl__bs::after, .po2024-sub-ttl__op::before, .po2024-sub-ttl__op::after {
    width: 100px;
    height: 20px;
    margin: 0 auto;
    content: "";
    position: absolute;
    top: calc(50% - 10px);
  }
}
.po2024-sub-ttl__nj::before {
  left: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_nj.png") no-repeat;
  background-size: cover;
}
.po2024-sub-ttl__nj::after {
  right: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_nj.png") no-repeat;
  background-size: cover;
}
@media (min-width: 1025px) {
  .po2024-sub-ttl__nj::before {
    left: -150px;
  }
  .po2024-sub-ttl__nj::after {
    right: -150px;
  }
}
.po2024-sub-ttl__u23::before {
  left: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_u23.png") no-repeat;
  background-size: cover;
}
.po2024-sub-ttl__u23::after {
  right: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_u23.png") no-repeat;
  background-size: cover;
}
@media (min-width: 1025px) {
  .po2024-sub-ttl__u23::before {
    left: -150px;
  }
  .po2024-sub-ttl__u23::after {
    right: -150px;
  }
}
.po2024-sub-ttl__bs::before {
  left: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_bs.png") no-repeat;
  background-size: cover;
}
.po2024-sub-ttl__bs::after {
  right: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_bs.png") no-repeat;
  background-size: cover;
}
@media (min-width: 1025px) {
  .po2024-sub-ttl__bs::before {
    left: -150px;
  }
  .po2024-sub-ttl__bs::after {
    right: -150px;
  }
}
.po2024-sub-ttl__op::before {
  left: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_left.png") no-repeat;
  background-size: cover;
}
.po2024-sub-ttl__op::after {
  right: -60px;
  background: url("/national_team/paris_olympic_2024/img/sub-ttl-line_right.png") no-repeat;
  background-size: cover;
}
@media (min-width: 1025px) {
  .po2024-sub-ttl__op::before {
    left: -150px;
  }
  .po2024-sub-ttl__op::after {
    right: -150px;
  }
}

.po2024-header__nav {
  height: 60px;
  width: 100%;
  padding: 10px 0 0;
  box-sizing: border-box;
  position: relative;
  z-index: 10000;
  border-bottom: #efd38b 5px solid;
  position: fixed;
  top: 0;
  background: #10112d;
}
@media (min-width: 1025px) {
  .po2024-header__nav {
    height: 80px;
    padding: 10px 0 0;
  }
}
.po2024-header__nav-logo {
  width: 92px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 15px;
  left: 10px;
}
@media (min-width: 1025px) {
  .po2024-header__nav-logo {
    width: auto;
    top: 25px;
    left: 30px;
    display: flex;
  }
}
.po2024-header__nav-logo img {
  width: 92px;
}
.po2024-header__nav-lower {
  height: 85px;
}
@media (min-width: 1025px) {
  .po2024-header__nav-lower {
    height: 80px;
    padding: 10px 0 0;
  }
}
.po2024-header__nav-lower .po2024-header__nav-logo {
  top: 10px;
}
@media (min-width: 1025px) {
  .po2024-header__nav-lower .po2024-header__nav-logo {
    top: 25px;
  }
}
.po2024-header__nav-lower .po2024-header__nav-logo img {
  width: 92px;
  max-width: 92px;
}
.po2024-header__nav-ttl {
  width: 100%;
  margin: 5px 0 0 0;
  font-size: 10px;
  font-weight: bold;
  color: white;
  display: inline-block;
}
@media (min-width: 1025px) {
  .po2024-header__nav-ttl {
    margin: -5px 0 0 10px;
    font-size: 12px;
  }
}

.po2024-kv {
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 1025px) {
  .po2024-kv {
    margin-top: 80px;
  }
}
.po2024-kv img {
  width: 100%;
}
.po2024-kv-lower {
  margin-top: 85px;
}
@media (min-width: 1025px) {
  .po2024-kv-lower {
    margin-top: 80px;
  }
}

.po2024-name {
  display: flow-root;
}
.po2024-name h1 {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  color: black;
  background: white;
  text-align: center;
  font-size: 16px;
  line-height: 1.3em;
}
@media (min-width: 1025px) {
  .po2024-name h1 {
    padding: 20px 0;
    font-size: 30px;
  }
}

.po2024-pu-news {
  padding: 30px 0;
  background: url("/national_team/paris_olympic_2024/img/pickupnews-bg.jpg") no-repeat;
  background-size: cover;
}
@media (min-width: 1025px) {
  .po2024-pu-news {
    padding: 100px 0;
  }
}
.po2024-pu-news__bnr {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto 20px;
}
@media (min-width: 1025px) {
  .po2024-pu-news__bnr {
    margin: 0 auto 50px;
  }
}
.po2024-pu-news__youtube {
  max-width: 90%;
  margin: 20px auto 0;
}
@media (min-width: 1025px) {
  .po2024-pu-news__youtube {
    max-width: 800px;
    margin: 50px auto 0;
  }
}
.po2024-pu-news__youtube h3 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
}
@media (min-width: 1025px) {
  .po2024-pu-news__youtube h3 {
    font-size: 24px;
  }
}
.po2024-pu-news__youtube p {
  font-size: 10px;
}
@media (min-width: 1025px) {
  .po2024-pu-news__youtube p {
    font-size: 12px;
  }
}
.po2024-pu-news__news {
  margin: 20px 5% 0;
}
@media (min-width: 1025px) {
  .po2024-pu-news__news {
    margin: 50px auto 0;
  }
}
.po2024-pu-news .visual-area {
  max-width: 100%;
  min-width: 100px;
  margin: 0 auto;
}
.po2024-pu-news .visual-area img {
  width: 100%;
}
@media (min-width: 1025px) {
  .po2024-pu-news .visual-area {
    max-width: 800px;
  }
  .po2024-pu-news .visual-area img {
    max-width: 800px;
  }
}

.po2024-results {
  padding: 30px 0 0;
  background: url("/national_team/paris_olympic_2024/img/main-bg.jpg") repeat-y;
  background-size: 100%;
}
@media (min-width: 1025px) {
  .po2024-results {
    padding: 100px 0 0;
  }
}
.po2024-results__bg {
  padding-bottom: 20px;
  background-image: url("/national_team/paris_olympic_2024/img/results-bg_left.png"), url("/national_team/paris_olympic_2024/img/results-bg_right.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 25%, 25%;
}
@media (min-width: 1025px) {
  .po2024-results__bg {
    padding-bottom: 100px;
    background-image: url("/national_team/paris_olympic_2024/img/results-bg_left.png"), url("/national_team/paris_olympic_2024/img/results-bg_right.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left 0 top 0, right 0 top 0;
    background-size: 15%, 15%;
  }
}

.po2024-schedule {
  padding: 20px;
  margin-top: 20px;
  background: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1025px) {
  .po2024-schedule {
    padding: 40px;
    margin-top: 50px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
}
.po2024-schedule__japantime {
  margin: 10px 0 10px;
  text-align: right;
}
@media (min-width: 1025px) {
  .po2024-schedule__japantime {
    margin: 50px 0 10px;
  }
}
.po2024-schedule__table {
  width: 100%;
  padding-bottom: 10px;
  overflow-x: auto;
}
@media (min-width: 1025px) {
  .po2024-schedule__table {
    width: 1060px;
  }
}
.po2024-schedule__table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
}
@media (min-width: 1025px) {
  .po2024-schedule__table table {
    font-size: 20px;
  }
}
.po2024-schedule__table table th, .po2024-schedule__table table td {
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  border-right: 3px solid white;
  border-top: 5px solid white;
}
.po2024-schedule__table table th {
  padding: 0 3px 0 0;
  background: white;
  text-align: left;
}
.po2024-schedule__table table td {
  width: 30px;
  padding: 0px 5px;
  line-height: 1em;
  background: #dedede;
  font-size: 14px;
}
.po2024-schedule__table table td div {
  width: 14px;
}
@media (min-width: 1025px) {
  .po2024-schedule__table table td {
    width: 40px;
    padding: 0px 10px;
    font-size: 30px;
  }
  .po2024-schedule__table table td div {
    width: 30px;
  }
}
.po2024-schedule__table table tr.month-en td {
  font-size: 12px;
  background: none;
  vertical-align: bottom;
  text-align: left;
}
@media (min-width: 1025px) {
  .po2024-schedule__table table tr.month-en td {
    font-size: 20px;
  }
}
.po2024-schedule__table table tr.month td {
  font-size: 12px;
  background: none;
  vertical-align: bottom;
}
@media (min-width: 1025px) {
  .po2024-schedule__table table tr.month td {
    font-size: 20px;
  }
}
.po2024-schedule__table table tr.cnj td {
  color: #dc236e;
}
.po2024-schedule__table table tr.u23 td {
  color: #3296d7;
}
.po2024-schedule__table table tr.bs td {
  color: #005ab4;
}
.po2024-schedule__table table .sticky {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-left: none;
  border-right: none;
}
.po2024-schedule__table table .sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: white;
  border-left: 0px solid #000;
  border-right: 0px solid #000;
}
.po2024-schedule__table_cnj, .po2024-schedule__table_u23, .po2024-schedule__table_bs {
  width: 120px;
  height: 35px;
  padding-left: 5px;
  display: grid;
  place-items: center start;
}
@media (min-width: 1025px) {
  .po2024-schedule__table_cnj, .po2024-schedule__table_u23, .po2024-schedule__table_bs {
    width: 200px;
    height: 50px;
    padding-left: 10px;
  }
}
.po2024-schedule__table_cnj {
  background: rgba(220, 35, 110, 0.2);
  border-left: 10px solid #dc236e;
}
.po2024-schedule__table_u23 {
  background: rgba(50, 150, 215, 0.2);
  border-left: 10px solid #3296d7;
}
.po2024-schedule__table_bs {
  background: rgba(0, 90, 180, 0.2);
  border-left: 10px solid #005ab4;
}
.po2024-schedule__results-table_nj, .po2024-schedule__results-table_u23 {
  margin-top: 30px;
  background: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1025px) {
  .po2024-schedule__results-table_nj, .po2024-schedule__results-table_u23 {
    width: calc(100% - 15px);
    margin-top: 50px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
}
.po2024-schedule__results-table_nj h4, .po2024-schedule__results-table_u23 h4 {
  margin: 0;
  padding-top: 20px;
  font-size: 18px;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024-schedule__results-table_nj h4, .po2024-schedule__results-table_u23 h4 {
    padding-top: 30px;
    font-size: 24px;
  }
}
.po2024-schedule__results-table_nj table, .po2024-schedule__results-table_u23 table {
  padding: 10px;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.po2024-schedule__results-table_nj table th, .po2024-schedule__results-table_u23 table th {
  font-size: 10px;
  font-weight: normal;
}
.po2024-schedule__results-table_nj table .table__rank-mt, .po2024-schedule__results-table_u23 table .table__rank-mt {
  background-color: #f8d4e2;
}
.po2024-schedule__results-table_nj table .table__rank-mt td.rank, .po2024-schedule__results-table_u23 table .table__rank-mt td.rank {
  background: #dc236e;
}
.po2024-schedule__results-table_nj table tbody, .po2024-schedule__results-table_u23 table tbody {
  background-color: #dedede;
}
.po2024-schedule__results-table_nj table tbody td.rank, .po2024-schedule__results-table_u23 table tbody td.rank {
  background: #707070;
}
.po2024-schedule__results-table_nj table td, .po2024-schedule__results-table_u23 table td {
  padding: 3px 0 0 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.po2024-schedule__results-table_nj table td.rank, .po2024-schedule__results-table_u23 table td.rank {
  width: 30px;
  height: 30px;
  padding: 3px 0 0 0;
  display: grid;
  place-content: center;
  place-items: center;
  font-size: 18px;
  color: white;
}
.po2024-schedule__results-table_nj table td:nth-child(2) img, .po2024-schedule__results-table_u23 table td:nth-child(2) img {
  width: 30px;
}
.po2024-schedule__results-table_nj table td:nth-child(3), .po2024-schedule__results-table_u23 table td:nth-child(3) {
  text-align: left;
}
@media (min-width: 1025px) {
  .po2024-schedule__results-table_nj table, .po2024-schedule__results-table_u23 table {
    padding: 20px;
    border-spacing: 0 10px;
  }
  .po2024-schedule__results-table_nj table th, .po2024-schedule__results-table_u23 table th {
    font-size: 18px;
  }
  .po2024-schedule__results-table_nj table td, .po2024-schedule__results-table_u23 table td {
    padding: 3px 0 0 0;
    font-size: 26px;
  }
  .po2024-schedule__results-table_nj table td.rank, .po2024-schedule__results-table_u23 table td.rank {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 0;
    font-size: 32px;
  }
  .po2024-schedule__results-table_nj table td:nth-child(2) img, .po2024-schedule__results-table_u23 table td:nth-child(2) img {
    width: 50px;
  }
  .po2024-schedule__results-table_nj table td:nth-child(2), .po2024-schedule__results-table_u23 table td:nth-child(2) {
    width: 10%;
  }
  .po2024-schedule__results-table_nj table td:nth-child(3), .po2024-schedule__results-table_u23 table td:nth-child(3) {
    width: 40%;
  }
  .po2024-schedule__results-table_nj table td:nth-child(4), .po2024-schedule__results-table_nj table td:nth-child(5), .po2024-schedule__results-table_nj table td:nth-child(6), .po2024-schedule__results-table_nj table td:nth-child(7), .po2024-schedule__results-table_nj table td:nth-child(8), .po2024-schedule__results-table_u23 table td:nth-child(4), .po2024-schedule__results-table_u23 table td:nth-child(5), .po2024-schedule__results-table_u23 table td:nth-child(6), .po2024-schedule__results-table_u23 table td:nth-child(7), .po2024-schedule__results-table_u23 table td:nth-child(8) {
    width: 10%;
  }
}
.po2024-schedule__results-table_nj h4 {
  color: #dc236e;
}
.po2024-schedule__results-table_nj table .table__rank-mt {
  background-color: #f8d4e2;
}
.po2024-schedule__results-table_nj table .table__rank-mt td.rank {
  background: #dc236e;
}
.po2024-schedule__results-table_u23 h4 {
  color: #3296d7;
}
.po2024-schedule__results-table_u23 table .table__rank-mt {
  background-color: #d6eaf7;
}
.po2024-schedule__results-table_u23 table .table__rank-mt td.rank {
  background: #3296d7;
}
.po2024-schedule__results-regulation_u23, .po2024-schedule__results-regulation_nj {
  padding: 0 10px 10px 10px;
  text-align: center;
}
.po2024-schedule__results-regulation_u23 h5, .po2024-schedule__results-regulation_nj h5 {
  margin: 0;
  font-size: 14px;
}
.po2024-schedule__results-regulation_u23 p, .po2024-schedule__results-regulation_nj p {
  margin: 5px 0 0 0;
  font-size: 10px;
  line-height: 1.3em;
}
@media (min-width: 1025px) {
  .po2024-schedule__results-regulation_u23, .po2024-schedule__results-regulation_nj {
    padding: 0 20px 20px 20px;
  }
  .po2024-schedule__results-regulation_u23 h5, .po2024-schedule__results-regulation_nj h5 {
    font-size: 18px;
  }
  .po2024-schedule__results-regulation_u23 p, .po2024-schedule__results-regulation_nj p {
    margin: 10px 0 0 0;
    font-size: 14px;
  }
}
.po2024-schedule__results-regulation_u23 h5 {
  color: #3296d7;
}
.po2024-schedule__results-regulation_nj h5 {
  color: #dc236e;
}
.po2024-schedule__results-chart {
  padding: 10px;
}
@media (min-width: 1025px) {
  .po2024-schedule__results-chart {
    padding: 20px;
  }
}
.po2024-schedule__btn {
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .po2024-schedule__btn {
    margin-top: 50px;
  }
}

#targetElement {
  margin-left: 100px;
}

a.swiper-results-nj-link {
  color: #dc236e !important;
}

a.swiper-results-u23-link {
  color: #3296d7 !important;
}

a.swiper-results-bs-link {
  color: #005ab4 !important;
}

.po2024-schedule-nj__block,
.po2024-schedule-u23__block,
.po2024-schedule-bs__block {
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1025px) {
  .po2024-schedule-nj__block,
  .po2024-schedule-u23__block,
  .po2024-schedule-bs__block {
    margin-bottom: 50px;
  }
}
.po2024-schedule-nj .po2024-list-block__head::before,
.po2024-schedule-u23 .po2024-list-block__head::before,
.po2024-schedule-bs .po2024-list-block__head::before {
  width: 20px;
  height: 50px;
  margin: 0 auto;
  content: "";
  transform: skewX(-7deg);
  position: absolute;
  top: 0;
  left: 5px;
}
@media (min-width: 1025px) {
  .po2024-schedule-nj .po2024-list-block__head::before,
  .po2024-schedule-u23 .po2024-list-block__head::before,
  .po2024-schedule-bs .po2024-list-block__head::before {
    width: 40px;
    height: 70px;
  }
}

.po2024-schedule-nj__bg {
  margin-bottom: 30px;
  background-image: url("/national_team/paris_olympic_2024/img/results-bg-nj_left.png"), url("/national_team/paris_olympic_2024/img/results-bg-nj_right.png");
  background-repeat: repeat-y, repeat-y;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 25%, 25%;
}
@media (min-width: 1025px) {
  .po2024-schedule-nj__bg {
    margin-bottom: 100px;
    background-image: url("/national_team/paris_olympic_2024/img/countrylist_nj_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_nj_bg_right.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left 0 top 0, right 0 top 0;
    background-size: 15%, 15%;
  }
}
.po2024-schedule-nj .po2024-list-block__head::before {
  background-color: #dc236e;
}
.po2024-schedule-nj .po2024-list-block__ttl {
  color: #dc236e;
}

.po2024-schedule-u23__bg {
  margin-bottom: 30px;
  background-image: url("/national_team/paris_olympic_2024/img/results-bg-u23_left.png"), url("/national_team/paris_olympic_2024/img/results-bg-u23_right.png");
  background-repeat: repeat-y, repeat-y;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 25%, 25%;
}
@media (min-width: 1025px) {
  .po2024-schedule-u23__bg {
    margin-bottom: 100px;
    background-image: url("/national_team/paris_olympic_2024/img/countrylist_u23_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_u23_bg_right.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left 0 top 0, right 0 top 0;
    background-size: 15%, 15%;
  }
}
.po2024-schedule-u23 .po2024-list-block__head::before {
  background-color: #3296d7;
}
.po2024-schedule-u23 .po2024-list-block__ttl {
  color: #3296d7;
}

.po2024-schedule-bs__bg {
  padding-bottom: 30px;
  background-image: url("/national_team/paris_olympic_2024/img/results-bg-bs_left.png"), url("/national_team/paris_olympic_2024/img/results-bg-bs_right.png");
  background-repeat: repeat-y, repeat-y;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 25%, 25%;
}
@media (min-width: 1025px) {
  .po2024-schedule-bs__bg {
    padding-bottom: 100px;
    background-image: url("/national_team/paris_olympic_2024/img/results-bg-bs_left.png"), url("/national_team/paris_olympic_2024/img/results-bg-bs_right.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left 0 top 0, right 0 top 0;
    background-size: 15%, 15%;
  }
}
.po2024-schedule-bs .po2024-list-block__head::before {
  background-color: #005ab4;
}
.po2024-schedule-bs .po2024-list-block__ttl {
  color: #005ab4;
}

.po2024-list-block {
  width: calc(100% - 5px);
  background: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1025px) {
  .po2024-list-block {
    width: calc(100% - 15px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
}
.po2024-list-block__head {
  height: 50px;
  background: #dedede;
  font-size: 16px;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}
.po2024-list-block__head span {
  margin-top: 5px;
  font-size: 60%;
  display: block;
}
@media (min-width: 1025px) {
  .po2024-list-block__head {
    font-size: 26px;
    height: 70px;
  }
}
.po2024-list-block__head_nj::before, .po2024-list-block__head_u23::before, .po2024-list-block__head_bs::before {
  width: 20px;
  height: 50px;
  margin: 0 auto;
  content: "";
  transform: skewX(-7deg);
  position: absolute;
  top: 0;
  left: 5px;
}
@media (min-width: 1025px) {
  .po2024-list-block__head_nj::before, .po2024-list-block__head_u23::before, .po2024-list-block__head_bs::before {
    width: 40px;
    height: 70px;
  }
}
.po2024-list-block__head_nj::before {
  background-color: #dc236e;
}
.po2024-list-block__head_u23::before {
  background-color: #3296d7;
}
.po2024-list-block__head_bs::before {
  background-color: #005ab4;
}
.po2024-list-block__ttl {
  padding: 10px 10px 0;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .po2024-list-block__ttl {
    padding: 20px 20px 0;
    font-size: 18px;
  }
}
.po2024-list-block__body {
  padding: 10px 10px 0;
  display: flex;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024-list-block__body {
    padding: 20px 20px 0;
  }
}
.po2024-list-block__body-country {
  width: 20%;
  height: 80px;
  font-size: 12px;
}
.po2024-list-block__body-country img {
  width: 50px;
  margin-bottom: 10px;
  border: 1px solid #bac1c7;
}
@media (min-width: 1025px) {
  .po2024-list-block__body-country {
    margin-top: 10px;
    font-size: 14px;
  }
}
.po2024-list-block__body-score {
  width: 60%;
  font-size: 40px;
}
@media (min-width: 1025px) {
  .po2024-list-block__body-score {
    font-size: 50px;
  }
}
.po2024-list-block__foot {
  padding: 10px 0 20px;
}
@media (min-width: 1025px) {
  .po2024-list-block__foot {
    padding: 20px 0 30px;
  }
}

.po2024-squad {
  padding: 30px 0;
  background: url("/national_team/paris_olympic_2024/img/squad-bg.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .po2024-squad {
    padding: 100px 0;
  }
}
.po2024-squad__block > ul {
  margin-top: 50px;
}
.po2024-squad__block > ul li {
  margin-top: 20px;
}
.po2024-squad__block > ul li img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
@media (min-width: 1025px) {
  .po2024-squad__block > ul {
    margin-top: 100px;
    display: flex;
    justify-content: center;
  }
  .po2024-squad__block > ul li {
    width: 32%;
    margin-top: 0;
  }
}
.po2024-squad__block .btn-outer {
  font-size: 13px;
}
@media (min-width: 1025px) {
  .po2024-squad__block .btn-outer {
    font-size: 16px;
    max-width: 350px;
  }
}
.po2024-squad__btn {
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .po2024-squad__btn {
    margin-top: 30px;
  }
}

.po2024-contents {
  background: url("/national_team/paris_olympic_2024/img/main-bg.jpg") repeat-y;
  background-size: 100%;
}
.po2024-contents__bg {
  padding: 30px 0;
  background-image: url("/national_team/paris_olympic_2024/img/contents-bg_left.png"), url("/national_team/paris_olympic_2024/img/contents-bg_right.png");
  background-repeat: repeat-y, repeat-y;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 10%, 10%;
}
@media (min-width: 1025px) {
  .po2024-contents__bg {
    padding: 100px 0;
    background-image: url("/national_team/paris_olympic_2024/img/contents-bg_left.png"), url("/national_team/paris_olympic_2024/img/contents-bg_right.png");
    background-repeat: repeat-y, repeat-y;
    background-position: left 0 top 0, right 0 top 0;
  }
}
.po2024-contents__teamcam, .po2024-contents__countrylist, .po2024-contents__op-history, .po2024-contents__t-history {
  margin: 20px 0 30px;
}
.po2024-contents__teamcam img, .po2024-contents__countrylist img, .po2024-contents__op-history img, .po2024-contents__t-history img {
  width: 50%;
}
@media (min-width: 1025px) {
  .po2024-contents__teamcam, .po2024-contents__countrylist, .po2024-contents__op-history, .po2024-contents__t-history {
    margin: 50px 0 100px;
  }
  .po2024-contents__teamcam img, .po2024-contents__countrylist img, .po2024-contents__op-history img, .po2024-contents__t-history img {
    width: 400px;
  }
}
.po2024-contents__teamcam-con, .po2024-contents__countrylist-con {
  margin-top: 20px;
  background: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1025px) {
  .po2024-contents__teamcam-con, .po2024-contents__countrylist-con {
    margin-top: 50px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
}
.po2024-contents__teamcam-tab {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 20px;
  position: relative;
}
@media (min-width: 1025px) {
  .po2024-contents__teamcam-tab {
    padding: 50px 0;
  }
}
.po2024-contents__teamcam-btn {
  padding: 0 0 10px;
}
@media (min-width: 1025px) {
  .po2024-contents__teamcam-btn {
    padding: 0 0 30px;
  }
}
.po2024-contents__teamcam-ttl {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024-contents__teamcam-ttl {
    margin-top: 10px;
    font-size: 21px;
  }
}
.po2024-contents__countrylist-list {
  padding: 10px;
}
@media (min-width: 1025px) {
  .po2024-contents__countrylist-list {
    padding: 50px;
  }
}
.po2024-contents__countrylist-list ul {
  display: block;
}
.po2024-contents__countrylist-list ul li {
  margin-bottom: 10px;
  padding: 10px;
  background: #dedede;
}
.po2024-contents__countrylist-list ul li h4 {
  display: grid;
  place-content: center;
  place-items: center;
}
.po2024-contents__countrylist-list ul li div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.po2024-contents__countrylist-list ul li img {
  width: 40%;
  margin: 5px;
  border: 1px solid #bac1c7;
}
@media (min-width: 1025px) {
  .po2024-contents__countrylist-list ul li {
    margin-bottom: 30px;
    display: flex;
  }
  .po2024-contents__countrylist-list ul li h4 {
    place-items: center start;
  }
  .po2024-contents__countrylist-list ul li div {
    display: block;
  }
  .po2024-contents__countrylist-list ul li img {
    width: auto;
    height: 100px;
    margin: 0 10px;
  }
}
.po2024-contents__op-history-con, .po2024-contents__t-history-con {
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024-contents__op-history-con, .po2024-contents__t-history-con {
    margin-top: 50px;
  }
}
.po2024-contents__t-history-con a {
  margin: 20px 0 0;
  display: inline-block;
  transition: all 0.5s;
}
.po2024-contents__t-history-con a:hover {
  opacity: 0.6;
}
.po2024-contents__t-history-con a img {
  width: 80%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1025px) {
  .po2024-contents__t-history-con a {
    margin: 0 20px;
  }
  .po2024-contents__t-history-con a img {
    width: 400px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }
}
.po2024-contents__t-history-con a.t-history_no-link {
  pointer-events: none;
  opacity: 0.6;
}
.po2024-contents__op-history-con ul {
  margin-top: 20px;
}
.po2024-contents__op-history-con ul li {
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .po2024-contents__op-history-con ul {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
  }
  .po2024-contents__op-history-con ul li {
    width: 32%;
    margin-top: 0;
  }
}

.po2024-passport {
  padding: 30px 0;
  background: #f8f8f8 !important;
  background-size: cover;
  background-position: bottom center;
}
.po2024-passport__block {
  margin-top: 20px;
  text-align: center;
  position: relative;
}
.po2024-passport__block a {
  color: #001e55;
  font-size: 10px;
}
@media (min-width: 1025px) {
  .po2024-passport {
    padding: 100px 0;
  }
  .po2024-passport__block {
    margin-top: 50px;
  }
  .po2024-passport__block a {
    font-size: 14px;
  }
}
.po2024-passport__b-ing-block {
  margin-top: 50px;
}
.po2024-passport__b-ing-block a {
  margin-top: 20px;
  display: block;
}
@media (min-width: 1025px) {
  .po2024-passport__b-ing-block {
    margin-top: 100px;
  }
  .po2024-passport__b-ing-block a {
    margin-top: 50px;
  }
}

.po2024-news {
  padding: 30px 0;
  background: url("/national_team/paris_olympic_2024/img/news-bg.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
@media (min-width: 1025px) {
  .po2024-news {
    padding: 100px 0;
  }
}

#news-area .head-area {
  margin: 0 !important;
  background: #f8f8f8 !important;
}

#news-area .head-area .rss{
  position: absolute;
  right: 0;
  top: 30px;
  font-size: 16px;
  font-family: 'Overpass', sans-serif;
  color: rgba(0,30,85,0.7);
}
#news-area .head-area .rss::before{
  font-family: ionicons;
  font-size: 18px;
  content: '\f23d';
  padding-right: 5px;
}

.po2024-sns {
  padding: 30px 0;
  background: #0f3278;
}
@media (min-width: 1025px) {
  .po2024-sns {
    padding: 100px 0;
  }
}
.po2024-sns__block ul {
  display: flex;
  flex-wrap: wrap;
}
.po2024-sns__block ul li {
  width: 100%;
  margin: 0;
}
.po2024-sns__block ul li div {
  margin-top: 20px;
  text-align: center;
}
.po2024-sns__block ul li div a {
  margin: 0 10px;
}
.po2024-sns__block ul li img {
  max-width: 30px;
  max-height: 30px;
  vertical-align: middle;
}
@media (min-width: 1025px) {
  .po2024-sns__block ul li {
    width: calc(50% - 100px);
    margin: 0 50px;
  }
  .po2024-sns__block ul li div {
    margin-top: 50px;
  }
  .po2024-sns__block ul li div a {
    margin: 0 30px;
  }
  .po2024-sns__block ul li img {
    max-width: 50px;
    max-height: 50px;
  }
}
.po2024-sns__ttl {
  padding: 5px 0;
  color: #0f3278;
  background: white;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 1025px) {
  .po2024-sns__ttl {
    font-size: 20px;
  }
}

.po2024_nj,
.po2024_u23,
.po2024_bs {
  background: url("/national_team/paris_olympic_2024/img/main-bg.jpg") repeat-y;
  background-size: 100% auto;
}
.po2024_nj__nav,
.po2024_u23__nav,
.po2024_bs__nav {
  margin-top: 30px;
}
@media (min-width: 1025px) {
  .po2024_nj__nav,
  .po2024_u23__nav,
  .po2024_bs__nav {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
  }
}
.po2024_nj__nav a,
.po2024_u23__nav a,
.po2024_bs__nav a {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 50px;
  display: block;
  font-size: 18px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.5s;
}
@media (min-width: 1025px) {
  .po2024_nj__nav a,
  .po2024_u23__nav a,
  .po2024_bs__nav a {
    width: 30%;
    height: 70px;
    padding-left: 60px;
    line-height: 70px;
    margin: 0 10px;
    font-size: 24px;
    text-align: left;
  }
}
.po2024_nj__nav a::before,
.po2024_u23__nav a::before,
.po2024_bs__nav a::before {
  width: 20px;
  height: 50px;
  margin: 0 auto;
  content: "";
  transform: skewX(-7deg);
  position: absolute;
  top: 0;
  left: 5px;
}
@media (min-width: 1025px) {
  .po2024_nj__nav a::before,
  .po2024_u23__nav a::before,
  .po2024_bs__nav a::before {
    width: 40px;
    height: 70px;
  }
}
.po2024_nj__block,
.po2024_u23__block,
.po2024_bs__block {
  margin-top: 30px;
}
@media (min-width: 1025px) {
  .po2024_nj__block,
  .po2024_u23__block,
  .po2024_bs__block {
    margin-top: 100px;
  }
}
.po2024_nj__country,
.po2024_u23__country,
.po2024_bs__country {
  margin: 20px 0;
}
.po2024_nj__country > ul,
.po2024_u23__country > ul,
.po2024_bs__country > ul {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .po2024_nj__country > ul,
  .po2024_u23__country > ul,
  .po2024_bs__country > ul {
    margin: 50px 0;
    flex-wrap: nowrap;
  }
}
.po2024_nj__country > ul > li,
.po2024_u23__country > ul > li,
.po2024_bs__country > ul > li {
  width: 42%;
  margin: 0 0 10px;
  padding: 10px;
  background: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 12px;
}
@media (min-width: 1025px) {
  .po2024_nj__country > ul > li,
  .po2024_u23__country > ul > li,
  .po2024_bs__country > ul > li {
    margin: 0 10px;
    padding: 20px;
    font-size: 16px;
  }
}
.po2024_nj__country > ul > li h4,
.po2024_u23__country > ul > li h4,
.po2024_bs__country > ul > li h4 {
  font-size: 16px;
  margin: 0 0 10px 0;
  text-align: center;
}
.po2024_nj__country > ul > li h4 span,
.po2024_u23__country > ul > li h4 span,
.po2024_bs__country > ul > li h4 span {
  margin-top: 5px;
  display: block;
  font-size: 75%;
}
@media (min-width: 1025px) {
  .po2024_nj__country > ul > li h4,
  .po2024_u23__country > ul > li h4,
  .po2024_bs__country > ul > li h4 {
    margin: 0 0 20px 0;
    font-size: 24px;
  }
}
.po2024_nj__country > ul > li img,
.po2024_u23__country > ul > li img,
.po2024_bs__country > ul > li img {
  margin: 0 0 5px;
  border: 1px solid #bac1c7;
}
@media (min-width: 1025px) {
  .po2024_nj__country > ul > li img,
  .po2024_u23__country > ul > li img,
  .po2024_bs__country > ul > li img {
    margin: 0 0 10px;
  }
}
@media (min-width: 1025px) {
  .po2024_nj__country > ul > li > ul > li,
  .po2024_u23__country > ul > li > ul > li,
  .po2024_bs__country > ul > li > ul > li {
    display: flex;
    justify-content: space-between;
  }
}
.po2024_nj__country > ul > li > ul > li p,
.po2024_u23__country > ul > li > ul > li p,
.po2024_bs__country > ul > li > ul > li p {
  margin: 0;
  padding: 0;
}
.po2024_nj__country > ul > li > ul > li p span,
.po2024_u23__country > ul > li > ul > li p span,
.po2024_bs__country > ul > li > ul > li p span {
  font-size: 10px;
}
@media (min-width: 1025px) {
  .po2024_nj__country > ul > li > ul > li p,
  .po2024_u23__country > ul > li > ul > li p,
  .po2024_bs__country > ul > li > ul > li p {
    text-align: right;
  }
  .po2024_nj__country > ul > li > ul > li p span,
  .po2024_u23__country > ul > li > ul > li p span,
  .po2024_bs__country > ul > li > ul > li p span {
    display: block;
  }
}
.po2024_nj__country > ul > li > ul > li:nth-child(1), .po2024_nj__country > ul > li > ul > li:nth-child(2), .po2024_nj__country > ul > li > ul > li:nth-child(5),
.po2024_u23__country > ul > li > ul > li:nth-child(1),
.po2024_u23__country > ul > li > ul > li:nth-child(2),
.po2024_u23__country > ul > li > ul > li:nth-child(5),
.po2024_bs__country > ul > li > ul > li:nth-child(1),
.po2024_bs__country > ul > li > ul > li:nth-child(2),
.po2024_bs__country > ul > li > ul > li:nth-child(5) {
  padding: 5px 0;
  border-bottom: 1px solid #dedede;
}
.po2024_nj__country > ul > li > ul > li:nth-child(1) p:first-child, .po2024_nj__country > ul > li > ul > li:nth-child(2) p:first-child, .po2024_nj__country > ul > li > ul > li:nth-child(3) p:first-child,
.po2024_u23__country > ul > li > ul > li:nth-child(1) p:first-child,
.po2024_u23__country > ul > li > ul > li:nth-child(2) p:first-child,
.po2024_u23__country > ul > li > ul > li:nth-child(3) p:first-child,
.po2024_bs__country > ul > li > ul > li:nth-child(1) p:first-child,
.po2024_bs__country > ul > li > ul > li:nth-child(2) p:first-child,
.po2024_bs__country > ul > li > ul > li:nth-child(3) p:first-child {
  font-weight: bold;
}
.po2024_nj__country > ul > li > ul > li:nth-child(5) p:first-child,
.po2024_u23__country > ul > li > ul > li:nth-child(5) p:first-child,
.po2024_bs__country > ul > li > ul > li:nth-child(5) p:first-child {
  white-space: nowrap;
}

.po2024_nj__bg {
  padding: 30px 0;
  background-image: url("/national_team/paris_olympic_2024/img/countrylist_nj_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_nj_bg_right.png");
  background-repeat: repeat-y, repeat-y;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 25%, 25%;
}
@media (min-width: 1025px) {
  .po2024_nj__bg {
    padding: 100px 0;
    background-image: url("/national_team/paris_olympic_2024/img/countrylist_nj_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_nj_bg_right.png");
    background-repeat: repeat-y, repeat-y;
    background-position: left 0 top 0, right 0 top 0;
    background-size: 15%, 15%;
  }
}
.po2024_nj__nav a {
  background: #f8d3e2;
}
.po2024_nj__nav a::before {
  background-color: #dc236e;
}
.po2024_nj__nav a:hover {
  color: #dc236e;
}
.po2024_nj__country > ul > li.japan {
  background: #dc236e;
  color: white;
}

.po2024_u23__bg {
  padding: 30px 0;
  background-image: url("/national_team/paris_olympic_2024/img/countrylist_u23_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_u23_bg_right.png");
  background-repeat: repeat-y, repeat-y;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 25%, 25%;
}
@media (min-width: 1025px) {
  .po2024_u23__bg {
    padding: 100px 0;
    background-image: url("/national_team/paris_olympic_2024/img/countrylist_u23_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_u23_bg_right.png");
    background-repeat: repeat-y, repeat-y;
    background-position: left 0 top 0, right 0 top 0;
    background-size: 15%, 15%;
  }
}
.po2024_u23__nav a {
  background: #d6eaf7;
}
.po2024_u23__nav a::before {
  background-color: #3296d7;
}
.po2024_u23__nav a:hover {
  color: #3296d7;
}
.po2024_u23__country > ul > li.japan {
  background: #3296d7;
  color: white;
}

.po2024_bs__bg {
  padding: 30px 0;
  background-image: url("/national_team/paris_olympic_2024/img/countrylist_bs_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_bs_bg_right.png");
  background-repeat: repeat-y, repeat-y;
  background-position: left 0 top 0, right 0 top 0;
  background-size: 25%, 25%;
}
@media (min-width: 1025px) {
  .po2024_bs__bg {
    padding: 100px 0;
    background-image: url("/national_team/paris_olympic_2024/img/countrylist_bs_bg_left.png"), url("/national_team/paris_olympic_2024/img/countrylist_bs_bg_right.png");
    background-repeat: repeat-y, repeat-y;
    background-position: left 0 top 0, right 0 top 0;
    background-size: 15%, 15%;
  }
}
@media (min-width: 1025px) {
  .po2024_bs__nav {
    width: 50%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
  }
}
.po2024_bs__nav a {
  background: #ccdef0;
}
.po2024_bs__nav a::before {
  background-color: #005ab4;
}
.po2024_bs__nav a:hover {
  color: #005ab4;
}
@media (min-width: 1025px) {
  .po2024_bs__nav a {
    width: 50%;
  }
}
.po2024_bs__country > ul > li.japan {
  background: #005ab4;
  color: white;
}

/*--------------------------------------
TOPへ
--------------------------------------*/
.ct-top .pagetop {
  width: 100%;
  height: 50px;
  display: block;
  text-align: center;
  color: white;
  background: black;
  display: grid;
  place-items: center;
  line-height: 1em;
}
.ct-top .pagetop::before {
  margin-bottom: -20px;
  content: "";
  color: white;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(25%) rotate(-45deg);
}

/*--------------------------------------
NEWS
--------------------------------------*/
@media (min-width: 1025px) {
  #news-area .body-area .news-content li .text-contents {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
}

.news-block {
  padding: 30px 0 !important;
  margin: 0 !important;
  background: #bac1c7;
  z-index: 0;
}
@media (min-width: 1025px) {
  .news-block {
    padding: 50px 0 100px !important;
  }
}

.news-block .head-area {
  padding: 0 !important;
}

.rss {
  display: block;
}

#news-area {
  z-index: 1;
}

#news-area .head-area h3 span.subheading_jp {
  display: block;
}
.head-area h3 .subheading_en{
  font-family: 'Overpass', sans-serif;
  font-size: 37px;
  font-weight: 900;
  color: #001e55;
  letter-spacing: 3.5px;
  line-height: 1;
}
.news-block__btn a {
  width: 70%;
  height: 40px;
  margin: 0 auto;
  padding: 5px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  color: white;
  font-family: "Overpass", sans-serif;
}
.news-block__btn a::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: skewX(-45deg);
  content: "";
  background-color: #ffcc00;
  border-radius: 7px 0 7px 0;
}
.news-block__btn a::after {
  font-family: "Ionicons";
  font-size: 18px;
  content: "\f3d1";
  color: #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media (min-width: 1025px) {
  .news-block__btn {
    margin-top: 50px;
  }
  .news-block__btn a {
    width: 400px;
    height: 60px;
    font-size: 32px;
    line-height: 60px;
  }
  .news-block__btn a::after {
    font-size: 32px;
  }
}

.youtube-area {
  margin-bottom: 0;
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.youtube-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}