@charset "UTF-8";
/* ============================================
 * Saltista橋本FC - common.scss (entry)
 *
 * 注: SCSS partial は将来的に foundation / layout / object / utility に
 *     分割再構築する予定。現状は単一 partial (_utility.scss) に
 *     全ルールが含まれる過渡的構成。
 * ============================================ */
/* ============================================
 * Saltista橋本FC - common.scss (entry)
 *
 * sass コマンドで本ファイルをコンパイルすると common.css が生成される。
 *  $ sass common/css/common.scss common/css/common.css --no-source-map --style=expanded
 *
 * 設計方針:
 *  - 既存 common.css の内容を 4 partial に過不足なく分割
 *  - SCSS 機能（変数・ネスト等）は最小限に留め、コンパイル後 CSS が
 *    現行 common.css と同等の見た目を保持
 *  - 各 partial の冒頭コメントで対応ライン範囲を明記
 *
 * 読込順 (cascade):
 *   1. _foundation  → reset, html/body, :root vars
 *   2. _layout      → topbar / header / hero / footer / page-header / breadcrumbs / dropdown
 *   3. _object      → sponsors / matches / posts / cards / forms / 全コンポーネント
 *   4. _utility     → 大型 responsive ブロック / animations / helpers
 *
 *  ※ 4) を最後にすることで responsive (@media max-width) は
 *     base ルールを正しく上書きできる。
 * ============================================ */
/* ----- External Imports (fonts) ----- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Cinzel:wght@400;500;600&display=swap");
/* ----- Slick base structure (inlined — CDN dependency removed) ----- */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: pan-y;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  will-change: transform;
}

.slick-track::before,
.slick-track::after {
  display: table;
  content: "";
}

.slick-track::after {
  clear: both;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  top: 50%;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  transform: translate(0, -50%);
}

.slick-prev::before,
.slick-next::before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

/* ============================================
 * Variables — プロジェクト共通トークン
 *  ※ 値は :root の CSS Variables と完全同期
 * ============================================ */
/* maxWidth */
/* mediaScreen */
/* font */
/* color (semantic — :root と完全同期) */
/* other */
/* ============================================
 * Partials
 * ============================================ */
/* ============================================
 * _foundation.scss
 *  - RESET / BASE / :root CSS variables
 *  - SCSS nesting + FLOCSS 命名
 * ============================================ */
/* ----- Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ----- Root ----- */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-width: 320px;
  overflow-x: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

/* ----- Element resets ----- */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ----- :root tokens (CSS Variables) ----- */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-bg: #f4f4f4;
  --color-border: #e5e5e5;
  --color-muted: #9a9a9a;
  --color-accent: #f5d211;
  --color-dark: #111;
  --font-en: "Cormorant Garamond", "Cinzel", serif;
  --font-ja: "Noto Sans JP", sans-serif;
}

/* ----- Monogram letter (PEC) ----- */
.c-letter {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: #fff;
}

.l-topbar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 30px;
  padding: 0 0 0 20px;
}

.l-topbar__desc {
  display: flex;
  align-items: center;
  color: white;
  letter-spacing: 0.02em;
}

.l-topbar__nav {
  display: flex;
  align-items: stretch;
}

.l-topbar__nav-list {
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.l-topbar__nav-list li {
  padding: 0 14px;
  position: relative;
}

.l-topbar__nav-list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: white;
}

.l-topbar__nav-list a {
  color: white;
}

.l-topbar__store {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #111;
  font-weight: 700;
  padding: 0 25px;
  letter-spacing: 0.04em;
}

.l-header.is-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.l-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 20px 16px 20px;
  position: relative;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.l-header__logo {
  display: flex;
  align-items: center;
  padding-left: 10px;
  justify-self: start;
}

.l-header__logo a {
  display: inline-block;
}
.l-header__logo a img {
  width: 7rem;
  height: auto;
}

.l-gnav {
  justify-self: center;
}

.l-gnav__list {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.l-gnav__list a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.l-gnav__sub li {
  display: block;
  margin: 0;
}

.l-gnav__sub a {
  display: block;
  padding: 10px 22px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #333;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.l-gnav__sub a:hover {
  background: #f6f6f6;
  color: #000;
  opacity: 1;
}

.l-gnav__sub a[aria-current=page] {
  color: #000;
  font-weight: 700;
  background: #fafafa;
}

.c-hamburgerBtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  justify-self: end;
}

.c-hamburgerBtn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
}

.l-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  margin: 0 auto;
}

.l-hero__left {
  z-index: 10;
  width: 400px;
  margin-left: calc((100vw - 1240px) / 2);
}

.l-hero__title {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #111;
  margin-bottom: 16px;
}

.l-hero__subtitle {
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #222;
  display: inline-block;
  background: white;
  padding: 0.5rem 1rem 0.5rem 0;
  width: -moz-fit-content;
  width: fit-content;
}

.l-hero__cards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.l-hero__sns {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding-left: 2px;
}

.l-hero__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #111;
}

.l-hero__sns svg {
  width: 22px;
  height: 22px;
}

.l-hero__right {
  position: relative;
}

.l-hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 790/500;
  overflow: hidden;
}

.l-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% 30%;
     object-position: 30% 30%;
}

.l-hero__image-caption {
  position: absolute;
  right: 0;
  bottom: 2rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px 20px;
  font-size: 1.1rem;
  color: #222;
  letter-spacing: 0.02em;
}

.c-heroCard {
  display: flex;
  align-items: center;
  padding: 2rem;
  border-top: 1px solid #dedede;
  background: #fff;
  position: relative;
}

.c-heroCard__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.c-heroCard__title img {
  width: auto;
  height: 3rem;
}

.c-heroCard__desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.4;
}

.c-heroCard__arrow {
  font-size: 1.8rem;
  color: #999;
  margin-left: 12px;
  line-height: 1;
}

.l-footer__inner {
  max-width: 1240px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.l-footer__logo img {
  width: 7rem;
  height: auto;
}

.l-footer__desc {
  font-size: 1.2rem;
  color: #bbb;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.l-footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.l-footer__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.l-footer__sns a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  opacity: 1;
}

.l-footer__sns svg {
  width: 16px;
  height: 16px;
}

.l-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.l-footer__nav-col h4 {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.l-footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-footer__nav-col a {
  font-size: 1.2rem;
  color: #bbb;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.l-footer__nav-col a:hover {
  color: #fff;
  padding-left: 6px;
  opacity: 1;
}

.l-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-accent);
  color: #111;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  margin-top: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.l-footer__cta:hover {
  background: #fff;
  transform: translateY(-2px);
  opacity: 1;
}

.l-footer__bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1.1rem;
  color: #999;
}

.l-footer__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.l-footer__bottom-links a {
  color: #999;
  transition: color 0.25s ease;
}

.l-footer__bottom-links a:hover {
  color: #fff;
  opacity: 1;
}

.l-footer__copy {
  letter-spacing: 0.04em;
  font-family: var(--font-en);
}

.l-pageHeader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.l-pageHeader__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.l-pageHeader__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  animation: kenBurns 22s ease-in-out infinite alternate;
}

.l-pageHeader__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  z-index: 2;
}

.l-pageHeader__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.l-pageHeader__subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
}

.l-breadcrumbs__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.l-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.l-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l-breadcrumbs li + li::before {
  content: "›";
  color: #bbb;
  font-size: 1.2rem;
  line-height: 1;
}

.l-breadcrumbs a {
  color: #666;
  transition: color 0.2s ease;
}

.l-breadcrumbs a:hover {
  color: #111;
  opacity: 1;
}

.l-breadcrumbs [aria-current=page] {
  color: #111;
  font-weight: 500;
}

