:root {
    --color-white: #fff;
    --color-black: #000;
    --font-puma: "FF DIN for PUMA", sans-serif;
    --content-width: 71.43vw;
    --max-content-width: 1200px;
    --section-padding: 160px 0;
    --hover-opacity: .4;
    --transform-3d: translate3d(28.1585px, 56.3169px, 0px) rotateY(-50.6852deg) rotateX(28.1585deg) scale(0.7184, 0.7184);
    --transform-reset: translate3d(0, 0, 0) rotateY(0) rotateX(0) scale(1, 1);
    --transition-duration: .3s;
    --transition-timing: cubic-bezier(.895, 0, .14, .94);
}

body, html {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    text-align: center;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}
body, dd, dl, dt, figure, h1, h2, h3, h4, h5, h6, html, ol, p, ul, li {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 0;
    font-weight: 400;
}
ul, li {
    list-style: none;
}
a {
    color: var(--color-white);
    text-decoration: none;
    outline: none;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    -webkit-touch-callout: none;
    pointer-events: none;
}
button {
    padding: 0;
    border: none;
    outline: none;
    appearance: none;
    cursor: pointer;
}

#opening {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    animation: fadeOut 1.2s ease-in 5s forwards;
}
.op_item {
    display: grid;
    place-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
.op_item img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: left center;
}
#op_item_01 {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
#op_item_01::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    z-index: 2;
    animation: fadeOut 2.5s var(--transition-timing) forwards;
}
#op_item_02 {
    background-color: var(--color-white);
    z-index: 2;
    animation: fadeIn 2.5s var(--transition-timing) 0.8s forwards;
}
.op_item .lead {
    color: var(--color-black);
    font-family: var(--font-puma);
    font-size: min(7.14vw, 100px);
    opacity: 0;
    visibility: hidden;
    animation: fadeIn 1s ease-in 2.8s forwards, fadeOutWithBlur 1s ease-in 4s forwards;
}
@keyframes fadeIn {
    100% {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}
@keyframes fadeOutWithBlur {
    100% {
        filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

#header {
    position: relative;
    padding: 28px 0;
}
#header .logo > a {
    display: inline-block;
}
#header .logo img {
    width: 62px;
}

.contents {
    position: relative;
    overflow: hidden;
}
.contents > section {
    position: relative;
}
.contents .title {
    position: relative;
    width: 17.14vw;
    max-width: 240px;
    margin: 0 auto 110px;
    opacity: 0;
    transform: var(--transform-3d);
    transition: opacity 1.2s var(--transition-timing), transform 1.2s var(--transition-timing);
}
.contents .title.inview {
    opacity: 1;
    transform: var(--transform-reset);
}

#kv .slider_wrap {
    width: 100%;
    max-width: 100vw;
}
#kv .slide > a {
    display: block;
}
#kv .slide-dots {
    left: 50%;
    transform: translateX(-50%);
}
#kv .slide-next {
    right: 20px;
    transform: translateY(-5px);
}
#kv .slide-prev {
    right: 140px;
    transform: scale(-1, 1) translateY(-5px);
}
#kv .slide-toggle {
    right: 80px;
    transform: translateY(-5px);
}

