:root {
    --GUTTER_CONTENT: 10px;
    --HEIGHT_HEADER: 72px;
    --FONT_FAMILY: "Hiragino Kaku Gothic ProN", sans-serif;
    --FONT_FAMILY_EN: Arial, var(--FONT_FAMILY);
    --FONT_SIZE: 1.4rem;
    --FONT_WEIGHT: 400;
    --FONT_WEIGHT_BOLD: 600;
    --COLOR_FONT: #333;
    --COLOR_BASE: #fff;
    --COLOR_BLUE: #002891;
    --COLOR_RED: #DC000C;
    --COLOR_ACCENT: #C37843;
    --COLOR_LIGHT_BLUE: #BECDE2;
    --COLOR_NAVY: #001344;
    --COLOR_GRAY: #707070;
    --COLOR_LIGHT_GRAY: #E9EAED;
    --COLOR_BORDER: #D9D9D9;
    --TRANSITION: ease-out 0.2s;
    --Z_INDEX_HEADER: 1000;
    --Z_INDEX_BASE: 1;
    --Z_INDEX_BEHIND: -1;
}

@media screen and (min-width: 768px) {
  :root {
    --GUTTER_CONTENT: 40px;
    --FONT_SIZE: 1.6rem;
  }
}

body {
    font-family: var(--FONT_FAMILY);
    color: var(--COLOR_FONT);
    font-size: var(--FONT_SIZE);
    line-height: 1.75;
}

body.is-fixed {
    overflow: hidden;
}

/*----------------------------------- .u-top-sp-only --------------------------------------*/
@media only screen and (min-width: 768px) {
    .u-top-sp-only {
        display: none;
    }
}

/*----------------------------------- .u-top-sp-only --------------------------------------*/
.u-top-pc-only {
    display: none;
}

@media only screen and (min-width: 768px) {
    .u-top-pc-only {
        display: block;
    }
}

/*----------------------------------- .u-top-header --------------------------------------*/
.u-top-header {
    position: fixed;
    left: var(--GUTTER_CONTENT);
    width: calc(100% - calc(var(--GUTTER_CONTENT) * 2));
    color: var(--COLOR_BASE);
    z-index: var(--Z_INDEX_HEADER);
}

.u-top-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 20px 20px;
    padding: 16px 20px;
    background-color: var(--COLOR_NAVY);
}

.u-top-header__logo {
    z-index: var(--Z_INDEX_BASE);
}

.u-top-header__logo-link {
    display: flex;
}

.u-top-header__logo-image {
    width: 200px;
}

@media only screen and (min-width: 768px) {
    .u-top-header {
        --gutter: 24px;

        width: calc(100% - var(--gutter) * 2);
        left: var(--gutter);
        margin-inline: auto;
        background-color: var(--COLOR_NAVY);
        border-radius: 0 0 20px 20px;
    }

    .u-top-header__inner {
        column-gap: 32px;
        max-width: 1200px;
        padding: 14px 20px 10px;
        margin-inline: auto;
    }

    .u-top-header__logo-image {
        width: 235px;
        transition: opacity var(--TRANSITION);
    }
}

@media only screen and (any-hover: hover) {
    .u-top-header__logo-link:hover .u-top-header__logo-image {
        opacity: 0.5;
    }
}

/*----------------------------------- .u-top-header-menu --------------------------------------*/
.u-top-header-menu {
    display: flex;
}

.u-top-header-menu__button {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 100vmax;
    background-color: var(--COLOR_BASE);
    z-index: var(--Z_INDEX_BASE);
}

.u-top-header-menu__button-text {
    overflow: hidden;
}

.u-top-header-menu__button-text,
.u-top-header-menu__button::before,
.u-top-header-menu__button::after {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 1px;
    border-radius: 100vmax;
    background-color: var(--COLOR_NAVY);
}

.u-top-header-menu__button::before,
.u-top-header-menu__button::after {
    content: "";
    transition: transform var(--TRANSITION);
}

.u-top-header-menu__button::before {
    transform: translateY(-7px);
}

.u-top-header-menu__button::after {
    transform: translateY(7px);
}

.u-top-header-menu__button[aria-expanded='true'] .u-top-header-menu__button-text {
    opacity: 0;
}

.u-top-header-menu__button[aria-expanded='true']::before {
    transform: translateY(-50%) rotate(-45deg);
}

.u-top-header-menu__button[aria-expanded='true']::after {
    transform: translateY(-50%) rotate(45deg);
}

.u-top-header-menu__content {
    position: fixed;
    top: var(--HEIGHT_HEADER);
    left: var(--GUTTER_CONTENT);
    width: calc(100% - var(--GUTTER_CONTENT) * 2);
    max-height: calc(100dvh - var(--HEIGHT_HEADER) - 20px);
    border-top: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 0 0 20px 20px;
    padding: 40px 20px;
    background-color: var(--COLOR_NAVY);
    box-shadow: 0 4px 8px 0 rgba(51 51 51 / 0.3);
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: opacity var(--TRANSITION), visibility var(--TRANSITION);
}

.u-top-header-menu__content.is-open {
    opacity: 1;
    visibility: visible;
}

