@charset "utf-8";
/* ============================================================
2403 Web Accessibility 
============================================================ */
/* ----------------------------------------
Text Links */
a:hover,
a:focus-visible {
  color: #D100D1;
  text-decoration: underline;
}
/* Main Menu */
.main-menu ul li a:hover,
.main-menu ul li a:focus-visible {
  color: var(--color-text);
  text-decoration: none;
}
/* Mobile Menu */
.mb-languages .inner select {
  font-size: 1.6rem;
  outline: revert;
}
.mb-languages .inner button#langChange {
	margin: 0 -10px 0 0.5em;
	padding: 5px 10px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 6px;
	font-size: 1em;
}
.mb-languages .inner button#langChange:hover,
.mb-languages .inner button#langChange:focus-visible {
	background: #000;
	color: #fff;
}
/* Blog Grid */
.blog-grid .post:hover,
.blog-grid .post:focus-visible {
  color: var(--color-text);
}
/* Policy */
.entry-content ul li a {
  color: #006EF5;
  text-decoration: underline;
}
.entry-content ul li a:hover,
.entry-content ul li a:focus-visible {
  color: #D100D1;
}
.entry-content p a {
  color: #006EF5;
  text-decoration: underline;
}
.entry-content p a:hover,
.entry-content p a:focus-visible {
  color: #D100D1;
}

