hr {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #111;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.adidas-sis {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    font-family: source-han-sans-japanese, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.kv-select-screen {
    --kv-select-accent: #d8b65c;
    --kv-select-bg: #15150d;
    --kv-select-line: rgba(255, 255, 255, .14);
    --kv-select-text: #f8f8f4;
    --kv-select-muted: rgba(255, 255, 255, .7);
    display: grid;
    align-content: center;
    gap: 0px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 40px;
    overflow: visible;
    background: var(--kv-select-bg);
    color: var(--kv-select-text);
}

.kv-select-stage {
    position: relative;
    min-height: min(60vh, 500px);
    display: grid;
    place-items: center;
    overflow: visible;
    background: var(--kv-select-bg);
    perspective: 1300px;
    user-select: none;
    touch-action: pan-y;
}

.kv-select-stage::before {
    display: none;
}

.kv-select-stage::after {
    display: none;
}

.kv-select-carousel {
    position: relative;
    z-index: 2;
    width: 100%;
    height: min(38vw, 500px);
    min-height: 340px;
    contain: layout;
    overflow: visible;
    transform-style: preserve-3d;
}

.kv-select-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(390px, 52vw, 710px);
    aspect-ratio: 16 / 9;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #0e121a;
    color: inherit;
    cursor: pointer;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .44);
    backface-visibility: hidden;
    will-change: transform, opacity;
    transform:
        translate(-50%, -50%)
        translate3d(var(--x), 0, var(--z))
        rotateY(var(--ry))
        scale(var(--scale));
    opacity: var(--opacity);
    transition:
        box-shadow 220ms ease,
        filter 220ms ease;
}

.kv-select-stage.is-dragging .kv-select-card {
    cursor: grabbing;
}

.kv-select-card.is-active {
    box-shadow: 0 30px 70px rgba(0, 0, 0, .58);
}

.kv-select-card picture,
.kv-select-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.kv-select-card img {
    object-fit: cover;
    object-position: var(--position, center);
    background: #05070a;
    backface-visibility: hidden;
    pointer-events: none;
}

.kv-select-nav-button {
    position: absolute;
    top: 50%;
    z-index: 220;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .24);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.kv-select-nav-button:hover {
    background: rgba(255, 255, 255, .36);
    transform: translateY(-50%) scale(1.04);
}

.kv-select-nav-button.kv-select-prev {
    left: clamp(18px, calc(50% - 585px), calc(50% - 31vw));
}

.kv-select-nav-button.kv-select-next {
    right: clamp(18px, calc(50% - 585px), calc(50% - 31vw));
}

.kv-select-selection-panel {
    width: min(780px, calc(100% - 36px));
    margin: 0 auto;
}

.kv-select-country-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.kv-select-country-label span,
.kv-select-country-label strong {
    display: block;
}

.kv-select-selector-dots {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.kv-select-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 220px;
    height: 60px;
    padding: 12px 14px 10px;
    border: 0;
    border-radius: 6px;
    background: #c9c9c9;
    color: #111;
    cursor: pointer;
    text-align: center;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateX(calc(-50% + var(--tab-x, 0px))) scale(var(--tab-scale, 1));
    opacity: var(--tab-opacity, .55);
    pointer-events: var(--tab-events, auto);
    transition:
        background 180ms ease,
        color 180ms ease;
}

.kv-select-dot:hover {
    opacity: .86;
}

.kv-select-dot.is-active {
    background: #fff;
    opacity: 1;
}

.kv-select-dot b {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    white-space: nowrap;
}

.kv-select-dot span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.kv-select-dot--long b {
    font-size: 12px;
    letter-spacing: .04em;
}

.main-ct {
    width: min(1130px, calc(100% - 40px));
    margin: 0 auto;
}

.main-ttl {
    margin: 0 0 60px;
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.main-ttl span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
}

.new-items {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 100px 0;
    background-color: #f9f9f9;
    background-image:
        linear-gradient(45deg, transparent calc(50% - 1px), rgba(255, 255, 255, .9) 50%, transparent calc(50% + 1px)),
        linear-gradient(-45deg, transparent calc(50% - 1px), rgba(255, 255, 255, .9) 50%, transparent calc(50% + 1px));
    background-size: 260px 260px;
    overflow: hidden;
}