.u-top-header-menu__content.is-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: var(--GUTTER_CONTENT);
    width: calc(100% - var(--GUTTER_CONTENT) * 2);
    height: var(--HEIGHT_HEADER);
    background-color: var(--COLOR_NAVY);
    z-index: var(--Z_INDEX_BEHIND);
}

.u-top-header-menu__content.is-open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgb(0 0 0 / 0.2);
    z-index: var(--Z_INDEX_BEHIND);
}

@media only screen and (min-width: 768px) {
    .u-top-header-menu__button {
        display: none;
    }

    .u-top-header-menu__content {
        position: relative;
        inset: unset;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
        row-gap: 4px;
        flex: 1;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
    }

    .u-top-header-menu__content::before {
        content: none;
    }
}

@media (scripting: none) {
    .u-top-header-menu__button {
        display: none;
    }
}

/*----------------------------------- .u-top-header-nav --------------------------------------*/
.u-top-header-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.u-top-header-nav__link {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.u-top-header-nav__link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100vmax;
    background-color: var(--COLOR_ACCENT);
    flex-shrink: 0;
    opacity: 0;
}

.u-top-header-nav__text > .u-external-icon {
    margin-left: 8px;
    filter: brightness(0) invert(1);
}

@media only screen and (min-width: 768px) {
    .u-top-header-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 4px 26px;
        padding: 4px;
    }

    .u-top-header-nav__link {
        flex-direction: column;
        font-size: 1.8rem;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-header-nav__link:hover {
        font-weight: var(--FONT_WEIGHT_BOLD);
    }

    .u-top-header-nav__link:hover::after {
        opacity: 1;
    }
}

/*----------------------------------- .u-top-header-utility --------------------------------------*/
@media only screen and (max-width: 767px) {
    .u-top-header-utility {
        border-top: 1px solid rgb(255 255 255 / 0.2);
        margin-top: 24px;
        padding-top: 24px;
    }

    .u-top-header-utility__faq {
        display: none;
    }

    .u-top-header-utility__language-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .u-top-header-utility__language-link {
        font-size: 1.2rem;
    }
}

@media only screen and (min-width: 768px) {
    .u-top-header-utility {
        display: flex;
        justify-content: flex-end;
        column-gap: 24px;
    }

    .u-top-header-utility__language-list {
        display: none;
    }

    .u-top-header-utility__faq {
        display: block;
    }

    .u-top-header-utility__faq,
    .u-top-header-utility__language-anchor {
        font-size: 1.4rem;
    }

    .u-top-header-utility__language-anchor {
        display: flex;
        align-items: center;
        column-gap: 8px;
    }

    .u-top-header-utility__language-anchor::after {
        content: "";
        width: 4px;
        height: 8px;
        rotate: 90deg;
        background-color: var(--COLOR_BASE);
        mask: url('/common/images/renew/top/ico-arrow.svg') no-repeat center / contain;
        flex-shrink: 0;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-header-utility__faq:hover,
    .u-top-header-utility__language-anchor:hover {
        text-decoration: underline;
    }
}


/*----------------------------------- .u-top-mv --------------------------------------*/
.u-top-mv {
    position: relative;
    height: 100dvh;
    padding-top: var(--HEIGHT_HEADER);
}

.u-top-mv__content {
    position: absolute;
    bottom: -90px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
}

.u-top-mv__background-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: var(--Z_INDEX_BEHIND);
}

@media only screen and (min-width: 768px) {
    .u-top-mv {
        height: 750px;
    }

    .u-top-mv__content {
        position: relative;
        justify-content: flex-end;
        height: 100%;
        row-gap: 32px;
    }
}

/*----------------------------------- .u-top-cta --------------------------------------*/
.u-top-cta {
    --column-gap: 40px;

    display: flex;
    justify-content: center;
    column-gap: var(--column-gap);
    width: calc(100% - var(--GUTTER_CONTENT) * 2);
    padding: 16px;
    margin-inline: auto;
    border-radius: 10px;
    background-color: rgb(0 19 68 / 0.8);
    color: var(--COLOR_BASE);
}

.u-top-cta__ticket {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px 24px;
}

.u-top-cta__ticket::after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(var(--column-gap) / 2 * -1);
    width: 1px;
    height: 100%;
    background-color: var(--COLOR_BASE);
    opacity: 0.5;
}

.u-top-cta__ticket-title {
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-cta__ticket-link {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-radius: 100vmax;
    padding: 12px 10px 12px 45px;
    background-color: var(--COLOR_BASE);
    transition: background-color var(--TRANSITION);
}

.u-top-cta__ticket-link::before {
    content: "";
    position: absolute;
    right: 18px;
    width: 4px;
    height: 7px;
    background-color: var(--COLOR_BASE);
    mask: url('/common/images/renew/top/ico-arrow.svg') no-repeat center / contain;
    transition: background-color var(--TRANSITION);
}

.u-top-cta__ticket-link::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 100vmax;
    border: 1px solid transparent;
    background-color: var(--COLOR_NAVY);
    flex-shrink: 0;
    transition: background-color var(--TRANSITION), border-color var(--TRANSITION);
}

