   @charset "UTF-8";

  /* カテゴリグリッド用スタイル（画像なし・グレー背景） */
  .category-search__title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 20px;
    color: #333;
  }
  .category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
  }
  .category-grid_item {
    background-color: #eeeeee;
    border-radius: 4px;
    transition: background-color 0.2s;
  }
  .category-grid_item:hover {
    background-color: #e0e0e0;
  }
  .category-grid_link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 15px 10px;
    text-decoration: none;
    text-align: center;
  }
  .category-grid_text {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 1.4;
  }

  /* おすすめ特集用テキストスタイル */
  .feature-text-box {
    padding: 10px 5px 20px;
    text-align: left;
  }
  .feature-title {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
  }
  .feature-copy {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
  }

  /* TOPボタン */
  .btn-top-wrap {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .btn-bellemaison-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7a0000;
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 18px;
    position: relative;
    width: 100%;
    max-width: 400px;
  }
  .btn-bellemaison-top::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
  }

  /* モバイル対応：フォントをさらに小さく調整 */
  @media screen and (max-width: 768px) {
    .category-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .category-grid_text {
      font-size: 16px;
    }
    .category-grid_link {
      min-height: 70px;
    }
    .feature-title {
      font-size: 13px; /* 14pxから縮小 */
    }
    .feature-copy {
      font-size: 11px; /* 12pxから縮小 */
    }
  }

.mobile-disp-none {
  display: none;
}

.button.m-fixed {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.mobile-list-filter-modal {
  height: 100%;
}

.mobile-list-filter-modal .modal_close.m-individual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 10px;
  width: auto;
  height: auto;
}

@media screen and (min-width: 768px) {
  .product-box-body {
    min-height: 280px;
  }
}

.mobile-list-filter-modal .modal_close.m-individual::before, .mobile-list-filter-modal .modal_close.m-individual::after {
  content: none;
}

.mobile-list-filter-modal .modal-header {
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mobile-list-filter-modal .modal-scroll {
    background-color: #ffffff;
  }
  .mobile-list-filter-modal .modal-scroll .filter-list {
    background-color: #ffffff;
  }
  .mobile-list-filter-modal .modal-scroll .filter-color-block {
    background-color: #ffffff;
  }
}

.mobile-list-filter-modal-inner {
  height: 100%;
  background-color: #f7f5f4;
}

.mobile-list-filter-modal-content {
  height: 100%;
  padding: 0;
}

.list-filter-keyword-container {
  padding: 10px;
}

.list-filter-keyword {
  position: relative;
}

.list-filter-keyword .input {
  padding-right: calc(1em + 20px);
  padding-left: 2.75em;
}

.keyword_icon {
  position: absolute;
  top: 50%;
  left: .5em;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mobile-filter-list_item {
  border-bottom: 1px solid #e8e8e8;
}

.mobile-filter-list_item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: .75rem;
}

.mobile-filter-category-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 12px;
}

.mobile-filter-category-list li {
  display: block;
}

.mobile-filter-category-list li:not(:first-child):before {
  margin-right: .5em;
  content: ">";
}

.mobile-filter-selected-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  font-size: 12px;
}

.mobile-filter-selected-values.m-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 200px;
}

.mobile-filter-selected-values.m-horizontal .mobile-filter-selected-value {
  margin: .25rem;
}

.mobile-filter-selected-value + .mobile-filter-selected-value {
  margin-top: .25rem;
}

.mobile-filter-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 3rem;
}

.mobile-filter-button .category-icon {
  width: 100%;
  max-width: calc(55px - .75rem * 2);
  margin-right: 10px;
}

.mobile-filter-button .category-icon.no-img {
  width: 0;
  height: calc(55px - .75rem * 2);
  margin-right: 0;
}

.mobile-filter-button .category-icon.no-img.all-category {
	width: 100%;
	margin-right: 10px;
}

.mobile-filter-button .category-icon img {
  width: 100%;
}

.mobile-filter-button_label {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 1em;
}