.new-items > * {
    width: min(1130px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.new-slider {
    margin: 0 auto;
    padding: 0;
}

.new-slider .slick-list.draggable {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    clip-path: inset(0 calc((100% - 100vw) / 2) 0 0);
}

.new-slider li {
    width: 260px !important;
    margin-right: 30px;
    padding: 0;
}

.new-slider a {
    display: flex;
    flex-direction: column;
    min-height: 332px;
    padding: 16px 16px 18px;
    background: #fff;
    transition: opacity .2s ease;
}

.new-slider a:hover {
    opacity: .72;
}

.new-slider img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    background: #fff;
}

.new-slider span {
    display: block;
    height: 54px;
    padding: 12px 0 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.55;
}

.new-slider a:after {
    content: "購入はこちら";
    display: block;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 10px;
    border-bottom: 1px solid #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.new-slider .slick-prev,
.new-slider .slick-next {
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .28);
}

.new-slider .slick-prev {
    left: -30px;
}

.new-slider .slick-next {
    right: -16px;
}

.new-slider .slick-disabled {
    opacity: .25;
    pointer-events: none;
}

.new-slider .slick-prev:before,
.new-slider .slick-next:before {
    font-size: 32px;
    opacity: 1;
}

.item-view {
    margin:40px auto 0;
    text-align: center;
}

.item-view a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 310px;
    min-height: 64px;
    padding: 13px 24px;
    background: #060606;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
    position: relative;
    border: 1px solid #060606;
    transition: background-color .25s ease, color .25s ease;
}

.item-view a:before,
.item-view a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    height: 1px;
    background: #fff;
    transition: background-color .25s ease;
}

.item-view a:before {
    width: 32px;
}

.item-view a:after {
    width: 9px;
    transform-origin: right center;
    transform: rotate(28deg);
}

.item-view a:hover {
    background: #fff;
    color: #060606;
}

.item-view a:hover:before,
.item-view a:hover:after {
    background: #060606;
}

.uniform-collection {
    width: min(1200px, calc(100vw - 40px));
    margin-left: 50%;
    padding: 100px 0 140px;
    transform: translateX(-50%);
}

.team-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
    width: min(800px, 100%);
    margin: 0 auto;
    border: 0;
}

.team-tabs a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 12px 14px 11px;
    border: 1px solid #111;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .03em;
    text-align: center;
    background: #fff;
    transition: background-color .25s ease, color .25s ease;
}

.team-tabs a:hover {
    background: #111;
    color: #fff;
}

.team-tabs span {
    display: block;
    margin-top: 8px;
    font-family: source-han-sans-japanese, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.team-list {
    display: grid;
    gap: 120px;
    margin-top: 80px;
}

.team-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0;
    align-items: stretch;
}

.team-card--right {
    grid-template-columns: repeat(3, 1fr);
}

.team-main {
    position: relative;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 56.6667%) minmax(0, 43.3333%);
    min-height: 0;
    overflow: hidden;
    background: #fff;
}

.team-main picture {
    grid-column: 1 / 2;
    grid-row: 1;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.team-main img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform .45s ease;
}

.team-main img:hover,
.team-main:has(.team-link:hover) img,
.team-main:has(> picture:hover) img {
    transform: scale(1.06);
}

.team-copy {
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
    min-height: 0;
    padding: 0 clamp(24px, 4.2vw, 50px);
    color: #111;
    text-align: left;
    background: #fff;
    grid-column: 2 / 3;
    grid-row: 1;
}

.team-card--right .team-main {
    grid-template-columns: minmax(0, 43.3333%) minmax(0, 56.6667%);
}

.team-card--right .team-main picture {
    grid-column: 2 / 3;
}

.team-card--right .team-copy {
    grid-column: 1 / 2;
}

.team-card:not(.team-card--right) .team-copy {
    left: auto;
    right: auto;
}

.team-copy:before {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 150px;
    height: 150px;
    background: var(--team-logo) center / contain no-repeat;
    opacity: .11;
}

.team-card#real {
    --team-logo: url("../img/new26-27/rm-logo.png");
}

.team-card#arsenal {
    --team-logo: url("../img/new26-27/as-logo.png");
}

.team-card#mufc {
    --team-logo: url("../img/new26-27/mu-logo.png");
}

.team-card#juventus {
    --team-logo: url("../img/new26-27/jv-logo.png");
}

.team-card#bayern {
    --team-logo: url("../img/new26-27/bm-logo.png");
}

.team-card#liverpool {
    --team-logo: url("../img/new26-27/lfc-logo.png");
}

.team-copy p {
    margin: 0 0 10px;
    color: #aaa;
    font-family: "Poppins", sans-serif;
    font-size: clamp(10px, 1.2vw, 14px);
    letter-spacing: .1em;
}

