body {
  background-color: white;
  color: #fff;
  font-family: 'kozuka-gothic-pr6n', sans-serif;
}

.u-desktop {
  display: block;
}

.u-mobile {
  display: none;
}

.u-tablet {
  display: none;
}

/* リキッドレイアウト対応 */

html {
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ホバー */

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.account__button {
  background-color: #fff;
  background-image: url(../images/common/account-black.svg);
  background-position: 50% 150%;
  background-repeat: no-repeat;
  background-size: 90%;
  border: 0.0625rem solid #fff;
  border-radius: 60%;
  cursor: pointer;
  height: 34px;
  overflow: hidden;
  transition:
    background-image 0.3s,
    background-color 0.3s,
    border-color 0.3s;
  width: 34px;
}

.account__button:hover {
  background-color: #28292b;
  background-image: url(../images/common/account-white.svg);
  background-position: 50% 150%;
  background-repeat: no-repeat;
  background-size: 90%;
  border-color: transparent;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* カード内のカラムの設定 */
.card__wrap {
  display: flex;
  gap: 1rem;
  width: calc(100vw * 0.6);
  overflow: hidden;
  box-sizing: border-box;
}

.card__column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 左列（画像とフォローボタン） */
.card__image {
  width: calc(100vw * 0.2);
  height: calc(100vw * 0.2);
  overflow: hidden; /* 画像のはみ出しを防ぐ */
  display: flex; /* 子要素（画像）を中央揃えするため */
  justify-content: center;
  align-items: center;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比を保ちながら領域を埋める */
}

.cart_body_title {
  padding-top: 0%;
  font-size: 30px;
}

.cart_body_catch_phrase {
  font-size: 15px;
}

.card__image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.card__follow-btn {
  background: none;
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
}

/* 中央列（会社情報） */
.card__info-column {
  flex: 2; /* 伸縮比率はそのまま */
  padding: 0 1rem; /* 既存の余白 */
  overflow: hidden; /* 親要素を超える部分を非表示 */
  text-overflow: ellipsis; /* 超えた部分に「...」を表示 */
  white-space: nowrap; /* 1行で表示し、折り返さない */
  max-width: 100%; /* 親要素の幅に制限 */
}

.card__name {
  font-size: 24px;
  /* bold */
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333333;
  border-bottom: 1px solid #ddd;
}

.card__details p {
  margin: 0.25rem 0;
  font-size: 14px;
  color: #a69494;
  border-bottom: 1px solid #ddd;
}

.card__description {
  margin-top: 13px;
  color: #5c5757;
  font-size: 14px;
  width: 100%;
  height: calc(14px * 1.2 * 4); /* 3行分の高さ */
  line-height: 1.2;
  overflow-wrap: break-word; /* 長い単語を改行 */
  word-break: break-word; /* 単語の途中でも改行可能 */
  white-space: normal; /* 自然な改行を許可 */
  overflow: hidden; /* 超過部分を非表示にする */
  text-overflow: ellipsis; /* 超過部分を「...」で表示 */
}

.card__chat-icon {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: icon-move;
  aspect-ratio: 1/1;
  content: '';
  display: block;
  height: 70px;
  position: absolute;
  right: -25px;
  top: -10px;
  width: 70px;
}

.card__chat-link {
  display: block;
}

.card__chat-icon img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* 右列（ボタン） */
.card__actions-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: auto;
}

.card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
  width: 170px;
  height: 50px;
}

.card__btn:hover {
  background-color: #333;
}

.close-button {
  display: none;
}

.close-button span {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
}

.close-button.is-click span {
  width: 100%;
}

.close-button span:nth-child(1) {
  background-color: #1a1b1c;
  height: 2px;
  right: 50%;
  top: 30%;
  transform: translate(16px, 9px) rotate(37deg);
  width: 70%;
}

.close-button span:nth-child(2) {
  background-color: #1a1b1c;
  height: 2px;
  right: 50%;
  top: 70%;
  transform: translate(16px, -9px) rotate(-37deg);
  width: 70%;
}

.filter-list__title {
  align-items: center;
  color: #333333;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  width: 100%;
}

.filter-list__open-button {
  display: block;
  height: 1.5rem;
  position: relative;
  width: 1.5rem;
  padding-top: 5px;
}

.filter-list__open-button::before {
  content: '';
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border: solid #a79494;
  border-width: 0 3px 3px 0; /* 右と下のボーダーだけ表示 */
  transform: rotate(45deg); /* 初期状態: 下向き矢印 */
  transition: transform 0.3s;
}