.l-page__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.l-page__lead {
  font-size: 1.5rem;
  line-height: 2;
  color: #222;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 820px;
  letter-spacing: 0.04em;
}

.l-page__lead-en {
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 8px;
  text-align: center;
  display: block;
}

.c-sectionBlock {
  padding: 56px 0;
  border-top: 1px solid #eee;
}

.c-sectionBlock:first-child {
  border-top: 0;
  padding-top: 0;
}

.c-sectionBlock__title {
  text-align: center;
  margin-bottom: 40px;
}

.c-sectionBlock__title-en {
  font-family: var(--font-en);
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111;
  margin-bottom: 6px;
  line-height: 1;
}

.c-sectionBlock__title-ja {
  font-size: 1.2rem;
  color: #555;
  letter-spacing: 0.14em;
}

.c-spmenu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.c-spmenu.is-open .c-spmenu__overlay {
  opacity: 1;
}

.c-spmenu.is-open .c-spmenu__panel {
  transform: translateX(0);
}

.c-spmenu__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.c-spmenu__logo {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  flex-shrink: 0;
}

.c-spmenu__logo .c-letter {
  font-size: 1.15rem;
  line-height: 0.9;
  color: #fff;
}

.c-spmenu__brand-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-spmenu__brand-en {
  font-family: var(--font-en);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 500;
}

.c-spmenu__brand-ja {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.c-spmenu__close:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
  opacity: 1;
}

.c-spmenu__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transform-origin: center;
}

.c-spmenu__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-spmenu__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-spmenu__scroll::-webkit-scrollbar {
  width: 4px;
}

.c-spmenu__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.c-spmenu__hero-en {
  font-family: var(--font-en);
  font-size: 2.6rem;
  letter-spacing: 0.16em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1;
}

.c-spmenu__hero-ja {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.c-spmenu.is-open .c-spmenu__cat-wrap {
  opacity: 1;
  transform: translateY(0);
}

.c-spmenu.is-open .c-spmenu__cat-wrap:nth-child(2) {
  transition-delay: 0.24s;
}

.c-spmenu.is-open .c-spmenu__cat-wrap:nth-child(3) {
  transition-delay: 0.3s;
}

.c-spmenu.is-open .c-spmenu__cat-wrap:nth-child(4) {
  transition-delay: 0.36s;
}

.c-spmenu.is-open .c-spmenu__cat-wrap:nth-child(5) {
  transition-delay: 0.42s;
}

.c-spmenu__cat:hover {
  padding-left: 6px;
  opacity: 1;
}

.c-spmenu__cat-num {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  flex-shrink: 0;
  width: 32px;
}

.c-spmenu__cat-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.c-spmenu__cat-en {
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
}

.c-spmenu__cat-ja {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.c-spmenu__cat-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: translate(-65%, -50%) rotate(45deg);
}

.c-spmenu__cat:hover .c-spmenu__cat-arrow {
  background: #f5d211;
  border-color: #f5d211;
  transform: translateX(4px);
}

.c-spmenu__cat:hover .c-spmenu__cat-arrow::before {
  border-color: #111;
}

.c-spmenu__sub li {
  margin: 0;
}

.c-spmenu__sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, padding-left 0.25s ease, opacity 0.25s ease;
}

.c-spmenu__sub a::before {
  content: "";
  width: 5px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.c-spmenu__sub a:hover {
  color: #fff;
  padding-left: 4px;
  opacity: 1;
}

.c-spmenu__sub a[aria-current=page] {
  color: #f5d211;
  font-weight: 500;
}

.c-spmenu__sub a[aria-current=page]::before {
  background: #f5d211;
  width: 10px;
}

.c-spmenu.is-open .c-spmenu__ctas {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.c-spmenu__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.3s ease, border-color 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
}

.c-spmenu__cta:hover {
  transform: translateX(4px);
  opacity: 1;
}

.c-spmenu__cta--primary {
  background: #f5d211;
  border-color: #f5d211;
  color: #111;
}

.c-spmenu__cta--primary:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.c-spmenu__cta--secondary {
  background: transparent;
  color: #fff;
}

.c-spmenu__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}

.c-spmenu__cta-en {
  font-family: var(--font-en);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  flex-shrink: 0;
  width: 90px;
  border-right: 1px solid currentColor;
  padding-right: 14px;
  opacity: 0.7;
}

.c-spmenu__cta-ja {
  flex: 1;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.c-spmenu__cta-arrow {
  font-family: var(--font-en);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.c-spmenu__cta:hover .c-spmenu__cta-arrow {
  transform: translateX(4px);
}

.c-spmenu.is-open .c-spmenu__foot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.c-spmenu__sns {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-spmenu__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.c-spmenu__sns a:hover {
  background: #f5d211;
  color: #111;
  transform: translateY(-2px);
  opacity: 1;
}

.c-spmenu__sns a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.c-spmenu__copy {
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
 * _layout.scss
 *  - 構造系: TopBar / Header / GNav / Hero / Footer
 *           Page Header / Breadcrumbs / Page Wrap
 *           GNav Dropdown
 *  - 元 common.css L43-313 + L1126-1413 + L2417-2595
 * ============================================ */
/* ----- 1) TOPBAR / HEADER / HERO  (L43-313) ----- */
/* ==============================================
   TOP BAR
   ============================================== */
.l-topbar {
  background: #000;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.1rem;
}

/* ==============================================
   HEADER
   ============================================== */
.l-header {
  background: #fff;
  position: relative;
  z-index: 200;
  transition: box-shadow 0.3s ease;
}

/* ==============================================
   HERO
   ============================================== */
.l-hero {
  padding: 25px 0 70px;
  background: #fff;
}

/* ----- 2) FOOTER / PAGE-HEADER / BREADCRUMBS / PAGE-WRAP  (L1126-1413) ----- */
/* ==============================================
   FOOTER
   ============================================== */
.l-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 70px 20px 30px;
}

@media (max-width: 1199px) {
  .l-footer {
    padding: 56px 16px 26px;
  }
  .l-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 32px;
  }
  .l-footer__nav {
    gap: 24px 20px;
  }
  .l-footer__nav-col h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .l-footer {
    padding: 44px 16px 22px;
  }
  .l-footer__inner {
    gap: 30px;
    margin-bottom: 26px;
  }
  .l-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
  }
  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
  }
  .l-footer__cta {
    width: 100%;
    max-width: 320px;
  }
}
/* ==============================================
   PAGE HEADER (sub-pages)
   ============================================== */
.l-pageHeader {
  position: relative;
  padding: 80px 20px 70px;
  text-align: center;
  color: #fff;
  background: #111;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .l-pageHeader {
    padding: 70px 16px 60px;
  }
  .l-pageHeader__title {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .l-pageHeader {
    padding: 54px 16px 44px;
  }
  .l-pageHeader__title {
    font-size: 3.2rem;
  }
  .l-pageHeader__subtitle {
    font-size: 1.05rem;
    letter-spacing: 0.1em;
  }
}
/* ==============================================
   BREADCRUMBS
   ============================================== */
.l-breadcrumbs {
  background: #f7f7f7;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #666;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .l-breadcrumbs {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .l-breadcrumbs ol {
    gap: 8px;
  }
  .l-breadcrumbs li {
    gap: 8px;
  }
}
/* ==============================================
   PAGE CONTENT WRAP
   ============================================== */
.l-page {
  padding: 80px 20px 100px;
  background: #fff;
}

