@charset "UTF-8";

/*トップページ（ＰＣ） ファーストビュー用*/
.isSp {
    display: none;
}

.isPc {
    display: block;
}

/* 共通のヘッダスタイル */
.section_hdg {
    text-align: center;
    color: #31546d;
    font-weight: 400;
}

.section_hdg_main {
    font-family: "Roboto Condensed", 'メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif';
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 36px;
}

.section_hdg_sub {
    font-size: 14px;
}

/*sys/base_form.css のコピー ここから*/
input,
button,
select,
textarea {
    color: var(--cl-bk);
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="url"],
input[type="number"] {
    height: 56px;
    padding: 0 16px;
    border: 1px solid var(--cl-gr-3);
    border-radius: 0;
    background-color: #ffffff;
    font-size: 1.6rem;
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="search"]:hover,
input[type="password"]:hover,
input[type="url"]:hover,
input[type="number"]:hover {
    border: 1px solid var(--cl-gr-3);
}

select,
textarea {
    border: 1px solid var(--cl-gr-3);
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 1.6rem;
    font-weight: 400;
}

select {
    height: 56px;
    padding: 0 32px 0 16px;
    background-image: url(../../img/usr/common/arw_select.png);
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 10px 6px;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
}

select:hover {
    border: 1px solid var(--cl-gr-3);
    opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input[type="checkbox"]:has(+ label),
label input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label,
label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    min-height: 24px;
    padding-left: 36px;
    font-size: 1.6rem;
    cursor: pointer;
}

input[type="checkbox"]+label::before,
label:has(input[type="checkbox"])::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(../../img/usr/common/icon_cb_off.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background-image 0.12s;
}

input[type="checkbox"]:checked+label::before,
label:has(input[type="checkbox"]:checked)::before {
    background-image: url(../../img/usr/common/icon_cb_on.png);
}

/*----ボタン----*/
/*ここまで sys/base_form.css のコピー*/
/*usr/layout.css のコピー ここから*/
.pane-globalnav {
    position: relative;
    background-color: #444;
    color: #fff;
}

/*ここまで usr/layout.css のコピー*/
/*usr/block.css のコピー ここから*/
/*----ヘッダー----*/
.block-header-logo {
    width: 240px;
}

.block-headernav {
    width: 440px;
}

.block-headernav--item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-headernav--item-list li {
    position: relative;
    display: inline-block;
    font-size: 11px;
    text-align: center;
}

.block-headernav--item-list li a {
    display: block;
}

/*----ヘッダー検索----*/
.block-global-search {
    width: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-global-search--keyword {
    width: 280px;
}

input.block-global-search--keyword:hover {
    background-color: transparent;
}

button.block-global-search--submit {
    border: none;
    background-color: transparent;
    width: 33px;
}

.block-global-search--searchdetail {
    margin-left: 15px;
}

.block-global-search--search-detail-link {
    color: #6fb4c3;
    text-decoration: underline;
}

/*----グローバルナビ----*/
.block-globalnav--item-list {
    display: table;
    width: 100%;
}

.block-globalnav--item-list div {
    margin-right: 10px;
}

.block-globalnav--item-list>div {
    display: table-cell;
    width: 20%;
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
}

.block-globalnav--item-list>div>a {
    position: relative;
    display: block;
    color: #fff;
    padding: 20px 0;
    text-decoration: none;
}

.block-globalnav--item-list>div>a:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 38px;
    border-left: 1px solid #666;
    top: 10px;
    left: 0;
}

.block-globalnav--item-list>div:last-child>a:before {
    border-right: 1px solid #666;
}

.block-globalnav-menu {
    position: absolute;
    background-color: #191919;
    opacity: 0.98;
    width: 100%;
    top: 58px;
    left: 0;
    padding: 30px 0 20px;
    text-align: left;
    z-index: 10;
}

/*ここまで usr/block.css のコピー*/
/*usr/user.css のコピー ここから*/
/*fade image in after load*/
.lazyload {
    opacity: 0;
}

.lazyloading {
    opacity: 1;
}

.lazyloaded {
    opacity: 1;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
}

/*ここまで usr/user.css のコピー*/
/*sys/base_misc.css のコピー ここから*/
.img-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.img-center img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

/*ここまで sys/base_misc.css のコピー*/
/*sys/layout.css のコピー ここから*/
.container {
    width: 1200px;
    margin: 0 auto;
}

.pane-globalnav {
    width: 100%;
}

.pane-contents .container {
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    /*IE11*/
    display: -ms-grid;
    -ms-grid-columns: auto 1fr;
    -ms-grid-rows: auto 1fr;
}