.u-top-cta__ticket-image {
    max-width: 91px;
}

.u-top-cta__sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
}

.u-top-cta__sns-title {
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-cta__sns-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.u-top-cta__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 100vmax;
    background-color: var(--COLOR_BASE);
    flex-shrink: 0;
    transition: background-color var(--TRANSITION);
}

.u-top-cta__sns-text {
    display: none;
}

@media only screen and (min-width: 768px) {
    .u-top-cta {
        --column-gap: 96px;

        max-width: 1200px;
        margin-inline: auto;
        padding: 20px 24px;
    }

    .u-top-cta__ticket {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .u-top-cta__ticket-title {
        font-size: 1.8rem;
    }

    .u-top-cta__ticket-link {
        column-gap: 20px;
        padding: 16px 24px 16px 50px;
    }

    .u-top-cta__ticket-link::before {
        right: 40px;
        width: 7px;
        height: 12px;
    }

    .u-top-cta__ticket-link::after {
        width: 42px;
        height: 42px;
    }

    .u-top-cta__ticket-image {
        max-width: 129px;
    }

    .u-top-cta__sns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 24px;
    }

    .u-top-cta__sns-title {
        font-size: 1.8rem;
    }

    .u-top-cta__sns-list {
        flex-wrap: nowrap;
        column-gap: 24px;
    }

    .u-top-cta__sns-item {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        column-gap: 16px;
    }

    .u-top-cta__sns-text {
        display: block;
        font-weight: var(--FONT_WEIGHT_BOLD);
        font-size: 1.8rem;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-cta__ticket-link:hover {
        background-color: var(--COLOR_LIGHT_BLUE);
    }

    .u-top-cta__ticket-link:hover::before {
        background-color: var(--COLOR_NAVY);
    }

    .u-top-cta__ticket-link:hover::after {
        border-color: var(--COLOR_NAVY);
        background-color: var(--COLOR_BASE);
    }

    .u-top-cta__sns-link:hover {
        background-color: var(--COLOR_LIGHT_BLUE);
    }
}

/*----------------------------------- .u-top-inquiry --------------------------------------*/
.u-top-inquiry {
    width: calc(100% - var(--GUTTER_CONTENT) * 2);
    border-radius: 10px;
    margin-inline: auto;
    background-color: var(--COLOR_BASE);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 0.15);
}

.u-top-inquiry__inner {
    display: flex;
    flex-direction: column;
    gap: 20px 32px;
    padding: 16px;
}

.u-top-inquiry__tel {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.u-top-inquiry__tel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
}

.u-top-inquiry__tel-inner::before {
    content: "";
    width: 55px;
    height: 55px;
    border-radius: 100vmax;
    background-image: url('/common/images/renew/top/ico-tel.svg');
    background-repeat: no-repeat;
    background-size: 23px;
    background-position: center;
    background-color: var(--COLOR_LIGHT_BLUE);
    flex-shrink: 0;
}

.u-top-inquiry__tel-text {
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-inquiry__tel-link {
    color: var(--COLOR_BLUE);
    font-family: var(--FONT_FAMILY_EN);
    font-style: italic;
    font-size: 2.8rem;
    line-height: 1.5;
}

.u-top-inquiry__tel-note {
    font-size: 1.2rem;
}

.u-top-inquiry__faq-text {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 8px;
    width: fit-content;
    margin-inline: auto;
    font-size: 1.6rem;
    font-weight: var(--FONT_WEIGHT_BOLD);
    line-height: 1.5;
}

.u-top-inquiry__faq-text::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 4px;
    height: 7px;
    background-color: var(--COLOR_BASE);
    mask: url('/common/images/renew/top/ico-arrow.svg') no-repeat center / contain;
    transition: background-color var(--TRANSITION);
}

.u-top-inquiry__faq-text::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 100vmax;
    border: 1px solid transparent;
    background-color: var(--COLOR_NAVY);
    flex-shrink: 0;
    transition: background-color var(--TRANSITION);
}

@media only screen and (min-width: 768px) {
    .u-top-inquiry {
        max-width: 1200px;
    }

    .u-top-inquiry__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1088px;
        margin-inline: auto;
        padding: 20px 24px;
    }

    .u-top-inquiry__tel {
        position: relative;
        padding-left: calc(80px + 40px);
        flex: 1;
        row-gap: 4px;
    }

    .u-top-inquiry__tel::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 80px;
        height: 80px;
        border-radius: 100vmax;
        background-image: url('/common/images/renew/top/ico-tel.svg');
        background-repeat: no-repeat;
        background-size: 34px;
        background-position: center;
        background-color: var(--COLOR_LIGHT_BLUE);
        transform: translateY(-50%);
        flex-shrink: 0;
    }

    .u-top-inquiry__tel-inner {
        display: contents;
    }

    .u-top-inquiry__tel-inner::before {
        content: none;
    }

    .u-top-inquiry__tel-content {
        display: contents;
    }

    .u-top-inquiry__tel-link {
        width: fit-content;
        font-size: 4rem;
        font-weight: var(--FONT_WEIGHT_BOLD);
        line-height: 1.2;
    }

    .u-top-inquiry__tel-note {
        grid-column: 2 / 3;
        font-size: 1.4rem;
    }

    .u-top-inquiry__faq {
        max-width: 238px;
        flex: 1;
    }

    .u-top-inquiry__faq-text {
        column-gap: 16px;
        font-size: 2.2rem;
        transition: color var(--TRANSITION);
    }

    .u-top-inquiry__faq-text::before {
        left: 19px;
        width: 7px;
        height: 12px;
    }

    .u-top-inquiry__faq-text::after {
        width: 42px;
        height: 42px;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-inquiry__faq-link:hover .u-top-inquiry__faq-text {
        color: var(--COLOR_BLUE);
    }

    .u-top-inquiry__faq-link:hover .u-top-inquiry__faq-text::before {
        background-color: var(--COLOR_NAVY);
    }

    .u-top-inquiry__faq-link:hover .u-top-inquiry__faq-text::after {
        background-color: var(--COLOR_BASE);
        border-color: var(--COLOR_NAVY);
    }
}