.mobile-filter-button_label.m-has-icon {
  padding-left: 1.75rem;
}

.mobile-filter-button_icon {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mobile-filter_arrow {

  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mobile-list-filter-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e8e8e8;
}

.mobile-list-filter-footer .button {
  padding-right: 10px;
  padding-left: 10px;
}

.mobile-filter-color-picker {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
}

.mobile-filter-black {
  background: black;
}

.mobile-filter-gray {
  background: #999999;
}

.mobile-filter-white {
  border: 1px solid #e8e8e8;
  background: white;
}

.mobile-filter-brown {
  background: #9a6602;
}

.mobile-filter-beige {
  background: #eed08a;
}

.mobile-filter-olive {
  background: #656602;
}

.mobile-filter-green {
  background: #669902;
}

.mobile-filter-blue {
  background: #3166cc;
}

.mobile-filter-navy {
  background: #01287d;
}

.mobile-filter-purple {
  background: #9f5ed2;
}

.mobile-filter-pink {
  background: #ff99cb;
}

.mobile-filter-red {
  background: #f80402;
}

.mobile-filter-orange {
  background: #ff6602;
}

.mobile-filter-yellow {
  background: #ffcc03;
}

.mobile-filter-gold {
  background: -webkit-gradient(linear, left top, left bottom, from(#b76e00), color-stop(50%, #ffffff), to(#b76e00));
  background: linear-gradient(to bottom, #b76e00 0%, #ffffff 50%, #b76e00 100%);
}

.mobile-filter-silver {
  background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), color-stop(50%, #ffffff), to(#9e9e9e));
  background: linear-gradient(to bottom, #9e9e9e 0%, #ffffff 50%, #9e9e9e 100%);
}

.mobile-filter-other {
  border: 1px solid #e8e8e8;
  background: white;
  position: relative;
}

.mobile-filter-other .color-picker_text {
  font-size: 10px;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.4);
          transform: translateX(-50%) translateY(-50%) scale(0.4);
}

.select-color {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}

.button-wrapper {
  margin: 0;
}

.filter-section + .filter-section {
  margin-top: 30px;
}

.filter-section_heading {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}

.filter-section-child {
  margin-top: 0.5rem;
}

.filter-section-child + .filter-section-child {
  margin-top: 20px;
}

.filter-box {
  position: relative;
}

.filter-box_title {
  margin-bottom: 10px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #a0a0a0;
  font-weight: bold;
  font-size: 16px;
}

.list-condition {
  padding: 20px;
  background-color: #f6f4f3;
}

.list-condition_count {
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}

.list-condition_count_number {
  font-size: 20px;
}

.list-condition_count_label {
  margin-left: 20px;
  font-weight: normal;
  font-size: 12px;
}

.list-condition_label {
  font-size: 12px;
  text-align: center;
}

.filter-condition:not(:first-child) {
  margin-top: 1rem;
}

.filter-condition_item {
  position: relative;
}

.filter-condition_item + .filter-condition_item {
  margin-top: 0.75rem;
}

.filter-condition_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75em calc(2.75em) 0.75em 1em;
  border: 1px solid #d2d1d1;
  border-radius: 9999px;
  background-color: #ffffff;
  color: #171717;
  font-size: 12px;
}

.filter-condition_delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: calc(50% - 0.875em);
  right: 0.5em;
  z-index: 1;
  width: 1.75em;
  height: 1.75em;
  padding: 0;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  cursor: pointer;
}

.filter-condition_delete:hover {
  background-color: #f3f3f3;
}

.filter-condition_delete:focus, .filter-condition_delete:active {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.filter-list {
  background-color: transparent;
}

.filter-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filter-list_item-inner {
  display: inline-block;
  width: 100%;
  padding: 0.75em 1em;
  text-decoration: none;
}

.filter-list_item-inner:hover {
  background: #f6f4f3;
  text-decoration: none;
}

.filter-list_item-inner.m-selected {
  font-weight: bold;
}

.filter-list.m-level-1 .filter-list_item {
  border-top: 1px solid #e8e8e8;
  font-weight: bold;
}

.filter-list.m-level-1 .filter-list_item-inner.m-selected {
  background: #f6f4f3;
}

.filter-list.m-level-2 {
  padding-left: 1rem;
}

.filter-list.m-level-2 .filter-list_item {
  border-top: 1px solid #e8e8e8;
}

.filter-list.m-level-2 .filter-list_item .filter-list_item-inner {
  display: inline-block;
  width: 100%;
  padding: 0.75em 1em;
}

.filter-list.m-level-2 .filter-list_item .filter-list_item-inner.m-selected {
  background: inherit;
}

.filter-list.m-level-3 {
  padding-left: 1rem;
}

.filter-list.m-level-3 .filter-list_item {
  display: inline-block;
  width: 100%;
  font-weight: normal;
  border: none;
}

.filter-list.m-level-3 .filter-list_item:first-child {
  border-top: 1px solid #e8e8e8;
}

.filter-list.m-level-3 .filter-list_item:hover {
  background: #f6f4f3;
  text-decoration: none;
}

.filter-list.m-level-3 .filter-list_item .filter-list_item-inner {
  display: inline-block;
  width: 100%;
  padding: 0.75em 1em;
}

.filter-list.m-level-3 .filter-list_item .filter-list_item-inner.m-selected {
  background: #f6f4f3;
  font-weight: normal;
}

.color-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  border-radius: 999px;
}

.narrow-down-button {
  margin-top: 10px;
}

.filter-checkradio {
  width: 100% !important;
  padding: 0 !important;
}

.filter-checkradio.checkbox > input[type="checkbox"] + label {
  width: 100%;
  padding: calc(0.75em + .125rem) 1em;
  padding-left: calc(20px + 1em + 2px + 1em);
  margin: 0;
}

.filter-checkradio.checkbox > input[type="checkbox"] + label::before {
  top: 0.75em;
  left: calc(2px + 1em);
}

.filter-checkradio.checkbox > input[type="checkbox"] + label::after {
  top: calc(0.175rem + 0.75em);
  left: calc(.45rem + 2px + 1em);
}

.price-range {
  padding-top: 1rem;
}

.price-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border: none;
}

.price-input .form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.price-input-pc {
  width: 100%;
}

.price-input_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
}

