/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* general */
body {
  color: #222;
  font-family: sans-serif;
  font-size: 1.6rem;
}
a {
  text-decoration: none;
  transition: .3s;
}
.sp-i {
  display: none;
}
.pc-i {
  display: inline;
}
@media (max-width: 1024px) {
  .sp-i {
    display: inline;
  }
  .pc-i {
    display: none;
  }
}

/* adjustment */
.l-header {
  margin-top: -16px;
}
.l-nav__link-btn.is-login:hover {
  background-color: #00b4e1 !important;
}
.l-nav__children.is-on {
  padding: 3.125em 6.25em !important;
}
@media (max-width: 768px) {
  .l-header {
    margin-top: 0;
  }
}

/* sports-kv */
.sports-kv {
  width: 100%;
  height: 650px;
  background-color: #333;
  background-image: url(../img/sports-kv.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.sports-kv-inner {
  width: 842px;
  margin: 0 auto;
  padding-top: 75px;
  text-align: right;
}
.sports-kv h1 {
  margin: 0;
  padding: 0;
}
.sports-kv-lead {
  width: 354px;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.sports-kv-button {
  width: 400px;
  margin: 2em -24px 0 auto;
  padding: 0;
}
.sports-kv-button a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 60px;
  margin-left: auto;
  border: 1px solid #fff;
  border-radius: 100px;
  background-color: #00E5C2;
  background-image: linear-gradient(to right, #00E5C2 0%, #3A60DE 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.sports-kv-button a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.sports-kv-button a:hover::before {
  left: 100%;
}
@media (max-width: 1024px) {
  .sports-kv {
    height: 542px;
    background-position-x: left;
  }
  .sports-kv-inner {
    width: 100%;
    padding-top: 100px;
    text-align: center;
  }
  .sports-kv h1 img {
    width: 233px;
    height: 95px;
  }
  .sports-kv-lead {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
    text-align: center;
  }
  .sports-kv-button {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .sports-kv-button a {
    display: inline-block;
    width: 340px;
    height: auto;
    padding: .75em;
    margin-left: 0;
    font-size: 16px;
  }
}

/* sports-topics */
.sports-topics {
  width: 100%;
  height: 1200px;
  margin-top: -340px;
  background-image: url(../img/sports-topics.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.sports-topics h2 {
  padding-top: 280px;
  margin-bottom: .5em;
  text-align: center;
  color: #fff;
  font-family: Indivisible, Arial, sans-serif;
  font-size: 50px;
  font-weight: bold;
  font-style: italic;
  line-height: 0.7;
}
.sports-topics h2 span {
  font-size: 22px;
  font-weight: normal;
  font-style: normal;
}
.sports-topics-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 3em;
  margin: 0;
  padding: 0;
}
.swiper-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 2.5em;
}
.swiper-container.visible {
  overflow: visible;
}
.swiper-slide {
  margin: 0;
  padding: 8px;
  list-style: none;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 3px 6px #999;
}
.swiper-slide a {
  color: #222;
}
.swiper-slide img {
  max-width: 100%;
  height: auto;
}
.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 32px;
    border: 0;
    background-color: transparent;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #666 !important;
}
.sports-topics-list-comingsoon {
  position: relative;
}
.sports-topics-list-comingsoon::after {
  content: "Coming Soon";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 50%);
  font-size: 24px;
  font-weight: bold;
  font-family: Indivisible, Arial, sans-serif;
  font-style: italic;
}
.sports-topics-new {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: transparent;
  background-image: linear-gradient(135deg, #FFEB00 60px, transparent 0);
  text-align: left;
  padding-left: .6em;
  padding-top: 1em;
  color: #333;
  font-family: Indivisible, Arial, sans-serif;
  font-weight: bold;
}
.sports-topics-new span {
  display: inline-block;
  transform: rotate(-45deg);
}
.sports-topics-name {
  margin-top: .5em;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 16px;
  font-weight: bold;
  text-align: left !important;
}
.sports-topics-text {
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  text-align: left;
  margin-bottom: 6px !important;
}
.sports-topics-label {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  padding: .5em 1em .4em;
  background-color: #ddd;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .sports-topics {
    height: 800px;
    margin-top: -280px;
  }
  .sports-topics h2 {
    padding-top: 190px;
    font-size: 30px;
    line-height: .9;
  }
  .sports-topics h2 span {
    font-size: 18px;
  }
  .sports-topics-new {
    width: 80px;
    height: 80px;
    background-image: linear-gradient(135deg, #FFEB00 50px, transparent 0);
    color: #333;
    font-size: 14px;
  }
  .sports-list-name {
    font-size: 14px !important;
  }
  .sports-list-text {
    font-size: 12px !important;
  }
  .sports-topics-label {
    padding: .5em 1em .4em;
    font-size: 11px;
  }
}

/* sports-nav */
.sports-nav {
  width: 880px;
  margin: -220px auto 0;
  padding-top: 4em;
  text-align: center;
}
.sports-nav p {
  font-size: 20px;
  font-weight: bold;
}
.sports-nav ul {
  margin: 0;
  padding: 2em 0 0;
  list-style: none;
  display: flex;
  column-gap: 3em;
}
.sports-nav ul li a:hover,
.sports-nav ul li a:focus,
.sports-nav ul li a:active {
  opacity: .7;
}
@media (max-width: 1024px) {
  .sports-nav {
    width: 100%;
    margin: -80px auto 0;
  }
  .sports-nav p {
    font-size: 16px;
  }
  .sports-nav ul {
    margin: 0 auto;
    padding: 0;
    display: block;
    width: 300px;
    text-align: right;
  }
  .sports-nav ul li {
    margin: 2em 0;
  }
}
@media (max-width: 768px) {
  .sports-nav {
    margin: -160px auto 0;
  }
}
/* sports-section */
.sports-section {
  width: 100%;
  padding-top: 14em;
  margin-bottom: 3em;
}
.sports-athletes {
  background-image: url(../img/sports-line-athletes.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.sports-teams {
  background-image: url(../img/sports-line-teams.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.sports-education {
  background-image: url(../img/sports-line-education.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.sports-section-inner {
  width: 842px;
  margin: 0 auto;
}
.sports-section h2 {
  text-align: center;
}
.sports-athletes h3 {
  margin-top: 2em;
  margin-bottom: 2em;
  padding: .25em .5em;
  border-left: 3px solid;
  border-bottom: 3px solid;
  font-size: 30px;
}
.sports-section h3#boxing {
  border-image: linear-gradient(to right, #890404, #fff) 1;
}
.sports-section h3#roadrace {
  border-image: linear-gradient(to right, #3A60DE, #fff) 1;
}
.sports-section h3#prowres {
  border-image: linear-gradient(to right, #BF0000, #fff) 1;
}
.sports-section h3#rugby {
  border-image: linear-gradient(to right, #42BF00, #fff) 1;
}
.sports-section h3#judo {
  border-image: linear-gradient(to right, #A76000, #fff) 1;
}
.sports-section h3#basket {
  border-image: linear-gradient(to right, #f90, #fff) 1;
}
@media (max-width: 1024px) {
  .sports-section {
    width: 100%;
    padding-top: 5em;
  }
  .sports-athletes h2 img {
    width: 220px;
    height: 63px; 
  }
  .sports-teams h2 img {
    width: 146px;
    height: 63px; 
  }
  .sports-education h2 img {
    width: 252px;
    height: 63px; 
  }
  .sports-section-inner {
    width: 100%;
  }
  .sports-athletes h3 {
    font-size: 20px;
    margin: 2em 16px;
  }
}
@media (max-width: 512px) {
  .sports-athletes {
    background-image: url(../img/sports-line-athletes-sp.svg);
  }
  .sports-teams {
    background-image: url(../img/sports-line-teams-sp.svg);
  }
  .sports-education {
    background-image: url(../img/sports-line-education-sp.svg);
  }
}
.sports-athletes-nav {
  margin: 2em 0 4em;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
}
.sports-athletes-nav li a {
  padding-right: 1.5em;
  font-size: 24px;
  font-weight: bold;
  color: #222;
}
.sports-athletes-nav li:nth-child(1) a {
  background-image: url(../img/sports-icon-arrow-darkred.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
.sports-athletes-nav li:nth-child(2) a {
  background-image: url(../img/sports-icon-arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
.sports-athletes-nav li:nth-child(3) a {
  background-image: url(../img/sports-icon-arrow-red.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
.sports-athletes-nav li:nth-child(4) a {
  background-image: url(../img/sports-icon-arrow-orange.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
.sports-athletes-nav li:nth-child(5) a {
  background-image: url(../img/sports-icon-arrow-brown.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
.sports-athletes-nav li:nth-child(1) a:hover,
.sports-athletes-nav li:nth-child(1) a:focus,
.sports-athletes-nav li:nth-child(1) a:active {
  background-image: url(../img/sports-icon-arrow-darkred-on.svg);
  color: #890404;
}
.sports-athletes-nav li:nth-child(2) a:hover,
.sports-athletes-nav li:nth-child(2) a:focus,
.sports-athletes-nav li:nth-child(2) a:active {
  background-image: url(../img/sports-icon-arrow-blue-on.svg);
  color: #3A60DE;
}
.sports-athletes-nav li:nth-child(3) a:hover,
.sports-athletes-nav li:nth-child(3) a:focus,
.sports-athletes-nav li:nth-child(3) a:active {
  background-image: url(../img/sports-icon-arrow-red-on.svg);
  color: #BF0000;
}
.sports-athletes-nav li:nth-child(4) a:hover,
.sports-athletes-nav li:nth-child(4) a:focus,
.sports-athletes-nav li:nth-child(4) a:active {
  background-image: url(../img/sports-icon-arrow-orange-on.svg);
  color: #f90;
}
.sports-athletes-nav li:nth-child(5) a:hover,
.sports-athletes-nav li:nth-child(5) a:focus,
.sports-athletes-nav li:nth-child(5) a:active {
  background-image: url(../img/sports-icon-arrow-brown-on.svg);
  color: #A76000;
}
@media (max-width: 1024px) {
  .sports-athletes-nav {
    margin: 1em 0 2em;
    flex-wrap: wrap;
  }
}
.sports-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 3.5em;
}
.sports-list > li {
  position: relative;
  width: 48%;
  padding: 40px 20px 20px;
  box-shadow: 0 3px 6px #ccc;
}
.sports-list > li > img {
  position: absolute;
  top: -18px;
  left: 0;
}
.sports-list > li > span {
  position: absolute;
  top: -18px;
  left: 0;
  padding: .25em 1em .25em .8em;
  border-radius: 0 0 20px 0;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.sports-list > li > span::after {
  position: absolute;
  top: 0;
  right: -10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
  border-width: 0px 10px 18px 0px;
}
.sports-list > li > span.sports-list-label-boxing {
  background-color: #890404;
}
.sports-list > li > span.sports-list-label-boxing::after {
  border-color: transparent transparent #4E0101 transparent;
}
.sports-list > li > span.sports-list-label-roadrace {
  background-color: #3A60DE;
}
.sports-list > li > span.sports-list-label-roadrace::after {
  border-color: transparent transparent #2E3757 transparent;
}
.sports-list > li > span.sports-list-label-prowres {
  background-color: #BF0000;
}
.sports-list > li > span.sports-list-label-prowres::after {
  border-color: transparent transparent #600000 transparent;
}
.sports-list > li > span.sports-list-label-rugby {
  background-color: #42BF00;
}
.sports-list > li > span.sports-list-label-rugby::after {
  border-color: transparent transparent #184500 transparent;
}
.sports-list > li > span.sports-list-label-judo {
  background-color: #A76000;
}
.sports-list > li > span.sports-list-label-judo::after {
  border-color: transparent transparent #482900 transparent;
}
.sports-list > li > span.sports-list-label-basket {
  background-color: #f90;
}
.sports-list > li > span.sports-list-label-basket::after {
  border-color: transparent transparent #7B4302 transparent;
}
.sports-list-header {
  display: flex;
}
.sports-list-header-left {
  margin-right: 1em;
}
.sports-list-name {
  margin-bottom: .5em;
  font-size: 20px;
  font-weight: bold;
}
.sports-list-name rp,
.sports-list-name rt {
  margin-bottom: .5em;
}
.sports-list-type {
  margin: .5em 0;
}
.sports-list-org {
  margin: .5em 0;
}
.sports-list h4 {
  margin-bottom: .75em;
  padding-top: 2em;
  border-top: 2px solid;
  border-image: linear-gradient(to right, #3A60DE, #E5EBFF) 1;
  background-image: url(../img/sports-list-stars.svg);
  background-repeat: no-repeat;
  background-position: top 12px center;
  font-size: 16px;
  text-align: center;
}
.sports-list-best3 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sports-list-best3 li {
  margin-bottom: .75em;
}
.sports-list-best3 li:nth-child(1) {
  border-bottom: 2px solid #FFEB00;
  font-weight: bold;
}
.sports-list-best3 li:nth-child(2) {
  border-bottom: 2px solid #7E9BFC;
}
.sports-list-best3 li:nth-child(3) {
  border-bottom: 2px solid #999999;
}
.sports-list-best3 li img {
  vertical-align: baseline;
  margin-right: 1em;
}
.sports-list-best3 li:nth-child(1) img {
  margin-right: 1.2em;
}
.sports-list-best3 li:nth-child(2) img,
.sports-list-best3 li:nth-child(3) img {
  margin-left: 8px;
}
.sports-list-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5em;
}
.sports-list-footer-left a,
.sports-list-footer-left span {
  display: inline-block;
  border: 1px solid #707070;
  padding: .35em 1em;
  color: #707070;
}
.sports-list-footer-left a:hover,
.sports-list-footer-left a:focus,
.sports-list-footer-left a:active {
  opacity: .7;
}
.sports-list-footer-right {
  text-align: right;
}
.sports-list-footer-right a {
  display: inline-block;
  margin-left: .5em;
}
.sports-list-footer-right a:hover,
.sports-list-footer-right a:focus,
.sports-list-footer-right a:active {
  opacity: .7;
}
@media (max-width: 1024px) {
  .sports-list {
    justify-content: center;
    column-gap: 2em;
    row-gap: 3em;
  }
  .sports-list > li {
    width: 340px;
  }
  .sports-list-type {
    font-size: 14px;
  }
  .sports-list-org {
    font-size: 14px;
  }
}
.sports-column {
  width: 842px;
  margin: 3em auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 2em;
}
.sports-column > li {
  position: relative;
  padding: 30px 20px 65px;
  box-shadow: 0 3px 6px #ccc;
}
.sports-column-date {
  font-size: 14px;
}
.sports-column-inner {
  display: flex;
  gap: 20px;
}
.sports-column-inner-left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
.sports-column-inner-left img {
  margin-right: 0;
}
.sports-column-inner-right {
  width: 60%;
}
.sports-column-inner-right h3 {
  margin: 0 0 .5em;
  font-size: 24px;
}
.sports-column-inner-right p:nth-child(2) {
  margin: .5em 0;
  font-size: 18px;
  font-weight: bold;
}
.sports-column-footer {
  margin-top: 1em;
}
.sports-column-footer-left {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.sports-column-footer-left a,
.sports-column-footer-left span {
  display: inline-block;
  border: 1px solid #707070;
  padding: .5em 3em;
  color: #333;
}
.sports-column-footer-left a:hover,
.sports-column-footer-left a:focus,
.sports-column-footer-left a:active {
  opacity: .7;
}
.sports-column-footer-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.sports-column-footer-right a {
  display: inline-block;
  margin-left: .5em;
}
.sports-column-footer-right a:hover,
.sports-column-footer-right a:focus,
.sports-column-footer-right a:active {
  opacity: .7;
}
@media (max-width: 1024px) {
  .sports-column {
    width: 100%;
    margin: 2em auto 0;
  }
  .sports-column > li {
    width: 340px;
    position: relative;
    margin: 0 auto;
    padding: 30px 20px 65px;
    box-shadow: 0 3px 6px #ccc;
  }
  .sports-column-inner {
    display: flex;
    flex-direction: column-reverse; 
  }
  .sports-column-inner-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-bottom: 2em;
  }
  .sports-column-inner-left img {
    margin-right: 0;
    width: 280px;
    height: 172px;
  }
  .sports-column-inner-right {
    width: auto;
  }
  .sports-column-footer-left {
    bottom: 16px;
    left: 20px;
    transform: none;
  }
  .sports-column-footer-left a,
  .sports-column-footer-left span {
    padding: .5em 2em;
  }
}
.sports-back-to-athletes {
  margin: 1em 0;
  text-align: right;
}
.sports-back-to-athletes a {
  color: #222222;
  font-weight: bold;
}
.sports-back-to-athletes a:hover,
.sports-back-to-athletes a:focus,
.sports-back-to-athletes a:active {
  opacity: .7;
}
.sports-back-to-nav {
  margin-top: 3em;
  text-align: center;
}
.sports-back-to-nav a {
  color: #222222;
  font-size: 20px;
  font-weight: bold;
}
.sports-back-to-nav-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  margin-left: .75em;
  color: #222;
  line-height: 1;
  width: .75em;
  height: .75em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
@media (max-width: 1024px) {
  .sports-back-to-athletes {
    margin-right: 16px;
  }
}
.sports-cta-button {
  text-align: center;
}
.sports-cta-button a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 60px;
  margin: 5em auto 0;
  border: 1px solid #fff;
  border-radius: 100px;
  box-shadow: 0 3px 6px #999;
  background-color: #00E5C2;
  background-image: linear-gradient(to right, #4BDA3C 0%, #46B6DA 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold; 
}
.sports-cta-button a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.sports-cta-button a:hover::before {
  left: 100%;
}
@media (max-width: 1024px) {
  .sports-cta-button a {
    display: inline-block;
    margin: 3em auto 0;
    width: 340px;
    height: auto;
    padding: .75em;
    margin-left: 0;
    font-size: 16px;
  }
}
/*
footer {
  margin: 3em 0;
  text-align: center;
}
*/