@media (max-width: 1199px) {
  .l-page {
    padding: 60px 16px 80px;
  }
  .c-sectionBlock__title-en {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .l-page {
    padding: 44px 16px 60px;
  }
  .l-page__lead {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }
  .c-sectionBlock {
    padding: 40px 0;
  }
  .c-sectionBlock__title {
    margin-bottom: 28px;
  }
  .c-sectionBlock__title-en {
    font-size: 2.6rem;
  }
  .c-sectionBlock__title-ja {
    font-size: 1.05rem;
  }
}
/* ----- 3) GNAV DROPDOWN (新6項目構造)  (L2417-2595) ----- */
/* ==============================================
   GNAV DROPDOWN (新6項目構造)
   ============================================== */
/* 基本: gnav__item は flex 子。relative にしてサブメニューを配置 */
.l-gnav__item {
  position: relative;
}

/* gnav__link は <a> のフレキシブルな新セレクタ */
.l-gnav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  padding: 6px 0;
}

/* キャレット (▼) — ドロップダウンを示す小さな三角 */
.l-gnav__caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.l-gnav__item--has-sub:hover > .l-gnav__link .l-gnav__caret,
.l-gnav__item--has-sub.is-open > .l-gnav__link .l-gnav__caret {
  transform: rotate(-180deg);
  opacity: 1;
}

/* サブメニュー */
.l-gnav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 14px 0;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 120;
}

.l-gnav__item--has-sub:hover > .l-gnav__sub,
.l-gnav__item--has-sub.is-open > .l-gnav__sub,
.l-gnav__item--has-sub:focus-within > .l-gnav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* hover 時のヘッダ余白から漏れない不可視ブリッジ (8px の隙間も hover 維持) */
.l-gnav__item--has-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

/* タブレット以下では位置調整して両端のメニューが画面外へはみ出さない */
@media (max-width: 1199px) {
  .l-gnav__sub {
    left: 0;
    transform: translateY(8px);
  }
  .l-gnav__item--has-sub:hover > .l-gnav__sub,
  .l-gnav__item--has-sub.is-open > .l-gnav__sub,
  .l-gnav__item--has-sub:focus-within > .l-gnav__sub {
    transform: translateY(0);
  }
  /* 最後のアイテムは右寄せ */
  .l-gnav__item:last-child .l-gnav__sub {
    left: auto;
    right: 0;
  }
}
/* ============== モバイル: アコーディオン化 ============== */
@media (max-width: 1199px) {
  /* モバイルナビ全体は既存の右からスライドインを継承 (.l-gnav.is-open) */
  .l-gnav__item {
    width: 100%;
  }
  .l-gnav__link {
    width: 100%;
    justify-content: space-between;
    color: #fff;
    font-size: 1.6rem;
    padding: 16px 0;
  }
  .l-gnav__caret {
    border-top-color: #fff;
    opacity: 0.7;
    margin-left: auto;
  }
  /* モバイルでは hover ではなく .is-open でトグル */
  .l-gnav__item--has-sub > .l-gnav__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
  }
  .l-gnav__item--has-sub.is-open > .l-gnav__sub {
    max-height: 600px;
    padding: 6px 0 14px;
  }
  .l-gnav__sub a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.25rem;
    padding: 10px 18px;
  }
  .l-gnav__sub a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
  .l-gnav__sub a[aria-current=page] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  /* hover ブリッジ無効化 */
  .l-gnav__item--has-sub::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-gnav__link {
    font-size: 1.5rem;
    padding: 14px 0;
  }
  .l-gnav__sub a {
    font-size: 1.2rem;
    padding: 9px 16px;
  }
}
/* ============================================
   c-spmenu (リッチなフルスクリーンSPメニュー)
   ・PC では gnav が表示されるため非表示
   ・タブレット (max-width:1199px) 以下で .c-hamburgerBtn.is-open / body.is-nav-open 時に出現
   ・カテゴリ ナンバー（01-05）+ 英・和タイトル + サブ + 主要CTA + SNS
   ============================================ */
.c-spmenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s ease;
  pointer-events: none;
}

/* 背景オーバーレイ */
.c-spmenu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* 本体パネル */
.c-spmenu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(540px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(165deg, #0d0d0d 0%, #1a1a1a 60%, #0a0a0a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: hidden;
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
}

/* 装飾: 左端のアクセントライン */
.c-spmenu__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f5d211 0%, transparent 80%);
  opacity: 0.35;
}

/* ----- HEAD: ロゴ + 閉じる ----- */
.c-spmenu__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 閉じるボタン (×) */
.c-spmenu__close {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.35s ease;
}

/* ----- スクロール領域 ----- */
.c-spmenu__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 26px 36px;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  scrollbar-width: thin;
}

/* ----- HERO テキスト ----- */
.c-spmenu__hero {
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ----- ナビ全体 ----- */
.c-spmenu__nav {
  margin-bottom: 32px;
}

/* カテゴリ wrap (stagger animation 用) */
.c-spmenu__cat-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* stagger delay */
.c-spmenu.is-open .c-spmenu__cat-wrap:nth-child(1) {
  transition-delay: 0.18s;
}

/* カテゴリ親リンク */
.c-spmenu__cat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: padding-left 0.35s ease, opacity 0.25s ease;
}

/* バッジ (例: ジュニアユース 2027.04 START) */
.c-spmenu__cat-tag {
  display: inline-block;
  padding: 2px 8px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: #f5d211;
  color: #111;
  font-weight: 600;
}

/* 矢印 */
.c-spmenu__cat-arrow {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* aria-current 強調 */
.c-spmenu__cat[aria-current=page] {
  padding-left: 6px;
}

.c-spmenu__cat[aria-current=page] .c-spmenu__cat-num,
.c-spmenu__cat[aria-current=page] .c-spmenu__cat-en {
  color: #f5d211;
}

/* アクセント wrap (ジュニアユース) */
.c-spmenu__cat-wrap--accent .c-spmenu__cat-num {
  color: #f5d211;
  opacity: 0.7;
}

/* サブメニュー */
.c-spmenu__sub {
  list-style: none;
  padding: 0 0 16px 50px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 14px;
}

/* ----- CTA ----- */
.c-spmenu__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ----- FOOT: SNS + コピーライト ----- */
.c-spmenu__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ----- レスポンシブ調整 -----
   c-spmenu は PC・タブレット・SP すべての viewport で
   .c-hamburgerBtn / .c-hamburgerBtn クリックにより開閉可能。
   PC では gnav (横並び) と c-spmenu (リッチパネル) を併存させる構成。
   ----- */
@media (max-width: 1199px) {
  /* タブレット以下: 旧 .l-gnav が非表示になる代わりに c-spmenu が主ナビゲーション */
}
@media (min-width: 1200px) {
  /* PC: c-spmenu は default 非表示 (visibility/opacity)。
     hamburger クリックで .is-open 付与 → 右からスライドイン */
  /* c-spmenu の base ルールが既に visibility:hidden / opacity:0 / pointer-events:none で隠している為、
     ここでは追加の display:none は不要 */
}
@media (max-width: 767px) {
  .c-spmenu__panel {
    width: 100vw;
    box-shadow: none;
  }
  .c-spmenu__head {
    padding: 18px 20px;
  }
  .c-spmenu__scroll {
    padding: 20px 20px 32px;
  }
  .c-spmenu__brand-en {
    font-size: 1.3rem;
  }
  .c-spmenu__brand-ja {
    font-size: 0.95rem;
  }
  .c-spmenu__hero-en {
    font-size: 2.2rem;
  }
  .c-spmenu__hero-ja {
    font-size: 1rem;
  }
  .c-spmenu__cat {
    padding: 16px 0;
    gap: 14px;
  }
  .c-spmenu__cat-en {
    font-size: 1.7rem;
  }
  .c-spmenu__cat-ja {
    font-size: 1.05rem;
  }
  .c-spmenu__cat-num {
    font-size: 1.05rem;
    width: 26px;
  }
  .c-spmenu__cat-arrow {
    width: 28px;
    height: 28px;
  }
  .c-spmenu__sub {
    grid-template-columns: 1fr;
    padding: 0 0 14px 42px;
    gap: 2px;
  }
  .c-spmenu__sub a {
    font-size: 1.05rem;
    padding: 6px 0;
  }
  .c-spmenu__cta {
    padding: 14px 18px;
  }
  .c-spmenu__cta-en {
    width: 74px;
    font-size: 1.05rem;
    padding-right: 10px;
  }
  .c-spmenu__cta-ja {
    font-size: 1.1rem;
  }
}
@media (max-width: 400px) {
  .c-spmenu__cat-en {
    font-size: 1.5rem;
  }
  .c-spmenu__cta-en {
    width: 64px;
    font-size: 0.95rem;
  }
  .c-spmenu__cta-ja {
    font-size: 1rem;
  }
}
/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .c-spmenu,
  .c-spmenu__overlay,
  .c-spmenu__panel,
  .c-spmenu__cat-wrap,
  .c-spmenu__ctas,
  .c-spmenu__foot {
    transition: none !important;
  }
}
/* ============================================
   タブレット以下では旧 .l-gnav を完全非表示。
   c-spmenu に役割を完全移譲する。
   ============================================ */
