/** Shopify CDN: Minification failed

Line 122:41 The "+" operator only works if there is whitespace on both sides
Line 1199:42 The "+" operator only works if there is whitespace on both sides

**/
/* COMMON
=========================
========================= */

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: 100vw;
}

body.fixed {
    position: fixed;
}

.header_spnav.fixed {
    position: sticky;
    height: 60px;
}

.global_wrapper {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}

.wrapper {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.category_wrapper {
    max-width: ;
}

main {
    margin-top: 60px;
}

ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
button {
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;

    -webkit-appearance: none;
    -moz-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button:focus {
    outline: none;
}

h3 {
    min-height: 0;
    /* font-size: clamp(16px, calc(1.125rem +((1vw - 3.9px) * 1.1268)), 26px); */
    font-weight: 600;
}

.filter-white {
    background-color: #fff;
}
.filter-white:hover img {
    opacity: 0.7;
}

.icon-arrow {
    position: relative;
}
.icon-arrow:after {
    content: "";
    border-top: 2px solid #007bff;
    border-right: 2px solid #007bff;
    width: 12px;
    height: 12px;
    position: absolute;
    transform: rotate(45deg);
    top: 26%;
}

.text-small {
    font-size: 13px !important;
}

/* セクション */
section {
    margin-top: 20%;
    overflow: hidden;
}

section:first-child {
    margin-top: 0;
}

section:last-of-type {
    margin-bottom: 12% !important;
}

.section_title {
    display: flex;
    justify-content: space-between;
}

.section_title h2 {
    min-height: 0;
    font-size: clamp(18px, calc(1.125rem +((1vw - 3.9px) * 1.4085)), 28px);
    font-weight: 600;
}

.section_title a {
    display: none;
    position: relative;
    margin-right: 30px;
    color: #000;
}

.section_title a::after {
    position: absolute;
    top: 30%;
    right: -10px;
    transform: rotate(45deg) translateY(-50%);
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    background-color: #fff;
    width: 10px;
    height: 10px;
    content: "";
}

@media screen and (min-width: 576px) {
    section {
        margin-top: 10%;
    }
}

@media screen and (min-width: 991px) {
    section {
        margin-top: 8%;
    }

    .section_title a {
        display: block;
    }
}

/* COMPONENT
=========================
========================= */
/* 検索フォーム
========================= */
.block_search_box {
    border: 1px solid #000;
    padding: 3px 10px;
}
.block_search_box form {
    display: flex;
}
.block_search_box form:focus-visible,
.block_search_box input:focus-visible {
    box-shadow: none;
    outline: none;
    outline-offset: none;
}
.block_search_box input {
    outline: none;
    border: 0;
    padding: 0;
    width: 100%;
}
.block_search_box button {
    background-color: none;
    width: 30px;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/* 検索フォーム_ドロワー */
.block_search_drawer {
    position: fixed;
    top: -100%;
    left: 0;
    transition: all 0.6s ease;
    z-index: 30;
    background-color: #fff;
    padding: 20px;
    width: 100%;
    height: 15vh;
}

/* .block_search_drawer.open {
    top: 0;
    transition: all 0.6s ease;
} */
.block_search_button {
    display: block;
    position: relative;
    margin-bottom: 15px;
    margin-left: auto;
    width: 30px;
    height: 30px;
}
.block_toggle--close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: rotate(45deg);
    margin: auto;
    background-color: #000;
    height: 1px;
}
.block_toggle--close::after {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg);
    background-color: inherit;
    width: 100%;
    height: 100%;
    content: " ";
}

.search_drawer .block_search_box {
    padding: 0;
    height: 20px;
}
.search_drawer label {
    width: 100%;
    position: relative;
    margin: 0;
}

.search_drawer input {
    position: relative;
    width: 100%;
    z-index: 1;
    background-color: transparent;
}
.search_drawer svg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* アコーディオン
========================= */
.block_accordion_item {
    border-bottom: 0.5px solid #000;
    padding: 20px 0;
}

.accordion_toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion_toggle--title {
    font-size: 16px;
    font-weight: 600;
}
.accordion_toggle svg {
    transition: all 0.2s ease;
    width: 15px;
    margin-right: 30px;
}
.accordion_toggle.open svg {
    transform: rotate(90deg);
}

.block_button-arrow {
    display: flex;
    justify-content: space-between;
}

.block_button-arrow svg {
    width: 15px;
    margin-right: 30px;
}
.block_button-arrow .block_button-name {
    font-size: 16px;
    font-weight: 500;
}

.block_accordion_list {
    display: none;
    padding-left: 20px;
}

.block_accordion_list li {
    border-bottom: 0.5px solid #000;
    padding: 20px 0;
}

.block_accordion_list a {
    font-size: 14px;
}

.block_accordion_list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.block_accordion_list a {
    text-decoration: none;
    color: #000;
}

.block_accordion_item.accordion_sublist {
    border-bottom: none;
    padding: 0 !important;
}
.accordion_sublist .accordion_toggle--title {
    font-weight: 500;
}

.accordion_sublist .block_accordion_list p {
    margin-top: 20px;
    border-bottom: 0.5px solid #000;
}

.accordion_sublist .block_accordion_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.accordion_sublist .block_accordion_list li {
    border-bottom: none;
    padding: 7px 0 0;
}

/* ドロワーメニュー
  ========================= */
/* -ドロワー＿タイトル */

.block_drawer-title h3 {
    font-size: 30px;
    padding-left: 25px;
    margin-top: 80px;
    margin-bottom: 0;
}

/* -ドロワー＿ボタン */
.block_drawer-toggle--button {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    margin: auto;
    outline: none;
    width: 30px;
    height: 30px;
}
.block_drawer-toggle--line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    margin: auto;
    background-color: #000;
    width: 100%;
    height: 1px;
}