/*----------------------------------- .u-top-content --------------------------------------*/
.u-top-content {
    padding-inline: var(--GUTTER_CONTENT);
}

.u-top-content:first-child {
    padding-top: 90px;
}

.u-top-content:last-child {
    padding-bottom: 72px;
}

.u-top-content--full {
    padding-inline: 0;
}

@media only screen and (min-width: 768px) {
    .u-top-content {
        max-width: 1280px;
        margin-inline: auto;
    }
    
    .u-top-content:first-child {
        padding-top: 80px;
    }

    .u-top-content:last-child {
        padding-bottom: 120px;
    }

    .u-top-content--full {
        max-width: unset;
    }
}

/*----------------------------------- .u-top-section --------------------------------------*/
.u-top-section {
    margin-top: 40px;
}

@media only screen and (min-width: 768px) {
    .u-top-section {
        margin-top: 80px;
    }
}

/*----------------------------------- .u-top-heading-2 --------------------------------------*/
.u-top-heading-2 {
    display: flex;
    flex-direction: column;
}

.u-top-heading-2__title {
    font-size: 2.4rem;
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-heading-2__subtitle {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: var(--FONT_FAMILY_EN);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: var(--FONT_WEIGHT);
    color: var(--COLOR_BLUE);
    line-height: 1.5;
}

.u-top-heading-2__subtitle::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

@media only screen and (min-width: 768px) {
    .u-top-heading-2__title {
        font-size: 2.8rem;
    }

    .u-top-heading-2__subtitle {
        font-size: 1.4rem;
    }
}

/*----------------------------------- .u-top-button --------------------------------------*/
.u-top-button {
    margin-top: 24px;
}

.u-top-button__item {
    display: flex;
    justify-content: center;
}

.u-top-button__link {
    display: inline-block;
    min-width: 240px;
    border-radius: 100vmax;
    padding: 12px 10px 12px 24px;
    background-color: var(--COLOR_LIGHT_GRAY);
    font-weight: var(--FONT_WEIGHT_BOLD);
    transition: background-color var(--TRANSITION), color var(--TRANSITION);
}

.u-top-button__text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
    padding-inline: 10px 30px;
    color: var(--COLOR_NAVY);
    transition: color var(--TRANSITION);
}

.u-top-button__text::before {
    content: "";
    position: absolute;
    right: 8px;
    width: 4px;
    height: 7px;
    background-color: var(--COLOR_BASE);
    mask: url('/common/images/renew/top/ico-arrow.svg') no-repeat center / contain;
    transition: background-color var(--TRANSITION);
    z-index: var(--Z_INDEX_BASE);
}

.u-top-button__text::after {
    content: "";
    position: absolute;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 100vmax;
    background-color: currentColor;
    flex-shrink: 0;
    transition: background-color var(--TRANSITION);
}

@media only screen and (min-width: 768px) {
    .u-top-button {
        margin-top: 40px;
    }

    .u-top-button__link {
        min-width: 320px;
        padding: 16px 24px 16px 50px;
    }

    .u-top-button__text {
        justify-content: space-between;
        column-gap: 32px;
        min-height: 42px;
        padding-inline: 0 50px;
    }

    .u-top-button__text::before {
        right: 16px;
        width: 7px;
        height: 12px;
    }

    .u-top-button__text::after {
        width: 42px;
        height: 42px;
    }

    .u-top-sponsor .u-top-button__link {
        width: 240px;
        min-width: unset;
        padding-inline: 32px 24px;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-button__link:hover {
        background-color: var(--COLOR_NAVY);
        color: var(--COLOR_BASE);
    }

    .u-top-button__link:hover .u-top-button__text {
        color: var(--COLOR_BASE);
    }

    .u-top-button__link:hover .u-top-button__text::before {
        background-color: var(--COLOR_NAVY);
    }

    .u-top-button__link:hover .u-top-button__text::after {
        background-color: var(--COLOR_BASE);
    }
}

/*----------------------------------- .u-top-notice --------------------------------------*/
.u-top-notice {
    border-radius: 10px;
    padding: 24px 16px;
    margin-top: 24px;
    background-color: rgb(191 191 179 / 0.2);
}

.u-top-notice__list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-top: 24px;
}