.price-input_text:not(:first-child) {
  margin-left: 0.5rem;
}

.price-input_text:not(:last-child) {
  margin-right: 0.5rem;
}

.filter-color-block {
  padding: 0.75rem;
  background-color: #f6f4f3;
}

.filter-brand-container {
  max-height: 430px;
}

.filter-size-container {
  max-height: 300px;
}

@media screen and (max-width: 767px) {
  .sort-order-dropdown.m-active {
    -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 100;
    width: 100%;
  }
  .sort-order-dropdown.m-active .dropdown-content {
    display: block;
  }
  .sort-order-dropdown.m-active .dropdown_label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sort-order-dropdown.m-active .dropdown_label::after {
    top: calc(50% - (7px / 2));
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}

@media screen and (min-width: 768px) {
  .sort-order-dropdown:hover {
    -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 100;
    top: -1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .sort-order-dropdown:hover .dropdown-content {
    display: block;
  }
}

.sort-order-dropdown .dropdown-content {
  position: static !important;
  padding: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.sort-order-dropdown .dropdown_label {
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sort-order-dropdown .dropdown_label .icon {
  margin-left: 10px;
}

.sort-order-dropdown .dropdown-list_item.m-selected .dropdown-list_label {
  font-weight: bold;
}

.sort-order-dropdown .dropdown-list_label {
  padding-left: 30px;
  padding-right: 40px;
}

.list-main {
  margin-bottom: 40px;
}

.list-main-section + .list-main-section {
  margin-top: 30px;
}

.list-result {
  font-size: 12px;
  text-align: center;
}

.list-result_number {
  margin: 0 .25rem;
  font-weight: bold;
  font-size: 16px;
}

.list-not-found-block + .list-not-found-block {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .list-not-found-block + .list-not-found-block {
    margin-top: 10px;
  }
}

.list-search-result {
  margin-bottom: 20px;
  font-size: 22px;
}

@media screen and (min-width: 768px) {
  .list-search-result {
    margin-top: 20px;
  }
}

.list-search-result_title {
  display: inline;
  font-weight: bold;
}

.list-search-result_text {
  margin-left: 6px;
  font-weight: normal;
  font-size: 1rem;
}

.list-search-message {
  padding: 1.25em 0;
  background-color: #f6f4f3;
  text-align: center;
}

.not-found-message {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .not-found-message {
    font-size: 14px;
  }
}

.list-search-message_row + .list-search-message_row {
  margin-top: .75rem;
}

.list-search-message_row.text-weight-bold {
  font-size: 18px;
}

.list-search-message_strong {
  color: #c38704;
}

.list-search-attention-block + .list-search-attention-block {
  margin-top: 40px;
}

.list-search-attention-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-search-attention-buttons .button + .button {
  margin-top: 20px;
  margin-left: 0;
}

.warning-box-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.warning-box-buttons:not(:first-child) {
  margin-top: 1rem;
}

.display-condition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 42px;
  border-bottom: 2px solid #e8e8e8;
}

.filter-trigger {
  display: none;
  height: 40px;
  margin-left: auto;
  border: none;
  background-color: transparent;
  outline: none;
}

@media screen and (max-width: 767px) {
  .filter-trigger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.filter-trigger:hover, .filter-trigger:focus {
  border: none;
  background-color: transparent;
}

.product-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: .5rem 0;
}

@media screen and (max-width: 767px) {
  .product-pager {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .product-pager .pager {
    margin-top: 1rem;
    margin-left: 0 !important;
  }
}

.product-pager .pager {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product-list-container {
  border-top: 1px solid #e8e8e8;
}

@media screen and (max-width: 767px) {
  .product-list-container {
    border-bottom: 1px solid #e8e8e8;
  }
}

.product-list-container.m-not-found {
  border: none;
}

.display-result {
  margin: .75rem .75rem 0;
}

.display-result .button {
  height: auto;
  min-height: 28px;
  padding: 10px;
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
  padding: 30px 0;
}

@media screen and (max-width: 767px) {
  .product-list {
    margin: -4px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.product-list_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  width: 25%;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .product-list_item {
    width: 50%;
    padding: 4px;
  }
}

@media screen and (min-width: 768px) {
  .product-list_item.m-hoverable:nth-child(4n)::before {
    left: -68px;
  }
  .product-list_item.m-hoverable:nth-child(4n) .variation-box {
    right: auto;
    left: -10px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    border-width: 0 1px 0 0;
  }
}

@media screen and (min-width: 768px) {
  .product-list_item.m-hoverable:hover {
    z-index: 10;
  }
  .product-list_item.m-hoverable:hover::before {
    opacity: 1;
  }
  .product-list_item.m-hoverable:hover .variation-box {
    display: block;
  }
}

.product-list_item.m-hoverable::before {
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 68px);
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  content: "";
}

.product-list_item_link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.product-box {
  position: relative;
}

.product-box-body {
  position: relative;
}

.variation-box {
  display: none;
  position: absolute;
  top: 0;
  right: -10px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 68px;
  height: 100%;
  padding: 0 10px;
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: #e8e8e8;
}

.variation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}

.variation-list_item {
  padding: 5px;
}

.variation-img-wrapper {
  width: 48px;
  height: 48px;
}

.variation-img-wrapper .img-link {
  width: 100%;
}

.product-row {
  display: block;
}

.product-row + .product-row {
  margin-top: .25rem;
}

@media screen and (max-width: 767px) {
  .product-text-content {
    padding: 0 4px;
  }
}

.product-link-area {
  text-decoration: none;
}

.product-link-area:hover {
  text-decoration: underline;
}

.product-info {
  margin: .5rem 0 0 0;
}

.product-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 1.75em;
  margin: -2px 0;
  padding: 0 5px;
}

@media screen and (max-width: 767px) {
  .product-status {
    padding: 0;
  }
}

.product-status .tag {
  max-width: 48%;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-left: -5px;
  padding: 0;
  border: none;
}

@media screen and (max-width: 767px) {
  .product-status .tag {
    margin-left: 0;
  }
}

.product-status .tag:not(:first-child) {
  margin-left: 0;
}

.product-status .tag:not(:last-child) {
  margin-right: .375em;
}

.product-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  width: 100%;
  height: auto;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
}

.product-img-wrapper .img-link {
  display: block;
}

.product-img_img {
  width: 100%;
  height: auto;
  border: 1px solid #e8e8e8;
  vertical-align: bottom;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.product-img_tag {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: .1em 1em;
  background-color: rgba(199, 41, 55, 1.0);
  color: #ffffff;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
	.product-img_tag {
      padding: .15em .6em;
	  font-size: 13px;
    }
}

.product-name {
  margin-top: .5rem;
}

.product-info {
  margin-top: 10px;
}

.product-brand {
  color: #a0a0a0;
  font-size: 12px;
  font-style: italic;
}

.product-brand + .product-row {
  margin-top: .5rem;
}

.product-types {
  margin: -2px;
}

.product-type {
  margin: 2px;
}

.product-tag {
  display: inline-block;
  padding: .125em .75em;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  background-color: #f3f3f3;
  color: #171717;
  font-size: 12px;
}

.product-tag.m-subscription {
  border-color: transparent;
  background-color: #698c38;
  color: #ffffff;
}

.product-tag.m-sale {
  border-color: transparent;
  background-color: #c72937;
  color: #ffffff;
}

.product-price {
  font-weight: bold;
  word-break: break-word;
}

.product-price.m-sale {
  color: #c72937;
}

.product-price_tax {
  font-weight: normal;
  font-size: 12px;
}

.description-box-title {
  font-size: 18px;
}

.description-box-title .icon {
  margin-right: .75rem;
}

.search-category-title {
  vertical-align: text-top;
}

.description-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.description-buttons .button {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.description-buttons .button:not(:last-child) {
  margin-right: 1rem;
}

.description-buttons .button + .button {
  margin-left: 0;
}

.menu-button-container {
  bottom: 75px;
}

.color-picker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: -4px;
}

.color-picker_color {
  position: relative;
  width: 16.66%;
  padding: 4px;
}

@media screen and (max-width: 767px) {
  .color-picker_color {
    width: calc(100% / 5);
  }
}

@media screen and (min-width: 768px) {
  .color-picker_color:hover .tooltip {
    display: block;
  }
}

.color-picker_input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.color-picker_input:checked + .color-picker_label .color-picker_circle::after {
  opacity: 1;
}

.color-picker_label {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 100%;
  cursor: pointer;
}

.color-picker_circle {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 999px;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .color-picker_circle {
    border-width: 5px;
  }
  .color-picker_circle::after {
    top: calc(50% - 20%);
    left: calc(50% - 8%);
    width: 18%;
    height: 30%;
    border-right-width: 3px;
    border-bottom-width: 3px;
    opacity: 0;
  }
}

.color-picker_circle::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 999px;
  background: #ffffff;
  content: "";
}

.color-picker_circle::after {
  display: block;
  position: absolute;
  top: calc(50% - (1.25rem / 2 + 2px));
  left: calc(50% - (0.825rem / 2));
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: .825rem;
  height: 1.25rem;
  border-right: 2px solid #171717;
  border-bottom: 2px solid #171717;
  content: "";
  top: calc(50% - 25%);
  left: calc(50% - 10%);
  width: 25%;
  height: 40%;
  opacity: 0;
}

.color-picker_color {
  position: relative;
}

.color-picker_color.m-black .color-picker_circle::before {
  background: #000000;
}

.color-picker_color.m-black .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-black:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-black .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(0, 0, 0, 0.5);
}

.color-picker_color.m-gray .color-picker_circle::before {
  background: #999999;
}

.color-picker_color.m-gray .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-gray:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-gray .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(153, 153, 153, 0.5);
}