@media (max-width: 1199px) {
  .l-gnav {
    display: none !important;
  }
}
.c-sponsors__main-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1706/895;
  background: #000;
}

.c-sponsors__main-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sponsors > .c-sponsors__main.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.c-sponsors__sub.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.c-sponsors__sub-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 427/224;
  background: #111;
  margin: 0 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.55;
}

.c-sponsors__sub-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sponsors .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.05);
}

.c-sponsors .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  opacity: 1;
  font-size: 0;
}

.c-sponsors .slick-prev {
  left: 16px;
}

.c-sponsors .slick-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.c-sponsors .slick-next {
  right: 16px;
}

.c-sponsors .slick-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.c-sponsors > .c-sponsors__main.slick-initialized .slick-center {
  opacity: 1;
  filter: brightness(1);
  z-index: 2;
}

.c-sponsors > .c-sponsors__main.slick-initialized .slick-center .c-sponsors__main-item {
  transform: scale(1);
}

.c-sponsors > .c-sponsors__main.slick-initialized .slick-slide:not(.slick-center) .c-sponsors__main-item {
  transform: scale(0.95);
}

.c-sampleTag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  font-size: 5.6rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.c-sampleTag--sm {
  font-size: 2.4rem;
}

.c-matches__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.c-match {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.c-match__date {
  font-size: 1.2rem;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  font-family: var(--font-en);
  font-weight: 500;
}

.c-match__body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.c-match__logo img {
  width: 4rem;
  height: auto;
}

.c-match__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.c-match__home {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #111;
  line-height: 1;
}

.c-match__place {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.c-sectionList__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.c-sectionList__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.c-sectionList__title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.c-sectionList__title {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #111;
}

.c-sectionList__subtitle {
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.08em;
}

.c-sectionList__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.c-moreBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 36px;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  padding: 0 16px;
}

.c-sectionList--scroll .c-sectionList__items {
  display: flex;
  grid-template-columns: none;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  /* 末尾の余白 — 突き抜け感を出すため右端に少し空ける */
  padding-right: 60px;
  scrollbar-color: #bbb #f0f0f0;
  scrollbar-width: thin;
}

.c-sectionList--scroll .c-sectionList__items::-webkit-scrollbar {
  height: 8px;
}

.c-sectionList--scroll .c-sectionList__items::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
  margin-right: 20px;
}

.c-sectionList--scroll .c-sectionList__items::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}

.c-sectionList--scroll .c-sectionList__items::-webkit-scrollbar-thumb:hover {
  background: #888;
}

.c-sectionList--scroll .c-post {
  flex: 0 0 290px;
  width: 290px;
  scroll-snap-align: start;
}

.c-post {
  display: flex;
  flex-direction: column;
}

.c-post__thumb {
  background: #000;
  aspect-ratio: 290/160;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-post__date {
  font-family: var(--font-en);
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 500;
}

.c-post__desc {
  font-size: 1.2rem;
  color: #222;
  line-height: 1.7;
}

.c-professional::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.15) 100%);
}

.c-professional__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.c-professional__title {
  font-family: var(--font-en);
  font-size: 4.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}

.c-professional__subtitle {
  font-size: 1.3rem;
  color: #eee;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.c-professional__desc {
  font-size: 1.3rem;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.03em;
}

.c-contents__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.c-contents__head {
  text-align: center;
  margin-bottom: 40px;
}

.c-contents__title {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #111;
  margin-bottom: 6px;
}

.c-contents__subtitle {
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.1em;
}

.c-contents__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.c-contentCard {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 500/200;
}

.c-contentCard__image {
  position: absolute;
  inset: 0;
}

.c-contentCard__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.c-contentCard:hover .c-contentCard__image img {
  transform: scale(1.04);
}

.c-contentCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.c-contentCard__label {
  position: absolute;
  left: 20px;
  bottom: 16px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.c-cardGrid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.c-cardGrid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 32px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #111;
}

.c-card__num {
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: #bbb;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  line-height: 1;
}

.c-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.c-card__desc {
  font-size: 1.25rem;
  color: #444;
  line-height: 1.9;
}

.c-dataTable th {
  background: #f7f7f7;
  width: 28%;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.04em;
}

.c-dataTable td {
  color: #333;
}

.c-dataTable td ul {
  padding-left: 0;
}

.c-dataTable td ul li {
  padding-left: 16px;
  position: relative;
}

.c-dataTable td ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 1px;
  background: #111;
}

