      :root {
        --text: rgba(51, 54, 59, 1);
        --accent: rgba(255, 102, 35, 1);
        --bg-light: rgba(238, 238, 244, 0.4);
        --bg-dark: rgba(23, 28, 38, 1);
        --card-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        margin: 0;
        padding: 0;
      }

      body {
        font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
        color: #111;
        background: var(--bg-light);
      }

	      .container {
	        width: min(1200px, calc(100% - 60px));
	        margin-inline: auto;
	      }

	      .maintitle {
	        padding: 50px 0;
	      }
	      .maintitle .en{
	        color:rg (23, 28, 38, 1);
	      }

      .spotlight-head__title {
        margin: 0;
        font-size: clamp(3rem, 7.6vw, 4.9rem);
        letter-spacing: 0.04em;
      }

      .spotlight-head__sub {
        margin: 10px 0 0;
        color: var(--accent);
        font-weight: 700;
      }

.hashtags {
  width: 100%;
  padding: 0 0 60px;
}

      .marquee {
        display: grid;
        gap: 7px;
      }

      .marquee__lane {
        overflow: hidden;
        width: 100%;
      }

      .marquee__track {
        display: flex;
        width: max-content;
      }

      .marquee__track--ltr {
        animation: lane-ltr 36s linear infinite;
      }

      .marquee__track--rtl {
        animation: lane-rtl 38s linear infinite;
      }

	      .marquee__group {
	        display: flex;
	        align-items: center;
	        gap: 0;
	      }

      .marquee__tag {
        display: inline-block;
        color: var(--text);
        text-decoration: none !important;
        border-bottom: 2px solid currentColor;
        padding-bottom: 1px;
        margin: 10px 0;
        white-space: nowrap;
        font-size: clamp(14px, 2vw, 28px);
        font-weight: 700;
        line-height: 1.2;
        cursor: pointer;
      }

      .marquee__tag:visited {
        color: #1d1d1d;
      }

      .marquee__divider {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin: 0 30px;
        flex: 0 0 auto;
      }

      .marquee__divider img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }

      .filter-area {
        padding-bottom: 42px;
      }

      .sport-filter {
        position: relative;
        width: min(360px, 100%);
        margin-inline: auto;
      }

      .sport-filter__button {
        width: 100%;
        height: 55px;
        border: 2px solid #262626;
        border-radius: 10px;
        background: #fff;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 17px;
        font-weight: 500;
        cursor: pointer;
      }

      .sport-filter__arrow {
        width: 13px;
        height: 13px;
        border-right: 2px solid #222;
        border-bottom: 2px solid #222;
        transform: rotate(45deg) translateY(-1px);
        transform-origin: center;
        transition: transform 0.18s ease;
        flex: 0 0 auto;
      }

      .sport-filter.is-open .sport-filter__arrow {
        transform: rotate(-135deg) translateY(-1px);
      }

	      .sport-filter__list {
	        list-style: none;
	        margin: 8px 0 0;
	        padding: 6px;
	        border: none;
	        border-radius: 0;
	        background: #fff;
	        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	        display: none;
        position: absolute;
        inset: calc(100% + 2px) 0 auto;
        z-index: 5;
      }

      .sport-filter.is-open .sport-filter__list {
        display: block;
      }

      .sport-filter__item {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px 14px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        cursor: pointer;
      }

      .sport-filter__item:hover,
      .sport-filter__item:focus-visible {
        background: #f6f6f6;
      }

	      .sport-filter__item.is-selected::after {
	        content: "";
	        display: block;
	        width: 14px;
	        height: 14px;
	        background: url("../img/ico_check.svg") center / contain no-repeat;
	        flex: 0 0 auto;
	      }

      .cards-wrap {
        background: var(--bg-dark);
        padding: 60px 0;
      }

      .athlete-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px;
      }

	      .athlete-card {
	        position: relative;
	        display: block;
	        aspect-ratio: 4 / 5;
	        border-radius: 12px;
	        overflow: hidden;
	        text-decoration: none;
	        box-shadow: var(--card-shadow);
	        background-color: #131d31;
	      }

	      .athlete-card__media {
	        position: absolute;
	        inset: 0;
	        display: block;
	        z-index: 0;
	        overflow: hidden;
	        background-position: center center !important;
	        background-repeat: no-repeat !important;
	        background-size: cover !important;
	      }

	      .athlete-card__media img {
	        display: block;
	        width: 100%;
	        height: 100%;
	        object-fit: cover;
	        max-width: none;
	      }


