#op-scroll {
    overflow: scroll;
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    height: calc(100% - 120px);
    pointer-events: none;
    z-index: 2;
    touch-action: manipulation;
}

#op-scroll::-webkit-scrollbar{
    display: none;
}

#operation_panel {
    position: absolute;
    top: 50%;
    left: 30px;
    width: 144px;
    height: auto;
    transform: translateY(-50%);
    transform-origin: center center;
    z-index: 100;
    pointer-events: all;
    transition: all .3s;
    border-radius: 9999px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
#operation_panel.shrink {
    height: 120px !important;
    top: calc(100% - 102px) !important;
    width: 120px;
    left: 42px;
}
#operation_panel.shrink::before {
    background-color: #000;
    backdrop-filter: blur(0px);
    border: white 0px solid;
}
/* @media screen and (max-height: 1100px) {
    #operation_panel {
        left: 21px;
        transform: translateY(-50%) scale(0.7);
    }
    #operation_panel.shrink {
        top: calc(100% - (12% * 0.7));
        left: calc(42px * 0.7);
    }
}
@media screen and (max-height: 800px) {
    #operation_panel {
        left: 14.7px;
        transform: translateY(-50%) scale(0.49);
    }
    #operation_panel.shrink {
        top: calc(100% - (12% * 0.49));
        left: calc(42px * 0.49);
    }
} */
#operation_panel::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f3f344;
    z-index: -1;
    backdrop-filter: blur(50px);
    border: white var(--border-line-weight) solid;
    border-radius: 9999px;
    box-sizing: border-box;
    content: '';
    transition: all .3s;
}
#operation_panel::after {
    position: absolute;
    top: -20px;
    left: 0;
    height: calc(100% + 40px);
    width: 100%;
    z-index: -1;
    pointer-events: none;
    content: '';
    opacity: 0;
    mask: url("../img/search.svg") no-repeat center;
    -webkit-mask: url("../img/search.svg") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: #ffffff;
    background-position: center center;
    background-size: contain;
    background-blend-mode: difference;
    transition: all .3s;
}
#operation_panel.shrink .opb-10 {
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: none;
    opacity: 0;
    margin-left: 12px;
    margin-right: 12px;
}
#operation_panel.shrink::after {
    opacity: 1;
}
#operation_panel.shrink::before,#operation_panel.shrink::after {
    transition: all cubic-bezier(1,0,1,0) .3s;/* 収縮時のみのアニメーション */
}
/* #operation_panel.shrink .opb-10:nth-of-type(n+2) {
    margin-top: -96px;
} */

.opb-10 {
    width: 96px;
    height: 96px;
    box-sizing: border-box;
    position: relative;
    border: #ffffffff var(--border-line-weight) solid;
    margin: 24px;
    margin-bottom: 80px;
    margin-top: 40px;
    border-radius: 48px;
    transition: all .3s;
    cursor: pointer;
    background-color: #88888800;
    backdrop-filter: blur(0px);
}
.opb-10::before {
    content: '';
    display: block;
    opacity: 1;
    transition: all .3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    border-radius: 48px;
    width: 100%;
    height: 100%;
    border: var(--border-line-weight) #000000ff solid;
    z-index: 2;
}
.opb-10::after {
    content: '';
    font-size: 50px;
    line-height: 50px;
    display: block;
    opacity: 1;
    transition: all .3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 48px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: 1;
    filter: invert(0%);
}

