@charset 'UTF-8';

/* =========================================================
   N-NOSE × クリアソン新宿 選手インタビュー
   /interview/criacao/
   ※要素は構成表（スプレッドシート）どおり。装飾のみ本CSSで付与
   ========================================================= */

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

/* ---- スクロール表示 ---- */
.p-athletes .js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.p-athletes .js-fade.is-shown {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .p-athletes .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- ページ基準 ---- */
.p-athletes {
  --blue: #0f59a8;
  --pale: #eef5fb;
  --line: #dbe4ee;
  --text: #1a1a1a;
  /* クリアソン新宿のクラブカラー（エンブレムから抽出） */
  --team-purple: #3b2180;
  --team-gold: #d3a243;
  --team-pale: #f3f1f9;

  font-size: 16px;
  line-height: 2;
  color: var(--text);
  background: #fff;
}

.p-athletes * {
  margin: 0;
}

.p-athletes img {
  display: block;
  width: 100%;
  height: auto;
}

.p-athletes ul {
  padding: 0;
  list-style: none;
}

.p-athletes a {
  text-decoration: none;
}

.p-athletes .inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}

.p-athletes .inner--narrow {
  max-width: 900px;
}

.p-athletes .sec {
  padding: 80px 0;
}

/* =========================================================
   リード
   ========================================================= */
/* リード〜動画までは淡紫の背景で1ブロックにする */
.p-athletes .sec--message,
.p-athletes .sec--movie {
  background: var(--team-pale);
}

.p-athletes .msg__en {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 26px;
  letter-spacing: .22em;
  color: var(--blue);
}

.p-athletes .msg__ttl {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 46px;
  letter-spacing: .04em;
}

.p-athletes .lead {
  font-size: 17px;
  line-height: 2.4;
  letter-spacing: .06em;
}

.p-athletes .lead p + p {
  margin-top: 1.8em;
}

/* =========================================================
   動画
   ========================================================= */
.p-athletes .sec--movie {
  padding-top: 0;
}

.p-athletes .c-youtube {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 89, 168, .14);
}

.p-athletes .c-youtube a {
  position: relative;
  display: block;
  line-height: 0;
}

.p-athletes .c-youtube img {
  transition: transform .4s ease;
}

.p-athletes .c-youtube:hover img {
  transform: scale(1.03);
}

.p-athletes .c-youtube a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  content: '';
  transition: transform .3s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230f59a8' d='M8 5v14l11-7z'/%3E%3C/svg%3E") no-repeat 54% 50% / 38% auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.p-athletes .c-youtube:hover a::after {
  transform: translate(-50%, -50%) scale(1.08);
}

/* =========================================================
   クリアソン新宿
   ========================================================= */
.p-athletes .sec--team {
  padding-bottom: 40px;
}

.p-athletes .team {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 32px 40px;
  border-left: 5px solid var(--team-purple);
  border-radius: 6px;
  background: var(--team-pale);
}

.p-athletes .team__logo {
  flex: 0 0 110px;
}

.p-athletes .team__body {
  flex: 1 1 auto;
}

.p-athletes .team__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
  margin-bottom: 14px;
  padding-bottom: 8px;
  letter-spacing: .04em;
  color: var(--team-purple);
  border-bottom: 2px solid var(--team-gold);
}

.p-athletes .team__txt {
  font-size: 16px;
  line-height: 2;
}

/* =========================================================
   選手の声
   ========================================================= */
.p-athletes .sec--voice {
  padding-top: 40px;
}

.p-athletes .players {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.p-athletes .player {
  overflow: hidden;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  padding: 0 0 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--team-pale);
}

/* 写真の台紙はクラブカラーのグラデーション（カード幅いっぱい） */
.p-athletes .player__photo {
  overflow: hidden;
  width: 100%;
  /* ユニフォームも紫のため、台紙は濃いめの紫から始めて選手を浮かせる */
  background: linear-gradient(170deg, #1f1049 0%, #2e1966 48%, var(--team-purple) 72%, var(--team-gold) 100%);
}

.p-athletes .player__photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 0;
}

