﻿/* ---- root ---- */
:root {
    --rv-pc-header-height: 85px;
    --rv-sp-header-height: 6.4rem;

    --rv-font-notoSans: 'Noto Sans JP', "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --rv-font-zenkaku: "Zen Kaku Gothic New", 'Noto Sans JP', "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --rv-font-lato: "Lato", 'Noto Sans JP', "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --rv-font-openSans: "Open Sans", 'Noto Sans JP', "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --rv-font-lusitana: "Lusitana", serif;
    --rv-font-shipporiMincho: "Shippori Mincho", serif;

    --rv-transition: .3s;

    --rv-bg-main: #FBF9F6;
    --rv-bg-footer: #9F8450;
    --rv-bg-top: #F4EFE4;

    --rv-black: #000;
    --rv-gray: #EBEBEB;
    --rv-gray2: #808080;
    --rv-gray3: #E9E9E9;
    --rv-white: #fff;
    --rv-gold: #9F8450;
    --rv-goldRGB: 159, 132, 80;
    --rv-gold2: #5F4F30;
    --rv-gold2RGB: 95, 79, 48;
    --rv-gold3: #E9DFCA;
    --rv-gold4: #F4EFE4;
    --rv-gold4RGB: 244, 239, 228;
    --rv-gold5: #C9AF7A;

    --rv-zindex-header: 9999;
    --rv-zindex-sp-header-logo: 1;
    --rv-zindex-top-category-modal: 10000;
    --rv-zindex-filter: 10000;
    --rv-zindex-filterITems: 3s;
    --rv-zindex-sort: 2;
    --rv-zindex-goodsdetail-fixedbtn: 50;

    /* animation */
    --rv-imgHoverExpand-transition: scale .75s ease;
    --rv-imgHoverExpand-scale: 1.025;
    --rv-rotateBorderGradient: rotateBorderGradient 1.5s linear infinite normal;
    --rv-shine: shine 1s;
}

/* ---- property ---- */
@property --gradient-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0deg;
}

/* ---- keyframes ---- */
@keyframes rotateBorderGradient {
    0% {
        --gradient-angle: 0deg;
    }

    to {
        --gradient-angle: 180deg;
    }
}

/* ---- Utils ---- */
@media screen and (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
    .pc {
        display: block !important;
    }
}

/* ---- base ---- */
body {
    font-family: var(--rv-font-zenkaku);
    font-weight: 400;
    color: var(--rv-black);
    line-height: 1.7;
    background-color: var(--rv-bg-main);
}
.mainframe_ a:hover {
    opacity: 1;
}
@media (hover: hover) {
    .mainframe_ a:hover {
        opacity: .3;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: calc(10 / 390 * 100 * 1vw);
    }
    body {
        font-size: 1.4rem;
    }
    .wrapper_ {
        padding-top: var(--rv-sp-header-height);
    }
}

@media screen and (min-width: 768px) {
    body {
        font-size: 14px;
    }
    .wrapper_ {
        padding-top: var(--rv-pc-header-height);
    }
}

/* Page Top */
#pageTopBtn {
    display: none !important;
}

/* ---- BUTTONS ---- */
/* gold button with gradation */
.rv-button-gold-gradation {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-family: var(--rv-font-lusitana);
    color: var(--rv-gold2);
    font-weight: 400;
    line-height: 1;
    letter-spacing: .02em;
    text-decoration: none;
    background: transparent;
    border-radius: 50px;
    overflow: hidden;
    transition: var(--rv-transition);
    position: relative;
}
.rv-button-gold-gradation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 1px solid transparent;
    background: linear-gradient(var(--gradient-angle), rgb(var(--rv-goldRGB)) 0%,rgb(var(--rv-gold4RGB)) 49%,rgb(var(--rv-goldRGB)) 100%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}
.rv-button-gold-gradation:not(:hover)::before {
    animation: var(--rv-rotateBorderGradient);
}
@media (hover: hover) {
    .rv-button-gold-gradation:hover {
        color: var(--rv-white);
        background-color: var(--rv-gold);
        opacity: 1 !important;
    }
}
@media screen and (min-width: 768px) {
    .rv-button-gold-gradation {
        font-size: 14px;
    }
}
/* gold button with gradation - arrow */
.rv-button-gold-gradation.-arrow {
    padding-right: 1rem;
}
.rv-button-gold-gradation.-arrow::after {
    display: block;
    content: "";
    width: 1.4rem;
    height: .8rem;
    background: url(../../common/img/ic-arrow-right-gold.png) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 2.6rem;
    translate: 0 calc(-50% - 1px);
    transition: var(--rv-transition);
}
@media (hover: hover) {
    .rv-button-gold-gradation.-arrow:hover::after {
        background-image: url(../img/ic-arrow-right-white.png);
    }
}
@media screen and (min-width: 768px) {
    .rv-button-gold-gradation.-arrow {
        padding-right: 10px;
    }
    .rv-button-gold-gradation.-arrow::after {
        width: 14px;
        height: 8px;
        right: 26px;
    }
}

/* white button with gradation */
.rv-button-white-gradation {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-family: var(--rv-font-lusitana);
    color: var(--rv-white);
    font-weight: 400;
    line-height: 1;
    letter-spacing: .02em;
    text-decoration: none;
    background: rgba(255, 255, 255, .01);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}
.rv-button-white-gradation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 1px solid transparent;
    background: linear-gradient(var(--gradient-angle), rgb(255, 255, 255) 0%, rgba(255, 255, 255, .1) 49%, rgb(255, 255, 255) 100%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}
