@charset "UTF-8";

/* ============================================
   ONE MINUTES - Main Stylesheet
   黒基調 / ゴールドアクセント / 重厚感・高級感
   ============================================ */

/* ===== Variables ===== */
:root {
    --color-bg: #000000;
    --color-bg-2: #0a0a0a;
    --color-bg-3: #141414;
    --color-bg-card: #161616;
    --color-line: #2a2a2a;
    --color-line-2: #1f1f1f;
    --color-text: #ffffff;
    --color-text-sub: #ffffff;
    --color-text-dim: #d4d4d4;
    --color-gold: #c9a96a;
    --color-gold-light: #e6c98a;
    --color-gold-dark: #8c7340;
    --color-gold-grad: linear-gradient(135deg, #b88a3e 0%, #e6c98a 50%, #b88a3e 100%);

    --font-en: 'Cinzel', 'Times New Roman', serif;
    --font-jp: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
    --font-jp-sans: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;

    --header-h: 80px;
    --header-h-sp: 64px;
    --container: 1200px;
    --container-wide: 1400px;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-jp);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.8;
    letter-spacing: .04em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--ease), opacity .3s var(--ease);
}

ul {
    list-style: none;
}

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

/* ===== Background Texture ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(201, 169, 106, .04), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(201, 169, 106, .03), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   Splash / Opening Animation
   ============================================ */
body.is-loading {
    overflow: hidden;
}

.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    cursor: pointer;
}

.splash.is-hidden {
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear .4s;
}

/* 上下2枚のパネル */
.splash__panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50vh;
    background: #000;
    overflow: hidden;
    transition: transform 1.3s cubic-bezier(.86, 0, .07, 1);
    box-shadow: 0 0 60px rgba(0, 0, 0, .8);
}

.splash__panel--top {
    top: 0;
    border-bottom: 1px solid rgba(201, 169, 106, .35);
}

.splash__panel--bottom {
    bottom: 0;
    border-top: 1px solid rgba(201, 169, 106, .35);
}

/* スプリット（割れる）動作 */
.splash.is-split .splash__panel--top {
    transform: translateY(-100%);
}

.splash.is-split .splash__panel--bottom {
    transform: translateY(100%);
}

/* 中央の光るライン（割れる瞬間に光る） */
.splash__line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, var(--color-gold), #fff, transparent);
    box-shadow: 0 0 40px rgba(255, 255, 255, .9), 0 0 80px rgba(201, 169, 106, .6);
    opacity: 0;
    z-index: 1;
}

.splash.is-split .splash__line {
    animation: splashLineFlash 1.3s cubic-bezier(.86, 0, .07, 1) forwards;
}