.opb-10::before,.opb-10::after {
    mask-size: contain;
    -webkit-mask-size: contain;
}
.opb-10::after {
    background-image: linear-gradient(#000000, #000000);
}
#profile.opb-10::after {
    mask: url("../img/user_info.svg") no-repeat center;
    -webkit-mask: url("../img/user_info.svg") no-repeat center;
}
#purpose.opb-10::after {
    mask: url("../img/use_case.svg") no-repeat center;
    -webkit-mask: url("../img/use_case.svg") no-repeat center;
}
#brand.opb-10::after {
    mask: url("../img/brand.svg") no-repeat center;
    -webkit-mask: url("../img/brand.svg") no-repeat center;
}
#commitment.opb-10::after {
    mask: url("../img/features.svg") no-repeat center;
    -webkit-mask: url("../img/features.svg") no-repeat center;
}
#keyword.opb-10::after {
    mask: url("../img/search.svg") no-repeat center;
    -webkit-mask: url("../img/search.svg") no-repeat center;
}
.opBgLoadComplete #profile.opb-10:has( .selected)::after {
    background: linear-gradient(#d5b2ff, #e5b5ff);
}
.opBgLoadComplete #purpose.opb-10:has( .selected)::after {
    background: linear-gradient(#f0b5ff, #ffbffe);
}
.opBgLoadComplete #brand.opb-10:has( .selected)::after {
    background: linear-gradient(#ffc8fb, #f9d2fb);
}
.opBgLoadComplete #commitment.opb-10:has( .selected)::after {
    background: linear-gradient(#cbc7fe, #c4e1fe);
}
.opBgLoadComplete #keyword.opb-10:has( .selected)::after {
    background: linear-gradient(#b2d9ff, #a4f3ff);
}
.opb-10:has( .selected)::before {
    border: none;
    background-color: #000000;
    z-index: 1;
}
.opb-10:has( .selected)::after {
    background-blend-mode: difference;
}
.opb_close {
    right: 30px;
    top: 22.2px;
}

.opb-10_text {
    font-weight: bold;
    position: absolute;
    top: calc(100% + 10px);
    left: -10px;
    display: block;
    width: 112px;
    text-align: center;
    font-size: 18px;
    height: 26px;
    opacity: 1;
    transition: all .3s;
    overflow-y: hidden;
}

.opb-15 {
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(50% , 0);
    pointer-events: none;
    transition: all .3s;
    transform-origin: left top;
}

.opb-15_text {
    font-weight: bold;
    font-size: 35px;
    height: 40px;
    line-height: 40px;
    transition: all .3s;
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    border-bottom: var(--border-line-weight) solid #000;
    margin-bottom: 20px;
    width: 90%;
}

/* phase1 文字・アイコンが消える */
.opb-10.open_phase1::before,.opb-10.open_phase1::after,.opb-10.open_phase1 .opb-10_text {
    opacity: 0;
}


/* phase2 アイコンを完全消去・内部コンテンツを大きさ0透明で表示 */
.opb-10.open_phase2::before,.opb-10.open_phase2::after {
    opacity: 0;
    pointer-events: none;
}
.opb-10.open_phase1::after {
    transition: all cubic-bezier(0,1,0,1) .3s;/* 展開時のみのアニメーション(アイコン早く消すため) */
}

/* phase3 文字を表示・内部コンテンツを大きさ拡大して透明解除・枠も内部コンテンツに追従 */
.opb-10.open_phase3 {
    width: calc(100vw - 108px);
    max-width: 1092px;
    background-color: #eee;
    /* backdrop-filter: blur(50px); */
}
.opb-10.open_phase3 .opb-15 {
    pointer-events: all;
    opacity: 1;
    transform: scale(100% , 100%);
    transition-delay: .05s;
}
.opb-10.open_phase3 .opb_close {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    transition-delay: .05s;
}

.opb_clear {
    right: 30px;
    top: 22.2px;
}


.opb-10.open_phase3 .opb_clear {
    right: 160px;
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    transition-delay: .05s;
}

.opb_clear,.opb_close {
    position: absolute;
    cursor: pointer;
    background-color: #000;
    line-height: 40px;
    color: #fff;
    font-size: 26.4px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    z-index: 20;
    height: 40px;
    width: 110px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 9999px;
    transition: all .3s;
}



.opb-20 {
    width: 100%;
}
.opb-20_text {
    font-size: 28px;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    position: relative;
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
}
.opb-20:has( .icon-keyword) {
    pointer-events: none;
}
.opb-20_text::before {
    display: flex;
    content: '';
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 72px;
    width: 72px;
    transition: all .3s;
    margin-left: 40px;
    margin-right: 20px;
    background-size: cover;
    background-position: center center;
    pointer-events: all;
    border: rgba(0, 0, 0,1) var(--border-line-weight) solid;
    box-sizing: border-box;
}
.opb-20_text::after {
    content: '';
    border-radius: 50%;
    height: 72px;
    width: 72px;
    box-sizing: border-box;
    transition: all .3s;
    margin-left: 40px;
    margin-right: 20px;
    position: absolute;
    opacity: 1;
    pointer-events: all;
}
.opb-20_text.icon-keyword::before,.opb-20_text.icon-keyword::after {
    display: none;
}