.rv-button-white-gradation:not(:hover)::before {
    animation: var(--rv-rotateBorderGradient);
}
@media (hover: hover) {
    .rv-button-white-gradation:hover {
        background-color: var(--rv-gold);
        opacity: 1 !important;
    }
    .rv-button-white-gradation:hover::before {
        border: 1px solid var(--rv-gold);
    }
}
@media screen and (min-width: 768px) {
    .rv-button-white-gradation {
        font-size: 14px;
    }
}
/* white button with gradation - arrow */
.rv-button-white-gradation.-arrow {
    padding-right: 1rem;
}
.rv-button-white-gradation.-arrow::after {
    display: block;
    content: "";
    width: 1.4rem;
    height: .8rem;
    background: url(../../common/img/ic-arrow-right-white.png) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 2.6rem;
    translate: 0 -50%;
}
@media screen and (min-width: 768px) {
    .rv-button-white-gradation.-arrow {
        padding-right: 10px;
    }
    .rv-button-white-gradation.-arrow::after {
        width: 14px;
        height: 8px;
        right: 26px;
    }
}

/* swiper Prev button and Next button */
.rv-swiper-button.swiper-button-prev,
.rv-swiper-button.swiper-button-next {
    width: 60px;
    height: 60px;
    background-size: 22px auto;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--rv-transition);
}
.rv-swiper-button.swiper-button-prev {
    background-image: url(../../common/img/ic-arrow-left-gold.png);
}
.rv-swiper-button.swiper-button-next {
    background-image: url(../../common/img/ic-arrow-right-gold.png);
}
@media (hover: hover) {
    .rv-swiper-button.swiper-button-prev:hover,
    .rv-swiper-button.swiper-button-next:hover {
        background-color: var(--rv-gold);
    }
    .rv-swiper-button.swiper-button-prev:hover {
        background-image: url(../../common/img/ic-arrow-left-white.png);
    }
    .rv-swiper-button.swiper-button-next:hover {
        background-image: url(../../common/img/ic-arrow-right-white.png);
    }
}
.rv-swiper-button.swiper-button-prev::before,
.rv-swiper-button.swiper-button-next::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(var(--gradient-angle), rgb(var(--rv-goldRGB)) 0%, rgb(var(--rv-gold4RGB)) 49%, rgb(var(--rv-goldRGB)) 100%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}
.rv-swiper-button.swiper-button-prev:not(:hover)::before,
.rv-swiper-button.swiper-button-next:not(:hover)::before {
    animation: var(--rv-rotateBorderGradient);
}
.rv-swiper-button.swiper-button-next.swiper-button-disabled,
.rv-swiper-button.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

/* ---- Header ---- */
.rv-header-wrapper {
    width: 100%;
    background-color: var(--rv-bg-main);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--rv-zindex-header);
    border-bottom: 1px solid var(--rv-gold);
}
.rv-header-wrapper.-is-show {
    animation: rv-header-show 0.8s forwards;
}
.rv-header-wrapper.-is-hide {
    animation: rv-header-hide 0.8s forwards;
}
@keyframes rv-header-show {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0%);
    }
    }
    @keyframes rv-header-hide {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

.rv-header-info {
    display: none;
    text-align: center;
    background-color: var(--rv-gold);
    padding: 10px;
}
.rv-header-info * {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .05em;
    color: var(--rv-white);
}

.rv-header {
    /* border-bottom: 1px solid var(--rv-gold); */
}
.rv-header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--rv-sp-header-height);
    margin: 0 auto;
    position: relative;
}
@media screen and (min-width: 768px) {
    .rv-header-inner {
        max-width: calc(1280px + (16px * 2));
        height: var(--rv-pc-header-height);
    }
}
@media screen and (min-width: 1281px) {
    .rv-header-inner {
        max-width: 100%;
    }
}

/* header navigation */
.rv-header-nav {
    display: none;
}
@media screen and (min-width: 768px) {
    .rv-header-nav {
        display: block;
        width: fit-content;
        position: absolute;
        top: 0;
        left: 0;
    }
    .rv-header-nav-list {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .rv-header-nav-list-i a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: var(--rv-pc-header-height);
        font-size: 14px;
        font-family: var(--rv-font-lusitana);
        line-height: 1;
        letter-spacing: .02em;
        text-decoration: none;
        padding: 0 16px;
        cursor: pointer;
    }
    @media (hover: hover) {
        .rv-header-nav-list-i a:hover {
            opacity: 1;
            color: var(--rv-gold);
        }
    }
    @media screen and (max-width: 900px) {
        .rv-header-nav-list-i a {
            padding: 0 8px;
        }
    }
    .rv-header-nav-list-i.-is-active a {
        color: var(--rv-gold);
    }
}
@media screen and (min-width: 1281px) {
    .rv-header-nav {
        left: 64px;
    }
}

