* {
    padding: 0;
    margin: 0;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #505050;
    list-style: none;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-touch-callout: inherit;
    -webkit-user-select: inherit;
    -khtml-user-select: inherit;
    -moz-user-select: inherit;
    -ms-user-select: inherit;
    user-select: inherit
}

*::-webkit-scrollbar {
    display: none
}

html {
    width: 100vw;
    height: 100vh
}

body {
    width: 100%;
    height: 100%
}

input,
textarea,
select,
button {
    border-radius: 0;
    border: none;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.can-select {
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial
}

#nav {
    position: fixed;
    z-index: 1000;
    top: 1.5rem;
    left: 3rem;
    right: 3rem;
    width: calc(100% - 6rem);
    height: 5.5rem;
    background-color: #fff;
    border-radius: .5rem;
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .1), 0 0 16px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1), 0 0 16px rgba(0, 0, 0, .1);
    box-shadow: 0 0 8px rgba(0, 0, 0, .1), 0 0 16px rgba(0, 0, 0, .1)
}

#nav.toppest {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    animation: nav-topppest .3s;
    -webkit-animation: nav-topppest .3s
}

#nav.float {
    top: 1.5rem;
    left: 3rem;
    right: 3rem;
    width: calc(100% - 6rem);
    border-radius: .5rem;
    animation: nav-float .3s;
    -webkit-animation: nav-float .3s
}

#nav>section {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--width-max);
    height: 100%
}

#nav>section>ul {
    position: relative;
    padding: 0 1rem;
    height: 5.5rem;
    font-size: 0
}

#nav>section>ul.left {
    float: left
}

#nav>section>ul.left>li:nth-child(1) {
    display: none
}

#nav>section>ul.right {
    float: right
}

#nav>section>ul>li.tab {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 1rem;
    width: initial;
    height: initial
}

#nav>section>ul>li.tab>a {
    position: relative;
    display: block;
    width: initial;
    height: 3.5rem
}

#nav>section>ul>li.tab>a>p {
    position: relative;
    display: block;
    line-height: 1.5rem;
    font-size: 1.125rem;
    text-align: center;
    color: var(--color-system)
}

#nav>section>ul>li.tab>a>p>strong {
    position: relative;
    display: block;
    line-height: 2rem;
    text-align: center;
    color: #505050
}

#nav>section>ul>li.icon {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 1.25rem .5rem;
    width: initial;
    height: initial
}

#nav>section>ul>li.icon>div,
#nav>section>ul>li.icon>a {
    position: relative;
    display: block;
    padding: 0 1rem;
    width: initial;
    height: initial;
    font-size: 0;
    border-radius: .5rem;
    background-color: var(--color-system-light);
    font-size: 0rem
}

#nav>section>ul>li.icon>div>img,
#nav>section>ul>li.icon>a>img {
    position: relative;
    display: inline-block;
    vertical-align: top
}

#nav>section>ul>li.icon>div>i,
#nav>section>ul>li.icon>a>i {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: initial;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.25rem;
    text-align: center;
    color: #fff;
    object-fit: cover
}

#nav>section>ul>li.icon>div>p,
#nav>section>ul>li.icon>a>p {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-left: .5rem;
    width: initial;
    height: 3rem;
    line-height: 3rem;
    font-size: 1rem;
    color: #fff
}

#nav>section>ul>li.icon.notxt>div,
#nav>section>ul>li.icon.notxt>a {
    padding: 0
}

#nav>section>ul>li.icon.notxt>div>img,
#nav>section>ul>li.icon.notxt>a>img {
    width: 3rem;
    height: 3rem
}

#nav>section>ul>li.icon.notxt>div>i,
#nav>section>ul>li.icon.notxt>a>i {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.75rem
}

#nav>section>ul>li.icon:nth-last-child(1)>a,
#nav>section>ul>li.icon:nth-last-child(2)>a {
    background-color: var(--color-system)
}

