@charset 'UTF-8';

:root {
    --accent-color: #1f6f8b;
    --h-ink: #08182b;
    --h-ink-2: #14294a;
    --h-purple: #1f6f8b;
    --h-red: #5e97ab;
    --h-blue: #1f6f8b;
    --h-muted: #647184;
    --h-line: #dbe3ef;
    --h-soft: #f4f7fb;
    --h-card: #ffffff;
    --h-hero-gradient:
        radial-gradient(900px 520px at 86% 10%, rgba(31, 111, 139, 0.66), transparent 62%),
        radial-gradient(700px 420px at 8% 88%, rgba(94, 151, 171, 0.5), transparent 68%),
        linear-gradient(135deg, #061426 0%, #14485a 52%, #1f6f8b 100%);
    --h-button-gradient: linear-gradient(90deg, #1f6f8b, #5e97ab);
}

.hiroshima-page {
    background: #f7f9fc;
    color: var(--h-ink);
}

.hiroshima-page a {
    color: var(--h-purple);
}

.h-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(8, 24, 43, .08);
    box-shadow: 0 10px 28px rgba(8, 24, 43, .08);
    transform: none;
    transition: transform .22s ease;
}

.h-topbar.is-visible {
    transform: translateY(0);
}

.h-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 92px;
    height: 92px;
}

.h-topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111 !important;
    text-decoration: none;
}

.h-topbar-logo {
    width: 246px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
}

.h-topbar-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #111;
    font-size: 1.8rem;
}

.h-topbar-brand-copy {
    display: grid;
    gap: 2px;
}

.h-topbar-brand-copy strong {
    color: #111;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.h-topbar-brand-copy small {
    color: rgba(17, 17, 17, .55);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.h-topbar-links {
    display: flex;
    align-items: stretch;
    margin-left: auto;
}

.h-topbar-links a,
.h-topbar-result-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-left: 0;
    color: #111 !important;
    text-decoration: none;
    min-height: 68px;
}

.h-topbar-result-toggle {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.h-topbar-links a:hover,
.h-topbar-result-toggle:hover {
    text-decoration: none;
}

.h-topbar-links a i,
.h-topbar-result-toggle i {
    color: #111;
    font-size: 2rem;
}

.h-topbar-links a span,
.h-topbar-result-toggle span {
    display: grid;
    gap: 0;
    justify-items: center;
}

.h-topbar-links a small,
.h-topbar-result-toggle small {
    color: #111;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.h-topbar-result {
    position: relative;
    display: inline-flex;
}

.h-topbar-result-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1;
    width: max-content;
    min-width: 220px;
    padding: 10px 0;
    border: 1px solid #d9dde3;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 42px rgba(8, 24, 43, .14);
    transform: translateX(-50%);
    animation: topbar-result-drop .18s ease;
}

.h-topbar-result-menu[hidden] {
    display: none;
}

.h-topbar-result-menu a {
    display: block;
    min-height: auto;
    padding: 12px 22px;
    border-left: 0;
    color: #111 !important;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
}

.h-topbar-result-menu a:hover {
    background: #f3f5f8;
}

.h-topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 12px;
    flex-shrink: 0;
}

.h-topbar-entry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    min-height: 38px;
    padding: 0 18px !important;
    border-radius: 16px;
    background: linear-gradient(90deg, #5926a8, #1e73b6) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(40, 63, 122, .28);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.h-topbar-entry-label {
    display: inline-flex;
    align-items: center;
}

.apply-button-compact .btn,
.apply-button-compact .h-topbar-entry {
    border-radius: 16px !important;
}

.apply-button-compact .btn small,
.apply-button-compact .h-topbar-entry small {
    display: block;
    margin-top: 2px;
    font-size: 1em;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .04em;
}

.h-topbar-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.h-topbar-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
}

.h-topbar-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 45;
    width: min(420px, 88vw);
    height: 100vh;
    background: transparent;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .28s ease, opacity .22s ease;
}

.h-topbar-drawer.is-open {
    transform: translateX(0);
    opacity: 1;
}

.h-topbar-drawer-panel {
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, .08);
    background: rgba(8, 24, 43, .98);
    box-shadow: -20px 0 40px rgba(8, 24, 43, .28);
}

.h-topbar-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.h-topbar-drawer-head > span {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .18em;
}

.h-topbar-close {
    position: relative;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.h-topbar-close span {
    position: absolute;
    top: 16px;
    left: 2px;
    width: 30px;
    height: 2px;
    background: #fff;
}

.h-topbar-close span:first-child {
    transform: rotate(45deg);
}

.h-topbar-close span:last-child {
    transform: rotate(-45deg);
}

.h-topbar-drawer-inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 28px 28px;
}

.h-topbar-drawer-inner a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #fff !important;
    text-decoration: none;
    background: transparent;
}

.h-topbar-drawer-inner a:last-child,
.h-topbar-drawer-result:last-child {
    border-bottom: 0;
}

.h-topbar-drawer-inner i,
.h-topbar-drawer-result-toggle i {
    width: 28px;
    color: #46a0d9;
    font-size: 2rem;
    text-align: center;
}

.h-topbar-drawer-inner span,
.h-topbar-drawer-result-toggle span {
    display: grid;
    gap: 2px;
}

.h-topbar-drawer-inner strong,
.h-topbar-drawer-result-toggle strong {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.h-topbar-drawer-inner small,
.h-topbar-drawer-result-toggle small {
    color: rgba(255, 255, 255, .68);
    font-size: 1.1rem;
    font-weight: 700;
}

.h-topbar-drawer-result {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.h-topbar-drawer-result-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.h-topbar-drawer-result-menu {
    display: grid;
    gap: 0;
    padding: 0 0 12px 42px;
    animation: topbar-drawer-drop .18s ease;
}

.h-topbar-drawer-result-menu[hidden] {
    display: none;
}

.h-topbar-drawer-result-menu a {
    padding: 10px 0;
    border-bottom: 0;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 1.15rem;
    font-weight: 800;
}

@keyframes topbar-result-drop {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes topbar-drawer-drop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.h-topbar-overlay {
    position: fixed;
    inset: 0;
    z-index: 44;
    border: 0;
    background: rgba(8, 24, 43, .34);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.h-topbar-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.h-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.h-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 76px;
    color: #fff;
    background: var(--h-hero-gradient);
}

.h-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .12);
    transform: rotate(18deg);
}

.h-hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 100px;
    opacity: .28;
    pointer-events: none;
}