/* header logo */
.rv-header-logo {
    display: block;
    width: 7.6rem;
    height: 4rem;
    position: relative;
    z-index: var(--rv-zindex-sp-header-logo);
}
.rv-header-logo a {
    display: block;
    width: 100%;
    height: 100%;
}
.rv-header-logo img {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (min-width: 768px) {
    .rv-header-logo {
        width: 90px;
        height: 47px;
        position: static;
    }
}

/* header icons */
.rv-header-icons {
    display: flex;
    align-items: center;
    column-gap: 1.6rem;
    width: 100%;
    padding: 0 2.8rem;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
}
.rv-header-icons-i {
    width: 2rem;
    height: 2rem;
}
.rv-header-icons-i.-sp-button {
    display: block;
    position: relative;
}
.rv-header-icons-i.-sp-button div {
    display: block;
    width: 2rem;
    height: .1rem;
    background-color: var(--rv-black);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: var(--rv-transition);
}
.rv-header-icons-i.-sp-button div:nth-child(1) {
    top: -1.3rem;
}
.rv-header-icons-i.-sp-button div:nth-child(3) {
    top: 1.3rem;
}
.rv-header-icons-i.-sp-button.-is-open div {
    width: 1.5rem;
}
.rv-header-icons-i.-sp-button.-is-open div:nth-child(1) {
    top: 0;
    rotate: -45deg;
}
.rv-header-icons-i.-sp-button.-is-open div:nth-child(2) {
    opacity: 0;
}
.rv-header-icons-i.-sp-button.-is-open div:nth-child(3) {
    top: 0;
    rotate: 45deg;
}
.rv-header-icons-i a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.rv-header-icons-i img {
    display: block;
    object-fit: contain;
    object-position: center center;
}
.rv-header-icons-i.-heart {
    margin-left: auto;
}
.rv-header-icons-i.-search img {
    width: 1.5rem;
    height: 1.5rem;
}
.rv-header-icons-i.-heart img {
    width: 1.6rem;
    height: 1.5rem;
}
.rv-header-icons-i.-user img {
    width: 1.4rem;
    height: 1.6rem;
}
.rv-header-icons-i.-cart a {
    position: relative;
}
.rv-header-icons-i.-cart img {
    width: 1.4rem;
    height: 1.5rem;
}
.rv-header-icons-i.-cart .rv-header-icons-i-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--rv-black);
    border-radius: 50%;
    position: absolute;
    right: -.3rem;
    bottom: -.1rem;
}
.rv-header-icons-i.-cart .rv-header-icons-i-count span {
    display: inline-block;
    font-size: 1rem;
    color: var(--rv-white);
    font-family: var(--rv-font-openSans);
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .rv-header-icons {
        column-gap: 16px;
        width: fit-content;
        padding: 0 16px 0 0;
    }
    .rv-header-icons-i {
        width: 24px;
        height: 24px;
    }
    .rv-header-icons-i.-sp-button {
        display: none;
    }
    .rv-header-icons-i.-heart {
        margin-left: inherit;
    }
    .rv-header-icons-i.-search img {
        width: 18px;
        height: 18px;
    }
    .rv-header-icons-i.-heart img {
        width: 20px;
        height: 17px;
    }
    .rv-header-icons-i.-user img {
        width: 16px;
        height: 19px;
    }
    .rv-header-icons-i.-cart img {
        width: 16px;
        height: 18px;
    }
    .rv-header-icons-i.-cart .rv-header-icons-i-count {
        width: 12px;
        height: 12px;
        right: -4px;
        bottom: -3px;
    }
    .rv-header-icons-i.-cart .rv-header-icons-i-count span {
        font-size: 10px;
    }
}
@media screen and (min-width: 1281px) {
    .rv-header-icons {
        padding: 0 80px 0 0;
    }
}


/* ---- MEGA Menu ---- */
.mega-menu {
    display: block;
    width: 100%;
    position: absolute;
    top: calc(var(--rv-pc-header-height) + 1px);
}
.mega-menu-overlay {
    display: block;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transition: opacity 300ms ease;
}
.mega-menu-overlay:not(.-is-show) {
    transition-delay: 400ms;
}
.mega-menu-overlay.-is-show {
    opacity: 1;
    visibility: visible;
}
.mega-menu-i {
    display: none;
    width: 100%;
    height: calc(100vh - var(--rv-pc-header-height));
    max-height: valc(100vh - var(--rv-pc-header-height));
    position: absolute;
    top: 0;
    left: 0;
}
.mega-menu-i.-is-active {
    display: block;
}
body:has(.mega-menu-i.-is-active) {
    overflow: hidden !important;
}
.mega-menu-body {
    width: 400px;
    height: 100%;
    background-color: var(--rv-bg-main);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 400ms ease;
}
.mega-menu-body.-is-show {
    transition: transform 400ms ease 300ms;
    transform: translateX(0);
}
.mega-menu-body-inner {
    width: 100%;
    padding: 60px 48px 90px;
}
.mega-menu-links {
    display: flex;
    flex-direction: column;
}
.mega-menu-links-i {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 400ms ease, transform 400ms ease;
}

.mega-menu-i.-is-active .mega-menu-body.-is-show .mega-menu-links-i {
    opacity: 1;
    transform: translateY(0);
}
.mega-menu-links > .mega-menu-links-i:nth-child(2),
.mega-menu-links > .mega-menu-links-i:nth-child(3) {
    margin-top: 30px;
}
.mega-menu-links-i a {
    display: block;
    text-decoration: none;
}
.mega-menu-links-i:has(.mega-menu-links-i-img) a {
    position: relative;
}
.mega-menu-links-i-img {
    width: 100%;
    aspect-ratio: 304 / 182;
}
.mega-menu-links-i-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.mega-menu-links-i-title {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .07em;
}
.mega-menu-links-i-img + .mega-menu-links-i-title {
    font-family: var(--rv-font-lusitana);
    font-size: 18px;
    line-height: 1;
    letter-spacing: .02em;
    color: var(--rv-white);
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px 10px 0;
}
.mega-menu-links-i:not(:has(.mega-menu-links-i-img)) .mega-menu-links-i-title::after {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url('../img/ic-arrow-right-black.png') no-repeat center / contain;
}
.mega-menu-links-i-wrap {
    display: flex;
    column-gap: 10px;
}
.mega-menu-links-i-wrap .mega-menu-links-i-img {
    aspect-ratio: 1/1;
}