#movie {
    position: relative;
    background: url(../img/movie_bg_pc.webp) no-repeat top left / cover;
    padding: var(--section-padding);
    --movie-opacity: 1;
}
#movie::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    backdrop-filter: blur(15px);
    opacity: var(--movie-opacity);
    z-index: 0;
    pointer-events: none;
}
#movie.inview::before {
    opacity: 0;
}
#movie .item {
    width: var(--content-width);
    max-width: var(--max-content-width);
    background-color: var(--color-black);
    margin: auto;
}
#movie .movie_modal {
    position: relative;
    display: block;
    outline: none;
}
#movie .movie_modal::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    z-index: 1;
    transition: width .6s var(--transition-timing);
}
#movie .inview .movie_modal::after {
    width: 0%;
}
#movie .movie_modal img {
    position: relative;
    width: 100%;
    transition: opacity .5s var(--transition-timing);
}
@media(hover: hover) {
    #movie .movie_modal:hover img {
        opacity: .7;
    }
}
#movie .movie_play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 6.08vw;
    max-width: 100px;
    height: 6.08vw;
    max-height: 100px;
    z-index: 2;
    transform: scale(0);
    transition: transform .5s var(--transition-timing) .8s;
}
#movie .inview .movie_play {
    transform: scale(1);
}
#movie .movie_play .circle {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    border-radius: 50%;
    transition: transform .5s var(--transition-timing);
}
@media(hover: hover) {
    #movie .inview .movie_modal:hover .movie_play .circle {
        transform: scale(0.9);
    }
}
#movie .movie_play .circle > span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: min(0.36vw, 5px);
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: min(1vw, 14px) 0 min(1vw, 14px) min(1.71vw, 24px);
    border-color: transparent transparent transparent #fff;
}
#movie .item .video_wrap {
    display: none;
}
#cboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    opacity: 1 !important;
    cursor: pointer;
    z-index: 9998;
}
#colorbox {
    min-width: 83vw;
    max-height: 80vh;
    outline: none;
    z-index: 9999;
}
#colorbox video {
    width: 100%;
    aspect-ratio: 16 / 9;
}
#cboxWrapper {
    margin: auto;
}
#cboxWrapper, #cboxContent, #cboxLoadedContent, #colorbox video {
    width: 83vw;
    max-height: 80vh;
}
#cboxClose {
    display: none;
    background: transparent;
    margin: 0.9375rem auto 0;
    color: var(--color-white);
    font-family: var(--font-puma);
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1;
    transition: color var(--transition-duration) var(--transition-timing);
}
@media(hover: hover) {
    #cboxClose:hover {
        color: #666;
    }
}

.product_block {
    padding: 120px 0 160px;
}
#product-01 {
    position: relative;
    background: url(../img/product-01_bg_pc.webp) no-repeat bottom center / cover;
    overflow: hidden;
}
#product-02 {
    position: relative;
    background: url(../img/product-02_bg_pc.webp) no-repeat bottom center / cover;
    max-height: 100vh;
    box-sizing: border-box;
}
.product_op {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/product-02_bg_pc.webp) no-repeat bottom center / cover;
    z-index: 2;
    transition: opacity 1s var(--transition-timing), visibility 1s var(--transition-timing);
}
.product_op.inview {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.product_op_wrap {
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
}
#product .title {
    margin-bottom: 40px;
}
#product-02 .title {
    opacity: 1;
    transform: var(--transform-reset);
}
#product-02 .product_title {
    width: 29.64vw;
    max-width: 415px;
    margin-bottom: 0;
}
.product_op_img {
    position: absolute;
    bottom: min(3.07vw, 43px);
    right: min(5vw, 70px);
    width: 25.36vw;
    max-width: 355px;
}
.slider_wrap {
    position: relative;
    width: var(--content-width);
    max-width: var(--max-content-width);
    margin: auto;
}
#product-02 .slider_wrap {
    visibility: hidden;
}
.product_title {
    width: 35.36vw;
    max-width: 495px;
    margin: 0 auto 90px;
}
.slider {
    position: relative;
    overflow: visible;
}
#product .slider_wrap .slide {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}
#product .slider_wrap .slide.swiper-slide-active {
    pointer-events: auto;
}
.product_model {
    position: relative;
    width: 57%;
}
#product .slider_wrap .slide img[src$=".webp"] {
    opacity: 0;
    transform: var(--transform-3d);
    transition: opacity 1s var(--transition-timing), transform 1.2s var(--transition-timing);
}
#product .slider_wrap .slide.swiper-slide-active img[src$=".webp"] {
    opacity: 1;
    transform: var(--transform-reset);
}
.product_shoes {
    position: relative;
    width: 40%;
}
#product-02 .product_shoes {
    padding: 20px;
    box-sizing: border-box;
}
#product .slider_wrap .slide .product_shoes img[src$=".webp"] {
    transition-delay: .2s;
}
.product_info {
    display: grid;
    place-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .85);
    opacity: 0;
    transition: opacity .2s var(--transition-timing);
}
@media(hover: hover) {
    .product_info:hover {
        opacity: 1;
    }
}
.product_info .text {
    color: var(--color-white);
    font-size: min(1.57vw, 22px);
    font-weight: 600;
}
.product_info .column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: min(2.02vw, 30px);
    width: 100%;
    margin-top: min(2.02vw, 30px);
}
.product_info .column .item {
    width: 9.14vw;
    max-width: 128px;
    aspect-ratio: 1;
}
.product_info .column .item > *:not(p) {
    position: relative;
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-white);
    box-sizing: border-box;
}
.product_info .column .puma > *:not(p) {
    background-color: var(--color-black);
}
.product_info .column .abc-mart > *:not(p) {
    background-color: #ffdb00;
    border-color: #ffdb00;
}
.product_info .column img {
    width: auto;
    height: 3.86vw;
    max-height: 54px;
}
.slider .slide-dots {
    position: absolute;
    bottom: min(0.97vw, 16px);
    display: flex;
    column-gap: min(0.86vw, 12px);
    width: fit-content;
    font-size: 0;
    z-index: 1;
}
#product .slider .slide-dots {
    bottom: -40px;
    left: 0;
}
.slider .slide-dots > span {
    width: 0.71vw;
    max-width: 10px;
    height: 0.71vw;
    max-height: 10px;
    border: none;
    border-radius: 100%;
    background-color: var(--color-white);
    box-sizing: border-box;
    outline: none;
    transition: background-color var(--transition-duration) var(--transition-timing);
}
#product .slider .slide-dots > span {
    transition-duration: 1.2s;
}
.swiper-pagination-bullet {
    opacity: 1;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
    width: auto;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}