.color-picker_color.m-white .color-picker_circle::before {
  background: #ffffff;
  border-color: #e8e8e8;
}

.color-picker_color.m-white .color-picker_circle::after {
  border-color: rgba(0, 0, 0, 0.5);
}

.color-picker_color.m-white:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-white .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(0, 0, 0, 0.5);
}

.color-picker_color.m-brown .color-picker_circle::before {
  background: #9a6602;
}

.color-picker_color.m-brown .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-brown:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-brown .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(154, 102, 2, 0.5);
}

.color-picker_color.m-beige .color-picker_circle::before {
  background: #eed08a;
}

.color-picker_color.m-beige .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-beige:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-beige .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(238, 208, 138, 0.5);
}

.color-picker_color.m-olive .color-picker_circle::before {
  background: #656602;
}

.color-picker_color.m-olive .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-olive:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-olive .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(101, 102, 2, 0.5);
}

.color-picker_color.m-green .color-picker_circle::before {
  background: #669902;
}

.color-picker_color.m-green .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-green:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-green .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(102, 153, 2, 0.5);
}

.color-picker_color.m-blue .color-picker_circle::before {
  background: #3166cc;
}

.color-picker_color.m-blue .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-blue:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-blue .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(49, 102, 204, 0.5);
}

.color-picker_color.m-navy .color-picker_circle::before {
  background: #01287d;
}