/* ---- SP Menu ---- */
.sp-menu-wrapper {
    display: block;
    width: 100%;
    height: calc(100dvh - var(--rv-sp-header-height));
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: calc(var(--rv-sp-header-height) + 1px);
    overflow-x: hidden;
    transition: opacity 300ms ease;
}
.sp-menu-wrapper:not(.-is-open) {
    pointer-events: none;
    opacity: 0;
    transition-delay: 400ms;
}
.sp-menu-inner {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 2;
    transition: transform 400ms ease 300ms;
    overflow: hidden;
}
.sp-menu-wrapper:not(.-is-open) .sp-menu-inner {
    transform: translateX(-100%);
    transition-delay: 0ms;
}
/* first */
.sp-menu-first {
    width: 100%;
    height: calc(100dvh - var(--rv-sp-header-height));
    background-color: var(--rv-bg-main);
    overflow-y: auto;
}
.sp-menu-wrapper.-is-open .sp-menu-first {
    left: 0;
}
.sp-menu-first-inner {
    width: 100%;
}
.sp-menu-first-list {
    display: flex;
    flex-direction: column;
    padding: 2rem 2.8rem;
}
.sp-menu-first-list-i {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 400ms ease, transform 400ms ease;
}
.sp-menu-wrapper.-is-open .sp-menu-first-list-i {
    opacity: 1;
    transform: translateY(0);
}
.sp-menu-first-list-i a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-family: var(--rv-font-lusitana);
    line-height: 1.2;
    letter-spacing: .02em;
    text-decoration: none;
    padding: 2rem 0;
}
.sp-menu-first-list-i.-has-child a::after {
    display: block;
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    background: url('../img/ic-arrow-right-black.png') no-repeat center / contain;
}

/* second */
.sp-menu-second {
    width: 100%;
    height: calc(100dvh - var(--rv-sp-header-height));
    background-color: var(--rv-bg-main);
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: auto;
    transition: transform 400ms ease;
    padding-bottom: 4rem;
}
.sp-menu-second:not(.-is-open) {
    transform: translateX(100%);
}
.sp-menu-second-inner {
    width: 100%;
    padding: 2rem 2.8rem 4rem;
}
.sp-menu-back {
    display: flex;
    align-items: center;
    column-gap: .8rem;
    font-family: var(--rv-font-lusitana);
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: .02em;
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 400ms ease, transform 400ms ease;
}
.sp-menu-second.-is-open .sp-menu-back  {
    opacity: 1;
    transform: translateY(0);
}
.sp-menu-back::before {
    display: block;
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    background: url('../img/ic-arrow-left-black.png') no-repeat center / contain;
}
.sp-menu-second-list {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}
.sp-menu-second-list-wrap {
    display: flex;
    column-gap: 1rem;
    margin-top: 1rem;
}
.sp-menu-second-list-i + .sp-menu-second-list-i {
    margin-top: 1rem;
}
.sp-menu-second-list > .sp-menu-second-list-i:nth-child(2),
.sp-menu-second-list > .sp-menu-second-list-i:nth-child(3) {
    margin-top: 2.8rem;
}
.sp-menu-second-list-wrap .sp-menu-second-list-i {
    margin-top: 0 !important;
}
.sp-menu-second-list-i {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 400ms ease, transform 400ms ease;
}
.sp-menu-second.-is-open .sp-menu-second-list-i {
    opacity: 1;
    transform: translateY(0);
}
.sp-menu-second-list-i a {
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    width: 100%;
    text-decoration: none;
}

.sp-menu-second-list-i a:has(.sp-menu-second-list-i-img) {
    position: relative;
}
.sp-menu-second-list-i-img {
    width: 100%;
}
.sp-menu-second-list-i-img img {
    display: block;
    width: 100%;
    height: auto;
}
.sp-menu-second-list-i-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: .07em;
}
.sp-menu-second-list-i:has(.sp-menu-second-list-i-img) .sp-menu-second-list-i-title {
    display: block;
    font-family: var(--rv-font-lusitana);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: .02em;
    color: var(--rv-white);
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 1.6rem;
    padding-left: 1.2rem;
}
.sp-menu-second-list-i-title::after {
    display: block;
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    background: url('../img/ic-arrow-right-black.png') no-repeat center / contain;
}
.sp-menu-second-list-i:has(.sp-menu-second-list-i-img) .sp-menu-second-list-i-title::after {
    display: none;
}

/* ---- Footer ---- */
#footer {
    font-family: var(--rv-font-zenkaku);
}
.rv-footer {
    background-color: var(--rv-bg-footer);
    color: var(--rv-white);
    margin-top: 4rem;
}
@media screen and (min-width: 768px) {
    .rv-footer {
        margin-top: 100px;
    }
}

/* -- rv-footer-icons -- */
.rv-footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20rem;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}
.rv-footer-icons-i {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(100% / 3);
    row-gap: 2.8rem;
    height: 100%;
}
.rv-footer-icons-i + .rv-footer-icons-i {
    border-left: 1px solid rgba(255, 255, 255, .4);
}
.rv-footer-icons-i a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2.8rem;
    width: 100%;
    height: 100%;
    transition: var(--rv-transition);
}
.rv-footer-icons-i a:hover {
    opacity: 1;
}
.rv-footer-icons-i-title {
    height: 2em;
    font-size: 1.3rem;
    font-family: var(--rv-font-lusitana);
    letter-spacing: .02em;
    line-height: 1;
    text-align: center;
    transition: var(--rv-transition);
}
.rv-footer-icons-i-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 2rem 2rem;
    transition: var(--rv-transition);
}
.rv-footer-icons-i-icon.-instagram {
    background-image: url(../img/footer/footer-instagram.png);
}
.rv-footer-icons-i-icon.-service {
    background-image: url(../img/footer/footer-service.png);
}
.rv-footer-icons-i-icon.-stores {
    background-image: url(../img/footer/footer-stores.png);
}
@media (hover: hover) {
    
    .rv-footer-icons-i-icon {
        background-size: 24px;
    }
    #rv-footer .rv-footer-icons-i a:hover {
        opacity: 1;
        background-color: var(--rv-gold4);
    }
    .rv-footer-icons-i a:hover .rv-footer-icons-i-title {
        color: var(--rv-gold);
    }
    .rv-footer-icons-i a:hover .rv-footer-icons-i-icon {
        border-color: var(--rv-gold);
    }
    .rv-footer-icons-i a:hover .rv-footer-icons-i-icon.-instagram {
        background-image: url(../img/footer/footer-instagram-gold.png);
    }
    .rv-footer-icons-i a:hover .rv-footer-icons-i-icon.-service {
        background-image: url(../img/footer/footer-service-gold.png);
    }
    .rv-footer-icons-i a:hover .rv-footer-icons-i-icon.-stores {
        background-image: url(../img/footer/footer-stores-gold.png);
    }
}
@media screen and (min-width: 768px) {
    .rv-footer-icons {
        height: 348px;
    }
    .rv-footer-icons-i a {
        row-gap: 48px;
    }
    .rv-footer-icons-i-title {
        height: auto;
        font-size: 16px;
    }
    .rv-footer-icons-i-icon {
        width: 100px;
        height: 100px;
    }
    .rv-footer-icons-i-icon img {
        width: 24px;
        height: 24px;
    }
}