.pane-left-menu {
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
    /*IE11*/
    -ms-grid-row-span: 2;
    width: 240px;
    margin: 30px 60px 0 0;
}

.pane-main {
    display: block;
    grid-column-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    width: 100%;
}

/*ここまで sys/layout.css のコピー*/
/*sys/block_common.css のコピー ここから*/
/*----左メニューブロック共通----*/
.pane-left-menu .pane-block--title {
    font-size: 16px;
    border-top: #444 1px solid;
    padding: 16px 0;
    font-weight: bold;
    margin-bottom: 0;
}

.pane-block--title {
    margin: 20px 0;
    font-size: 26px;
    font-weight: normal;
}

/*ここまで sys/block_common.css のコピー*/
/*sys/block_goods.css のコピー ここから*/
/*----トップページイベント表示----*/
.block-top-event--header {
    font-size: 28px;
    text-align: center;
    border-top: #444 2px solid;
    padding: 19px 0 30px;
}

/*----関連商品----*/
.block-cart-i--items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-cart-i--goods-image {
    width: 224px;
}

.block-cart-i--goods {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
    margin-left: 33px;
}

.block-cart-i--goods:first-of-type {
    margin-left: 0;
}

.block-cart-i--goods-image figure {
    background: #f5f5f5;
    width: 200px;
    height: 200px;
}

.block-cart-i--goods a {
    text-decoration: underline;
}

.block-cart-i--goods-description {
    margin-top: 20px;
}

.block-cart-i--goods .price {
    font-weight: bold;
    text-align: right;
}

.block-cart-i--goods .net-price,
.block-cart-i--goods .default-price,
.block-cart-i--goods .exchange-price,
.block-cart-i--goods .block-exchange-price--rate-dt {
    text-align: right;
}

.block-cart-i--scomment {
    color: #cc3302;
}

/* sort/count */
.block-category-list--goods {
    margin-top: 34px;
    margin-top: 40px;
}

.pager_top_count {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: left;
}

.pager_top_count_total {
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.pager_top_count_total_num {
    font-size: 20px;
    font-weight: 700;
}

.pager_top_count_total_num strong {
    position: relative;
    bottom: -1px;
    font-size: 29px;
    font-weight: 500;
    font-family: "Roboto", 'メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif';
}

.pager_top_count_current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-left: 15px;
    letter-spacing: 0.05em;
}

.pager_top_count_current_num {
    font-size: 14px;
}

.pager_top_count_current_num strong {
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", 'メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif';
    margin-right: 2px;
}

.block-goods-list--sort-order-items {
    position: relative;
    float: right;
    padding-top: 12px;
    z-index: 1;
}

.page-search .block-goods-list--sort-order-items {
    padding-top: 12px;
}

.itemsort_items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 1.3;
}

.itemsort_items div {
    color: #111111;
    font-weight: 700;
}

.itemsort_items div:not(:first-child) {
    margin-left: 9px;
    padding-left: 9px;
    border-left: 1px solid #999999;
}

.itemsort_items a {
    color: #999999;
    font-weight: 400;
}

/*ここまで usr/block.css のコピー*/
/*----トップページ本文----*/
/*ここまで usr/block.css のコピー*/
/*----オリジナルCSS----*/
/*ニュース*/
.block-top-topic {
    padding-top: 50px;
    padding-bottom: 60px;
    background-color: #f7f7f7;
}

.block-top-topic .block-top-topic--header {
    border-top: none;
    padding: 0;
    margin-top: 0;
}

.block-top-topic .block-top-topic--body {
    margin-bottom: 0;
}

.block-top-topic .block-top-topic--items {
    border-top: 1px solid #e5e5e5;
}

.block-top-topic .block-top-topic--items li {
    border-bottom-color: #e5e5e5;
    padding: 20px;
}

.block-top-topic .block-top-topic--items li a {
    display: block;
}

.block-top-topic .block-top-topic--items li a:hover {
    text-decoration: none;
}

.block-top-topic .block-top-topic--items dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-top-topic .block-top-topic--items dl dt {
    font-family: "Roboto Condensed", 'メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif';
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #999999;
    font-size: 18px;
    margin-right: 30px;
}

.block-top-topic .block-top-topic--items dl dd {
    font-size: 16px;
}

.block-top-topic .block-top-topic--items dl dd>span:first-child {
    margin-right: 10px;
}

.topic_new {
    font-family: "Roboto Condensed", 'メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif';
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 18px;
    color: #d00000;
}

