@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Anton|Noto+Sans+JP&display=swap");
/*================================
	text
================================*/
.c-text {
  font-size: 1.6rem;
}
.c-text .-strong {
  font-weight: bold;
  color: #0050A5;
}
.c-text.-notes {
  font-size: 1.4rem;
  color: #666;
}

/*================================
	link
================================*/
.c-link {
  color: #0050a5;
  transition: all 0.2s;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding: 0 5px 1.2px;
  display: inline-block;
}
.c-link::after {
  content: "";
  background-color: #0050a5;
  width: 100%;
  height: 1px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-link:hover {
    color: #0050a5;
  }
}
.c-link.-blank::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: relative;
  padding-right: 8px;
}
.c-link.-pdf {
  color: #000;
  font-weight: normal;
  transition: all 0.1s;
  padding-left: 46.03px;
}
.c-link.-pdf::before {
  content: url(/assets/images/icon_pdf_blue.svg);
  display: inline-block;
  position: absolute;
  padding-right: 15.7px;
  top: -1px;
  left: 5px;
}
.c-link.-pdf::after {
  display: none;
}
.c-link.-pdf:hover {
  text-decoration: underline;
}
.c-link.-anchor {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  background: url(/assets/images/icn_arrow_down_blue.svg) no-repeat left center;
  background-size: 9px 6px;
  background-position-x: 10px;
}

.c-link2 {
  display: inline-block;
  position: relative;
  color: #000;
  transition: all 0.4s;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 40px;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .c-link2:hover {
    color: #0050a5;
  }
}
@media screen and (min-width: 768px) {
  .c-link2:hover::after {
    width: 8px;
  }
}
.c-link2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  right: calc(100% - 32px);
  width: 32px;
  height: 1px;
  background-color: #0050a5;
  transition: all 0.4s;
}
.c-link2.-blank {
  padding-left: 61px;
}
.c-link2.-blank::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: absolute;
  right: calc(100% - 61px);
  padding-right: 8px;
}
.c-link2.-blank::after {
  top: 0.7em;
}

.c-link3 {
  display: flex;
}
.c-link3__inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover {
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__text {
    margin-right: 14px;
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__circle::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.c-link3__text {
  color: #0050a5;
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 16px;
  transition: margin-right 0.4s;
  flex: 1;
}
.c-link3__circle {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0050a5;
  border: 1px solid #0050a5;
  position: relative;
  overflow: hidden;
}
.c-link3__circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  left: 31%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0050a5;
  border-right: 2px solid #0050a5;
  transform: rotate(45deg);
}
.c-link3__circle::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease-in-out;
}
.c-link3.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: relative;
  padding-right: 8px;
}
.c-link3.-center {
  justify-content: center;
  width: 100%;
}
.c-link3.-black .c-link3__inner:hover .c-link3__circle {
  border: 1px solid #FCCA00;
}
@media screen and (min-width: 768px) {
  .c-link3.-black .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.c-link3.-black.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_black.svg);
}
.c-link3.-black .c-link3__text {
  color: #000;
}
.c-link3.-black .c-link3__circle {
  background-color: #FCCA00;
  border: 1px solid #000;
}
.c-link3.-black .c-link3__circle::before {
  background-color: #000;
}
.c-link3.-black .c-link3__circle::after {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}
.c-link3.-yellow .c-link3__inner:hover .c-link3__circle {
  border: 1px solid #FCCA00;
}
@media screen and (min-width: 768px) {
  .c-link3.-yellow .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.c-link3.-yellow.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_yellow.svg);
}
.c-link3.-yellow .c-link3__text {
  color: #FCCA00;
}
.c-link3.-yellow .c-link3__circle {
  background-color: #FCCA00;
  border: 1px solid #FCCA00;
}
.c-link3.-yellow .c-link3__circle::before {
  background-color: #fff;
}
.c-link3.-yellow .c-link3__circle::after {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}

.c-button {
  display: flex;
}
.c-button__inner {
  position: relative;
  display: block;
  background-color: #0050a5;
  border: 1px solid #0050a5;
  border-radius: 8px;
  color: #fff;
  padding: 10px 35px 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
}
.c-button__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  right: 15.5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 2;
}
.c-button__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #fff;
  transform: translateX(-100%);
  transition: all 0.2s;
  z-index: 1;
}
.c-button__inner:hover {
  color: #0050a5;
}
.c-button__inner:hover::before {
  border-top: 2px solid #0050a5;
  border-right: 2px solid #0050a5;
}
.c-button__inner:hover::after {
  transform: translateX(0);
}
.c-button__text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
}
.c-button.-blank .c-button__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  left: auto;
  bottom: 0;
  display: inline-block;
  margin: auto 0;
  z-index: 10;
  width: 13px;
  height: 11px;
  background: url(/assets/images/icn_blank_white.svg) no-repeat;
  background-size: contain;
  border: none;
  transform: translateX(-100%);
}
.c-button.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_blue.svg) no-repeat;
  background-size: contain;
}
.c-button.-center {
  justify-content: center;
}
.c-button.-yellow .c-button__inner {
  color: #000;
  background-color: #FCCA00;
  border: 1px solid #FCCA00;
}
.c-button.-yellow .c-button__inner::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.c-button.-yellow .c-button__inner::after {
  background-color: #000;
}
.c-button.-yellow .c-button__inner:hover {
  color: #FCCA00;
}
.c-button.-yellow .c-button__inner:hover::before {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}
.c-button.-yellow.-blank .c-button__inner::before {
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-yellow.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_yellow.svg) no-repeat;
  background-size: contain;
}
.c-button.-download .c-button__inner {
  color: #fff;
  background-color: #0050a5;
  border: 1px solid #0050a5;
}
.c-button.-download .c-button__inner::before {
  background: url(/assets/images/icon_dl_white.svg) no-repeat;
  background-size: contain;
  border: none;
  transform: rotate(0);
  width: 13px;
  height: 16.5px;
  top: 29%;
}
.c-button.-download .c-button__inner::after {
  background-color: #fff;
}
.c-button.-download .c-button__inner:hover {
  color: #0050a5;
}
.c-button.-download .c-button__inner:hover::before {
  background: url(/assets/images/icon_dl_blue.svg) no-repeat;
  background-size: contain;
}
.c-button.-black .c-button__inner {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
}
.c-button.-black .c-button__inner::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.c-button.-black .c-button__inner::after {
  background-color: #0050a5;
}
.c-button.-black .c-button__inner:hover {
  color: #fff;
  border: 1px solid #0050a5;
}
.c-button.-black .c-button__inner:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-button.-black.-blank .c-button__inner::before {
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-black.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_white.svg) no-repeat;
  background-size: contain;
}
.c-button.-black.-download .c-button__inner::before {
  background: url(/assets/images/icon_dl_blue.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-black.-download .c-button__inner:hover::before {
  background: url(/assets/images/icon_dl_white.svg) no-repeat;
  background-size: contain;
}

/*================================
	column
================================*/
.c-column {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-column {
    flex-direction: column;
    gap: 32px;
  }
}
.c-column__img {
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
  position: relative;
}
.c-column__img img {
  transition: transform 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .c-column__img img {
    max-width: 1200px;
    width: 100%;
  }
}
.c-column__caption {
  margin-top: 16px;
  color: #666;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-column__link:hover img {
    transform: scale(1.1, 1.1);
    transition-duration: 0.2s;
  }
}
.c-column.-center {
  justify-content: center;
}
.c-column.-center .c-column__img {
  max-width: 840px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-column.-center .c-column__img {
    max-width: 1200px;
  }
}
.c-column.-column2 {
  justify-content: space-between;
}
.c-column.-column2 .c-column__img {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-column.-column2 .c-column__img {
    max-width: 1200px;
  }
}
.c-column.-column3 {
  justify-content: space-between;
}
.c-column.-column3 .c-column__img {
  max-width: 368px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-column.-column3 .c-column__img {
    max-width: 1200px;
  }
}

/*================================
	modal
================================*/
.c-modal-youtube__img {
  position: relative;
}
.c-modal-youtube__img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  margin: auto;
  background: url(/assets/images/icn_movie_play2.svg) no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}