.slider .slide-dots > span.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}
.slide-arrow {
    position: absolute;
    bottom: min(0.55vw, 9px);
    width: 13px;
    height: 27px;
    background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2038.9%2071.3%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23FFF%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%204.7px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_11%22%20data-name%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%221.6%201.6%2035.6%2035.6%201.6%2069.6%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') transparent no-repeat center / 100% auto;
    font-size: 0;
    outline: none;
    z-index: 1;
    cursor: pointer;
    transition: opacity var(--transition-duration) var(--transition-timing);
}
.slide-prev {
    right: 120px;
    transform: scale(-1, 1);
}
.slide-next {
    right: 0;
}
.slide-toggle {
    position: absolute;
    bottom: min(0.67vw, 11px);
    right: 60px;
    width: 14px;
    height: 23px;
    background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2089.7%20207.8%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_11%22%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M17.6%2C207.8H0V0h17.6v207.8ZM89.7%2C207.8h-17.6V0h17.6v207.8Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') transparent no-repeat center / 100% auto;
    font-size: 0;
    z-index: 1;
    cursor: pointer;
    transition: opacity var(--transition-duration) var(--transition-timing);
}
.slide-toggle.paused {
    background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20135.5%20207.7%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22Layer_1%22%3E%20%3Cpolygon%20class%3D%22st0%22%20points%3D%22135.5%20103.9%200%200%200%20207.7%20135.5%20103.9%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') transparent no-repeat center / 100% auto;
}
#product .slide-arrow {
    bottom: -47px;
}
#product .slide-toggle {
    bottom: -45px;
}
@media(hover: hover) {
    .slider .slide-dots > span:hover {
        background-color: var(--color-black);
    }
    .slide-arrow:hover {
        opacity: var(--hover-opacity);
    }
    .slide-toggle:hover {
        opacity: var(--hover-opacity);
    }
}
.extra-arrow .slide-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 2.38vw;
    max-width: 36px;
    height: 4.29vw;
    max-height: 66px;
    background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2038.9%2071.3%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23FFF%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%204.7px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_11%22%20data-name%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%221.6%201.6%2035.6%2035.6%201.6%2069.6%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') transparent no-repeat center / 100% auto;
    transition: opacity var(--transition-duration) var(--transition-timing);
    cursor: pointer;
}
@media(hover: hover) {
    .extra-arrow .slide-arrow:hover {
        opacity: var(--hover-opacity);
    }
}
.extra-arrow .slide-prev {
    left: max(-80px, -4.67vw);
    transform: translateY(-50%) scale(-1, 1);
}
.extra-arrow .slide-next {
    right: max(-80px, -4.67vw);
}
#product-02 .slide-arrow {
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2038.9%2071.3%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23000%3B%20stroke-miterlimit%3A%2010%3B%20stroke-width%3A%204.7px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_11%22%20data-name%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%221.6%201.6%2035.6%2035.6%201.6%2069.6%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
}
#product-02 .slide-toggle {
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2089.7%20207.8%22%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_11%22%20data-name%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cpath%20d%3D%22M17.6%2C207.8H0V0h17.6v207.8ZM89.7%2C207.8h-17.6V0h17.6v207.8Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
}
#product-02 .slide-toggle.paused {
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20135.5%20207.7%22%3E%20%3Cg%20id%3D%22Layer_1%22%3E%20%3Cpolygon%20points%3D%22135.5%20103.9%200%200%200%20207.7%20135.5%20103.9%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
}

