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: 2.125rem;
  overflow: hidden;
  transition:
    background-image 0.3s,
    background-color 0.3s,
    border-color 0.3s;
  width: 2.125rem;
}

.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__wrap {
  width: 100%;
}

.card__image {
  position: relative;
  width: calc((100vw * 0.55) / 4); /* 横幅をレスポンシブ対応 */
  height: calc((100vw * 0.55) / 4); /* 高さを固定 */
  background-color: #28292b;
  cursor: pointer;
  margin-top: 0.5rem;
  overflow: hidden; /* 枠外に出た画像を非表示 */
}

.card__image img {
  width: 100%; /* 親要素の幅に合わせる */
  height: 100%; /* 親要素の高さに合わせる */
  object-fit: cover; /* 全体を覆うように表示 */
  object-position: center; /* トリミングを中央基準に */
}

.card__title {
  position: absolute; /* 絶対配置で右上に配置 */
  top: 0.5rem; /* 上の余白 */
  right: 0.5rem; /* 右の余白 */
  color: #a69494; /* テキストの色 */
  font-size: 10px; /* フォントサイズ */
  line-height: 1;
  padding: 0.25rem 0.5rem; /* 内側の余白 */
  background-color: white;
}

.card__favorite {
  position: absolute; /* 右下に配置 */
  bottom: 0.5rem; /* 下からの余白 */
  right: 0.5rem; /* 右からの余白 */
  width: 20px; /* 幅を固定 */
  height: calc(30px * 0.875); /* 高さを固定 */
  display: flex; /* 中央揃え */
  align-items: center;
  justify-content: center;
  cursor: pointer; /* ポインターを表示 */
}

.card__image img:hover {
  opacity: 0.9;
  transform: scale(1.2);
}

.card__image img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s,
    opacity 0.4s;
  width: 100%;
}

.card__contents {
  margin-top: 0.625rem;
}

.card__content {
  -moz-column-gap: 0.3125rem;
  align-items: flex-start;
  column-gap: 0.3125rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 0%;
}

.card__product-number {
  font-size: 16px;
}

.card__product-text {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.card__favorite {
  cursor: pointer;
  height: 1.375rem;
  margin-left: auto;
  margin-top: 0.3125rem;
}

.card__favorite img {
  height: 100%;
  width: 100%;
  filter: none;
}

.card__detail-area {
  height: 100%;
  width: 100%;
}

.card__detail {
  overflow: hidden;
  max-height: 300px;
  max-width: 200px;
}

.card__detail-lists {
  display: flex;
  flex-wrap: nowrap; /* 折り返さない */
  gap: 0.625rem;
  margin-top: 0.625rem;
  overflow: hidden; /* はみ出た部分を隠す */
  width: 100%; /* 必要に応じて幅を調整 */
}

.card__detail-list {
  color: #5c5757; /* テキストカラー */
  font-size: 14px; /* フォントサイズ */
  line-height: 1; /* 行の高さ */
  text-overflow: ellipsis; /* 省略記号を追加 */
  white-space: nowrap; /* 1行に制限 */
  overflow: hidden; /* はみ出た部分を隠す */
  flex-shrink: 1; /* 子要素が縮むことを許可 */
  max-width: 100%; /* 幅を制限 */
}

.card__detail-company {
  padding-top: 10px;
  color: #a69494;
  fot-size: 14px;
  lien-height: 1;
  font-weight: 700; /* 太字 */
}

.cart__image {
  aspect-ratio: 456/408;
  cursor: pointer;
  height: 2.25rem;
  width: 2.25rem;
}

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

.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: 31%;
  transform: translate(16px, 9px) rotate(37deg);
  width: 70%;
}

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

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

.dimension__item {
  background-color: #fff;
  border: 0.0625rem solid #707070;
  border-radius: 1rem;
  color: #1a1b1c;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.25rem 0.9375rem;
  transition:
    color 0.3s,
    background-color 0.3s;
}

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

.filter-list__title {
  display: flex; /* フレックスボックスを有効化 */
  justify-content: space-between; /* 左右の端に要素を配置 */
  align-items: center; /* 縦方向の中央揃え */
  color: #333333; /* テキスト色 */
  font-size: 20px; /* フォントサイズ */
  font-weight: 300; /* フォントの太さ */
  line-height: 1; /* 行の高さ */
  width: 100%; /* 横幅いっぱいに広げる */
  padding: 0; /* 不要なパディングをリセット */
}