/* -- rv-footer-main -- */
#rv-footer a {
    color: var(--rv-white);
    text-decoration: none;
}
.rv-footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
    padding: 6rem 3rem 0;
}
.rv-footer-logo {
    width: 15.6rem;
    height: 8rem;
    margin: 0 auto 6rem;
}
.rv-footer-logo a {
    display: block;
    width: 100%;
    height: 100%;
}
.rv-footer-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.rv-footer-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.rv-footer-link {
    width: 12rem;
}
#rv-footer .rv-footer-link-i + .rv-footer-link-i {
    margin-top: 1.6rem;
}
#rv-footer .rv-footer-link:not(.rv-footer-link-other) .rv-footer-link-i:nth-child(1) {
    margin-bottom: 3.2rem;
}
.rv-footer-link a {
    display: block;
}
.rv-footer-link:not(.rv-footer-link-other) .rv-footer-link-i a {
    font-size: 1.3rem;
    color: var(--rv-white);
    letter-spacing: .07em;
    line-height: 1.2;
}
.rv-footer-link:not(.rv-footer-link-other) .rv-footer-link-i:nth-child(1) a {
    font-size: 1.3rem;
    font-family: var(--rv-font-lusitana);
    letter-spacing: .02em;
    line-height: 1;
}
#rv-footer .rv-footer-link.rv-footer-link-other {
    display: flex;
    column-gap: 2.8rem;
    width: 100%;
    margin-top: 8rem;
}
#rv-footer .rv-footer-link.rv-footer-link-other .rv-footer-link-i + .rv-footer-link-i {
    margin-top: 0;
}
.rv-footer-link.rv-footer-link-other a {
    font-size: 1.3rem;
    font-family: var(--rv-font-lusitana);
    letter-spacing: .05em;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    #rv-footer a:hover {
        opacity: .4;
    }
    .rv-footer-main {
        padding: 100px 80px 0;
    }
    .rv-footer-logo {
        width: 195px;
        height: 100px;
        margin: 0;
    }
    .rv-footer-nav {
        flex-wrap: nowrap;
        width: calc(100% - 215px);
        max-width: 540px;
    }
    .rv-footer-link {
        width: 115px;
    }
    #rv-footer .rv-footer-link-i:not(:has(a)) {
        font-size: 15px;
    }
    .rv-footer-link:not(.rv-footer-link-other) .rv-footer-link-i:nth-child(1) a {
        font-size: 14px;
    }
    #rv-footer .rv-footer-link-i + .rv-footer-link-i {
        margin-top: 16px;
    }
    #rv-footer .rv-footer-link:not(.rv-footer-link-other) .rv-footer-link-i:nth-child(1) {
        margin-bottom: 32px;
    }
    #rv-footer .rv-footer-link-i:not(:has(a)) + .rv-footer-link-i {
        margin-top: 32px;
    }
    .rv-footer-link:not(.rv-footer-link-other) .rv-footer-link-i a {
        font-size: 13px;
    }
    #rv-footer .rv-footer-link.rv-footer-link-other {
        display: block;
        width: 115px;
        margin-top: 0;
    }
    #rv-footer .rv-footer-link.rv-footer-link-other .rv-footer-link-i + .rv-footer-link-i {
        margin-top: 32px;
    }
    .rv-footer-link.rv-footer-link-other a {
        font-size: 14px;
    }
}

/* -- rv-footer-sub -- */
#rv-footer .footer-sub-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 1.6rem;
    column-gap: 2.8rem;
    width: 100%;
    margin-top: 6rem;
}
.footer-sub-link-i {
    line-height: 1;
}
.footer-sub-link-i:not(.footer-sub-link-i-store) a {
    line-height: 1;
    font-size: 1.2rem;
    letter-spacing: 0;
}
#rv-footer .footer-sub-link-i.footer-sub-link-i-store {
   margin-top: 6rem;
}
.footer-sub-link-i.footer-sub-link-i-store a {
    display: flex;
    align-items: center;
    column-gap: .4rem;
    font-size: 1.3rem;
    font-family: var(--rv-font-lusitana);
    line-height: 1;
    letter-spacing: .02em;
}
.footer-sub-link-i.footer-sub-link-i-store a::after {
    display: inline-block;
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    background: url(../img/ic-arrow-righttop-white.png) no-repeat center / contain;
}
@media screen and (min-width: 768px) {
    #rv-footer .footer-sub-link {
        align-items: center;
        row-gap: 28px;
        column-gap: 28px;
        margin-top: 100px;
    }
    .footer-sub-link-i:not(.footer-sub-link-i-store) a {
        font-size: 12px;
        letter-spacing: .07em;
    }
    #rv-footer .footer-sub-link-i.footer-sub-link-i-store {
        margin-top: 0;
        margin-left: auto;
    }
    .footer-sub-link-i.footer-sub-link-i-store a {
        column-gap: 4px;
        font-size: 14px;
    }
    .footer-sub-link-i.footer-sub-link-i-store a::after {
        width: 14px;
        height: 14px;
    }
}