#store {
    padding: var(--section-padding);
    overflow: hidden;
}
.store-link {
    width: var(--content-width);
    max-width: var(--max-content-width);
    margin: 0 auto;
}
.store-link .lead {
    font-family: var(--font-puma);
    font-size: min(5.64vw, 79px);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1.2s var(--transition-timing), transform 1.2s var(--transition-timing);
}
.store-link .text {
    font-size: min(2.86vw, 40px);
    font-weight: 600;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1.2s var(--transition-timing), transform 1.2s var(--transition-timing);
}
.inview .store-link .lead, .inview .store-link .text {
    opacity: 1;
    transform: translateX(0);
}
.store-link .text > span {
    position: relative;
}
.store-btn {
    margin-top: min(10.71vw, 150px);
}
.store-link .column {
    display: flex;
    column-gap: 4%;
}
.store-link .item {
    width: 48%;
    opacity: 0;
    transform: var(--transform-3d);
    transition: opacity 1s var(--transition-timing), transform 1.2s var(--transition-timing);
}
.store-link .item.abc-mart {
    transition-delay: .3s;
}
.inview .store-link .item {
    opacity: 1;
    transform: var(--transform-reset);
}
.store-link .item > *:not(p) {
    position: relative;
    display: flex;
    width: 100%;
    height: 7.86vw;
    max-height: 110px;
    background-color: var(--color-black);
    border: 1px solid var(--color-white);
    color: var(--color-black);
    box-sizing: border-box;
    transition: background-color var(--transition-duration) var(--transition-timing), color var(--transition-duration) var(--transition-timing);
}
.store-link .item.abc-mart > *:not(p) {
    background-color: #ffda00;
    border-color: #ffda00;
}
.store-link .item figure {
    position: relative;
    display: grid;
    place-content: center;
    margin: auto;
}
.store-link .item img {
    transition: opacity var(--transition-duration) var(--transition-timing);
}
.store-link .item.puma img {
    width: 5.3vw;
    max-width: 96px;
    mix-blend-mode: difference;
}
.store-link .item.abc-mart img {
    width: 5.23vw;
    max-width: 85px;
}

#archive {
    background: url(../img/archive_bg_pc.webp) no-repeat top right /  cover;
    padding: var(--section-padding);
}
#archive .slider .slide a {
    display: block;
    position: relative;
    outline: none;
    background-color: var(--color-black);
    pointer-events: none;
}
#archive .slider .slide a img {
    transition: opacity .5s var(--transition-timing);
}
@media(hover: hover) {
    #archive .slider .slide a:hover img {
        opacity: .3;
    }
    #archive .slider .slide a:hover::after {
        opacity: .3;
    }
}
#archive .slider .slide p {
    margin-top: 30px;
    font-family: var(--font-puma);
    font-size: min(3.57vw, 50px);
}
.slider .video_wrap {
    display: none;
}
.slider .img_wrap {
    display: none;
    overflow: hidden;
}