.u-top-notice__item {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.u-top-notice__title {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 2rem;
    color: var(--COLOR_NAVY);
    line-height: 1.2;
}

.u-top-notice__title::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('/common/images/renew/top/ico-caution.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.u-top-notice__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.u-top-notice__date {
    color: var(--COLOR_GRAY);
}

.u-top-notice__label {
    display: inline-block;
    min-width: 90px;
    height: fit-content;
    border: 1px solid currentColor;
    border-radius: 100vmax;
    padding: 4px 8px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    color: var(--COLOR_GRAY);
}

.u-top-notice__link {
    position: relative;
    width: fit-content;
    text-align: left;
}

.u-top-notice__link:any-link::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 12px;
    mask: url('/common/images/renew/top/ico-arrow.svg') no-repeat center / contain;
    margin-left: 8px;
    background-color: var(--COLOR_BLUE);
}

.u-top-notice__link:has(.u-external-icon)::after {
    content: none;
}

.u-top-notice__text > .u-external-icon {
    margin-left: 8px;
}

@media only screen and (min-width: 768px) {
    .u-top-notice {
        padding: 32px 40px;
        margin-top: 32px;
    }

    .u-top-notice__title {
        column-gap: 20px;
        font-size: 2.4rem;
    }

    .u-top-notice__title::before {
        width: 36px;
        height: 36px;
    }

    .u-top-notice__list {
        display: grid;
        grid-template-columns: auto 24px auto 40px 1fr;
    }

    .u-top-notice__item {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1 / -1;
    }

    .u-top-notice__info {
        display: contents;
    }

    .u-top-notice__date {
        font-size: 1.4rem;
    }

    .u-top-notice__label {
        grid-column: 3 / 4;
        min-width: 120px;
        max-width: 180px;
        font-size: 1.2rem;
    }

    .u-top-notice__link {
        grid-column: 5 / -1;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-notice__link:any-link:hover {
        text-decoration: underline;
        font-weight: var(--FONT_WEIGHT_BOLD);
        color: var(--COLOR_BLUE);
    }
}

/*----------------------------------- .u-top-schedule --------------------------------------*/
.u-top-schedule__date {
    margin-top: 32px;
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-schedule__list {
    display: grid;
    gap: 16px 24px;
    margin-top: 24px;
}

.u-top-schedule__link {
    --opacity: 0.1;

    display: flex;
    flex-direction: column;
    row-gap: 16px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid var(--COLOR_LIGHT_GRAY);
    box-shadow: 4px 4px 10px 0 rgba(0 0 0 / var(--opacity));
    transition: box-shadow var(--TRANSITION);
}

.u-top-schedule__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 20px;
}

.u-top-schedule__category {
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px 16px 0 0;
    color: var(--COLOR_NAVY);
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-schedule__category::before {
    content: "";
    border-radius: 100vmax;
    width: 4px;
    height: 4px;
    background-color: currentColor;
    flex-shrink: 0;
}

.u-top-schedule__time {
    display: inline-flex;
    align-items: center;
    border-radius: 10px 0;
    background-color: var(--COLOR_LIGHT_BLUE);
    padding: 8px 40px;
    font-size: 1.6rem;
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-schedule__head:not(:has(.u-top-schedule__time)) {
    justify-content: flex-end;
}

.u-top-schedule__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
    height: 100%;
    padding: 0 16px 24px;
}

.u-top-schedule__link:not(:has(.u-top-schedule__head)) .u-top-schedule__body {
    padding-block-start: 24px;
}

.u-top-schedule__game {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px 32px;
    padding-inline: 20px;
    margin-inline: auto;
}

.u-top-schedule__game-group {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    align-items: flex-end;
}

.u-top-schedule__game-text {
    max-width: 112px;
    color: var(--COLOR_NAVY);
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-schedule__game-result {
    font-size: 1.6rem;
    font-weight: var(--FONT_WEIGHT_BOLD);
    text-align: center;
    color: var(--COLOR_ACCENT);
}

.u-top-schedule__label {
    display: inline-block;
    min-width: 76px;
    border-radius: 5px;
    padding: 4px 24px;
    background-color: var(--COLOR_RED);
    color: var(--COLOR_BASE);
}

.u-top-schedule__text > .u-external-icon {
    margin-left: 8px;
}

.u-top-schedule__no-data-text {
    margin-top: 24px;
}

@media only screen and (min-width: 768px) {
    .u-top-schedule__date {
        margin-top: 40px;
        font-size: 2rem;
    }

    .u-top-schedule__list {
        margin-top: 32px;
        grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    }

    .u-top-schedule__time {
        padding-block: 10px;
    }

    .u-top-schedule__body {
        padding: 0 24px 24px;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-schedule__link:hover {
        --opacity: 0.2;
    }

    .u-top-schedule__link:hover .u-top-schedule__text {
        color: var(--COLOR_BLUE);
        text-decoration: underline;
    }
}

/*----------------------------------- .u-top-recommend --------------------------------------*/
.u-top-recommend {
    display: grid;
    gap: 16px 24px;
    margin-top: 24px;
}

.u-top-recommend__image {
    position: relative;
    width: 100%;
    aspect-ratio: 71 / 29;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity var(--TRANSITION);
}

@media only screen and (min-width: 768px) {
    .u-top-recommend {
        grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
        margin-top: 40px;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-recommend__link:hover .u-top-recommend__image {
        opacity: 0.7;
    }
}

/*----------------------------------- .u-top-tab --------------------------------------*/
.u-top-tab {
    margin-top: 24px;
}

.u-top-tab__list {
    display: flex;
    gap: 24px 8px;
    overflow-x: auto;
}

.u-top-tab__item {
    display: flex;
    flex-shrink: 0;
}

.u-top-tab__tab {
    display: block;
    min-width: 95px;
    border: 1px solid currentColor;
    border-radius: 100vmax;
    padding: 12px 24px;
    background-color: var(--COLOR_BASE);
    color: var(--COLOR_NAVY);
    font-weight: var(--FONT_WEIGHT_BOLD);
    line-height: 1.5;
    transition: opacity var(--TRANSITION);
}

.u-top-tab__tab[aria-selected='true'] {
    background-color: var(--COLOR_NAVY);
    color: var(--COLOR_BASE);
}

.u-top-tab__content {
    margin-top: 24px;
}

@media only screen and (min-width: 768px) {
    .u-top-tab {
        display: flex;
        column-gap: 80px;
        margin-top: 40px;
    }

    .u-top-tab__list {
        flex-direction: column;
        max-width: 240px;
    }

    .u-top-tab__tab {
        padding-block: 10px;
    }

    .u-top-tab__content {
        flex: 1;
        margin-top: 0;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-tab__tab:hover {
        opacity: 0.5;
    }
}

/*----------------------------------- .u-top-topics --------------------------------------*/
.u-top-topics {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

.u-top-topics__link {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    border-radius: 0 10px 10px 0;
    border-left: 4px solid var(--COLOR_NAVY);
    padding: 16px 50px 16px 24px;
    transition: background-color var(--TRANSITION);
}

.u-top-topics__link:any-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    display: inline-block;
    width: 7px;
    height: 12px;
    mask: url('/common/images/renew/top/ico-arrow.svg') no-repeat center / contain;
    margin-left: 8px;
    background-color: var(--COLOR_BASE);
    transform: translateY(-50%);
    transition: background-color var(--TRANSITION);
    z-index: var(--Z_INDEX_BASE);
}

.u-top-topics__link:any-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 100vmax;
    background-color: var(--COLOR_NAVY);
    flex-shrink: 0;
    transform: translateY(-50%);
    transition: background-color var(--TRANSITION);
}

.u-top-topics__title {
    font-size: 1.6rem;
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-topics__title > .u-external-icon {
    margin-left: 8px;
}

.u-top-topics__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 16px;
}

.u-top-topics__date {
    color: var(--COLOR_GRAY);
}

.u-top-topics__label {
    min-width: 90px;
    border: 1px solid currentColor;
    border-radius: 100vmax;
    padding: 4px 8px;
    color: var(--COLOR_GRAY);
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

@media only screen and (min-width: 768px) {
    .u-top-topics {
        row-gap: 8px;
    }
    
    .u-top-topics__link {
        padding: 24px 96px 24px 40px;
    }
    
    .u-top-topics__link::before {
        right: 56px;
    }

    .u-top-topics__link::after {
        right: 40px;
        width: 42px;
        height: 42px;
    }

    .u-top-topics__label {
        min-width: 120px;
        font-size: 1.2rem;
    }

    .u-top-topics__date {
        font-size: 1.4rem;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-topics__link:any-link:hover {
        background-color: var(--COLOR_LIGHT_GRAY);
    }

    .u-top-topics__link:any-link:hover::before {
        background-color: var(--COLOR_NAVY);
    }

    .u-top-topics__link:any-link:hover::after {
        background-color: var(--COLOR_BASE);
    }
}

/*----------------------------------- .u-top-information --------------------------------------*/
.u-top-information {
    --color: #F9F9F8;
    --start-position: 60px;

    margin-top: 24px;
    border-image-source: linear-gradient(transparent 0, transparent var(--start-position), var(--color) var(--start-position), var(--color) 100%);
    border-image-slice: fill 0;
    border-image-width: 1;
    border-image-outset: 0 100vw;
    padding-bottom: 32px;
}

.u-top-information__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.u-top-information__link {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    row-gap: 8px;
    border-radius: 10px;
    border: 1px solid var(--COLOR_LIGHT_GRAY);
    padding: 16px;
    height: 100%;
    background-color: var(--COLOR_BASE);
    box-shadow: 4px 4px 8px 0 rgb(0 0 0 / 0.1);
    transition: box-shadow var(--TRANSITION);
}

.u-top-information__text {
    text-align: center;
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-information__image {
    width: 60px;
}

.u-top-information__detail-list {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.u-top-information__detail-link {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    column-gap: 24px;
    border-radius: 10px;
    border: 1px solid var(--COLOR_LIGHT_GRAY);
    box-shadow: 4px 4px 8px 0 rgb(0 0 0 / 0.1);
    background-color: var(--COLOR_BASE);
    padding: 16px;
    transition: box-shadow var(--TRANSITION);
}

.u-top-information__detail-text {
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-information__detail-image {
    width: 32px;
}

.u-top-information__button-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.u-top-information__button-item {
    height: 100%;
}

.u-top-information__button-link {
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 100vmax;
    padding: 12px 8px 12px 24px;
    background-color: var(--COLOR_LIGHT_GRAY);
    transition: background-color var(--TRANSITION), color var(--TRANSITION);
}

.u-top-information__button-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 4px;
    width: 100%;
    font-weight: var(--FONT_WEIGHT_BOLD);
    color: var(--COLOR_NAVY);
    transition: color var(--TRANSITION);
}

.u-top-information__button-text::before {
    content: "";
    position: absolute;
    right: 8px;
    width: 4px;
    height: 7px;
    background-color: var(--COLOR_BASE);
    mask: url(/common/images/renew/top/ico-arrow.svg) no-repeat center / contain;
    transition: background-color var(--TRANSITION);
}

.u-top-information__button-text::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 100vmax;
    background-color: currentColor;
    flex-shrink: 0;
    transition: background-color var(--TRANSITION);
}

@media only screen and (min-width: 768px) {
    .u-top-information {
        --start-position: 80px;

        margin-top: 40px;
        padding-bottom: 40px;
    }

    .u-top-information__list {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        column-gap: 24px;
    }

    .u-top-information__link {
        row-gap: 6px;
    }

    .u-top-information__image {
        width: 90px;
    }
    
    .u-top-information__detail-list {
        grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
        gap: 24px;
        margin-top: 24px;
    }

    .u-top-information__button-list {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        margin-top: 24px;
    }

    .u-top-information__button-link {
        padding: 16px 24px 16px 48px;
    }

    .u-top-information__button-text {
        column-gap: 16px;
    }

    .u-top-information__button-text::before {
        right: 16px;
        width: 7px;
        height: 12px;
    }

    .u-top-information__button-text::after {
        width: 42px;
        height: 42px;
    }

    .u-top-information__detail-image {
        width: 48px;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-information__link:hover {
        box-shadow: 4px 4px 20px 0 rgb(0 0 0 / 0.2);;
    }

    .u-top-information__link:hover .u-top-information__text {
        color: var(--COLOR_BLUE);
        text-decoration: underline;
    }

    .u-top-information__detail-link:hover {
        box-shadow: 4px 4px 20px 0 rgb(0 0 0 / 0.2);;
    }

    .u-top-information__detail-link:hover .u-top-information__detail-text {
        color: var(--COLOR_BLUE);
        text-decoration: underline;
    }

    .u-top-information__button-link:hover {
        background-color: var(--COLOR_NAVY);
        color: var(--COLOR_BASE);
    }

    .u-top-information__button-link:hover .u-top-information__button-text {
        color: var(--COLOR_BASE);
    }

    .u-top-information__button-link:hover .u-top-information__button-text::before {
        background-color: var(--COLOR_NAVY);
    }

    .u-top-information__button-link:hover .u-top-information__button-text::after {
        background-color: var(--COLOR_BASE);
    }
}

/*----------------------------------- .u-top-sponsor --------------------------------------*/
.u-top-sponsor {
    padding-block: 24px;
    background-color: var(--COLOR_GRAY);
    background-image: url('/common/images/renew/top/sponsor-bg-sp.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.u-top-sponsor__inner {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: calc(100% - calc(var(--GUTTER_CONTENT) * 2));
    border-radius: 10px;
    margin-inline: auto;
    padding: 24px 16px;
    background-color: var(--COLOR_BASE);
}

.u-top-sponsor__group > :first-child {
    margin-top: 0;
}

.u-top-sponsor__title {
    color: var(--COLOR_NAVY);
    font-size: 1.8rem;
}

.u-top-sponsor__text {
    margin-top: 24px;
}

@media only screen and (min-width: 768px) {
    .u-top-sponsor {
        padding: 40px;
        background-image: url('/common/images/renew/top/sponsor-bg-pc.webp');
        background-position: center;
    }

    .u-top-sponsor__inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        column-gap: 20px;
        max-width: 1200px;
        padding: 32px 80px;
    }

    .u-top-sponsor__title {
        font-size: 2.4rem;
    }
}

/*----------------------------------- .u-top-banner --------------------------------------*/
.u-top-banner {
    margin-top: 32px;
}

.u-top-banner__list,
.u-top-banner__detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.u-top-banner__image,
.u-top-banner__detail-image {
    width: 100%;
    transition: opacity var(--TRANSITION);
}

.u-top-banner__detail-list {
    margin-top: 10px;
}

@media only screen and (min-width: 768px) {
    .u-top-banner {
        margin-top: 40px;
    }

    .u-top-banner__list {
        grid-template-columns: repeat(auto-fill, minmax(294px, 1fr));
        gap: 20px;
    }

    .u-top-banner__detail-list {
        grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-banner__link:hover .u-top-banner__image,
    .u-top-banner__detail-link:hover .u-top-banner__detail-image {
        opacity: 0.7;
    }
}

/*----------------------------------- .u-top-footer --------------------------------------*/
.u-top-footer {
    position: relative;
}

.u-top-footer__page-top {
    display: none;
}

.u-top-footer__body-inner {
    display: flex;
    flex-direction: column-reverse;
    border-top: 1px solid var(--COLOR_BORDER);
}

.u-top-footer__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
    padding: 16px 24px;
    background-color: var(--COLOR_NAVY);
    color: var(--COLOR_BASE);
}

.u-top-footer__logo-image {
    width: 234px;
    transition: opacity var(--TRANSITION);
}

.u-top-footer__language-text {
    display: none;
}

.u-top-footer__language-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.u-top-footer__language-link {
    font-size: 1.2rem;
}

.u-top-footer__sns {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    width: 100%;
    padding: 20px 24px 12px;
}

.u-top-footer__sns-title {
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-footer__sns-list {
    display: flex;
    column-gap: 16px;
}

.u-top-footer__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100vmax;
    background-color: var(--COLOR_LIGHT_GRAY);
    flex-shrink: 0;
    transition: background-color var(--TRANSITION);
}

.u-top-footer__bottom {
    background-color: var(--COLOR_NAVY);
    color: var(--COLOR_BASE);
    border-top: 1px solid var(--COLOR_BORDER);
}

.u-top-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 24px;
}

.u-top-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
}

.u-top-footer__nav-link {
    font-size: 1.2rem;
    font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-top-footer__copyright {
    font-size: 1rem;
}

@media only screen and (min-width: 768px) {
    .u-top-footer__page-top {
        --size-bullet: 60px;

        position: fixed;
        bottom: 40px;
        display: block;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--TRANSITION), visibility var(--TRANSITION);
        pointer-events: none;
    }

    .u-top-footer__page-top.is-shown {
        opacity: 1;
        visibility: visible;
    }

    .u-top-footer__page-top.is-fixed {
        position: absolute;
        top: calc(var(--size-bullet) / 2 * -1);
    }

    .u-top-footer__page-top-inner {
        max-width: 1280px;
        padding-inline: var(--GUTTER_CONTENT);
        margin-inline: auto;
    }

    .u-top-footer__page-top-link {
        position: relative;
        display: block;
        width: var(--size-bullet);
        height: var(--size-bullet);
        border-radius: 100vmax;
        border: 1px solid var(--COLOR_BASE);
        margin-left: auto   ;
        background-color: rgb(0 19 44 / 0.3);
        pointer-events: auto;
        transition: background-color var(--TRANSITION);
    }

    .u-top-footer__page-top-link::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 26px;
        width: 8px;
        height: 17px;
        rotate: -90deg;
        background-color: var(--COLOR_BASE);
        mask: url('/common/images/renew/top/ico-arrow.svg') no-repeat center / contain;
    }

    .u-top-footer__page-top-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
    }

    .u-top-footer__body {
        background-color: var(--COLOR_NAVY);
        color: var(--COLOR_BASE);
    }

    .u-top-footer__body-inner {
        flex-direction: row;
        column-gap: 60px;
        max-width: 1280px;
        margin-inline: auto;
        border: none;
        padding-inline: var(--GUTTER_CONTENT);
    }

    .u-top-footer__group {
        flex-direction: row;
        justify-content: space-between;
        column-gap: 40px;
        width: 100%;
        flex: 1;
        padding: 40px 0;
    }

    .u-top-footer__language {
        display: flex;
        align-items: center;
        column-gap: 32px;
    }

    .u-top-footer__language-text {
        display: block;
        font-size: 1.4rem;
    }

    .u-top-footer__language-link {
        font-size: 1.3rem;
    }

    .u-top-footer__sns {
        width: auto;
        padding: 40px 0;
    }

    .u-top-footer__sns-title {
        font-size: 1.4rem;
    }

    .u-top-footer__sns-link {
        width: 35px;
        height: 35px;
    }

    .u-top-footer__sns-image {
        width: 14px;
    }

    .u-top-footer__bottom-inner {
        flex-direction: row-reverse;
        justify-content: space-between;
        column-gap: 40px;
        max-width: 1280px;
        margin-inline: auto;
        padding-inline: var(--GUTTER_CONTENT);
    }

    .u-top-footer__nav-link {
        font-size: 1.4rem;
    }

    .u-top-footer__copyright {
        font-size: 1.4rem;
    }
}

@media only screen and (any-hover: hover) {
    .u-top-footer__page-top-link:hover {
        background-color: var(--COLOR_NAVY);
    }

    .u-top-footer__logo-link:hover .u-top-footer__logo-image {
        opacity: 0.5;
    }

    .u-top-footer__language-link:hover {
        text-decoration: underline;
    }

    .u-top-footer__sns-link:hover {
        background-color: var(--COLOR_LIGHT_BLUE);
    }

    .u-top-footer__nav-link:hover {
        text-decoration: underline;
    }
}

@media (scripting: none) {
    .u-top-footer__page-top {
        opacity: 1;
        visibility: visible;
    }
}