.h-hero-grid span {
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.h-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: 44px;
    align-items: stretch;
}

.h-hero-copy {
    display: flex;
    flex-direction: column;
}

.h-pref-chip,
.h-section-head span,
.h-deadline-copy > span,
.h-footer-card > span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.h-pref-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.h-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 22px 0 18px;
    color: rgba(255, 255, 255, .62);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.h-breadcrumbs a,
.h-breadcrumbs strong,
.h-breadcrumbs span {
    color: inherit;
}

.h-breadcrumbs a:hover {
    color: #fff;
    text-decoration: none;
}

.h-breadcrumbs strong {
    color: #fff;
}

.h-pref-chip {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(180, 82, 78, .95);
    color: #fff;
    font-size: 1.2rem;
}

.h-pref-chip-gold {
    background: linear-gradient(135deg, #d9b55a, #f3df93);
    color: #4b3510;
}

.h-hero h1 {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
}

.h-hero h1 span {
    display: block;
    color: #ffc1be;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    letter-spacing: .06em;
    text-align: center;
}

.h-hero h1 strong {
    display: block;
    max-width: 640px;
    margin-top: 0;
    color: #fff;
    font-size: clamp(3rem, 4.8vw, 5.2rem);
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

.h-hero-subtitle {
    display: block;
    max-width: 640px;
    margin: 12px auto 0;
    color: #ffc1be;
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.h-lede {
    max-width: 680px;
    margin: 0 0 30px;
    color: #ffc1be;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.65;
}

.h-lede strong {
    display: inline-block;
    margin-top: 8px;
    color: #fff;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    font-weight: 900;
    line-height: 1.15;
}

.h-hero-note {
    max-width: 680px;
    margin: 0 0 26px;
    padding: 16px 18px;
    border: 1px solid rgba(243, 223, 147, .5);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.7;
}

.h-hero-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
}

.h-hero-badge {
    margin-bottom: 18px;
}

.h-hero-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.h-hero-visual {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, .08);
}

.h-hero-visual::after {
    content: "COMING SOON\A 2026";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    padding-top: 34px;
    background: rgba(72, 78, 88, .72);
    color: rgba(255, 255, 255, .92);
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(2.4rem, 3.2vw, 4.2rem);
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.15;
    text-align: center;
    white-space: pre;
}

.h-hero-visual::before {
    content: "ロゴ準備中";
    position: absolute;
    top: calc(50% - 58px);
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .86);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: .18em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.h-hero-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 768 / 360;
    object-fit: contain;
}

.h-key-meta {
    display: grid;
    gap: 12px;
    margin: 0;
}

.h-key-meta > div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px dashed rgba(255, 255, 255, .16);
}

.h-key-meta dt {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 1.2rem;
    font-weight: 800;
}

.h-key-meta dt i {
    width: 22px;
    color: #ffc1be;
}

.h-key-meta dd {
    margin: 0;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
}

.h-key-meta dd small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
}

.h-hero-cta,
.h-inline-cta {
    display: grid;
    gap: 12px;
}

.h-hero-cta {
    margin-top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.h-hero-cta > .apply-button {
    display: flex;
}

.h-hero-cta > .apply-button > a,
.h-hero-cta > .apply-button .btn {
    width: 100%;
    height: 100%;
    margin: 0;
}

.hiroshima-page .apply-button .btn,
.hiroshima-page .h-flow-submit-button .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 26px !important;
    border-radius: 0;
    background: var(--h-button-gradient) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 16px 32px rgba(75, 26, 122, .22) !important;
    font-size: 1.5rem !important;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.h-dark-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 26px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 0;
    background: transparent;
    color: #fff !important;
    box-shadow: none;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.h-dark-button:hover {
    background: var(--h-button-gradient);
    border-color: transparent;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(75, 26, 122, .22);
}

.hiroshima-page .apply-button .btn.is-disabled,
.hiroshima-page .h-flow-submit-button .btn.is-disabled,
.h-topbar-entry.is-disabled {
    background: linear-gradient(90deg, #7f8797, #9ba3b0) !important;
    box-shadow: none !important;
    color: #fff !important;
    pointer-events: none;
    cursor: default;
}

.h-section {
    padding: 84px 0;
    background: #fff;
}

.h-section-dim {
    background: var(--h-soft);
}

#group-entry {
    padding: 72px 0;
    background: #1d3042;
}

#group-entry .h-container {
    width: min(1240px, calc(100% - 60px));
}

#group-entry .h-section-head span {
    color: rgba(255, 255, 255, .72);
}

#group-entry .h-section-head h2 {
    color: #fff;
}

.h-section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.h-section-head span,
.h-deadline-copy > span,
.h-footer-card > span {
    margin-bottom: 10px;
    color: var(--h-red);
    font-size: 1.1rem;
}

.h-section-head h2,
.h-deadline-copy h2 {
    margin: 0;
    color: var(--h-ink);
    font-size: clamp(3rem, 4.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.16;
}

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

.h-purpose-card {
    padding: 36px 40px;
    background: #fff;
    border: 1px solid var(--h-line);
}

.h-purpose-card p {
    margin: 0;
    color: #425064;
    font-size: 1.7rem;
    line-height: 2;
}

.h-about-card,
.h-info-card,
.h-result-card,
.h-group-card,
.h-venue-card,
.h-faq-item,
.h-flow-card,
.h-gantt-card {
    background: #fff;
    border: 1px solid var(--h-line);
}

.h-about-card {
    padding: 34px 28px;
}

.h-about-card > i {
    margin-bottom: 18px;
    color: var(--h-red);
    font-size: 3.2rem;
}

.h-about-card h3,
.h-info-card p,
.h-flow-steps h3,
.h-timeline h3,
.h-result-card h3,
.h-venue-info h3 {
    color: var(--h-ink);
    font-weight: 900;
}

.h-about-card h3 {
    margin: 0 0 12px;
    font-size: 2rem;
}

.h-about-card p,
.h-timeline p,
.h-flow-steps p,
.h-group-copy p,
.h-venue-info p,
.h-result-card p {
    color: #425064;
    font-size: 1.4rem;
    line-height: 1.85;
}

.h-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.h-overview-list {
    margin: 0;
    border: 1px solid var(--h-line);
    background: #fff;
}

.h-overview-list > div {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--h-line);
    background: #fff;
}

.h-overview-list > div:last-child {
    border-bottom: 0;
}

.h-overview-list dt {
    margin: 0;
    color: var(--h-muted);
    font-size: 1.4rem;
    font-weight: 800;
}