.team-copy h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(22px, 2.84vw, 34px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
}

.team-copy span {
    display: block;
    margin-top: 10px;
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: 700;
}

.team-link {
    position: relative;
    display: block;
    margin-top: clamp(22px, 6vw, 72px);
    padding: 0 58px 11px 0;
    background-image: linear-gradient(#111, #111), linear-gradient(#d0d0d0, #d0d0d0);
    background-position: left bottom, left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px, 100% 1px;
    font-size: clamp(12px, 1.34vw, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    transition: background-size .35s ease;
}

.team-link:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #000;
    transition: background-color .25s ease;
}

.team-link:after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 16px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: border-color .25s ease;
}

.team-main:has(> img:hover) .team-link,
.team-main:has(> picture:hover) .team-link,
.team-link:hover {
    background-size: 100% 1px, 100% 1px;
}

.team-main:has(> img:hover) .team-link:before,
.team-main:has(> picture:hover) .team-link:before,
.team-link:hover:before {
    background: #fff;
}

.team-main:has(> img:hover) .team-link:after,
.team-main:has(> picture:hover) .team-link:after,
.team-link:hover:after {
    border-color: #000;
}

.kit-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.kit-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 244px;
    overflow: hidden;
    background: #fcfcfc;
    background-image:
        linear-gradient(#8f8f8f, #8f8f8f),
        linear-gradient(#8f8f8f, #8f8f8f),
        linear-gradient(#8f8f8f, #8f8f8f),
        linear-gradient(#8f8f8f, #8f8f8f);
    background-position: left top, right top, right bottom, left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px, 1px 0, 0 1px, 1px 0;
    transition: background-size .28s ease;
}

.kit-item:hover {
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
}

.kit-item--coming {
    cursor: default;
    pointer-events: none;
}

.kit-item--coming:hover {
    background-size: 0 1px, 1px 0, 0 1px, 1px 0;
}

.kit-item:nth-child(2) {
    background-color: #f8f8f8;
}

.kit-item:nth-child(3) {
    background-color: #f3f3f3;
}

.kit-item img {
    width: 55%;
    max-height: 218px;
    object-fit: contain;
    transition: transform .35s ease;
}

.kit-item:hover img {
    transform: translateY(-4px);
}

.kit-item--coming:hover img {
    transform: none;
}

.kit-item b {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 76px;
    padding: 5px 12px 6px;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    background: #0b4d8b;
}

.kit-item--sale b {
    background: #eb2b1e;
}

.kit-item--new b {
    background: #00864a;
}

.team-sp-link {
    display: none;
}

.club-category {
    margin: 0 0 88px;
    padding-top: 58px;
    border-top: 1px solid #e5e5e5;
}

.club-category ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 0;
    background: #ddd;
    list-style: none;
}

.club-category a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 12px 18px;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
}

.ctcl {
    margin: 0 0 88px;
    padding-top: 44px;
    border-top: 1px solid #e5e5e5;
}

.ctcl_uni {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ctcl_uni .sec-ttl {
    position: relative;
    margin: 0 0 10px;
    padding-left: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.ctcl_uni .sec-ttl:before {
    content: "";
    position: absolute;
    top: .8em;
    left: 0;
    width: 12px;
    height: 1px;
    background: #111;
}

.ctcl_uni .child {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ctcl_uni .child li {
    margin: 0 0 8px;
}

.ctcl_uni .child a {
    position: relative;
    display: inline-block;
    padding-left: 36px;
    color: #646464;
    font-size: 13px;
    line-height: 1.5;
}

.ctcl_uni .child a:before {
    content: "";
    position: absolute;
    left: 20px;
    top: .35em;
    width: 7px;
    height: 7px;
    border-left: 1px solid #111;
    border-bottom: 1px solid #111;
}

.ctcl a {
    transition: opacity .2s ease;
}

.ctcl a:hover {
    opacity: .65;
}

.view-all {
    background: #646464;
    padding: 54px 20px;
}

.view-all .wrap {
    width: min(1130px, 100%);
    margin: 0 auto;
}

.view-all-btn {
    margin: 0;
}

.view-all-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.page-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .04em;
    transition: background-color .2s ease, color .2s ease;
}

.page-top:hover {
    background: #111;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .new-slider .slick-prev {
        left: 8px;
    }

    .new-slider .slick-next {
        right: 8px;
    }
}

@media screen and (max-width: 640px) {
    .main-ct {
        width: calc(100% - 28px);
    }

    .page-top {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        font-size: 10px;
    }

    .kv-select-screen {
        gap: 0;
        padding: 24px 0 42px;
    }

    .kv-select-stage {
        min-height: min(460px, calc(100vh - 130px));
        background: var(--kv-select-bg);
    }

    .kv-select-stage::before {
        display: none;
    }

    .kv-select-carousel {
        height: min(88vw, 460px);
        min-height: 0;
        contain: layout;
        overflow: visible;
    }

    .kv-select-card {
        width: min(86vw, 456px);
        aspect-ratio: 1 / 1;
        box-shadow: 0 20px 44px rgba(0, 0, 0, .5);
    }

    .kv-select-card img {
        object-fit: contain;
    }

    .kv-select-nav-button {
        top: 50%;
        bottom: auto;
        width: 62px;
        height: 62px;
        background: rgba(0, 0, 0, .42);
        box-shadow: 0 8px 22px rgba(0, 0, 0, .32);
    }

    .kv-select-nav-button:hover {
        background: rgba(0, 0, 0, .58);
    }

    .kv-select-nav-button svg {
        width: 28px;
        height: 28px;
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
    }

    .kv-select-nav-button.kv-select-prev {
        left: 3vw;
    }

    .kv-select-nav-button.kv-select-next {
        right: 3vw;
    }

    .kv-select-selection-panel {
        display: block;
        width: 100%;
        margin-top: -10px;
    }

    .kv-select-selector-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        height: 20px;
        overflow: visible;
    }

    .kv-select-dot {
        position: relative;
        top: auto;
        left: auto;
        width: 8px;
        height: 8px;
        padding: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .42);
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .kv-select-dot.is-active {
        background: #fff;
    }

    .kv-select-dot b,
    .kv-select-dot span {
        display: none;
    }

    .new-items {
        padding: 60px 0 64px;
    }

    .uniform-collection {
        width: 100vw;
        padding-top: 72px;
        padding-bottom: 92px;
        padding-right: 0;
        padding-left: 0;
    }

    .team-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
        width: calc(100% - 28px);
        margin: 0 auto;
    }

    .team-tabs a {
        min-height: 62px;
        padding: 11px 8px 10px;
        font-size: 13px;
        letter-spacing: .02em;
    }

    .team-tabs span {
        margin-top: 6px;
        font-size: 9px;
    }

    .team-list {
        gap: 78px;
        margin-top: 100px;
    }

    .team-card,
    .team-card--right {
        display: block;
    }

    .team-main {
        display: flex;
        flex-direction: column;
        min-height: auto;
        overflow: visible;
        background: #fff;
    }

    .team-main picture {
        display: block;
        grid-column: auto;
        grid-row: auto;
        order: 2;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .team-main img {
        min-height: 0;
        object-fit: cover;
    }

    .team-main img:hover,
    .team-main:has(.team-link:hover) img,
    .team-main:has(> picture:hover) img {
        transform: none;
    }

    .team-copy,
    .team-card:not(.team-card--right) .team-copy {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        grid-column: auto;
        grid-row: auto;
        order: 1;
        max-width: none;
        min-height: auto;
        margin: 0px 15px 20px;
        padding: 0px 0 0 15px;
        border-left: 0;
        background: transparent;
    }

    .team-copy:after {
        content: "";
        position: absolute;
        left: 0;
        width: 3px;
        height: 52px;
        background: #111;
    }

    .team-card--right .team-copy {
        grid-column: auto;
    }

    .team-copy p,
    .team-copy:before,
    .team-link {
        display: none;
    }

    .team-copy h3 {
        font-size: clamp(28px, 6.8vw, 40px);
        line-height: 1;
        letter-spacing: .105em;
    }

    .team-copy span {
        margin-top: 7px;
        font-size: clamp(13px, 3.4vw, 18px);
        line-height: 1.3;
    }

    .team-card#mufc .team-copy h3 {
        font-size: clamp(24px, 5.9vw, 34px);
        letter-spacing: .075em;
    }

    .team-card#mufc .team-copy:after {
        height: 76px;
    }

    .team-card#mufc .team-copy span {
        font-size: clamp(12px, 3.1vw, 16px);
    }

    .kit-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        gap: 0;
    }

    .kit-item {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .kit-grid .kit-item:first-child {
        grid-row: auto;
    }

    .kit-item img {
        width: 64%;
        max-height: 82%;
    }

    .kit-item b {
        min-width: 84px;
        padding: 6px 13px 7px;
        font-size: 16px;
        letter-spacing: .08em;
    }

    .team-sp-link {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        padding: 24px;
        overflow: hidden;
        color: #fff;
        background: #a3a3a3;
        font-size: clamp(16px, 3.8vw, 23px);
        font-weight: 700;
        line-height: 1.5;
        text-align: center;
    }

    .team-sp-link span {
        display: block;
        margin-top: 14px;
    }

    .team-sp-link:before {
        content: "";
        position: absolute;
        inset: 4px;
        border: 1px solid rgba(255, 255, 255, .86);
        pointer-events: none;
    }

    .team-sp-link:after {
        content: "";
        position: absolute;
        left: 24%;
        right: 24%;
        bottom: 30%;
        height: 1px;
        background: #fff;
        pointer-events: none;
    }

    .club-category ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .ctcl_uni {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ctcl_uni .second {
        border-bottom: 1px solid #e5e5e5;
    }

    .ctcl_uni .sec-ttl {
        margin: 0;
        padding: 18px 36px 18px 20px;
        cursor: pointer;
    }

    .ctcl_uni .sec-ttl:before {
        display: none;
    }

    .ctcl_uni .accord02:after {
        content: "+";
        position: absolute;
        top: 50%;
        right: 20px;
        width: 18px;
        height: 18px;
        color: #111;
        font-size: 20px;
        font-weight: 400;
        line-height: 18px;
        text-align: center;
        transform: translateY(-50%);
    }

    .ctcl_uni .accord02.open:after {
        content: "-";
    }

    .ctcl_uni .child {
        display: none;
        padding: 0 20px 16px 34px;
    }
}

@media screen and (max-width: 640px) {
    .new-slider {
        display: flex;
        gap: 18px;
        box-sizing: border-box;
        margin: 0;
        padding: 0 14px 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .new-slider::-webkit-scrollbar {
        display: none;
    }

    .new-slider li {
        flex: 0 0 220px;
        width: 220px !important;
        margin-right: 0;
        scroll-snap-align: start;
    }
}

@media screen and (max-width: 480px) {
    .main-ct {
        width: 100%;
    }

    .main-ttl {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .new-items,
    .club-category {
        padding-left: 14px;
        padding-right: 14px;
    }

    .uniform-collection {
        padding-right: 0;
        padding-left: 0;
    }

    .new-items > * {
        width: 100%;
    }

    .new-slider {
        margin: 0;
    }

    .new-slider .slick-list.draggable {
        overflow: visible;
        clip-path: none;
    }

    .new-slider li {
        width: 220px !important;
        margin-right: 0;
    }

    .new-slider a {
        min-height: 342px;
    }

    .new-slider span {
        height: 70px;
        font-size: 10px;
    }

    .item-view a {
        min-width: 300px;
        min-height: 58px;
        font-size: 12px;
    }

    .team-tabs {
        margin: 0 auto;
    }

    .kv-select-screen {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .kv-select-stage {
        min-height: min(460px, calc(100vh - 130px));
    }

    .kv-select-carousel {
        height: min(88vw, 460px);
    }

    .kv-select-nav-button {
        width: 62px;
        height: 62px;
    }

    .team-tabs a {
        min-height: 58px;
        padding: 10px 6px;
        font-size: 14px;
        letter-spacing: .01em;
    }

    .team-tabs span {
        font-size: 10px;
    }

    .team-list {
        gap: 80px;
    }

    .team-copy p {
        display: none;
    }

    .team-copy h3 {
        font-size: clamp(25px, 7vw, 34px);
        letter-spacing: .095em;
    }

    .team-copy span {
        font-size: clamp(12px, 3.5vw, 16px);
    }

    .team-card#mufc .team-copy h3 {
        font-size: clamp(22px, 6.1vw, 30px);
    }

    .team-card#mufc .team-copy span {
        font-size: clamp(11px, 3.2vw, 15px);
    }

    .kit-item {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .kit-item img {
        width: 75%;
    }

    .kit-item b {
        min-width: 56px;
        padding: 5px 12px 6px;
        font-size: 10px;
    }

    .team-sp-link {
        font-size: 14px;
    }

    .club-category {
        margin-bottom: 56px;
        padding-top: 42px;
    }

    .ctcl {
        margin-bottom: 56px;
        padding: 42px 14px 0;
    }

    .club-category ul {
        grid-template-columns: 1fr;
    }

    .view-all {
        padding: 36px 20px;
    }
}