.color-picker_color.m-navy .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-navy:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-navy .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(1, 40, 125, 0.5);
}

.color-picker_color.m-purple .color-picker_circle::before {
  background: #9f5ed2;
}

.color-picker_color.m-purple .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-purple:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-purple .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(159, 94, 210, 0.5);
}

.color-picker_color.m-pink .color-picker_circle::before {
  background: #ff99cb;
}

.color-picker_color.m-pink .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-pink:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-pink .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(255, 153, 203, 0.5);
}

.color-picker_color.m-red .color-picker_circle::before {
  background: #f80402;
}

.color-picker_color.m-red .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-red:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-red .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(248, 4, 2, 0.5);
}

.color-picker_color.m-orange .color-picker_circle::before {
  background: #ff6602;
}

.color-picker_color.m-orange .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-orange:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-orange .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(255, 102, 2, 0.5);
}

.color-picker_color.m-yellow .color-picker_circle::before {
  background: #ffcc03;
}

.color-picker_color.m-yellow .color-picker_circle::after {
  border-color: #ffffff;
}

.color-picker_color.m-yellow:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-yellow .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(255, 204, 3, 0.5);
}

.color-picker_color.m-gold .color-picker_circle::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#b76e00), color-stop(50%, #ffffff), to(#b76e00));
  background: linear-gradient(to bottom, #b76e00 0%, #ffffff 50%, #b76e00 100%);
}