@media screen and (max-width: 1023px) {
    #nav {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        background-color: var(--color-system)
    }

    #nav.toppest,
    #nav.float {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        animation: unset;
        -webkit-animation: unset
    }

    #nav>section>ul>li.tab>a>p {
        color: #fff
    }

    #nav>section>ul>li.tab>a>p>strong {
        color: #fff
    }

    #nav>section>ul>li.icon>div,
    #nav>section>ul>li.icon>a {
        padding: 0;
        background-color: rgba(0, 0, 0, 0)
    }

    #nav>section>ul>li.icon>div>img,
    #nav>section>ul>li.icon>a>img {
        width: 3rem;
        height: 3rem
    }

    #nav>section>ul>li.icon>div>i,
    #nav>section>ul>li.icon>a>i {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1.5rem
    }

    #nav>section>ul>li.icon>div>p,
    #nav>section>ul>li.icon>a>p {
        display: none
    }

    #nav>section>ul>li.icon:nth-last-child(1)>a,
    #nav>section>ul>li.icon:nth-last-child(2)>a {
        background-color: rgba(0, 0, 0, 0)
    }
}

@media screen and (max-width: 799px) {
    #nav {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 4.5rem;
        border-radius: 0
    }

    #nav.toppest,
    #nav.float {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        animation: unset;
        -webkit-animation: unset
    }

    #nav>section>ul {
        padding: 0
    }

    #nav>section>ul>li.icon {
        margin: .75rem .5rem
    }

    #nav>section>ul.left>li.tab {
        display: none
    }

    #nav>section>ul.left>li.icon {
        margin: .75rem .5rem;
        display: inline-block
    }

    #nav>section>ul.left.show {
        height: 100vh;
        background-color: var(--color-system-dark);
        animation: nav-list-show .5s;
        -webkit-animation: nav-list-show .5s
    }

    #nav>section>ul.left.show>li.tab {
        display: block;
        margin-top: 2rem;
        padding-right: 5rem
    }

    #nav>section>ul.left.show>li.tab>a>p {
        padding-left: 3rem;
        text-align: left
    }

    #nav>section>ul.left.show>li.tab>a>i {
        position: relative;
        float: left;
        width: 2rem;
        line-height: 3.5rem;
        font-size: 1.5rem;
        text-align: center;
        color: #fff
    }

    #nav>section>ul.left.show>li.icon {
        display: inline-block
    }

    #nav>section>ul.left.hide {
        animation: nav-list-hide .5s;
        -webkit-animation: nav-list-hide .5s
    }
}

@keyframes nav-topppest {
    from {
        top: 1.5rem;
        left: 3rem;
        right: 3rem;
        width: calc(100% - 5.5rem);
        border-radius: .5rem
    }

    to {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0
    }
}

@-webkit-keyframes nav-topppest {
    from {
        top: 1.5rem;
        left: 3rem;
        right: 3rem;
        width: calc(100% - 6rem);
        border-radius: .5rem
    }

    to {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0
    }
}

@keyframes nav-float {
    from {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0
    }

    to {
        top: 1.5rem;
        left: 3rem;
        right: 3rem;
        width: calc(100% - 6rem);
        border-radius: .5rem
    }
}

@-webkit-keyframes nav-float {
    from {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0
    }

    to {
        top: 1.5rem;
        left: 3rem;
        right: 3rem;
        width: calc(100% - 6rem);
        border-radius: .5rem
    }
}

@keyframes nav-list-show {
    from {
        margin-left: -100%
    }

    to {
        margin-left: 0
    }
}

@-webkit-keyframes nav-list-show {
    from {
        margin-left: -100%
    }

    to {
        margin-left: 0
    }
}

@keyframes nav-list-hide {
    from {
        margin-left: 0
    }

    to {
        margin-left: -100%
    }
}

@-webkit-keyframes nav-list-hide {
    from {
        margin-left: 0
    }

    to {
        margin-left: -100%
    }
}

#body {
    position: relative;
    display: block;
    padding-top: 9rem;
    width: 100%;
    height: initial
}

#body>img {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 16rem;
    object-fit: cover
}

#body>canvas {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

#body>section {
    position: relative;
    z-index: 2;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-bottom: 8rem;
    width: 100%;
    max-width: var(--width-max);
    background-color: rgba(0, 0, 0, 0)
}

#body>section>header {
    position: relative;
    display: block;
    margin-bottom: 8rem;
    width: 100%;
    height: initial;
    font-size: 0;
    text-align: center
}

@media screen and (max-width: 799px) {
    #body>section>header {
        margin-bottom: 4rem
    }
}