@keyframes splashLineFlash {
    0%   { width: 0; opacity: 0; }
    30%  { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

/* ロゴ（各パネルに同じものを配置し、中央で割れて見える） */
.splash__logo {
    position: absolute;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: splashFadeIn 1.2s var(--ease) .3s forwards;
}

/* 上パネル: ロゴ上端をパネル上端に → ロゴ中央が画面中央(=パネル下端) → 上半分が見える */
.splash__panel--top .splash__logo {
    top: 0;
}

/* 下パネル: ロゴ下端をパネル下端に → ロゴ中央が画面中央(=パネル上端) → 下半分が見える */
.splash__panel--bottom .splash__logo {
    bottom: 0;
}

.splash.is-split .splash__logo {
    animation: splashFadeOut .5s ease forwards;
}

@keyframes splashFadeIn {
    0%   { opacity: 0; transform: translateX(-50%) scale(.94); }
    100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes splashFadeOut {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}

/* 円のロゴマーク */
.splash__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    width: clamp(220px, 32vw, 380px);
    height: clamp(220px, 32vw, 380px);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 255, 255, .15), inset 0 0 40px rgba(255, 255, 255, .05);
    z-index: 1;
}

.splash__title {
    position: relative;
    z-index: 2;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: clamp(36px, 7vw, 88px);
    letter-spacing: .12em;
    color: #ffffff;
    background: #000;
    padding: .25em .4em;
    text-shadow: 0 0 30px rgba(255, 255, 255, .25);
}

.splash__tag {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    font-family: var(--font-jp);
    font-size: clamp(13px, 1.5vw, 18px);
    letter-spacing: .4em;
    color: #ffffff;
    padding-left: .4em;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(40px) scale(.96);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    will-change: opacity, transform;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ============================================
   Common Components
   ============================================ */

/* --- Button --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    color: #ffffff;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-gold-grad);
    transform: translateY(101%);
    transition: transform .4s var(--ease);
    z-index: -1;
}

.btn:hover {
    color: #000;
    border-color: var(--color-gold-light);
}

.btn:hover::before {
    transform: translateY(0);
}

.btn--gold {
    background: var(--color-gold-grad);
    color: #ffffff;
    border-color: var(--color-gold);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}

.btn--gold::before {
    background: #ffffff;
}

.btn--gold:hover {
    color: #000;
    text-shadow: none;
}

.btn--outline {
    background: transparent;
}

.btn--large {
    padding: 18px 44px;
    font-size: 15px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 100;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .4s var(--ease), height .3s var(--ease);
    border-bottom: 1px solid transparent;
}

.header.is-scrolled {
    background: rgba(0, 0, 0, .85);
    border-bottom-color: var(--color-line-2);
}

.header__inner {
    max-width: var(--container-wide);
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .2em;
    color: #ffffff;
}

.header__logo a {
    display: inline-block;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
}

.nav-list li {
    flex-shrink: 0;
}

.nav-list a {
    font-size: 13px;
    letter-spacing: .15em;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width .3s var(--ease);
}

.nav-list a:hover {
    color: #ffffff;
    opacity: .85;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 10px 22px;
    font-size: 12px;
}

.nav-sns {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-text-sub);
}

.nav-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    transition: all .3s var(--ease);
}

.nav-sns a:hover {
    color: #ffffff;
    border-color: var(--color-gold);
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}

.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.is-open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 106, .18), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 106, .12), transparent 50%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #000 100%);
    z-index: -2;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 106, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 106, .03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, #000 100%);
    z-index: -1;
}

.hero__inner {
    position: relative;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 1100px;
    width: 100%;
}

.hero__sub {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: .5em;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) .2s forwards;
}

.hero__title {
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) .5s forwards;
}

.hero__title-main {
    display: inline-block;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: clamp(28px, 5.5vw, 64px);
    line-height: 1;
    letter-spacing: .12em;
    color: #ffffff;
    text-shadow: 0 0 60px rgba(255, 255, 255, .3), 0 0 30px rgba(201, 169, 106, .2);
}

.hero__catch {
    font-family: var(--font-jp);
    font-size: clamp(16px, 2.4vw, 24px);
    letter-spacing: .3em;
    color: var(--color-text);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) .8s forwards;
}

.hero__desc {
    font-family: var(--font-jp);
    font-size: clamp(13px, 1.4vw, 16px);
    line-height: 2;
    letter-spacing: .12em;
    color: #ffffff;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 1s forwards;
}

.hero__desc-strong {
    display: inline-block;
    font-weight: 700;
    letter-spacing: .18em;
    padding-top: 6px;
    background: linear-gradient(transparent 70%, rgba(201, 169, 106, .35) 70%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-left: 4px;
    padding-right: 4px;
}

.hero__meta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 18px 36px;
    margin-bottom: 56px;
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 1.1s forwards;
}

.hero__meta li {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    position: relative;
}

.hero__meta li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: var(--color-gold);
    opacity: .5;
}

.hero__meta-label {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: .35em;
    color: #ffffff;
    opacity: .7;
    margin-bottom: 6px;
}

.hero__meta-value {
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #ffffff;
}

.hero__meta-value small {
    font-size: 11px;
    margin-left: 4px;
    letter-spacing: .2em;
    opacity: .8;
}

.sp-only {
    display: none;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 1.3s forwards;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--color-text-sub);
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-gold), transparent);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-gold-light));
    animation: scrollDown 2.4s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { transform: translateY(0); }
    100% { transform: translateY(120px); }
}

@keyframes fadeUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   About Section (大会概要)
   ============================================ */
.section--about {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line-2);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section--about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201, 169, 106, .08), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 106, .06), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* 基本情報グリッド */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-line);
    border: 1px solid var(--color-line);
    margin-bottom: 80px;
    position: relative;
}

/* 4隅にゴールド装飾 */
.about-grid::before,
.about-grid::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-gold);
    z-index: 2;
    pointer-events: none;
}

.about-grid::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.about-grid::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.about-item {
    background: var(--color-bg-card);
    padding: 28px 24px;
    margin: 0;
    text-align: center;
    transition: background .3s var(--ease);
}

.about-item:hover {
    background: #1c1c1c;
}

.about-item dt {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3em;
    color: var(--color-gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
}

.about-item dd {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 22px);
    letter-spacing: .08em;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.about-item dd small {
    display: block;
    margin-top: 6px;
    font-family: var(--font-jp);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    color: #ffffff;
    opacity: .7;
}

.about-item--tbd dd {
    color: #ffffff;
    opacity: .55;
    font-size: 16px;
}

.about-item--tbd dd small {
    color: var(--color-gold);
    opacity: .8;
}

/* 3つの特徴 */
.about-features {
    margin-bottom: 60px;
}

.about-features__label {
    text-align: center;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .25em;
    color: #ffffff;
    margin-bottom: 36px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.about-features__label::before,
.about-features__label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

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

.about-feature {
    background: var(--color-bg-card);
    border: 1px solid var(--color-line);
    padding: 38px 28px;
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}

.about-feature:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.about-feature:hover::before {
    transform: scaleX(1);
}

.about-feature__no {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 36px;
    letter-spacing: .1em;
    color: var(--color-gold);
    margin-bottom: 14px;
    opacity: .85;
}

.about-feature__title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .12em;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-feature__text {
    font-size: 13px;
    line-height: 1.9;
    color: #ffffff;
    opacity: .85;
}

/* ============================================
   Rules (大会ルール - 2ステージ表示)
   ============================================ */
.rules {
    text-align: center;
    margin-bottom: 70px;
}

.rules__label {
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: .5em;
    color: var(--color-gold);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.rules__label::before,
.rules__label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.rules__title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 26px);
    letter-spacing: .2em;
    color: #ffffff;
    margin-bottom: 36px;
}

/* === ステージカード === */
.rules-stage {
    background: var(--color-bg-card);
    border: 1px solid var(--color-line);
    text-align: left;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.rules-stage::before,
.rules-stage::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
}

.rules-stage::before {
    top: -1px; left: -1px;
    border-right: none;
    border-bottom: none;
}

.rules-stage::after {
    bottom: -1px; right: -1px;
    border-left: none;
    border-top: none;
}

/* Head (no + name + count) */
.rules-stage__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 36px;
    border-bottom: 1px solid var(--color-line);
    background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
}