.filter-list__open-button.is-open::before {
  transform: rotate(-135deg); /* 開いた状態: 上向き矢印 */
}

.filter-list__items {
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  display: flex;
  flex-direction: column;
  margin-left: 0.5rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  row-gap: 0.875rem;
}

.filter-list__item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.filter-list__image-pattern {
  aspect-ratio: 1/1;
  width: 3.9375rem;
}

.filter-list__image-pattern img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.filter-list__image-color {
  aspect-ratio: 1/1;
  width: 1.6875rem;
}

.filter-list__image-color img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.filter-list__checkbox {
  color: #111;
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 4px;
  max-width: 200px;
  padding-left: 30px; /* 右側から左側に余白を変更 */
  position: relative;
  vertical-align: middle;
  width: 100%;
}

.filter-list__checkbox::before,
.filter-list__checkbox::after {
  content: '';
  display: block;
  position: absolute;
}

.filter-list__checkbox::before {
  background-color: #fff;
  border: 0.0625rem solid #666464;
  border-radius: 0%;
  height: 1rem;
  left: 0; /* 左側に配置 */
  top: 8px;
  transform: translateY(-50%);
  width: 1rem;
}

.filter-list__checkbox::after {
  border-bottom: 0.125rem solid #28292b;
  border-left: 0.125rem solid #28292b;
  height: 0.5rem;
  opacity: 0;
  left: 0.0625rem; /* 左側に配置 */
  top: 0.125rem;
  transform: rotate(-45deg);
  width: 0.8125rem;
}

.filter-list__checkbox.filter-list__checkbox--color::after {
  top: 0.4375rem;
}

input[type='checkbox']:checked + .filter-list__checkbox::after {
  opacity: 1;
}

.filter-list__slider-note {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}

.filter-list__note-text {
  color: #1a1b1c;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
}

.filter-menu__button {
  background-color: #1a1b1c;
  border-radius: 60%;
  cursor: pointer;
  height: 68px;
  position: relative;
  width: 68px;
  z-index: 999;
}

.filter-menu__button span {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  transition:
    transform 0.5s,
    opacity 0.5s,
    visibility 0.5s,
    background-color 0.5s;
}

.filter-menu__button.is-click span {
  width: 100%;
}

.filter-menu__button span:nth-child(1) {
  height: 2px;
  right: 50%;
  top: 35%;
  transform: translateX(50%);
  width: 41.1%;
}

.filter-menu__button span:nth-child(2) {
  height: 2px;
  right: 44%;
  top: 50%;
  transform: translateX(50%);
  width: 27.9%;
}

.filter-menu__button span:nth-child(3) {
  height: 2px;
  right: 50%;
  top: 65%;
  transform: translateX(50%);
  width: 41.1%;
}

.filter-menu__button.is-click span:nth-child(1) {
  background-color: #fff;
  transform: translate(17px, 10px) rotate(37deg);
  width: 50%;
}

.filter-menu__button.is-click span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.filter-menu__button.is-click span:nth-child(3) {
  background-color: #fff;
  transform: translate(17px, -10px) rotate(-37deg);
  width: 50%;
}

.filter-menu__modal.modal {
  display: none;
}

.filter-text__button {
  display: none;
}

.filter-text__button:hover {
  color: #fdfdfd;
  opacity: 0.5;
}