/* copy */
.footer-copy {
    max-width: 100%;
    font-size: 1rem;
    font-family: var(--rv-font-openSans);
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
    margin: 8rem auto 0;
    padding: 0 0 4rem;
}
@media screen and (min-width: 768px) {
    .footer-copy {
        max-width: 100%;
        margin: 100px auto 0;
        font-size: 10px;
        text-align: left;
        padding: 0 80px 100px;
    }
}

/* ---- タイトル ---- */
/* h1 */
.common_Tit1_ {
    font-family: var(--rv-font-lusitana);
    line-height: 1;
    text-align: left;
    padding: 0;
    position: static;
    margin-left: auto;
    margin-right: auto;
}
.common_Tit1_:after {
    display: none;
}
@media screen and (max-width: 767px) {
    .common_Tit1_ {
        font-size: 3.2rem;
        margin-top: 10rem;
        margin-bottom: 6rem;
        padding: 0 2rem;
    }
}
@media screen and (min-width: 768px) {
    .common_Tit1_ {
        font-size: 56px;
        margin-top: 120px;
        margin-bottom: 80px;
        padding: 0 80px;
    }
}
/* h2 */
.common_Tit2_b_ {
    text-align: left;
    color: var(--rv-black);
}
.common_Tit2_b_ > span {
    text-align: left;
}
.common_Tit2_b_:after {
    display: none;
}

/* ---- 商品一覧 ---- */
/* GoodsStyleV */
.StyleV_Frame_ {
    display: flex;
    flex-wrap: wrap;
    column-gap: .2rem;
    row-gap: 4.8rem;
    letter-spacing: .05em;
    margin: 0 auto 6rem;
    overflow: hidden;
}
.StyleV_Item_ {
    width: calc((100% - .2rem) / 2);
    float: none;
    clear: none;
    margin: 0;
    position: relative;
}
.StyleV_Item_ .img_ {
    width: 100%;
    padding-top: calc(100% * (367 / 277));/* 縦横比 277:367*/
    position: relative;
    z-index: 0;
    height: 0;
    margin: 0 auto;
}
.StyleV_Item_ .img_ a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}
.StyleV_Item_ .img_ a:hover {
    opacity: 1;
    transition: var(--rv-transition);
}
.StyleV_Item_ .img_ img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    transition: var(--rv-imgHoverExpand-transition);
}
.StyleV_Item_ .img_ a:hover img {
    scale: var(--rv-imgHoverExpand-scale);
}
.StyleV_Frame_ .StyleV_Item_ .variation_:not(:empty) {
    margin-top: calc(1.6rem - .5rem);
}
.StyleV_Frame_ .StyleV_Item_ .variation_list_wrap_ {
    margin: 0;
    padding: 0 1.6rem;
}
.StyleV_Frame_ .StyleV_Item_ .variation_ .varItem_ {
    width: 3.4rem;
    height: 1.4rem;
    margin-right: 1.2rem;
    margin-top: .5rem;
    border: 1px solid transparent;
}
div[class^=StyleV] .variation_ .varItem_:has(.color_Selected_),
div[class^=StyleV] .variation_ .varItem_:has(.size_Selected_) {
    border: 1px solid var(--rv-gold);
    padding: 1px;
}
div[class^=StyleV] .variation_ .varItem_ > div {
    background-size: cover;
    background-position: center center;
    border: none;
}
.StyleV_Item_ .desp_ {
    text-align: left;
    margin: 1.6rem 0 0;
    padding: 0 1.6rem;
}
.StyleV_Item_ .desp_ .name1_ a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 1.4rem;
    line-height: 1.2;
    text-decoration: none;
}
.StyleV_Item_ .desp_ .price_ {
    font-size: 1.2rem;
    color: var(--rv-gray2);
    margin-top: 1.2rem;
    line-height: 1.4;
}
.StyleV_Item_ .desp_ .price_ .small_ {
    display: inline-block;
    padding-left: 3px;
}
.StyleV_Item_ .icon_ {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
    border-bottom: none;
    margin: 1.6rem auto 0;
    width: 100%;
    padding: 0 1.6rem;
}
.StyleV_Item_ .icon_ span {
    font-size: 1.2rem;
    color: var(--rv-gold);
    line-height: 1.2;
}
.StyleV_Frame_ .StyleV_Item_ .icon_ img {
    max-height: 1.4rem;
}
.StyleV_Item_ .icon_ span:before {
    display: none;
}
.StyleV_Item_ .icon_ span:has(+span)::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--rv-gold);
    margin-left: .5em;
    margin-right: .5em;
    vertical-align: middle;
}
.StyleV_Item_ .new-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 15px;
    background-color: var(--rv-gold);
    top: 1.6rem;
    left: 1.6rem;
}
.StyleV_Item_ .new-icon::before {
    display: block;
    content: "NEW";
    font-size: 10px;
    font-family: var(--rv-font-openSans);
    font-weight: 400;
    line-height: 15px;
    color: var(--rv-white);
}
.StyleV_Item_ .new-icon img {
    display: none;
}
@media screen and (min-width: 768px) {
    .StyleV_Frame_ {
        column-gap: 4px;
        row-gap: 60px;
        margin: 0 auto 60px;
        padding: 0 80px;
    }
    .StyleV_Frame_ .StyleV_Item_ {
        width: calc((100% - 12px) / 4);
        padding: 0;
    }
    .CategoryStyleT_ li:nth-child(2n+1), .StyleT_Frame_ .StyleT_Item_:nth-child(2n+1) {
        clear: none;
    }
    .StyleV_Frame_ .StyleV_Item_ .variation_:not(:empty) {
        margin-top: calc(16px - 5px);
    }
    .StyleV_Frame_ .StyleV_Item_ .variation_list_wrap_ {
        padding: 0 20px;
    }
    .StyleV_Frame_ .StyleV_Item_ .variation_ .varItem_ {
        width: 34px;
        height: 14px;
        margin-right: 12px;
        margin-top: 5px;
    }
    .StyleV_Item_ .icon_ {
        padding: 0 20px;
        margin-top: 16px;
    }
    .StyleV_Frame_ .StyleV_Item_ .icon_ span {
        font-size: 12px;
    }
    .StyleV_Frame_ .StyleV_Item_ .icon_ img {
        max-height: 14px;
    }
    .StyleV_Frame_ .StyleV_Item_ .desp_ {
        width: 100%;
        padding: 0 20px;
        margin-top: 16px;
    }
    .StyleV_Frame_ .StyleV_Item_ .desp_ .name1_ a {
        font-size: 14px;
        line-height: 1.2;
    }
    .StyleV_Frame_ .StyleV_Item_ .desp_ .price_ {
        font-size: 12px;
        margin-top: 12px;
    }
    .StyleV_Frame_ .StyleV_Item_ .desp_ .price_ .small_ {
        font-size: 12px;
    }
    .StyleV_Item_ .new-icon {
        top: 20px;
        left: 20px;
    }
}