.rules-stage__no-wrap {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.rules-stage__no {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: clamp(38px, 4.5vw, 56px);
    letter-spacing: .04em;
    color: var(--color-gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(201, 169, 106, .35);
}

.rules-stage__name {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 22px);
    letter-spacing: .15em;
    color: #ffffff;
}

.rules-stage__count {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.rules-stage__count-label {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: .3em;
    color: #ffffff;
    opacity: .7;
}

.rules-stage__count-value {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--color-gold);
    letter-spacing: .05em;
}

/* Body */
.rules-stage__body {
    padding: 32px 36px 40px;
}

.rules-stage__main {
    text-align: center;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 24px);
    letter-spacing: .15em;
    color: #ffffff;
    margin-bottom: 26px;
}

.rules-stage__main span {
    color: var(--color-gold);
    margin: 0 .3em;
}

/* 評価方法 */
.rules-eval {
    background: #0a0a0a;
    border: 1px solid var(--color-line);
    padding: 18px 24px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.rules-eval__title {
    display: inline-block;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .25em;
    color: var(--color-gold);
    background: #0a0a0a;
    padding: 0 12px;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.rules-eval__text {
    font-size: 14px;
    letter-spacing: .1em;
    color: #ffffff;
    margin: 0;
}

.rules-eval__text span {
    color: var(--color-gold);
    margin: 0 .4em;
    font-weight: 700;
}

/* 「合計10名がFinalへ進出」 */
.rules-advance__heading {
    text-align: center;
    font-family: var(--font-jp);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .15em;
    color: #ffffff;
    margin: 0 0 22px;
    padding: 12px 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.rules-advance__heading strong {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 22px;
    color: var(--color-gold);
    margin: 0 .15em;
    text-shadow: 0 0 12px rgba(201, 169, 106, .4);
}

/* 4つの進出方法 */
.rules-advance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rules-advance {
    background: #0a0a0a;
    border: 1px solid var(--color-line);
    padding: 18px 16px;
    text-align: center;
    position: relative;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.rules-advance:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.rules-advance__no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.rules-advance__title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .08em;
    color: #ffffff;
    margin-bottom: 8px;
}

.rules-advance__count {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 22px;
    color: var(--color-gold);
    margin: 0;
}

.rules-advance__sub {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.5;
    color: #ffffff;
    opacity: .65;
}

/* 矢印 */
.rules-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    margin: 18px 0;
    animation: arrowFloat 2s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* Final ステージ */
.rules-stage--final .rules-stage__head {
    background: linear-gradient(135deg, #1f1a10, #0e0a04);
    border-bottom-color: var(--color-gold-dark);
}

.rules-final-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.rules-final-item {
    background: #0a0a0a;
    border: 1px solid var(--color-line);
    padding: 22px 18px;
    text-align: center;
}

.rules-final-item__title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .12em;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.rules-final-item__text {
    font-size: 13px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

/* 賞金パネル */
.rules-prize {
    text-align: center;
    padding: 36px 24px;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 106, .15), transparent 70%),
        linear-gradient(135deg, #1f1a10, #0a0a0a);
    border: 1px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.rules-prize::before,
.rules-prize::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--color-gold);
}

.rules-prize::before {
    top: 6px; left: 6px;
    border-right: none;
    border-bottom: none;
}

.rules-prize::after {
    bottom: 6px; right: 6px;
    border-left: none;
    border-top: none;
}

.rules-prize__label {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .5em;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.rules-prize__name {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .25em;
    color: #ffffff;
    margin-bottom: 14px;
}

.rules-prize__amount {
    margin: 0;
    line-height: 1;
}

.rules-prize__num {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: clamp(56px, 9vw, 96px);
    background: linear-gradient(180deg, #f8e6b8 0%, #e6c98a 50%, #b88a3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(201, 169, 106, .4);
    letter-spacing: .02em;
}

.rules-prize__unit {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--color-gold);
    margin-left: .15em;
    letter-spacing: .1em;
}

/* タブレット */
@media (max-width: 1024px) {
    .rules-stage__head {
        padding: 20px 24px;
    }
    .rules-stage__body {
        padding: 28px 24px 32px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .rules {
        margin-bottom: 50px;
    }
    .rules__label {
        font-size: 11px;
        letter-spacing: .35em;
    }
    .rules__label::before,
    .rules__label::after {
        width: 24px;
    }
    .rules__title {
        font-size: 18px;
        letter-spacing: .15em;
        margin-bottom: 26px;
    }
    .rules-stage__head {
        padding: 18px 18px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .rules-stage__no-wrap {
        gap: 14px;
    }
    .rules-stage__body {
        padding: 22px 18px 28px;
    }
    .rules-stage__main {
        font-size: 15px;
        letter-spacing: .1em;
        margin-bottom: 20px;
    }
    .rules-eval {
        padding: 14px 14px;
        margin-bottom: 22px;
    }
    .rules-eval__text {
        font-size: 12px;
    }
    .rules-advance__heading {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .rules-advance__heading strong {
        font-size: 18px;
    }
    .rules-advance-grid {
        gap: 10px;
    }
    .rules-advance {
        padding: 14px 8px;
    }
    .rules-advance__title {
        font-size: 12px;
    }
    .rules-advance__count {
        font-size: 18px;
    }
    .rules-advance__sub {
        font-size: 10px;
    }
    .rules-final-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .rules-prize {
        padding: 28px 18px;
    }
    .rules-prize__name {
        font-size: 14px;
        letter-spacing: .2em;
    }
    .rules-stage::before,
    .rules-stage::after {
        width: 20px;
        height: 20px;
    }
}

/* CTA */
.about-cta {
    text-align: center;
    padding-top: 20px;
}

.about-cta__note {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: .15em;
    color: #ffffff;
    opacity: .7;
}

/* タブレット */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-features__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .about-feature {
        padding: 30px 18px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 50px;
    }
    .about-item {
        padding: 22px 14px;
    }
    .about-item dt {
        font-size: 10px;
        letter-spacing: .2em;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    .about-item dd {
        font-size: 16px;
    }
    .about-item dd small {
        font-size: 10px;
    }
    .about-features__label {
        font-size: 16px;
        letter-spacing: .2em;
    }
    .about-features__label::before,
    .about-features__label::after {
        width: 24px;
    }
    .about-features__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .about-feature {
        padding: 28px 22px;
    }
    .about-feature__no {
        font-size: 28px;
    }
    .about-feature__title {
        font-size: 16px;
    }
    .about-feature__text {
        font-size: 12px;
    }
    /* 大会ルール画像 (SP) */
    .about-rules {
        margin-bottom: 40px;
    }
    .about-rules__label {
        font-size: 11px;
        letter-spacing: .35em;
    }
    .about-rules__label::before,
    .about-rules__label::after {
        width: 24px;
    }
    .about-rules__title {
        font-size: 18px;
        letter-spacing: .15em;
        margin-bottom: 20px;
    }
    .about-rules__corners::before,
    .about-rules__corners::after,
    .about-rules__image-wrap::before,
    .about-rules__image-wrap::after {
        width: 16px;
        height: 16px;
        border-width: 1px;
    }
    .about-rules__hint {
        font-size: 10px;
    }
}

/* ============================================
   Champion Section (前回大会グランプリ)
   M-1グランプリ風のドラマチック演出
   ============================================ */
.champion {
    position: relative;
    padding: 140px 0 160px;
    overflow: hidden;
    isolation: isolate;
    background: #000;
    border-top: 1px solid var(--color-line-2);
    border-bottom: 1px solid var(--color-line-2);
}

/* スポットライト風の背景 */
.champion__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201, 169, 106, .18), transparent 70%),
        radial-gradient(ellipse 60% 40% at 30% 80%, rgba(201, 169, 106, .08), transparent 70%),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(201, 169, 106, .08), transparent 70%),
        linear-gradient(180deg, #050505, #000 50%, #050505);
}

.champion__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 106, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 106, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.champion__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.champion__head {
    text-align: center;
    margin-bottom: 60px;
}

.champion__crown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 18px;
    filter: drop-shadow(0 0 20px rgba(201, 169, 106, .6));
    animation: crownGlow 2.5s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(201, 169, 106, .6)); }
    50%      { filter: drop-shadow(0 0 35px rgba(230, 201, 138, .9)); }
}

.champion__label {
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: .55em;
    color: var(--color-gold);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.champion__label::before,
.champion__label::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--color-gold);
}