/*TOP用フッタ*/
.topfooter {
    margin-top: 100px;
    margin-bottom: 100px;
}

.topfooter_bnrs_sites,
.topfooter_bnrs_pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topfooter_bnrs_sites a,
.topfooter_bnrs_pages a {
    display: block;
}

.topfooter_bnrs_sites img,
.topfooter_bnrs_pages img {
    vertical-align: top;
}

.topfooter_bnrs_sites a {
    width: calc(33% - 15px);
}

.topfooter_bnrs_pages {
    margin-top: 30px;
}

.topfooter_bnrs_pages a {
    width: calc(50% - 12.5px);
}

/* 202502 added */
/* ボタン */
.block-list-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    padding: 0 8px;
}

.block-list-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 24px;
    color: var(--cl-bk);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.block-list-link a:hover {
    color: var(--cl-link);
    text-decoration: none;
}

.block-list-link a::after {
    content: "";
    display: inline-block;
    position: relative;
    left: 0;
    width: 11px;
    height: 10px;
    margin-left: 8px;
    background-image: url(../../img/usr/common/arw_link_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: left 0.3s;
}

.block-list-link a:hover::after {
    left: 8px;
}

.block-btn-bdr-arw {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
}

.block-btn-bdr-arw a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 384px;
    height: 64px;
    border: 1px solid var(--cl-gr-1);
    border-radius: 4px;
    background-color: #ffffff;
    color: var(--cl-bk);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: border 0.3s, background-color 0.3s, color 0.3s;
}

.block-btn-bdr-arw a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 11px;
    height: 10px;
    margin-top: -5px;
    background-image: url(../../img/usr/common/arw_link_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: right 0.3s, background-image.3s;
}

/* トップページ */
.block-top-body {
    position: relative;
}

.block-top-mv {
    overflow: hidden;
}

.block-top-mv-slider {
    display: flex;
}

.block-top-mv-slider-item {
    flex-shrink: 0;
    position: relative;
    width: 1008px;
    margin: 0 16px;
}

.block-top-mv-slider-item .list-img img {
    display: block;
    width: 100%;
    height: auto;
}

.block-top-mv-slider-item .list-detail {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 80px 88px;
    color: #ffffff;
}

.block-top-mv-slider-item .list-comment {
    font-size: 5.6rem;
    font-weight: 800;
    line-height: 125%;
}

.block-top-mv-slider-item .list-stock {
    display: flex;
    align-items: center;
    margin-top: 32px;
    font-size: 1.6rem;
    font-weight: 700;
}

.block-top-mv-slider-item .list-stock dt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 32px;
    border-radius: 4px;
    background-color: #ffffff;
    color: var(--cl-bk);
}

.block-top-mv-slider-item .list-stock dd {
    margin-left: 16px;
}

.block-top-mv-slider-item .list-stock dd span {
    margin-right: 4px;
    font-size: 2rem;
    font-family: var(--ff-en);
}

.block-top-mv-slider-item .list-btn {
    margin-top: 48px;
}

.block-top-mv-slider-item .list-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 280px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: border 0.3s, background-color 0.3s, color 0.3s;
}

.block-top-mv-slider-item .list-btn a:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: var(--cl-link);
    text-decoration: none;
}

.block-top-mv-slider-item .list-btn a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 11px;
    height: 10px;
    margin-top: -5px;
    background-image: url(../../img/usr/common/arw_link_white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: right 0.3s, background-image 0.3s;
}

.block-top-mv-slider-item .list-btn a:hover::after {
    right: 17px;
    background-image: url(../../img/usr/common/arw_link_blue.png);
}

.swiper-controls-mv {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: var(--base-width);
    height: 24px;
    margin: 20px auto 0;
}

.swiper-button-prev-mv,
.swiper-button-next-mv {
    width: 24px;
    height: 24px;
    background-image: url(../../img/usr/common/arw_slider_mv.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: background-image 0.3s;
}

.swiper-button-prev-mv:hover,
.swiper-button-next-mv:hover {
    background-image: url(../../img/usr/common/arw_slider_mv_on.png);
}

.swiper-button-next-mv {
    transform: rotate(180deg);
}

.swiper-pagination-mv {
    display: flex;
    align-items: center;
    margin: 0 24px;
}

.swiper-pagination-mv .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: var(--cl-gr-3);
    cursor: pointer;
}

.swiper-pagination-mv .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--cl-bk);
}

.swiper-pagination-mv .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 16px;
}

.block-top-bnr {
    position: absolute;
    top: 568px;
    left: 32px;
    height: 72px;
}