.p-athletes .player__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin: 22px 26px 20px;
  padding-bottom: 20px;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--line);
}

.p-athletes .player__name span {
  font-size: 16px;
  font-weight: 500;
}

.p-athletes .player__name a {
  color: var(--text);
  transition: color .2s ease;
}

.p-athletes .player__name a:hover {
  color: var(--blue);
}

.p-athletes .player__txt {
  font-size: 15px;
  line-height: 2;
  padding: 0 26px;
  text-align: left;
}

/* =========================================================
   N-NOSE
   ========================================================= */
.p-athletes .sec--about {
  background: var(--pale);
}

.p-athletes .about {
  text-align: center;
}

.p-athletes .about__visual {
  width: 320px;
  margin: 0 auto 28px;
}

.p-athletes .about__visual img {
  border-radius: 6px;
}

.p-athletes .about__ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 18px;
  letter-spacing: .1em;
  color: var(--blue);
}

.p-athletes .about__txt {
  font-size: 16px;
  line-height: 2;
}

.p-athletes .c-cta {
  font-size: 19px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  margin-top: 34px;
  padding: 17px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
  color: #fff;
  border-radius: 60px;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(15, 89, 168, .26);
}

.p-athletes .c-cta i {
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.p-athletes .c-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 89, 168, .32);
}

/* =========================================================
   SP
   ========================================================= */
@media screen and (max-width: 767px) {
  .p-athletes {
    font-size: 15px;
  }

  .p-athletes .inner {
    padding: 0 20px;
  }

  .p-athletes .sec {
    padding: 50px 0;
  }

  .p-athletes .sec--movie {
    padding-top: 0;
  }

  .p-athletes .sec--team {
    padding-bottom: 25px;
  }

  .p-athletes .sec--voice {
    padding-top: 25px;
  }

  .p-athletes .msg__en {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .p-athletes .msg__ttl {
    font-size: 25px;
    margin-bottom: 32px;
  }

  .p-athletes .lead {
    font-size: 15px;
    line-height: 2.1;
  }

  .p-athletes .lead br {
    display: none;
  }

  .p-athletes .c-youtube {
    border-radius: 6px;
  }

  .p-athletes .c-youtube a::after {
    width: 60px;
    height: 60px;
  }

  .p-athletes .team {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 26px 20px;
    border-left-width: 4px;
  }

  .p-athletes .team__logo {
    flex: 0 0 auto;
    width: 84px;
  }

  .p-athletes .team__body {
    text-align: center;
  }

  .p-athletes .team__name {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .p-athletes .team__txt {
    text-align: left;
  }

  .p-athletes .team__txt {
    font-size: 15px;
  }

  .p-athletes .team__txt br {
    display: none;
  }

  .p-athletes .players {
    flex-direction: column;
    gap: 24px;
  }

  .p-athletes .player {
    flex: 0 0 auto;
    padding: 0 0 26px;
  }

  .p-athletes .player__name {
    font-size: 21px;
    margin: 20px 22px 18px;
    padding-bottom: 18px;
  }

  .p-athletes .player__txt {
    padding: 0 22px;
  }

  .p-athletes .player__txt {
    font-size: 15px;
  }

  .p-athletes .player__txt br {
    display: none;
  }

  .p-athletes .about__visual {
    width: 74%;
    margin-bottom: 22px;
  }

  .p-athletes .about__ttl {
    font-size: 26px;
  }

  .p-athletes .about__txt {
    font-size: 15px;
    text-align: left;
  }

  .p-athletes .about__txt br {
    display: none;
  }

  .p-athletes .c-cta {
    font-size: 17px;
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 330px;
    margin: 30px auto 0;
  }
}