.athlete-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  color: #fff;
  text-align: left;
  z-index: 3;
}

      .athlete-card__name {
        margin: 0;
        font-size: 20px;
        line-height: 1.3;
        font-weight: 900;
      }

.athlete-card__sport {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 3px;
  background: var(--accent);
  font-size: 14px;
        font-weight: 700;
      }

.athlete-card__event {
  margin: 6px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

      .athlete-card__catchcopy {
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: 0.02em;
      }

      .athlete-card__catchcopies {
        margin: 6px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 2px;
      }

      .athlete-empty {
        margin: 0;
        padding: 30px 0;
        text-align: center;
        color: #d8dceb;
      }

      @keyframes lane-ltr {
        from {
          transform: translateX(-50%);
        }

        to {
          transform: translateX(0);
        }
      }

      @keyframes lane-rtl {
        from {
          transform: translateX(0);
        }

        to {
          transform: translateX(-50%);
        }
      }

	      .spotlight-head__sub {
	        font-size: 18px;
	      }

@media (max-width: 1199.98px) and (min-width: 768px) {
  .athlete-card::before {
    height: 46%;
  }

  .athlete-card__content {
    padding: clamp(10px, 1.25vw, 14px);
  }

  .athlete-card__name {
    font-size: clamp(13px, 1.6vw, 18px);
    line-height: 1.25;
  }

  .athlete-card__sport {
    min-height: 18px;
    margin-top: 4px;
    padding: 0 6px;
    font-size: clamp(10px, 1.1vw, 12px);
  }

  .athlete-card__catchcopies {
    margin-top: 4px;
    gap: 1px;
  }

  .athlete-card__event {
    margin-top: 4px;
    font-size: clamp(10px, 1.15vw, 12px);
    line-height: 1.3;
  }

  .athlete-card__catchcopy {
    font-size: clamp(10px, 1.15vw, 12px);
    line-height: 1.3;
  }
}

@media (max-width: 767.98px) {
  .maintitle {
    padding: 30px 0;
  }

  .container {
    width: min(1200px, calc(100% - 20px));
  }

        .spotlight-head__sub {
          font-size: 13px;
        }

  .marquee {
    gap: 4px;
  }

  .marquee__tag {
    font-size: 18px;
    margin: 8px 0;
  }

  .marquee__divider {
    width: clamp(26px, 2.1vw, 31px);
    height: clamp(26px, 2.1vw, 31px);
    margin: 0 20px;
  }

  .hashtags {
    padding: 0 0 30px;
  }

        .filter-area {
          padding-bottom: 28px;
        }

        .sport-filter {
          width: 280px;
          max-width: 100%;
        }

  .sport-filter__button,
  .sport-filter__item {
    color: var(--text);
  }

  .sport-filter__button {
    height: 43px;
    font-size: 12px;
  }

  .cards-wrap {
    padding: 28px 0 120px;
  }

        .athlete-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 10px;
        }

	        .athlete-card {
	          border-radius: 10px;
	        }

        .athlete-card__content {
          padding: 12px 10px 11px;
        }

        .athlete-card__name {
          font-size: 14px;
        }

  .athlete-card__sport {
    min-height: 16px;
    font-size: 10px;
  }

  .athlete-card__event {
    font-size: 10px;
    line-height: 1.3;
  }

        .athlete-card__catchcopy {
          font-size: 10px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .marquee__track {
          animation: none;
          transform: translateX(0);
        }
      }