.filter-list__open-button {
  display: inline-flex; /* フレックスボックス内での配置 */
  justify-content: center; /* 中央揃え（横方向） */
  align-items: center; /* 中央揃え（縦方向） */
  width: 20px; /* ボタンの幅 */
  height: 20px; /* ボタンの高さ */
  color: #111; /* アイコンやテキストの色 */
  cursor: pointer; /* ポインターカーソル */
  font-size: 14px; /* アイコンサイズ */
}

.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;
  max-height: none;
  overflow-y: hidden;
  padding-bottom: 1rem;
  row-gap: 0.875rem;
  color: #5c5757;
  font-size: 14px;
}

.filter-list__items.filter-list__items--material,
.filter-list__items.filter-list__items--function {
  grid-template-columns: 1fr;
}

.filter-list__items.filter-list__items--pattern,
.filter-list__items.filter-list__items--sustainable {
  grid-template-columns: min-content 1fr;
}

.filter-list__item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.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%;
}

.digital-texture-description {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 180px;
}

.info-icon {
  width: 1rem;
  height: 1rem;
}

.description-text {
  text-align: left;
}

.filter-list__checkbox {
  color: #5c5757;
  cursor: pointer;
  font-size: 14px;
  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: 4.25rem;
  position: relative;
  width: 4.25rem;
  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: 0.125rem;
  right: 50%;
  top: 35%;
  transform: translateX(50%);
  width: 41.1%;
}

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

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

.filter-menu__button.is-click span:nth-child(1) {
  background-color: #fff;
  transform: translate(1.0625rem, 0.625rem) 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(1.0625rem, -0.625rem) rotate(-37deg);
  width: 50%;
}

.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%);
}

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

.wrapper {
  align-items: flex-start;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 5.625rem;
  width: 80%;
  height: auto;
}

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

.page-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.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;
}

.dropdown-container {
  margin: 20px auto;
  max-width: 300px;
}

.dropdown-wrapper-for-inventory {
  position: relative;
  display: flex;
  width: 200px; /* 必要に応じて調整 */
  border-bottom: 1px solid #ccc; /* 下線 */
}

.dropdown {
  appearance: none; /* デフォルトの矢印を非表示 */
  -webkit-appearance: none; /* Safari対応 */
  -moz-appearance: none; /* Firefox対応 */
  background: none; /* 背景を透明にする */
  border: none; /* 枠線を削除 */
  padding: 8px 30px 8px 0; /* 右に余白を追加 */
  width: 100%; /* 幅を親要素に合わせる */
  color: #a69494; /* テキストの色 */
  font-size: 14px; /* フォントサイズ */
  cursor: pointer;
  padding-left: 10px;
}

.dropdown:hover {
  border-color: #888;
}

.dropdown:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
}

.filter {
  position: relative;
  width: 100%;
  height: auto;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-sizing: border-box;
  padding-top: 20px;
}

.filter__wrap {
  overflow-y: hidden;
  width: 100%;
}

.filter__lists {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.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: none;
}

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

