@charset "UTF-8";
main.main {
  padding-bottom: 0;
}
/* pg-container -------------------------------- */
.pg-container {
  overflow: hidden;
}
.pg-container * {
  outline: none !important;
  font-family: inherit;
}
.pg-container a:hover {
  color: inherit;
  text-decoration: none;
}
.pg-container a:hover p {
  text-decoration: inherit;
}
.pg-container .js-pg-img-change:not([src]) {
  display: none;
}

.pg-container .js-scroll-add-class {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pg-container .js-scroll-add-class.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Athletes List -------------------------------- */
@media (min-width: 48.0625em) {
  .pg-athletes-list__inner {
    max-width: 1120px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.pg-athletes-list__header {
  text-align: center;
  margin: 32px 0;
}
.pg-athletes-list__heading {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (min-width: 48.0625em) {
  .pg-athletes-list__header {
    margin: 48px 0 80px;
  }
  .pg-athletes-list__heading {
    font-size: 4rem;
  }
}

.pg-athletes-list__block {
  padding: 48px 0;
}
.pg-athletes-list__block:nth-of-type(1) {
  padding-top: 0;
}
.pg-athletes-list__block:nth-of-type(2n) {
  background: #f7f7f7;
}
@media (min-width: 48.0625em) {
  .pg-athletes-list__block {
    padding: 64px 0;
  }
  .pg-athletes-list__block:only-child {
    padding-bottom: 80px;
  }
}

.pg-athletes-list__item {
  padding: 0 20px;
}
.pg-athletes-list__item:nth-of-type(n+2) {
  margin-top: 20px;
}
@media (min-width: 48.0625em) {
  .pg-athletes-list__items {
    display: flex;
    flex-wrap: wrap;
  }
  .pg-athletes-list__item {
    width: calc((100% - 60px) * 0.3333);
    padding: 0;
  }
  .pg-athletes-list__item:nth-of-type(n) {
    margin: 0;
  }
  .pg-athletes-list__item:not(:nth-of-type(3n+1)) {
    margin-left: 30px;
  }
  .pg-athletes-list__item:nth-of-type(n+4) {
    margin-top: 32px;
  }
}

/* Primary Card -------------------------------- */
.pg-primary-card a {
  display: block;
  background: #fff;
}
.pg-primary-card__detail {
  text-align: center;
  padding: 28px 20px 24px;
}
.pg-primary-card__name strong {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.pg-primary-card__name small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 12px 0 0;
}
@media (min-width: 48.0625em) {
  .pg-primary-card,
  .pg-primary-card a {
    height: 100%;
  }
  .pg-primary-card__content {
    position: relative;
    z-index: 1;
  }
  .pg-primary-card__detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .pg-primary-card a:hover .pg-primary-card__detail {
    opacity: 0;
    visibility: hidden;
  }
  .pg-primary-card__name strong {
    font-size: 2.2rem;
  }
}

/* Secondary Card -------------------------------- */
.pg-secondary-card a {
  display: block;
  background: #fff;
}
.pg-secondary-card__detail {
  text-align: center;
  padding: 28px 20px 24px;
}
.pg-secondary-card__name strong {
  display: block;
  font-weight: normal;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.pg-secondary-card__name small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 12px 0 0;
}
@media (min-width: 48.0625em) {
  .pg-secondary-card,
  .pg-secondary-card a {
    height: 100%;
  }
  .pg-secondary-card a:hover {
    opacity: .7;
  }
}

/* Modal -------------------------------- */
.pg-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  transition: 0.2s ease-in-out;
}
.pg-modal:not(.is-open) {
    opacity: 0;
    visibility: hidden;
  }
.pg-modal__content {
  display: flex;
  width: 980px;
  max-width: 100%;
  max-height: 100%;
  background: #fff;
  position: relative;
}
.pg-modal__scroll {
  width: 100%;
  max-height: 100%;
  padding: 80px 20px 40px;
  overflow-y: auto;
}
.pg-modal__box:not(.is-current) {
  display: none;
}
.pg-modal__close {
  display: block;
  width: 40px;
  height: 40px;
  background: #011e41;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  cursor: pointer;
}
.pg-modal__close:before,
.pg-modal__close:after {
  content: '';
  display: block;
  width: 20px;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.pg-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.pg-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pg-modal__overlay {
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 48.0625em) {
  .pg-modal {
    padding: 40px;
  }
  .pg-modal__scroll {
    padding: 80px;
  }
}

/* Profile -------------------------------- */
.pg-profile__image {
  display: none;
}
.pg-profile__name {
  text-align: center;
}
.pg-profile__name strong {
  display: block;
  font-weight: normal;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.pg-profile__name small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 12px 0 0;
}
@media (min-width: 48.0625em) {
  .pg-profile__image {
    display: block;
  }
  .pg-profile__name {
    margin: 28px 0 0;
  }
}

.pg-profile__detail {
  margin: 40px 0 0;
}
.pg-profile__info:nth-of-type(n+2) {
  margin-top: 8px;
}
.pg-profile__info-title {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.pg-profile__info-data {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
@media (min-width: 48.0625em) {
  .pg-profile__content {
    display: flex;
  }
  .pg-profile__visual {
    width: 41.4634%;
  }
  .pg-profile__detail {
    width: 58.5366%;
    padding: 0 0 0 40px;
    margin: 0;
  }
  .pg-profile__info:nth-of-type(n+2) {
    margin-top: 16px;
  }
  .pg-profile__info-title {
    font-size: 1.4rem;
  }
  .pg-profile__info-data {
    font-size: 1.4rem;
  }
}

/* Athletes Detail -------------------------------- */
.pg-athletes-detail {
  margin: 0 0 48px;
}
@media (min-width: 48.0625em) {
  .pg-athletes-detail {
    margin: 0 0 80px;
  }
  .pg-athletes-detail__inner {
    max-width: 1020px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.pg-athletes-detail__header {
  text-align: center;
  margin: 32px 0;
}
.pg-athletes-detail__heading {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (min-width: 48.0625em) {
  .pg-athletes-detail__header {
    margin: 48px 0;
  }
  .pg-athletes-detail__heading {
    font-size: 2.8rem;
  }
}

.pg-athletes-detail__slider .slick-arrow {
  width: 40px;
  height: 40px;
  background: #011e41;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.pg-athletes-detail__slider .slick-arrow.slick-prev {
  left: -20px;
  right: auto;
}
.pg-athletes-detail__slider .slick-arrow.slick-next {
  left: auto;
  right: -20px;
}
.pg-athletes-detail__slider .slick-arrow:before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin: 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.pg-athletes-detail__slider .slick-arrow.slick-prev:before {
  transform: translate(-25%, -50%) rotate(225deg);
}
.pg-athletes-detail__slider .slick-arrow.slick-next:before {
  transform: translate(-75%, -50%) rotate(45deg);
}
.pg-athletes-detail__slider .slick-dots {
  height: auto;
  margin: 12px 0 0;
  position: static;
}
.pg-athletes-detail__slider .slick-dots li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  position: relative;
}
.pg-athletes-detail__slider .slick-dots li:not(.slick-active) {
  cursor: pointer;
}
.pg-athletes-detail__slider .slick-dots li:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #d9d9d9;
  margin: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pg-athletes-detail__slider .slick-dots li.slick-active:before {
  background: #011e41;
}
@media (max-width: 48em) {
  .pg-athletes-detail__slider .slick-arrow {
    display: none !important;
  }
}
@media (min-width: 48.0625em) {
  .pg-athletes-detail__slider {
    max-width: 720px;
    margin: 0 auto;
  }
  .pg-athletes-detail__slider .slick-dots {
    margin: 14px 0 0;
  }
  .pg-athletes-detail__slider .slick-dots li {
    width: 22px;
    height: 22px;
  }
  .pg-athletes-detail__slider .slick-dots li:before {
    width: 10px;
    height: 10px;
  }
}

.pg-athletes-detail__detail {
  padding: 0 20px;
  margin: 48px 0 0;
}
.pg-athletes-detail__name {
  text-align: center;
  padding: 0 0 24px;
  margin: 0 0 32px;
  border-bottom: 1px solid #d9d9d9;
}
.pg-athletes-detail__name strong {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.pg-athletes-detail__name small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 12px 0 0;
}
.pg-athletes-detail__lead-text {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.pg-athletes-detail__infos {
  margin: 24px 0 0;
}
.pg-athletes-detail__info:nth-of-type(n+2) {
  margin-top: 8px;
}
.pg-athletes-detail__info-title {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.pg-athletes-detail__info-data {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
@media (min-width: 48.0625em) {
  .pg-athletes-detail__detail {
    padding: 0;
    margin: 56px 0 0;
  }
  .pg-athletes-detail__name {
    padding: 0 0 32px;
    margin: 0 0 40px;
  }
  .pg-athletes-detail__name strong {
    font-size: 2.8rem;
  }
  .pg-athletes-detail__lead-text {
    font-size: 1.4rem;
  }
  .pg-athletes-detail__infos {
    margin: 32px 0 0;
  }
  .pg-athletes-detail__info {
    display: flex;
  }
  .pg-athletes-detail__info:nth-of-type(n+2) {
    margin-top: 16px;
  }
  .pg-athletes-detail__info-title {
    width: 166px;
    font-size: 1.4rem;
    padding: 0 20px 0 0;
  }
  .pg-athletes-detail__info-data {
    width: calc(100% - 166px);
    font-size: 1.4rem;
  }
}

.pg-athletes-detail__footer {
  margin: 40px 0 0;
}
@media (min-width: 48.0625em) {
  .pg-athletes-detail__footer {
    margin: 48px 0 0;
  }
}

/* Component -------------------------------- */
.c-round-btn {
  display: inline-block;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 1.1rem;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 48.0625em) {
  .c-round-btn {
    border: 1px solid #d9d9d9;
    font-size: 1.3rem;
  }
  .c-round-btn:hover {
    border-color: #333;
  }
}
.c-round-btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 28px;
}
@media only screen and (min-width: 48.0625em) {
  .c-round-btn__inner {
    height: 40px;
  }
}
.c-round-btn__text {
  font-weight: bold;
}
.c-round-btn__text:after {
  display: block;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.c-round-btn--center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-round-btn--180 {
  min-width: 120px;
}
@media only screen and (min-width: 48.0625em) {
  .c-round-btn--180 {
    min-width: 180px;
  }
}