/* Sitemap */
.site-map a:hover h2,
.site-map a:focus-visible h2 {
  color: #CF00CF;
  text-decoration: underline;
}
/* ----------------------------------------
Header */
@media (min-width: 1441px) {
  /* Site Logo */
  html:has(.body-large) .site-brand img,
  html:has(.body-medium) .site-brand img {
    min-width: 400px;
  }
}
@media (min-width: 1200px) and (max-width:1440px) {
  html:has(.body-large) .site-brand img,
  html:has(.body-medium) .site-brand img {
    min-width: 300px;
  }
}
.site-header li.lang-item-ja {
  padding-right: calc(calc(1.33em + 18px));
}
.site-header li.lang-item-en {
  margin-left: calc( (1.3em + 18px) * -1);
}
.main-menu ul li.lang-item a {
  color: #767678;
}
/* ----------------------------------------
Footer */
@media (min-width: 769px) {
  .body-large .follow-footer {
    top: 50px;
  }
}
@media  (min-width: 769px) and (max-width: 991px) {
  .body-large .follow-footer {
    top: auto;
    bottom: 215px;
  }
  .body-medium .follow-footer {
    top: auto;
    bottom: 185px;
  }
}
@media (min-width: 769px) {
  .copyright,
  .body-small .copyright,
  .body-large .copyright {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------
Preset-Popup Accessibility Modal */
/* Button */
.image-right-bottom {
  transition: all 0.3s;
}
@media (min-width: 1201px) {
  .image-right-bottom:has(a:focus-visible) {
    bottom: calc( 100vh - 240px);
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .image-right-bottom:has(a:focus-visible) {
    bottom: calc( 100vh - 180px);
  }
}
@media (min-width: 769px) {
  .preset-popup legend {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 7px;
  }
}
/* Form */
.preset-popup .field-radio {
  position: relative;
}
.preset-popup .field-radio input {
  position: absolute;
  opacity: 1;
  visibility: visible;
  width: calc(100% - 10px);
  height: 100%;
  left: 5px;
  top: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
/* Bottom Close Link at focus */
.preset-popup .bottom {
  text-align: center;
}
.preset-popup .bottom .close {
  display: inline-block;
  margin: 1em 0 0;
  align-items: normal;
  justify-content: normal;
  position: static;
  top: auto;
  right: auto;
  background-color: transparent;
  text-align: center;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.preset-popup .bottom .close:focus-visible {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}
@media (min-width: 769px) {
  /* Popup height shrinked at Large, Medium */
  .body-large .preset-popup {
    padding-top: 20px;
  }
  .body-large .preset-popup .field-group {
    margin-bottom: 5px;
  }
  .body-large .preset-popup .field-submit {
    margin-top: 20px;
    margin-bottom: 5px;
  }
  .body-medium .preset-popup {
    padding-top: 30px;
  }
  .body-medium .preset-popup .field-group {
    margin-bottom: 10px;
  }
  .body-medium .preset-popup .field-submit {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

/* ----------------------------------------
Top Page */
/* Main Slider */
/* for Screenreader */
.main-slider .owl-dots button:not(.active) i {
  display: none;
}
/* About Links */
.about .item .inner > a {
  border-radius: 116px;
}
@media (min-width: 1626px) {
    .time-wrap .before,
    .time-wrap .after {
        font-size: 38px;
    }
    .body-medium .time-wrap .before,
    .body-medium .time-wrap .after {
        font-size: 44px;
    }
    .body-large .time-wrap .before,
    .body-large .time-wrap .after {
        font-size: 46px;
  }
}
@media (min-width: 1601px) {
  .time-wrap .note {
    font-size: 18px;
  }
  .body-medium .time-wrap .note {
    font-size: 20px;
  }
  .body-large .time-wrap .note {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .about .item .inner > a {
    border-radius: 68px;
  }
}
/* MORE Buttons at focus */
.button-more:hover,
.button-more:focus-visible {
  background-color: var(--color-black);
  color: var(--color-bg);
}
.bottom-banner .content:hover,
.bottom-banner .content:focus-visible {
  text-decoration: none;
}
/* Heading with white edge */
html:has(.body-medium) .home .heading .heading-title .title-text {
  text-shadow: 0 0 5px #FFF;
}
html:has(.body-large) .home .heading .heading-title .title-text {
  text-shadow: 0 0 5px #FFF;
}

/* ----------------------------------------
World Athletics, Deaflympics */
.p-deaflympics .box-athletics-4 .textbox-athletics h2 {
  background: #BD8D00;
  color: #FFFFFF;
}
.p-deaflympics .box-athletics-4 .textbox-athletics span {
  color: #BD8D00;
}

/* ----------------------------------------
News, Entertainer */
.p-calegory ul input:focus-visible + label {
  background: #000;
  color: #FFF;
}
.load-more a:focus-visible {
  background-color: #171717;
  color: #FFF;
}
.rst-post-thumb {
  overflow: hidden;
  display: block;
}
.rst-post-thumb img:hover {
  transform: scale(1.1);
}
@media (min-width: 913px) {
  .rst-post-thumb img {
    display: block;
    transition: all 1s ease;
    width: 100%;
    height: 190px;
    object-fit: cover;
  }
}
@media (min-width: 769px) and (max-width: 912px) {
  .rst-post-thumb img {
    height: auto;
  }
}
@media (min-width: 769px) {
  /* ----------------------------------------
  Font Size mod for general */
  /* デフォ＆小 10px相当 */
  html {
    font-size: 62.5%;
  }
  html:has(.body-small) {
    font-size: 62.5%;
  }
  /*中150% 15px相当 */
  html:has(.body-medium) {
    font-size: 93.75%;
  }
  /*大200% 20px相当 */
  html:has(.body-large) {
    font-size: 125%;
  }
  /*htmlで拡大対応するのでbodyはデフォ用のみ */
  body {
    font-size: 1.4rem;
  }
  :root {
    --fs-h1: 8.2rem;
    --fs-h2: 8.2rem;
    --fs-h3: 3.8rem;
    --fs-h4: 2.8rem;
    --fs-h5: 2.2rem;
    --fs-h6: 1.8rem;
    --fs-p: 1.6rem;
    --fs-a: 2rem;
    --fs-tablet-h1: 5.4rem;
    --fs-tablet-h2: 5.4rem;
    --fs-tablet-h3: 3.2rem;
    --fs-tablet-h4: 2.4rem;
    --fs-tablet-h5: 2rem;
    --fs-tablet-h6: 1.6rem;
    --fs-tablet-p: 1.6rem;
    --fs-tablet-a: 1.6rem;
    --fs-mobile-h1: 5rem;
    --fs-mobile-h2: 4.2rem;
    --fs-mobile-h3: 2.4rem;
    --fs-mobile-h4: 2rem;
    --fs-mobile-h5: 1.6rem;
    --fs-mobile-h6: 1.2rem;
    --fs-mobile-p: 1.4rem;
    --fs-mobile-a: 1.4rem;
  }
}
@media (min-width: 769px) {
  /* ----------------------------------------
   Font Size mod for style.css */
  body {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 8.2rem;
  }
  h2 {
    font-size: 8.2rem;
  }
  h3 {
    font-size: 4.2rem;
  }
  h4 {
    font-size: 2.8rem;
  }
  h5 {
    font-size: 2.6rem;
  }
  h6 {
    font-size: 1.8rem;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  textarea {
    font-size: 1.4rem;
  }
  .btn {
    line-height: 4.6rem;
    height: 4.6rem;
  }
  .search-wrap .btn i {
    font-size: 2.2rem;
  }
  .searchform>div:before {
    font-size: 1.4rem;
  }
  .star-rating {
    font-size: 1.3rem;
  }
  .main-menu .arrow {
    height: 3.4rem;
    line-height: 3.4rem;
  }
  .mobile-menu .inner i {
    font-size: 4.0rem;
  }
  #searchform input {
    height: 4.0rem;
    line-height: 3.8rem;
  }
  .open-search i {
    font-size: 2.0rem;
  }
  .search-wrap>.btn {
    font-size: 1.5rem;
  }
  .preset-popup .field-submit button {
    font-size: 1em;
  }
  .post .post-title a {
    font-size: 1.6rem;
  }
  .post .post-desc {
    font-size: 1.3rem;
  }
  .button-more i {
    font-size: 2.4rem;
  }
  .bottom-banner .content {
    font-size: 7.0rem;
  }
  .bottom-banner .content span {
    font-size: 3.6rem;
  }
  .p-contents .list .item .desc p {
    line-height: 3.4rem;
  }
  .p-contents .list-banner .item .desc {
    line-height: 3.4rem;
  }
  .p-calegory ul label {
    font-size: 1.8rem;
  }
  .load-more a {
    font-size: 2.2rem;
    height: 3.2em;
    line-height: 3;
  }
  .follow-footer h3 {
    font-size: 16px;
  }
  .site-bottom .widget-title {
    font-size: 1.6rem;
  }
  .backtotop i {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
}
@media (min-width: 769px) {
  /* ----------------------------------------
   Font Size mod for style-h.css */
  .title-topics h2 {
    font-size: 7.2rem;
    height: 14.0rem;
  }
  .content-painter p {
    line-height: 2;
  }
  .messenger-painter p {
    line-height: 2;
  }
  .button-study .text-button-study {
    font-size: 3.2rem;
  }
  .content-signal h2 {
    line-height: 4.0rem;
  }
  .content-signal h3 {
    line-height: 3.5rem;
  }
  .content-signal p {
    line-height: 3.4rem;
  }
  .content-signal ul li {
    line-height: 3.4rem;
  }
  .wrap-cont p {
    line-height: 3.4rem;
  }
  .desc-athlete span {
    font-size: 4.2rem;
  }
  .desc-athlete p {
    font-size: 2.6rem;
  }
  .click-single-ath {
    font-size: 2.2rem;
  }
  .signal-ath-top h1 {
    font-size: 4.4rem;
  }
  .rst-header-title h2 {
    font-size: 7.0rem;
  }
  .rst-header-title p {
    font-size: 4.2rem;
  }
  .desc-athlete span {
    font-size: 4.2rem;
  }
  .desc-athlete p {
    font-size: 2.6rem;
  }
  .click-single-ath {
    font-size: 2.2rem;
  }
  .signal-ath-top h1 {
    font-size: 4.4rem;
  }
  .entry-title {
    font-size: 4.2rem;
  }
  .entry-content p {
    line-height: 3.4rem;
  }
  .entry-content h3 {
    font-size: 2.6rem;
  }
  .rst-post-dec .title-post {
    font-size: 1.3rem;
  }
  .video-content p {
    line-height: 1.888;
  }
  html[lang="en-GB"] .rst-cate-new {
    font-size: 1.2rem;
  }
  html[lang="en-GB"] .p-calegory ul label {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------
Contents */
@media (min-width: 769px) {
  table.songTable {
    font-size: 1.8rem !important;
  }
  .song-txt {
    font-size: 1.8rem !important;
  }
  .songTxt {
    font-size: 1.8rem !important;
  }
}

/* ----------------------------------------
Font Size mod for responsive.css */
@media (min-width: 769px) and (max-width:1700px) {
  .main-menu ul li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 769px) and (max-width:1200px) {
  .mb-languages .inner select {
    /*font-size: 1.6rem;*/
  }
}
@media (min-width: 769px) and (max-width:1025px) {
  .site-bottom li a {
    font-size: 2.0rem;
  }
}
@media (min-width: 769px) and (max-width:992px) {
  :root {
    --fs-h1: var(--fs-tablet-h1);
    --fs-h2: var(--fs-tablet-h2);
    --fs-h3: var(--fs-tablet-h3);
    --fs-h4: var(--fs-tablet-h4);
    --fs-h5: var(--fs-tablet-h5);
    --fs-h6: var(--fs-tablet-h6);
    --fs-p: var(--fs-tablet-p);
    --fs-a: var(--fs-tablet-a);
  }
}

/* ----------------------------------------
Font Size mod for responsive-h.css */
@media (min-width: 1601px) and (max-width: 1850px) {
  .body-large .main-menu ul li a,
  .body-medium .main-menu ul li a {
    font-size: 1.8rem;
  }
}
@media (min-width: 769px) and (max-width:1024px) {
  .desc-slider h3 {
    font-size: 2.8rem;
  }
  .desc-slider p {
    font-size: 2.2rem;
  }
  .tap-athtele ul li a {
    font-size: 2.8rem;
  }
  .desc-athlete span {
    font-size: 2.8rem;
  }
  .desc-athlete p {
    font-size: 2.2rem;
  }
  .click-single-ath {
    font-size: 1.8rem;
  }
  .slider-athlete h2 {
    font-size: 4.8rem;
  }
  .rst-header-title h2 {
    font-size: 3.8rem;
  }
  .rst-header-title p {
    font-size: 2.2rem;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .follow-footer h3 {
    font-size: 12px;
  }
}
@media (min-width: 769px) and (max-width:912px) {
  .desc-slider h3 {
    font-size: 2.2rem;
  }
  .desc-slider p {
    font-size: 1.8rem;
  }
  .desc-athlete span {
    font-size: 2.4rem;
  }
  .desc-athlete p {
    font-size: 1.6rem;
  }
  .click-single-ath {
    font-size: 1.6rem;
  }
  .tap-athtele ul li a {
    font-size: 2.4rem;
  }
  .entry-title {
    font-size: 2.8rem;
  }
  /*.p-deaflympics .rst-box-athletics-medal .textbox-athletics .desc-medal {
    font-size: 1.4rem;
  }*/
  .wrap-cont p {
    font-size: 1.6rem;
  }
  .content-signal p {
    font-size: 1.6rem;
  }
  .content-signal ul li {
    font-size: 1.6rem;
  }
  .page-numbers {
    font-size: 1.4rem;
  }
/*
  .textbox-athletics p {
    font-size: 2.2rem;
  }
*/
}
@media (min-width: 769px) and (max-width:820px) {
  .content-painter h3 {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------
INFOGRAPHICS in World Athletics, Deaflympics */

@media (min-width: 1281px) {
  .textbox-content-top .desc-content-top {
    font-size: 38px;
  }
  .body-medium .textbox-content-top .desc-content-top {
    font-size: 44px;
  }
  .body-large .textbox-content-top .desc-content-top {
    font-size: 46px;
  }
}
@media (min-width: 769px) {
  .textbox-content-top p {
    position: relative;
      z-index: 10;
  }
}
@media (min-width: 769px) {
  .textbox-content-top p {
    font-size: 20px !important;
  }
  .body-medium..textbox-content-top p {
    font-size: 20px !important;
  }
  .body-large .textbox-content-top p {
    font-size: 22px !important;
  }
}
@media (min-width: 993px) {
  .textbox-content-top p {
    font-size: 22px !important;
  }
  .body-medium .textbox-content-top p {
    font-size: 28px !important;
  }
  .body-large .textbox-content-top p {
    font-size: 30px !important;
  }
}
@media (min-width: 993px) and (max-width: 1280px) {
  .body-medium .p-deaflympics .textbox-content-top p {
    font-size: 23px !important;
  }
  .body-large .p-deaflympics .textbox-content-top p {
    font-size: 25px !important;
  }
}
@media (min-width: 1281px) {
  .competition-contents p {
    font-size: 38px;
  }
  .body-medium .competition-contents p {
    font-size: 44px;
  }
  .body-large .competition-contents p {
    font-size: 46px;
  }
}
@media (min-width: 1025px) {
  .list-events h3 {
    font-size: 38px;
  }
  .body-medium .list-events h3 {
    font-size: 44px;
  }
  .body-large .list-events h3 {
    font-size: 46px;
  }
}
@media (min-width: 1601px) {
  .list-events p {
    font-size: 38px;
  }
  .body-medium .list-events p {
    font-size: 44px;
  }
  .body-large .list-events p {
    font-size: 46px;
  }
}
@media (min-width: 993px) {
  .rst-box-athletics-medal .textbox-athletics .desc-medal {
    font-size: 18px;
  }
  .body-medium .rst-box-athletics-medal .textbox-athletics .desc-medal {
    font-size: 20px;
  }
  .body-large .rst-box-athletics-medal .textbox-athletics .desc-medal {
    font-size: 22px;
  }
}
@media (min-width: 1442px) {
  .p-deaflympics .textbox-content-top .desc-content-2 {
    font-size: 38px;
  }
  .body-medium .p-deaflympics .textbox-content-top .desc-content-2 {
    font-size: 44px;
  }
  .body-large .p-deaflympics .textbox-content-top .desc-content-2 {
    font-size: 46px;
  }
}
@media (min-width: 769px) {
  .rst-box-qualifications .textbox-athletics h4 {
    font-size: 32px;
  }
  .body-medium .rst-box-qualifications .textbox-athletics h4 {
    font-size: 32px;
  }
  .body-large .rst-box-qualifications .textbox-athletics h4 {
    font-size: 34px;
  }
}
@media (min-width: 913px) {
  .rst-box-qualifications .textbox-athletics h4 {
    font-size: 38px;
  }
}
@media (min-width: 1281px) {
  .rst-box-qualifications .textbox-athletics h4 {
    font-size: 38px;
  }
  .body-medium .rst-box-qualifications .textbox-athletics h4 {
    font-size: 44px;
  }
  .body-large .rst-box-qualifications .textbox-athletics h4 {
    font-size: 46px;
  }
}
@media (min-width: 769px) {
  .rst-box-qualifications .textbox-athletics .textbox-athletics-cont .title-ja {
    font-size: 32px;
  }
  .body-medium .rst-box-qualifications .textbox-athletics .textbox-athletics-cont .title-ja {
    font-size: 32px;
  }
  .body-large .rst-box-qualifications .textbox-athletics .textbox-athletics-cont .title-ja {
    font-size: 34px;
  }
}
@media (min-width: 993px) {
  .rst-box-qualifications .textbox-athletics .textbox-athletics-cont .title-ja {
    font-size: 38px;
  }
  .body-medium .rst-box-qualifications .textbox-athletics .textbox-athletics-cont .title-ja {
    font-size: 44px;
  }
  .body-large .rst-box-qualifications .textbox-athletics .textbox-athletics-cont .title-ja {
    font-size: 46px;
  }
}
@media (min-width: 1025px) {
  .textbox-athletics p {
    position: relative;
      z-index: 10;
  }
}
@media (min-width: 1626px) {
  .textbox-athletics p {
    font-size: 38px;
    position: relative;
      z-index: 10;
  }
  .body-medium .textbox-athletics p {
    font-size: 44px;
  }
  .body-large .textbox-athletics p {
    font-size: 46px;
  }
}