.champion__title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 26px);
    letter-spacing: .25em;
    color: #ffffff;
    margin-bottom: 28px;
    opacity: .85;
}

.champion__name-wrap {
    margin-bottom: 24px;
}

.champion__name-jp {
    font-family: var(--font-jp);
    font-weight: 900;
    font-size: clamp(36px, 6.5vw, 72px);
    letter-spacing: .12em;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(201, 169, 106, .5), 0 0 60px rgba(201, 169, 106, .25);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #e6c98a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.champion__name-en {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: clamp(11px, 1.2vw, 14px);
    letter-spacing: .4em;
    color: var(--color-gold);
    opacity: .85;
}

.champion__lead {
    font-family: var(--font-jp);
    font-size: clamp(13px, 1.4vw, 17px);
    letter-spacing: .2em;
    color: #ffffff;
    font-weight: 500;
}

/* 動画エリア */
.champion__video-wrap {
    position: relative;
}

.champion__video {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--color-gold);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .6),
        0 0 30px rgba(201, 169, 106, .3),
        0 25px 80px rgba(0, 0, 0, .8),
        inset 0 0 80px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.champion__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* 動画の4隅にデコレーションフレーム */
.champion__video-frame {
    position: absolute;
    inset: -1px;
    pointer-events: none;
    z-index: 2;
}

.champion__video-frame::before,
.champion__video-frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-gold);
}

.champion__video-frame::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

.champion__video-frame::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}

.champion__video-wrap::before,
.champion__video-wrap::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-gold);
    z-index: 2;
    pointer-events: none;
}

.champion__video-wrap::before {
    top: -8px;
    right: -8px;
    border-left: none;
    border-bottom: none;
}

.champion__video-wrap::after {
    bottom: -8px;
    left: -8px;
    border-right: none;
    border-top: none;
}