.c-priceCard {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 32px 26px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.c-priceCard:hover {
  transform: translateY(-4px);
  border-color: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.c-priceCard__name {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.c-priceCard__title {
  font-size: 1.55rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.c-priceCard__price {
  font-family: var(--font-en);
  font-size: 3.4rem;
  font-weight: 500;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.c-priceCard__price small {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.c-priceCard__note {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.c-priceCard__feat {
  text-align: left;
  font-size: 1.2rem;
  color: #333;
  line-height: 2;
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.c-priceCard__feat li {
  padding-left: 18px;
  position: relative;
}

.c-priceCard__feat li::before {
  content: "◯";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1rem;
  color: #111;
}

.c-priceCard--featured {
  border-color: #111;
}

.c-priceCard--featured::before {
  content: "RECOMMEND";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #111;
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 2px 16px;
  font-weight: 500;
}

.c-profile {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
}

.c-profile:hover {
  transform: translateY(-3px);
}

.c-profile__photo {
  aspect-ratio: 3/4;
  background: #0f0f0f;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}

.c-profile__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.c-profile:hover .c-profile__photo img {
  transform: scale(1.06);
}

.c-profile__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-en);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #111 0%, #333 100%);
}

.c-profile__no {
  position: absolute;
  top: 10px;
  left: 14px;
  font-family: var(--font-en);
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.c-profile__pos {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.c-profile__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.c-profile__name-en {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: #888;
  letter-spacing: 0.04em;
}

.c-profile__role {
  font-size: 1.15rem;
  color: #555;
  margin-top: 2px;
  line-height: 1.6;
}

.c-voice {
  background: #f7f7f7;
  padding: 32px 30px 26px;
  border-left: 3px solid #111;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.c-voice:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.c-voice__quote {
  font-family: var(--font-en);
  font-size: 4.4rem;
  color: #ddd;
  line-height: 0.6;
  margin-bottom: 6px;
  font-weight: 500;
}

.c-voice__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.c-voice__body {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.95;
  margin-bottom: 18px;
}

.c-voice__meta {
  font-size: 1.1rem;
  color: #777;
  letter-spacing: 0.04em;
  border-top: 1px solid #e5e5e5;
  padding-top: 10px;
}

.c-form__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  align-items: start;
}

.c-form__label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  padding-top: 10px;
  letter-spacing: 0.02em;
}

.c-form__label .req {
  display: inline-block;
  background: #c33;
  color: #fff;
  font-size: 1rem;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.c-form__textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

.c-form__note {
  font-size: 1.05rem;
  color: #777;
  margin-top: 8px;
  line-height: 1.7;
}

.c-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 8px;
}

.c-form__radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
  cursor: pointer;
}

.c-form__submit {
  display: block;
  width: 280px;
  height: 54px;
  margin: 44px auto 0;
  background: #111;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  font-family: var(--font-en);
}

.c-form__submit:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.c-goods {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.c-goods:hover {
  transform: translateY(-4px);
}

.c-goods__thumb {
  background: #f4f4f4;
  aspect-ratio: 1;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}

.c-goods__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.c-goods:hover .c-goods__thumb img {
  transform: scale(1.05);
}

.c-goods__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e8e8 0%, #f4f4f4 100%);
  color: #888;
  font-family: var(--font-en);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.c-goods__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  padding: 3px 10px;
  letter-spacing: 0.08em;
  z-index: 2;
}

.c-goods__name {
  font-size: 1.3rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.5;
}

.c-goods__price {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.c-goods__price small {
  font-size: 1.05rem;
  color: #666;
  font-weight: 400;
}

.c-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #ddd;
}

.c-timeline__item {
  position: relative;
  padding-bottom: 32px;
}

.c-timeline__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #111;
}

.c-timeline__item:hover::before {
  background: #111;
}

.c-timeline__date {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.c-timeline__title {
  font-size: 1.35rem;
  color: #333;
  line-height: 1.8;
}

.c-mvvCard {
  background: #111;
  color: #fff;
  padding: 44px 30px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.c-mvvCard:hover {
  transform: translateY(-5px);
}

.c-mvvCard::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.c-mvvCard:hover::before {
  transform: scale(1.1);
}

.c-mvvCard__label {
  font-family: var(--font-en);
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1;
}

.c-mvvCard__en {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.c-mvvCard__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.c-mvvCard__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.95;
}

.c-subpageNav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: #111;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
  line-height: 1.4;
}

.c-subpageNav a::after {
  content: "→";
  font-family: var(--font-en);
  font-size: 1.6rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.c-subpageNav a:hover {
  background: #f5d211;
  color: #111;
  transform: translateY(-2px);
  padding-left: 28px;
  opacity: 1;
}

.c-subpageNav a:hover::after {
  transform: translateX(4px);
}

.c-ctaBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.c-ctaBanner__inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  z-index: 1;
}

.c-ctaBanner__title {
  font-family: var(--font-en);
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.c-ctaBanner__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
  margin-bottom: 26px;
}

.c-ctaBanner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--color-accent);
  color: #111;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.c-ctaBanner__btn::after {
  content: "→";
  font-family: var(--font-en);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.c-ctaBanner__btn:hover {
  background: #fff;
  transform: translateY(-2px);
  opacity: 1;
}

.c-ctaBanner__btn:hover::after {
  transform: translateX(4px);
}

.c-pagination a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  opacity: 1;
}

.c-pagination [aria-current=page] {
  background: #111;
  color: #fff;
  border-color: #111;
}

.c-partner {
  aspect-ratio: 3/2;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.c-partner:hover {
  border-color: #111;
  transform: translateY(-2px);
}

.c-partner img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-matchRow {
  display: grid;
  grid-template-columns: 140px 110px 1fr 1fr 150px;
  gap: 20px;
  align-items: center;
  padding: 22px 16px;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.25s ease;
}

.c-matchRow:hover {
  background: #f9f9f9;
}

.c-matchRow__date {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.c-matchRow__date small {
  display: block;
  font-size: 1rem;
  color: #888;
  font-weight: 400;
}

.c-matchRow__ha {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: #111;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: start;
}

.c-matchRow__ha--away {
  background: #666;
}

.c-matchRow__vs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-matchRow__team {
  font-size: 1.3rem;
  font-weight: 500;
  color: #111;
}

.c-matchRow__vs-mark {
  font-family: var(--font-en);
  font-size: 1.3rem;
  color: #888;
  margin: 0 4px;
}

.c-matchRow__info {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
}

.c-matchRow__status {
  font-family: var(--font-en);
  font-size: 1.15rem;
  text-align: right;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.c-blogCard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.c-blogCard:hover {
  transform: translateY(-4px);
}

.c-blogCard__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
  margin-bottom: 18px;
}

.c-blogCard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.c-blogCard:hover .c-blogCard__thumb img {
  transform: scale(1.06);
}

.c-blogCard__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111;
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  z-index: 2;
}

.c-blogCard__date {
  font-family: var(--font-en);
  font-size: 1.15rem;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.c-blogCard__title {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
  margin-bottom: 6px;
}

.c-blogCard__excerpt {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
}

.c-blogCats a {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #666;
  padding: 8px 18px;
  border: 1px solid #ddd;
  background: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.c-aboutTable tr {
  border-bottom: 1px solid #eee;
}

.c-aboutTable tr:first-child {
  border-top: 1px solid #eee;
}

.c-aboutTable th {
  width: 200px;
  font-weight: 500;
  color: #111;
  background: #fafafa;
  letter-spacing: 0.04em;
}

.c-aboutTable td {
  color: #333;
}

.c-business {
  background: #fafafa;
  padding: 32px 28px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.c-business:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

.c-business__num {
  font-family: var(--font-en);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: #888;
  margin-bottom: 8px;
}

.c-business__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.5;
}

.c-business__desc {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
}

/* ============================================
 * _object.scss
 *  - 再利用 UI 部品系 (c-): Sponsors / Matches / News-Blog / Be-Pro / Contents
 *                          Card / Data-Table / Profile / Voice / Form / Goods
 *                          Timeline / MVV / Sub-Nav / CTA / Pagination
 *                          Partner-Grid / Match-List / Blog-List / About-Table / Business-Grid
 *  - 元 common.css L314-756 + L1414-2400
 * ============================================ */
/* ----- 1) HOME OBJECTS  (L314-756) ----- */
/* ==============================================
   SPONSORS
   - 通常の grid (partners.html 用)
   - .c-sponsors > .c-sponsors__main: slick slider (index.html 用)
   ============================================== */
.c-sponsors {
  background: #000;
  padding: 0;
  position: relative;
}

/* デフォルトの grid (partners.html 用) */
.c-sponsors__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* index.html: slick 化された場合は grid を解除 */
.c-sponsors > .c-sponsors__main {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* sponsors__sub: index.html では slick の asNavFor として使用 */
.c-sponsors__sub {
  background: #000;
  padding: 10px 8px 18px;
  max-width: 1280px;
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.c-sponsors__sub .slick-current .c-sponsors__sub-item,
.c-sponsors__sub .slick-slide:hover .c-sponsors__sub-item,
.c-sponsors__sub .slick-current.c-sponsors__sub-item,
.c-sponsors__sub .slick-slide:hover.c-sponsors__sub-item {
  opacity: 1;
  border-color: #fff;
}

/* slick arrows for sponsors */
.c-sponsors .slick-arrow {
  position: absolute;
  top: 25%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 0;
  z-index: 10;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

/* slick dots for sponsors (hidden because thumbnails act as nav) */
.c-sponsors .slick-dots {
  display: none !important;
}

/* ----- Sponsors centerMode (PC50%/TB25%/SP10%)
       sponsors__main を slick centerMode で表示し、
       中央のアクティブスライドの両側に隣接スライドの一部を覗かせる。
       slick 側の centerPadding は common.js でブレークポイント毎に切替:
         - PC: '25%' → 隣接スライドが画像幅の50%ずつ可視
         - TB: '17%' → 隣接スライドが画像幅の25%ずつ可視
         - SP:  '8%' → 隣接スライドが画像幅の10%ずつ可視
   ----- */
.c-sponsors > .c-sponsors__main.slick-initialized .slick-slide {
  /* 各スライドの基底スタイル */
  position: relative;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

/* 非アクティブ（左右の覗き見せスライド）は薄く＆少し小さく */
.c-sponsors > .c-sponsors__main.slick-initialized .slick-slide:not(.slick-center) {
  opacity: 0.45;
  filter: brightness(0.8);
}

/* centerMode: アクティブスライドのスケールアップで「主役感」を強調 */
.c-sponsors > .c-sponsors__main.slick-initialized .slick-slide .c-sponsors__main-item {
  transition: transform 0.5s ease;
}

/* slick の slide 間に余白を空ける (gap 表現) */
.c-sponsors > .c-sponsors__main.slick-initialized .slick-slide {
  padding: 0 6px;
}

@media (max-width: 767px) {
  .c-sponsors > .c-sponsors__main.slick-initialized .slick-slide {
    padding: 0 3px;
  }
  .c-sponsors > .c-sponsors__main.slick-initialized .slick-slide:not(.slick-center) {
    /* SP では覗き量が少ないので 薄め控えめ */
    opacity: 0.55;
  }
}
/* slick-list がはみ出さない様 overflow 制御 */
.c-sponsors > .c-sponsors__main.slick-initialized .slick-list {
  overflow: hidden;
}

/* slick track の共通リセット (index.html のみ) */
.c-sponsors > .c-sponsors__main .slick-track,
.c-sponsors__sub .slick-track {
  display: flex;
}

.c-sponsors > .c-sponsors__main .slick-slide,
.c-sponsors__sub .slick-slide {
  height: auto;
}

/* ==============================================
   MATCHES
   ============================================== */
.c-matches {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 24px 20px 20px;
}

/* ==============================================
   NEWS / BLOG (section-list)
   ============================================== */
.c-sectionList {
  padding: 60px 20px;
  background: #fff;
}

/* ----- horizontal scroll variant (News / Blog top page)
       右側がビューポート端まで突き抜けるレイアウト
       - 1枚目は inner（タイトルと同じ左揃え）
       - 横並びのリストは画面右端まで伸び、見切れて続く
   ----- */
.c-sectionList--scroll .c-sectionList__scroll {
  position: relative;
  /* 左端: inner と揃える / 右端: viewport の右端まで突き抜け */
  margin-left: 0;
  margin-right: calc(50% - 50vw);
  padding: 0;
}

/* ==============================================
   BE PROFESSIONAL
   ============================================== */
.c-professional {
  position: relative;
  background: #000 url("../images/be-professional-large.jpg") center 30%/cover no-repeat;
  color: #fff;
  padding: 90px 20px 100px;
  overflow: hidden;
}

/* ==============================================
   CONTENTS
   ============================================== */
.c-contents {
  background: #fff;
  padding: 80px 20px 100px;
}

/* ----- 2) PAGE OBJECTS  (L1414-2400) ----- */
/* ==============================================
   CARD GRID (features)
   ============================================== */
.c-cardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1199px) {
  .c-cardGrid,
  .c-cardGrid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .c-cardGrid,
  .c-cardGrid--2,
  .c-cardGrid--4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .c-card {
    padding: 24px 20px;
  }
  .c-card__title {
    font-size: 1.55rem;
  }
}
/* ==============================================
   DATA TABLE (about, schedule)
   ============================================== */
.c-dataTable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.c-dataTable th,
.c-dataTable td {
  padding: 20px 24px;
  text-align: left;
  font-size: 1.3rem;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .c-dataTable th,
  .c-dataTable td {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 1.2rem;
  }
  .c-dataTable th {
    border-bottom: 0;
    padding-bottom: 4px;
  }
}
/* ==============================================
   PRICE GRID
   ============================================== */
.c-priceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .c-priceGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .c-priceGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .c-priceCard {
    padding: 26px 20px 22px;
  }
  .c-priceCard__price {
    font-size: 2.8rem;
  }
}
/* ==============================================
   PROFILE GRID (players/staff)
   ============================================== */
.c-profileGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}

@media (max-width: 1199px) {
  .c-profileGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .c-profileGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .c-profile__no {
    font-size: 1.8rem;
  }
  .c-profile__name {
    font-size: 1.3rem;
  }
}
/* ==============================================
   VOICE / TESTIMONIAL
   ============================================== */
.c-voiceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .c-voiceList {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .c-voice {
    padding: 24px 22px 20px;
  }
  .c-voice__title {
    font-size: 1.4rem;
  }
  .c-voice__quote {
    font-size: 3.6rem;
  }
}
/* ==============================================
   FORM
   ============================================== */
.c-form {
  max-width: 760px;
  margin: 0 auto;
}

.c-form__input,
.c-form__textarea,
.c-form__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1.3rem;
  font-family: inherit;
  color: #111;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.c-form__input:focus,
.c-form__textarea:focus,
.c-form__select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .c-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
  .c-form__label {
    padding-top: 0;
    font-size: 1.2rem;
  }
  .c-form__submit {
    width: 100%;
  }
}
/* ==============================================
   GOODS GRID
   ============================================== */
.c-goodsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}

@media (max-width: 1199px) {
  .c-goodsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .c-goodsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 12px;
  }
}
/* ==============================================
   TIMELINE (club history)
   ============================================== */
.c-timeline {
  position: relative;
  padding-left: 34px;
  max-width: 720px;
  margin: 0 auto;
}

/* ==============================================
   MVV (Mission/Vision/Philosophy)
   ============================================== */
.c-mvvGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .c-mvvGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* ==============================================
   SUB-PAGE NAV (inside sections)
   ============================================== */
.c-subpageNav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .c-subpageNav {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .c-subpageNav {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
  }
  .c-subpageNav a {
    padding: 18px 20px;
    font-size: 1.2rem;
  }
}
/* ==============================================
   CTA BANNER (inline)
   ============================================== */
.c-ctaBanner {
  background: #111 url("../images/be-professional-large.jpg") center 40%/cover no-repeat;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .c-ctaBanner {
    padding: 52px 16px;
  }
  .c-ctaBanner__title {
    font-size: 2.6rem;
  }
  .c-ctaBanner__subtitle {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  .c-ctaBanner__btn {
    padding: 14px 28px;
    font-size: 1.15rem;
    width: 100%;
    max-width: 320px;
  }
}
/* ==============================================
   PAGINATION
   ============================================== */
.c-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 50px;
}

.c-pagination a,
.c-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

@media (max-width: 767px) {
  .c-pagination {
    margin-top: 36px;
  }
  .c-pagination a,
  .c-pagination span {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}
/* ==============================================
   PARTNER LOGO GRID
   ============================================== */
.c-partnerGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .c-partnerGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .c-partnerGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
/* ==============================================
   MATCH LIST (matches page)
   ============================================== */
.match-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 1199px) {
  .c-matchRow {
    grid-template-columns: 110px 90px 1fr;
    gap: 16px;
  }
  .c-matchRow__info,
  .c-matchRow__status {
    grid-column: 1/-1;
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  .c-matchRow {
    grid-template-columns: 1fr auto;
    padding: 18px 12px;
    gap: 8px 12px;
  }
  .c-matchRow__date {
    font-size: 1.25rem;
  }
  .c-matchRow__ha {
    font-size: 1.05rem;
    padding: 2px 10px;
  }
  .c-matchRow__vs {
    grid-column: 1/-1;
    flex-wrap: wrap;
  }
  .c-matchRow__info {
    grid-column: 1/-1;
    font-size: 1.05rem;
  }
  .c-matchRow__status {
    grid-column: 1/-1;
    text-align: left;
  }
}
/* ==============================================
   BLOG LIST
   ============================================== */
.c-blogList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}

@media (max-width: 1199px) {
  .c-blogList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .c-blogList {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .c-blogCard__title {
    font-size: 1.35rem;
  }
}
/* ==============================================
   BLOG CATEGORY FILTER
   ============================================== */
.c-blogCats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.c-blogCats a:hover,
.c-blogCats a.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ==============================================
   ABOUT TABLE (会社概要 詳細)
   ============================================== */
.c-aboutTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

.c-aboutTable th,
.c-aboutTable td {
  padding: 18px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .c-aboutTable,
  .c-aboutTable tbody,
  .c-aboutTable tr,
  .c-aboutTable th,
  .c-aboutTable td {
    display: block;
    width: 100%;
  }
  .c-aboutTable th {
    width: 100%;
    padding: 14px 12px 4px;
    background: #fafafa;
  }
  .c-aboutTable td {
    padding: 6px 12px 14px;
  }
}
/* ==============================================
   ABOUT BUSINESS GRID
   ============================================== */
.c-businessGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
}

@media (max-width: 767px) {
  .c-businessGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .c-business {
    padding: 24px 20px;
  }
}
.c-hamburgerBtn.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.c-hamburgerBtn.is-open span:nth-child(2) {
  opacity: 0;
}

.c-hamburgerBtn.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
 * _utility.scss
 *  - レスポンシブ集約 (TABLET/MOBILE/SMALL MOBILE)
 *  - グローバルアニメーション (data-reveal 等)
 *  - ヘルパー: page-lead / current-page-indicator
 *  - 元 common.css L757-1125 + L2401-2416 + L2596-2599
 *
 * 注: layout / object のあとに読み込まれる為、
 *     responsive (max-width media) は base ルールを上書き可能。
 * ============================================ */
/* ----- 1) HAMBURGER ANIM + BIG RESPONSIVE BLOCKS + GLOBAL ANIMATIONS  (L757-1125) ----- */
/* ==============================================
   HAMBURGER MENU ANIMATION
   ============================================== */
.c-hamburgerBtn span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==============================================
   TABLET (max 1199px)
   ============================================== */
@media (max-width: 1199px) {
  /* Header */
  .l-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 12px 16px;
  }
  .l-header__logo {
    padding-left: 0;
  }
  .l-header__logo-mark {
    width: 52px;
    height: 52px;
    padding: 8px 0;
  }
  .l-header__logo-mark .c-letter {
    font-size: 1.4rem;
  }
  .c-hamburgerBtn {
    width: 52px;
    height: 52px;
  }
  .c-hamburgerBtn span {
    width: 22px;
  }
  /* Hide desktop gnav, show as overlay when open */
  .l-gnav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 80vw);
    height: 100vh;
    height: 100dvh;
    background: #111;
    padding: 90px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
    justify-self: auto;
  }
  .l-gnav.is-open {
    transform: translateX(0);
  }
  .l-gnav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .l-gnav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .l-gnav__list a {
    display: block;
    padding: 16px 0;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }
  /* Overlay backdrop */
  body.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }
  .c-hamburgerBtn {
    position: relative;
    z-index: 100;
  }
  /* Topbar */
  .l-topbar__inner {
    padding: 0 0 0 16px;
  }
  .l-topbar__nav-list {
    gap: 0;
  }
  .l-topbar__nav-list li {
    padding: 0 10px;
  }
  .l-topbar__store {
    padding: 0 16px;
  }
  /* Hero */
  .l-hero {
    padding: 20px 16px 50px;
  }
  .l-hero__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
  }
  .l-hero__left {
    width: auto;
    margin-left: 0;
    padding: 20px 0 0 0;
  }
  .l-hero__title {
    font-size: 2.6rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .l-hero__subtitle {
    font-size: 1.5rem;
  }
  .c-heroCard {
    padding: 12px 14px;
  }
  .c-heroCard__title img {
    height: 2.2rem;
  }
  .c-heroCard__desc {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .l-hero__sns {
    margin-top: 22px;
  }
  /* Sponsors */
  .c-sponsors__main {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-sampleTag {
    font-size: 4rem;
  }
  /* Matches */
  .c-matches {
    padding: 24px 16px 20px;
  }
  .c-matches__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
  .c-match:nth-child(n+4) {
    display: none;
  }
  /* News / Blog */
  .c-sectionList {
    padding: 50px 16px;
  }
  .c-sectionList__title {
    font-size: 2.8rem;
  }
  .c-sectionList__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
  /* scroll variant: keep horizontal + 右突き抜け維持 */
  .c-sectionList--scroll .c-sectionList__items {
    display: flex;
    gap: 18px;
    padding-right: max(32px, 50vw - 50% + 16px);
  }
  .c-sectionList--scroll .c-post {
    flex: 0 0 260px;
    width: 260px;
  }
  .c-sectionList--scroll .c-sectionList__scroll {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
    padding: 0;
  }
  .c-sectionList--scroll .c-sectionList__scroll::after {
    width: 72px;
  }
  /* Be Professional */
  .c-professional {
    padding: 70px 16px 80px;
  }
  .c-professional__title {
    font-size: 3.6rem;
  }
  .c-professional__desc {
    font-size: 1.2rem;
    line-height: 1.9;
  }
  /* Contents */
  .c-contents {
    padding: 60px 16px 80px;
  }
  .c-contents__title {
    font-size: 3.4rem;
  }
  .c-contents__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
/* ==============================================
   MOBILE (max 767px)
   ============================================== */
@media (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
  /* Topbar - simplified */
  .l-topbar {
    font-size: 1rem;
  }
  .l-topbar__inner {
    height: auto;
    min-height: 30px;
    padding: 0 0 0 12px;
  }
  .l-topbar__desc {
    font-size: 1rem;
  }
  .l-topbar__nav-list {
    display: none;
  }
  .l-topbar__store {
    padding: 0 12px;
    font-size: 1rem;
  }
  /* Header */
  .l-header__inner {
    padding: 10px 12px;
  }
  .l-header__logo-mark {
    width: 44px;
    height: 44px;
    padding: 6px 0;
  }
  .l-header__logo-mark .c-letter {
    font-size: 1.2rem;
  }
  .c-hamburgerBtn {
    width: 44px;
    height: 44px;
  }
  .c-hamburgerBtn span {
    width: 18px;
  }
  /* Mobile gnav overlay - full width */
  .l-gnav {
    width: 100%;
    padding: 80px 24px 40px;
  }
  .l-gnav__list a {
    font-size: 1.5rem;
    padding: 14px 0;
  }
  /* Hero - stacked */
  .l-hero {
    padding: 20px 16px 40px;
  }
  .l-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .l-hero__left {
    order: 1;
    width: auto;
    margin-left: 0;
    padding: 10px 0 0;
  }
  .l-hero__right {
    order: 2;
  }
  .l-hero__title {
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .l-hero__subtitle {
    font-size: 1.1rem;
    padding: 4px 8px 4px 0;
  }
  .l-hero__cards {
    margin-top: 24px;
  }
  .c-heroCard {
    padding: 10px 12px;
  }
  .c-heroCard__title img {
    height: 2rem;
  }
  .c-heroCard__desc {
    font-size: 0.95rem;
    margin-top: 0.4rem;
  }
  .l-hero__image {
    aspect-ratio: 16/10;
  }
  .l-hero__image-caption {
    font-size: 0.95rem;
    padding: 8px 12px;
    line-height: 1.4;
  }
  /* Sponsors - mobile */
  .c-sponsors__main {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .c-sampleTag {
    font-size: 3.2rem;
  }
  .c-sponsors__sub {
    padding: 6px 4px 12px;
  }
  .c-sampleTag--sm {
    font-size: 1.8rem;
  }
  .c-sponsors .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .c-sponsors .slick-prev {
    left: 8px;
  }
  .c-sponsors .slick-next {
    right: 8px;
  }
  /* Matches - horizontal scroll */
  .c-matches {
    padding: 20px 0 16px;
    overflow-x: auto;
  }
  .c-matches__inner {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    padding: 0 16px;
    width: -moz-max-content;
    width: max-content;
  }
  .c-match {
    min-width: 200px;
  }
  /* News / Blog - single column */
  .c-sectionList {
    padding: 40px 16px;
  }
  .c-sectionList__head {
    margin-bottom: 18px;
  }
  .c-sectionList__title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c-sectionList__title {
    font-size: 2.4rem;
  }
  .c-sectionList__subtitle {
    font-size: 1rem;
  }
  .c-moreBtn {
    min-width: 100px;
    height: 32px;
    font-size: 1rem;
  }
  .c-sectionList__items {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* scroll variant: 横スクロール維持 + 右突き抜け (モバイル) */
  .c-sectionList--scroll .c-sectionList__items {
    display: flex;
    gap: 14px;
    grid-template-columns: none;
    padding-right: 24px;
  }
  .c-sectionList--scroll .c-post {
    flex: 0 0 220px;
    width: 220px;
    scroll-snap-align: start;
  }
  .c-sectionList--scroll .c-sectionList__scroll {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
    padding: 0;
  }
  .c-sectionList--scroll .c-sectionList__scroll::after {
    display: none;
  }
  .c-post__thumb {
    aspect-ratio: 16/9;
    font-size: 1.6rem;
  }
  .c-post__desc br {
    display: none;
  }
  /* Be Professional */
  .c-professional {
    padding: 50px 20px 60px;
  }
  .c-professional::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.4) 100%);
  }
  .c-professional__title {
    font-size: 2.8rem;
  }
  .c-professional__subtitle {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }
  .c-professional__desc {
    font-size: 1.15rem;
    line-height: 1.85;
  }
  .c-professional__desc br {
    display: none;
  }
  /* Contents - single column */
  .c-contents {
    padding: 50px 16px 70px;
  }
  .c-contents__head {
    margin-bottom: 28px;
  }
  .c-contents__title {
    font-size: 2.8rem;
  }
  .c-contents__subtitle {
    font-size: 1rem;
  }
  .c-contents__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .c-contentCard {
    aspect-ratio: 16/8;
  }
  .c-contentCard__label {
    font-size: 1.4rem;
    left: 16px;
    bottom: 12px;
  }
}
/* ==============================================
   SMALL MOBILE (max 400px)
   ============================================== */
@media (max-width: 400px) {
  .l-topbar__desc {
    font-size: 0.95rem;
  }
  .l-hero__title {
    font-size: 2.1rem;
  }
  .c-professional__title {
    font-size: 2.4rem;
  }
  .c-contents__title {
    font-size: 2.4rem;
  }
  .c-sectionList__title {
    font-size: 2rem;
  }
}
/* ==============================================
   GLOBAL ANIMATIONS
   ============================================== */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal=left] {
    transform: translateX(-28px);
  }
  [data-reveal=left].is-visible {
    transform: translateX(0);
  }
  [data-reveal=right] {
    transform: translateX(28px);
  }
  [data-reveal=right].is-visible {
    transform: translateX(0);
  }
  [data-reveal=scale] {
    transform: scale(0.96);
  }
  [data-reveal=scale].is-visible {
    transform: scale(1);
  }
  [data-reveal-delay="100"] {
    transition-delay: 0.1s;
  }
  [data-reveal-delay="200"] {
    transition-delay: 0.2s;
  }
  [data-reveal-delay="300"] {
    transition-delay: 0.3s;
  }
  [data-reveal-delay="400"] {
    transition-delay: 0.4s;
  }
  [data-reveal-delay="500"] {
    transition-delay: 0.5s;
  }
  [data-reveal-delay="600"] {
    transition-delay: 0.6s;
  }
  /* Page-wide fade-in on load */
  body {
    animation: pageFade 0.7s ease;
  }
  @keyframes pageFade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Ken Burns on hero image */
  .l-hero__image img {
    animation: kenBurns 18s ease-in-out infinite alternate;
  }
  @keyframes kenBurns {
    0% {
      transform: scale(1) translate(0, 0);
    }
    100% {
      transform: scale(1.08) translate(-1.5%, -1%);
    }
  }
  /* Sponsor sample tag glow pulse */
  .c-sampleTag {
    animation: sampleGlow 3.5s ease-in-out infinite;
  }
  @keyframes sampleGlow {
    0%, 100% {
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }
    50% {
      text-shadow: 0 2px 22px rgba(255, 255, 255, 0.22), 0 2px 10px rgba(0, 0, 0, 0.35);
    }
  }
  /* Hover lifts */
  .c-heroCard {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .c-heroCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-color: #111;
    opacity: 1;
  }
  .c-match {
    transition: transform 0.3s ease;
  }
  .c-match:hover {
    transform: translateY(-2px);
  }
  .c-post {
    transition: transform 0.3s ease;
  }
  .c-post:hover {
    transform: translateY(-3px);
  }
  .c-post__thumb {
    overflow: hidden;
    transition: transform 0.4s ease;
  }
  .c-post:hover .c-post__thumb {
    transform: scale(1.02);
  }
  .c-sponsors__main-item img {
    transition: transform 0.6s ease;
  }
  .c-sponsors__main-item:hover img {
    transform: scale(1.04);
  }
  .c-sponsors__sub-item img {
    transition: transform 0.5s ease;
  }
  .c-sponsors__sub-item:hover img {
    transform: scale(1.05);
  }
  /* Header gnav underline */
  .l-gnav__list a {
    position: relative;
  }
  /* More button subtle pulse on hover */
  /* Content card zoom */
  /* Topbar store button highlight */
}
@media (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .l-gnav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: #111;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .l-gnav__list a:hover {
    opacity: 1;
  }
  .l-gnav__list a:hover::after {
    transform: scaleX(1);
  }
  .l-gnav__list a.is-current::after {
    transform: scaleX(1);
    background: #111;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .c-moreBtn {
    transition: background 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
  }
  .c-moreBtn:hover {
    background: #333;
    transform: translateX(2px);
    letter-spacing: 0.08em;
    opacity: 1;
  }
  .c-moreBtn span {
    transition: transform 0.3s ease;
  }
  .c-moreBtn:hover span {
    transform: rotate(90deg);
  }
  .c-contentCard__label {
    transition: transform 0.35s ease;
  }
  .c-contentCard:hover .c-contentCard__label {
    transform: translateY(-3px);
  }
  .l-topbar__store {
    transition: background 0.25s ease, color 0.25s ease;
  }
  .l-topbar__store:hover {
    background: #111;
    color: #f5d211;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
/* ----- 2) PAGE LEAD  (L2401-2416) ----- */
/* ==============================================
   PAGE LEAD (大きめのリード文)
   ============================================== */
.l-page__lead {
  font-size: 1.35rem;
  line-height: 2;
  text-align: center;
  color: #333;
  letter-spacing: 0.04em;
  margin: 0 auto 56px;
  max-width: 780px;
}

@media (max-width: 767px) {
  .l-page__lead {
    font-size: 1.18rem;
    line-height: 1.9;
    margin-bottom: 36px;
  }
}
/* ----- 3) CURRENT PAGE INDICATOR  (L2596-2599) ----- */
/* ==============================================
   CURRENT PAGE INDICATOR
   ============================================== */
.l-gnav__list a.is-current {
  color: #000;
  font-weight: 700;
}/*# sourceMappingURL=common.css.map */