.filter-text__button::after {
  background-image: url(../images/common/arrow-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 10px;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  width: 6px;
}

.filter-text__button:hover::after {
  transform: translate(4px, -50%);
}

.filter {
  position: sticky;
  top: 12.25rem;
  border-top: 1px solid #ddd;
}

.filter__lists {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0rem 0 0;
  widht: 100%;
}

.filter__lists:first-child {
  padding-top: 40px;
}

.filter__lists:last-child {
  padding-bottom: 40px;
}

.filter__logo {
  display: none;
}

.filter__logo img {
  height: 100%;
  width: 100%;
}

.filter__button-wrap {
  display: block;
  margin-top: 2.5rem;
}

.filter__button {
  background-color: #28292b;
  border: 0.0625rem solid #28292b;
  border-radius: 1.3125rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.8125rem 5.625rem;
  transition:
    background-color 0.3s,
    color 0.3s;
  white-space: nowrap;
}

.filter__button:hover {
  background-color: #fff;
  color: #28292b;
}

.hamburger-close {
  display: none;
}

.hamburger-close span {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
}

.hamburger-close.is-click span {
  width: 100%;
}

.hamburger-close span:nth-child(1) {
  background-color: #1a1b1c;
  height: 2px;
  right: 50%;
  top: 31%;
  transform: translate(16px, 9px) rotate(37deg);
  width: 70%;
}

.hamburger-close span:nth-child(2) {
  background-color: #1a1b1c;
  height: 2px;
  right: 50%;
  top: 69%;
  transform: translate(16px, -9px) rotate(-37deg);
  width: 70%;
}

.hamburger {
  display: block;
}

.hamburger:hover {
  color: #fdfdfd;
  opacity: 0.5;
}

.hamburger__items {
  cursor: pointer;
  display: block;
  height: 18px;
  position: relative;
  width: 30px;
  z-index: 999;
}

.hamburger__items span {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  transition:
    transform 0.5s,
    opacity 0.5s,
    visibility 0.5s,
    background-color 0.5s;
}

.hamburger__items.is-click span {
  width: 100%;
}

.hamburger__items span:nth-child(1) {
  height: 1px;
  left: 0;
  top: 0;
  width: 100%;
}

.hamburger__items span:nth-child(2) {
  height: 0.0625rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.hamburger__items span:nth-child(3) {
  bottom: 0;
  height: 0.0625rem;
  right: 0;
  width: 100%;
}

.header-layout {
  padding-bottom: 10px 0 20px;
}

.header-nav {
  height: inherit;
}

.header-nav.is-visible {
  transform: translateX(0%);
}

.header-nav__lists {
  align-items: center;
  display: flex;
  gap: 10px;
  height: inherit;
  justify-content: center;
}

.header-nav__list {
  height: inherit;
  padding: 0 15px;
}

.header-nav__link {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  height: inherit;
  line-height: 1;
  position: relative;
  transition:
    color 0.3s,
    opacity 0.3s;
}

.header-nav__link:hover {
  color: #fdfdfd;
  opacity: 0.5;
}

.header-nav__link::after {
  background-color: #fdfdfd;
  bottom: 32px;
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.3s;
  width: 100%;
}

.header-nav__link:hover::after {
  transform: scaleX(1);
}

.header-option {
  align-items: center;
  display: flex;
}

.header-option__dimension {
  margin-left: 2.25rem;
}

.header-option__item.modal {
  margin-left: 2.25rem;
}

.header-tool__item {
  margin-left: auto;
}

.header {
  background-color: #28292b;
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1;
}

.header__inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5625rem 1.25rem;
  width: 100%;
}

.header__wrap {
  display: flex;
  flex-direction: column;
}

.header__top-block {
  align-items: center;
  display: grid;
  grid-template-columns: 20% 60% 20%;
}

.header__logo {
  max-width: 210px;
  min-width: 180px;
  width: 13.125rem;
}

.header__logo img {
  width: 100%;
}

.header__nav-item {
  height: 92px;
}

.header__hamburger {
  display: none;
}

.header__tool {
  margin-left: auto;
  padding-right: 1.875rem;
}

.header__title {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 30px;
  text-align: center;
}

.header__bottom-wrap {
  align-items: center;
  display: flex;
}

.header__search {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  padding-left: 72px;
}

.header__registration {
  color: #ff0000;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  margin-left: 50px;
  padding-top: 12px;
}

.header__sp-registration {
  display: none;
}

.header__text-block {
  padding-top: 5px;
  text-align: center;
}

.header__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.header__text-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 0.625rem;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1430px;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.supplier-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
  background-color: white;
}

.main-wrap {
  align-items: flex-start;
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 5.625rem;
  width: 80%;
}

.page-header {
  padding-top: 223px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  width: 80%;
}

.page-header span {
  font-size: 42px;
  color: #333333;
  height: 128px;
}

.filter-results {
  text-align: left;
  width: 100%;
}

.filter-results p {
  margin: 0;
  font-size: 14px;
  color: #a69494;
}

.filter-results span {
  font-size: 28px;
  color: #5c5757;
}