/* ---- 絞り込み ---- */
/* 絞り込み - ページ上部 */
.filter-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 1.8rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 0 2.8rem;
}
.filter-top-btn {
    display: block;
    width: fit-content;
    color: var(--rv-gold);
    background-image: url("../img/ic-narrow-down.png");
    background-repeat: no-repeat;
    background-size: 1.8rem 1.1rem;
    background-position: left .2rem center;
    padding-left: 3rem;
    padding-right: 2rem;
    border-right: 1px solid var(--rv-gold);
    cursor: pointer;
}
@media (hover: hover) {
    .filter-top-btn:hover {
        opacity: .7;
    }
}
.filter-top-inner {
    flex: 1;
    width: calc(100% - 12.7rem);
    padding-right: 2rem;
}
.filter-top-filters {
    display: block;
    width: 100%;
    overflow-x: auto;
}
.filter-top-filters form {
    display: flex;
    justify-content: flex-start;
    column-gap: 2rem;
    white-space: nowrap;
    padding: 0 2rem 0 0;
}
.filter-top-filters form .Inner {
    display: block;
    position: relative;
}
.filter-top-filters form h3 {
    color: var(--rv-gold2);
    cursor: pointer;
    padding-right: 1.6rem;
    position: relative;
}
.filter-top-filters form h3::after {
    display: block;
    content: "";
    width: .8rem;
    height: 1.2rem;
    border-top: .6rem solid var(--rv-gold);
    border-right: .4rem solid transparent;
    border-bottom: .6rem solid transparent;
    border-left: .4rem solid transparent;
    position: absolute;
    top: calc(50% - .3rem);
    right: 0;
    box-sizing: border-box;
}
.filter-top-filters form .-is-open h3::after {
    rotate: 180deg;
    top: calc(50% - .9rem);
}
.filter-top-filters .AccordionContents {
    display: none;
    width: 30rem;
    max-width: 100%;
    padding: 2rem;
    left: 50% !important;
}

.filter-top-filter-items {
    display: block;
    width: 100%;
    position: relative;
}
.filter-top-filter-items .AccordionContents {
    display: none;
    width: 30rem;
    max-width: 100%;
    background-color: #fff;
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    z-index: var(--rv-zindex-filterITems);
    box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.15);
}

.filter-top-filter-items .AccordionContents label {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    width: 100%;
    cursor: pointer;
    margin: 1rem 0;
}
.filter-top-filter-items .AccordionContents br {
    display: none;
}
@media screen and (min-width: 768px) {
    .filter-top {
        column-gap: 20px;
        padding: 0 80px;
    }
    .filter-top-btn {
        background-size: 18px 11px;
        background-position: left 2px center;
        padding-left: 30px;
        padding-right: 20px;
    }
    .filter-top-inner {
        width: calc(100% - 127px);
        padding-right: 0;
    }
    .filter-top-filters form {
        column-gap: 20px;
        padding: 0 20px;
    }
    .filter-top-filters form h3 {
        padding-right: 16px;
    }
    .filter-top-filters form h3::after {
        width: 8px;
        height: 12px;
        border-top-width: 6px;
        border-right-width: 4px;
        border-bottom-width: 6px;
        border-left-width: 4px;
        top: calc(50% - 3px);
    }
    .filter-top-filters form .-is-open h3::after {
        top: calc(50% - 9px);
    }
    .filter-top-filter-items .AccordionContents {
        width: 300px;
        padding: 20px;
    }
    .filter-top-filter-items .AccordionContents label {
        column-gap: 10px;
        margin: 10px 0;
    }
}

/* 選択されたフィルター項目 */
.filter-top-selected-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    width: 100%;
}
.filter-top-selected-items:not(:empty) {
    margin-top: 2rem;
}
.filter-top-selected-items-i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 3rem;
    font-size: 1.2rem;
    color: var(--rv-gold2);
    background-color: var(--rv-gold3);
    border-radius: 3rem;
    padding: 0 4rem 0 1.6rem;
    position: relative;
    cursor: pointer;

}
@media (hover: hover) {
    .filter-top-selected-items-i:hover {
        opacity: .7;
    }
}
.filter-top-selected-items-i::before,
.filter-top-selected-items-i::after {
    display: block;
    content: "";
    width: 1.4rem;
    height: .1rem;
    background-color: var(--rv-gold);
    position: absolute;
    top: 50%;
    right: 1rem;
    pointer-events: none;

}
.filter-top-selected-items-i::before {
    rotate: -45deg;
}
.filter-top-selected-items-i::after {
    rotate: 45deg;
}
@media screen and (min-width: 768px) {
    .filter-top-selected-items {
        column-gap: 10px;
        row-gap: 10px;
        width: 100%;
    }
    .filter-top-selected-items:not(:empty) {
        margin-top: 20px;
    }
    .filter-top-selected-items-i {
        height: 30px;
        font-size: 12px;
        border-radius: 30px;
        padding: 0 40px 0 16px;
    }
    .filter-top-selected-items-i::before,
    .filter-top-selected-items-i::after {
        width: 14px;
        height: 1px;
        right: 10px;
    }
}