.champion__hint {
    margin-top: 18px;
    text-align: center;
    font-size: 12px;
    letter-spacing: .15em;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.champion__hint svg {
    color: var(--color-gold);
}

/* タブレット */
@media (max-width: 1024px) {
    .champion {
        padding: 110px 0 130px;
    }

    .champion__inner {
        padding: 0 24px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .champion {
        padding: 80px 0 90px;
    }

    .champion__inner {
        padding: 0 18px;
    }

    .champion__head {
        margin-bottom: 36px;
    }

    .champion__label {
        font-size: 10px;
        letter-spacing: .4em;
    }

    .champion__label::before,
    .champion__label::after {
        width: 22px;
    }

    .champion__title {
        font-size: 16px;
        letter-spacing: .2em;
        margin-bottom: 20px;
    }

    .champion__name-wrap {
        margin-bottom: 18px;
    }

    .champion__name-en {
        font-size: 10px;
        letter-spacing: .3em;
    }

    .champion__lead {
        font-size: 12px;
    }

    .champion__video-frame::before,
    .champion__video-frame::after,
    .champion__video-wrap::before,
    .champion__video-wrap::after {
        width: 18px;
        height: 18px;
        border-width: 1px;
    }

    .champion__hint {
        font-size: 10px;
        margin-top: 14px;
    }
}

/* ============================================
   Common Section
   ============================================ */
.section {
    padding: 140px 0;
    position: relative;
}

.section--applicants {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line-2);
}

.section--judges {
    background: var(--color-bg-2);
    border-top: 1px solid var(--color-line-2);
}

.section--mentors {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line-2);
}

.section--organizer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line-2);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* セクション背景: 微かな放射光 */
.section--organizer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 106, .08), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 106, .06), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.section--organizer > .section__inner {
    position: relative;
    z-index: 1;
}

/* 主宰者カード本体: 2カラム */
.organizer {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: stretch;
    background: var(--color-bg-card);
    border: 1px solid var(--color-line);
    padding: 50px;
    position: relative;
}

/* ゴールドの装飾コーナー */
.organizer::before,
.organizer::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gold);
}

.organizer::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.organizer::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* 写真エリア */
.organizer__photo {
    position: relative;
    aspect-ratio: 3 / 4;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 106, .15), transparent 70%),
        linear-gradient(135deg, #1c1c1c, #050505);
    border: 1px solid var(--color-line);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer__photo::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201, 169, 106, .25);
    pointer-events: none;
}

.organizer__photo-label {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .35em;
    color: #ffffff;
    opacity: .4;
}

/* 情報エリア */
.organizer__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.organizer__role {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .35em;
    color: #ffffff;
    opacity: .75;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.organizer__role::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--color-gold);
}

.organizer__name {
    margin-bottom: 28px;
    line-height: 1;
}

.organizer__name-jp {
    display: block;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: .12em;
    color: #ffffff;
    margin-bottom: 8px;
}

.organizer__name-en {
    display: block;
    font-family: var(--font-en);
    font-size: clamp(11px, 1.1vw, 13px);
    letter-spacing: .35em;
    color: #ffffff;
    opacity: .65;
}

.organizer__catch {
    font-family: var(--font-jp);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
    letter-spacing: .15em;
    color: #ffffff;
    padding: 14px 0 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-line);
    position: relative;
}

.organizer__catch::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.organizer__bio {
    margin-bottom: 28px;
}

.organizer__bio p {
    font-size: 14px;
    line-height: 1.95;
    letter-spacing: .06em;
    color: #ffffff;
    margin-bottom: 14px;
}

.organizer__bio p:last-child {
    margin-bottom: 0;
}

.organizer__details {
    margin-bottom: 28px;
    border-top: 1px solid var(--color-line);
}

.organizer__details-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
}

.organizer__details-row dt {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: .25em;
    color: #ffffff;
    opacity: .7;
    padding-top: 3px;
}

.organizer__details-row dd {
    font-size: 13px;
    color: #ffffff;
}

.organizer__sns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.organizer__sns a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--color-line);
    color: #ffffff;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: .2em;
    transition: all .3s var(--ease);
}

.organizer__sns a:hover {
    border-color: var(--color-gold);
    color: #ffffff;
    transform: translateY(-2px);
}

/* タブレット */
@media (max-width: 1024px) {
    .organizer {
        grid-template-columns: 280px 1fr;
        gap: 36px;
        padding: 36px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .organizer {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 22px;
    }

    .organizer__photo {
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
    }

    .organizer__role {
        font-size: 10px;
        letter-spacing: .25em;
    }

    .organizer__role::before {
        width: 18px;
    }

    .organizer__catch {
        font-size: 13px;
        padding: 10px 0 14px;
        margin-bottom: 18px;
    }

    .organizer__bio p {
        font-size: 13px;
    }

    .organizer__details-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 0;
    }

    .organizer__details-row dt {
        font-size: 10px;
    }

    .organizer__details-row dd {
        font-size: 12px;
    }

    .organizer__sns a {
        padding: 8px 13px;
        font-size: 10px;
    }

    .organizer::before,
    .organizer::after {
        width: 24px;
        height: 24px;
    }
}

.section--access {
    background: var(--color-bg-2);
    border-top: 1px solid var(--color-line-2);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* --- 会場写真を透かし背景として表示 --- */
.section--access .section__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.section--access .section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .28;
    filter: grayscale(.85) contrast(1.15) brightness(.55) sepia(.15);
    transform: scale(1.05);
    transition: transform 1.2s var(--ease);
}

.section--access:hover .section__bg img {
    transform: scale(1.08);
}

.section--access .section__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .85) 75%),
        linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .4) 70%, rgba(0, 0, 0, .9) 100%);
    pointer-events: none;
}