.block-top-bnr-inner {
    display: flex;
    align-items: center;
    position: relative;
    height: 72px;
    padding: 24px 59px 24px 32px;
    border-radius: 8px;
    background-color: #ffffff;
    color: var(--cl-bk);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 150%;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    transition: color 0.3s;
}

.block-top-bnr-inner:hover {
    color: var(--cl-link);
    text-decoration: none;
}

.block-top-bnr-inner::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 32px;
    width: 11px;
    height: 10px;
    margin-top: -5px;
    background-image: url(../../img/usr/common/arw_link_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: right 0.3s;
}

.block-top-bnr-inner:hover::after {
    right: 24px;
}

.block-top-bnr-inner .icon-sale {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 25px;
    margin-right: 24px;
    background-color: var(--cl-rd);
    color: #ffffff;
    font-size: 1.4rem;
    font-family: var(--ff-en);
    font-weight: 700;
}

.block-top-event_bnr {
    margin-top: 100px;
    overflow: hidden;
}

.block-top-event_bnr-list {
    position: relative;
}

.block-top-event_bnr-slider {
    display: flex;
}

.block-top-event_bnr-slider-item {
    flex-shrink: 0;
    width: 384px;
    margin-right: 32px;
}

.block-top-event_bnr-slider-item a {
    color: var(--cl-bk);
    text-decoration: none;
}

.block-top-event_bnr-slider-item a:hover {
    text-decoration: none;
    opacity: 1;
}

.block-top-event_bnr-slider-item .list-img {
    width: 100%;
    overflow: hidden;
}

.block-top-event_bnr-slider-item .list-img img {
    display: block;
    width: 100%;
    height: 182px;
    object-fit: cover;
    transition: transform 0.3s;
}

.block-top-event_bnr-slider-item a:hover .list-img img {
    transform: scale(1.1);
}

.block-top-event_bnr-slider-item .list-detail {
    margin-top: 16px;
    padding: 0 8px;
}

.block-top-event_bnr-slider-item .list-ttl {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 150%;
}

.block-top-event_bnr-slider-item .list-ttl p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block-top-event_bnr-slider-item .list-arw {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-top: 12px;
    padding: 0 16px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 150%;
    transition: color 0.3s;
}

.block-top-event_bnr-slider-item a:hover .list-arw {
    color: var(--cl-link);
}