#footer {
    position: relative;
    padding: 60px 0 50px;
    text-align: center;
}
#footer .logo > a {
    display: inline-block;
}
#footer .logo img {
    width: 6rem;
}
#footer .policy {
    margin-top: 30px;
}
#footer .policy a {
    font-size: 14px;
    font-weight: 600;
    transition: opacity var(--transition-duration) var(--transition-timing);
}
@media(hover: hover) {
    #footer .policy a:hover {
        opacity: var(--hover-opacity);
    }
}
#footer .copyright {
    margin-top: 20px;
    color: var(--color-white);
    font-family: var(--font-puma);
    font-size: 18px;
}

#pagetop {
    position: fixed;
    right: 0;
    top: 20px;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-black);
    border: 1px solid var(--color-white);
    border-right: none;
    transform: translateX(100px);
    transition: transform .2s linear, background-color var(--transition-duration) var(--transition-timing);
    cursor: pointer;
    z-index: 999;
}
#pagetop svg {
    width: 20px;
    height: 24px;
    fill: var(--color-white);
    transition: background-color var(--transition-duration) var(--transition-timing);
}
#pagetop.show {
    transform: translateX(0);
}
@media(hover: hover) {
    #pagetop:hover {
        background-color: #333;
    }
}


@media screen and (max-width: 749px) {
    :root {
        --content-width: 80vw;
        --max-content-width: 100vw;
        --section-padding: 13.33vw 0 22.67vw;
        --transform-3d: translate3d(18.1585px, 16.3169px, 0px) rotateY(-50.6852deg) rotateX(18.1585deg) scale(0.7184, 0.7184);
    }

    #opening {
        height: 100dvh;
    }
    .op_item .lead {
        font-size: 11.25vw;
    }
    
    #header {
        padding: 7.2vw 0 4vw;
    }
    #header .logo img {
        width: 12.8vw;
    }

    #kv .slide-dots {
        transform: translateX(-50%) translateY(-3vw);
    }
    #kv .slide-next {
        right: 6vw;
        transform: translateY(-3vw);
    }
    #kv .slide-prev {
        right: 18.82vw;
        transform: translateY(-3vw) scale(-1, 1);
    }
    #kv .slide-toggle {
        right: 12.67vw;
        transform: translateY(-3vw);
    }

    .contents .title {
        width: 21.33vw;
        margin-bottom: 12vw;
    }
    
    #movie {
        background-image: url(../img/movie_bg_sp.jpg);
    }
    #movie .movie_play {
        width: 8.82vw;
        height: 8.82vw;
    }
    #movie .movie_play .circle > span {
        left: 0.67vw;
        border-width: 1.78vw 0 1.78vw 2.54vw;
    }
    #colorbox {
        min-width: 100vw;
    }
    #cboxContent {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    #cboxWrapper, #cboxContent, #cboxLoadedContent, #colorbox video {
        width: 100vw;
        max-height: 100vh;
    }
    #cboxClose {
        margin-top: 2vw;
        font-size: 6vw;
    }

    .product_block {
        padding: var(--section-padding);
    }
    #product-01 {
        background-image: url(../img/product-01_bg_sp.jpg);
    }
    #product-02 {
        background-image: url(../img/product-02_bg_sp.jpg);
    }
    #product .title {
        margin-bottom: 5.33vw;
    }
    #product-02 .product_title {
        width: 50vw;
    }
    .product_op_img {
        bottom: 14.93vw;
        right: 5.07vw;
        width: 51.6vw;
    }
    .slider_wrap {
        width: 66.67vw;
    }
    .product_title {
        width: 60vw;
        margin-bottom: 12vw;
    }
    #product .slider_wrap .slide {
        flex-direction: column;
        row-gap: 6.67vw;
    }
    #product #product-02 .slider_wrap .slide {
        row-gap: 0;
    }
    .product_model {
        width: 100%;
    }
    .product_shoes {
        width: 100%;
    }
    .product_info .text {
        font-size: 3.73vw;
    }
    .product_info .column {
        column-gap: 3vw;
        margin-top: 5.33vw;
    }
    .product_info .column .item {
        width: 22vw;
        max-width: 22vw;
    }
    .product_info .column img {
        height: 8.53vw;
        max-height: 8.53vw;
    }
    .slider .slide-dots {
        column-gap: 1.6vw;
        bottom: 1.27vw;
    }
    .slider .slide-dots > span {
        width: 1.87vw;
        height: 1.87vw;
    }
    .slide-arrow {
        width: 2.13vw;
        height: 3.87vw;
    }
    .slide-prev {
        right: 12.82vw;
    }
    .slide-toggle {
        bottom: 1.02vw;
        right: 6.67vw;
        width: 1.54vw;
        height: 2.93vw;
    }
    .slide-toggle.paused {
        bottom: 0.76vw;
        right: 5.9vw;
        width: 2.53vw;
        height: 3.73vw;
    }
    #product .slider .slide-dots {
        bottom: -7.63vw;
    }
    #product .slide-arrow {
        bottom: -8.65vw;
    }
    #product .slide-toggle {
        bottom: -8.14vw;
    }
    #product .slide-toggle.paused {
        bottom: -8.4vw;
    }
    #product .extra-arrow .slide-arrow {
        top: 44.78vw;
    }

    .store-link {
        width: 100%;
    }
    .store-link .lead {
        font-size: 10.93vw;
        margin-bottom: 2.93vw;
    }
    .store-link .text {
        font-size: 5.33vw;
    }
    .store-btn {
        margin-top: 12.93vw;
        row-gap: 16.67vw;
    }
    .store-link .column {
        flex-direction: column;
        row-gap: 5vw;
    }
    .store-link .item {
        width: 60vw;
        margin: auto;
    }
    .store-link .item > *:not(p) {
        height: 15.2vw;
        border-width: 0.4vw;
    }
    .store-link .item.puma img {
        width: 12.8vw;
    }
    .store-link .item.abc-mart img {
        width: 11.33vw;
    }

    #archive {
        background-image: url(../img/archive_bg_sp.jpg);
    }
    #archive .swiper-fade .swiper-slide {
        pointer-events: auto;
    }
    #archive .slider .slide a {
        pointer-events: auto;
    }
    #archive .slider .slide p {
        margin-top: 2.67vw;
        font-size: 5.33vw;
    }
    .extra-arrow .slide-arrow {
        top: 23.6vw;
        transform: none;
        width: 3.33vw;
        height: 6.13vw;
    }
    .extra-arrow .slide-prev {
        left: -10vw;
        transform: scale(-1, 1);
    }
    .extra-arrow .slide-next {
        right: -10vw;
    }

    #footer {
        padding: 6.27vw 0 4.67vw;
    }
    #footer .logo img {
        width: 12.8vw;
    }
    #footer .policy {
        margin-top: 2.9vw;
    }
    #footer .policy a {
        font-size: 2.66vw;
    }
    #footer .copyright {
        margin-top: 2.66vw;
        font-size: 2.4vw;
    }

    #pagetop {
        top: 2.735vw;
        width: 10.13vw;
        height: 10.13vw;
        transform: translateX(12vw);
    }
    #pagetop svg {
        width: 3.6vw;
        height: 4.27vw;
    }
}


.touch-device .product_info .column .item > *:not(p) {
    pointer-events: none;
}
.touch-device .swiper-slide-active .product_info.is-show {
    opacity: 1;
}
.touch-device .swiper-slide-active .product_info.is-show .column .item a {
    pointer-events: auto;
}