.hamburger__items {
  cursor: pointer;
  display: block;
  height: 1.125rem;
  position: relative;
  width: 1.875rem;
  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-category {
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.header-category__lists {
  display: flex;
  gap: 3.4375rem;
  justify-content: center;
}

.header-category__list {
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition:
    color 0.3s,
    opacity 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}

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

.header-layout {
  padding-top: 20px;
}

.header-nav {
  height: inherit;
}

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

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

.header-nav__list {
  height: inherit;
  padding: 0 0.9375rem;
}

.header-nav__link {
  align-items: center;
  display: flex;
  font-size: 1rem;
  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: 2rem;
  content: '';
  display: block;
  height: 0.0625rem;
  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-tool {
  display: flex;
}

.header-tool__search {
  margin-top: 0.3125rem;
}

.header-tool__item:not(:first-child) {
  margin-left: 1rem;
}

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

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

.header__wrap {
  grid-row-gap: 0.625rem;
  align-items: center;
  display: grid;
  grid-template-columns: 20% 60% 20%;
  row-gap: 0.625rem;
}

.header__logo {
  margin-left: 1.25rem;
  width: 13.125rem;
}

.header__logo img {
  width: 100%;
}

.header__nav-item {
  height: 5.75rem;
}

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

.header__option-item {
  content: '';
  left: calc(50% - min(55.625rem, 46.5%));
  margin-left: auto;
  position: absolute;
  top: 7.5rem;
}

.header__option-item .modal {
  display: none;
}

.header__category-item {
  order: 5;
  padding: 0.875rem 0 1.3125rem;
}

.header__tool .modal {
  display: none;
}

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

.is-change {
  color: #f1aec8;
}

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

.search-form {
  width: 100%;
}

.product-layout {
  width: 80%;
}

.search-wrapper {
  position: relative; /* アイコンを絶対配置する基準 */
  width: 100%; /* 必要に応じて幅を調整 */
}

.search-input {
  width: 100%; /* 入力フィールドの幅を親要素に合わせる */
  height: 40px; /* 入力フィールドの高さ */
  padding-right: 40px; /* 右端にアイコン分の余白を確保 */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* パディングを含めた幅を計算 */
  color: #333;
}

.search-label {
  font-size: 14px;
  color: #a69494;
  margin-bottom: 15px; /* ラベルの下に余白を追加 */
  display: block; /* ラベルをブロック表示に変更して適用 */
}

.search-button {
  padding: 8px 16px;
  background-color: #218b31;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-button:hover {
  background-color: #196526;
}

.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--selected {
  background-color: #f1aec8 !important;
  color: #fff;
}

.modal__button--selected::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 - 11.5rem);
  opacity: 0;
  overflow-y: auto;
  padding: 2.5rem 1.5rem;
  position: absolute;
  right: -32.5rem;
  top: 2.625rem;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  visibility: hidden;
}

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

.modal__list {
  padding: 0.6rem;
  gap: 0.2rem;
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
  position: relative;
}

.modal__list:hover {
  opacity: 0.6;
}

.modal__list--selected {
  width: 100%;
  height: 100%;
}

.modal__list--selected::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid red !important;
}

.modal__type-name {
  flex-grow: 1;
  color: #111;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25;
  word-break: break-word;
}

.modal__type-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
}

.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: 1rem;
  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: 1rem;
  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__inner {
  flex-grow: 1;
}

.product__wrap {
  position: relative;
}

.product__lists {
  grid-row-gap: 4rem;
  grid-column-gap: 2.3125rem;
  -moz-column-gap: 2.3125rem;
  column-gap: 2.3125rem;
  display: grid;
  grid-template-columns: repeat(4, calc((100vw * 0.55) / 4));
  row-gap: 4rem;
  border: none;
}

.search {
  border-bottom: 0.0625rem solid #fff;
  display: none;
  height: 1.625rem;
  line-height: 1;
  max-width: 12.5rem;
  opacity: 0;
  padding-right: 1.625rem;
  pointer-events: none;
  position: relative;
  visibility: hidden;
  width: 12.5rem;
}

.search::after {
  background-image: url(../images/common/search-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 1.3125rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3125rem;
}

.search input[type='text'] {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  padding-left: 0.3125rem;
  position: relative;
  width: 100%;
}

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

.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;
}

.u-bookmark img {
  -webkit-mask-image: url('../images/common/favorite-icon-white.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100%;
  background-color: #fff;
  height: 100%;
  mask-image: url('../images/common/favorite-icon-white.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100%;
  width: 100%;
}

.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%;
}

#mixing-type-screen-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 他の要素の上に表示 */
}

#mixing-type-screen-panel.hidden {
  display: none; /* 初期状態で非表示 */
}

#function-screen-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 他の要素の上に表示 */
}

#function-screen-panel.hidden {
  display: none; /* 初期状態で非表示 */
}

/* パネルコンテンツ */
.panel-content {
  width: 100%; /* パネルの幅 */
  max-width: 70%;
  height: auto;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  overflow-y: auto; /* スクロール可能に */
}

.panel-header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between; /* 左右に分散配置 */
  align-items: center;
  margin-bottom: 20px;
  padding: 0 30px; /* 余白を調整 */
  border-bottom: 1px solid #ddd; /* ヘッダー下に区切り線を追加 */
}

/* パネルタイトル */
.panel-header span {
  color: #333333;
  font-size: 20px;
  text-align: left;
}