.block-top-event_bnr-slider-item .list-arw::after {
    content: "";
    display: inline-block;
    position: relative;
    left: 0;
    width: 11px;
    height: 10px;
    margin-left: 8px;
    background-image: url(../../img/usr/common/arw_link_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: left 0.3s;
}

.block-top-event_bnr-slider-item a:hover .list-arw::after {
    left: 8px;
}

.block-top-newarrivals {
    margin-top: 112px;
    overflow: hidden;
}

.block-top-newarrivals-radio ul {
    display: flex;
    align-items: center;
}

.block-top-newarrivals-radio li+li {
    margin-left: 24px;
}

.block-top-newarrivals-radio input[type="radio"] {
    display: none;
}

.block-top-newarrivals-radio input[type="radio"]+label {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1.6rem;
    transition: font-weight 0.14s;
}

.block-top-newarrivals-radio input[type="radio"]:checked+label {
    font-weight: 700;
}

.block-top-newarrivals-radio input[type="radio"]+label::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url(../../img/usr/common/icon_radio_off.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background-image 0.14s;
}

.block-top-newarrivals-radio input[type="radio"]:checked+label::before {
    background-image: url(../../img/usr/common/icon_radio_on.png);
}

.block-top-newarrivals-radio+.block-tab-select {
    margin-top: 32px;
}

.block-top-popularbrands {
    margin-top: 112px;
    overflow: hidden;
}

.block-top-popularbrands-list {
    display: flex;
    flex-wrap: wrap;
}

.block-top-popularbrands-list-item {
    width: 384px;
}

.block-top-popularbrands-list-item:not(:nth-child(3n)) {
    margin-right: 32px;
}

.block-top-popularbrands-list-item:not(:nth-child(-n + 3)) {
    margin-top: 48px;
}

.block-top-popularbrands-list-item a {
    color: var(--cl-bk);
    text-decoration: none;
}

.block-top-popularbrands-list-item a:hover {
    text-decoration: none;
    opacity: 1;
}

.block-top-popularbrands-list-item .list-img {
    display: block;
    overflow: hidden;
}

.block-top-popularbrands-list-item .list-img img {
    display: block;
    width: 100%;
    transition: transform 0.3s;
}

.block-top-popularbrands-list-item a:hover .list-img img {
    transform: scale(1.1);
}

.block-top-popularbrands-list-item .list-detail {
    margin-top: 24px;
    padding: 0 16px;
}

.block-top-popularbrands-list-item .list-name {
    font-weight: 700;
    line-height: 100%;
    white-space: nowrap;
}

.block-top-popularbrands-list-item .list-name .txt-en {
    font-size: 2.4rem;
}

.block-top-popularbrands-list-item .list-name .txt-ja {
    position: relative;
    top: -3px;
    margin-left: 8px;
    font-size: 1.4rem;
}

.block-top-popularbrands-list-item .list-comment {
    margin-top: 8px;
    color: var(--cl-gr-1);
    font-size: 1.6rem;
    line-height: 150%;
}

.block-top-popularbrands-list-item .list-comment p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block-top-popularbrands-list-item .list-arw {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-top: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 150%;
    transition: color 0.3s;
}

.block-top-popularbrands-list-item a:hover .list-arw {
    color: var(--cl-link);
}

.block-top-popularbrands-list-item .list-arw::after {
    content: "";
    display: inline-block;
    position: relative;
    left: 0;
    width: 11px;
    height: 10px;
    margin-left: 8px;
    background-image: url(../../img/usr/common/arw_link_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: left 0.3s;
}

.block-top-popularbrands-list-item a:hover .list-arw::after {
    left: 8px;
}

.block-top-category {
    margin-top: 112px;
    overflow: hidden;
}

.block-top-category-list ul {
    display: flex;
    width: 100%;
    min-width: var(--base-width);
}

.block-top-category-list li {
    width: calc(100% / 4);
    height: 480px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.block-top-category-list a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.block-top-category-list a:hover {
    text-decoration: none;
    opacity: 1;
}

.block-top-category-list .list-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.block-top-category-list .list-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.block-top-category-list a:hover .list-img img {
    transform: scale(1.1);
}

.block-top-category-list .list-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: 700;
}

.block-top-category-list .list-ttl .txt-en {
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 100%;
}

.block-top-category-list .list-ttl .txt-ja {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.6rem;
    line-height: 100%;
}

.button-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content: flex-start;
    width: 285px;
    height: 55px;
    background-color: #ffffff;
    border: 1px solid #000;
    /* 枠線を追加 */
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    padding-left: 20px;
    /* テキストの左パディング */
    padding-right: 20px;
    /* 矢印のための右パディング */
}

.button-overlay:hover {
    background-color: #0f92f2;
    border-color: #0f92f2;
}

.button-overlay:hover .button-text {
    color: #fff;
}

.button-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    /* margin-right: 8px; */
    /* 矢印を疑似要素で追加するため不要 */
    flex-grow: 1;
    /* テキストが中央に寄るようにスペースを埋める */
    text-align: center;
    /* テキストを中央寄せ */
}


.button-overlay::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 11px;
    height: 10px;
    margin-top: -5px;
    background-image: url(../../img/usr/common/arw_link_blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: right 0.3s, background-image .3s;
}

.button-overlay:hover::after {
    background-image: url(../../img/usr/common/arw_link_white.png);
}




.block-top-instagram {
    margin-top: 112px;
}

.block-top-instagram-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
    text-align: right;
}

.block-top-instagram-link a {
    display: flex;
    align-items: center;
    position: relative;
    height: 24px;
    color: var(--cl-bk);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
}

.block-top-instagram-link a:hover {
    text-decoration: underline;
}

.block-top-instagram-link a::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    background-image: url(../../img/usr/common/icon_linkouter_black.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.block-top-instagram-follow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-top-instagram-follow a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 176px;
    height: 48px;
    border: 1px solid var(--cl-gr-1);
    border-radius: 4px;
    background-color: #ffffff;
    color: var(--cl-bk);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transform: opacity 0.3s;
}

.block-top-instagram-follow a:hover {
    opacity: 0.6;
}