.h-overview-list dd {
    margin: 0;
    color: var(--h-ink);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.7;
}

.h-overview-list dd small {
    display: block;
    margin-top: 6px;
    color: var(--h-muted);
    font-size: 1.2rem;
    line-height: 1.75;
}

.h-overview-list a {
    color: var(--h-purple);
    text-decoration: none;
}

.h-info-card {
    min-height: 148px;
    padding: 24px;
}

.h-info-card-wide {
    grid-column: span 2;
}

.h-info-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--h-muted);
    font-size: 1.2rem;
    font-weight: 800;
}

.h-info-card p {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.7;
}

.h-info-card small {
    color: var(--h-muted);
    font-size: 1.2rem;
}

.h-note {
    margin: 22px 0 0;
    color: #5c6c82;
    font-size: 1.25rem;
}

.h-schedule-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr);
    gap: 24px;
}

.h-gantt-card {
    padding: 30px 30px 26px;
}

.h-gantt-head {
    display: grid;
    gap: 24px;
    margin-bottom: 26px;
}

.h-gantt-title h3,
.h-flow-card h3,
.h-faq-item h3 {
    margin: 0 0 10px;
    color: var(--h-ink);
    font-size: 2.2rem;
    font-weight: 900;
}

.h-gantt-title p,
.h-flow-card p,
.h-faq-item p {
    margin: 0;
    color: #425064;
    font-size: 1.35rem;
    line-height: 1.8;
}

.h-gantt-months {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.h-gantt-months span {
    padding: 10px 0;
    border-bottom: 2px solid var(--h-ink);
    color: var(--h-ink);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-align: center;
}

.h-gantt-months small {
    margin-left: 6px;
    color: var(--h-muted);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0;
}

.h-gantt-body {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
    padding: 12px 0;
    border-radius: 16px;
    background:
        repeating-linear-gradient(
            to right,
            rgba(8, 24, 43, .06) 0,
            rgba(8, 24, 43, .06) calc(14.285% - 1px),
            rgba(255, 255, 255, 0) calc(14.285% - 1px),
            rgba(255, 255, 255, 0) 14.285%
        );
}

.h-gantt-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
}

.h-gantt-label {
    display: none;
}

.h-gantt-track {
    position: relative;
    min-height: 112px;
    padding: 16px 0 8px;
}

.h-gantt-bar {
    position: absolute;
    top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
}

.h-gantt-bar-entry {
    background: var(--h-button-gradient);
}

.h-gantt-bar-make {
    background: linear-gradient(90deg, var(--h-blue), var(--h-purple));
}

.h-gantt-bar-award {
    background: linear-gradient(90deg, var(--h-red), var(--h-blue));
}

.h-gantt-milestone {
    position: absolute;
    top: -2px;
    width: 0;
}

.h-gantt-milestone::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 0;
    height: 42px;
    border-left: 3px dashed var(--h-red);
}

.h-gantt-milestone::after {
    content: "";
    position: absolute;
    top: 94px;
    left: -8px;
    width: 16px;
    height: 16px;
    border: 4px solid var(--h-red);
    border-radius: 50%;
    background: #fff;
}

.h-gantt-milestone-top {
    top: -20px;
}

.h-gantt-milestone-award {
    top: 18px;
}

.h-gantt-milestone-award::before {
    top: 30px;
    height: 44px;
}

.h-gantt-milestone-award::after {
    top: 70px;
}

.h-gantt-flag {
    position: absolute;
    left: 0;
    box-sizing: border-box;
    min-width: 108px;
    padding: 14px 12px 12px;
    background: var(--h-red);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    transform: translateX(-50%);
}

.h-gantt-flag::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--h-red);
    transform: translateX(-50%) rotate(45deg);
}

.h-gantt-flag span {
    display: block;
    margin-top: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
}

.h-gantt-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px dashed var(--h-line);
}

.h-gantt-foot p {
    margin: 0;
    color: #425064;
    font-size: 1.35rem;
    line-height: 1.8;
}

.h-flow-column {
    display: flex;
}

.h-flow-card {
    width: 100%;
    padding: 30px 28px;
}

.h-flow-card > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--h-red);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.h-flow-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.h-flow-list li {
    position: relative;
    padding: 18px 18px 18px 52px;
    background: var(--h-soft);
    border: 1px solid var(--h-line);
}

.h-flow-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 18px;
    height: 18px;
    border-right: 3px solid var(--h-red);
    border-bottom: 3px solid var(--h-red);
    transform: translateY(-65%) rotate(45deg);
}

.h-flow-list li:last-child::before {
    transform: translateY(-50%) rotate(45deg);
}

.h-flow-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--h-ink);
    font-size: 1.6rem;
    font-weight: 800;
}

.h-flow-list p {
    margin: 0 0 14px;
    color: #425064;
    font-size: 1.3rem;
    line-height: 1.75;
}

.h-flow-submit {
    display: inline-flex;
    align-items: center;
    color: var(--h-purple) !important;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
}

.h-faq-inline-link {
    color: var(--h-purple) !important;
    font-weight: 800;
    text-decoration: underline;
}

.h-flow-action {
    min-height: 44px !important;
    padding: 10px 18px !important;
    font-size: 1.2rem !important;
    box-shadow: 0 10px 24px rgba(75, 26, 122, .18) !important;
}

.h-flow-deadline {
    margin: 40px 0 6px;
    color: #c5534f;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    letter-spacing: .02em;
}

.h-deadline-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #08182b, #20123e);
}

.h-deadline-card {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.h-deadline-copy {
    padding: 48px;
}

.h-deadline-copy h2,
.h-deadline-copy p {
    color: #fff;
}

.h-deadline-date {
    margin: 18px 0 16px;
    color: #ffc1be !important;
    font-size: 2.4rem;
    font-weight: 900;
}

.h-countdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 36px;
    background: rgba(255, 255, 255, .06);
}

.h-countdown h3 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    text-align: left;
}

.h-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.h-countdown-grid > div {
    padding: 18px 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.count-down .number {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 4.4rem;
    line-height: 1;
}

.h-hero-visual.is-ready::before,
.h-hero-visual.is-ready::after {
    content: none;
    display: none;
}

.count-down .unit {
    display: block;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 1.2rem;
    letter-spacing: .08em;
}

.h-judging-board {
    overflow: hidden;
    border: 1px solid var(--h-line);
    border-radius: 18px;
    background: #fff;
}

.h-judging-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: #31414e;
    color: #fff;
}

.h-judging-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: 900;
}