/* 絞り込み - サイド */
body:has(.filter-side.-is-open) {
    overflow: hidden !important;
}
.filter-side {
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--rv-zindex-filter);
    opacity: 0;
    visibility: hidden;
}
.filter-side.-is-open {
    opacity: 1;
    visibility: visible;
}
.filter-side-bg {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--rv-gold);
    opacity: .9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.filter-side-inner {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 2;
    transition: var(--rv-transition);

}
.filter-side.-is-open .filter-side-inner {
    right: 0;
}
.filter-side h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    padding: 4rem 2rem 0;
}
.filter-side .filter-side-close-btn {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    position: relative;
    cursor: pointer;
}
.filter-side .filter-side-close-btn::before,
.filter-side .filter-side-close-btn::after {
    display: block;
    content: "";
    width: 2.1rem;
    height: 1px;
    background-color: var(--rv-black);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
}
.filter-side .filter-side-close-btn::before {
    rotate: -45deg;
}
.filter-side .filter-side-close-btn::after {
    rotate: 45deg;
}
.filter-side form {
    display: block;
    height: calc(100dvh - 12.8rem);
    margin-top: 6rem;
    padding: 0 2rem 4rem;
    overflow-y: auto;
}
.filter-side form .Box + .Box {
    margin-top: 4rem;
}
.filter-side form .Box h3 {
    display: block;
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
}
.filter-side form .Box h3::before,
.filter-side form .Box h3::after {
    display: block;
    content: "";
    width: 1.5rem;
    height: 1px;
    background-color: var(--rv-black);
    position: absolute;
    top: 50%;
    right: .5rem;
}
.filter-side form .Box h3::after {
    rotate: 90deg;
}
.filter-side form .Box.-is-open h3::after {
    opacity: 0;
}
.filter-side form .Box .AccordionContents {
    display: none;
    margin-top: 3rem;
}
.filter-side form .Box .AccordionContents label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 1rem;
    font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
    .filter-side-inner {
        width: 400px;
        right: -400px;
    }
    .filter-side h2 {
        font-size: 14px;
        padding: 40px 60px 0;
    }
    .filter-side .filter-side-close-btn {
        width: 28px;
        height: 28px;
    }
    .filter-side .filter-side-close-btn::before,
    .filter-side .filter-side-close-btn::after {
        width: 21px;
    }
    .filter-side form {
        height: calc(100dvh - 133px);
        margin-top: 65px;
        padding: 0 60px 40px;
    }
    .filter-side form .Box + .Box {
        margin-top: 40px;
    }
    .filter-side form .Box h3 {
        font-size: 14px;
    }
    .filter-side form .Box h3::before,
    .filter-side form .Box h3::after {
        width: 15px;
        right: 5px;
    }
    .filter-side form .Box .AccordionContents {
        margin-top: 30px;
    }
    .filter-side form .Box .AccordionContents label {
        column-gap: 10px;
        font-size: 14px;
    }
}

/* ---- 並び替え ---- */
.navisort_ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 0 2.8rem;
    margin: 4rem auto;
}
.navisort_ .navipage_sum_ {
    font-size: 1.4rem;
    color: var(--rv-black);
    font-family: var(--rv-font-lato);
    font-weight: 400;
}

.navisort_ dl {
    display: block;
    width: 15rem;
    margin: 0;
    position: relative;
}
.navisort_ dl dt {
    display: block;
    font-size: 1.4rem;
    color: var(--rv-gold2);
    padding: 0 3.4rem 0 0;
    border-right: none;
    text-align: right;
    cursor: pointer;
    position: relative;
}
.navisort_ dl dt::after {
    display: block;
    content: "";
    width: 1.4rem;
    height: .8rem;
    background-image: url(../img/ic-pull-down.png);
    background-repeat: no-repeat;
    background-size: 1.4rem .8rem;
    background-position: center;
    position: absolute;
    top: 50%;
    right: .6rem;
    translate: 0 -.4rem;
}
.navisort_ dl dt.-is-open::after {
    rotate: 180deg;
}
.navisort_ dl dd {
    display: none;
    width: 100%;
    background-color: var(--rv-white);
    padding: 2rem;
    position: absolute;
    top: calc(100% + 2rem);
    left: 0;
    z-index: var(--rv-zindex-sort);
    border-radius: .4rem;
}
.navisort_ dl dd ul {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
.navisort_ dl dd ul li {
    display: block;
    margin-right: 0;
}
.navisort_ dl dd ul li a {
    display: block;
    font-size: 1.4rem;
    color: var(--rv-black);
    text-decoration: none;
}
.navisort_ dl dd ul li .navisort_now_ {
    color: var(--rv-gold2);
}
@media screen and (min-width: 768px) {
    .navisort_ {
        max-width: 100%;
        padding: 0 80px;
        margin: 40px auto;
    }
    .navisort_ .navipage_sum_ {
        font-size: 12px;
    }
    .navisort_ dl {
        width: 150px;
    }
    .navisort_ dl dt {
        font-size: 14px;
        padding: 0 34px 0 0;
    }
    .navisort_ dl dt::after {
        width: 14px;
        height: 8px;
        background-size: 14px 8px;
        right: 6px;
        translate: 0 -4px;
    }
    .navisort_ dl dd {
        padding: 20px;
        top: calc(100% + 20px);
        border-radius: 4px;
    }
    .navisort_ dl dd ul {
        row-gap: 20px;
    }
    .navisort_ dl dd ul li a {
        font-size: 14px;
    }
}

/* ---- 閲覧履歴 ---- */
#block_of_itemhistory {
    display: none !important;
}

/* ---- パンくず ---- */
.navitopicpath_ {
    margin-top: 12rem;
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .navitopicpath_ {
        margin-top: 100px;
    }
}