.block_drawer-toggle--line::before,
.block_drawer-toggle--line::after {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    background-color: inherit;
    width: 100%;
    height: 100%;
    content: " ";
}

.block_drawer-toggle--line::before {
    top: -10px;
}
.block_drawer-toggle--line::after {
    top: 10px;
}

.block_drawer-toggle--button.active .block_drawer-toggle--line {
    background-color: transparent;
}

.block_drawer-toggle--button.active .block_drawer-toggle--line::before,
.block_drawer-toggle--button.active .block_drawer-toggle--line::after {
    top: 0;
    background-color: #000;
}

.block_drawer-toggle--button.active .block_drawer-toggle--line::before {
    transform: rotate(-45deg);
}
.block_drawer-toggle--button.active .block_drawer-toggle--line::after {
    transform: rotate(45deg);
}

/* -ドロワー_中身 */
.block_drawer {
    position: fixed;
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
    z-index: 20;
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 200px;
    width: 70%;
    height: 100%;
    overflow: scroll;
}
.header_wrapper.for_sp.open .block_drawer {
    left: 0;
}

.block_drawer_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100%;
}

.drawer_bg {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: block !important;
    position: absolute;
}

/* -ドロワー　チェックボックス */
.block_filter-item {
    position: relative;
}
.block_filter-item > svg {
    margin-right: 5px;
    width: 14px;
    height: 14px;
}

input[type="checkbox"] {
    opacity: 0;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}

input[type="checkbox"] ~ span {
    font-size: 13px;
}

.icon-checkmark {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 7px;
}

.icon_color {
    display: block;
    width: 30px;
    height: 20px;
    display: flex;
}
.icon_color-main {
    width: 60%;
    height: 100%;
}
.icon_color-sub {
    width: 40%;
    height: 100%;
}
.icon_color-main > span,
.icon_color-sub > span {
    display: none;
}

input[value="black"] + .icon_color > .icon_color-main {
    background-color: #000;
}
input[value="black"] + .icon_color > .icon_color-sub {
    background-color: #3f3f40;
}

input[value="blue"] + .icon_color > .icon_color-main {
    background-color: #303191;
}
input[value="blue"] + .icon_color > .icon_color-sub {
    background-color: #1876bb;
}