.panel-body {
  width: 70%;
  margin: 30px 70px;
}

/* ボタンのスタイル */
.panel-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  padding-bottom: 36px;
}

.button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  width: 200px;
  height: 50px;
}

.reset-button {
  background: white;
  border: 1px solid black;
  color: black;
}

.select-button {
  background: black;
  color: white;
}

.button:hover {
  opacity: 0.9;
}

/* スクロールバーのカスタマイズ (オプション) */
.panel-content::-webkit-scrollbar {
  width: 8px;
}

.panel-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.button-list {
  display: flex;
  flex-direction: column; /* 縦方向に配置 */
  gap: 10px; /* 各項目の間隔 */
}

.button-label {
  display: flex; /* フレックスボックスで配置 */
  justify-content: space-between; /* 左右に配置 */
  align-items: center; /* 垂直方向で中央揃え */
  padding: 10px 15px; /* 内側の余白 */
  background-color: #ede9e9; /* 背景色 */
  color: #a79494; /* テキストカラー */
  border-radius: 5px; /* 角を丸める */
  border: 1px solid #d3d3d3; /* 枠線 */
  font-size: 16px; /* フォントサイズ */
}

.label-text {
  color: #a79494; /* ラベルテキストのカラー */
  text-align: left; /* 左揃え */
}

.close-text {
  color: #a79494; /* バツ記号のカラー */
  font-size: 20px; /* バツ記号のサイズ */
}

.search-history-panel {
  margin-top: 10px;
  margin-bottom: 14px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  height: auto;
}

.search-history-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: #ede8e7;
  border-radius: 20px;
  font-size: 14px;
  color: #8c7f7f;
}

.search-word {
  margin-right: 5px;
}

.remove-icon {
  display: inline-flex; /* 要素をフレックスボックス化 */
  justify-content: center; /* 水平方向に中央揃え */
  align-items: center; /* 垂直方向に中央揃え */
  width: 20px; /* 円の幅 */
  height: 20px; /* 円の高さ */
  border-radius: 50%; /* 丸くする */
  background-color: #f0f0f0; /* 背景色 */
  color: #a69494; /* 文字色 */
  font-size: 12px; /* フォントサイズ */
  border: 1px solid #a69494; /* 枠線 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

.filter-grid {
  display: grid;
  grid-template-rows: repeat(10, auto); /* 1列あたり最大10行 */
  grid-auto-flow: column; /* 行が埋まると次の列に進む */
  gap: 10px; /* 各要素の間隔を設定 */
}

.panel-close-button {
  position: relative;
  width: 16px;
  height: 16px;
  background-color: transparent; /* 背景を透明に */
  cursor: pointer; /* ポインターを表示 */
  padding: 0; /* 余白をなくす */
  color: black;
}

.panel-close-button::before,
.panel-close-button::after {
  content: '';
  position: absolute;
  top: 50%; /* 縦の中央 */
  left: 50%; /* 横の中央 */
  width: 70%; /* 線の長さ */
  height: 2px; /* 線の太さ */
  background-color: black; /* 線の色 */
  transform-origin: center; /* 回転の基点を中央に */
}

.panel-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg); /* 斜線1 */
}

.panel-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg); /* 斜線2 */
}

.hidden {
  display: none;
}

.icon-button {
  position: absolute;
  top: 50%; /* 垂直方向に中央揃え */
  right: 10px; /* 入力フィールドの右端から10px */
  transform: translateY(-50%); /* 縦方向の位置調整 */
  width: 30px; /* ボタンの幅（アイコンのサイズに合わせて調整） */
  height: 30px; /* ボタンの高さ */
  background: none; /* ボタンの背景を透明に */
  border: none; /* ボタンの枠線を削除 */
  padding: 0; /* 余白をリセット */
  cursor: pointer; /* カーソルをポインタに変更 */
}

.icon-button img {
  width: 20px; /* アイコンサイズ */
  height: 20px;
}

.supplier_favorite-button {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-decoration: none;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #000000;
  padding: 0 2rem;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  white-space: nowrap;
}

.supplier_favorite-button:hover {
  background: #decdcd;
}

.supplier_favorite-button img {
  width: 20%;
  height: auto;
}

.supplier_favorite-button span {
  color: #333;
  font: normal normal bold 12px/28px Montserrat;
}

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