﻿@charset "UTF-8";
/* ----ヘッダー---- */
.block-header-fixed{
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  padding: 14px 20px 8px;
  background: #FFF;
  transition: height .3s;
}
.--login .block-header-fixed{
  padding: 8px 20px 8px;
}
.pane-header.is-fixed .block-header-fixed{
  height: 64px;
  padding: 10px 20px 8px;
}
.--login.is-fixed  .block-header-fixed {
  padding: 8px 20px 8px;
}
.block-header-fixed .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pane-header.is-fixed .block-header-fixed .container{
  align-items: center;
}
.block-header-logo{
  flex-shrink: 0;
}
.block-header-logo img{
  width: clamp(6.875rem, -2.854rem + 41.51vw, 8.25rem);
  height: auto;
  transition: .3s;
}
.pane-header.is-fixed .block-header-logo img{
  width: 110px;
  height: auto;
}
.block-header-nav #header_menu {
  position: relative;
  width: 42px;
  height: 44px;
  cursor: pointer;
}
.block-header-nav #header_menu::before {
  position: absolute;
  top: 6px;
  left: 9px;
  width: 24px;
  height: 1px;
  background: #1F2123;
  transition: all 0.3s;
  content: "";
}
.block-header-nav #header_menu::after {
  position: absolute;
  top: 18px;
  left: 9px;
  width: 24px;
  height: 1px;
  background: #1F2123;
  transition: all 0.3s;
  content: "";
}
.block-header-nav #header_menu span:not(.block-headernav__item-text) {
  position: absolute;
  top: 12px;
  left: 9px;
  display: block;
  width: 24px;
  height: 1px;
  font-size: 0;
  background: #1F2123;
}
.block-header-nav #header_menu span.block-headernav__item-text {
  position: absolute;
  bottom: 0;
}
.block-header-nav #header_menu.active::before {
  top: 12px;
  transform: rotate(45deg);
}
.block-header-nav #header_menu.active::after {
  top: 12px;
  transform: rotate(-45deg);
}
.block-header-nav #header_menu.active span:not(.block-headernav__item-text)  {
  display: none;
}
.block-headernav__item-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.625rem, -1.144rem + 7.55vw, 0.875rem);
}
.block-headernav__item-list a{
  text-decoration: none;
  letter-spacing: 0;
  display: block;
}
.block-headernav__item-list .block-headernav__item-history{
  border-right: 1px solid #C9C9C9;
  padding-right: 10px;
}
.block-headernav__item-list .block-headernav__item-beginner a::before{
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../img/usr/common/ico_first.png) center center / contain no-repeat;
  display: block;
  margin: 0 auto 7px;
}
.block-headernav__item-list .block-headernav__item-login a::before{
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../img/usr/common/ico_login.png) center center / contain no-repeat;
  display: block;
  margin: 0 auto 7px;
}
.block-headernav__item-list .block-headernav__item-history a::before{
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../img/usr/common/ico_history.png) center center / contain no-repeat;
  display: block;
  margin: 0 auto 2px;
}
.block-headernav__item-list .block-headernav__item-cart{
  position: relative;
}
.block-headernav__item-list .block-headernav__item-cart a::before{
  content: "";
  width: 28px;
  height: 28px;
  background: url(../../img/usr/common/ico_cart.png) center center / contain no-repeat;
  display: block;
  margin: 0 auto 4px;
}
.block-headernav__item-list .block-headernav__item-menu a::before{
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../img/usr/common/ico_entry.png) center center / contain no-repeat;
  display: block;
  margin: 0 auto 7px;
}
.block-headernav__item-list .block-headernav__item-bookmark a::before{
  content: "";
  width: 34px;
  height: 34px;
  background: url(../../img/usr/common/ico_favorite.png) center center / contain no-repeat;
  display: block;
  margin: 0 auto 4px;
}
.block-headernav__item-list .block-headernav__item-mypage a::before{
  content: "";
  width: 34px;
  height: 34px;
  background: url(../../img/usr/common/ico_mypage.png) center center / contain no-repeat;
  display: block;
  margin: 0 auto 4px;
}
.block-headernav__cart-count{
  font-size: 9px;
  color: #FFF;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -4px;
  right: -6px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #A80D0D;
}
.block-headernav__item-text{
  font-size: clamp(0.563rem, 0.12rem + 1.89vw, 0.625rem);
  font-family: var(--font-700);
  font-weight: bold;
  letter-spacing: 0;
  display: block;
  line-height: 1.2;
  text-align: center;
}
.block-headernav__item-history .block-headernav__item-text{
  color: var(--color01);
  text-align: center;
}
.block-header-information{
  background: #E8E8E8;
  padding: 9px 20px;
}
.block-header-information-inner{
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
}
.block-header-information ul > * + *{
  margin: 5px 0 0;
}
.block-header-information li{
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.block-header-information li a{
  text-decoration: none;
  display: block;
}
.block-header-information-more{
  flex-shrink: 0;
}
.block-header-information-more a{
  font-size: 13px;
  text-decoration: none;
  position: relative;
  padding-right: 16px;
}
.block-header-information-more a::after{
  content: "";
  width: 9px;
  height: 12px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #000;
}
.block-headernav__item-search{
  margin: 0 0 12px;
  padding: 4px 20px 0;
}
.block-global-search{
  position: relative;
}
.block-global-search .block-global-search--keyword{
  width: 100%;
  height: 46px;
  border: 1px solid #4D535D;
  border-radius: 4px;
  padding: 4px 112px 4px 16px;
}
.block-global-search .block-global-search--submit{
  height: 46px;
  font-size: 16px;
  color: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  background: #1F2123;
  border: none;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
}
.block-global-search .block-global-search--submit::after{
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../img/usr/common/ico_search.png) center center / contain no-repeat;
}
.block-top-campaign-slider .swiper-pagination {
  width: auto;
  position: static;
  margin-right: 10px;
}

h2.block-top-headline{
  font-family: var(--font01);
  font-weight: 400;
  font-size: 30px;
  color: #1F2123;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
}
h2.block-top-headline::first-letter{
  color: var(--color01);
}
h2.block-top-headline span.small{
  font-size: 15px;
  font-family: var(--font-500);
  font-weight: 500;
  letter-spacing: 0.06em;
  display: block;
}

.block-top-pickup{
  padding: 40px 0;
}
.block-top-pickup h2.block-top-headline::after{
  content: "";
  width: 0.5em;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 25px;
  left: 0;
}
.block-pickup-contents h3{
  font-size: 14px;
  font-family: var(--font-500);
  font-weight: 500;
  color: #FFF;
  text-align: center;
  background: #868E9B;
  padding: 4px 20px;
}
.block-pickup-contents-list{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 20px 20px;
}
.block-pickup-contents:last-of-type .block-pickup-contents-list{
  padding-bottom: 0;
}
.block-pickup-contents-list li a{
  font-size: 13px;
  font-family: var(--font-500);
  font-weight: 500;
  display: block;
  border: 1px solid #000;
  border-radius: 25px;
  padding: 6px 17px;
  text-decoration: none;
}

/* ----トップページ予備テンプレート3---- */
.block-top-lineup{
  padding: 40px 0;
}
.block-top-lineup-contents-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  padding: 0 20px;
}
.block-top-lineup-contents{
  width: calc((100% - 20px) / 2);
}
.block-top-lineup-contents-default{
  display: none;
}
.block-top-lineup-contents-hover{
  border: 1px solid #D8EFFF;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  background: #D8EFFF;
  width: 100%;
}
.block-top-lineup-contents-hover .block-top-lineup-contents-img{
  background: #FFF;
}
.block-top-lineup-contents-hover .block-top-lineup-contents-img img{
  width: 100%;
  height: 105px;
  object-fit: cover;
}
.block-top-lineup-contents-desc{
  padding: 16px 16px 20px;
}
.block-top-lineup-contents-desc__title{
  font-size: 14px;
  font-family: var(--font-700);
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}
.block-top-lineup-contents-desc ul li a{
  font-size: 13px;
  line-height: 1.4;
  display: block;
  padding: 2px 0;
}
.block-top-lineup-contents-desc ul li:first-child a{
  font-size: 14px;
  font-family: var(--font-700);
  font-weight: bold;
  padding-bottom: 6px;
}