.opb-20:has( .selected) .opb-20_text::before,.opb-20.selected .opb-20_text::before {
    filter: invert(0%);
}
.opb-20 .opb-20_text::after {
    background-color: #000000;
    mask-size: contain;
    -webkit-mask-size: contain;
}
#profile.opb-10 .opb-20 .opb-20_text.icon-target::after ,#profile.opb-10 .opb-20 .opb-20_text.icon-target::after {
    mask: url("../img/fit_features.svg") no-repeat center;
    -webkit-mask: url("../img/fit_features.svg") no-repeat center;
}
#profile.opb-10 .opb-20 .opb-20_text.icon-width::after ,#profile.opb-10 .opb-20 .opb-20_text.icon-width::after {
    mask: url("../img/wide.svg") no-repeat center;
    -webkit-mask: url("../img/wide.svg") no-repeat center;
}
#purpose.opb-10 .opb-20 .opb-20_text.icon-run::after ,#purpose.opb-10 .opb-20 .opb-20_text.icon-run::after {
    mask: url("../img/Run.svg") no-repeat center;
    -webkit-mask: url("../img/Run.svg") no-repeat center;
}
#purpose.opb-10 .opb-20 .opb-20_text.icon-hiking::after ,#purpose.opb-10 .opb-20 .opb-20_text.icon-hiking::after {
    mask: url("../img/2days_hike.svg") no-repeat center;
    -webkit-mask: url("../img/2days_hike.svg") no-repeat center;
}
#purpose.opb-10 .opb-20 .opb-20_text.icon-tandf::after ,#purpose.opb-10 .opb-20 .opb-20_text.icon-tandf::after {
    mask: url("../img/track.svg") no-repeat center;
    -webkit-mask: url("../img/track.svg") no-repeat center;
}
#purpose.opb-10 .opb-20 .opb-20_text.icon-recovery::after ,#purpose.opb-10 .opb-20 .opb-20_text.icon-recovery::after {
    mask: url("../img/recovery.svg") no-repeat center;
    -webkit-mask: url("../img/recovery.svg") no-repeat center;
}
#purpose.opb-10 .opb-20 .opb-20_text.icon-dairy::after ,#purpose.opb-10 .opb-20 .opb-20_text.icon-dairy::after {
    mask: url("../img/town_use.svg") no-repeat center;
    -webkit-mask: url("../img/town_use.svg") no-repeat center;
}
#purpose.opb-10 .opb-20 .opb-20_text.icon-gym::after ,#purpose.opb-10 .opb-20 .opb-20_text.icon-gym::after {
    mask: url("../img/gym_use.svg") no-repeat center;
    -webkit-mask: url("../img/gym_use.svg") no-repeat center;
}
/* メーカーが増えたら追加してください。 */
#brand.opb-10 .opb-20 .opb-20_text.icon-on::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-on::after {
    mask: url("../img/On_logo.svg") no-repeat center;
    -webkit-mask: url("../img/On_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-mizuno::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-mizuno::after {
    mask: url("../img/mizuno_logo.svg") no-repeat center;
    -webkit-mask: url("../img/mizuno_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-nb::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-nb::after {
    mask: url("../img/NB_logo.svg") no-repeat center;
    -webkit-mask: url("../img/NB_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-ua::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-ua::after {
    mask: url("../img/under_armour_logo.svg") no-repeat center;
    -webkit-mask: url("../img/under_armour_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-puma::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-puma::after {
    mask: url("../img/puma_logo.svg") no-repeat center;
    -webkit-mask: url("../img/puma_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-nike::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-nike::after {
    mask: url("../img/nike_logo.svg") no-repeat center;
    -webkit-mask: url("../img/nike_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-adidas::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-adidas::after {
    mask: url("../img/adidas_logo.svg") no-repeat center;
    -webkit-mask: url("../img/adidas_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-asics::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-asics::after {
    mask: url("../img/asics_logo.svg") no-repeat center;
    -webkit-mask: url("../img/asics_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-converse::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-converse::after {
    mask: url("../img/converse_logo.svg") no-repeat center;
    -webkit-mask: url("../img/converse_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-merrell::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-merrell::after {
    mask: url("../img/merrell_logo.svg") no-repeat center;
    -webkit-mask: url("../img/merrell_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-salomon::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-salomon::after {
    mask: url("../img/salomon_logo.svg") no-repeat center;
    -webkit-mask: url("../img/salomon_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-brooks::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-brooks::after {
    mask: url("../img/brooks_logo.svg") no-repeat center;
    -webkit-mask: url("../img/brooks_logo.svg") no-repeat center;
}
#brand.opb-10 .opb-20 .opb-20_text.icon-saucony::after ,#brand.opb-10 .opb-20 .opb-20_text.icon-saucony::after {
    mask: url("../img/saucony_logo.svg") no-repeat center;
    -webkit-mask: url("../img/saucony_logo.svg") no-repeat center;
}

#commitment.opb-10 .opb-20 .opb-20_text.icon-wp::after ,#commitment.opb-10 .opb-20 .opb-20_text.icon-wp::after {
    mask: url("../img/wp.svg") no-repeat center;
    -webkit-mask: url("../img/wp.svg") no-repeat center;
}
#commitment.opb-10 .opb-20 .opb-20_text.icon-shoelaces::after ,#commitment.opb-10 .opb-20 .opb-20_text.icon-shoelaces::after {
    mask: url("../img/std_lace.svg") no-repeat center;
    -webkit-mask: url("../img/std_lace.svg") no-repeat center;
}
#commitment.opb-10 .opb-20 .opb-20_text.icon-color::after ,#commitment.opb-10 .opb-20 .opb-20_text.icon-color::after {
    mask: url("../img/color.svg") no-repeat center;
    -webkit-mask: url("../img/color.svg") no-repeat center;
}

.opb-20:has( .selected) .opb-20_text::before,.opb-20.selected .opb-20_text::before {
    border: rgba(0, 0, 0,0) var(--border-line-weight) solid;
    background-color: black;
}

.opb-20:has( .selected) .opb-20_text::after,.opb-20.selected .opb-20_text::after {
    background-blend-mode: difference;
}
#profile.opb-10 .opb-20:has( .selected) .opb-20_text::after ,#profile.opb-10 .opb-20.selected .opb-20_text::after {
    background: linear-gradient(#d5b2ff, #e5b5ff);
}
#purpose.opb-10 .opb-20:has( .selected) .opb-20_text::after ,#purpose.opb-10 .opb-20.selected .opb-20_text::after {
    background: linear-gradient(#f0b5ff, #ffbffe);
}
#brand.opb-10 .opb-20:has( .selected) .opb-20_text::after ,#brand.opb-10 .opb-20.selected .opb-20_text::after {
    background: #ffffff;
}
#commitment.opb-10 .opb-20:has( .selected) .opb-20_text::after ,#commitment.opb-10 .opb-20.selected .opb-20_text::after {
    background: linear-gradient(#cbc7fe, #c4e1fe);
}
#keyword.opb-10 .opb-20:has( .selected) .opb-20_text::before,#keyword.opb-10 .opb-20.selected .opb-20_text::before {
    background: linear-gradient(#b2d9ff, #a4f3ff);
}

.opb-20_text.icon-keyword::before {
    background-image: url("../img/search.svg");
}
.opb-20_text.icon-::before {
    background-image: url("../img/.jpg");
}
.opb-20_text.icon-::before {
    background-image: url("../img/.jpg");
}
.opb-20_text.icon-::before {
    background-image: url("../img/.jpg");
}
.opb-20_text.icon-::before {
    background-image: url("../img/.jpg");
}

.opb-25 {
    height: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    transform: scale(50% , 0);
    transform-origin: left top;
    position: relative;
    top: -20px;
}
.opb-25_text {
    font-size: 28px;
    height: auto;
    font-weight: normal;
    display: block;
    margin-left: 132px;
    margin-bottom: 15px;
    font-weight: bold;
}
.opb-30 {
    font-size: 20px;
    line-height: 20px;
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.opb-30::before {
    border: #000 var(--border-line-weight) solid;
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all .3s;
    margin-left: 132px;
    margin-right: 15px;
    content: '';
}
.opb-30.selected::before {
    background-color: black;
}
.opb-30::after {
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 5px;
    left: 139px;
}


.opb-20.open_phase21 .opb-25 {
    pointer-events: all;
    transform: scale(100% , 100%);
    opacity: 1;
    transition-delay: .05s;
}










#wall {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: calc(var(--view-frame-width) * 0.177);
    /* min-height: 100vh; */
}
.rack {
    /* width: 29%;
    margin-left: 2.1665%;
    margin-right: 2.1665%;
    width: calc(100% / 428 * 100);　*/
    width: calc(100% / 3);
    height: auto;
    position: absolute;
    top: auto;
    left: auto;
    opacity: 0;
    transform: scale(1);
    transform-origin: center center;
    pointer-events: none;
}
.rack.loaded {
    opacity: 1;
    transition: all .3s;
}
.rack::after {
    width: 100%;
    height: 0;
    padding-top: 120%;
    display: block;
    content: '';
    position: relative;
    pointer-events: none;
}
.rack a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(300% / 428 * 100);
    margin-left: calc((300% / 428 * 164) - 100%);
    margin-right: calc((300% / 428 * 164) - 100%);
    height: 70%;
    display: flex;
    justify-content: center;
    align-content: flex-end;
    flex-wrap: wrap;
    text-decoration: none;
}
/* クリック当たり判定 */
.rack a::before {
    content: '';
    display: block;
    position: absolute;
    top: 36%;
    left: 0;
    width: 100%;
    height: 136%;
    z-index: 1;
    pointer-events: all;
    cursor: pointer;
}

.rack.expand:nth-child(3n of .expand) a {
    margin-left: auto;
    margin-right: calc(300% / 428 * 32);
    left: auto;
    right: 0;
}
.rack.expand:nth-child(3n + 1 of .expand) a {
    margin-left: calc(300% / 428 * 32);
    margin-right: auto;
}


.rack a img {
    width: 80%;
    display: none;
    transform: translateY(3%);
}
.rack a img[src] {
    display: block;
}
.rack a > span {
    display: flex;
    width: 95%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 8%;
    font-size: 24px;
    /* ピクセル指定 */
    line-height: 120%;
    order: 3;
    color: #000;
    height: 25%;
    z-index: 20;
    position: relative;
}
.rack a > div.name-target {
    display: flex;
    width: 100%;
    height: auto;
    top: 100%;
    position: absolute;
    flex-direction: column;
}
.rack a > div > span {
    position: relative;
    top: 26px;
    color: #000000;
    font-weight: normal;
    width: 100%;
    text-align: center;
    font-size: calc(var(--view-frame-width) * 0.025);
    line-height: 1.45em;
}
.rack a > div > span.name {
    padding-top: 0.25em;
}
.rack a > div > span.target::after {
    color: #7a7a7a;
}
.rack.filter-shoes_target-men a > div > span.target::after {
    content: 'for Men';
}
.rack.filter-shoes_target-women a > div > span.target::after {
    content: 'for Women';
}
.rack.filter-shoes_target-junior a > div > span.target::after {
    content: 'for Juniors';
}

.rack a::after {
    content: '';
    order: 2;
    display: block;
    background-color: white;
    box-shadow: 9px 14px 15px 0px #dedede;
    /* ピクセル指定 */
    width: 100%;
    height: 5%;
    border-radius: 4px;
    z-index: 10;
}

.rack.collapse {
    transform: scale(0);
    opacity: 0;
}
.rack.collapse.none {
    display: none;
}

.keywords {
    display: none;
}
.opb-20_text.icon-keyword {
    align-items: center;
    align-content: center;
}
.opb-20_text.icon-keyword .keyword_itself {
    pointer-events: all;
    width: 100%;
    display: block;
    height: 80px;
    padding: 15px 30px;
    padding-left: 80px;
    font-size: 40px;
    border-radius: 20px;
    margin: 75px 40px;
    background-image: url('../img/search.svg');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
}




#product-hub-popup_back {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #33333399;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#product-hub-popup_back.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 2001;
}
#product-hub-popup {
    position: relative;
    width: 90%;
    max-width: 1200px;
    font-size: min(90vw , 540pt);
    height: auto;
    max-height: 95%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0 calc(var(--view-frame-width) * 0.11);
    --border-radius-calc: 5; /* Calculate and apply rounded corners to a rectangle based on its width.(auto brc) */
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: all .3s;
    overscroll-behavior: contain;
}
#product-hub-popup.popup-scrollable {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    transition: all .3s;
}
#product-hub-popup::-webkit-scrollbar {
    display: none;
}
#product-hub-popup.popup-scrollable #php_close_button{
    position: fixed;
    transition: all .3s;
}
#php_close_button {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: calc(var(--view-frame-width) * 0.05);
    margin-top: calc(var(--view-frame-width) * 0.05);
    width: calc(var(--view-frame-width) * 0.05);
    height: calc(var(--view-frame-width) * 0.05);
    z-index: 100;
    transition: all .3s;
}
#php_close_sticky {
    width: 100%;
    aspect-ratio: 1/1;
    transition: all .3s;
}
#php_close_sticky::before,#php_close_sticky::after {
    content: '';
    display: block;
    height: calc(100% * 0.1538);
    width: calc(100% * 1.1414);
    background-color: #000;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
}
#php_close_sticky::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#php_close_sticky::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
#php_close_collision {
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
}
#php_main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.php_img {
    width: calc(var(--view-frame-width) * 0.6);
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}
.php_img img {
    position: absolute;
    width: 100%;
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.php_brand {
    text-align: center;
    font-size: 3%;
    font-weight: bold;
    padding: 0 calc(var(--view-frame-width) * 0.03);
    display: inline-block;
    border: var(--border-line-weight) solid #000;
    border-radius: 9999px;
    background-color: #000;
    color: #fff;
    margin-bottom: 1.6%;
}
.php_name {
    width: 100%;
    text-align: center;
    font-size: calc(9% * 0.7);
    line-height: 1.25em;
}
.php_target {
    width: 100%;
    text-align: center;
    padding-bottom: calc(var(--view-frame-width) * 0.01);
}
.php_description {
    width: calc(var(--view-frame-width) * 0.8);
    text-align: center;
    font-size: 4%;
    line-height: 1.75em;
    margin-bottom: calc(var(--view-frame-width) * 0.05);
    text-wrap: balance;
    word-break: normal;
    word-break: auto-phrase;
}
.php_target span {
    font-size: 3.6%;
    color: #7a7a7a;
    display: none;
}
#php_main .use-coupon-comment{
    font-size: 3%;
    display: inline-block;
    padding: 0 calc(var(--view-frame-width) * 0.05);
    border: var(--border-line-weight) solid rgba(202,40,25,0);
    color: rgba(202,40,25,0);
    border-radius: 999px;
    font-weight: bold;
    margin-top: 0;
    line-height: 0;
    opacity: 0;
}
#php_main .use-coupon-comment.ready{
    margin-top: calc(var(--view-frame-width) * 0.05);
    border: var(--border-line-weight) solid rgba(202,40,25,1);
    line-height: 2em;
    color: rgba(202,40,25,1);
    transition: all .2s;
    opacity: 1;
}
#php_main .before-price{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    opacity: 0;
}
#php_main .before-price.ready{
    line-height: 1;
    transition: all .2s;
    opacity: 1;
}
#php_main .before-price-container {
    display: flex;
    flex-direction: row;
    font-weight: normal;
}
#php_main .before-price-kakaku-text{
    font-size: 5%;
}
#php_main .before-price-text{
    font-size: 5%;
    text-decoration: line-through;
    padding-left: 5%;
}
#php_main .before-price-link{
    color: #3b85ff;
    text-decoration: none;
    font-size: 4%;
}