input[type="checkbox"]:checked ~ .icon-checkmark {
    visibility: visible;
}
input[type="checkbox"]:checked ~ .icon_color {
    box-shadow: 0 0 0 2px #787878;
}

/* SNS アイコン */
.block_sns {
    display: flex;
    gap: 15px;
}

/* スライダー */
.swiper,
.swiper-scroll {
    width: 100%;
    height: 100%;
    z-index: 0;
}
.swiper.swiper-blog {
    padding-bottom: 60px;
}

.swiper-scroll {
    overflow: visible;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}


/* .swiper-blog .swiper-slide .block_card {
    padding-right: 10px;
} */
.swiper-blog .swiper-pagination {
    bottom: 0;
}

.swiper-blog .swiper-pagination-bullet {
    background: #d3d3d3;
}

.swiper-blog .swiper-button-prev,
.swiper-blog .swiper-button-next {
    background-color: transparent;
    top: 37%;
}

.swiper-blog .swiper-button-next {
    right: 5%;
}
.swiper-blog .swiper-button-prev {
    left: 5%;
}



@media screen and (min-width: 576px) {
    .swiper-blog .swiper-button-next,
    .swiper-blog .swiper-button-prev {
        display: none !important;
    }
}
@media screen and (min-width: 991px) {
    .swiper-blog .swiper-wrapper {
        margin-bottom: 0;
    }
    .swiper-blog .swiper-slide:last-child .block_card {
        padding-right: 0;
    }
}
/* スライダー　スクロール */

/* ボタン*/
.block_button-white {
    position: relative;
    border: solid 0.8px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 15px 0;
    text-align: center;
}

.block_button-white a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #000;
}

.block_button-white a svg {
    width: 15px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* カード */
.block_card {
    color: #000;
}

.block_card-img {
    background-color: #f5f3f3;
}

.block_card-img img {
    width: 100%;
}

.block_card-text {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
}

.block_card-text h3 {
    margin-bottom: 10px;
}

.block_card-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.block_card-text p {
    display: block;
    margin: auto auto 10px;
    color: #636569;
    font-size: 13px;
    text-align: left;
}
#feature .block_card-text p {
    margin-left: 0;

}

.block_card-text a {
    align-self: center;
    width: 100%;
}
.block_card-text a svg {
    width: 15px;
    transform: translateY(-10%);
    fill: #007bff;
}

/* レイアウト
  ==================================== */