.h-judging-brand i {
    font-size: 2.4rem;
}

.h-judging-header p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 1.5rem;
    font-weight: 700;
}

.h-judging-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 18px 18px 10px;
    background: #fff;
}

.h-judging-stage {
    position: relative;
    padding: 18px 16px 20px;
    border: 1px solid var(--h-line);
    border-radius: 14px;
    background: #fbfdff;
    text-align: center;
}

.h-judging-stage span {
    display: block;
    margin-bottom: 10px;
    color: var(--h-ink);
    font-size: 1.4rem;
    font-weight: 900;
}

.h-judging-stage strong {
    display: block;
    margin-bottom: 14px;
    color: var(--h-ink);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.6;
}

.h-judging-stage em,
.h-judging-stage b {
    display: block;
    margin: 8px auto 0;
    padding: 10px 12px;
    border-radius: 999px;
    font-style: normal;
    font-size: 1.3rem;
    font-weight: 800;
}

.h-judging-stage em {
    max-width: 220px;
    background: #dff4ef;
    color: #18866a;
}

.h-judging-stage b {
    max-width: 240px;
    background: #fae4e3;
    color: #d85e58;
}

.h-judging-stage-final {
    background: #fffaf0;
}

.h-judging-stage-final span {
    color: #b07b00;
}

.h-judging-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #31414e;
    font-size: 3.6rem;
}

.h-judging-sideflow {
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 18px 24px;
    background: #f7fafc;
    border-top: 1px solid var(--h-line);
}

.h-judging-entry {
    display: flex;
    align-items: center;
    gap: 16px;
}

.h-judging-entry i {
    color: #31414e;
    font-size: 5rem;
}

.h-judging-entry p,
.h-judging-side-arrow p {
    margin: 0;
    color: #31414e;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
}

.h-judging-region {
    padding: 16px 18px;
    border: 4px solid #2150e5;
    border-radius: 18px;
    background: #fff;
    text-align: center;
}

.h-judging-region span {
    display: block;
    margin: -16px -18px 14px;
    padding: 12px 16px;
    border-radius: 12px 12px 0 0;
    background: #2150e5;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
}

.h-judging-region strong {
    display: block;
    color: var(--h-ink);
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.5;
}

.h-judging-region-medal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #d1a11b;
}

.h-judging-region-medal i {
    font-size: 3.2rem;
}

.h-judging-region-medal em {
    font-style: normal;
    font-size: 2rem;
    font-weight: 900;
}

.h-judging-side-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.h-judging-side-arrow i {
    color: #efc11e;
    font-size: 4.4rem;
}

.h-judging-lanes {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.h-judging-diagram {
    padding: 22px;
    border: 1px solid var(--h-line);
    border-radius: 24px;
    background: #f8fbff;
}

.h-judging-applicant {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 540px;
    margin: 0 auto;
    padding: 18px 22px;
    border: 1px solid var(--h-line);
    border-radius: 18px;
    background: #fff;
}

.h-judging-applicant i {
    color: #31414e;
    font-size: 4rem;
    flex-shrink: 0;
}

.h-judging-applicant strong {
    display: block;
    margin-bottom: 4px;
    color: var(--h-ink);
    font-size: 1.8rem;
    font-weight: 900;
}

.h-judging-applicant p {
    margin: 0;
    color: #425064;
    font-size: 1.35rem;
    line-height: 1.7;
}

.h-judging-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    height: 58px;
    margin: 12px 0 18px;
}

.h-judging-split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 22px;
    background: #31414e;
    transform: translateX(-50%);
}

.h-judging-split-arrow {
    position: relative;
}

.h-judging-split-arrow::before {
    content: "";
    position: absolute;
    top: 22px;
    width: calc(50% + 12px);
    border-top: 4px solid #31414e;
}

.h-judging-split-left::before {
    right: 0;
}

.h-judging-split-right::before {
    left: 0;
}

.h-judging-split-arrow i {
    position: absolute;
    top: 12px;
    color: #31414e;
    font-size: 2.8rem;
}

.h-judging-split-left i {
    right: -8px;
    transform: rotate(180deg);
}

.h-judging-split-right i {
    left: -8px;
}

.h-judging-columns {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 24px;
    align-items: start;
}

.h-judging-lane {
    border: 1px solid var(--h-line);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.h-judging-lane-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #31414e;
    color: #fff;
}

.h-judging-lane-head i {
    font-size: 2.6rem;
}

.h-judging-lane-head span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .78);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.h-judging-lane-head h3 {
    margin: 0;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
}

.h-judging-steps {
    padding: 22px;
    background: #fbfdff;
}

.h-judging-step {
    padding: 18px 18px 20px;
    border: 1px solid var(--h-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(8, 24, 43, .05);
    text-align: center;
}

.h-judging-step strong {
    display: block;
    margin-bottom: 10px;
    color: var(--h-ink);
    font-size: 1.8rem;
    font-weight: 900;
}

.h-judging-step p,
.h-judging-step em {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.5;
    font-style: normal;
    text-align: center;
}

.h-judging-step p {
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #dff4ef;
    color: #18866a;
    font-weight: 800;
}

.h-judging-step em {
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #fae4e3;
    color: #d85e58;
    font-weight: 800;
}

.h-judging-step p + em {
    margin-top: 0;
}

.h-judging-step:has(em) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 12px;
    align-items: start;
    justify-items: center;
}

.h-judging-step:has(em) strong,
.h-judging-step:has(em) .h-judging-entry-note {
    grid-column: 1 / -1;
}

.h-judging-step-accent p {
    display: block;
    max-width: none;
    min-height: 0;
    padding: 0;
    background: transparent;
    color: #18866a;
    font-weight: 800;
    line-height: 1.75;
}

.h-judging-step-win {
    border-color: #f2d477;
    background: #fffaf0;
}

.h-judging-step-win strong {
    color: #b07b00;
}

.h-judging-step-win p {
    display: block;
    max-width: none;
    min-height: 0;
    padding: 0;
    background: transparent;
    color: #425064;
    font-weight: 700;
    line-height: 1.75;
}

.h-judging-step-final {
    border-color: #f2d477;
    background: #fffaf0;
}

.h-judging-step-final strong {
    color: #b07b00;
}

.h-judging-step-entrypoint {
    position: relative;
}

.h-judging-step-entrypoint::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -170px;
    width: 132px;
    border-top: 4px solid #efc11e;
    transform: translateY(-50%);
}