#php_main .coupon-url {
    padding-left: 3%;
    display: flex;
    flex-direction: row;
}


.filter-shoes_target-men .php_target span:nth-of-type(1) {
    display: initial;
}
.filter-shoes_target-women .php_target span:nth-of-type(2) {
    display: initial;
}
.filter-shoes_target-junior .php_target span:nth-of-type(3) {
    display: initial;
}

.php_price, .php_price_mini_price{
    width: 100%;
    text-align: center;
    font-size: 7%;

}
.php_size {
    margin-bottom: 3.8%;
}
.php_sku-selector {
    width: 100%;
    height: 0.125em;
    position: relative;
    max-width: 1200px;
}
.php_sku-selector::before, .php_sku-selector::after {
    content: '';
    display: block;
    height: 100%;
    width: 2px;
    background-color: #000;
    position: absolute;
    top: 0;
    transition: all .3s;
    opacity: 0;
}
.php_sku-selector::before {
    left: 0;
}
.php_sku-selector::after {
    right: 0;
}
.not-right-edge.php_sku-selector::after {
    opacity: 1;
}
.not-left-edge.php_sku-selector::before {
    opacity: 1;
}
.php_sku-selector_container {
    width: 100%;
    height: 100%;
    font-size: 3.6%;
    align-items: center;
    overflow-x: scroll;
}
.php_sku-selector_items-flex {
    display: flex;
    height: 100%;
    width: fit-content;
    align-items: center;
    word-break: keep-all;
}

