/* ========================================
   TOP改修
======================================== */

/* 公式X */
.x-card {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 35px;

    display: flex;
    align-items: center;
    gap: 24px;

    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.x-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    flex-shrink: 0;
}

.x-card-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 35px;
}

.x-card-title {
    margin: 0;
}

.x-card-id {
    margin: 0;
    white-space: nowrap;
}

.x-card-link {
    display: inline-block;
    width: auto;
    justify-self: end;

    padding: 10px 24px;
    background: #000;
    color: #fff;
    border-radius: 999px;

    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

.x-card-link:hover {
    background: #333;
}


@media screen and (max-width: 471px) {

    .x-card {
        padding: 18px 20px;
        gap: 16px;
    }

    .x-card-icon {
        width: 68px;
        height: 68px;
    }

    .x-card-body {
        display: block;
    }

    .x-card-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .x-card-id {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .x-card-link {
        font-size: 13px;
    }

}

/* ユニットロゴ */
.top-unit-marquee {
    ...
}

/* スマホ */
@media screen and (max-width: 471px) {
    ...
}

/*プレイリスト*/

.top-unit-marquee {
    width: 100%;
    overflow: hidden;
    margin: 25px 0;
}

.top-unit-track {
    display: flex;
    width: max-content;
    animation: top-unit-marquee 25s linear infinite;
}

.top-unit-set {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    padding-right: 20px;
}

.top-unit-set a {
    flex-shrink: 0;
}

.top-unit-set img {
    display: block;
    width: 120px;
    height: auto;
}

@keyframes top-unit-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}




/*EVENT EXTRA*/

.top-info-block {
    margin: 10px 0 50px 0;
}

.top-info-block h2 {
    margin: 20px 0 5px 0;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1;
}

.top-info-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    width: 100%;
    min-width: 0;
}
.top-info-card {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 50px 12px 0;

    color: #000;
    text-decoration: none;
}

.top-info-card:hover .top-info-title {
	color: gray;
}

.top-info-date {
    display: block;
    margin-bottom: 2px;

    color: #777;
    font-size: 10px;
}

.top-info-title {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

@media screen and (max-width: 471px) {

    .top-info-block {
        margin: 20px 0;
    }

    .top-info-block h2 {
        font-size: 24px;
    }

    .top-info-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .top-info-card {
        padding: 12px;
    }

    .top-info-title {
        font-size: 14px;
    }
}


.top-info-heading {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin: 0 0 28px;
}

.top-info-heading-en {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: .05em;
}

.top-info-heading-ja {
    position: relative;
    top: -5px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 10px;
    font-weight: 200;
    letter-spacing: .08em;
    color: #666;
}


@media screen and (max-width: 471px) {

    .top-info-heading {
        gap: 8px;
    }

    .top-info-heading-en {
        font-size: 26px;
    }

    .top-info-heading-ja {
        font-size: 11px;
    }
}





.top-info-card {
    position: relative;
    display: block;
    padding: 12px 10px 12px 0;

    color: #000;
    text-decoration: none;

    transition: background-color .2s;
}

.top-info-card::after {
    content: ">>>";
    position: absolute;
    top: 50%;
    right: 20px;

    transform: translateY(-50%) translateX(-8px);

    font-size: 18px;
    letter-spacing: 2px;
    color: #999;

    opacity: 0;
    transition: .2s;
}

.top-info-card:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media screen and (max-width: 768px) {
    .top-info-card::after {
        display: none;
    }
}



/* EVENT / EXTRA 横幅調整 */
.top-info-list {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
}

.top-info-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