.layout_card-contents {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.layout_card {
    width: 100%;
}

.layout_card-top {
    flex-grow: 1;
    z-index: 5;
}

.layout_card-under {
    overflow: hidden;
}

.layout_title,
.layout_wrapper {
    padding: 0 5%;
    width: 100%;
}


.layout_card-under .layout_wrapper {
    display: flex;
    gap: 10px;
    flex-direction: row;
    padding: 0 5%;
    height: 100%;
}

.layout_card-under .block_card-text {
    display: none;
}

.layout_button {
    margin-top: 30px;
}

.layout_scroll {
    position: relative;
    width: 100%;
    /* height: 100%; */
}

.layout_scroll_wrapper {
    position: relative;
    height: 100%;
}

.layout_scroll .swiper-wrapper {
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
}

.layout_scroll_wrapper.clearfix {
    overflow: hidden;
}

.layout_scroll .swiper-slide {
    padding-right: 10px;
}

.swiper-slide .block_card-text--title a {
    color: #000;
}

.swiper-button-prev,
.swiper-button-next {
    display: block !important;
    top: 30%;
    bottom: 0;
    border-radius: 50%;
    background-color: #fff;
    width: 30px;
    height: 30px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    width: 10px;
    height: 10px;
    content: "";
    transform-origin: center !important;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
    left: 12px;
    transform: rotate(-135deg);
}
/* 次への矢印カスタマイズ */
.swiper-button-next:after {
    right: 12px;
    transform: rotate(45deg);
}

.swiper-scrollbar,
.swiper-scrollbar-drag {
    border-radius: 0;
}

.swiper-scrollbar-drag {
    display: block !important;
    background-color: #000;
}

/* 商品用カード */
.block_card-img.card_product img {
    background-color: #f5f3f3;
}

.layout_card-under .block_card-product .block_card-text {
    display: block;
}
/* .swiper-wrapper {
      box-sizing: border-box;
      width: calc(100% - 40px);
      margin: 0 auto;
  } */

.block_card-text--title span {
    color: #636569;
    display: block;
    margin-bottom: 10px;
}
.block_card-text--price div {
    margin-top: 5px;
}

.block_card-text--price span {
    color: #666;
}

@media screen and (max-width: 575px) {
    .layout_card-under {
        margin: 0 auto;
        padding: 0;
        /* max-width: 540px; */
        /*width: calc(100vw - 30px);*/
        box-sizing: border-box;
    }
}

@media screen and (min-width: 991px) {
    .layout_card-contents {
        flex-direction: row;
    }
    .layout_card-under .block_card-text {
        display: flex;
    }

    .layout_card-contents,
    .layout_card-under .layout_wrapper {
        gap: 20px;
        width: 100%;
    }

    .layout_title,
    .layout_wrapper {
        padding: 0 50px;
    }
    .layout_card-top .layout_wrapper {
        padding-right: 0;
    }
    .layout_card-under .layout_wrapper {
        padding: 0;
    }
}

@media screen and (min-width: 1280px) {
    .layout_wrapper,
    .layout_title {
        padding: 0;
    }
}

/* HEADER
=========================
========================= */
header {
    position: fixed;
    width: 100%;
    z-index: 50;
}

/* NAVIGATION
========================= */
.pane_header {
    background-color: #fff;
}
.pane_header p {
    margin-bottom: 0;
}
.header_wrapper {
    display: flex;
    margin: auto 30px;
    height: 60px;
    justify-content: space-between;
}

.header_logo {
    align-self: center;
}

.header_mainnav {
    display: flex;
    z-index: 30;
    gap: 40px;
}

.header_gnav {
    display: flex;
    font-size: 14px;
}

.header_gnav-item {
    display: flex;
    cursor: pointer;
    padding-right: 20px;
    align-items: center;
}

/* NAV_メガメニュー
========================= */
.header_gnav_megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    background-color: #fff;
    cursor: default;
    padding: 50px 30px 25px;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.header,
.header_gnav-item {
    z-index: 100;
}

.header_gnav-item--label {
    color: #636569;
}
.header_gnav-item--label:hover {
    color: #000;
}

.header_gnav-item:hover .header_gnav_megamenu {
    visibility: visible;
}

.header_gnav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100%;
}

.header_gnav_megamenu-inner {
    display: flex;
    position: relative;
    height: 200px;
    gap: 70px;
    width: 85%;
}

.block_gnav_megamenu-border {
    display: block !important;
    position: absolute;
    top: 30px;
    border: 0.1px solid #000;
    width: 100%;
    content: "";
}
.block_gnav_megamenu-list {
    display: flex;
    gap: 5px;
    flex-direction: column;
}
.block_gnav_megamenu_list--caption {
    font-size: 18px;
    font-weight: 600;
}
.block_gnav_megamenu_list--caption p {
    margin-bottom: 5px;
}

.block_gnav_megamenu-list--body {
    display: flex;
    gap: 50px;
    flex-direction: row;
}

.block_gnav_megamenu-list--category ul.category_large {
    display: grid;
    column-gap: 50px;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, 1fr);

    -moz-column-gap: 50px;
}

.block_gnav_megamenu-list--category ul.category_small {
    display: flex;
    flex-direction: column;
}

.block_gnav_megamenu-list--category-box {
    padding-bottom: 28px;
}

.block_gnav_megamenu-list--category-box > p {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
}

.block_gnav_megamenu-list--category-box li {
    display: contents;
}

.block_gnav_megamenu-list--category-box a {
    margin-bottom: 7px;
    color: #000;
    /* padding-right: 50px; */
}

.block_gnav_megamenu-list--category-box ul a {
    color: #636569;
}

.block_gnav_megamenu-list--category-box ul a:hover {
    color: #007bff;
}

.header_gnav_megamenu-img {
    width: 15%;
}