#body>section>header>div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 3rem;
    width: initial;
    height: initial
}

#body>section>header>div>h6 {
    position: relative;
    display: block;
    font-size: 2.25rem;
    text-align: center
}

#body>section>header>div>h6:after {
    content: "";
    position: relative;
    display: block;
    margin-top: .5rem;
    margin-left: calc((100% - 3rem)/2);
    width: 3rem;
    height: 3px;
    background-color: var(--color-system)
}

@media screen and (max-width: 639px) {
    #body>section>header>div>h6 {
        font-size: 1.75rem
    }
}

#body>section>header>div>strong {
    position: relative;
    display: block;
    margin-top: .5rem;
    font-size: 1.75rem;
    text-align: center
}

@media screen and (max-width: 639px) {
    #body>section>header>div>strong {
        font-size: 1.25rem
    }
}

#body>section>nav.news {
    position: relative;
    display: block;
    width: 100%;
    height: initial
}

#body>section>nav.news>ul {
    position: relative;
    display: block;
    width: 100%;
    height: initial;
    font-size: 0;
    text-align: center
}

@media screen and (max-width: 799px) {
    #body>section>nav.news>ul {
        margin-left: 50%;
        transform: translateX(-50%);
        width: 360px
    }
}

@media screen and (max-width: 359px) {
    #body>section>nav.news>ul {
        width: 100%
    }
}

#body>section>nav.news>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 1rem;
    padding: 0 2rem;
    width: initial;
    height: initial;
    background-color: var(--color-system-hint);
    border-radius: .5rem
}

@media screen and (max-width: 799px) {
    #body>section>nav.news>ul>li {
        margin-top: 1rem;
        padding: 0 1rem
    }

    #body>section>nav.news>ul>li:nth-child(1),
    #body>section>nav.news>ul>li:nth-child(2) {
        margin-top: 0
    }
}

@media screen and (max-width: 359px) {
    #body>section>nav.news>ul>li:nth-child(2) {
        margin-top: 1rem
    }
}

#body>section>nav.news>ul>li.selected {
    background-color: var(--color-system-dark)
}

#body>section>nav.news>ul>li.selected>a>i,
#body>section>nav.news>ul>li.selected>a>p {
    color: #fff
}

#body>section>nav.news>ul>li>a>i {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 1.5rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-system-dark)
}

#body>section>nav.news>ul>li>a>p {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: initial;
    margin-left: 1rem;
    line-height: 3rem;
    font-size: 1rem;
    color: var(--color-system-dark)
}

#body>section>ul.news {
    position: relative;
    display: block;
    margin-top: 6rem;
    width: 100%;
    height: initial;
    font-size: 0
}

@media screen and (max-width: 799px) {
    #body>section>ul.news {
        margin-top: 2rem
    }
}

#body>section>ul.news>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 4rem 1rem 0;
    width: calc(33.3333333333% - 2rem);
    height: initial;
    font-size: 0
}

@media screen and (max-width: 799px) {
    #body>section>ul.news>li {
        width: calc(50% - 2rem)
    }
}

@media screen and (max-width: 539px) {
    #body>section>ul.news>li {
        width: calc(100% - 2rem)
    }
}

#body>section>ul.news>li>time {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 4rem;
    height: initial
}

#body>section>ul.news>li>time>strong {
    position: relative;
    display: block;
    padding: .75rem 0;
    width: 100%;
    font-size: 2rem;
    text-align: center;
    background-color: var(--color-system-hint);
    border-radius: .5rem .5rem 0 0
}

#body>section>ul.news>li>time>em {
    position: relative;
    display: block;
    margin-top: 2px;
    padding: .5rem 0;
    width: 100%;
    font-size: 1rem;
    font-style: normal;
    text-align: center;
    background-color: var(--color-system-hint);
    color: var(--color-system-dark);
    border-radius: 0 0 .5rem .5rem
}

#body>section>ul.news>li>div {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 1rem;
    width: calc(100% - 5rem);
    height: initial
}

#body>section>ul.news>li>div>ul {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0
}

#body>section>ul.news>li>div>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: initial;
    font-size: 0
}

#body>section>ul.news>li>div>ul>li>i {
    position: relative;
    display: inline-block;
    vertical-align: top;
    line-height: 2rem;
    font-size: 1rem
}

