@charset "UTF-8";

/*******************
 .sp-container
 *******************/
.sp-container {
  background: #f4f4f4;
}


/*******************
 .sp-explain
 *******************/
.sp-explain {
  background: #fff;
  margin: 0 auto;
  padding-bottom: 50px;
  box-shadow: 0 1px 3px #ccc;
}


/*******************
 .sp-main
 *******************/
.sp-main {
  display: flex;
  flex-flow: wrap;
  margin: 0 auto;
  padding: 20px 10px;
}

.sp-main * {
  transition: background-color 0.3s;
}

.sp-main-title {
  flex-basis: 100%;
  margin-bottom: 10px;
  background: #fff;
  padding: .5em 0;
  font-size: 2em;
  font-weight: bold;
  border-radius: 10px;
}


/*******************
 .sp-filter
 *******************/
.sp-filter {
  flex-basis: 280px;
  align-self: start;
  box-sizing: border-box;
  text-align: left;
  padding: 12px 12px;
  background: #fff;
  margin-right: 10px;
  border-radius: 10px;
  position: sticky;
  top: 12px;
}

.sp-filter.sp-with-header {
  top: calc(56px + 12px);
}

.sp-filter-heading {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.sp-filter-title {
  flex-grow: 1;
  font-size: 1.2em;
  font-weight: bold;
}

.sp-filter-clear-button {
  box-sizing: border-box;
  height: 30px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.sp-filter-clear-button:hover {
  text-decoration: none;
  color: #333;
  background-color: #eee;
  cursor: pointer;
}

.sp-filter-clear-button:disabled {
  cursor: not-allowed;
}

.sp-filter-body {
}

.sp-filter-body-fixed {
  border-bottom: 1px solid #eaeaea;
}

.sp-filter-body-scroll {
  height: calc(100vh - 124px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #cacae3 #f5f5fd;
}

.sp-filter-body-scroll::-webkit-scrollbar {
  width: 8px;
}

.sp-filter-body-scroll::-webkit-scrollbar-track {
  background-color: #f5f5fd;
  border-radius: 4px;
}

.sp-filter-body-scroll::-webkit-scrollbar-thumb {
  background-color: #cacae3;
  border-radius: 4px;
}

.sp-filter.sp-with-header .sp-filter-body-scroll {
  height: calc(100vh - 124px - 56px);
}

.sp-filter.sp-with-footer .sp-filter-body-scroll {
  height: calc(100vh - 124px - 66px);
}

.sp-filter.sp-with-header.sp-with-footer .sp-filter-body-scroll {
  height: calc(100vh - 124px - 56px - 66px);
}

.sp-filter-body-scroll-inner {
  height: max-content;
}

.sp-filter-group-heading {
  display: flex;
}

.sp-filter-group-heading:hover {
  background-color: #f6f6f6;
}

.sp-filter-group-heading.sp-highlight {
  background-color: #e0e0e0;
}

.sp-filter-group-heading.sp-highlight:hover {
  background-color: #d6d6d6;
}

.sp-filter-group-heading .sp-filter-item {
  flex-grow: 1;
}

.sp-filter-group-heading .sp-filter-toggle {
  flex-basis: 35px;
  font-size: 1.3em;
  color: #999;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-filter-group-heading .sp-filter-toggle:hover {
  text-decoration: none;
  opacity: 1;
}

.sp-filter-group-heading .sp-filter-toggle.sp-filter-toggle-disabled {
  color: transparent;
  cursor: auto;
}

.sp-filter-group-heading .sp-filter-toggle:not(.sp-filter-toggle-disabled):hover {
  color: #333;
}

.sp-filter-group-body {
  display: flex;
  flex-direction: column;
  /*border-radius: 0 0 4px 4px;*/
  background-color: #eee;
  border-top: 1px solid #e0e0e0;
}

.sp-filter-item {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  text-align: left;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.sp-filter-group-body .sp-filter-item:last-of-type {
  /*border-radius: 0 0 4px 4px;*/
}

.sp-filter-group-body .sp-filter-item {
  padding-left: 12px;
  padding-right: 12px;
}

.sp-filter-group-body .sp-filter-item:hover {
  background-color: #e6e6e6;
}

.sp-filter-group-body .sp-filter-item.sp-highlight {
  background-color: #d0d0d0;
}

.sp-filter-group-body .sp-filter-item.sp-highlight:hover {
  background-color: #c6c6c6;
}

.sp-filter-item-control {
  display: none;
}

.sp-filter-item-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  flex-grow: 1;
}

.sp-filter-group-body .sp-filter-item-label {
  margin-left: 8px;
}

.sp-filter-item-control:disabled + .sp-filter-item-label {
  cursor: not-allowed;
}

.sp-filter-item-label:before {
  font-family: 'Font Awesome 6 Free';
  content: '\f0c8';
  font-size: 18px;
  color: #888;
  line-height: 13px;
  width: 15px;
  background-color: #fff;
  margin-right: 10px;
}

.sp-filter-item-control:checked + .sp-filter-item-label:before {
  content: '\f14a';
  font-weight: 900;
  color: #2c2f90;
}

.sp-filter-item-control.sp-indeterminate + .sp-filter-item-label:before {
  content: '\f146';
  font-weight: 900;
  color: #a0a1cd;
}

.sp-filter-item-control:disabled + .sp-filter-item-label:before {
  color: #c0c0c0;
  cursor: not-allowed;
}

.sp-filter-item-label-text {
  display: flex;
  flex-flow: column;
}

.sp-filter-item-label-text small {
  font-size: .8em;
  color: #777;
  white-space: nowrap;
  line-height: calc(.8em + 2px);
}

.sp-filter-item-count {
  color: #999;
  white-space: nowrap;
  margin-left: 5px;
}

.sp-filter-item-count.sp-filter-item-count-total {
  color: #333;
  font-size: 1.3em;
  font-weight: bold;
}

.sp-filter-item-count * {
  margin-left: 2px;
}

.sp-filter-item-count *:first-child {
  margin-left: 0;
}

.sp-filter-item-count strong {
  font-size: 1.1em;
}

.sp-filter-item-count small {
  font-size: .75em;
}


/*******************
 .sp-list
 *******************/
.sp-list {
  flex-basis: calc(100% - 280px - 5px - 5px);
  flex-grow: 1;
  box-sizing: border-box;
  padding: 12px 12px;
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.sp-list-count {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 5px 10px;
  text-align: left;
}

.sp-list-count small {
  font-size: .8em
}

.sp-list-cat {
  margin-bottom: 12px;
  border-bottom: 1px solid #eaeaea;
}

.sp-list-cat:last-of-type {
  border-bottom: 0;
}

.sp-list-cat-title {
  color: #333333;
  font-weight: bold;
  font-size: 1.25rem;
  text-align: left;
  margin: 0 0 12px 10px;
}

.sp-list-cat-title i {
  margin: 0 .5em;
}

.sp-list-cat-title a {
  font-size: .7em;
  font-weight: normal;
  margin-left: 1em;
  color: #333 !important;
  transition: none;
}

.sp-list-cat-title a:hover {
  color: #e46c0a !important;
}

.sp-list-item-grp {
  display: flex;
  flex-flow: row wrap;
  border: none;
  margin-bottom: 20px;
}

.sp-list-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 20px;
  padding: 15px 0;
}

@media screen and (min-width: 550px) and (max-width: 749px) {
  .sp-list-item {
    width: calc(100% / 2);
  }
}

@media screen and (min-width: 750px) and (max-width: 999px) {
  .sp-list-item {
    width: calc(100% / 3);
  }
}

@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .sp-list-item {
    width: calc(100% / 4);
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .sp-list-item {
    width: calc(100% / 5);
  }
}

@media screen and (min-width: 1400px) and (max-width: 1599px) {
  .sp-list-item {
    width: calc(100% / 6);
  }
}

@media screen and (min-width: 1600px) and (max-width: 1799px) {
  .sp-list-item {
    width: calc(100% / 7);
  }
}

@media screen and (min-width: 1800px) and (max-width: 1999px) {
  .sp-list-item {
    width: calc(100% / 8);
  }
}

@media screen and (min-width: 2000px) and (max-width: 2199px) {
  .sp-list-item {
    width: calc(100% / 9);
  }
}

@media screen and (min-width: 2200px) and (max-width: 2399px) {
  .sp-list-item {
    width: calc(100% / 10);
  }
}

@media screen and (min-width: 2400px) and (max-width: 2599px) {
  .sp-list-item {
    width: calc(100% / 11);
  }
}

@media screen and (min-width: 2600px) and (max-width: 2799px) {
  .sp-list-item {
    width: calc(100% / 12);
  }
}

@media screen and (min-width: 2800px) and (max-width: 2999px) {
  .sp-list-item {
    width: calc(100% / 13);
  }
}

@media screen and (min-width: 3000px) and (max-width: 3199px) {
  .sp-list-item {
    width: calc(100% / 14);
  }
}

@media screen and (min-width: 3200px) and (max-width: 3399px) {
  .sp-list-item {
    width: calc(100% / 15);
  }
}

@media screen and (min-width: 3400px) and (max-width: 3599px) {
  .sp-list-item {
    width: calc(100% / 16);
  }
}

@media screen and (min-width: 3600px) and (max-width: 3799px) {
  .sp-list-item {
    width: calc(100% / 17);
  }
}

@media screen and (min-width: 3800px) and (max-width: 3999px) {
  .sp-list-item {
    width: calc(100% / 18);
  }
}

@media screen and (min-width: 4000px) and (max-width: 4199px) {
  .sp-list-item {
    width: calc(100% / 19);
  }
}

@media screen and (min-width: 4200px) {
  .sp-list-item {
    width: calc(100% / 20);
  }
}

.sp-list-item:hover {
  background-color: #f6f6f6;
}

.sp-list-item > div {
  padding: 0 15px;
}

.sp-list-item .sp-goods-image {
  text-align: center;
  margin-bottom: 10px;
}

.sp-list-item .sp-goods-image img {
  width: 100%;
  transition: opacity 0.3s;
}

.sp-list-item .sp-goods-image img:hover {
  opacity: .8;
}

.sp-list-item .sp-goods-image .item-img-icon-group {
  top: -10px;
  right: 5px;
}

.sp-list-item .sp-goods-content {
  margin-bottom: 10px;
  flex-grow: 1;
}

.sp-list-item .sp-goods-content > div {
  margin-bottom: 5px;
}

.sp-list-item .sp-goods-content > div:last-of-type {
  margin-bottom: 0;
}

.sp-list-item .sp-goods-brand {
  font-size: .8em;
  color: #777;;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sp-list-item .sp-goods-name {
  font-size: 1.1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sp-list-item .sp-goods-name small {
  display: block;
  font-size: .9em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sp-list-item .sp-goods-name a {
  color: #333;
  transition: none;
}

.sp-list-item .sp-goods-name a:hover {
  opacity: .8;
  text-decoration: none;
}

.sp-list-item .sp-goods-price {
  display: flex;
  flex-direction: column-reverse;
}

.sp-list-item .sp-goods-price strong {
  font-weight: bold;
  font-size: 1.3em;
}

.sp-list-item .sp-goods-price .strikethrough strong {
  font-weight: normal;
}

.sp-list-item .sp-goods-price .tax-excluded strong {
  margin-right: .125em;
}

.sp-list-item .sp-goods-price .tax-included {
  font-size: .95em;
}

.sp-list-item .sp-goods-price .strikethrough .tax-included {
  font-size: 1em;
}

.sp-list-item .sp-goods-price .strikethrough + .invoice-price {
  margin-bottom: 4px;
}

.sp-list-item .sp-goods-price .strikethrough + .invoice-price .tax-included {
  font-weight: normal;
}

.sp-list-item .sp-goods-price .strikethrough + .invoice-price:not(.strikethrough) * {
  color: #c13832;
}

.sp-list-item .sp-goods-price .invoice-price:not(.strikethrough) .tax-excluded {
  font-weight: bold;
}

.sp-list-item .sp-goods-point {
  color: #c13832;
  font-size: .8em;
}

.sp-list-item .sp-goods-point strong {
  font-size: 1.3em;
  margin-right: .125em;
}

.sp-list-item .sp-goods-icons {
}

.sp-list-item .sp-goods-icons span {
  font-size: .85em;
  color: #fff;
  padding: 1px 4px;
  border-radius: 4px;
  line-height: .85em;
  margin-right: 2px;
}

.sp-list-item .sp-goods-icons span:last-of-type {
  margin-right: 0;
}

.sp-list-item .sp-goods-icons span.sp-goods-icon-new {
  background-color: #c13832;
}

.sp-list-item .sp-goods-icons span.sp-goods-icon-split {
  background-color: #d553be;
}

.sp-list-item .sp-goods-buttons {
}

.sp-list-cat-button,
.sp-list-item .sp-goods-buttons a {
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  color: #333 !important;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.sp-list-cat-button:hover,
.sp-list-item .sp-goods-buttons a:hover {
  text-decoration: none;
  background-color: #eee !important;
}

.sp-list-cat-button {
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
}

.sp-list-cat-button strong {
  font-size: 1.2em;
  margin-right: .25em;
}

.sp-list-cat-button strong i {
  margin: 0 .5em;
}

.sp-list-item .sp-goods-buttons a {
  height: 28px;
  line-height: 28px;
}

.sp-list-message {
  position: absolute;
  font-size: 1.3em;
  margin-top: 10px;
  background: rgba(255,255,255,.8);
  display: block;
  box-sizing: border-box;
  width: calc(100% - 12px - 12px);
  height: 50px;
  line-height: 50px;
}

.sp-list-message-bottom {
  position: static;
}


/*******************
 .sp-fade
 *******************/
.sp-fade-out {
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}


/*******************
 #footerWrap
 *******************/
#footerWrap {
  background-color: #f4f4f4;
}


/*******************
 互換性のため goods_list_vet.css から移植
 *******************/
.list-item-img {
  position: relative;
}

.list-item-img .item-img-icon-group {
  position: absolute;
  top: 2px;
  right: 0;
  width: 40px;
}

.list-item-img .item-img-icon-group .item-img-icon {
  float: left;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 40px;
  margin: 0 2px 2px 0;
}

.list-item-img .item-img-icon-group .item-img-icon:last-child {
  margin: 0;
}