.block-top-instagram-follow a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background-image: url(../../img/usr/common/icon_linkouter_black.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.block-top-reviews {
    margin-top: 112px;
}

.block-top-recommend {
    margin-top: 112px;
    overflow: hidden;
}

.block-top-column {
    margin-top: 112px;
    overflow: hidden;
}

.block-top-column-slider {
    position: relative;
}

.block-top-column-list {
    display: flex;
}

.block-top-column-list-item {
    flex-shrink: 0;
    width: 280px;
    margin-right: 32px;
}

.block-top-column-list-item a {
    color: var(--cl-bk);
    text-decoration: none;
}

.block-top-column-list-item a:hover {
    text-decoration: none;
    opacity: 1;
}

.block-top-column-list-item .list-img {
    overflow: hidden;
}

.block-top-column-list-item .list-img img {
    display: block;
    width: 280px;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s;
}

.block-top-column-list-item a:hover .list-img img {
    transform: scale(1.1);
}

.block-top-column-list-item .list-detail {
    margin-top: 24px;
    padding: 0 8px;
}

.block-top-column-list-item .list-date {
    color: var(--cl-gr-2);
    font-size: 1.4rem;
    font-family: var(--ff-en);
    font-weight: 700;
    line-height: 100%;
}

.block-top-column-list-item .list-ttl {
    margin-top: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 150%;
}

.block-top-column-list-item a:hover .list-ttl {
    text-decoration: underline;
}

.block-top-column-list-item .list-ttl p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block-top-ourstores {
    position: relative;
    margin-top: 112px;
    width: 100%;
    padding: 120px 0 80px;
    background-image: url(../../img/usr/top/ourstores_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.block-top-ourstores::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.7);
    mix-blend-mode: multiply;
}

.block-top-ourstores .block-container {
    position: relative;
}

.block-top-ourstores .ttl-h2-1 {
    color: #ffffff;
}

.block-top-ourstores-comment {
    width: 528px;
    margin-top: 56px;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 200%;
}

.block-top-ourstores-link {
    margin-top: 48px;
}

.block-top-ourstores-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 384px;
    height: 64px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.block-top-ourstores-link a:hover {
    border-color: transparent;
    background-color: rgba(15, 147, 242, 0.6);
    text-decoration: none;
}

.block-top-ourstores-link a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 11px;
    height: 10px;
    margin-top: -5px;
    background-image: url(../../img/usr/common/arw_link_white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: right 0.3s;
}

.block-top-ourstores-link a:hover:after {
    right: 17px;
}

.block-top-pss {
    margin-top: 112px;
}

.block-top-pss-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-top-pss-img {
    width: 560px;
}

.block-top-pss-img img {
    display: block;
    width: 100%;
}

.block-top-pss-detail {
    width: 592px;
}

.block-top-pss-subttl {
    color: var(--cl-gr-2);
    font-size: 1.8rem;
    font-weight: 700;
}

.block-top-pss-ttl {
    margin: 8px 0 0;
    padding: 0;
    font-size: 3.2rem;
    font-weight: 700;
}

.block-top-pss-comment {
    margin-top: 32px;
    font-size: 1.6rem;
    line-height: 200%;
}

.block-top-pss-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
    text-align: right;
}

.block-top-pss-link a {
    display: flex;
    align-items: center;
    position: relative;
    height: 24px;
    color: var(--cl-bk);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
}

.block-top-pss-link a:hover {
    text-decoration: underline;
}