/*モーダル（動画）*/
.c-openMovieModal {
  cursor: pointer;
}

.c-openMovieModal .c-movieModal__content {
  display: none;
}

.c-movieModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  -webkit-transition: all 0.3s;
  transition: none 0.3s;
}
.c-movieModal.-active {
  opacity: 1;
  pointer-events: auto;
}
.c-movieModal.-active .c-movieModal__cols {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.c-movieModal.-active .c-movieModal__cols:before, .c-movieModal.-active .c-movieModal__cols:after {
  -webkit-transition: all 0.2s;
  -webkit-transition-delay: 0.4s;
  transition: all 0.2s 0.4s;
  opacity: 1;
}
.c-movieModal.-active .c-movieModal__cols:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-movieModal.-active .c-movieModal__cols:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-movieModal__cols {
  display: flex;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 0.2s;
  -webkit-transition-delay: 0.2s;
  transition: all 0.2s 0.2s;
}
.c-movieModal__cols:before, .c-movieModal__cols:after {
  content: "";
  position: absolute;
  right: -4px;
  top: -37px;
  width: 38px;
  height: 4px;
  background-color: #fff;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}
.c-movieModal__cols:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-movieModal__cols:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-movieModal__inner {
  position: relative;
  max-width: 840px;
}
.c-movieModal__content {
  position: relative;
  width: 360px;
  padding: 60px 36px;
  background-color: #fff;
}

@media print, screen and (max-width: 767px) {
  .c-movieModal {
    padding: 20px 5.33333%;
  }
  .c-movieModal__cols {
    display: block;
    width: 100%;
  }
  .c-movieModal__cols:before, .c-movieModal__cols:after {
    top: -28px;
    width: 29px;
    height: 3px;
  }
  .c-movieModal__inner {
    width: 100%;
  }
  .c-movieModal__content {
    width: 100%;
    padding: 30px 20px;
  }
  .c-youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .c-youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .c-movieModal {
    padding: 20px 14%;
  }
}
/*モーダル（HTML）*/
.c-openHtmlModal {
  cursor: pointer;
}

.c-modalContents {
  display: none;
}
.c-modalContents > :last-child {
  margin-bottom: 0;
}

.c-htmlModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-htmlModal.-active {
  opacity: 1;
  pointer-events: auto;
}
.c-htmlModal.-active .c-modalContents__content {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.c-htmlModal .c-modalContents__body .c-modalContents {
  display: block;
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .c-htmlModal {
    padding: 20px 5.33333%;
  }
  .c-htmlModal__inner {
    width: 100%;
    height: 70%;
  }
  .c-htmlModal__inner .c-modalContents {
    padding: 30px 20px;
  }
  .c-htmlModal__inner:before, .c-htmlModal__inner:after {
    top: -28px;
    width: 29px;
    height: 3px;
  }
}
/*modalContents*/
.c-modalContents__content {
  position: relative;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  padding-top: 80px;
  transition: all 0.2s 0.2s;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-modalContents__content {
    width: 100%;
    padding-top: 48px;
  }
}
.c-modalContents__body {
  background-color: #fff;
  width: 1040px;
  height: 640px;
  overflow: auto;
  padding: 0 80px 80px;
}
@media screen and (max-width: 767px) {
  .c-modalContents__body {
    width: 100%;
    height: 70vh;
    padding: 0 24px 24px;
  }
}
.c-modalContents__close {
  position: absolute;
  background-color: #fff;
  width: 28px;
  height: 28px;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-modalContents__close {
    right: 12px;
    top: 12px;
  }
}
.c-modalContents__close::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-modalContents__close::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-modalContents__close::before, .c-modalContents__close::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 12px;
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background-color: #0050A5;
}
.c-modalContents__title {
  font-size: 3.6rem;
  color: #0050A5;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-modalContents__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
.c-modalContents__sub {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-modalContents__sub {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.c-modalContents__txt {
  font-size: 1.6rem;
}
.c-modalContents__cols {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-modalContents__cols {
    flex-direction: column;
    justify-content: flex-end;
  }
}
.c-modalContents__col {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-modalContents__col {
    margin-bottom: 24px;
  }
}
.c-modalContents__col + .c-modalContents__col {
  margin-left: 64px;
  width: 384px;
  flex: none;
}
@media screen and (max-width: 767px) {
  .c-modalContents__col + .c-modalContents__col {
    margin-left: 0;
    width: 100%;
  }
}
.c-modalContents__img + .c-modalContents__img {
  margin-top: 24px;
}
.c-modalContents__caption {
  margin-top: 16px;
  font-size: 1.4rem;
}

/*================================
	content
================================*/
.c-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-content {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .c-content img {
    max-width: 1200px;
    width: 100%;
  }
}
.c-content__textarea {
  flex: 1;
  margin-right: 64px;
}
@media screen and (max-width: 767px) {
  .c-content__textarea {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-content__imgarea {
    margin-bottom: 24px;
  }
}
.c-content__imgarea.-link {
  height: 100%;
}
.c-content__imgarea.-link img {
  transition: transform 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .c-content__imgarea.-link:hover p {
    color: #0050A5;
  }
}
@media screen and (min-width: 768px) {
  .c-content__imgarea.-link:hover img {
    transform: scale(1.1, 1.1);
    transition-duration: 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .c-content__imgarea + .c-content__imgarea {
    margin-top: 8px;
  }
}
.c-content__title {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-content__title {
    margin-right: 0;
    text-align: center;
  }
}
.c-content__title span {
  display: block;
}
.c-content__title span:nth-child(1) {
  font-family: "Jost", sans-serif;
  font-size: 6.4rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-content__title span:nth-child(1) {
    font-size: 3.8rem;
    margin-bottom: 12px;
  }
}
.c-content__title span:nth-child(2) {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-content__title span:nth-child(2) {
    font-size: 2.4rem;
  }
}
.c-content__title.-jp-only {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-content__title.-jp-only {
    font-size: 2.4rem;
  }
}
.c-content__text {
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.c-content__img {
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-content__img {
    max-width: 1200px;
  }
}
.c-content__img + p {
  margin-top: 16px;
  font-size: 1.6rem;
  color: #000;
}
.c-content.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-content.-reverse {
    flex-direction: column;
  }
}
.c-content.-reverse .c-content__textarea {
  margin-right: 0;
  margin-left: 64px;
}
@media screen and (max-width: 767px) {
  .c-content.-reverse .c-content__textarea {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-content.-jp-only-layout .c-content__imgarea {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-content.-jp-only-layout .c-content__textarea {
    order: 2;
  }
}
.c-content.-column3 {
  justify-content: flex-start;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 {
    gap: 0;
    justify-content: center;
  }
}
.c-content.-column3.-center {
  justify-content: center;
}
.c-content.-column3 .c-content__img {
  max-width: 384px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__img {
    max-width: 1200px;
  }
}
.c-content.-column3 .c-content__textarea {
  margin-right: 24px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__textarea {
    margin-right: 0;
    margin-left: 0;
  }
}
.c-content.-column3.-reverse .c-content__textarea {
  margin-right: 0;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3.-reverse .c-content__textarea {
    margin-right: 0;
    margin-left: 0;
  }
}
.c-content.-column3 .c-content__card {
  max-width: 368px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__card {
    max-width: 1200px;
  }
}
.c-content.-column3 .c-content__card__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__card__title {
    margin-bottom: 24px;
  }
}
.c-content.-column3 .c-content__title {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__title {
    font-size: 2rem;
  }
}
.c-content.-image2 {
  max-width: 1728px;
  padding: 0 20px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-content.-image2 {
    gap: 0;
  }
}
.c-content.-image2 .c-content__img {
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .c-content.-image2 .c-content__img {
    max-width: 1200px;
  }
}
.c-content.-image2 .c-content__textarea {
  max-width: 543px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  flex: none;
}
@media screen and (max-width: 767px) {
  .c-content.-image2 .c-content__textarea {
    max-width: 1200px;
  }
}
.c-content.-image2.-reverse .c-content__textarea {
  max-width: 543px;
  width: 100%;
  margin-right: 0;
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .c-content.-image2.-reverse .c-content__textarea {
    max-width: 1200px;
  }
}
.c-content__card {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-content__card {
    max-width: 1200px;
  }
}
.c-content__card__img {
  margin-bottom: 16px;
  width: 100%;
}
.c-content__card__title {
  font-size: 2.4rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-content__card__title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.c-content__card__text {
  font-size: 1.6rem;
}
.c-content__card__text + .c-link3 {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .c-content__card + .c-content__card {
    margin-top: 32px;
  }
}
.c-content__caption {
  margin-top: 16px;
  color: #666;
  font-size: 1.4rem;
}

.c-board {
  background-color: #fff;
}
.c-board__fv {
  max-width: 1920px;
  margin: 0 auto 100px;
  padding-top: 278px;
  background-image: url(/assets/images/dummy/fv_2.jpg);
  background-image: -webkit-image-set(url("/assets/images/dummy/fv_2.jpg") type("image/jpeg"));
  background-image: image-set(url("/assets/images/dummy/fv_2.jpg") type("image/jpeg"));
  background-size: 1920px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-board__fv {
    background-image: url(/assets/images/dummy/fv_2_sp.jpg);
    background-image: -webkit-image-set(url("/assets/images/dummy/fv_2_sp.jpg") type("image/jpeg"));
    background-image: image-set(url("/assets/images/dummy/fv_2_sp.jpg") type("image/jpeg"));
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 40% 24px 0;
    margin: 0 auto 80px;
  }
}
.c-board__fv__box {
  background-color: #fff;
  max-width: 1200px;
  padding: 80px 100px;
  margin: 0 auto;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__box {
    padding: 80px 24px;
  }
}
.c-board__fv__title {
  font-size: 6.4rem;
  text-align: center;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__title {
    font-size: 3.8rem;
  }
}
.c-board__fv__sub {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__sub {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.c-board__fv__intro {
  font-size: 3.6rem;
  color: #0050A5;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__intro {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.c-board__fv__txt {
  font-size: 1.6rem;
  text-align: center;
}

/*================================
	flex
================================*/
.c-flex {
  display: flex;
  justify-content: space-between;
}
.c-flex.-nogap {
  justify-content: flex-start;
}
.c-flex.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-flex.-reverse {
    flex-direction: column;
  }
}
.c-flex.-col1 {
  justify-content: center;
}
.c-flex.-col2 .c-flex__col, .c-flex.-col2 .c-flex__img {
  width: 48.5%;
  margin-right: 3%;
}
@media screen and (max-width: 767px) {
  .c-flex.-col2 .c-flex__col, .c-flex.-col2 .c-flex__img {
    width: 100%;
    margin-right: 0;
  }
}
.c-flex.-col2 .c-flex__img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-flex.-col2 .c-flex__img {
    margin-bottom: 32px;
  }
}
.c-flex.-col2 .c-flex__img:nth-child(even) {
  margin-right: 0;
}
.c-flex.-col3 .c-flex__col, .c-flex.-col3 .c-flex__img {
  width: 31.33333%;
  margin-right: 3%;
}
@media screen and (max-width: 767px) {
  .c-flex.-col3 .c-flex__col, .c-flex.-col3 .c-flex__img {
    width: 100%;
    margin-right: 0;
  }
}
.c-flex.-col3 .c-flex__img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-flex.-col3 .c-flex__img {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .c-flex {
    flex-direction: column;
  }
}

html, body {
  scroll-behavior: auto;
}

.fv__section {
  position: relative;
}
.fv__slide {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.fv__slide__wrap {
  position: relative;
  height: 100dvh;
  background-color: #000;
  display: flex;
}
.fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background-color: #000;
}
.fv__overlay.is-active {
  opacity: 0;
}
.fv__title-01 {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -130%);
  z-index: 40;
  width: 100%;
  color: #fff;
  font-family: 游明朝体, "Yu Mincho", "Noto Serif JP", serif;
  font-size: min(6vw, 9rem);
  text-align: center;
  opacity: 0;
  transition: opacity 1.2s ease-out, transform 0.8s ease-out;
  font-weight: 300;
  font-feature-settings: "palt";
  text-shadow: 0 0 25px #000;
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-01 {
    font-size: min(6vw, 9rem);
    top: 29%;
    padding-left: 5%;
  }
}
@media screen and (width <= 767px) {
  .fv__title-01 {
    font-size: 3.4rem;
    top: 290px;
    padding-left: 5%;
    transform: translate(-50%, -60%);
  }
}
.fv__title-01.is-visible {
  opacity: 1;
  transform: translate(-50%, -100%);
}
@media screen and (width <= 767px) {
  .fv__title-01.is-visible {
    transform: translate(-50%, -100%);
  }
}
.fv__title-02 {
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  opacity: 0;
  width: fit-content;
  color: #fff;
  font-family: 游明朝体, "Yu Mincho", "Noto Serif JP", serif;
  font-size: min(4vw, 4rem);
  text-align: center;
  font-weight: 300;
  font-feature-settings: "palt";
  text-shadow: 0 0 30px #000;
  white-space: nowrap;
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02 {
    top: 20%;
    padding: 0 20px;
  }
}
@media screen and (width <= 767px) {
  .fv__title-02 {
    transform: translate(-50%, -30%);
    left: 50%;
    padding: 0 20px;
    font-size: 2.4rem;
  }
}
@media screen and (width <= 767px) {
  .fv__title-02.para-inview {
    top: 280px;
    transform: translate(-50%, 0%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02.para-inview {
    transform: translate(-50%, 100%);
  }
}
@media screen and (width <= 767px) {
  .fv__title-02.para-inview.-show {
    transform: translate(-50%, -100%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02.para-inview.-show {
    transform: translate(-50%, 50%);
  }
}
.fv__title-02__tm {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  opacity: 0;
  color: #fff;
  font-family: "Jost", sans-serif;
  text-align: center;
  font-size: min(6.4vw, 7.2rem);
  text-shadow: 0 0 30px #000;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02__tm {
    top: 35%;
    padding: 0 20px;
    white-space: nowrap;
  }
}
@media screen and (width <= 767px) {
  .fv__title-02__tm {
    transform: translate(-50%, -30%);
    left: 50%;
    padding: 0 20px;
    white-space: nowrap;
    font-size: 3.2rem;
  }
}
.fv__title-02__tm.para-inview {
  transform: translate(-50%, 30%);
}
@media screen and (width <= 767px) {
  .fv__title-02__tm.para-inview {
    top: 340px;
    transform: translate(-50%, 0%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02__tm.para-inview {
    transform: translate(-50%, 0%);
  }
}
@media screen and (width <= 767px) {
  .fv__title-02__tm.para-inview.-show {
    transform: translate(-50%, -100%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02__tm.para-inview.-show {
    transform: translate(-50%, -50%);
  }
}
.fv__title-02__box {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  opacity: 0;
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02__box {
    top: 20%;
    padding: 0 20px;
  }
}
@media screen and (width <= 767px) {
  .fv__title-02__box {
    transform: translate(-50%, -30%);
    left: 50%;
    padding: 0 20px;
  }
}
@media screen and (width <= 767px) {
  .fv__title-02__box.para-inview {
    top: 280px;
    transform: translate(-50%, 0%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02__box.para-inview {
    transform: translate(-50%, 100%);
  }
}
@media screen and (width <= 767px) {
  .fv__title-02__box.para-inview.-show {
    transform: translate(-50%, -100%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-02__box.para-inview.-show {
    transform: translate(-50%, 50%);
  }
}
.fv__title-03 {
  position: absolute;
  top: 26%;
  left: 50%;
  z-index: 40;
  width: 100%;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: min(6vw, 9rem);
  text-align: center;
  opacity: 0;
  font-weight: 300;
  font-feature-settings: "palt";
  text-shadow: 0 -2px 30px #000;
}
@media screen and (width > 767px) {
  .fv__title-03 {
    line-height: 200px;
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-03 {
    top: 28%;
    font-size: min(6vw, 9rem);
  }
}
@media screen and (width <= 767px) {
  .fv__title-03 {
    top: 280px;
    font-size: 3.4rem;
  }
}
@media screen and (width <= 767px) {
  .fv__title-03.sp-03__up {
    top: 235px;
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-03.sp-03__up {
    font-size: min(6vw, 9rem);
    top: 23%;
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__title-03.sp-03__down {
    top: 31%;
    font-size: min(6vw, 9rem);
  }
}
@media screen and (width <= 767px) {
  .fv__title-03.sp-03__down {
    top: 409px;
  }
}
.fv__title__en {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 40;
  width: fit-content;
  font-size: 2.4rem;
  font-family: Jost, Italic;
  text-align: center;
  color: #fff;
  letter-spacing: 12px;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  padding-left: 12px;
  white-space: nowrap;
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (768px <= width <= 1024px) {
  .fv__title__en {
    font-size: 1.6rem;
    letter-spacing: 8px;
  }
}
@media screen and (width <= 767px) {
  .fv__title__en {
    font-size: 1.6rem;
    letter-spacing: 8px;
  }
}
.fv__title__en.is-01 {
  opacity: 0;
  transform: translate(-50%, -150%);
  transition: opacity 1.2s ease-out, transform 0.8s ease-out;
  top: 35%;
}
@media screen and (768px <= width <= 1024px) {
  .fv__title__en.is-01 {
    font-size: min(6vw, 2.4rem);
    letter-spacing: 8px;
    top: 32%;
  }
}
@media screen and (width <= 767px) {
  .fv__title__en.is-01 {
    font-size: 1.6rem;
    letter-spacing: 8px;
    top: 325px;
  }
}
.fv__title__en.is-01.is-visible {
  opacity: 1;
  transform: translate(-50%, -70%);
}
.fv__title__en.is-02 {
  top: 28.5%;
  left: 70%;
  white-space: nowrap;
  transform: translate(-50%, 80%);
}
@media screen and (768px <= width <= 1024px) {
  .fv__title__en.is-02 {
    font-size: min(6vw, 2.4rem);
    letter-spacing: 8px;
    top: 27%;
    left: 50%;
  }
}
@media screen and (width <= 767px) {
  .fv__title__en.is-02 {
    font-size: 1.6rem;
    letter-spacing: 8px;
    top: 282px;
    left: 50%;
  }
}
.fv__title__en.is-03 {
  top: 33%;
  transform: translate(-50%, 80%);
}
@media screen and (768px <= width <= 1024px) {
  .fv__title__en.is-03 {
    font-size: min(6vw, 2.4rem);
    letter-spacing: 4.2px;
    top: 32%;
    left: 50%;
  }
}
@media screen and (width <= 767px) {
  .fv__title__en.is-03 {
    font-size: 1.4rem;
    letter-spacing: 4.2px;
    top: 330px;
    left: 50%;
  }
}
.fv__para__bg.is-para {
  width: 100%;
}
.fv__img-01 {
  position: absolute;
  top: 35%;
  left: 0;
  background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_img.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  transform: translateY(-65%);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  z-index: 30;
  opacity: 0;
}
@media screen and (768px <= width <= 1024px) {
  .fv__img-01 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_img_sp.png);
    top: 30%;
    background-size: 55svh;
  }
}
@media screen and (max-width: 820px) and (min-width: 768px) {
  .fv__img-01 {
    background-size: 70svh;
  }
}
@media screen and (width <= 767px) {
  .fv__img-01 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_img_sp.png);
    top: 50svh;
    background-size: 52svh;
  }
}
.fv__img-01.is-visible {
  transform: translateY(-50%);
  opacity: 1;
}
.fv__img-03 {
  position: absolute;
  top: 28.5%;
  left: 0;
  background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_3_img.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  z-index: 30;
}
@media screen and (768px <= width <= 1024px) {
  .fv__img-03 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_3_img_sp.png);
    top: 30%;
    background-size: 55svh;
  }
}
@media screen and (max-width: 820px) and (min-width: 768px) {
  .fv__img-03 {
    background-size: 70svh;
  }
}
@media screen and (width <= 767px) {
  .fv__img-03 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_3_img_sp.png);
    top: 50svh;
    background-size: 52svh;
  }
}
@media screen and (min-width: 1031px) {
  .fv__bg-01 {
    position: absolute;
    top: 30%;
    left: 0;
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_bg.jpg);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    width: 100%;
    height: 100%;
    transform: translateY(-65%);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    z-index: 20;
    opacity: 0;
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__bg-01 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_bg_sp.jpg);
  }
}
@media screen and (width <= 767px) {
  .fv__bg-01 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_bg_sp.jpg);
  }
}
.fv__bg-01.is-visible {
  transform: translateY(-50%);
  opacity: 1;
}
@media screen and (min-width: 1031px) {
  .fv__bg-02 {
    position: absolute;
    top: 36%;
    left: 0;
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 20;
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__bg-02 {
    position: absolute;
    top: 41%;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 55svh;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    z-index: 30;
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_2_sp.png);
  }
}
@media screen and (max-width: 820px) and (min-width: 768px) {
  .fv__bg-02 {
    top: 32%;
    background-size: 70svh;
  }
}
@media screen and (width <= 767px) {
  .fv__bg-02 {
    position: absolute;
    top: 50svh;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 44svh;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    z-index: 30;
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_2_sp.png);
  }
}
@media screen and (min-width: 1031px) {
  .fv__bg-03 {
    position: absolute;
    top: 30%;
    left: 0;
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    z-index: 20;
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__bg-03 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_bg_sp.jpg);
  }
}
@media screen and (width <= 767px) {
  .fv__bg-03 {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_fv_1_bg_sp.jpg);
  }
}
.fv__wrap {
  position: relative;
}
.fv__navi__wrap {
  position: fixed;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
}
@media screen and (768px <= width <= 1024px) {
  .fv__navi__wrap {
    gap: 12px;
    top: 10%;
    right: 3%;
    transform: unset;
  }
}
@media screen and (width <= 767px) {
  .fv__navi__wrap {
    gap: 12px;
    top: 102px;
    right: 10px;
    transform: unset;
  }
}
.fv__navi__wrap.disable {
  display: none;
}
.fv__navi__item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.fv__navi__item.is-active {
  background-color: #fcca00;
}
.fv__skip {
  position: fixed;
  bottom: 24px;
  right: 70px;
  z-index: 0;
}
@media screen and (768px <= width <= 1024px) {
  .fv__skip {
    bottom: 42px;
    right: 34px;
  }
}
@media screen and (width <= 767px) {
  .fv__skip {
    bottom: 42px;
    right: 34px;
  }
}
.fv__skip.disable {
  display: none;
}
.fv__skip__wrap {
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  padding: 16px 32px;
}
@media screen and (768px <= width <= 1024px) {
  .fv__skip__wrap {
    padding: 6px 12px;
  }
}
@media screen and (width <= 767px) {
  .fv__skip__wrap {
    padding: 6px 12px;
  }
}
.fv__skip__wrap .c-link3 {
  cursor: pointer;
  width: 88px;
  transition: all 0.2s;
}
.fv__scrolltop {
  position: fixed;
  display: block;
  bottom: -5px;
  left: 50%;
  width: 43px;
  height: 160px;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 0;
  clip-path: inset(20% 0 0 0);
}
.fv__scrolltop.is-disable {
  z-index: -1;
}
.fv__scrolltop__text {
  position: fixed;
  bottom: 130px;
  left: calc(50% - 6px);
  transform: translateX(-50%);
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  font-family: "Jost", sans-serif;
}
.fv__scrolltop__text.is-disable {
  z-index: -1;
}
.fv__imgbox-02 img {
  margin: 0 auto;
}
.fv__logo {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -100%);
  opacity: 0;
  z-index: 40;
  transition: opacity 1.2s ease-out, transform 1.5s ease-out;
}
@media screen and (width <= 767px) {
  .fv__logo {
    top: 290px;
  }
}
@media screen and (768px <= width <= 1024px) {
  .fv__logo {
    top: 29%;
  }
}
.fv__logo.is-visible {
  opacity: 1;
  transform: translate(-50%, -60%);
}
@media screen and (width > 767px) {
  .fv__logo picture {
    width: 50%;
    margin: 0 auto;
  }
}
.fv__truemoment__logo {
  position: absolute;
  top: 26%;
  left: 50%;
  z-index: 40;
  width: fit-content;
  height: 100px;
}
@media screen and (width <= 767px) {
  .fv__truemoment__logo {
    width: 90%;
    height: auto;
    top: 280px;
  }
}
.fv__truemoment__logo img {
  height: 100%;
}
@media screen and (width <= 767px) {
  .fv__truemoment__logo img {
    width: 100%;
  }
}

.anchor__section {
  position: relative;
  background-color: #f5f5f5;
  padding: 80px 20px;
}
@media screen and (width <= 767px) {
  .anchor__section {
    padding: 40px 20px;
  }
}
.anchor__section.is-para {
  margin-top: 100svh;
}
.anchor__wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}
@media screen and (width > 767px) {
  .anchor__wrap {
    max-width: 1200px;
  }
}
@media screen and (width <= 767px) {
  .anchor__wrap {
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (width > 767px) {
  .anchor__column {
    width: 46.6666666%;
  }
}
.anchor__link {
  cursor: pointer;
}
@media screen and (width > 767px) {
  .anchor__link:hover {
    opacity: 0.8;
  }
}
.anchor__link__text {
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding-right: 40px;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .anchor__link__text {
    padding-right: 16px;
    font-size: 1.6rem;
  }
}
.anchor__link__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  right: 0;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
@media screen and (width <= 767px) {
  .anchor__link__text::after {
    width: 10px;
    height: 10px;
    top: 15%;
  }
}
.anchor__link__text__box {
  background-color: #000;
  padding: 16px 0;
}

.movie__section {
  position: relative;
  padding: 100px 20px 80px;
  background-color: #fff;
}
@media screen and (width <= 767px) {
  .movie__section {
    padding: 64px 20px 80px;
  }
}
.movie__section.is-para {
  margin-top: 100svh;
}
.movie__wrap {
  width: 100%;
}
@media screen and (width > 767px) {
  .movie__wrap {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.movie__title {
  font-size: 4.4rem;
  text-align: center;
}
@media screen and (width <= 767px) {
  .movie__title {
    font-size: 2.4rem;
  }
}
.movie__title__en {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6.4rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}
@media screen and (width <= 767px) {
  .movie__title__en {
    font-size: 3.8rem;
    top: -30px;
  }
}
.movie__box {
  position: relative;
  margin-top: 110px;
  width: 100%;
  background-color: #fcca00;
  padding: 86px 180px 80px 180px;
}
@media screen and (width <= 767px) {
  .movie__box {
    margin-top: 64px;
    padding: 60px 24px 64px;
  }
}
.movie__box .c-column__img {
  border-radius: 0;
}
.movie__description {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
}

.gallery__section {
  position: relative;
  padding: 64px 20px;
  background-color: #000;
  width: 100%;
}
@media screen and (width <= 767px) {
  .gallery__section {
    padding: 40px 20px 48px;
  }
}
.gallery__section.is-para {
  position: fixed;
  z-index: 0;
  bottom: 0;
  left: 0;
}
.gallery__wrap {
  width: 100%;
}
@media screen and (width > 767px) {
  .gallery__wrap {
    max-width: 1796px;
    margin: 0 auto;
  }
}
.gallery__title {
  font-size: 6.4rem;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (width <= 767px) {
  .gallery__title {
    font-size: 3.8rem;
  }
}
.gallery__box-1 {
  width: 100%;
}
.gallery__box-2 {
  display: flex;
}
@media screen and (width > 767px) {
  .gallery__box-2 {
    gap: 16px;
    margin-top: 16px;
  }
}
@media screen and (width <= 767px) {
  .gallery__box-2 {
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
  }
}
.gallery__flex__wrap {
  display: flex;
  gap: 16px;
}
@media screen and (width <= 767px) {
  .gallery__flex__wrap {
    gap: 8px;
  }
}
.gallery__flex__wrap.-between {
  justify-content: space-between;
}
.gallery__modal__button {
  transition: all 0.2s;
  position: relative;
}
@media screen and (width > 767px) {
  .gallery__modal__button {
    cursor: pointer;
  }
}
@media screen and (width > 767px) {
  .gallery__modal__button:hover::before {
    opacity: 0.6;
  }
}
.gallery__modal__button::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fcca00;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.2s;
}
.gallery__modal__picture {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.gallery__modal__picture::before {
  content: "";
  position: absolute;
  right: -4px;
  top: -37px;
  width: 38px;
  height: 4px;
  background-color: #fff;
  transition: all 0.2s 0.4s;
  transform: rotate(135deg);
}
@media screen and (width <= 767px) {
  .gallery__modal__picture::before {
    top: -27px;
    width: 18px;
  }
}
.gallery__modal__picture::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -37px;
  width: 38px;
  height: 4px;
  background-color: #fff;
  transition: all 0.2s 0.4s;
  transform: rotate(45deg);
}
@media screen and (width <= 767px) {
  .gallery__modal__picture::after {
    top: -27px;
    width: 18px;
  }
}
.gallery__modal__picture img {
  width: 840px;
}
.gallery__modal__wrap {
  display: none;
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: auto;
  top: 50svh;
  transform: translateY(-50%);
}
.gallery__modal__wrap.is-active {
  display: block;
}
.gallery__modal__overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 1500;
  top: 0;
  left: 0;
}
.gallery__modal__overlay.is-active {
  display: block;
}
.gallery-splide__track {
  overflow: unset;
}
.gallery-splide__slide {
  display: flex;
  align-items: center;
}
@media screen and (width <= 767px) {
  .gallery-splide__slide {
    padding: 0 20px;
  }
}
.gallery-splide__arrows--prev {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  overflow: hidden;
  transform: translateY(0);
  opacity: 1;
}
@media screen and (width <= 767px) {
  .gallery-splide__arrows--prev {
    width: 28px;
    height: 28px;
  }
}
.gallery-splide__arrows--prev::before {
  content: "";
  display: block;
  position: absolute;
  right: 22px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(225deg) translateY(0);
  transform: rotate(225deg) translateY(0);
}
@media screen and (width <= 767px) {
  .gallery-splide__arrows--prev::before {
    right: 9px;
    top: 9px;
  }
}
@media screen and (width > 767px) {
  .gallery-splide__arrows--prev::after {
    content: "";
    display: block;
    position: absolute;
    left: 13px;
    width: 17px;
    height: 2px;
    background: #000;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.gallery-splide__arrows--next {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  overflow: hidden;
  transform: translateY(0);
  opacity: 1;
}
@media screen and (width <= 767px) {
  .gallery-splide__arrows--next {
    width: 28px;
    height: 28px;
  }
}
.gallery-splide__arrows--next::before {
  content: "";
  display: block;
  position: absolute;
  left: 22px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg) translateY(0);
  transform: rotate(45deg) translateY(0);
}
@media screen and (width <= 767px) {
  .gallery-splide__arrows--next::before {
    left: 9px;
    top: 9px;
  }
}
@media screen and (width > 767px) {
  .gallery-splide__arrows--next::after {
    content: "";
    display: block;
    position: absolute;
    left: 13px;
    width: 17px;
    height: 2px;
    background: #000;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.gallery__margin-top {
  margin-top: 180px;
}
@media screen and (width > 767px) {
  .gallery__logo {
    max-width: 242px;
    width: 48%;
  }
}
@media screen and (width <= 767px) {
  .gallery__logo {
    max-width: 33%;
  }
}

.rapbell__section {
  position: relative;
  background-color: #000;
  background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  padding: 80px 0 100px;
  background-size: auto;
}
@media screen and (width <= 767px) {
  .rapbell__section {
    background-image: url(/en/sports/various/world_athletics/tokyo2025/images/img_wa2025_bg_sp.jpg);
    padding: 36px 0 80px;
  }
}
.rapbell__section__wrap {
  position: relative;
  background-color: #000;
  padding-bottom: 80px;
}
.rapbell__wrap {
  width: 100%;
  margin: 0 auto;
}
@media screen and (width > 767px) {
  .rapbell__wrap {
    max-width: 1250px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__wrap {
    padding: 0 24px;
  }
}
.rapbell__box {
  display: flex;
}
@media screen and (width > 767px) {
  .rapbell__box {
    gap: 64px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__box {
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
  }
}
.rapbell__box:last-child {
  margin-bottom: 0;
}
@media screen and (width <= 767px) {
  .rapbell__box.-num1 {
    flex-direction: column-reverse;
  }
}
@media screen and (width > 767px) {
  .rapbell__box.-num3 {
    margin-top: 100px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__box.-num3 {
    flex-direction: column-reverse;
  }
}
@media screen and (width > 767px) {
  .rapbell__box.-num4 {
    margin-top: 120px;
  }
}
@media screen and (width > 767px) {
  .rapbell__box.-num5 {
    margin-top: 80px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__box.-num5 {
    flex-direction: column-reverse;
  }
}
.rapbell__box .c-text {
  color: #fff;
  margin-bottom: 0;
}
.rapbell__box .c-text:last-child {
  margin-bottom: 0;
}
.rapbell__hide__box {
  display: none;
}
@media screen and (width <= 767px) {
  .rapbell__kv {
    margin: 48px 0;
    padding: 0 30px;
  }
}
@media screen and (width > 767px) {
  .rapbell__textbox.-num1 {
    max-width: 679px;
    margin-top: 250px;
  }
}
@media screen and (width > 767px) {
  .rapbell__textbox.-num2 {
    max-width: 385px;
  }
}
@media screen and (width > 767px) {
  .rapbell__textbox.-num3 {
    max-width: 385px;
    height: fit-content;
    margin: auto 0 18px;
  }
}
@media screen and (width > 767px) {
  .rapbell__textbox.-num4 {
    max-width: 385px;
    height: fit-content;
    margin: auto 0 18px;
  }
}
@media screen and (width > 767px) {
  .rapbell__textbox.-num5 {
    max-width: 385px;
  }
}
.rapbell__imgbox {
  position: relative;
}
.rapbell__imgbox::before {
  position: absolute;
  background-color: #fcca00;
  z-index: 0;
}
@media screen and (width > 767px) {
  .rapbell__imgbox::before {
    width: 435px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__imgbox::before {
    width: 71.794871794%;
  }
}
.rapbell__imgbox.-right::before {
  right: 0;
  bottom: 0;
  content: "";
  display: block;
}
.rapbell__imgbox.-left::before {
  left: 0;
  bottom: 0;
  content: "";
  display: block;
}
.rapbell__imgbox.-num1 {
  padding-right: 32px;
  padding-bottom: 18px;
}
@media screen and (width > 767px) {
  .rapbell__imgbox.-num1 {
    margin: 120px 0 0 auto;
    max-width: 532px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__imgbox.-num1 {
    padding-right: 20px;
  }
}
.rapbell__imgbox.-num1::before {
  height: 60.4%;
}
.rapbell__imgbox.-num2 {
  padding-right: 32px;
  padding-bottom: 18px;
}
@media screen and (width > 767px) {
  .rapbell__imgbox.-num2 {
    margin-top: 120px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__imgbox.-num2 {
    padding-right: 20px;
  }
}
.rapbell__imgbox.-num2::before {
  height: 90.6%;
}
.rapbell__imgbox.-num3 {
  padding-left: 32px;
  padding-bottom: 18px;
}
@media screen and (width <= 767px) {
  .rapbell__imgbox.-num3 {
    padding-left: 20px;
  }
}
.rapbell__imgbox.-num3::before {
  height: 90.6%;
}
.rapbell__imgbox.-num4 {
  padding-right: 32px;
  padding-bottom: 18px;
}
@media screen and (width <= 767px) {
  .rapbell__imgbox.-num4 {
    padding-right: 20px;
  }
}
.rapbell__imgbox.-num4::before {
  height: 90.6%;
}
.rapbell__imgbox.-num5 {
  padding-left: 32px;
  padding-bottom: 18px;
}
@media screen and (width > 767px) {
  .rapbell__imgbox.-num5 {
    margin-top: 100px;
  }
}
@media screen and (width <= 767px) {
  .rapbell__imgbox.-num5 {
    padding-left: 20px;
  }
}
.rapbell__imgbox.-num5::before {
  height: 90.6%;
}
.rapbell__picture {
  position: relative;
  z-index: 10;
}
.rapbell__title {
  font-size: 6.4rem;
  font-weight: 300;
  color: #fff;
  font-family: "Jost", sans-serif;
  margin-bottom: 24px;
}
@media screen and (width <= 767px) {
  .rapbell__title {
    font-size: 3.8rem;
  }
}
.rapbell__subtitle {
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (width <= 767px) {
  .rapbell__subtitle {
    font-size: 2.4rem;
  }
}
.rapbell__credit {
  font-size: 1.4rem;
  text-align: right;
  color: #fff;
}
@media screen and (width <= 767px) {
  .rapbell__credit {
    width: fit-content;
    margin: 0 0 0 auto;
  }
}
@media screen and (width > 767px) {
  .rapbell__credit__box {
    margin-top: 64px;
  }
}
.rapbell__more__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 24px auto 0;
  cursor: pointer;
}
.rapbell__more__button__text {
  font-size: 1.6rem;
  color: #fcca00;
}
.rapbell__more__button__icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid #fcca00;
  border-radius: 50%;
  flex-shrink: 0;
}
.rapbell__more__button__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 0;
  background-color: #fcca00;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.rapbell__more__button__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 0;
  background-color: #fcca00;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sports__link {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: padding-left 0.2s;
  color: #000;
}
.sports__link:hover {
  padding-left: 5px;
}
.sports__link .circle {
  border-color: #000;
  background-color: #fcca00;
}
.sports__link .circle:before {
  background-color: #000;
}
.sports__link .circle:after {
  border-top: 2px solid #fcca00;
  border-right: 2px solid #fcca00;
}
.sports__link:hover .circle {
  border-color: #fcca00;
}
.sports__link:hover .circle:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.sports__link:hover .circle:after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.world {
  position: relative;
  padding: 59px 0 80px;
  background-image: url(/sports/image/img_sports_bg_worldathletics_pc.jpg);
  background-image: -webkit-image-set(url("/sports/image/img_sports_bg_worldathletics_pc.avif") type("image/avif"), url("/sports/image/img_sports_bg_worldathletics_pc.jpg") type("image/jpeg"));
  background-image: image-set(url("/sports/image/img_sports_bg_worldathletics_pc.avif") type("image/avif"), url("/sports/image/img_sports_bg_worldathletics_pc.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (width <= 767px) {
  .world {
    background-image: url(/sports/image/img_sports_bg_worldathletics_sp.jpg);
    background-image: -webkit-image-set(url("/sports/image/img_sports_bg_worldathletics_sp.avif") type("image/avif"), url("/sports/image/img_sports_bg_worldathletics_sp.jpg") type("image/jpeg"));
    background-image: image-set(url("/sports/image/img_sports_bg_worldathletics_sp.avif") type("image/avif"), url("/sports/image/img_sports_bg_worldathletics_sp.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.world::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.world__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.world__title {
  font-size: 6.4rem;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (width <= 767px) {
  .world__title {
    font-size: 3.8rem;
    margin-bottom: 15px;
  }
}
.world__txt {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (width <= 767px) {
  .world__txt {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.world__inline {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto 40px;
}
@media screen and (width <= 767px) {
  .world__inline {
    justify-content: center;
  }
}
.world__item {
  display: flex;
  justify-content: center;
}
.world__link {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: padding-left 0.2s;
  color: #fff;
}
.world__link .circle {
  border-color: #fff;
  background-color: #fcca00;
  overflow: hidden;
}
.world__link .circle::after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.world__link .circle::before {
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}
.world__link:hover .circle::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.world__link .circle {
  display: block;
  width: 38px;
  height: 38px;
  margin-left: 16px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.world__link .circle:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease-in-out;
}
.world__link .circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  left: 31%;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.index-navi__wrap {
  display: none;
  position: fixed;
  z-index: 50;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.index-navi__wrap.is-visible {
  display: block;
}
@media screen and (width <= 767px) {
  .index-navi__wrap.is-visible {
    display: none;
  }
}
.index-navi__list {
  width: fit-content;
}
.index-navi__item {
  display: flex;
}
.index-navi__link {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 22px;
  text-decoration: none;
  color: #fcca00;
}
.index-navi__link:hover .index-navi__text {
  opacity: 1;
}
.index-navi__link.is-active {
  color: #fcca00;
}
.index-navi__link.is-active .index-navi__text {
  opacity: 1;
}
.index-navi__link.is-active .index-navi__bar::before {
  background-color: #fcca00;
  width: 65px;
}
.index-navi__link.-black {
  color: #000;
}
.index-navi__text {
  position: absolute;
  top: 50%;
  display: inline-block;
  font-size: 1.6rem;
  right: 56px;
  white-space: nowrap;
  transform: translateY(-50%);
  opacity: 0;
  padding-right: 16px;
}
.index-navi__text.is-active {
  right: 121px;
}
.index-navi__bar {
  position: relative;
  display: block;
  width: 40px;
  height: 100%;
}
.index-navi__bar::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  background-color: #aeaeae;
}

@media screen and (width > 767px) {
  .u-mt16-8 {
    margin-top: 16px;
  }
}
@media screen and (width <= 767px) {
  .u-mt16-8 {
    margin-top: 8px;
  }
}

@media screen and (width > 767px) {
  .u-mt0-8 {
    margin-top: 0;
  }
}
@media screen and (width <= 767px) {
  .u-mt0-8 {
    margin-top: 8px;
  }
}

.relation {
  background-color: #fff;
}
.relation__wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.para-inview {
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}
@media screen and (width <= 767px) {
  .para-inview {
    transform: translate(-50%, -70%);
  }
}
.para-inview.-show {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media screen and (width <= 767px) {
  .para-inview.-show {
    transform: translate(-50%, -100%);
  }
}
.para-inview-03 {
  opacity: 0;
  transform: translate(-50%, 0%);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}
@media screen and (width <= 767px) {
  .para-inview-03 {
    transform: translate(-50%, 0%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .para-inview-03 {
    transform: translate(-50%, 0%);
  }
}
.para-inview-03.-show {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media screen and (width <= 767px) {
  .para-inview-03.-show {
    transform: translate(-50%, -100%);
  }
}
@media screen and (768px <= width <= 1024px) {
  .para-inview-03.-show {
    transform: translate(-50%, -50%);
  }
}

.c-modal-youtube.-none {
  pointer-events: none;
}
.c-modal-youtube.-none .c-modal-youtube__img::before {
  content: none;
}

.l-footer {
  position: relative;
}

.pageNav {
  position: relative;
}

.inview {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.4s, transform 1.4s;
}
.inview.-show {
  opacity: 1;
  transform: translateY(0);
}
.inview-hide {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.4s, transform 1.4s;
}
.inview-hide.-show {
  opacity: 1;
  transform: translateY(0);
}

.right-inview {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1.4s, transform 1.4s;
}
.right-inview.-show {
  opacity: 1;
  transform: translateX(0);
}
.right-inview-hide {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1.4s, transform 1.4s;
}
.right-inview-hide.-show {
  opacity: 1;
  transform: translateX(0);
}

.left-inview {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1.4s, transform 1.4s;
}
.left-inview.-show {
  opacity: 1;
  transform: translateX(0);
}
.left-inview-hide {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1.4s, transform 1.4s;
}
.left-inview-hide.-show {
  opacity: 1;
  transform: translateX(0);
}

.smooth__wrap__all {
  position: relative !important;
}

@media screen and (min-width: 1031px) {
  .ipad-pc-only {
    display: inherit !important;
  }
}
@media screen and (768px <= width <= 1024px) {
  .ipad-pc-only {
    display: none !important;
  }
}
@media screen and (width <= 767px) {
  .ipad-pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 1031px) {
  .ipad-sp-only {
    display: none !important;
  }
}
@media screen and (768px <= width <= 1024px) {
  .ipad-sp-only {
    display: inherit !important;
  }
}
@media screen and (width <= 767px) {
  .ipad-sp-only {
    display: inherit !important;
  }
}

.banner__wrap {
  position: fixed;
  bottom: 60px;
  right: 30px;
  background-color: #fff;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.35);
  transition: all 0.5s;
  z-index: 996;
}
@media screen and (width <= 767px) {
  .banner__wrap {
    width: 90%;
    right: 50%;
    bottom: 20px;
    transform: translateX(50%);
  }
}
.banner__wrap.is-disable {
  right: -500px;
}
.banner__wrap.is-none {
  display: none;
}
.banner__close {
  position: absolute;
  top: 3px;
  right: 3px;
  padding: 5px;
  cursor: pointer;
  z-index: 997;
  transition: all 0.5s;
}
.banner__close__text {
  font-size: 1.4rem;
  width: fit-content;
  color: #000;
}
@media screen and (width > 767px) {
  .banner__link:hover {
    opacity: 0.5;
  }
}
.banner__link__wrap {
  padding: 28px 16px 24px 16px;
}
.banner__link__text__box {
  margin-top: 16px;
}
.banner__link__text__box .c-text {
  position: relative;
  color: #000;
  width: fit-content;
  padding-right: 23px;
  background-image: url(/en/sports/various/world_athletics/tokyo2025/images/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: right 2px;
}

.ss__section {
  position: relative;
  background-color: #fff;
  padding: 100px 20px 0;
}
.ss__wrap {
  margin: 0 auto;
  max-width: 1200px;
}
.ss__wrap .c-content__img {
  border: 1px solid #dedede;
}