/* かすかなゴールドのビネット */
.section--access::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 169, 106, .08), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(201, 169, 106, .06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* セクション内のコンテンツは前面に */
.section--access > .section__inner {
    position: relative;
    z-index: 1;
}

/* 写真のクレジット表記 */
.section__credit {
    position: absolute;
    right: 16px;
    bottom: 12px;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .45);
    z-index: 2;
    pointer-events: none;
}

/* インフォカードを少し透過させて写真と馴染ませる */
.section--access .access__info {
    background: rgba(15, 15, 15, .82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.section__head {
    text-align: center;
    margin-bottom: 80px;
}

.section__label {
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: .5em;
    color: #ffffff;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.section__label::before,
.section__label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: .6;
}

.section__title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: .15em;
    color: var(--color-text);
    margin-bottom: 20px;
}

.section__lead {
    font-size: 15px;
    letter-spacing: .15em;
    color: var(--color-text-sub);
}

/* ============================================
   Pager (志願者の5人ごとのページ送り)
   ============================================ */
.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    padding: 18px 24px;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    position: relative;
}

.pager::before,
.pager::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-gold);
}

.pager::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.pager::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.pager__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 78px;
    padding: 10px 14px;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    color: #ffffff;
    background: transparent;
    border: 1px solid var(--color-line);
    cursor: pointer;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}

.pager__btn span {
    margin: 0 2px;
    color: var(--color-gold);
    opacity: .7;
}

.pager__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-gold-grad);
    transform: translateY(101%);
    transition: transform .4s var(--ease);
    z-index: -1;
}

.pager__btn:hover {
    border-color: var(--color-gold);
    color: #ffffff;
}

.pager__btn:hover::before {
    transform: translateY(0);
}

.pager__btn:hover span {
    color: #ffffff;
    opacity: 1;
}

.pager__btn.is-active {
    background: var(--color-gold-grad);
    border-color: var(--color-gold);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
    box-shadow: 0 0 20px rgba(201, 169, 106, .35);
}

.pager__btn.is-active span {
    color: #ffffff;
    opacity: 1;
}

/* ページ切り替え時のフェードイン */
.pager-fade {
    animation: pagerFade .5s var(--ease);
}

@keyframes pagerFade {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* タブレット */
@media (max-width: 1024px) {
    .pager {
        gap: 8px;
        padding: 14px 16px;
        margin-bottom: 36px;
    }
    .pager__btn {
        min-width: 70px;
        padding: 9px 10px;
        font-size: 11px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .pager {
        gap: 6px;
        padding: 12px 10px;
        margin-bottom: 30px;
    }
    .pager__btn {
        min-width: 0;
        flex: 1 1 calc(25% - 6px);
        padding: 8px 4px;
        font-size: 10px;
        letter-spacing: .08em;
    }
    .pager__btn span {
        margin: 0 1px;
    }
}

@media (max-width: 380px) {
    .pager__btn {
        flex: 1 1 calc(33.333% - 6px);
        font-size: 9px;
    }
}

/* ============================================
   Applicants Grid
   ============================================ */
.applicants-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.applicant-card {
    display: block;
    background: var(--color-bg-card);
    border: 1px solid var(--color-line);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.applicant-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: var(--color-gold-grad) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}

.applicant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .6), 0 0 30px rgba(201, 169, 106, .15);
}

.applicant-card:hover::before {
    opacity: 1;
}

.applicant-card__img {
    aspect-ratio: 3 / 4;
    background: #0a0a0a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 背景画像レイヤー（実際の写真や代替グラデを表示。ホバーで拡大） */
.applicant-card__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 106, .12), transparent 70%),
        linear-gradient(135deg, #1a1a1a, #0a0a0a);
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1), filter .4s ease;
    z-index: 0;
}

/* 暗い下部グラデ（テキスト可読性のため） */
.applicant-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .85));
    z-index: 1;
    pointer-events: none;
    transition: opacity .4s ease;
}

/* 写真画像（img）スタイル ＋ 挑戦者感の演出（白背景対応） */
.applicant-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1), filter .4s ease;
    /* 白背景にちょうど良いコントラスト */
    filter: contrast(1.08) saturate(.95);
}

/* 写真エリアの背景は白（写真と馴染ませる） */
.applicant-card__img {
    background: #ffffff;
}

/* 名前部分のオーバーレイは控えめに（白背景に黒グラデは強すぎ） */
.applicant-card__img::before {
    background: transparent !important;
}

/* dark overlay は写真の上、テキストの下 */
.applicant-card__img::after {
    z-index: 2;
}

/* ホバー時: 写真がライトに照らされて輝く（挑戦者を主役に） */
.applicant-card:hover .applicant-card__img::before,
.applicant-card:hover .applicant-card__img img {
    transform: scale(1.12);
    filter: contrast(1.2) brightness(1.05) saturate(1) drop-shadow(0 0 12px rgba(201, 169, 106, .4));
}

.applicant-card:hover .applicant-card__img::after {
    opacity: .7;
}

.applicant-card__no {
    position: relative;
    z-index: 3;
}

.applicant-card__no {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: .15em;
    color: #ffffff;
    opacity: .6;
    position: relative;
    z-index: 1;
}

.applicant-card__body {
    padding: 18px 16px;
    text-align: center;
    border-top: 1px solid var(--color-line);
}

