.l-main__container {
  max-width: initial;
  padding: 0;
}

.fs-l-main {
  padding-bottom: 0;
}

.athlete__wrapper {
  position: relative;
  z-index: 1;
  padding: 3rem 3%;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  background-color: #003c96;
}
.athlete__wrapper::before, .athlete__wrapper::after {
  position: absolute;
  top: 48vh;
  left: 0;
  z-index: -1;
  width: 150vw;
  height: 150vw;
  content: "";
  background-color: #0180cb;
  border-radius: 50%;
  opacity: 0.8;
  transform: translateX(-45%);
}
.athlete__wrapper::after {
  top: calc(48vh + 150vw + 24vh);
  display: none;
}
@media screen and (min-width: 768px) {
  .athlete__wrapper {
    padding: 5rem 1.5rem;
  }
  .athlete__wrapper::before, .athlete__wrapper::after {
    top: 20%;
    right: 0;
    left: initial;
    width: 64vw;
    height: 64vw;
    transform: translateX(30%);
  }
  .athlete__wrapper::after {
    top: calc(-20% - 32vw);
  }
}
.athlete__heading-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: bold;
}
.athlete__heading-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 5px;
  margin-top: 1rem;
  background: linear-gradient(45deg, #f08200, #f05100);
  border-radius: 5px;
}
.athlete__heading-desc {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .athlete__heading {
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  .athlete__heading-title::after {
    margin: 1.5rem auto;
  }
  .athlete__heading-desc {
    margin-top: 2rem;
  }
}
.athlete__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .athlete__list {
    grid-template-columns: repeat(auto-fit, minmax(min(50% - 1rem, (1500px - 4rem) / 5), 1fr));
    gap: 2rem 1rem;
    max-width: 1500px;
    margin: 3rem auto;
  }
}
.athlete__item {
  position: relative;
  overflow: hidden;
  color: #222;
  background-color: #fff;
  border-radius: 8px;
}
.athlete__caption {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.5rem 2rem;
}
.athlete__caption-desc {
  position: relative;
  display: -webkit-box;
  justify-items: flex-end;
  padding-top: 1rem;
  margin-top: 1rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.athlete__caption-desc::before {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0 !important;
  content: "";
  display: block;
  width: 4rem;
  height: 5px;
  margin-top: 1rem;
  background: linear-gradient(45deg, #f08200, #f05100);
  border-radius: 5px;
}
.athlete__caption-desc::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
}
.athlete__name {
  font-size: 1.2em;
  font-weight: bold;
}
.athlete__name .honorific {
  font-size: 0.8em;
}
.athlete__sports {
  justify-items: stretch;
  font-size: 0.9em;
}
.athlete__awards {
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0.1rem 0.5rem;
  margin-top: 0.3rem;
  font-size: 0.8em;
  color: #fff;
  background-color: #003c96;
  border-radius: 5px;
}
.athlete__awards:empty {
  display: none;
}
.athlete__show-button {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0.8rem 10%;
  margin: auto;
  font-size: clamp(0.8rem, 3vw, 0.9rem);
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: pre;
  background-color: #222;
  border: 1px solid #222;
  border-radius: calc(1em + 1.6rem);
  box-shadow: 0 3px 5px rgba(34, 34, 34, 0.1);
  transition: color 0.3s, background-color 0.3s;
  transform: translateX(-50%);
}
.athlete__show-button:hover {
  color: #222;
  background-color: #fff;
}
.athlete__detail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
}
.athlete__detail.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility, 0.3s;
}
.athlete__detail.active::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(34, 34, 34, 0.5);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.athlete__detail-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  padding: 0;
  overflow-y: scroll;
  overscroll-behavior: none;
  background-color: #fff;
  border: 1rem solid #fff;
  border-radius: 5px;
  box-shadow: 0 3px 5px rgba(34, 34, 34, 0.1);
  transform: translate(-50%, -50%);
}
.athlete__detail-wrapper a {
  text-decoration: underline;
  text-underline-position: under;
  text-underline-offset: 1px;
}
.athlete__detail-wrapper a:hover {
  text-decoration: none;
}
.athlete__detail-container {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .athlete__detail-container {
    flex-direction: row;
    gap: 1.5vw;
    padding: 2rem 1.2rem;
  }
}
.athlete__detail-figure {
  position: relative;
  flex-basis: 40%;
  height: -webkit-fit-content;
  height: fit-content;
}
.athlete__detail-account {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0.5em 0.5em 0.5em 0.8em;
  font-size: 0.9em;
  line-height: 1;
  color: #fff;
  background-color: #222;
  border: 2px solid #fff;
  border-radius: 2rem;
}
.athlete__detail-account::before {
  content: "@";
}
.athlete__detail-account::after {
  display: block;
  width: 1.4em;
  height: 1.4em;
  margin-left: 0.3em;
  content: "";
  background-image: url("https://sleep.itembox.design/item/img/common/icon/icon_circle-arrow-down_wh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .athlete__detail-account {
    right: revert;
    left: 0.5rem;
  }
}
.athlete__detail-caption {
  flex-basis: 60%;
  padding: 0.8rem 0;
}
@media screen and (min-width: 768px) {
  .athlete__detail-caption {
    padding: 0;
  }
}
.athlete__detail-title {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 0 0.5rem;
  justify-content: flex-start;
}
.athlete__detail-avatar {
  grid-row: 1/3;
  grid-column: 1/2;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 3px solid #0180cb;
  border-radius: 50%;
}
.athlete__detail-name {
  grid-row: 1/2;
  grid-column: 2/3;
  font-size: 1.2em;
  font-weight: bold;
}
.athlete__detail-name .honorific {
  font-size: 0.8em;
}
.athlete__detail-sports {
  grid-row: 2/3;
  grid-column: 2/3;
  justify-items: stretch;
  font-size: 0.9em;
}
.athlete__detail-awards {
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0.1rem 0.5rem;
  margin-top: 0.3rem;
  font-size: 0.8em;
  color: #fff;
  background-color: #003c96;
  border-radius: 5px;
}
.athlete__detail-awards:empty {
  display: none;
}
.athlete__detail-desc {
  position: relative;
  margin-top: 1rem;
  font-size: 0.9em;
}
.athlete__detail-desc::before {
  display: block;
  width: 4rem;
  height: 5px;
  margin-top: 1rem;
  background: linear-gradient(45deg, #f08200, #f05100);
  border-radius: 5px;
  margin-top: 0;
  margin-bottom: 1rem;
  content: "";
}
.athlete__detail-hide-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.8em;
  height: 1.8em;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  background-color: #222;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .athlete__detail-hide-button {
    top: 0;
    right: 0;
  }
}/*# sourceMappingURL=athlete.css.map */