#body>section>ul.news>li>div>ul>li>p {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: .5rem;
    line-height: 2rem;
    font-size: 1rem;
    color: var(--color-system-dark)
}

#body>section>ul.news>li>div>p {
    position: relative;
    display: block;
    margin-top: .5rem;
    width: 100%;
    font-size: 1.125rem
}

#body>section>ul.news>li>div>div {
    position: relative;
    display: block;
    margin-top: 1.5rem;
    padding-top: 75%;
    width: 100%
}

#body>section>ul.news>li>div>div>img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem
}

#body>section>nav.product {
    position: relative;
    display: block;
    width: 100%;
    height: initial
}

#body>section>nav.product>ul {
    position: relative;
    display: block;
    width: 100%;
    height: initial;
    font-size: 0;
    text-align: center
}

@media screen and (max-width: 639px) {
    #body>section>nav.product>ul {
        margin-left: 50%;
        transform: translateX(-50%);
        width: 20rem
    }
}

#body>section>nav.product>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 1.25rem;
    width: 6rem;
    height: initial
}

#body>section>nav.product>ul>li:hover>a>i {
    border: 4px solid var(--color-system-light)
}

#body>section>nav.product>ul>li.selected>a>i {
    border: 4px solid var(--color-system-light)
}

@media screen and (max-width: 799px) {
    #body>section>nav.product>ul>li {
        width: 4rem
    }
}

@media screen and (max-width: 639px) {
    #body>section>nav.product>ul>li {
        margin-top: 2rem
    }

    #body>section>nav.product>ul>li:nth-child(1),
    #body>section>nav.product>ul>li:nth-child(2),
    #body>section>nav.product>ul>li:nth-child(3) {
        margin-top: 0
    }
}

#body>section>nav.product>ul>li>a>i {
    position: relative;
    display: block;
    width: 6rem;
    height: 6rem;
    line-height: 6rem;
    font-size: 2rem;
    text-align: center;
    background-color: var(--color-system-hint);
    color: var(--color-system-dark);
    border: 4px solid var(--color-system-hint);
    border-radius: 50%
}

@media screen and (max-width: 799px) {
    #body>section>nav.product>ul>li>a>i {
        width: 4rem;
        height: 4rem;
        line-height: 4rem;
        font-size: 2rem
    }
}

#body>section>nav.product>ul>li>a>p {
    position: relative;
    display: block;
    margin-top: 1rem;
    width: initial;
    font-size: 1rem;
    color: var(--color-system-dark)
}

#body>section>ul.product {
    position: relative;
    display: block;
    margin-top: 6rem;
    width: 100%;
    height: initial;
    font-size: 0
}

@media screen and (max-width: 799px) {
    #body>section>ul.product {
        margin-top: 2rem
    }
}

#body>section>ul.product>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 4rem 1rem 0;
    width: calc(33.3333333333% - 2rem);
    height: initial
}

@media screen and (max-width: 639px) {
    #body>section>ul.product>li {
        width: calc(50% - 2rem)
    }
}

@media screen and (max-width: 479px) {
    #body>section>ul.product>li {
        width: calc(100% - 2rem)
    }
}

#body>section>ul.product>li>figure {
    position: relative;
    display: block;
    width: 100%;
    height: initial
}

#body>section>ul.product>li>figure>img {
    position: relative;
    z-index: 1;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 16rem;
    max-width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 2rem
}

#body>section>ul.product>li>figure>figcaption {
    position: relative;
    display: block;
    margin-top: -6rem;
    padding: 8rem 2rem 4rem;
    width: 100%;
    height: initial;
    background-color: var(--color-system-dark);
    border-radius: 1rem
}

#body>section>ul.product>li>figure>figcaption>p {
    position: relative;
    display: block;
    margin-top: 1rem;
    width: 100%;
    line-height: 1.75rem;
    font-size: 1rem;
    color: #fff;
    text-align: center
}

#body>section>ul.product>li>figure>figcaption>p>strong {
    color: #fff
}

#body>section>div.search {
    position: relative;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    width: calc(100% - 2rem);
    height: initial;
    background-color: var(--color-system-light);
    border-radius: .5rem;
    font-size: 0
}

