html {
    scroll-behavior: smooth;
}

/*****************************/
/*main*/
/*****************************/
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(clamp(70px, 10vh, 90px) + 50px); /* ヘッダー高さ + gap と同じ余白にして、見出し〜パンくずの間隔と揃える */
    padding-left: 13%;
    padding-right: 13%;
    padding-bottom: 50px;
    gap: 50px;
}
@media (max-width: 1200px) {
    main {
        padding-left: 8%;
        padding-right: 8%;
    }
}
@media (max-width: 700px) {
    main {
        padding-left: 5%;
        padding-right: 5%;
    }
}
.page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    font-size: 36px;
    position: relative;
    padding: 0 15px;
}
.breadcrumb {
    margin-right: auto;
    width: 100%;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
}

/*****************************/
/*EAGLE CUPについて（index.htmlのmissionと同じ、ロゴ＋文章の横並び）*/
/*****************************/
.eagle-about {
    width: calc(100% + 20vw);
    margin-left: -13vw;
    margin-right: -13vw;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: clamp(50px, 7vw, 90px) 13vw;
    background-color: #05050a;
    background-image:
        linear-gradient(135deg, rgba(4, 4, 8, 0.94) 0%, rgba(24, 16, 2, 0.88) 55%, rgba(4, 4, 8, 0.94) 100%),
        radial-gradient(circle at 12% 20%, rgba(var(--color-gold-rgb), 0.18), transparent 45%),
        radial-gradient(circle at 88% 82%, rgba(var(--color-gold-rgb), 0.12), transparent 45%);
    position: relative;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .eagle-about {
        width: calc(100% + 12vw);
        margin-left: -8vw;
        margin-right: -8vw;
        padding-left: 8vw;
        padding-right: 8vw;
    }
}
@media (max-width: 700px) {
    .eagle-about {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 5vw;
        padding-right: 5vw;
    }
}
@media (max-width: 1024px) {
    .eagle-about {
        flex-direction: column;
        gap: 30px;
    }
}
.eagle-about-logo {
    flex-shrink: 0;
    width: clamp(200px, 24vw, 320px);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}
.eagle-about-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.eagle-about-text p {
    letter-spacing: 1.5px;
    line-height: 27px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
}
.eagle-about-text p:last-child {
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .eagle-about-text p {
        letter-spacing: 1.0px;
        line-height: 20px;
        font-size: 13px;
    }
}

/* おまけ情報（サブタイトルの由来など、小さく添える） */
.eagle-about-note {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.eagle-about-note .note-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.eagle-about-note .note-eyebrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--color-gold);
}
.eagle-about-note .note-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 5px 12px;
}
.eagle-about-note .note-list li {
    display: flex;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}
.eagle-about-note .note-month {
    flex: 0 0 30px;
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 255, 255, 0.35);
}

.eagle-list {
    width: 100%;
}

/*****************************/
/*タイトルフィルター*/
/*****************************/
.cup-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.cup-filter button {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 8px 20px;
    border: 1px solid #1d1d1d;
    border-radius: 4px;
    background: #fff;
    color: #1d1d1d;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.cup-filter button:hover,
.cup-filter button.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #111;
}
@media (max-width: 600px) {
    .cup-filter button {
        font-size: 9px;
        padding: 5px 12px;
    }
}

/*****************************/
/*大会カード（Newsとはテイストを変え、ダーク×ゴールドの大会感を出す）*/
/*****************************/
.cup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    width: 100%;
}
.cup-card {
    display: flex;
    flex-direction: column;
    background: #101014;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ホバー時：枠が対角からワイプイン（Newsカードと同じ効果） */
.cup-card::before,
.cup-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
    pointer-events: none;
    z-index: 2;
}
.cup-card::before {
    background-image:
        linear-gradient(to right, var(--color-gold), var(--color-gold)),
        linear-gradient(to bottom, var(--color-gold), var(--color-gold));
    background-position: top left, top left;
    background-size: 0% 2.5px, 2.5px 0%;
}
.cup-card::after {
    background-image:
        linear-gradient(to left, var(--color-gold), var(--color-gold)),
        linear-gradient(to top, var(--color-gold), var(--color-gold));
    background-position: bottom right, bottom right;
    background-size: 0% 2.5px, 2.5px 0%;
}
.cup-card:hover::before,
.cup-card:hover::after {
    background-size: 100% 2.5px, 2.5px 100%;
}
.cup-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.cup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cup-status {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: #fff;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 3px;
    z-index: 1;
}
/* レポート公開：金（大会終了後、News記事が公開されたらこのタグを追加） */
.cup-status.status-report {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #141414;
    font-weight: 700;
}
.cup-info {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cup-name {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
.cup-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cup-meta li {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}
.cup-meta .meta-label {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    flex: 0 0 50px;
}
.cup-meta .meta-value {
    color: rgba(255, 255, 255, 0.85);
}

.cup-empty {
    width: 100%;
    text-align: center;
    padding: 50px 0;
    color: #999;
    font-size: 14px;
}
.cup-empty.is-hidden,
.cup-card.is-hidden {
    display: none;
}