.php_buttons {
    margin-top: calc(var(--view-frame-width) * 0.05);
    margin-bottom: calc(var(--view-frame-width) * 0.11);
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
}
.php_buttons a {
    display: block;
    padding-top: 15%;
    width: 15%;
    height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 9999px;
    background-position: center center;
    background-size: cover;
    border: var(--border-line-weight) solid #000;
}
.php_buttons a::before,.php_buttons a::after {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    overflow: hidden;
    transition: all .3s;
    background-position: center center;
    background-size: cover;
}
.php_buttons a.php_favorite::before {
    background-color: rgba(255,80,120,0);
    mask: url('../img/like_act.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('../img/like_act.svg') no-repeat center;
    -webkit-mask-size: contain;
    opacity: 0;
}
.php_buttons a.php_favorite.favorited::before {
    background-color: rgba(255,80,120,1);
    opacity: 1;
}
.php_buttons a.php_favorite::after {
    background-color: rgba(0,0,0,1);
    mask: url('../img/like_hollow.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('../img/like_hollow.svg') no-repeat center;
    -webkit-mask-size: contain;
}
.php_buttons a.php_favorite.favorited::after {
    background-color: rgba(0,0,0,0);
}
.php_buttons button.php_tocart {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 60%;
    background-color: rgba(0, 0, 0, 1);
    border: none;
    border-radius: 9999px;
    justify-content: center;
}
.php_buttons .php_cart_icon {
    background-color: rgb(255, 255, 255);
    mask: url('../img/cart.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('../img/cart.svg') no-repeat center;
    -webkit-mask-size: contain;
    height: 55%;
    aspect-ratio: 1/1;
}
.php_buttons .php_cart_text {
    display: block;
    font-size: calc(var(--view-frame-width) * 0.035);
    color: #fff;
    padding-left: 4%;
}
.php_buttons a.php_detail::before {
    background-image: URL('../img/detail.svg');
    filter: invert(100%);
}
.php_price_mini {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#product-hub-popup.scroll {
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
#product-hub-popup:has(.scroll) .php_img {
    width: 70%;
}
#product-hub-popup.scroll .php_price_mini {
    display: flex;
}

#rack_counter {
    position: fixed;
    height: 200px;
    width: 100%;
    left: 0;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 30px;
    background: linear-gradient(to top, white 60%, rgba(255, 255, 255, 0) 100%);
}
#rack_counter::before {
    content: '';
    display: block;
    position: absolute;
    background-color: white;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: 10vh;
}