#body>section>div.search>select {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 1.5rem;
    padding: 0 1rem;
    width: calc((100% - 7.5rem - 120px)*.25);
    height: 3rem;
    line-height: 3rem;
    font-size: 1rem;
    border-radius: .5rem
}

@media screen and (max-width: 799px) {
    #body>section>div.search>select {
        margin-left: 1rem;
        margin-bottom: 1rem;
        width: calc((100% - 3rem)/2)
    }
}

#body>section>div.search>input {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 1.5rem;
    padding: 0 1rem;
    width: calc((100% - 7.5rem - 120px)*.5);
    line-height: 3rem;
    height: 3rem;
    font-size: 1rem;
    border-radius: .5rem
}

@media screen and (max-width: 799px) {
    #body>section>div.search>input {
        margin-left: 1rem;
        width: calc(100% - 3rem - 120px)
    }
}

#body>section>div.search>button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 1.5rem;
    width: 120px;
    line-height: 3rem;
    height: 3rem;
    font-size: 1rem;
    border-radius: .5rem;
    background-color: var(--color-system);
    color: #fff
}

@media screen and (max-width: 799px) {
    #body>section>div.search>button {
        margin-left: 1rem
    }
}

#body>section>ul.stores {
    position: relative;
    display: block;
    padding: 0 2rem;
    width: 100%;
    height: initial
}

#body>section>ul.stores>li {
    position: relative;
    display: block;
    margin-top: 5rem;
    padding: 2rem 0
}

#body>section>ul.stores>li.inview>p {
    animation: stores-index-show-left .5s;
    -webkit-animation: stores-index-show-left .5s
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li.inview>p {
        animation: unset;
        -webkit-animation: unset
    }
}

#body>section>ul.stores>li.inview>figure>img {
    animation: stores-index-show-right .5s;
    -webkit-animation: stores-index-show-right .5s
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li.inview>figure>img {
        animation: unset;
        -webkit-animation: unset
    }
}

#body>section>ul.stores>li.outview {
    opacity: 0
}

#body>section>ul.stores>li:nth-child(2n+1)>p {
    text-align: right
}

#body>section>ul.stores>li:nth-child(2n+1)>figure {
    text-align: left
}

#body>section>ul.stores>li:nth-child(2n+1)>figure>figcaption {
    padding-left: 6rem;
    padding-right: 0
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li:nth-child(2n+1)>figure>figcaption {
        padding: 13rem 0 0
    }
}

#body>section>ul.stores>li:nth-child(2n+1).inview>p {
    animation: stores-index-show-right .5s;
    -webkit-animation: stores-index-show-right .5s
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li:nth-child(2n+1).inview>p {
        animation: unset;
        -webkit-animation: unset
    }
}

#body>section>ul.stores>li:nth-child(2n+1).inview>figure>img {
    animation: stores-index-show-left .5s;
    -webkit-animation: stores-index-show-left .5s
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li:nth-child(2n+1).inview>figure>img {
        animation: unset;
        -webkit-animation: unset
    }
}

#body>section>ul.stores>li>p {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 2.5rem 1rem;
    line-height: 30rem;
    font-size: 48rem;
    font-weight: bolder;
    font-style: italic;
    text-align: left;
    color: var(--color-system-hint)
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li>p {
        padding-top: 8rem;
        line-height: 30rem;
        font-size: 32rem;
        text-align: right
    }
}

#body>section>ul.stores>li>figure {
    position: relative;
    display: block;
    width: 100%;
    height: 30rem;
    text-align: right;
    font-size: 0
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li>figure {
        height: initial
    }
}

#body>section>ul.stores>li>figure>img {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 6rem;
    width: 24rem;
    height: 18rem;
    object-fit: cover;
    border-radius: 3rem
}

@media screen and (max-width: 1023px) {
    #body>section>ul.stores>li>figure>img {
        width: 20rem;
        height: 15rem
    }
}

@media screen and (max-width: 799px) {
    #body>section>ul.stores>li>figure>img {
        width: 16rem;
        height: 12rem
    }
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li>figure>img {
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0
    }
}

#body>section>ul.stores>li>figure>figcaption {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 15rem;
    transform: translateY(-50%);
    padding-left: 0;
    padding-right: 6rem;
    width: calc(100% - 24rem);
    height: initial;
    font-size: 0
}