/* ----トップページ予備テンプレート4---- */
.block-top-article{
  background: #F1F9FF;
  padding: 30px 20px;
  overflow: hidden;
  position: relative;
}
.block-top-article .container{
  position: relative;
}
.block-top-article h2.block-top-headline::after{
  content: "";
  width: 0.8em;
  height: 2px;
  background: #F5F5F5;
  position: absolute;
  top: 22px;
  left: 0;
}
.block-top-article-text{
  text-align: center;
  margin: 0 0 40px;
}
.block-top-article-contants{
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
  border-radius: 4px;
  background: #FFF;
  position: relative;
}
.wrapper:not(:has(.pane-header.--login)) .block-top-article-main a,
.wrapper:not(:has(.pane-header.--login)) .block-list-2col a{
  pointer-events: none;
  display: block;
}
.wrapper:not(:has(.pane-header.--login)) .block-top-article-main a img,
.wrapper:not(:has(.pane-header.--login)) .block-list-2col a img{
  pointer-events: none;
}
.block-top-article h3.block-top-headline{
  font-family: var(--font01);
  font-weight: 400;
  font-size: 30px;
  color: #1F2123;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}
.block-top-article h3.block-top-headline span.small{
  font-size: 13px;
  letter-spacing: 0.06em;
  display: block;
}
.block-top-article-main{
  background: linear-gradient(-45deg,rgba(0,123,208,0.13),rgba(0,172,90,0.13));
  padding: 60px 20px 30px;
  position: relative;
  border-radius: 4px;
}
.block-top-article-main .block-pagecategory-page-list--page {
  margin-bottom: 0;
}
/*
.block-top-article-main .block-pagecategory-page-list--auto-new,.block-top-article-main .block-pagecategory-page-list--date{
  display: none;
}
*/
.block-top-article-main .block-pagecategory-page-list--page-caption {
  font-size: 14px;
  margin-bottom: 0;
}
.block-more-btn{
  font-size: 16px;
  font-family: var(--font-500);
  font-weight: 500;
  color: #FFF;
  text-align: center;
  display: block;
  background: var(--color01);
  border-radius: 40px;
  text-decoration: none;
  padding: 16px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.block-top-article-search{
  background: #FFF;
  padding: 26px 15px 40px;
  border-radius: 4px;
}
.block-top-article-search h3{
  text-align: center;
  margin: 0 0 16px;
}
.block-top-article-search ul{
  margin: 0 0 20px;
}
.block-list-2col{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.block-list-2col li{
  width: calc((100% - 10px) / 2);
}
.block-list-2col li a{
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  padding: 12px 10px;
}
.block-top-article-main__img{
  margin: 0 0 20px;
}
.block-top-article-main__img img{
  width: 100%;
  height: auto;
}
.block-top-article-main__desc .label{
  font-size: 13px;
  color: var(--color01);
  letter-spacing: 0;
  border: 1px solid var(--color01);
  display: inline-block;
  margin: 0 0 16px;
  padding: 2px 10px;
}
.block-top-article-bg span{
  position: absolute;
  mix-blend-mode: multiply;
}
.block-top-article-bg span.circle01{
  width: 40px;
  height: 40px;
  background: url(../../img/usr/top/circle01.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -7px;
  left: 40px;
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
.block-top-article-bg span.circle02{
  width: 53px;
  height: 55px;
  background: url(../../img/usr/top/circle02.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
.block-top-article-bg span.circle03{
  width: 42px;
  height: 65px;
  background: url(../../img/usr/top/circle03.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 115px;
  left: 0;
  animation: floating-y 4s ease-in-out infinite alternate-reverse;
}
.block-top-article-bg span.circle04{
  width: 35px;
  height: 35px;
  background: url(../../img/usr/top/circle04.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 93px;
  left: -10px;
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
.block-top-article-bg span.circle05{
  width: 44px;
  height: 43px;
  background: url(../../img/usr/top/circle05.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 210px;
  left: 0px;
}
.block-top-article-bg span.circle06{
  width: 29px;
  height: 29px;
  background: url(../../img/usr/top/circle06.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 205px;
  left: 55px;
}
.block-top-article-bg span.circle07{
  width: 46px;
  height: 55px;
  background: url(../../img/usr/top/circle07.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
}
.block-top-article-bg span.circle08{
  width: 26px;
  height: 40px;
  background: url(../../img/usr/top/circle08.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 46px;
  right: 0;
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
.block-top-article-bg span.circle09{
  width: 34px;
  height: 33px;
  background: url(../../img/usr/top/circle09.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 85px;
  right: 40px;
  animation: floating-y 1.6s ease-in-out infinite alternate-reverse;
}
.block-top-article-bg span.circle10{
  width: 25px;
  height: 59px;
  background: url(../../img/usr/top/circle10.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 160px;
  right: 0;
  animation: floating-y 3s ease-in-out infinite alternate-reverse;
}
.block-top-article-bg span.circle11{
  width: 40px;
  height: 36px;
  background: url(../../img/usr/top/circle11.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 205px;
  right: 95px;
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
.block-top-article-bg span.circle12{
  width: 46px;
  height: 55px;
  background: url(../../img/usr/top/circle12.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 215px;
  right: 35px;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

/* ----フッター---- */
.pane-footer {
  padding: 30px 20px 36px;
  background: #1F2123;
}
.pane-footer a {
  color: #FFF;
  text-decoration: none;
}
.block-footer{
  max-width: 1200px;
  margin: 0 auto;
}
.block-footernav__title{
  font-size: 16px;
  color: #FFF;
  margin: 0 0 16px;
}
.block-footernav-col{
  margin: 0 0 40px;
}
.block-footernav__list + .block-footernav__list{
  margin-top: 12px;
}
.block-footernav__list > * + *{
  margin: 12px 0 0;
}
.block-footernav__list a{
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .3s;
}
.block-footernav__list a:hover{
  text-decoration: underline;
}
.block-footernav__list a::before{
  content: "";
  width: 18px;
  height: 5px;
  background: url(../../img/usr/common/arrow_next_w.png) center center / contain no-repeat;
  display: block;
}
.block-footer-sns{
  margin: 0 0 40px;
}
.block-footer-sns__title{
  text-align: center;
  color: #FFF;
  margin: 0 0 10px;
}
ul.block-footer-sns__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
ul.block-footer-sns__list a{
  transition: opacity .3s;
}
ul.block-footer-sns__list a:hover{
  opacity: 0.7;
}
.block-footer-logo{
  text-align: center;
  margin: 0 0 14px;
}
.block-footer-contact{
  text-align: center;
  background: #FFF;
  border-radius: 4px;
  margin: 0 0 30px;
  padding: 20px 20px;
}
.block-footer-contact__title{
  font-size: 16px;
  font-family: var(--font-700);
  font-weight: bold;
  margin: 0 0 5px;
}
.block-footer-contact__tel{
  font-size: 26px;
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 1;
  margin: 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.block-footer-contact__time{
  font-size: 14px;
  margin: 0 0 12px;
}
.block-footer-contact__btn{
  padding: 0 10px;
}
.wrapper:not(:has(.--login)) .block-footer:not(.block-order-footer) .block-footer-contact__btn{
  display: none;
}
.page-login .wrapper:not(:has(.--login)) .block-order-footer .block-footer-contact__btn{
  display: none;
}
.block-footer-contact__btn a{
  font-size: 16px;
  font-family: var(--font-700);
  font-weight: bold;
  color: #FFF;
  letter-spacing: 0.02em;
  display: block;
  background: var(--color01);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  transition: opacity .3s;
}
.block-footer-contact__btn a:hover{
  opacity: 0.7;
}
.block-footer-contact__btn a::before{
  content: "";
  width: 20px;
  height: 13px;
  background: url(../../img/usr/common/ico_mail.png) center center / contain no-repeat;
  display: block;
}

/* ----ページトップに戻る---- */
.block-page-top {
  position: fixed;
  top: auto;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 2;
}
.block-page-top a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #868E9B;
}
.block-page-top a:after {
  content: "";
  display: block;
  width: 6px;
  height: 20px;
  background: url(../../img/usr/common/arrow_top_w.png) center center / contain no-repeat;
  margin-left: 2px;
}
/* ----PC/スマホ切り替えスイッチ---- */
.block-switcher {
  display: flex;
  width: 84px;
  margin: 0;
  padding: 3px;
  border-radius: 2px;
  background: rgba(34, 34, 34, 0.1);
}
.block-switcher .block-switcher-container {
  width: 38px;
  margin-right: 2px;
}
.block-switcher .block-switcher-container + .block-switcher-container {
  margin-right: 0;
}
.block-switcher .block-switcher-container .block-switcher--current {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4px 0;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  background: #fff;
}
.block-switcher .block-switcher-container .block-switcher--current::before {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 0 3px;
  background: url(../../img/usr/common/ico_sp.png) center center / 14px auto no-repeat;
  content: "";
}
.block-switcher .block-switcher-container .block-switcher--switch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4px 0;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  opacity: 0.3;
}
.block-switcher .block-switcher-container .block-switcher--switch::before {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 0 3px;
  background: url(../../img/usr/common/ico_pc.png) center center / 24px auto no-repeat;
  content: "";
}
.block-switcher .block-switcher-container .block-icon-image-small {
  display: none;
}
.block-switcher .block-switcher-container .block-icon-image-switcher {
  display: none;
}

/* ----Copyright---- */
.block-copyright {
  font-size: 11px;
  font-weight: 300;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.block-copyright span{
  font-size: 18px;
}

/* ----カテゴリ画面---- */
.block-category-column{
  border-top: 1px solid #E9E9E9;
  padding: 40px 20px;
  display: none;
}
.block-category-column.is-show{
  display: block;
}
.block-category-column h3{
  font-size: 20px;
  text-align: center;
  margin: 0 0 12px;
}
.block-category-column-list{
  display: flex;
  flex-wrap: wrap;
  gap: 50px 18px;
  margin: 0 0 40px;
}
.block-category-column-list__item{
  width: calc((100% - 18px) / 2);
}
.block-category-column-list__item-img{
  margin: 0 0 20px;
}
.block-category-column-list__item-img img{
  border-radius: 4px;
}
.block-category-column-list__item-desc{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.57;
}
.block-category-column-frame{
  margin: 0 0 30px;
}
.block-category-column-frame .block-pagecategory-page-list--page {
  margin-bottom: 30px;
}
.block-category-column-frame .block-pagecategory-page-list--page:nth-child(n+4) {
  display: none;
}
.block-category-column-more{
  font-size: 16px;
  text-align: center;
  display: block;
  width: 270px;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  text-decoration: none;
  margin: 0 auto;
  padding: 14px;
}
.block-category-column-more:hover{
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.block-category-freespace3{
  margin: 0 0 20px;
  padding: 0 20px;
}

/* ----ブランド画面---- */
.page-brandlist .block-topic-path {
  margin-top: 0;
}
.block-brand-list--item-img img {
  width: 100%;
  height: auto;
}
.block-brand-list--item-name {
  padding: 25px 20px 12px;
  font-size: 16px;
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}
.block-brand-list--item-comment {
  padding: 0 20px 60px;
}
.block-brand-detail--image img {
  width: 100%;
  height: auto;
}
/* ----商品一覧---- */
.page-category .pager-count::after,.page-genre .pager-count::after,.page-event .pager-count::after {
  content: "の商品";
  display: inline-block;
}

.block-filter--header {
  position: fixed;
  right: 10px;
  bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
  z-index: 99980;
  background: #222;
}

.block-filter--header.block-filter--open {
  display: none;
}

.block-filter--header .block-filter--header-label {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: var(--font-700);
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: none;
}

.block-filter--modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.block-filter--modal .block-filter--frame {
  position: absolute;
  top: 20px;
  left: 10px;
  width: calc(100% - 20px);
  max-height: calc(100% - 40px);
  border-radius: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
}

.block-filter--modal .block-filter--frame .block-filter--frame-header {
  margin: 0;
  padding: 18px 10px;
  border: 0;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  color: #222;
  background: #dedede;
}

.block-filter--modal .block-filter--frame .block-filter--frame-close {
  position: absolute;
  top: 11px;
  right: 10px;
  font-size: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  background: #d53100;
}

.block-filter--modal .block-filter--frame .block-filter--frame-close::before {
  position: absolute;
  top: 9px;
  left: 15px;
  width: 1px;
  height: 16px;
  transform: rotate(45deg);
  background: #fff;
  content: "";
}

.block-filter--modal .block-filter--frame .block-filter--frame-close::after {
  position: absolute;
  top: 9px;
  left: 15px;
  width: 1px;
  height: 16px;
  transform: rotate(-45deg);
  background: #fff;
  content: "";
}

.block-filter--modal .block-filter--frame .block-filter--list-item {
  display: block;
  border-bottom: #dedede 1px solid;
}

.block-filter--modal .block-filter--frame .block-filter--select-label {
  height: 52px;
  padding-left: 20px;
}

.block-filter--modal .block-filter--frame .block-filter--expand-icon {
  width: 50px;
  height: 52px;
  padding: 0 18px;
}

.block-filter--modal .block-filter--frame .block-filter--expand-icon .block-icon-image-double-small {
  position: relative;
  width: 14px;
  height: 14px;
  background: none;
}

.block-filter--modal .block-filter--frame .block-filter--expand-icon .block-icon-image-double-small::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #222;
  content: "";
}

.block-filter--modal .block-filter--frame .block-filter--expand-icon .block-icon-image-double-small::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  transform: rotate(90deg);
  background: #222;
  content: "";
}

.block-filter--modal .block-filter--frame .block-filter--expand-icon .block-icon-image-double-small.block-icon-image--minus::after {
  display: none;
}

.block-filter--modal .block-filter--frame .block-filter--element {
  border-bottom: 0;
}

.block-filter--modal .block-filter--frame .block-filter--filter-options {
  border-top: #dedede 1px solid;
}

.block-filter--modal .block-filter--frame .block-filter--option-items {
  height: 60px;
  padding-left: 20px;
  background: #f5f5f5;
}

.block-filter--modal .block-filter--frame .block-filter--treelist-layer {
  border-top: #dedede 1px solid;
}

.block-filter--tree-2,
.block-filter--tree-3,
.block-filter--tree-4 {
  border-top: #dedede 1px solid;
  background: #f5f5f5;
}

.block-filter--modal .block-filter--frame .block-filter--treeitem {
  border-top: #dedede 1px solid;
}

.block-filter--modal .block-filter--frame .block-filter--treeitem:first-of-type {
  border-top: 0;
}

.block-filter--modal .block-filter--frame .block-filter--treeitem-name {
  height: 60px;
  text-decoration: none;
  background: #f5f5f5;
}

.block-filter--modal .block-filter--frame .block-filter--treeitem .block-filter--treeitem-dir {
  width: 50px;
  height: 52px;
  padding: 0 18px;
  background: #f5f5f5;
}

.block-filter--modal .block-filter--frame .block-filter--treeitem .block-filter--treeitem-dir .block-icon-image-double-small {
  position: relative;
  width: 14px;
  height: 14px;
  background: none;
}

.block-filter--modal .block-filter--frame .block-filter--treeitem .block-filter--treeitem-dir .block-icon-image-double-small::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 1px;
  background: #1F2123;
  content: "";
  transform: translateY(-50%);
}

.block-filter--modal .block-filter--frame .block-filter--treeitem .block-filter--treeitem-dir .block-icon-image-double-small::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 1px;
  transform: translateY(-50%) rotate(90deg);
  background: #1F2123;
  content: "";
}

.block-filter--modal .block-filter--frame .block-filter--treeitem .block-filter--treeitem-dir .block-icon-image-double-small.block-icon-image--minus::after {
  display: none;
}

.block-filter--modal .block-filter--frame-bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.block-goods-list--sort-order-items {
  display: flex;
  align-items: center;
  padding: 0 20px 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #dedede;
}

.block-goods-list--sort-order-items .block-sort--header {
  display: block;
  width: 60px;
  background: none;
}

.block-goods-list--sort-order-items .block-sort--header h2 {
  width: 60px;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: normal;
  color: #444;
  background: none;
}

.block-goods-list--sort-order-items .block-sort--header .block-sort--expand-icon {
  display: none;
}

.block-goods-list--sort-order-items .block-sort--element {
  display: block;
  width: calc(100% - 60px);
}

.block-goods-list--sort-order-items .block-sort--element .block-sort--select {
  display: block;
  width: 100%;
  height: auto;
  padding-left: 12px;
}

.block-goods-list--sort-order-items .block-sort--element .block-sort--select select {
  width: 100%;
  padding: 4px;
}

.block-goods-list--display-style-items {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  margin: 0 0 8px;
}

.block-goods-list--display-style-items .block-style--header {
  display: block;
  width: 60px;
  background: none;
}

.block-goods-list--display-style-items .block-style--header h2 {
  width: 60px;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: normal;
  color: #444;
  background: none;
}

.block-goods-list--display-style-items .block-style--header .block-style--expand-icon {
  display: none;
}

.block-goods-list--display-style-items .block-style--element.is-show {
  display: block;
}

.block-goods-list--display-style-items .block-style--element .block-style--select {
  display: block;
  width: 100%;
  height: auto;
}

.block-goods-list--display-style-items .block-style--element .block-style--select select {
  width: 100%;
  padding: 4px;
}

.pane-main .block-goods-list--params {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 30px;
  padding: 20px 20px 0;
}

.block-filter {
  visibility: hidden;
  height: 48px;
  margin: 20px 0;
}

.block-goods-list--sort-order-items {
  display: none;
}

.block-filter{
  display: none;
}

.block-goods-list--params .block-filter {
  visibility: visible;
  margin: 0 auto 0 0;
  height: auto;
  display: block;
}

.block-goods-list--params .block-goods-list--display-style-items,
.block-goods-list--params .block-goods-list--sort-order-items {
  display: flex;
}

.block-goods-list--params .block-filter .block-filter--header,
.block-goods-list--params .block-filter .block-filter--header.block-filter--header.block-filter--open {
  position: static;
  display: flex;
  width: 155px;
  height: 44px;
  margin: 0 auto 0 0;
  padding: 10px 4px;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  font-family: var(--font-500);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  background: #000;
  border-radius: 30px;
}

.block-goods-list--params .block-filter .block-filter--header::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  vertical-align: top;
  background: url(../../img/usr/common/ico_responsive_filter.png) center center / 100% auto no-repeat;
  content: "";
}

.block-goods-list--params .block-filter .block-filter--header h2 {
  border: 0;
  font-size: 16px;
  font-family: var(--font-500);
  font-weight: 500;
  line-height: 1.5;
}

.block-goods-list--params .block-filter--modal .block-filter--frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  color: #000;
  padding: 58px 0 68px;
  border-radius: 0;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  background: #FFF;
  -ms-overflow-style: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame::-webkit-scrollbar{
  display: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.block-goods-list--params .block-filter--modal .block-filter--frame::-webkit-scrollbar-track {
  background-color: transparent;
}

.block-goods-list--params .block-filter--modal .block-filter--frame::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--frame-header {
  display: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--frame-close {
  font-size: 10px;
  font-family: var(--font-700);
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  padding-top: 24px;
  width: 38px;
  height: 42px;
  text-align: center;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--frame-close::before,
.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--frame-close::after {
  position: absolute;
  top: 0;
  left: 18px;
  width: 1px;
  height: 24px;
  background: #000;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item {
  border: 0;
  margin: 0 0 30px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--select-label {
  height: 52px;
  width: 100%;
  font-size: 20px;
  font-family: var(--font-700);
  font-weight: bold;
  border-bottom: 1px solid #1F2123;
  padding: 0 0 10px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item #div_filter15 .block-filter--select-label::before {
  content: "";
  width: 36px;
  height: 36px;
  background: url(../../img/usr/common/ico_purpose.png) center center / contain no-repeat;
  display: inline-block;
  position: relative;
  top: 10px;
  margin-right: 10px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--expand-icon {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 0;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--expand-icon > div {
  position: static;
  background: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--expand-icon > div.block-icon-image--plus::before {
  position: absolute;
  top: 50%;
  left: inherit;
  right: 5px;
  width: 14px;
  height: 1px;
  background: #1F2123;
  content: "";
  transform: translateY(-50%);
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--expand-icon > div.block-icon-image--plus::after {
  position: absolute;
  top: 50%;
  left: inherit;
  right: 5px;
  width: 14px;
  height: 1px;
  background: #1F2123;
  transform: translateY(-50%) rotate(90deg);
  background: #1F2123;
  content: "";
  display: block;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--expand-icon > div.block-icon-image--minus::before {
  position: absolute;
  top: 50%;
  left: inherit;
  right: 5px;
  width: 14px;
  height: 1px;
  background: #1F2123;
  content: "";
  transform: translateY(-50%);
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--expand-icon > div::after {
  display: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--filter-options {
  border: 0;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--option-items {
  padding-left: 16px;
  background: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--option-items label.checkbox {
  position: relative;
  display: block;
  padding: 8px 0 8px 10px;
  font-size: 15px;
  line-height: 1.4;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--option-items.block-filter--image img {
  vertical-align: middle;
  margin-right: 8px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--list-item .block-filter--option-items.block-filter--image span {
  display: inline-block;
  vertical-align: middle;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--select {
  padding-left: 16px;
  height: 60px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--select select {
  min-width: 0;
  max-width: 240px;
  width: 100%;
  height: 40px;
  border: 1px solid #808080;
  border-radius: 0;
  font-size: 15px;
  line-height: 38px;
  color: #fff;
  background: #000;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle {
  padding: 0 16px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treelist-layer {
  border: 0;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-2,
.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-3,
.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-4 {
  margin: 0;
  border: 0;
  font-size: 14px;
  background: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem {
  padding: 0;
  border: 0;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-1 > .block-filter--treeitem {
  border-bottom: 1px solid #C9C9C9;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-2 > .block-filter--treeitem {
  padding-left: 20px;
  border-top: 1px solid #C9C9C9;
  background: #F5F5F5;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-3 > .block-filter--treeitem {
  padding-left: 20px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-4 > .block-filter--treeitem {
  padding-left: 20px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-name {
  position: relative;
  padding: 0 0 0 40px;
  color: #1F2123;
  background: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-dir {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  background: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-dir > div {
  width: 56px;
  height: 56px;
  padding-top: 0;
}


.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-2 > .block-filter--treeitem .block-filter--treeitem-name {
  height: 56px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-2 > .block-filter--treeitem .block-filter--treeitem-dir,
.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-3 > .block-filter--treeitem .block-filter--treeitem-dir,
.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle ul.block-filter--tree-4 > .block-filter--treeitem .block-filter--treeitem-dir {
  height: 38px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-name span,
.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-name span.block-filter--treeitem-selected {
  color: #1F2123;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-name span::before {
  position: absolute;
  top: calc(50% - 10px);
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #C9C9C9;
  background: #FFF;
  z-index: 1;
  content: "";
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-name span::after {
  position: absolute;
  top: calc(50% - 4px);
  left: 15px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #C9C9C9;
  border-bottom: 2px solid #C9C9C9;
  transform: rotate(-45deg);
  z-index: 2;
  content: "";
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-name span.block-filter--treeitem-selected::before {
  background: #1F2123;
  border-color: #1F2123;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .block-filter--treelist-filterstyle .block-filter--treeitem-name span.block-filter--treeitem-selected::after {
  border-color: #FFF;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .filter-button {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 8px;
  width: 83%;
  background-color: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(39px);
  backdrop-filter: blur(39px);
  padding: 12px 16px;
  z-index: 99;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .filter-button .filter-button--clear {
  display: block;
  width: 86px;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .filter-button .filter-button--clear .block-filter--clear-btn {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #fff;
  padding: 11px 5px;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .filter-button .filter-buttonr--search {
  width: calc(100% - 94px);
  padding: 0;
}

.block-goods-list--params .block-filter--modal .block-filter--frame .filter-button .filter-buttonr--search .block-filter--search-btn {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  padding: 12px 6px;
  font-size: 14px;
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 20px;
  color: #000;
}

.block-goods-list--params .block-filter--modal .block-filter--frame-bg {
  background: rgba(0, 0, 0, 0.85);
  display: none;
}

.block-goods-list--params .block-filter--modal .block-filter--frame-bg::before {
  position: absolute;
  top: 20px;
  right: calc(8.5% - 1px);
  width: 2px;
  height: 26px;
  transform: rotate(45deg);
  background: #fff;
  content: "";
}

.block-goods-list--params .block-filter--modal .block-filter--frame-bg::after {
  position: absolute;
  top: 20px;
  right: calc(8.5% - 1px);
  width: 2px;
  height: 26px;
  transform: rotate(-45deg);
  background: #fff;
  content: "";
}

.pane-main .block-goods-list--params .block-goods-list--display-style-items:has(.is-show),
.pane-main .block-goods-list--params .block-goods-list--sort-order-items:has(.is-show) {
  border-radius: 30px 30px 0 0;
}

.block-goods-list--display-style-items,.block-goods-list--sort-order-items{
  display: none;
}

.pane-main .block-goods-list--params .block-goods-list--display-style-items,
.pane-main .block-goods-list--params .block-goods-list--sort-order-items {
  width: 125px;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  min-width: 0;
  max-width: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  border-radius: 30px;
}

.pane-main .block-goods-list--params .block-goods-list--sort-order-items{
  display: none;
}

.block-goods-list--params .block-goods-list--display-style-items .block-style--header {
  width: 125px;
  cursor: pointer;
}

.block-goods-list--params .block-goods-list--display-style-items .block-style--header h2 {
  width: 125px;
  height: 44px;
  padding: 13px 4px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-goods-list--params .block-goods-list--display-style-items .block-style--header h2::after {
  display: inline-block;
  width: 7px;
  height: 6px;
  margin-left: 16px;
  vertical-align: top;
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #000;
}

.block-goods-list--params .block-goods-list--display-style-items:has(.is-show) .block-style--header h2::after {
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.block-style--element-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0.0;
  cursor: pointer;
  z-index: 9997;
}

.block-style--element-bg.is-show {
  visibility: visible;
  opacity: 1.0;
}

.block-style--element {
  width: 100%;
  position: absolute;
  z-index: 9998;
  visibility: hidden;
  padding: 14px 9px 24px;
  border-radius: 0 0 30px 30px;
  transition: all 0.3s;
  opacity: 0.0;
  background: #E9E9E9;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.block-style--element.is-show {
  visibility: visible;
  opacity: 1.0;
}

.block-style--element select {
  display: none;
}

.block-style--element ul.block-style--list {
  display: block;
}

.block-style--element ul.block-style--list > * + * {
  margin-top: 10px;
}

.block-style--element ul.block-style--list a,
.block-style--element ul.block-style--list span {
  position: relative;
  display: block;
  padding: 3px 0 3px 26px;
  font-size: 13px;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1.5;
}

.block-style--element ul.block-style--list span::before {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 9px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-35deg) skewY(-15deg);
  content: "";
  z-index: 1;
}

.block-style--element ul.block-style--list span::after {
  content: "";
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 3px;
  left: 0;
}

.block-style--element ul.block-style--list a::before {
  content: "";
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  top: 3px;
  left: 0;
}

.block-goods-list--params .block-goods-list--sort-order-items .block-sort--header {
  width: 90px;
  cursor: pointer;
}

.block-goods-list--params .block-goods-list--sort-order-items .block-sort--header h2 {
  width: 90px;
  padding: 14px 4px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.block-goods-list--params .block-goods-list--sort-order-items .block-sort--header h2::after {
  display: inline-block;
  width: 13px;
  height: 18px;
  margin-left: 10px;
  vertical-align: top;
  background: url(../../img/usr/common/ico_responsive_arrow.png) center center / 100% auto no-repeat;
  content: "";
}

.block-sort--element-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0.0;
  cursor: pointer;
  z-index: 9997;
}

.block-sort--element-bg.is-show {
  visibility: visible;
  opacity: 1.0;
}

.block-sort--element {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  min-width: 282px;
  padding: 20px 12px;
  border-radius: 7px;
  transition: all 0.3s;
  opacity: 0.0;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9998;
}

.block-sort--element.is-show {
  visibility: visible;
  opacity: 1.0;
}

.block-sort--element select {
  display: none;
}

.block-sort--element ul.block-sort--list {
  display: block;
}

.block-sort--element ul.block-sort--list a,
.block-sort--element ul.block-sort--list span {
  position: relative;
  display: block;
  padding: 3px 0 3px 24px;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
  color: #fff;
}

.block-sort--element ul.block-sort--list span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-35deg) skewY(-15deg);
  content: "";
}
.block-top-ranking-tab{
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  margin: 0 -20px 18px;
}
.block-top-ranking-tab::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #1F2123;
  position: absolute;
  left: 0;
  bottom: 0;
}
.block-top-ranking-tab li {
  font-size: 15px;
  font-family: var(--font-500);
  font-weight: 500;
  min-width: 160px;
  height: 50px;
  border: 1px solid #1F2123;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #FFF;
}
.block-top-ranking-tab li.is-active {
  border-bottom: 1px solid #F5F5F5;
  background: #F5F5F5;
}
.block-top-ranking-tab li::after {
  content: "";
  width: 6px;
  height: 5px;
  background: #000;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
}
.block-top-ranking-tab li.is-active::after {
  display: none;
}
.block-ranking-article{
  display: none;
}
.block-ranking-article.is-active{
  display: block;
}
.block-ranking-article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 18px;
  padding: 18px 0 0;
  counter-reset: number 0;
}
.block-ranking-article-list__item {
  font-size: 14px;
  display: block;
  width: calc((100% - 18px) / 2);
  background: #FFF;
  border-radius: 4px;
}
.block-ranking-article-list__item a{
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  position: relative;
  padding: 40px 14px 30px;
  display: block;
}
.wrapper:not(:has(.pane-header.--login)) .block-ranking-article-list__item a{
  pointer-events: none;
}
.wrapper:not(:has(.pane-header.--login)) .block-ranking-article-list__item a img{
  pointer-events: none;
}
.block-ranking-article-list__item a::after{
  counter-increment: number 1;
  content:counter(number);
  top: -22px;
  left: 0;
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #1F2123;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.block-ranking-article-list__item:nth-child(1) a::after{
  background: #C4AA67;
}
.block-ranking-article-list__item:nth-child(2) a::after{
  background: #A1A1A0;
}
.block-ranking-article-list__item:nth-child(3) a::after{
  background: #9E7C62;
}
.block-ranking-article-list__item:nth-child(n+3) {
  width: 100%;
}
.block-ranking-article-list__item:nth-child(n+3) a{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 14px;
}
.block-ranking-article-list__item-img{
  margin: 0 0 24px;
  position: relative;
}
.block-ranking-article-list__item:nth-child(n+3) .block-ranking-article-list__item-img{
  width: 35%;
  flex-shrink: 0;
  margin: 0;
}
.block-ranking-article-list__item-img img{
  border-radius: 4px;
}
.block-ranking-article-list__item-desc{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.block-ranking-article-list__item:nth-child(n+3) .block-ranking-article-list__item-desc{
  width: calc(65% - 20px);
}
.block-ranking-article-list__new{
  position: absolute;
  top: 0;
  right: 0;
}
.block-ranking-article-list__new img{
  width: 72px;
  height: auto;
}
.block-ranking-r--items .block-ranking-r--rank {
  top: -22px;
  left: 0;
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #1F2123;
}
.block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-1 {
  background: #C4AA67;
}
.block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-2 {
  background: #A1A1A0;
}
.block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-3 {
  background: #9E7C62;
}
.block-top-event .block-top-event--goods {
  position: relative;
}
.block-top-event .block-ranking-r--items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 18px;
  padding: 18px 0 0;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item {
  display: block;
  width: calc((100% - 18px) / 2);
  padding: 0;
  background: #FFF;
  border-radius: 4px;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item:nth-child(n+3) {
  width: 100%;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item:nth-child(n+6) {
  display: none;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item:nth-child(n+3) > a{
  display: flex;
  align-items: center;
}
.block-top-event .block-ranking-r--items .block-ranking-r--goods-image {
  margin: 0;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item:nth-child(n+3) .block-ranking-r--goods-image {
  width: 31%;
  min-width: 120px;
  flex-shrink: 0;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item:nth-child(n+3) .block-ranking-r--goods-image figure{
  width: 100%;
  min-width: 120px;
  min-height: 120px;
}
.block-top-event .block-ranking-r--items .block-ranking-r--goods-image figure img {
  width: 100%;
}
.block-top-event .block-ranking-r--items .block-ranking-r--description{
  padding: 10px 10px 18px;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item:nth-child(n+3) .block-ranking-r--description{
  padding: 10px 20px 20px;
}
.block-top-event .block-ranking-r--items .block-ranking-r--item:nth-child(n+3) .block-ranking-r--description:has(.revico-star[data-review-count="0"]){
  padding-top: 20px;
}
.block-top-event .block-ranking-r--items .revico-star-list-zone:has(.revico-star[data-review-count="0"]){
  height: 10px !important;
}
.block-top-event .block-ranking-r--items .block-ranking-r--goods-name {
  font-weight: normal;
  line-height: 1.4;
}
.block-top-event .block-ranking-r--items .block-ranking-r--comment,.block-top-event .block-ranking-r--items .block-goods-favorite,.block-top-event .block-ranking-r--items .block-icon,.block-top-event .block-ranking-r--items .block-ranking-r--price-infos{
  display: none;
}
.block-recent-item{
  background: #F5F5F5;
}
.block-recent-item--body{
  background: #F5F5F5;
  padding: 40px 0 70px;
}
.block-recent-item--header {
  font-size: 20px;
  font-family: var(--font-500);
  font-weight: 500;
  text-align: center;
  margin: 0 0 16px;
  padding: 0;
}
.block-thumbnail-h{
  padding: 0 0 0 20px;
  position: relative;
}
.block-thumbnail-h .block-thumbnail-h--item {
  height: auto;
  padding: 0;
  background: #FFF;
  border-radius: 4px;
  overflow: hidden;
}
.block-thumbnail-h--items .block-thumbnail-h--item a {
  height: 100%;
  display: block;
  background: #FFF;
}
.block-thumbnail-h .block-thumbnail-h--item .block-goods-favorite{
  display: none;
}
.block-thumbnail-h .block-thumbnail-h--goods-name{
  font-size: 13px;
  line-height: 1.4;
  margin: 12px 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.block-goods-detail-j--item {
  display: flex;
  padding: 20px 10px;
  border: 0;
}

.block-goods-detail-j--item a {
  display: block;
  width: 140px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description {
  width: calc(100% - 140px);
  padding-left: 15px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--goods-name {
  margin: 0 0 4px;
  font-size: 16px;
  font-family: var(--font-500);
  font-weight: 500;
  line-height: 1.5;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--comment {
  margin: 0 0 8px;
  font-size: 11px;
  color: #808080;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos {
  margin: 0 0 4px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos .block-goods-detail-j--scomment {
  font-size: 12px;
  font-family: var(--font-700);
  font-weight: bold;
  color: #d53115;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos .block-goods-detail-j--scomment + .block-goods-detail-j--price-items .block-goods-detail-j--price {
  color: #d53115;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos .block-goods-detail-j--scomment + .block-goods-detail-j--price-items .block-goods-detail-j--default-price {
  font-size: 11px;
  font-weight: normal;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price {
  margin: 0;
  font-size: 13px;
  font-family: var(--font-500);
  font-weight: 500;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--stock {
  margin: 0 0 4px;
  display: flex;
  font-size: 13px;
  font-family: var(--font-500);
  font-weight: 500;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--stock dt {
  font-family: var(--font-500);
  font-weight: 500;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--stock dt::after {
  content: "：";
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--comment1 {
  margin: 0 0 16px;
  font-size: 11px;
  color: #808080;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--cart-btn .block-list-add-cart-btn {
  width: 100%;
  font-size: 13px;
  padding: 12px;
  border-radius: 22px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--custom-order .block-list-custom-order-btn {
  width: 100%;
  font-size: 13px;
  padding: 12px;
  border-radius: 22px;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--scomment {
  font-size: 12px;
  font-family: var(--font-700);
  font-weight: bold;
  color: #d53115;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--price-items .price,
.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--price-items .net-price {
  font-size: 13px;
  font-family: var(--font-500);
  font-weight: 500;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--price-items .default-price {
  font-size: 11px;
  font-weight: normal;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--scomment + .block-pickup-list-p--price-items .price {
  color: #d53115;
}

/* ----パンくずリスト---- */


/* ----マイページ---- */

.block-favorite .block-accessory-list--name {
  padding: 16px 20px;
  background: none;
}

.block-store-coupon-list--table .block-store-coupon-list--bonus {
  font-size: 16px;
  font-family: var(--font-700);
  font-weight: bold;
}

.block-login--member-header,
.block-login--first-time-header {
  margin-bottom: 8px;
}

/* ----クイックオーダー---- */

.block-quick-order--price-pop {
  font-size: 12px;
  font-family: var(--font-700);
  font-weight: bold;
  color: #d53115;
}

.block-quick-order--price {
  font-family: var(--font-500);
  font-weight: 500;
  color: #c30;
}

.block-quick-order--price-price {
  color: #c30;
}

.block-quick-order--default-price {
  font-weight: normal;
}

.block-quick-order--subtotal-cell {
  color: #111;
}

/* ----購入フロー---- */
.block-cart-recent-item{
  background: #F5F5F5;
  margin: 40px 0 0;
  padding: 40px 0;
}

.block-cart-recent-item--header {
  font-size: 20px;
  font-family: var(--font-500);
  font-weight: 500;
  text-align: center;
  margin: 0 0 16px;
  padding: 0;
}

.page-cart .block-search-box--form {
  display: none;
}

.block-cart--procedure-container {
  top: 0;
  transition: top 0.2s;
}

.block-cart--procedure-container.block-cart--procedure-container__fixed {
  top: 64px;
}

.block-cart--procedure-container.block-cart--procedure-container__fixed .block-cart--order-btn-clear {
  display: none;
}

.block-order-method h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  border: 0;
}

.block-order-estimate h2 {
  margin-bottom: 8px;
  border: 0;
}

.block-order-estimate--method h3 {
  border-bottom: 0;
}

.block-order-estimate--date-spec h3,
.block-order-estimate--time-spec h3,
.block-order-estimate--discount-info .block-order-estimate--point h3,
.block-order-estimate--discount-info .block-order-estimate--promotion-code h3,
.block-order-estimate--discount-info .block-order-estimate--promotion h3,
.block-order-estimate--discount-info .block-order-estimate--coupon h3,
.block-order-estimate--sales-append .block-order-estimate--confirmation-title h3 {
  border-bottom: 0;
  font-size: 16px;
}

.block-order-estimate--dest-address-item-buttons__selected {
  background: #ffebe8;
}

.block-order-gift-noshi h3 {
  margin-bottom: 8px;
}

.block-order-complete--message {
  margin: 0 0 30px;
}

.block-order-complete--message p {
  padding: 0;
  font-size: 16px;
}

.block-order-complete--orderid {
  width: auto;
  margin: 0 auto 20px;
  border: 0;
}

.block-order-complete table.block-order-complete--orderid th {
  padding: 0;
  border: 0;
  font-size: clamp(1rem, 0.148rem + 3.64vw, 1.125rem);
  font-family: var(--font-500);
  font-weight: 500;
  text-align: right;
  background: none;
}

.block-order-complete--orderid td {
  border: 0;
  padding: 0;
  font-size: clamp(1rem, 0.148rem + 3.64vw, 1.125rem);
  font-family: var(--font-500);
  font-weight: 500;
  text-align: left;
  background: none;
}

.block-order-complete--orderid td a {
  font-size: clamp(1rem, 0.148rem + 3.64vw, 1.125rem);
  font-family: var(--font-500);
  font-weight: 500;
  text-decoration: none;
}

.block-order-complete--orderid td a:hover {
  text-decoration: underline;
}

.block-regular-goods-add--header,
.block-regular-goods-change--header {
  margin: -10px -10px 0;
}

.block-goodschange-list {
  margin: 10px;
}

.block-goodsadd-list--customer-name,
.block-goodschange-list--customer-name {
  margin: 0 0 10px;
  font-family: var(--font-700);
  font-weight: bold;
}

.block-regular-purcharse-list--info-withdrawal {
  display: block;
  width: auto;
}

.block-order-regular-add-confirm h2 {
  margin-bottom: 8px;
  border: 0;
}

.block-order-regular-add-complete--wrapper {
  padding: 0 10px;
}

.block-order-regular-add-complete--message {
  margin: 0 0 12px;
}

.block-order-regular-add-complete--message p {
  padding: 0;
  font-size: 13px;
}

.block-order-regular-add-complete--regular-sales {
  margin: 0 0 20px;
  border: 0;
}

.block-order-regular-add-complete table th {
  display: block;
  width: 100%;
  padding: 2px 0;
  border: 0;
  text-align: center;
  font-size: 11px;
  color: #808080;
  background: none;
}

.block-order-regular-add-complete table td {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  font-size: 12px;
  background: none;
}

.block-order-regular-add-complete table td a {
  font-size: 12px;
}

/* ----ページ機能---- */
.page-pagecategory:has(.pane-header:not(.--login)) .pane-main  a{
  pointer-events: none;
}

.page-pagecategory:has(.pane-header:not(.--login)) .pane-main  a img{
  pointer-events: none;
}

.page-pagecategory:has(.pane-header:not(.--login)) .pane-main .block-pagecategory-freespace--bottom a{
  pointer-events: auto;
}

.page-pagecategory:has(.pane-header.--login) .block-pagecategory-login{
  display: none;
}

.page-pagecategory:has(.pane-header:not(.--login)) .block-pagecategory-login a{
  pointer-events: auto;
}

.page-pagecategory .pane-contents .container{
  max-width: 1240px;
  margin: 0 auto;
}

.page-pagecategory .block-topic-path-top {
  padding-left: 20px;
}

.block-page-block--contents-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.block-page-block--contents-body-text-2column {
  width: 100%;
  margin: 0 0 40px;
}

.block-page-block--contents-body-text-2column:last-child {
  margin-bottom: 0;
}

.block-page-block--contents-img {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.block-page-block--contents-body-img-2column {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}

.block-page-block--contents-body-img-2column:last-child {
  margin-right: 0;
}

.block-pagecategory-page-list {
  padding: 0 20px;
}

.block-pagecategory-freespace--top,.block-pagecategory-freespace--bottom{
  padding: 0 20px;
}

.page-pagecategory .pane-main{
  padding-bottom: 80px;
}

.block-pagecategory-page-list--date{
  font-size: 14px;
  color: #707070;
  text-align: left;
}

.block-pagecategory-page-list--auto-new{
  position: absolute;
  top: 0;
  right: 0;
}

.block-pagecategory-page-list--auto-new img{
  width: 72px;
  height: auto;
}

.block-pagecategory-page-list--page-caption{
  font-size: 16px;
  line-height: 1.62;
  text-align: left;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.block-pagecategory-slider{
  margin: 0 0 40px;
  padding: 0 20px;
  position: relative;
  height: auto;
  aspect-ratio: 25 / 14;
}

.block-pagecategory-slider:has(.swiper-initialized){
  aspect-ratio: auto;
}

.block-pagecategory-slider-img {
  margin: 0 0 20px;
}

.block-pagecategory-slider-img img{
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.block-pagecategory-slider .block-pagecategory-page-list--page{
  margin-bottom: 0;
}

.block-pagecategory-slider .block-pagecategory-page-list--page-caption {
  font-size: 14px;
  -webkit-line-clamp: 4;
}

.block-pagecategory-slider .block-pagecategory-page-list--date{
  display: none;
}

.block-pagecategory-slider .swiper-pagination {
  position: static;
  justify-content: center;
  margin: 0 0 20px;
}

.block-pagecategory-slider .swiper-button-next, .block-pagecategory-slider .swiper-button-prev {
  top: min(26vw,330px);
}

.block-pagecategory-search{
  background: linear-gradient(-45deg,rgba(0,123,208,0.1),rgba(0,172,90,0.1));
  margin: 0 0 60px;
  padding: 24px 15px 40px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,0,0,0.12);
}

.block-pagecategory-search h2{
  text-align: center;
  margin: 0 0 16px;
}

.block-pagecategory-search .block-list-2col li a{
  font-size: 14px;
  background: #FFF;
}

.block-pagecategory-page-list-header{
  text-align: center;
  margin: 0 0 16px;
}

.block-pagecategory-page-list--page-caption a{
  text-decoration: none;
}

.block-page-column-bnr{
  border-top: 1px solid #E4E4E4;
  padding: 40px 0 0;
  display: flex;
  gap: 10px;
}

.block-page-column-bnr.--col3 li {
  width: calc((100% - 10px) / 2);
}

.block-page-column-bnr li:nth-child(n+3) {
  display: none;
}

.page-page .pane-contents .container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ----商品詳細画面---- */

.block-goods-detail {
  margin: 0 20px;
  padding: 0;
}

.page-goods .lb-data .lb-caption {
  display: none !important;
}

ul.notes{
  font-size: 12px;
  font-weight: 400;
}

.block-goods-tab{
  position: relative;
  margin: 0 0 36px;
}

.block-goods-detail .block-goods-tab{
  position: relative;
  margin: 0 -20px 36px;
}

.block-goods-tab::before{
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #1F2123;
}

.block-goods-tab-list{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 20px;
}

.block-goods-tab-list li{
  font-size: 15px;
  font-family: var(--font-500);
  font-weight: 500;
  text-align: center;
  min-width: 160px;
  flex: 0 0 max-content;
  width: max-content;
  border: 1px solid #1F2123;
  background: #F5F5F5;
  padding: 12px;
  position: relative;
}

.block-goods-tab-list li:not(.is-active)::after{
  content: "";
  width: 6px;
  height: 5px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #1F2123;
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
}

.block-goods-tab-list li.is-active{
  background: #FFF;
  border-bottom-color: #FFF;
}

.block-goods-tab-contents{
  margin: 0 0 40px;
  padding: 0 20px;
}

.block-goods-detail .block-goods-tab-contents{
  margin: 0 0 40px;
  padding: 0;
}

.block-goods-detail:has(.js-tab) .block-goods-tab-contents-item{
  display: none;
}

.block-goods-detail:has(.js-tab) .block-goods-tab-contents-item.is-active{
  display: block;
}

.page-goods form:has(.js-tab) .block-goods-tab-contents-item{
  display: none;
}

.page-goods form:has(.js-tab) .block-goods-tab-contents-item.is-active{
  display: block;
}

.block-goods-feature{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 0 42px;
}

.block-goods-feature:last-of-type{
  margin-bottom: 0;
}

.block-goods-feature__desc-title{
  font-size: 18px;
  font-family: var(--font-500);
  font-weight: 500;
  color: var(--color01);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

.block-goods-feature__desc-title:before{
  content: "";
  width: 85px;
  height: 80px;
  display: block;
  flex-shrink: 0;
}

.block-goods-feature__desc-title.--01::before{
  background: url(../../img/usr/common/ico_feature01.png) center center / contain no-repeat;
}

.block-goods-feature__desc-title.--02::before{
  background: url(../../img/usr/common/ico_feature02.png) center center / contain no-repeat;
}

.block-goods-feature__desc-title.--03::before{
  background: url(../../img/usr/common/ico_feature03.png) center center / contain no-repeat;
}

.block-goods-feature__desc-title.--04::before{
  background: url(../../img/usr/common/ico_feature04.png) center center / contain no-repeat;
}

.block-goods-feature__desc-title.--05::before{
  background: url(../../img/usr/common/ico_feature05.png) center center / contain no-repeat;
}

.btn-common-more,.category-link{
  font-size: 16px;
  text-align: center;
  display: block;
  width: 270px;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  margin: 0 auto;
  padding: 14px;
}

.block-goods-feature__img img{
  border-radius: 4px;
}

.block-src-l {
  margin: -10px -20px 0;
}

.block-goods-gallery {
  margin: 0 -20px 32px;
  overflow-x: auto;
  overflow-y: hidden;
}

.block-goods-gallery::-webkit-scrollbar {
  display: none;
}

.block-goods-gallery ul {
  display: flex;
  padding: 0;
}

.block-goods-gallery ul li {
  display: block;
  width: 18.6vw;
  min-width: 18.6vw;
  flex-basis: 18.6vw;
  margin: 0 15px 0 0;
  padding: 0;
}

.block-goods-gallery ul li figure {
  width: 18.6vw;
  height: 18.6vw;
}

.block-goods-gallery ul li figure img{
  border-radius: 4px;
}

.block-goods-comment.more-open {
  position: relative;
  max-height: 54px;
  padding-bottom: 16px;
}

.block-goods-comment.more-open .open-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  cursor: pointer;
}

.block-goods-comment.more-open .open-button::before {
  position: absolute;
  top: 0;
  left: calc(50% - 6px);
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(45deg);
  content: "";
}

.goods-detail-description {
  display: flex;
  padding: 1px 0;
  font-size: 13px;
  display: none;
}

.goods-detail-description dt {
  display: block;
  font-weight: normal;
  width: 6.5em;
}

.goods-detail-description dd {
  display: block;
}

.goods-detail-description.block-goods-spec {
  display: block;
  font-size: 12px;
}

.goods-detail-description.block-goods-spec dt {
  display: inline;
  font-weight: normal;
}

.goods-detail-description.block-goods-spec dd {
  display: inline;
}

.block-goods-ship-schedule{
  display: none;
}

.block-goods-price--on-sales-comment {
  font-size: 12px;
  font-family: var(--font-700);
  font-weight: bold;
  text-align: left;
  color: #d53115;
}

.block-goods-price--on-sales-term {
  font-size: 12px;
  margin: 4px 0;
}

.block-goods-price .block-goods-price--on-sales-off-percent {
  display: inline-block;
  padding: 2px 10px;
  margin: 4px 4px 4px 0;
  font-size: 12px;
  color: #f0f0f0;
  background-color: #d53115;
}

.block-goods-price .block-goods-price--on-sales-countdown,
.block-goods-price .block-goods-price--on-sales-countdown > div {
  display: inline-block;
  color: #d53115;
}

.block-goods-price--on-sales-comment ~ .block-goods-price--price,
.block-goods-price--on-sales-off-percent ~ .block-goods-price--price,
.block-goods-price--on-sales-countdown ~ .block-goods-price--price {
  color: #d53115;
}

.block-goods-price--on-sales-comment + .block-goods-price--price + .block-goods-price--default-price {
  font-size: 14px;
  font-weight: normal;
}

.block-goods-price {
  text-align: left;
}

.block-goods-price .not-loggedin{
  font-size: 18px;
  font-family: var(--font-700);
  font-weight: bold;
}

.block-goods-price--price {
  font-size: 24px;
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  margin: 0 0 10px;
}

.block-goods-price--maker-price{
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.block-goods-price--maker-price-explain{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 15px;
}

.block-goods-price--maker-price-explain::before{
  content: "?";
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 1;
  color: #FFF;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1F2123;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.block-goods-price--price-head {
  font-size: 18px;
  margin-right: 10px;
}

.block-goods-price--price .yen{
  font-size: 18px;
}

.block-goods-price--price::after,
.block-goods-price--net-price::after {
  font-size: 10px;
  font-weight: normal;
}

.block-goods-price--default-price {
  text-align: left;
}

.block-goods-price--default-price::after {
  font-size: 11px;
  content: "（税込）";
}

.block-goods-price--default-net::after {
  font-size: 11px;
  content: "（税抜）";
}

.block-goods-price--regular-repeat-price::after {
  font-size: 11px;
  content: "（税込）";
}

.block-goods-price--regular-repeat-net::after {
  font-size: 11px;
  content: "（税抜）";
}

.block-goods-term--sales-stock {
  padding: 6px 0;
  font-size: 12px;
  color: #d53115;
}

.block-goods-term--sales-term {
  padding: 6px 0;
  font-size: 14px;
  color: #d53115;
}

.block-variation--name {
  border: 0;
  border-top: 1px solid #dedede;
  padding: 12px 0 0;
  margin: 10px 0 4px;
  font-size: 14px;
  font-family: var(--font-700);
  font-weight: bold;
}

.block-variation--item {
  margin-right: 4px;
}

.block-color--item-term,
.block-size--item-term {
  min-width: 56px;
  min-height: 56px;
}

.block-variation--item dt {
  border: 1px solid #dedede;
}

.block-variation--item.active dt {
  border: 1px solid #d53100;
}

.block-variation--item.size-disable-stock dt {
  border: 1px dashed #dedede;
}

.block-color--item-term figure {
  width: 54px;
  height: 54px;
}

.block-color--item-term img {
  max-width: 100%;
  max-height: 100%;
}

.block-size--item-term span {
  width: 54px;
  height: 54px;
  font-size: 13px;
}

.block-variation--selected-item {
  margin: 8px 0 16px;
}

.block-size-with-cart--item-term,
.block-color-with-cart--item-term,
.block-color-size-with-cart--color-item-term,
.block-color-size-with-cart--size-item-term {
  border: 1px solid #bbb;
  width: 48px;
  height: 48px;
  margin-right: 16px;
  flex-shrink: 0;
}

.block-color-size-with-cart--nocolor {
  width: 48px;
  height: 48px;
  margin-right: 4px;
  flex-shrink: 0;
}

.block-color-size-with-cart--color-item-term {
  margin-right: 4px;
}

.block-color-size-with-cart--size-item-term span,
.block-size-with-cart--item-term span {
  width: 46px;
  height: 46px;
  font-size: 12px;
}

.block-color-size-with-cart--color-item-term figure,
.block-color-with-cart--item-term figure {
  width: 46px;
  height: 46px;
}

.block-color-size-with-cart--color-item-term img,
.block-color-with-cart--item-term img {
  max-width: 100%;
  max-height: 100%;
}

.block-goods-not-available-method {
  margin: 10px 0 4px;
  padding: 12px 0 0;
  border-top: 1px solid #dedede;
}

.block-variation .block-variation-no-stock--message,
.block-variation .block-variation-outside-sales-period--message,
.block-variation .block-goods-variation-arrival-notice--btn,
.block-variation .block-variation-add-cart--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 3px;
}

.block-variation .block-variation-no-stock,
.block-variation .block-variation-outside-sales-period {
  width: 100%;
}

.block-variation .block-variation-no-stock--message,
.block-variation .block-variation-outside-sales-period--message {
  font-size: 13px;
  font-family: var(--font-700);
  font-weight: bold;
  border: 1px solid #C9C9C9;
  color: #FFF;
  background: #C9C9C9;
  border-radius: 3px;
  height: 40px;
}

.block-goods-variation-arrival-notice {
  width: 100%;
}

.block-variation .block-goods-variation-arrival-notice--btn {
  font-size: 13px;
  font-family: var(--font-700);
  font-weight: bold;
  border: 1px solid #1F2123;
  color: #000;
  background: #FFF;
  border-radius: 3px;
  height: 40px;
}

.block-variation .block-variation-add-cart--btn::before {
  display: inline-block;
  width: 21px;
  height: 23px;
  margin-right: 10px;
  vertical-align: top;
  background: url(../../img/usr/common/goods_cart_btn_sp.png) center center / 100% auto no-repeat;
  content: "";
}

.block-variation .block-variation-favorite {
  margin-left: 8px;
  flex-shrink: 0;
}

.block-variation .block-variation-favorite--btn,
.block-variation .block-variation-favorite-registed--btn {
  height: 48px;
  width: 48px;
  border-radius: 3px;
}

.block-variation .block-variation-favorite--btn {
  background: url(../../img/usr/common/goods_bookmark_val_btn_sp.png) center center / 18px auto no-repeat;
}

.block-variation .block-variation-favorite-registed--btn {
  background: #fff2ef url(../../img/usr/common/goods_bookmark_reg_btn_sp.png) center center / 18px auto no-repeat;
}

.block-variation .block-variation-favorite--btn .block-icon-image,
.block-variation .block-variation-favorite-registed--btn .block-icon-image {
  display: none;
}

.block-variation-add-cart {
  width: 100%;
}

.block-custom-order--btn {
  margin: 10px 0;
  padding: 16px 0;
  border-radius: 3px;
  font-size: 15px;
}

.block-arrival-notice .block-arrival-notice--btn {
  font-size: 18px;
  font-family: var(--font-700);
  font-weight: bold;
  width: 100%;
  margin: 10px 0;
  padding: 16px 0;
  border: 1px solid #1F2123;
  border-radius: 3px;
  color: #000;
  background: #FFF;
}

.block-no-stock .block-no-stock--message,
.block-outside-sales-period--message {
  font-size: 18px;
  font-family: var(--font-700);
  font-weight: bold;
  width: 100%;
  margin: 10px 0 20px;
  padding: 16px 0;
  border: 0;
  border-radius: 3px;
  color: #FFF;
  background: #C9C9C9;
}

.block-contact-about-goods {
  text-align: center;
  display: none;
}

.block-contact-about-goods .block-contact-about-goods-btn {
  display: inline;
  padding: 0;
  border: 0;
  text-decoration: underline;
  font-size: 14px;
  color: #081f2c;
  background: none;
}

.pane-goods-right-side .block-no-code-cms {
  display: block;
}

.block-no-code-cms--slider-wrap{
  margin-inline: -10px;
  padding-inline: 10px;
  position: relative;
}

.block-no-code-cms {
  overflow: visible;
}

.block-no-code-cms--slider .block-no-code-cms--youtube {
  margin: 0;
}

.block-no-code-cms--slider-wrap .swiper-button-prev{
  left: 0;
}

.block-no-code-cms--slider-wrap .swiper-button-next{
  right: 0;
}

.block-goods-link {
  text-align: center;
}

.block-goods-link .block-goods-link--btn {
  display: inline;
  padding: 0;
  border: 0;
  text-decoration: underline;
  font-size: 14px;
  color: #081f2c;
  background: none;
}

.block-goods-store-stock {
  text-align: center;
}

.block-goods-store-stock .block-goods-store-stock--btn {
  margin: 0 0 10px;
  padding: 16px 0;
  border-radius: 3px;
  border: 1px solid #d53100;
  font-size: 15px;
  color: #d53100;
  background: #fff;
}

.block-goods-detail dl[class^="block-goods-comment"] dt {
  margin: 0 0 14px;
  font-size: 16px;
  font-family: var(--font-700);
  font-weight: bold;
}

.block-goods-detail dl[class^="block-goods-comment"] + dl[class^="block-goods-comment"] dt {
  display: none;
}

.block-goods-detail dl[class^="block-goods-comment"] dt h3 {
  margin: 0;
  border: 0;
  font-size: 20px;
}

.block-goods-detail h3.block-goods-comment--title {
  margin: 0 0 12px;
  padding: 8px 0;
  border-bottom: 1px solid #dedede;
  font-size: 14px;
  line-height: 1.5;
}

.block-goods-comment--table-frame {
  width: 100%;
  margin: 0 0 15px;
  overflow-x: auto;
  overflow-y: hidden;
}

.block-goods-comment--table-frame .block-goods-comment--table {
  border-collapse: collapse;
}

.block-goods-comment--table-frame .block-goods-comment--table th,
.block-goods-comment--table-frame .block-goods-comment--table td {
  padding: 7px 22px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #707070;
}

.block-goods-comment--table-frame .block-goods-comment--table tr.title th {
  background: #eee;
}

.block-goods-comment--table-frame .block-goods-comment--table tr th:first-of-type,
.block-goods-comment--table-frame .block-goods-comment--table tr.title th:first-of-type {
  min-width: 100px;
  text-align: left;
  font-family: var(--font-700);
  font-weight: bold;
}

.block-goods-comment--table-frame .block-goods-comment--table td {
  white-space: nowrap;
}

.block-goods-user-review h2 {
  margin: 0;
  padding: 16px 20px;
  border: 0;
  font-size: 19px;
  background: none;
}

.block-goods-user-review .block-goods-user-review--info {
  padding: 10px 20px;
  background: none;
}

.block-goods-user-review .block-goods-user-review--count-summary {
  padding: 10px 13px;
  border: 1px solid #707070;
  border-radius: 4px;
}

.block-goods-user-review .block-goods-user-review--score dt {
  font-weight: normal;
}

.block-goods-user-review .block-goods-user-review--score dd img {
  height: 100%;
  top: -2px;
}

.block-goods-user-review .block-goods-user-review--description {
  margin: 0 0 24px;
  font-size: 11px;
}

.block-goods-user-review .block-goods-user-review--need-login-message {
  margin: 16px 0 12px;
  text-align: center;
  font-size: 12px;
}

.block-goods-user-review .block-goods-user-review--need-login-message a {
  text-decoration: underline;
}

.block-goods-user-review .block-goods-user-review--write-review-link,
.block-goods-user-review .block-goods-user-review--write-review-btn {
  display: block;
  width: 216px;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 20px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #d53100;
}

.block-goods-user-review .block-goods-user-review--list {
  margin: 0 20px;
}

.block-goods-user-review .block-goods-user-review--list .block-goods-user-review--item {
  padding: 16px 0;
  border-bottom: 1px solid #dedede;
}

.block-goods-user-review .block-goods-user-review--list .block-goods-user-review--item:last-of-type {
  border-bottom: 0;
}

.block-goods-user-review .block-goods-user-review--item-title {
  border: 0;
  font-size: 15px;
  font-family: var(--font-500);
  font-weight: 500;
}

.block-goods-user-review .block-goods-user-review--item-summary {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-name {
  margin: 0 0 8px;
  order: 20;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-score {
  margin: 0 0 8px;
  order: 10;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-score dt {
  display: none;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-score dd img {
  width: 30%;
  top: -2px;
}

.block-goods-detail-footer {
  display: none;
}

h2.block-accessory-list--name {
  padding: 16px 20px;
  border: 0;
  font-size: 19px;
  background: none;
}

.block-goods-uservoice {
  padding: 0 0 40px;
  background: #f5f5f5;
}

.block-goods-uservoice .block-goods-uservoice--title {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-goods-uservoice .block-goods-uservoice--title span {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-family: var(--font-700);
  font-weight: bold;
  line-height: 1.5;
}

.page-goods .block-search-box--form {
  display: none;
}

.scroll-hint-icon {
  top: 50%;
  left: 50%;
  width: 136px;
  height: 136px;
  border-radius: 10px;
  padding: 30px 10px 10px 10px;
  transform: translate(-50%,-50%);
  background: rgba(77,83,93,1);
  z-index: 1;
}
.scroll-hint-icon:before {
  width: 41px;
  height: 66px;
  background: url(../../img/usr/common/icon_scroll02.png) center center / contain no-repeat;
}
.scroll-hint-icon:after {
  width: 63px;
  height: 14px;
  background: url(../../img/usr/common/icon_scroll01.png) center center / contain no-repeat;
  margin: 0;
  top: 12px;
  transform: translateX(-50%);
}
.scroll-hint-text {
  font-size: 12px;
  font-family: var(--font-700);
  font-weight: bold;
  margin-top: 10px;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .85;
}

/*CSSによる商品詳細画面の項目の並び順変更用*/
.block-goods-detail .js-goods-variation-detail {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column wrap;
  flex-flow: column nowrap;
}
.block-src-l {
  order: 10;
}
.block-src-c {
  order: 20;
}
.block-goods-gallery {
  order: 30;
}
.js-goods-variation-detail {
  order: 35;
}
.block-goods-name {
  order: 45;
}
.page-goods .block-icon {
  order: 40;
}
.block-goods-comment {
  order: 50;
}
.block-goods-spec {
  order: 60;
}
.block-goods-detail--promotion-freespace {
  order: 80;
}
.block-goods-affix-list {
  order: 90;
}
.block-goods-price {
  order: 100;
}
.block-refill-goods {
  order: 105;
}
.block-goods-first-limited-order {
  order: 110;
}
.block-goods-code {
  order: 115;
}
.block-goods-item-code {
  order: 120;
}
.block-goods-item-code2 {
  order: 130;
}
.block-goods-item-code3 {
  order: 140;
}
.block-goods-release-dt {
  order: 150;
}
.block-goods-class1 {
  order: 160;
}
.block-goods-class2 {
  order: 170;
}
.block-goods-attr1 {
  order: 180;
}
.block-goods-attr2 {
  order: 190;
}
.block-goods-attr3 {
  order: 200;
}
.block-goods-point {
  order: 210;
}
.block-goods-postage {
  order: 220;
}
.block-goods-stock {
  order: 230;
}
.block-goods-coupon {
  order: 240;
}
.block-goods-promotion {
  order: 390;
}
.block-goods-sales-detail-append {
  order: 260;
}
.block-switch-goods {
  order: 263;
}
.block-goods-ship-schedule {
  order: 265;
}
.block-goods-not-available-method {
  order: 267;
}
.block-variation {
  order: 270;
}
.block-custom-order {
  order: 280;
}
.block-goods-detail-item-qty-wrap{
  order: 280;
}
.block-add-cart {
  order: 290;
}
.block-arrival-notice {
  order: 290;
}
.block-no-stock {
  order: 290;
}
.block-outside-sales-period {
  order: 290;
}
.block-goods-social-gift {
  order: 295;
}
.block-goods-favorite {
  order: 300;
}
.block-variation-back-order {
  order: 310;
}
.block-goods-store-stock {
  order: 320;
}
.block-goods-set {
  order: 330;
}
.block-goods-sns {
  order: 340;
}
.block-contact-about-goods {
  order: 350;
}
.block-goods-link {
  order: 360;
}
.block-unisize {
  order: 365;
}
.block-goods-comment2 {
  order: 380;
}
.block-goods-comment3 {
  order: 390;
}
.block-goods-tab{
  order: 400;
}
.block-goods-tab-contents{
  order: 410;
}
.block-goods-comment4 {
  order: 400;
}
.block-goods-comment5 {
  order: 410;
}
.block-goods-comment6 {
  order: 410;
}
.block-goods-comment7 {
  order: 410;
}
.block-goods-comment8{
  order: 410;
}
.category-link{
  order: 410;
}
.block-rules-comment {
  order: 420;
}
.block-goods-size--box .block-goods-size--body {
  padding-left: 10px;
  padding-right: 10px;
}
.block-goods-size--body .block-measured .block-measured--item-list,
.block-goods-size--body .block-measured .js-unisize-bunner,
.block-goods-size--body .block-measured .js-unisize-bunner > div {
  margin: 12px 0;
}
.block-goods-size--box .block-measured--item-list {
  width: 100%;
  border: 0;
}
.block-goods-size--box .block-measured--item-list th {
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  background-color: #f2f2f2;
  border: 0;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.block-goods-size--box .block-measured--item-list td {
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  vertical-align: middle;
  width: calc(100% / 6);
  padding: 5px 0;
  border: 0;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.block-goods-size--box .block-measured--item-list th:first-child {
  border-left: 0;
}
.block-goods-size--box .block-measured--item-list th.block-measured--header {
  border-top: 0;
}
.block-goods-size--box .block-measured--item-list tr:first-child th {
  border-top: 0;
}

/* ----ゲストお気に入り画面---- */
.block-guest-favorite-synchronize-title {
  font-family: var(--font-700);
  font-weight: bold;
  font-size: 16px;
}
.block-guest-favorite-synchronize-description {
  font-size: 14px;
}
.block-guest-favorite-synchronize-link {
  text-align: center;
}
/* ----定期購入商品サイクル情報変更画面---- */
.block-regular-purcharse-cycle-info-update--skip-cancel-message {
  margin: 5px 0 0 5px;
}
/* ----アプリログイン訴求画面---- */
.block-applogin-body {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.9em;
  text-align: center;
  margin: auto;
  height: 100px;
}

/* ---- LightningRecommend ---- */
.block-top-lightningrecommend,
.block-ranking-lightningrecommend {
  padding: 0 0 40px;
}

.block-top-lightningrecommend--header,
.block-ranking-lightningrecommend--header {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-common-lightningrecommend {
  margin-top: 10px;
}

.block-common-lightningrecommend--header {
  padding: 16px 20px;
  border: 0;
  font-size: 19px;
  background: none;
}

.block-cart--lightningrecommend-wrapper {
  padding: 0 10px;
}

/* ----本品とレフィル切り替え画面---- */
.block-refillgoods-list {
  margin: 10px;
}
.block-regular-goods-refillgoods--header {
  margin: -10px -10px 0;
}

.block-article{
  padding: 40px 0 0;
}
.block-article h3 {
  font-size: 20px;
  text-align: center;
  margin: 0 0 12px;
}
.block-article-item{
  margin-bottom: 60px;
}
.block-article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 18px;
}
.block-article-list__item {
  width: calc((100% - 18px) / 2);
}
.block-article-list__item-img {
  margin: 0 0 20px;
}
.block-article-list__item-img img {
  border-radius: 4px;
}
.block-article-list__item-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.57;
}
.block-article .block-category-column {
  border-top: 0;
  padding: 0;
}
/* ----イベントページ---- */
.block-event-page--goods .block-goods-list-naviframe{
  display: none;
}