.favorites-title-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.favorites-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

p.not-found {
  width: 750px;
  margin: 0 auto;
}

/* item section */

.items-section {
  /* background-color: #F3F1EF; */
  padding: 0 20px;
  /* display: flex; */
  /* flex-direction: column; */
  align-items: center;
  min-width: 750px;
  max-width: 1100px;
  margin: 64px auto 0;
}

.item-display-options {
  font-size: 18px;
  color: #661912;
  display: flex;
  align-items: center;
  margin: 16px 32px;
  column-gap: 24px;
}

.item-display-options span {
  font-weight: 500;
}

.item-display-options a {
  color: #661912;
  text-decoration: none;
  font-weight: 400;
}

.items-list {
  display: flex;
  flex-wrap: wrap;
  /* 2列表示に設定 */
  gap: 40px 24px;
  justify-items: center;
  max-width: 1032px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.item {
  flex: 0 1 calc(25% - 20px);
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  max-width: 240px;
  min-width: 240px;
  display: grid;
}

.item a.item-link {
  text-decoration: none;
  /* height: 346px; */
  color: #413622;
}

.item a.item-link:hover {
  opacity: 0.7;
}

.item-img {
  width: 100%;
  aspect-ratio: 1;
  /* background-color: white; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.item img {
  height: auto;
  display: block;
  width: 80100%;
}

.item-info h3 {
  font-size: 16px;
  font-weight: 500;
  height: 43px;
  color: #413622;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 10px 0 4px;
}

.item-info img {
  width: 10px;
}

.item-number-content {
  display: flex;
}

.price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fav-sale-label {
    color: #622023;
    display: inline-block;
    margin-left: 8px;
    font-weight: bold;
}


.action-buttons {
  display: flex;
  margin-top: 10px;
  width: 100%;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  justify-content: space-between;
}

.skuquantity {
  display: none;
}

.skubutton {
  align-self: stretch;
  background-color: #622023;
  min-height: 24px;
  width: 168px;
  margin: auto 0;
  padding: 6px 16px;
  border: none;
  cursor: pointer;
  color: #fff;
}

.remove-button {
  align-self: stretch;
  background-color: #9b9b9b;
  min-height: 24px;
  margin: auto 0;
  padding: 6px 16px;
  border: none;
  cursor: pointer;
  color: #fff;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 48px;
  column-gap: 5px;
}

.pagination ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  column-gap: 10px;
  font-size: 18px;
}

.pagination a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: #622023;
}

.pagination .numbers .current {
  color: #D8CDCD;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.owner-message-section {
  padding: 0 16px;
  margin: 100px auto;
  width: 750px;
}

.owner-message-inner {
  background-image: url('../img/owner-frame.png');
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  background-size: 100% 100%;
  display: flex;
  padding: 130px 70px;
  font-size: 16px;
}

.message {width: 127%;padding-top: 20px;}

.message p:not(:first-child) {
  margin-top: 32px;
}

.owner {
  margin-left: 23px;
  font-size: 14px;
  width: 48%;
}

.owner img {
  width: 100%;
  height: auto;
}

.owner p {
  margin-top: 16px;
  text-align: center;
}

.owner p.owner-name {
  font-weight: bold;
  margin-top: 4px;
}