.modal {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.modal__button {
  background-color: white;
  border: 0.0625rem solid #1a1b1c;
  color: #1a1b1c;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.4375rem 2.9375rem 0.4375rem 4.3125rem;
  position: relative;
  transition:
    background-color 0.3s,
    color 0.3s,
    background-image 0.3s;
}

.modal__button::before {
  background-image: url(../images/common/dress-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 1rem;
  left: 30%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
}

.modal__button.is-click {
  background-color: #f1aec8;
  color: #fff;
}

.modal__button.is-click::before {
  background-image: url(../images/common/dress-white.svg);
}

.modal__wrap {
  background-color: #fff;
  content: '';
  display: block;
  height: -moz-min-content;
  height: min-content;
  max-height: calc(100vh - 6.875rem);
  opacity: 0;
  overflow-y: auto;
  padding: 2.5rem 3.75rem;
  position: absolute;
  right: -35.125rem;
  top: 2.625rem;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  visibility: hidden;
}

.modal__lists {
  grid-column-gap: 2.125rem;
  -moz-column-gap: 2.125rem;
  grid-row-gap: 1.25rem;
  column-gap: 2.125rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 1.25rem;
}

.modal__list {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
}

.modal__list:hover {
  opacity: 0.6;
}

.modal__type-name {
  color: #111;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2.2142857143;
  white-space: nowrap;
}

.modal__type-image {
  aspect-ratio: 1/1;
  width: 4.75rem;
}

.modal__type-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.modal__wrap.is-show {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  position: relative;
}

.nav-list__title {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  height: inherit;
  line-height: 1;
  position: relative;
  transition:
    color 0.3s,
    opacity 0.3s;
}

.nav-list__title:hover {
  color: #fdfdfd;
  opacity: 0.5;
}

.nav-list__title::after {
  background-color: #fdfdfd;
  bottom: 2rem;
  content: '';
  display: block;
  height: 0.0625rem;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.3s;
  width: 100%;
}

.nav-list__title:hover::after {
  transform: scaleX(1);
}

.nav-list__items {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  padding: 1rem;
  position: absolute;
  top: 5rem;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  visibility: hidden;
  width: -moz-fit-content;
  width: fit-content;
}

.nav-list__item {
  color: #1a1b1c;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
}

.nav-list__item:hover {
  opacity: 0.5;
  transform: translateY(-13%);
}

.nav-list:hover > .nav-list__items,
.nav-list__item:hover > .nav-list__items {
  opacity: 1;
  visibility: visible;
}

.pagination-layout {
  padding-bottom: 5.625rem;
}

.pagination__wrap {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.pagination__items {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.pagination__item,
.pagination__before,
.pagination__after {
  align-items: center;
  background-color: #fff; /* 背景を白に設定 */
  border: 1px solid #d3c7c3; /* 薄いグレーの枠線 */
  border-radius: 50%; /* 完全に丸くする */
  color: #8d7364; /* テキストの色（薄いブラウン系） */
  display: flex;
  font-size: 1rem;
  font-weight: bold;
  height: 3rem; /* アイテムの高さ */
  justify-content: center;
  line-height: 1;
  transition:
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
  width: 3rem; /* アイテムの幅 */
}

/* ホバー時のスタイル */
.pagination__item:hover,
.pagination__before:hover,
.pagination__after:hover {
  background-color: #d3c7c3; /* 薄いグレーの背景 */
  color: #fff; /* テキストの色を白に変更 */
  border-color: #8d7364; /* 枠線を濃い色に変更 */
}

/* 現在のページのスタイル */
.pagination__item--current {
  background-color: #e8e3e0; /* 現在のページの背景色（薄いグレー） */
  color: #8d7364; /* テキストの色 */
  border: 1px solid #d3c7c3; /* 現在のページの枠線色 */
  font-weight: bold; /* 強調 */
}

/* ページ全体の配置 */
.pagination {
  display: flex;
  gap: 0.5rem; /* アイテム間の間隔 */
  justify-content: center;
  align-items: center;
}

.pagination__items .current {
  background-color: #e8e3e0; /* 背景色（薄いグレー） */
  color: #8d7364; /* 文字色（薄いブラウン） */
  border: 1px solid #d3c7c3; /* 枠線色 */
  font-weight: bold; /* 強調 */
}

.pagination__dot {
  font-size: 1rem;
}

.current {
  background-color: #1a1b1c;
  color: #fff;
}

.product {
  width: 100%;
}

/* 全体のリストの設定 */
.product__lists {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各カードのスタイル */
.product__list.card {
  display: flex;
  background-color: #fff;
  padding-top: 47px; /* 上の余白のみ */
  gap: 1rem;
}

.search__wrap {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.search__title {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}

.search__icon {
  display: none;
}

.search__icon img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.search__input-sp {
  display: none;
}

.search__input-text {
  background-color: #fff;
  border-radius: 5px;
  color: #28292b;
  display: flex;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  padding: 6px 10px;
  width: 371px;
}

.search__input::before {
  background-image: url(../images/common/search-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 38px;
  left: 0;
  position: relative;
  width: 38px;
}

.select-tag-layout {
  margin-bottom: 1.875rem;
}

.select-tag {
  align-items: center;
  display: flex;
  gap: 0.9375rem;
}

#serach_lists {
  display: none;
}
.select-tag__wrap {
  background-color: #fff;
  width: 100%;
}

.select-tag__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.9375rem;
  padding: 0.5rem 0.9375rem;
}

.select-tag__item,
.select-tag__delete {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
}

.select-tag__item {
  align-items: center;
  background-color: #343434;
  border-radius: 0.9375rem;
  display: inline-flex;
  padding: 0.25rem 0.625rem 0.25rem;
}

.select-tag__item::before {
  content: '×';
  display: block;
  margin-right: 0.125rem;
  padding-bottom: 0.125rem;
  position: relative;
}

.select-tag__delete {
  margin-left: auto;
  white-space: nowrap;
}

.select-tag {
  align-items: center;
  display: flex;
  gap: 0.9375rem;
}

.select-tag__wrap {
  background-color: #fff;
  width: 100%;
}

.select-tag__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.9375rem;
  padding: 0.5rem 0.9375rem;
}

.select-tag__item,
.select-tag__delete {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
}

.select-tag__item {
  align-items: center;
  background-color: #343434;
  border-radius: 0.9375rem;
  display: inline-flex;
  padding: 0.25rem 0.625rem 0.25rem;
}

.select-tag__item::before {
  content: '×';
  display: block;
  margin-right: 0.125rem;
  padding-bottom: 0.125rem;
  position: relative;
}

.select-tag__delete {
  margin-left: auto;
  white-space: nowrap;
}

.text-wrap {
  align-items: center;
  display: flex;
  margin-left: 0.5rem;
  margin-top: 1rem;
}

.text-wrap input[type='number'] {
  border: 0.0625rem solid #1a1b1c;
  color: #1a1b1c;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  width: 5rem;
}

.text-wrap span {
  color: #1a1b1c;
  display: block;
  font-size: 1rem;
  font-weight: 300;
  margin: 0 0.25rem;
}

.noUi-value.noUi-value-horizontal.noUi-value-large {
  font-size: 0.6875rem;
  font-weight: 300;
}

.noUi-value-horizontal {
  transform: translate(-50%, 1.25rem);
}

.noUi-horizontal .noUi-handle {
  border-radius: 6.25rem;
  height: 1.5625rem;
  right: -0.8125rem;
  top: -0.5rem;
  width: 1.5625rem;
}

.noUi-horizontal {
  height: 0.75rem;
}

.noUi-connect {
  background: #1a1b1c;
}

.noUi-connects {
  background: #fff;
}

.range-slider.noUi-target.noUi-ltr.noUi-horizontal.noUi-txt-dir-ltr,
.range-slider-price.noUi-target.noUi-ltr.noUi-horizontal.noUi-txt-dir-ltr {
  margin-top: 0.9375rem;
  width: 90%;
}

.noUi-pips-horizontal {
  padding: 0.75rem 0;
}

.inner-block {
  padding-bottom: 5rem;
  width: 90%;
}

.noUi-target {
  left: 0.5rem;
}

.unit {
  color: #1a1b1c;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  margin-left: 0.5rem;
}

.noUi-handle:after,
.noUi-handle:before {
  left: 0.5625rem;
  top: 0.3125rem;
}

.noUi-handle:after {
  left: 0.8125rem;
}

.inner-block {
  padding-bottom: 3rem;
}

.filter-list__noUiSlider.noUiSlider-wrap.standard {
  width: 100%;
}

.noUi-base,
.noUi-connects {
  width: 100%;
}

@keyframes icon-move {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.radio-group {
  display: flex;
  flex-direction: column;
}

.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.radio-circle {
  width: 16px;
  height: 16px;
  border: 2px solid #333333;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.radio-circle.selected::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #333333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.moq-input {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.moq-input input {
  width: 60px;
  padding: 4px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 8px;
}

.moq-info {
  display: flex;
  align-items: flex-start;
  color: #a0a0a0;
  font-size: 0.9em;
  margin-top: 8px;
}

.info-icon {
  margin-right: 8px;
}

.search-container {
  height: auto;
  overflow: visible;
  width: 20%;
}

.product-layout {
  width: 80%;
  border-top: 1px solid #ddd; /* 上部の線のみ */
}

/*# sourceMappingURL=style.css.map */