@media screen and (max-width: 1023px) {
    #body>section>ul.stores>li>figure>figcaption {
        margin-top: 13rem;
        width: calc(100% - 20rem)
    }
}

@media screen and (max-width: 799px) {
    #body>section>ul.stores>li>figure>figcaption {
        margin-top: 11rem;
        width: calc(100% - 16rem)
    }
}

@media screen and (max-width: 639px) {
    #body>section>ul.stores>li>figure>figcaption {
        display: block;
        margin-top: 0;
        padding: 13rem 0 0;
        transform: unset;
        width: 100%
    }
}

#body>section>ul.stores>li>figure>figcaption>h6 {
    position: relative;
    line-height: 4rem;
    font-size: 1.5rem;
    text-align: left
}

#body>section>ul.stores>li>figure>figcaption>h6:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-system)
}

#body>section>ul.stores>li>figure>figcaption>h6>i {
    position: relative;
    margin-right: 1rem;
    font-size: 1.5rem
}

#body>section>ul.stores>li>figure>figcaption>p {
    position: relative;
    display: block;
    margin-top: 0;
    width: 100%;
    line-height: 2.5rem;
    font-size: 1rem;
    color: #000;
    letter-spacing: 2px;
    text-align: left
}

#body>section>ul.stores>li>figure>figcaption>p:nth-child(2) {
    margin-top: 1rem
}

#body>section>ul.stores>li>figure>figcaption>p>strong {
    color: var(--color-system)
}

#body>section>ul.stores>li>figure>figcaption>div {
    position: relative;
    display: block;
    margin-top: 2rem;
    width: 100%;
    height: initial;
    text-align: left
}

#body>section>ul.stores>li>figure>figcaption>div>button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 1rem;
    margin-right: 1.5rem;
    padding: .75rem 1.25rem;
    background-color: var(--color-system-light);
    border-radius: .5rem;
    cursor: pointer
}

#body>section>ul.stores>li>figure>figcaption>div>button:hover {
    background-color: var(--color-system-light-hover)
}

#body>section>ul.stores>li>figure>figcaption>div>button:nth-child(1) {
    background-color: var(--color-system)
}

#body>section>ul.stores>li>figure>figcaption>div>button:nth-child(1):hover {
    background-color: var(--color-system-dark)
}

#body>section>ul.stores>li>figure>figcaption>div>button:nth-last-child(1) {
    margin-right: 0
}

@media screen and (max-width: 799px) {
    #body>section>ul.stores>li>figure>figcaption>div>button {
        margin-right: 1rem
    }
}

#body>section>ul.stores>li>figure>figcaption>div>button>i {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 1.5rem;
    line-height: 1.5rem;
    font-size: 1.25rem;
    color: #fff;
    text-align: center
}

#body>section>ul.stores>li>figure>figcaption>div>button>p {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: .5rem;
    line-height: 1.5rem;
    font-size: 1rem;
    color: #fff
}

#body>section>footer.page {
    position: relative;
    display: block;
    margin-top: 10rem;
    width: 100%;
    height: initial;
    border-radius: 1rem
}

#body>section>footer.page>ul {
    position: relative;
    width: 100%;
    font-size: 0;
    text-align: center
}

@media screen and (max-width: 799px) {
    #body>section>footer.page>ul {
        margin-left: 50%;
        transform: translateX(-50%);
        width: 70%
    }
}

#body>section>footer.page>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 .75rem 1rem;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid var(--color-system);
    border-radius: 50%
}

#body>section>footer.page>ul>li:hover {
    background-color: var(--color-system)
}

#body>section>footer.page>ul>li:hover>a {
    color: #fff
}

#body>section>footer.page>ul>li:nth-child(1),
#body>section>footer.page>ul>li:nth-last-child(1) {
    border: 1px solid var(--color-system-light);
    background-color: var(--color-system-light);
    color: #fff
}

#body>section>footer.page>ul>li:nth-child(1):hover,
#body>section>footer.page>ul>li:nth-last-child(1):hover {
    border: 1px solid var(--color-system-light-hover);
    background-color: var(--color-system-light-hover)
}

@media screen and (max-width: 799px) {
    #body>section>footer.page>ul>li {
        margin: 0 .5rem 1rem;
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        font-size: 1rem
    }
}