.h-judging-step-entrypoint::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -42px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #efc11e;
    transform: translateY(-50%);
}

.h-judging-entry-note {
    position: absolute;
    top: 50%;
    left: -340px;
    width: 150px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff8da;
    color: #917000;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    transform: translateY(-50%);
    box-shadow: 0 8px 18px rgba(8, 24, 43, .08);
}

.h-judging-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    color: #31414e;
    font-size: 3.2rem;
}

.h-judging-footnote {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid var(--h-line);
    border-radius: 14px;
    background: #f7fafc;
}

.h-judging-footnote i {
    color: #31414e;
    font-size: 3.6rem;
    flex-shrink: 0;
}

.h-judging-footnote p {
    margin: 0;
    color: #31414e;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
}


.h-venue-card,
.h-group-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.h-map {
    min-height: 360px;
    background: #dfe8f2;
}

.h-map-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, #edf1f7, #dbe3ef);
}

.h-soon-box {
    text-align: center;
}

.h-soon-box span {
    display: block;
    margin-bottom: 10px;
    color: var(--h-red);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.h-soon-box strong {
    color: var(--h-ink);
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.45;
}

.h-venue-info,
.h-group-copy {
    padding: 42px;
}

.h-venue-info h3 {
    margin: 0 0 16px;
    font-size: 2.4rem;
}

.h-note-box {
    margin-top: 22px;
    padding: 16px 18px;
    border-left: 3px solid var(--h-red);
    background: rgba(180, 82, 78, .08);
    color: var(--h-ink) !important;
    font-weight: 700;
}

.h-venue-list {
    margin: 0;
}

.h-venue-list > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--h-line);
}

.h-venue-list > div:last-child {
    border-bottom: 0;
}

.h-venue-list dt {
    margin: 0;
    color: var(--h-muted);
    font-size: 1.35rem;
    font-weight: 800;
}

.h-venue-list dd {
    margin: 0;
    color: var(--h-ink);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.8;
}

.h-group-card {
    grid-template-columns: 1fr .95fr;
    background: #1d3042;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

#group-entry .h-section-head {
    margin-bottom: 56px;
}

.h-group-copy p {
    color: rgba(255, 255, 255, .88);
}

.h-slide {
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 42px 36px;
    background: rgba(255, 255, 255, .06);
}

.h-slide iframe {
    display: block;
    width: 100%;
    min-height: 360px;
}

.h-faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.h-faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.h-faq-category {
    padding: 10px 16px;
    border: 1px solid var(--h-line);
    background: #fff;
    color: var(--h-muted);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
}

.h-faq-category.is-active {
    border-color: var(--h-purple);
    background: rgba(111, 81, 161, .08);
    color: var(--h-purple);
}

.h-faq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--h-line);
}

.h-faq-search i {
    color: var(--h-muted);
    font-size: 1.4rem;
}

.h-faq-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--h-ink);
    font-size: 1.45rem;
    background: transparent;
}

.h-faq-item {
    overflow: hidden;
}

.h-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    border: 0;
    background: transparent;
    color: var(--h-ink);
    font-size: 1.65rem;
    font-weight: 800;
    text-align: left;
}

.h-faq-question i {
    color: var(--h-red);
    font-size: 1.5rem;
}

.h-faq-answer {
    padding: 0 24px 24px;
    border-top: 1px solid var(--h-line);
}

.h-faq-answer p {
    margin: 18px 0 0;
    color: #425064;
    font-size: 1.35rem;
    line-height: 1.85;
}

.h-result-tabs {
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 0;
}

.h-result-tabs .nav-link {
    border: 1px solid var(--h-line);
    border-radius: 0;
    background: #fff;
    color: var(--h-ink);
    font-size: 1.4rem;
    padding: 12px 22px;
}

.h-result-tabs .nav-link.active {
    border-color: var(--h-purple);
    background: var(--h-purple);
    color: #fff;
}

.h-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.h-result-card {
    padding: 24px;
}

.h-prize {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(180, 82, 78, .1);
    color: var(--h-red);
    font-size: 1.3rem;
    font-weight: 900;
}

.h-result-card h3 {
    margin: 0 0 10px;
    font-size: 2.2rem;
}

.h-result-card p {
    min-height: 52px;
    margin: 0 0 18px;
    color: var(--h-ink);
    font-weight: 700;
}

.h-result-card .embed-responsive {
    overflow: hidden;
    background: #000;
}

.h-footer {
    padding: 48px 0;
    background: var(--h-ink);
}

.h-footer-card {
    max-width: 760px;
}

.h-footer-card p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1.4rem;
    line-height: 1.9;
}

.h-footer-card a {
    color: #fff;
    text-decoration: underline;
}

.h-footer-sitemap {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 0 28px;
    max-width: 720px;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .24);
}

.h-footer-sitemap a {
    display: flex;
    align-items: center;
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .92) !important;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}

.h-footer-sitemap a:hover {
    color: #fff !important;
    opacity: .78;
    text-decoration: none;
}

.h-faq-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--h-button-gradient);
    border-radius: 8px;
    color: #fff !important;
    box-shadow: 0 18px 36px rgba(8, 24, 43, .24);
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
}

.h-faq-float:hover {
    text-decoration: none;
    color: #fff !important;
}

@media (max-width: 1160px) {
    .h-hero h1 strong {
        font-size: 4.05rem;
        line-height: 1.12;
    }
}