.block_gnav_megamenu-list .block_card {}
/* ナビゲーション＿サブメニュー{

========================= */
.header_subnav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.block_cart_icon {
    width: 30px;
}

/* HEADER_SP
  ========================= */
.header_wrapper.for_sp {
    position: relative;
    margin: 0;
    background-color: #fff;
    justify-content: center;
}

.header_spnav {
    display: flex;
    z-index: 30;
    background-color: #fff;
    width: 100%;
    justify-content: center;
}

.header_drawer .block_accordion_item {
    padding-left: 30px;
}

/* SP 検索欄 */
.header_subnav.for_sp {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.header_subnav.for_sp .block_search_box {
    border: none;
}

.header_subnav.for_sp .list_form_btn,
.header_subnav.for_sp .block_cart_icon {
    width: 20px;
    cursor: pointer;
}
@media screen and (max-width: 991px) {
    .header_wrapper.for_pc {
        display: none;
    }
}
/* HERO
=========================
========================= */
.hero_slider {
    display: flex;
    position: relative;
    flex-direction: column;
}
.hero_slider_main {
    width: 100vw;
}

.hero_slider_main .swiper-button-next,
.hero_slider_main .swiper-button-prev {
    top: 50%;
}
.hero_slider_sub {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    background-image: url("//flux-bindings.com/cdn/shop/t/50/assets/img_topBanner-bg.jpg?v=164689420349404041691757677715");
}

.swiper-pagination-bullet-active {
    background: #000 !important;
}
.swiper-pagination-bullet {
    opacity: 1;
    background: #fff;
}
.hero_slider .swiper-pagination {
    left: 50% !important;
    transform: translateX(-50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.hero_slider .swiper-button-next,
.hero_slider .swiper-button-prev {
    display: none !important;
}

.hero_slider_sub-caption {
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
    text-align: center;
}
.hero_slider_sub-caption--label {
    min-height: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: sans-serif;
}

.hero_slider_sub-caption--text {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    min-height: 0;
    color: #636569;
}

@media screen and (min-width: 576px) {
    .hero_slider_sub-caption--label {
        font-size: 22px;
    }
    .hero_slider_sub-caption--text {
        font-size: 14px;
    }
}
@media screen and (min-width: 991px) {
    .hero_slider_sub-caption--label {
        font-size: 24px;
    }
    .hero_slider_sub-caption--text {
        font-size: 16px;
    }
}

.hero_slider_sub-caption--text p {
    margin-bottom: 0;
}

.hero_slider_sub-button {
    margin-top: 50px;
}

.hero_support_link {
    display: grid;
    grid-column-start: 2fr;
    grid-template-columns: repeat(2, 1fr);
}

.hero_support_link-item {
    background-color: #f3f3f4;
    padding: 10px 0;
    color: #636569;
}
.hero_support_link-item a {
    display: block;
    width: 100%;
    text-align: center;
    color: #636569;
    font-size: clamp(13px, calc(0.8125rem +((1vw - 3.9px) * 0.4225)), 16px);
}

.hero_support_link-item:first-child a {
    border-right: 0.5px solid #636569;
}

.hero_support_link-item:last-child {
    border-top: 0.5px solid #636569;
    grid-column: 1 / 3;
}

@media screen and (min-width: 991px) {
    .hero_slider {
        flex-direction: row;
    }
    .hero_slider_main,
    .hero_slider_sub {
        width: 50vw;
        height: auto;
    }

    .hero_slider .swiper-button-next,
    .hero_slider .swiper-button-prev {
        display: block !important;
    }

    .hero_slider_sub-caption {
        width: 70%;
    }

    .hero_support_link {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero_support_link-item:last-child {
        border-top: none;
        grid-column: auto;
        border-right: none;
    }
    .hero_support_link-item a {
        border-right: 0.5px solid #636569;
    }

    .hero_support_link-item:last-child a {
        border-right: none;
    }
}
/* FEATURE
=========================
========================= */
.feature_layout {
    width: 100%;
}
.feature_layout .layout_wrapper {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.block_card:first-child {
    grid-column: 1 / 3;
}

.block_card:not(.block_card:first-child) .block_card-text {
    display: none;
}

.feature_layout .block_card-text {
    display: flex;
}
@media screen and (min-width: 991px) {
    .feature_layout .layout_wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
    .block_card:first-child {
        grid-column: auto;
    }
    .block_card:not(.block_card:first-child) .block_card-text {
        display: flex;
    }
}

/* coordinate
=========================
========================= */
#coordinate {
    position: relative;
    z-index: 0;
}

/* FOOTER
=========================
========================= */
footer {
    background-color: #000;
    overflow: scroll;
    color: #fff;
}

.footer_wrapper {
    padding: 5% 5% 0;
    max-width: 1280px;
    margin: auto;
}

.footer_sitemap_block {
    width: 100%;
}

.footer_sitemap_block,
.footer_sitemap_block .block_accordion_item,
.footer_sitemap_block svg,
.footer_sitemap_block a {
    border-color: #fff;
    color: #fff;
    fill: #fff;
}

.footer_sitemap_block .accordion_toggle {
    justify-content: space-between;
}

.footer_sitemap_block .block_accordion_item {
    padding-right: 20px;
    padding-left: 20px;
}

.footer_sitemap_block .block_accordion_list {
    padding-left: 0;
}

.footer_sitemap_block .block_accordion_list li {
    padding-bottom: 0;
}
.footer_sitemap_block .block_accordion_list li:first-child {
    padding-top: 30px;
}

.footer_copyright {
    display: flex;
    margin-top: 70px;
    width: 100%;
    flex-direction: column;
}

.footer_copyright_link {
    display: flex;
    flex-direction: column;
}
.footer_copyright_link a {
    color: #fff;
}

.footer_copyright_text {
    margin: 50px auto 15px;
    text-align: center;
    font-size: 12px;
}

.footer_copyright .footer_sns {
    margin-top: 30px;
}

@media screen and (min-width: 991px) {
    .footer_wrapper {
        padding: 2% 50px 0;
    }

    footer .block_accordion {
        display: flex;
        flex-direction: row;
    }

    .footer_sitemap_block .block_accordion_item {
        border: none;
    }
    .footer_sitemap_block .block_accordion_item:first-child {
        padding-left: 0;
    }

    footer .block_accordion_list {
        display: block;
    }

    .block_accordion_item,
    footer .block_accordion_list li {
        border-bottom: none;
    }

    footer .accordion_toggle svg {
        display: none;
    }
}

@media screen and (min-width: 1280px) {
    .footer_wrapper {
        padding: 2% 0 0;
    }
}

/* custom
=========================
========================= */
#shopify-section-header {
    z-index: 100;
}

@media(min-width: 991px) {
    .container {
        max-width: 1500px;
        padding: 0 50px;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        left: 0;
        bottom: 0;
    }
}
@media(min-width: 1200px) {
    .container {
        max-width: 1280px;
        padding: 0 50px;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        bottom: 0;
    }
}

.breadcrumb {
    align-content: center;
    padding: 0 15px 0 0;
    background-color: transparent;
    margin: 0;
    font-size: 13px;
    min-height: 0;
}
.breadcrumb a {
    color: #000;
}

details summary svg {
    transform: rotate(-90deg);
    transition: all 0.1s ease;
}
details.open summary svg {
    transform: rotate(0deg);
}

details.no-rotate summary svg,
details.open.no-rotate summary svg {
    transform: none;
}

.article_title {
    position: relative;
}

article h3 {
    position: relative;
    font-weight: 600;
    font-size: 24px;
}

article h3::before {
    content: "";
    width: 25px;
    height: 12px;
    background-color: #E21115;
    /* position: absolute; */
    display: inline-block;
    margin-right: 5px;
}

.pagination__list {
    flex-wrap: nowrap !important;
}

.out_of_stock + label {
    opacity: 0.5;
    position: relative;
}

.out_of_stock + label::before {
    content: "";
    display: block;
    width: calc(100% * 1.25);
    height: 1px;
    background-color: #000;
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: 0;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    opacity: 0.9;
    z-index: 5!important;

}