.block-top-pss-link a::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    background-image: url(../../img/usr/common/icon_linkouter_black.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* トップページ */
.block-top-ranking {
    margin-top: 112px;
    overflow: hidden;
}

.block-top-ranking-slider {
    position: relative;
    margin-top: 64px;
}

.block-history-slider {
    position: relative;
}

.block-top-ranking-slider .block-thumbnail-t,
.block-thumbnail-h {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.block-thumbnail-t li,
.block-top-ranking-slider .block-thumbnail-t li,
.block-thumbnail-h li,
.page-top .block-thumbnail-h li {
    width: 176px;
}

.block-top-ranking-slider .block-thumbnail-t li,
.block-genre-goods-list-container .block-thumbnail-t li:not(:nth-child(6n)),
.block-category-list--goods .block-thumbnail-t li:not(:nth-child(6n)),
.block-thumbnail-h li,
.page-top .block-thumbnail-h li {
    margin-right: 32px;
}

.block-genre-goods-list-container .block-thumbnail-t li:not(:nth-child(-n + 6)),
.block-category-list--goods .block-thumbnail-t li:not(:nth-child(-n + 6)) {
    margin-top: 48px;
}

.block-thumbnail-t--goods,
.block-top-ranking-slider .block-thumbnail-t--goods,
.block-thumbnail-h--goods,
.page-top .block-thumbnail-h--goods {
    display: block;
    width: 176px;
    height: auto;
}

.block-thumbnail-t--goods a,
.block-top-ranking-slider .block-thumbnail-t--goods a,
.block-thumbnail-h--goods a,
.page-top .block-thumbnail-h--goods a {
    color: var(--cl-bk);
    text-decoration: none;
}

.block-thumbnail-t--goods a:hover,
.block-top-ranking-slider .block-thumbnail-t--goods a:hover,
.block-thumbnail-h--goods a:hover,
.page-top .block-thumbnail-h--goods a:hover {
    text-decoration: none;
    opacity: 1;
}

.block-thumbnail-t--goods-image,
.block-top-ranking-slider .block-thumbnail-t--goods-image,
.block-thumbnail-h--goods-image,
.page-top .block-thumbnail-h--goods-image {
    position: relative;
    overflow: hidden;
}

.block-thumbnail-t--goods-image img,
.block-top-ranking-slider .block-thumbnail-t--goods-image img,
.block-thumbnail-h--goods-image img,
.page-top .block-thumbnail-h--goods-image img {
    display: block;
    width: 176px;
    height: 176px;
    object-fit: cover;
    transition: transform 0.3s;
}

.block-thumbnail-t--goods a:hover .block-thumbnail-t--goods-image img,
.block-top-ranking-slider .block-thumbnail-t--goods a:hover .block-thumbnail-t--goods-image img,
.block-thumbnail-h--goods a:hover .block-thumbnail-h--goods-image img,
.page-top .block-thumbnail-h--goods a:hover .block-thumbnail-h--goods-image img {
    transform: scale(1.1);
}

.block-thumbnail-t--goods-description,
.block-top-ranking-slider .block-thumbnail-t--goods-description,
.block-thumbnail-h--goods-description,
.page-top .block-thumbnail-h--goods-description {
    margin-top: 16px;
}

.block-thumbnail-t--goods-name,
.block-top-ranking-slider .block-thumbnail-t--goods-name,
.block-thumbnail-h--goods-name,
.page-top .block-thumbnail-h--goods-name {
    display: block;
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 150%;
    overflow: visible;
}

.block-thumbnail-t--goods a:hover .block-thumbnail-t--goods-name,
.block-thumbnail-h--goods a:hover .block-thumbnail-h--goods-name {
    text-decoration: underline;
}

.block-thumbnail-t--goods-name p,
.block-top-ranking-slider .block-thumbnail-t--goods-name p,
.block-thumbnail-h--goods-name p,
.page-top .block-thumbnail-h--goods-name p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block-thumbnail-t--price-items,
.block-thumbnail-h--price-items {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 8px;
    font-family: var(--ff-en);
    line-height: 100%;
}

.block-thumbnail-t--price,
.block-thumbnail-h--price {
    margin-top: 8px;
    text-align: left;
}

.block-thumbnail-t--goods .price,
.block-thumbnail-h--goods .price {
    color: var(--cl-bk);
    font-weight: 900;
}

.block-thumbnail-t--goods .price-sale+.price-default,
.block-thumbnail-h--goods .price-sale+.price-default {
    color: var(--cl-rd);
}

.block-thumbnail-t--goods .price .crc,
.block-thumbnail-h--goods .price .crc {
    font-size: 1.6rem;
}

.block-thumbnail-t--goods .price .num,
.block-thumbnail-h--goods .price .num {
    font-size: 2rem;
}

.block-thumbnail-t--goods .price .tax,
.block-thumbnail-h--goods .price .tax {
    font-size: 1.2rem;
    font-weight: 700;
}

.block-thumbnail-t--goods .price .soldout,
.block-thumbnail-h--goods .price .soldout {
    font-size: 2rem;
}

.block-thumbnail-t--goods .price-sale,
.block-thumbnail-h--goods .price-sale {
    position: relative;
}

.block-thumbnail-t--goods .price-sale::before,
.block-thumbnail-h--goods .price-sale::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--cl-bk);
}

.block-thumbnail-t--goods .price-sale .crc,
.block-thumbnail-t--goods .price-sale .num,
.block-thumbnail-h--goods .price-sale .crc,
.block-thumbnail-h--goods .price-sale .num {
    font-size: 1.6rem;
    font-weight: 700;
}

.block-thumbnail-t--goods .price-sale .tax,
.block-thumbnail-h--goods .price-sale .tax {
    font-size: 1.2rem;
    font-weight: 400;
}

.block-thumbnail-t--conditions,
.block-thumbnail-h--conditions {
    margin-top: 8px;
    color: var(--cl-gr-2);
    font-size: 1.3rem;
    font-weight: 700;
}

.block-thumbnail-t--conditions>span+span,
.block-thumbnail-h--conditions>span+span {
    position: relative;
}

.block-thumbnail-t--conditions>span+span::before,
.block-thumbnail-h--conditions>span+span::before {
    content: "｜";
}

.block-recent-item {
    width: 100%;
    margin-top: 112px;
    overflow: hidden;
}