#body>section>footer.page>ul>li>a {
    color: var(--color-system)
}

#body>section>footer.page>ul>li>a>i {
    color: #fff
}

@keyframes stores-index-show-right {
    from {
        right: -50%
    }

    to {
        right: 0
    }
}

@-webkit-keyframes stores-index-show-right {
    from {
        right: -50%
    }

    to {
        right: 0
    }
}

@keyframes stores-index-show-left {
    from {
        left: -50%
    }

    to {
        left: 0
    }
}

@-webkit-keyframes stores-index-show-left {
    from {
        left: -50%
    }

    to {
        left: 0
    }
}

#bottom {
    position: relative;
    display: block;
    padding: 8rem 0;
    width: 100%;
    height: initial;
    background-color: #000;
    background-image: url(../image/bg-l.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

#bottom>section {
    position: relative;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 6rem);
    height: initial;
    background-color: var(--color-system);
    border-radius: 2rem
}

@media screen and (max-width: 639px) {
    #bottom>section {
        width: calc(100% - 4rem)
    }
}

@media screen and (max-width: 479px) {
    #bottom>section {
        width: calc(100% - 2rem)
    }
}

#bottom>section>ul {
    position: relative;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 4rem 0;
    width: 100%;
    max-width: var(--width-max);
    height: initial;
    text-align: left;
    font-size: 0
}

#bottom>section>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 2rem;
    width: 50%;
    height: initial
}

#bottom>section>ul>li:nth-child(1)>h6 {
    position: relative;
    display: block;
    line-height: 1.5rem;
    font-size: 1.5rem;
    color: #fff
}

#bottom>section>ul>li:nth-child(1)>select {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    padding: 0 1rem;
    width: calc(50% - .75rem);
    height: 3rem;
    line-height: 3rem;
    font-size: 1rem;
    border-radius: .5rem
}

#bottom>section>ul>li:nth-child(1)>select:nth-child(2) {
    margin-left: 0
}

#bottom>section>ul>li:nth-child(1)>input {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 1.5rem;
    padding: 0 1rem;
    width: calc(100% - 1.5rem - 120px);
    height: 3rem;
    line-height: 3rem;
    font-size: 1rem;
    border-radius: .5rem
}

#bottom>section>ul>li:nth-child(1)>button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    width: 120px;
    height: 3rem;
    line-height: 3rem;
    font-size: 1rem;
    border-radius: .5rem
}

#bottom>section>ul>li:nth-child(2)>div {
    position: absolute;
    top: 6.5rem;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: initial;
    text-align: center;
    font-size: 0
}

#bottom>section>ul>li:nth-child(2)>div>img {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-height: 4rem;
    border-radius: 50%
}

#bottom>section>ul>li:nth-child(2)>div>a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 1rem
}

#bottom>section>ul>li:nth-child(2)>div>a>img,
#bottom>section>ul>li:nth-child(2)>div>a>i {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.25rem;
    text-align: center;
    background-color: var(--color-system-light);
    color: #fff;
    border-radius: 50%
}

#bottom>section>ul>li:nth-child(2)>div>a>p {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 1rem;
    line-height: 3rem;
    font-size: 1rem;
    color: var(--color-system-light)
}

#bottom>section>ul>li:nth-child(2)>div>a>p>strong {
    font-weight: 500;
    letter-spacing: .25rem;
    color: #fff
}

@media screen and (max-width: 1023px) {
    #bottom>section>ul>li {
        width: 100%
    }

    #bottom>section>ul>li:nth-child(2)>div {
        position: relative;
        margin-top: 1rem
    }
}

@media screen and (max-width: 639px) {
    #bottom>section>ul>li {
        padding: 0 1rem
    }
}

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

    #bottom>section>ul>li:nth-child(2)>div>a>img,
    #bottom>section>ul>li:nth-child(2)>div>a>i {
        display: none
    }

    #bottom>section>ul>li:nth-child(2)>div>a>p {
        margin-left: 0
    }
}

#bottom>div {
    position: relative;
    display: block;
    margin-top: 2rem;
    margin-left: 50%;
    transform: translateX(-50%);
    width: initial;
    height: initial
}

#bottom>div>p {
    margin-top: .25rem;
    height: 1.5rem;
    font-size: 1rem;
    text-align: center;
    color: #fff
}