@media (max-width: 960px) {
    .h-container {
        width: min(100% - 28px, 720px);
    }

    .h-topbar-inner {
        min-height: 78px;
        height: 78px;
    }

    .h-topbar-links {
        display: none;
    }

    .h-topbar-menu {
        display: inline-flex;
    }

    .h-hero {
        padding: 64px 0 48px;
    }

    .h-hero-inner,
    .h-deadline-card,
    .h-venue-card,
    .h-group-card {
        grid-template-columns: 1fr;
    }

    .h-hero-visual img {
        height: auto;
    }

    .h-about-grid,
    .h-faq-list,
    .h-results-grid {
        grid-template-columns: 1fr;
    }

    .h-judging-header,
    .h-judging-sideflow {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .h-judging-main {
        grid-template-columns: 1fr;
    }

    .h-judging-step-entrypoint::before,
    .h-judging-step-entrypoint::after {
        display: none;
    }

    .h-judging-entry-note {
        position: static;
        display: inline-block;
        width: auto;
        margin: 0 0 14px;
        transform: none;
    }

    .h-judging-step:has(em) {
        grid-template-columns: 1fr;
    }

    .h-judging-arrow {
        transform: rotate(90deg);
        min-height: 32px;
    }

    .h-overview-list > div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .h-judging-columns {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 14px;
    }

    .h-judging-split {
        gap: 14px;
    }

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

    .h-schedule-layout,
    .h-gantt-head,
    .h-gantt-row,
    .h-venue-card,
    .h-group-card {
        grid-template-columns: 1fr;
    }

    .h-gantt-months {
        margin-top: 12px;
    }

    .h-gantt-months span {
        font-size: 1.05rem;
    }

    .h-gantt-months small {
        display: block;
        margin: 4px 0 0;
    }

    .h-gantt-track {
        min-height: 120px;
    }

    .h-gantt-bar {
        top: 54px;
        min-height: 34px;
        padding: 6px 12px;
        font-size: 1.15rem;
        line-height: 1.2;
    }

    .h-gantt-flag {
        left: 0;
        min-width: 88px;
        font-size: 1.1rem;
    }

    .h-map {
        min-height: 300px;
    }
}

@media (max-width: 620px) {
    .h-section {
        padding: 58px 0;
    }

    .h-hero h1 strong {
        font-size: 2.35rem;
        line-height: 1.12;
    }

    .h-overview-grid,
    .h-countdown-grid {
        grid-template-columns: 1fr;
    }

    .h-overview-list > div {
        padding: 18px 18px;
    }

    .h-overview-list dt {
        font-size: 1.25rem;
    }

    .h-overview-list dd {
        font-size: 1.45rem;
    }

    .h-judging-diagram {
        padding: 16px;
    }

    .h-judging-applicant {
        padding: 14px 16px;
    }

    .h-judging-applicant i {
        font-size: 3.2rem;
    }

    .h-judging-applicant strong {
        font-size: 1.55rem;
    }

    .h-judging-applicant p {
        font-size: 1.2rem;
    }

    .h-judging-columns {
        grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
        gap: 10px;
    }

    .h-judging-lane-head {
        gap: 10px;
        padding: 16px 14px;
    }

    .h-judging-lane-head i {
        font-size: 2rem;
    }

    .h-judging-lane-head span {
        font-size: .9rem;
    }

    .h-judging-lane-head h3 {
        font-size: 1.7rem;
    }

    .h-judging-steps {
        padding: 14px;
    }

    .h-judging-step {
        padding: 14px 12px 16px;
    }

    .h-judging-step strong {
        font-size: 1.5rem;
    }

    .h-topbar-inner,
    .h-topbar-brand {
        width: 100%;
    }

    .h-topbar-inner {
        min-height: 78px;
        height: 78px;
        flex-wrap: nowrap;
        padding: 0;
    }

    .h-topbar-actions {
        margin-left: auto;
        width: auto;
    }

    .h-topbar-logo {
        width: min(192px, 52vw);
        max-height: 32px;
    }

    .h-topbar-entry {
        min-width: 112px;
        min-height: 34px;
        padding: 0 10px !important;
        font-size: .92rem;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .h-topbar-brand-copy strong {
        font-size: 1.05rem;
    }

    .h-topbar-brand-copy small {
        font-size: .82rem;
    }

    .h-faq-categories {
        gap: 8px;
    }

    .h-faq-category {
        font-size: 1.1rem;
    }

    .h-info-card-wide {
        grid-column: auto;
    }

    .h-purpose-card {
        padding: 26px 22px;
    }

    .h-purpose-card p {
        font-size: 1.5rem;
        line-height: 1.9;
    }

    .h-deadline-copy,
    .h-countdown,
    .h-venue-info,
    .h-group-copy {
        padding: 30px 22px;
    }

    .h-gantt-card,
    .h-flow-card,
    .h-faq-item {
        padding: 22px 18px;
    }

    .h-judging-header,
    .h-judging-main,
    .h-judging-sideflow {
        padding-left: 16px;
        padding-right: 16px;
    }

    .h-judging-brand {
        font-size: 1.6rem;
    }

    .h-judging-lane-head h3 {
        font-size: 1.8rem;
    }

    .h-judging-step strong {
        font-size: 1.6rem;
    }

    .h-judging-step:has(em) {
        grid-template-columns: 1fr;
    }

    .h-judging-footnote {
        align-items: flex-start;
    }

    .h-judging-entry {
        align-items: flex-start;
    }

    .h-judging-entry i {
        font-size: 4rem;
    }

    .h-judging-side-arrow {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-judging-side-arrow i {
        transform: rotate(90deg);
        transform-origin: center;
    }

    .count-down .number {
        font-size: 3.2rem;
    }

    .h-countdown-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .h-countdown h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .h-countdown {
        align-items: center;
        margin: 0 auto 12px;
        text-align: center;
    }

    .h-venue-list > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .h-faq-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
        font-size: 1.3rem;
    }

    .h-faq-float span {
        display: none;
    }

    .hiroshima-page .apply-button .btn,
    .h-dark-button {
        width: 100%;
        white-space: normal;
    }

    .h-hero-cta {
        grid-template-columns: 1fr;
    }
}

/* ===== Top page aligned navigation ===== */
.hiroshima-page .h-topbar {
    transform: none;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    pointer-events: none;
}

.hiroshima-page .h-topbar-inner {
    width: min(100% - 64px, 1840px);
    min-height: 92px;
    height: 92px;
    gap: 0;
    pointer-events: none;
}

.hiroshima-page .h-topbar-brand {
    position: relative;
    z-index: 2;
    padding: 0;
    pointer-events: auto;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
}

.hiroshima-page .h-topbar-logo {
    width: clamp(210px, 17vw, 286px);
    max-height: 44px;
    filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, .36));
}