.block-recent-item h2.pane-block--title.block-recent-item--header {
    display: flex;
    flex-direction: column;
    width: var(--base-width);
    margin: 0 auto 56px;
    padding: 0;
    text-align: left;
}

.block-recent-item h2.pane-block--title.block-recent-item--header .txt-en {
    font-weight: 700;
}

.block-recent-item h2.pane-block--title.block-recent-item--header .txt-en {
    font-size: 4.4rem;
    line-height: 100%;
}

.block-recent-item h2.pane-block--title.block-recent-item--header .txt-ja {
    margin-top: 16px;
    font-size: 1.8rem;
    color: var(--cl-gr-2);
    font-weight: 700;
    line-height: 150%;
}

.block-recent-item--body {
    width: var(--base-width);
    margin: 0 auto;
}

.block-recent-item--keep-history {
    margin-top: 40px;
    text-align: right;
}

.block-recent-item--keep-history a {
    color: var(--cl-bk);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
}

.block-recent-item--keep-history a:hover {
    text-decoration: underline;
}

/* block-icon */
.block-icon {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 0;
    margin: -4px -4px 0 0;
}

.block-icon>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 20px;
    margin: 4px 4px 0 0;
    background-color: var(--cl-gr-4);
    color: var(--cl-gr-2);
    font-size: 1.2rem;
    font-family: var(--ff-en);
    font-weight: 700;
    text-align: center;
}

.block-icon>span.block-icon-new {
    background-color: var(--cl-gn);
    color: #ffffff;
}

.block-icon>span.block-icon-on-sale {
    background-color: var(--cl-rd);
    color: #ffffff;
}

/* Naviplus */
.block-top-naviplus-list {
    position: relative;
    margin-top: 56px;
}

.block-top-naviplus-list-items {
    display: flex;
}

.block-top-naviplus-list-item {
    flex-shrink: 0;
    width: 176px;
    margin-right: 32px;
}

.block-top-naviplus-list-item a {
    color: var(--cl-bk);
    text-decoration: none;
}

.block-top-naviplus-list-item a:hover {
    text-decoration: none;
    opacity: 1;
}

.block-top-naviplus-list-item .list-img {
    width: 100%;
    overflow: hidden;
}

.block-top-naviplus-list-item .list-img img {
    display: block;
    width: 176px;
    height: 176px;
    object-fit: cover;
    transition: transform 0.3s;
}

.block-top-naviplus-list-item a:hover .list-img img {
    transform: scale(1.1);
}

.block-top-naviplus-list-item .list-detail {
    margin-top: 16px;
}

.block-top-naviplus-list-item .list-name {
    font-size: 1.6rem;
    line-height: 150%;
}

.block-top-naviplus-list-item a:hover .list-name {
    text-decoration: underline;
}

.block-top-naviplus-list-item .list-name p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block-top-naviplus-list-item .list-price {
    margin-top: 8px;
    font-family: var(--ff-en);
    font-weight: 900;
}

.block-top-naviplus-list-item .list-price .crc {
    font-size: 1.6rem;
}

.block-top-naviplus-list-item .list-price .num {
    font-size: 2rem;
}

.block-top-naviplus-list-item .list-price .tax {
    font-size: 1.2rem;
    font-weight: 700;
}

/* swiper button */
.swiper-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -96px;
    right: 0;
    width: 88px;
    height: 40px;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
    width: 40px;
    height: 40px;
    background-image: url(../../img/usr/common/arw_slider_list.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: background-image 0.3s;
}

.swiper-controls .swiper-button-prev:hover,
.swiper-controls .swiper-button-next:hover {
    background-image: url(../../img/usr/common/arw_slider_list_on.png);
}

.swiper-controls .swiper-button-next {
    transform: rotate(180deg);
}

/* 既存のswiper svgを非表示 */
.swiper-button-prev svg,
.swiper-button-next svg {
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
}

/* tab */
.block-tab-select-items {
    display: flex;
}

.block-tab-select-items li+li {
    margin-left: 16px;
}

.block-tab-select-items button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 40px;
    border: none;
    border-radius: 40px;
    background-color: var(--cl-gr-4);
    color: var(--cl-gr-2);
    font-size: 1.6rem;
    font-family: var(--ff-en);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.block-tab-select-items button:hover,
.block-tab-select-items li.is-active button {
    background-color: var(--cl-bk);
    color: #ffffff;
    opacity: 1;
}

.block-tab-target {
    margin-top: 56px;
}

.block-tab-target-item {
    display: none;
}

.block-tab-target-item.is-active {
    display: block;
}