.applicant-card__name {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .1em;
    margin-bottom: 6px;
    color: var(--color-text);
}

.applicant-card__field {
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--color-text-dim);
}

/* ============================================
   Coming Soon （特別審査員：近日発表）
   ============================================ */
.coming-soon {
    max-width: 720px;
    margin: 0 auto;
    padding: 70px 40px;
    text-align: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-line);
    position: relative;
    overflow: hidden;
}

/* 4隅にゴールド装飾コーナー */
.coming-soon::before,
.coming-soon::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gold);
}

.coming-soon::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.coming-soon::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* 微かなゴールド放射 */
.coming-soon__inner {
    position: relative;
}

.coming-soon__inner::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 106, .12), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* 上下のゴールドライン */
.coming-soon__deco {
    width: 80px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: .8;
}

.coming-soon__label {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5em;
    color: #ffffff;
    margin: 28px 0 24px;
    animation: comingPulse 2.5s ease-in-out infinite;
}

@keyframes comingPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .6; }
}

.coming-soon__title {
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: .35em;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #e6c98a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(201, 169, 106, .3);
}

.coming-soon__sub {
    font-family: var(--font-jp);
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: .15em;
    color: #ffffff;
    opacity: .8;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .coming-soon {
        padding: 50px 24px;
    }
    .coming-soon__label {
        font-size: 11px;
        letter-spacing: .4em;
        margin: 20px 0 18px;
    }
    .coming-soon__title {
        font-size: 24px;
        letter-spacing: .25em;
    }
    .coming-soon__sub {
        font-size: 12px;
    }
    .coming-soon__deco {
        width: 60px;
    }
    .coming-soon::before,
    .coming-soon::after {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   People Grid (Judges / Mentors)
   ============================================ */
.people-grid {
    display: grid;
    gap: 40px;
}

.people-grid--judges {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* === Coming Soon カード === */
.person-card--coming {
    position: relative;
    overflow: hidden;
    transition: all .5s var(--ease);
}

.person-card--coming::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 106, 0) 0%, rgba(201, 169, 106, .08) 50%, rgba(201, 169, 106, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -100% 0; }
}

.person-card__img--coming {
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 106, .15), transparent 70%),
        linear-gradient(135deg, #1c1c1c, #050505) !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-card__img--coming::after {
    content: '' !important;
    display: none !important;
}

.person-card__coming-mark {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: clamp(60px, 8vw, 100px);
    color: var(--color-gold);
    opacity: .35;
    text-shadow: 0 0 30px rgba(201, 169, 106, .4);
    animation: comingPulse 2.5s ease-in-out infinite;
}

/* 人型シルエット */
.person-card__silhouette {
    width: 55%;
    height: auto;
    fill: var(--color-gold);
    opacity: .45;
    filter: drop-shadow(0 0 20px rgba(201, 169, 106, .35));
    animation: comingPulse 2.5s ease-in-out infinite;
}

.person-card--coming .person-card__name {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: .25em;
    color: #ffffff;
    opacity: .85;
    animation: comingPulse 2.5s ease-in-out infinite;
}

.person-card--coming .person-card__role {
    font-family: var(--font-jp);
    color: var(--color-gold);
    opacity: .7;
    margin-bottom: 0;
}

@keyframes comingPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .5; }
}

.people-grid--mentors {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.people-grid--supporters {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.section--supporters {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line-2);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section--supporters::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(201, 169, 106, .07), transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(201, 169, 106, .05), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.person-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-line);
    overflow: hidden;
    transition: all .4s var(--ease);
}

.person-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-4px);
}

.person-card__img {
    aspect-ratio: 1 / 1.2;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 106, .12), transparent 70%),
        linear-gradient(135deg, #1c1c1c, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.person-card__img::after {
    content: 'PHOTO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .3em;
    color: var(--color-text-dim);
    opacity: .5;
}

/* 写真画像が入る場合はPHOTOラベル非表示 */
.person-card__img:not(.no-photo):has(img)::after {
    display: none;
}

.person-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform .6s var(--ease), filter .4s ease;
}

.person-card:hover .person-card__img img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

.person-card__body {
    padding: 24px 20px;
    border-top: 1px solid var(--color-line);
}

.person-card__name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--color-text);
    margin-bottom: 6px;
}

.person-card__role {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .15em;
    color: #ffffff;
    margin-bottom: 14px;
}

.person-card__bio {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text-sub);
}

.person-card--sm .person-card__body {
    padding: 16px 14px;
}

.person-card--sm .person-card__name {
    font-size: 14px;
}

.person-card--sm .person-card__role {
    font-size: 11px;
    margin-bottom: 0;
}

/* ============================================
   Access Section
   ============================================ */
.access {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.access__info {
    background: var(--color-bg-card);
    padding: 50px 44px;
    border: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
}

.access__list {
    flex: 1;
    margin-bottom: 36px;
}

.access__row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-line-2);
}

.access__row:last-child {
    border-bottom: none;
}

.access__row dt {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .2em;
    color: #ffffff;
    padding-top: 4px;
}

.access__row dd {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
}

.access__hall {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 12px;
    border: 1px solid var(--color-gold);
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: .2em;
    color: #ffffff;
}

.access__cta {
    text-align: center;
}

.access__map {
    background: var(--color-bg-card);
    border: 1px solid var(--color-line);
    height: 100%;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.access__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
    border: 0;
    filter: grayscale(.4) contrast(1.1) brightness(.95);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-line-2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--color-gold-grad);
}

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer__top {
    margin-bottom: 40px;
}