.hiroshima-page .h-topbar-links {
    align-items: center;
    min-height: 64px;
    margin-left: auto;
    padding-left: 18px;
    padding-right: 18px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-bottom-color: rgba(255, 255, 255, .52);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(8, 24, 43, .12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: auto;
}

.hiroshima-page .h-topbar-actions {
    min-height: 64px;
    gap: 0;
    align-items: center;
    margin-left: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: auto;
}

.hiroshima-page .h-topbar-links a,
.hiroshima-page .h-topbar-result-toggle {
    min-height: 64px;
    padding: 0 clamp(10px, 1.05vw, 20px);
}

.hiroshima-page .h-topbar-links a:hover,
.hiroshima-page .h-topbar-result-toggle:hover {
    background: rgba(255, 255, 255, .28);
}

.hiroshima-page .h-topbar-entry {
    min-width: 148px;
    min-height: 48px;
    height: 48px;
    padding: 0 24px !important;
    font-size: 1.15rem;
    box-shadow: 0 16px 34px rgba(45, 56, 160, .22);
}

.hiroshima-page .h-topbar-result-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    gap: 4px;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 80;
    width: 260px;
    min-width: 260px;
    padding: 8px;
    border: 1px solid rgba(217, 221, 227, .82);
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 52px rgba(8, 24, 43, .18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hiroshima-page .h-topbar-result-menu[hidden] {
    display: none;
}

.hiroshima-page .h-topbar-result-menu a {
    display: block;
    min-height: auto;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.hiroshima-page .h-topbar-result-menu a:first-child {
    grid-column: 1 / -1;
}

.hiroshima-page .h-topbar-result-menu a:hover {
    background: #f3f5f8;
}

.hiroshima-page .h-topbar.is-visible,
.hiroshima-page .h-topbar.is-drawer-open {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #d9dde3;
    box-shadow: 0 10px 32px rgba(8, 24, 43, .08);
    pointer-events: auto;
}

.hiroshima-page .h-topbar.is-visible .h-topbar-logo,
.hiroshima-page .h-topbar.is-drawer-open .h-topbar-logo {
    filter: none;
}

.hiroshima-page .h-topbar.is-visible .h-topbar-brand,
.hiroshima-page .h-topbar.is-drawer-open .h-topbar-brand {
    filter: none;
}

.hiroshima-page .h-topbar.is-visible .h-topbar-links,
.hiroshima-page .h-topbar.is-visible .h-topbar-actions,
.hiroshima-page .h-topbar.is-drawer-open .h-topbar-links,
.hiroshima-page .h-topbar.is-drawer-open .h-topbar-actions {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

@media (max-width: 768px) {
    .hiroshima-page .h-topbar-inner {
        width: min(100% - 28px, 720px);
        min-height: 78px;
        height: 78px;
    }

    .hiroshima-page .h-topbar-logo {
        width: 168px;
        max-height: 34px;
    }

    .hiroshima-page .h-topbar-brand {
        width: auto;
    }

    .hiroshima-page .h-topbar-actions {
        min-height: 48px;
        margin-left: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
    }

    .hiroshima-page .h-topbar-entry {
        min-width: 112px;
        min-height: 38px;
        height: 38px;
        padding: 0 12px !important;
        font-size: 1rem;
    }

    .hiroshima-page .h-topbar-menu span {
        background: #111;
    }
}

@media (max-width: 767.98px) {
    body.hiroshima-page {
        overflow-x: hidden;
    }

    .hiroshima-page .h-topbar-inner {
        width: calc(100% - 24px);
        min-height: 72px;
        height: 72px;
        margin: 0 12px;
    }

    .hiroshima-page .h-topbar-brand {
        max-width: calc(100% - 64px);
    }

    .hiroshima-page .h-topbar-logo {
        width: min(176px, 48vw);
        max-height: 32px;
    }

    .hiroshima-page .h-topbar-actions {
        margin-left: auto;
    }

    .hiroshima-page .h-topbar-menu {
        display: inline-flex;
        width: 44px;
        height: 44px;
        margin-left: 0;
        border-radius: 999px;
        background: rgba(5, 8, 18, .46);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hiroshima-page .h-topbar-menu span {
        width: 21px;
        height: 2px;
        background: #fff;
        box-shadow: 0 1px 8px rgba(0, 0, 0, .35);
    }

    .hiroshima-page .h-topbar-entry {
        position: fixed;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        z-index: 1900;
        width: 72px;
        min-width: 72px;
        height: 72px;
        min-height: 72px;
        padding: 0 8px !important;
        border: 2px solid rgba(255, 255, 255, .78);
        border-radius: 50%;
        font-size: 1.05rem;
        line-height: 1.15;
        box-shadow: 0 18px 42px rgba(34, 78, 180, .34);
    }

    .hiroshima-page .h-topbar-entry-label {
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: center;
        justify-content: center;
    }

    .hiroshima-page .h-topbar-entry-label i {
        margin-left: 0 !important;
        font-size: .95rem;
    }

    .hiroshima-page .h-topbar-drawer {
        z-index: 2100;
    }

    .hiroshima-page .h-topbar-overlay {
        z-index: 2050;
    }
}

@media (max-width: 760px) {
    .hiroshima-page .tkgp-contact-tab {
        top: 50%;
        right: 0;
        bottom: auto;
        min-width: 52px;
        min-height: 148px;
        width: auto;
        height: auto;
        padding: 16px 11px;
        border-radius: 10px 0 0 10px;
        transform: translateY(-50%);
        writing-mode: vertical-rl;
    }

    .hiroshima-page .tkgp-contact-tab-text {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        white-space: normal;
    }
}


/* GIFU legacy result content */
@charset 'UTF-8';
/* Colors */
:root {
    --accent-color: #20497A;
}

.results-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.results-tab {
    border: 2px solid var(--accent-color);
    border-radius: 999px;
    background: #fff;
    color: var(--accent-color);
    font-weight: 700;
    padding: 10px 24px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.results-tab.is-active {
    background: var(--accent-color);
    color: #fff;
}

.results-panel[hidden] {
    display: none !important;
}

.results-lead {
    font-size: 1.05rem;
    line-height: 1.9;
}

.results-year-title {
    margin-bottom: 20px;
}

.results-slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #edf4fb, #f8fbff);
    padding: 20px;
    margin-bottom: 24px;
}

.results-slides {
    position: relative;
    min-height: 520px;
}

.results-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.results-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.results-slide img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background: #fff;
}

.results-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.results-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    padding: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.results-dot.is-active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.15);
}

.results-card {
    background: #f7f9fc;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(32, 73, 122, 0.08);
}

.results-card h2,
.results-card h3,
.results-card h4 {
    color: var(--accent-color);
}

.results-award-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    grid-template-areas:
        'profile main'
        'work work';
    gap: 28px;
    align-items: start;
}

.results-profile-image {
    grid-area: profile;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    border: 1px solid rgba(32, 73, 122, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.results-profile-image img,
.results-stage-photo img,
.results-work-gallery img,
.results-commendation-gallery img {
    width: 100%;
    height: 100%;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.results-profile-image img {
    aspect-ratio: 3 / 4;
    height: 100%;
    max-height: 540px;
    object-fit: contain;
}

.results-award-main {
    grid-area: main;
    display: grid;
    gap: 20px;
    height: 100%;
    grid-template-rows: auto 1fr;
}

.results-info-panel {
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(32, 73, 122, 0.1);
}

.results-info-panel h3 {
    font-size: 2rem;
    line-height: 1.25;
}

.results-info-panel h4 {
    font-size: 1.5rem;
    line-height: 1.35;
}

.results-meta {
    display: grid;
    gap: 8px;
}

.results-meta p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.results-meta-label {
    display: inline-block;
    min-width: 4.8em;
    font-weight: 700;
    color: var(--accent-color);
}

.results-stage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
    flex: 1;
}

.results-work-block {
    grid-area: work;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(32, 73, 122, 0.1);
    overflow: hidden;
}

.results-stage-block {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(32, 73, 122, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.results-stage-label,
.results-work-label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
}

.results-stage-slideshow {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.results-stage-slideshow .results-slides {
    min-height: 100%;
    height: 100%;
}

.results-stage-slideshow .results-slide img {
    height: 100%;
    max-height: none;
    object-fit: contain;
    box-shadow: none;
}

.results-stage-slideshow .results-dots {
    bottom: 12px;
    gap: 8px;
}

.results-stage-slideshow .results-dot {
    width: 10px;
    height: 10px;
}

.results-stage-slideshow .results-dot.is-active {
}

.results-work-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    justify-items: center;
    align-items: center;
}

.results-work-gallery img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    max-height: 320px;
    height: 100%;
    object-fit: contain;
    background: #fff;
    box-shadow: none;
}

.results-work-gallery.results-work-gallery-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-commendation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.results-commendation .results-card {
    height: 100%;
    margin-bottom: 0;
}

.results-commendation-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.results-commendation-gallery img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
}

.gifu-results-legacy > .row.inner-container.card-soft {
    display: block;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.gifu-results-legacy > .row.inner-container.card-soft > .col {
    padding: 0;
}

.gifu-results-legacy > .row.inner-container.card-soft > .col > h1 {
    margin: 0 0 24px;
    color: var(--h-ink) !important;
    font-size: clamp(2.2rem, 3.2vw, 3.8rem);
    line-height: 1.25;
}

.gifu-results-legacy > .row.inner-container.card-soft > .col > h1 i {
    color: var(--h-blue);
}

.gifu-results-legacy .results-tabs {
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 0;
}

.gifu-results-legacy .results-tab {
    border: 1px solid var(--h-line);
    border-radius: 0;
    background: #fff;
    color: var(--h-ink);
    font-size: 1.4rem;
    font-weight: 800;
    padding: 12px 22px;
}

.gifu-results-legacy .results-tab.is-active {
    border-color: var(--h-blue);
    background: var(--h-blue);
    color: #fff;
}

.gifu-results-legacy .results-year-title {
    margin: 0 0 18px;
    color: var(--h-ink) !important;
    font-size: clamp(2rem, 2.6vw, 3.2rem);
    line-height: 1.35;
}

.gifu-results-legacy .frame {
    border: 1px solid var(--h-line);
    border-radius: 0;
    background: #fff;
    color: #425064;
    box-shadow: none;
}

.gifu-results-legacy .results-lead {
    margin-bottom: 24px;
    padding: 22px 24px;
    font-size: 1.35rem;
    line-height: 1.85;
}

.gifu-results-legacy .results-slideshow {
    border: 1px solid var(--h-line);
    border-radius: 0;
    background: #fff;
    padding: 20px;
}

.gifu-results-legacy .results-slide img,
.gifu-results-legacy .results-profile-image img,
.gifu-results-legacy .results-stage-photo img,
.gifu-results-legacy .results-work-gallery img,
.gifu-results-legacy .results-commendation-gallery img {
    border-radius: 8px;
}

.gifu-results-legacy .results-card {
    border: 1px solid var(--h-line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.gifu-results-legacy .results-card h2,
.gifu-results-legacy .results-card h3,
.gifu-results-legacy .results-card h4,
.gifu-results-legacy .results-meta-label,
.gifu-results-legacy .results-stage-label,
.gifu-results-legacy .results-work-label {
    color: var(--h-blue) !important;
}

.gifu-results-legacy .results-info-panel,
.gifu-results-legacy .results-profile-image,
.gifu-results-legacy .results-stage-block,
.gifu-results-legacy .results-work-block {
    border-color: var(--h-line);
    border-radius: 0;
}

#results .gifu-results-legacy,
#results .gifu-results-legacy * {
    border-radius: 0 !important;
}

#results .gifu-results-legacy > .row.inner-container.card-soft,
#results .gifu-results-legacy .card-soft {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

#results .gifu-results-legacy .inner-container {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#results .gifu-results-legacy .frame,
#results .gifu-results-legacy .results-card,
#results .gifu-results-legacy .results-slideshow,
#results .gifu-results-legacy .results-info-panel,
#results .gifu-results-legacy .results-profile-image,
#results .gifu-results-legacy .results-stage-block,
#results .gifu-results-legacy .results-work-block {
    border: 1px solid var(--h-line) !important;
    background: #fff !important;
    box-shadow: none !important;
}

#results .gifu-results-legacy .h-prize {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    margin: 0 0 18px;
    padding: 8px 14px;
    border: 0 !important;
    background: rgba(32, 73, 122, .08) !important;
    color: var(--h-blue) !important;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.35;
}

#results .gifu-results-legacy .results-award-label-frame {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

#results .gifu-results-legacy .results-commendation-frame {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

#results .gifu-results-legacy .results-commendation-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 18px;
}

#results .gifu-results-legacy .results-commendation-head .h-prize {
    margin-bottom: 0;
}

#results .gifu-results-legacy .results-commendation-note {
    color: #425064;
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .results-slides {
        min-height: 360px;
    }

    .results-slide img {
        max-height: 360px;
    }

    .results-award-layout,
    .results-stage-grid,
    .results-work-gallery,
    .results-commendation-gallery {
        grid-template-columns: 1fr;
    }

    .results-award-layout {
        grid-template-areas:
            'profile'
            'main'
            'work';
    }

    .results-info-panel h3 {
        font-size: 1.7rem;
    }

    .results-info-panel h4 {
        font-size: 1.3rem;
    }

    .results-meta p {
        font-size: 1.05rem;
    }

    .results-work-gallery.results-work-gallery-2 {
        grid-template-columns: 1fr;
    }

    .results-profile-image img,
    .results-stage-photo img,
    .results-work-gallery img,
    .results-commendation-gallery img {
        aspect-ratio: auto;
    }
}