.color-picker_color.m-gold .color-picker_circle::after {
  border-color: #b76e00;
}

.color-picker_color.m-gold:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-gold .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(183, 110, 0, 0.5);
}

.color-picker_color.m-silver .color-picker_circle::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), color-stop(50%, #ffffff), to(#9e9e9e));
  background: linear-gradient(to bottom, #9e9e9e 0%, #ffffff 50%, #9e9e9e 100%);
}

.color-picker_color.m-silver .color-picker_circle::after {
  border-color: #9e9e9e;
}

.color-picker_color.m-silver:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-silver .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(158, 158, 158, 0.5);
}

.color-picker_color.m-other .color-picker_circle::before {
  background: #ffffff;
  border-color: #e8e8e8;
}

.color-picker_color.m-other .color-picker_circle::after {
  border-color: rgba(0, 0, 0, 0.5);
}

.color-picker_color.m-other:hover .color-picker_label .color-picker_circle,
.color-picker_color.m-other .color-picker_input:checked + .color-picker_label .color-picker_circle {
  background-color: rgba(0, 0, 0, 0.5);
}

.color-picker_text {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
          transform: translateX(-50%) translateY(-50%) scale(0.8);
  color: #707070;
  font-size: 10px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .color-picker_text {
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    font-size: 3.5vw;
  }
}

.tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + (2px));
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: .25rem .5rem;
  border-radius: 3px;
  background-color: #707070;
  color: #ffffff;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
}

.tooltip::before {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 6px solid #707070;
  border-right: 6px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

.modal-footer .buttons {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

    /* --- Base Layout --- */
    .wrap {
      box-sizing: border-box;
      font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
      font-size: 16px;
      line-height: 1.875;
      color: #444;
      max-width: 750px;
      margin: 0 auto;
    }
    .wrap *, .wrap *:before, .wrap *:after { box-sizing: inherit; }
    @media only screen and (min-width: 768px) {
      .wrap { max-width: none; width: 100% !important; }
      .wrap .only-sp { display: none; }
    }
    .wrap img { vertical-align: bottom; max-width: 100%; width: auto; }
    .wrap ul { list-style-position: outside; padding: 0; margin: 0; }
    .wrap ul li { list-style-type: none; }
    .wrap h1, .wrap h2 { text-align: center; margin: 0; }
    
    /* --- Banner --- */
    .secret-banner {
  /* 鮮やかなエメラルドグリーンから、深みのある濃いグリーンへのグラデーション */
  background: linear-gradient(135deg, #00c853 0%, #007d32 100%);
  color: #ffffff;
  padding: 20px 10px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0 auto;
}

.secret-banner__sub { 
  font-size: 18px; 
  margin-bottom: 12px; 
  font-weight: bold; 
}

.secret-banner__sub span { 
  /* グリーンの上で最も映える、明るいイエロー（変更なしでOK） */
  color: #ffeb3b; 
}

.secret-banner__main { 
  font-size: 56px; 
  font-weight: bold; 
  margin-bottom: 12px; 
  letter-spacing: 0.05em; 
  line-height: 1; 
}

.secret-banner__date { 
  font-size: 24px; 
  font-weight: bold; 
  font-family: 'メイリオ', Meiryo, sans-serif;
}
    @media only screen and (max-width: 767px) {
      .secret-banner { padding: 15px 10px; }
      .secret-banner__sub { font-size: 4vw; }
      .secret-banner__main { font-size: 11vw; }
      .secret-banner__date { font-size: 5.5vw; }
    }

    /* --- Message Area --- */
    .sec.main { margin: 0 auto; width: 100%; }
    .sec.main .message-box {
      width: 100%;
      background-color: #fcedf2;
      padding: 12px 24px;
      margin: 0 auto;
      text-align: center;
    }
    .sec.main .message-box p {
      margin: 0 auto;
      font-size: 3.2vw;
      line-height: 1.6;
      color: #444;
    }
    .sec.main .attention {
      width: 94.6%;
      margin: 24px auto 0;
    }
    .sec.main .attention li {
      position: relative;
      padding-left: 1em;
      text-indent: -1em;
      font-size: 2.8vw;
      line-height: 1.6;
      color: #888;
    }
    @media only screen and (min-width: 768px) {
      .secret-banner, .sec.main .message-box, .sec.main .attention, .goods, .navigation-area {
        max-width: 1216px;
      }
      .sec.main .message-box p {
        font-size: 12px;
      }
      .sec.main .attention li {
        font-size: 11px;
      }
    }

    /* --- Headline Support Message --- */
    .goods-headline {
      margin: 60px auto 40px;
      text-align: center;
    }
    .goods-headline p {
      font-size: 28px;
      font-weight: bold;
      color: #555;
      line-height: 1.3;
    }
    .goods-headline p span.light-copy {
      font-weight: normal;
      display: block;
      margin-bottom: 2px;
      font-size: 0.85em;
    }
    @media only screen and (max-width: 767px) {
      .goods-headline { margin: 40px auto 20px; padding: 0 10px; }
      .goods-headline p { font-size: 6vw; }
    }

    /* --- Product Grid --- */
    .goods { width: 94%; margin: 0 auto 40px; text-align: center; }
    .product-list { display: flex; flex-wrap: wrap; margin: -10px; padding: 20px 0; }
    .product-list_item { width: 25%; padding: 10px; flex: 0 0 auto; box-sizing: border-box; }
    @media screen and (max-width: 767px) { 
      .product-list { margin: -4px; padding: 0; }
      .product-list_item { width: 50%; padding: 4px; } 
    }
    .product-box-body { position: relative; }
    .product-img { position: relative; width: 100%; border: 1px solid #e8e8e8; }
    .product-img_img { width: 100%; height: auto; vertical-align: bottom; }
    .product-img_tag { position: absolute; bottom: 0; left: 0; padding: .2em .8em; background-color: #c72937; color: #ffffff; font-size: 14px; }
    .product-name { margin-top: 10px; font-size: 14px; text-align: left; line-height: 1.4; height: 2.8em; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: #444; }
    @media screen and (max-width: 767px) { .product-name { font-size: 12px; } }

    /* --- Navigation Area --- */
    .navigation-area {
      margin: 80px auto;
      padding: 0 20px;
    }
    .navigation-headline {
      text-align: center;
      margin-bottom: 60px;
    }
    .navigation-headline h3 {
      font-size: 28px;
      font-weight: bold;
      color: #444;
      line-height: 1.4;
      letter-spacing: 0.05em;
    }
    .navigation-headline h3 span {
      display: block;
      font-size: 0.6em;
      font-weight: normal;
      color: #888;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    @media only screen and (max-width: 767px) {
      .navigation-area { margin: 60px auto; padding: 0 10px; }
      .navigation-headline h3 { font-size: 1.5rem; }
      .navigation-headline { margin-bottom: 40px; }
    }

    /* Category Search Styles */
    .category-search {
      margin-bottom: 80px;
    }
    .category-search__title, .feature-search__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 30px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
      text-align: left;
      color: #444;
    }
    .category-list-grid {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
      padding: 0;
      list-style: none;
    }
    .category-list-grid li {
      width: 16.666%; /* 横6列 (PC) */
      padding: 10px;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    .category-list-grid li a {
      display: block;
      text-align: center;
      text-decoration: none;
      color: #444;
      transition: opacity 0.3s;
    }
    .category-list-grid li a:hover {
      opacity: 0.7;
    }
    .category-list-grid li a span:first-child {
      display: block;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      margin: 0 auto 12px;
      overflow: hidden;
      background: #f7f7f7;
      border: 1px solid #f0f0f0;
    }
    .category-list-grid li a span:first-child img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .category-list-grid li a span:last-child {
      font-size: 12px;
      line-height: 1.3;
      display: block;
    }
    @media only screen and (max-width: 767px) {
      .category-list-grid li { width: 25%; padding: 5px; } /* 横4列 (SP) */
      .category-list-grid li a span:first-child { width: 70px; height: 70px; }
      .category-list-grid li a span:last-child { font-size: 10px; }
    }

    /* Feature Banner Styles */
    .inc-categorytop_brand-list.two-column {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
      padding: 0;
      list-style: none;
    }
    .inc-categorytop_brand-item {
      width: 25%; /* 横4列 (PC) */
      padding: 10px;
      box-sizing: border-box;
    }
    .inc-categorytop_brand-item a.link {
      display: block;
      text-decoration: none;
      transition: opacity 0.3s;
    }
    .inc-categorytop_brand-item a.link:hover {
      opacity: 0.8;
    }
    .inc-categorytop_brand-thumb {
      width: 100%;
      height: auto;
      aspect-ratio: 700 / 554;
      object-fit: cover;
      vertical-align: bottom;
      background-color: #f7f7f7;
    }
    @media only screen and (max-width: 767px) {
      .inc-categorytop_brand-item { width: 50%; } /* 横2列 (SP) */
    }