.footer__logo {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: .25em;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer__catch {
    font-size: 14px;
    letter-spacing: .25em;
    color: var(--color-text-sub);
}

.footer__sns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer__sns a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--color-line);
    color: var(--color-text-sub);
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .2em;
    transition: all .3s var(--ease);
}

.footer__sns a:hover {
    color: #ffffff;
    border-color: var(--color-gold);
}

.footer__copy {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: .25em;
    color: var(--color-text-dim);
    padding-top: 30px;
    border-top: 1px solid var(--color-line-2);
}

/* ============================================
   Responsive - Small Desktop / Laptop
   (ナビ項目数増加に伴う詰め対応)
   ============================================ */
@media (max-width: 1300px) {
    .header__nav {
        gap: 16px;
    }

    .nav-list {
        gap: 14px;
    }

    .nav-list a {
        font-size: 12px;
    }
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .header__inner {
        padding: 0 24px;
    }

    /* ナビ項目数増加のため、1024px以下はハンバーガーメニューに統一 */
    .hamburger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
        background: rgba(0, 0, 0, .98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform .5s var(--ease);
        padding: 80px 24px 40px;
    }

    .header__nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 26px;
    }

    .nav-list a {
        font-size: 16px;
        letter-spacing: .2em;
    }

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

    .people-grid--judges {
        grid-template-columns: repeat(3, 1fr);
    }

    .people-grid--mentors {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .section {
        padding: 110px 0;
    }

    .section__inner {
        padding: 0 24px;
    }

    .access {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .access__map {
        min-height: 360px;
    }
}

/* ============================================
   Responsive - Smartphone
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-h: var(--header-h-sp);
    }

    .header {
        height: var(--header-h-sp);
    }

    .header__inner {
        padding: 0 18px;
    }

    .header__logo {
        font-size: 17px;
    }

    /* ハンバーガー表示 */
    .hamburger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
        background: rgba(0, 0, 0, .98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform .5s var(--ease);
        padding: 80px 24px 40px;
    }

    .header__nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 28px;
    }

    .nav-list a {
        font-size: 16px;
        letter-spacing: .25em;
    }

    .nav-cta .btn {
        padding: 14px 32px;
        font-size: 13px;
    }

    .nav-sns {
        gap: 18px;
    }

    /* Hero */
    .hero__inner {
        padding: 100px 20px 80px;
    }

    .hero__sub {
        font-size: 11px;
        letter-spacing: .35em;
        margin-bottom: 24px;
    }

    .hero__catch {
        margin-bottom: 28px;
        letter-spacing: .2em;
    }

    .hero__desc {
        font-size: 13px;
        line-height: 1.9;
        letter-spacing: .08em;
        margin-bottom: 32px;
    }

    .sp-only {
        display: inline;
    }

    .hero__meta {
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
        margin-bottom: 36px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__meta li {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        width: 100%;
        gap: 16px;
    }

    .hero__meta li + li::before {
        display: none;
    }

    .hero__meta li + li {
        border-top: 1px solid rgba(201, 169, 106, .3);
    }

    .hero__meta-label {
        margin-bottom: 0;
        font-size: 10px;
        letter-spacing: .3em;
    }

    .hero__meta-value {
        font-size: 13px;
        letter-spacing: .08em;
    }

    .hero__meta-value small {
        font-size: 10px;
    }

    .hero__cta {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__scroll {
        bottom: 24px;
        font-size: 10px;
    }

    .hero__scroll-line {
        height: 40px;
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section__inner {
        padding: 0 18px;
    }

    .section__head {
        margin-bottom: 50px;
    }

    .section__label {
        font-size: 11px;
        letter-spacing: .35em;
    }

    .section__label::before,
    .section__label::after {
        width: 24px;
    }

    .section__lead {
        font-size: 13px;
    }

    /* Applicants Grid */
    .applicants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .applicant-card__no {
        font-size: 22px;
    }

    .applicant-card__body {
        padding: 14px 10px;
    }

    .applicant-card__name {
        font-size: 13px;
    }

    .applicant-card__field {
        font-size: 11px;
    }

    /* Judges */
    .people-grid--judges {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .people-grid--mentors {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .people-grid--supporters {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .person-card__body {
        padding: 18px 16px;
    }

    .person-card__name {
        font-size: 15px;
    }

    .person-card--sm .person-card__name {
        font-size: 13px;
    }

    /* Access */
    .section__credit {
        font-size: 8px;
        right: 10px;
        bottom: 8px;
        letter-spacing: .05em;
    }

    .section--access .section__bg img {
        opacity: .22;
    }

    .access__info {
        padding: 32px 22px;
    }

    .access__row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 18px 0;
    }

    .access__row dt {
        font-size: 11px;
    }

    .access__row dd {
        font-size: 13px;
    }

    .access__map {
        min-height: 260px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer__inner {
        padding: 0 18px;
    }

    .footer__logo {
        font-size: 20px;
    }

    .footer__catch {
        font-size: 12px;
    }

    .footer__sns {
        flex-direction: column;
        gap: 14px;
        max-width: 280px;
        margin: 0 auto 40px;
    }

    .footer__sns a {
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .btn--large {
        padding: 16px 32px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .applicants-grid {
        gap: 10px;
    }

    .applicant-card__body {
        padding: 12px 8px;
    }
}