#rack_counter > span {
    margin: 0 0.25em;
}


.opb-30.disable-selection {
    opacity: 0.5;
    cursor: not-allowed;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#brand .opb-20:has( .disable-selection) {
    opacity: 0.5;
    cursor: not-allowed;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* SKUセレクターのボタン（サイズ・カラー） */
.color-button {
    width: auto;
    height: calc(80% - 8px);
    padding: 0;
    aspect-ratio: 1/1;
    border: var(--border-line-weight) solid #999;
    border-radius: 50%;
    box-sizing: border-box;
    margin-right: min(calc(2vw + 8px), 34px);
    cursor: pointer;
    transition: all .3s;
    position: relative;
    left: 4px;
}
.color-button:last-of-type {
    margin-right: 4px;
}
.color-button::after {
    content: '';
    transition: all .3s;
    pointer-events: none;
    border: var(--border-line-weight) solid gray;
    box-sizing: border-box;
    opacity: 0;
    border-radius: 50%;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    display: block;
    position: absolute;
}
.color-button.selected::after {
    opacity: 1;
}

.size-button {
    width: auto;
    height: 80%;
    padding: 0;
    aspect-ratio: 1/1;
    border: var(--border-line-weight) solid #999;
    border-radius: 15%;
    box-sizing: border-box;
    margin-right: min(2vw, 26px);
    cursor: pointer;
    position: relative;
    background: transparent;
    color: black;
    font-size: 85%;
    font-weight: bold;
    transition: all .3s;
}
.size-button:last-of-type {
    margin-right: 0;
}
.size-button.selected {
    background: black;
    color: white;
}
.size-button > span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
}

.soldout {
    opacity: 0.15;
    cursor: not-allowed;
}

.invalid {
    opacity: 0.15;
    cursor: not-allowed;
}

.disabled {
    opacity: 0.15;
    cursor: not-allowed;
    pointer-events: none;
}