.item-page-header {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  padding: 15px 0 0;
  align-items: center;
}
@media (min-width: 751px) {
	.item-page-header {
		max-width: 80%;
	}
}
.item-page-header .crumbsList {
  padding: 0;
  margin: 0;
  width: 60%;
}
.item-page-header .filter--show {
  font-size: 1.1rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .item-page-header .filter--show {
    font-size: 1.3rem;
  }
  .item-page-header .crumbsList {
    width: 80%;
  }
}
.item-page-header .filter-box {
  position: absolute;
  border: solid 1px #707070;
  background: white;
  width: calc(100% - 25px);
  bottom: -12px;
  transform: translateY(100%);
  padding: 24px 0 0;
  font-family: "Josefin Sans";
  right: 17px;
  display: none;
}
@media (min-width: 751px) {
  .item-page-header .filter-box {
    width: 350px;
    bottom: -12px;
    right: min(4.1666666667vw, 75px);
  }
}
.item-page-header .filter-box__close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}
.item-page-header .filter-box__ttl {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 45px;
}
.item-page-header .filter-box__content {
  padding: 0 24px 16px;
}
.item-page-header .filter-box__content label {
  font-size: 1.2rem;
  margin: 0;
}
.item-page-header .filter-box .item-list-filter__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.item-page-header .filter-box .item-list-filter__list .jsFiltering {
  position: relative;
  padding-left: 24px;
  font-size: 1.2rem;
}
.item-page-header .filter-box .item-list-filter__list .jsFiltering:hover {
  opacity: 1;
}
.item-page-header .filter-box .item-list-filter__list .jsFiltering::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #323232;
  background-color: #fff;
}
.item-page-header .filter-box .item-list-filter__list .checked .jsFiltering::after {
  top: 50%;
  left: 0;
  height: 16px;
  width: 16px;
  background: #000;
  content: "";
  display: block;
  position: absolute;
  transform: translateY(-50%);
  border-radius: 50%;
}
.item-page-header .filter-box .filter-menu__color-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.item-page-header .filter-box .filter-menu__color-list .jsFiltering {
  position: relative;
  padding-left: 24px;
  font-size: 1.2rem;
}
.item-page-header .filter-box .filter-menu__color-list .jsFiltering:hover {
  opacity: 1;
}
.item-page-header .filter-box .filter-menu__color-list .white .item-list-filter__color-chip {
  border: 1px solid #AFAFAF;
}
.item-page-header .filter-box .filter-menu__color-list .item-list-filter__color-chip {
  position: absolute;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 1px solid #707070;
}
.item-page-header .filter-box .filter-menu__color-list .checked .jsFiltering::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  border: 1px #707070 solid;
  top: 50%;
  left: -3px;
  background-color: transparent;
  transform: translateY(-50%);
}
.item-page-header .filter-box .filter-section {
  margin-top: 40px;
}
.item-page-header .filter-box .filter-section__ttl {
  margin-bottom: 16px;
}
.item-page-header .filter-box__bottom {
  position: sticky;
  left: 0;
  bottom: 0;
  padding: 24px 24px 30px;
  display: grid;
  grid-template-columns: 9fr 20fr;
  gap: 7px;
}
.item-page-header .filter-box__bottom button {
  display: grid;
  place-content: center;
  height: 45px;
  font-weight: 500;
  font-size: 1.3rem;
  border-radius: 23px;
}
.item-page-header .filter-box__bottom .jsResetFiltering {
  border: solid 1px #666666;
  color: #666666;
  background: white;
}
.item-page-header .filter-box__bottom .jsSubmitFiltering {
  background: #323232;
  color: white;
}
.item-page-header .sort-box {
	display: inline-block;
	position: relative;
	width: 200px;
	border: none;
}
#sort-select {
	border: none;
}

.mainContents {
  padding: 0;
  max-width: 100%;
}
@media (max-width: 1023px) {
	.mainContents {
		padding: 0;
	}
}
.mainContents .itemList .goodsList {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 10px;
	margin-bottom: 20px;
}
@media (min-width: 1024px) {
	.mainContents .itemList .goodsList {
		grid-template-columns: repeat(4, 1fr);
		gap: 50px 20px;
	}
	.mainContents {
		max-width: 80%;
		margin: 0 auto 50px;
	}
}
.item-pagination .view-more{
	display: none;
}

.ty-sort-dropdown {
    position: relative;
    display: inline-block;
    font-size: 12px;
}

.ty-sort-dropdown__wrapper {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.ty-sort-dropdown__wrapper:hover {
    background-color: #AFAFAF;
}

.ty-sort-dropdown__wrapper svg {
    margin-left: 5px;
}

.ty-sort-dropdown__content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    display: none;
}

.ty-sort-dropdown.open .ty-sort-dropdown__content {
    display: block;
}

.ty-sort-dropdown__content-item {
    padding: 5px 10px;
}

.ty-sort-dropdown__content-item:hover {
    background-color: #000;
    color: #fff;
}

.ty-sort-dropdown__content-item:hover a {
    background-color: #000;
    color: #fff;
}

.ty-sort-dropdown__content-item a {
    color: #000;
    text-decoration: none;
    display: flex; 
    width: 100%;
    height: 100%;
    font-size: 12px;
}

.goodsList .goodsCollectionLink {
	font-size: 13px;
	color: #222222;
	font-weight: 500;
}
.goodsList .goodsDetailLink {
	font-size: 16px;
	color: #222222;
	font-weight: 500;
}
.goodsList .price {
	font-size: 12px;
	color: #222222;
	font-weight: 500;
}

.ty-sort-dropdown__content-item a:hover {
    color: #fff;
    opacity: 1;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.ty-sort-dropdown__wrapper.open .dropdown-icon {
    transform: rotate(180deg);
}

.item-title {
	text-align: center;
	padding: 90px 0 0;
	margin: 0;
	font-weight: normal;
	font-size: 2.6rem;
	font-family: Cochin;
}
.goodsTile .goodsBottomWrapper .goodsInfoWrapper {
	font-family: YuMin;
}
.goodsTile .goodsBottomWrapper .goodsInfoWrapper .goodsCollection {
	font-size: 1.6rem;
}
.goodsTile .goodsBottomWrapper .goodsInfoWrapper .goodsNameWrapper {
	font-size: 1.3rem;
}
.goodsTile .goodsBottomWrapper .goodsInfoWrapper .priceWrapper {
	font-size: 1.2rem;
}
.item-list-sort__list select,option {
	font-size: 1.2rem;
	height: auto;
}
.crumbsList li {
	font-family: Cochin;
	font-size: 14px;
}
.goodsTile .goodsBottomWrapper .goodsNameWrapper {
	margin-bottom: 10px;
}
.goodsTile .images .favorite-btn {
	top: 91%;
	right: 4%;
}
@media (max-width: 1023px) {
	.collection {
		max-width: 100%;
		margin: 0;
		padding: 0;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 10px;
	}
	.item-page-header {
		padding-left: 10px;
		margin: 0 auto 30px;
	}
	.ty-sort-dropdown__content {
			min-width: auto;
	}

	.collection .collection_grid {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.collection-name {
		padding-left: 10px;
		font-size: 1.3rem;
	}
	.collection-description {
		padding: 0 10px;
	}
	.collection div p {
		letter-spacing: unset;
		font-size: 1.1rem;
	}
	.crumbsList li {
		font-size: 12px;
	}
	.item-list-sort__list select,option {
		font-size: 1rem;
		height: auto;
	}
	.goodsTile .goodsBottomWrapper {
		font-size: 1.1rem;
		font-family: YuMin;
	}
	.goodsTile .goodsBottomWrapper .priceWrapper {
		font-weight: bold;
	}
	.goodsTile .goodsBottomWrapper .goodsCollection {
		margin-bottom: 5px;
	}
	.goodsTile .goodsBottomWrapper .goodsNameWrapper {
		margin-bottom: 10px;
	}
	.collection-title {
		font-family: YuMin;
	}
	.item-title {
		font-size: 2rem;
		font-weight: bold;
	}
	.goodsTile .images .favorite-btn {
		top: 86%;
	}
}
.goodsBottomWrapper {
	padding-top: 0;
	margin: 0 10px;
}

.collection-section .collection-list .collection .collection-info p {
	font-size: 12px;
}
.collection-section .collection-list .collection .collection-info .collection-name {
	font-size: 19px;
}

	.ty-mainbox-title {
		margin: 0 15px 17px;
	}
@media (max-width: 750px)  {
	.collection-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 10px;
	}
	.ty-mainbox-title {
		font-size: 20px;
		font-weight: bold;
		margin: 0 15px 17px;
	}
	.ty-sort-dropdown__content-item a {
		font-size: 10px;
	}
	.goodsList .goodsCollectionLink, .goodsList .goodsDetailLink, .goodsList .price {
		font-size: 11px;
	}
	.goodsTile .images .favorite-btn .add_favorite {
		width: 11px;
		height: 19px
	}
	.goodsTile .images .favorite-btn {
		top: 90%;
	}
	.collection-section .collection-list .collection .collection-info p {
		font-size: 11px;
	}
	.collection-section .collection-list .collection .collection-info .collection-name {
		font-size: 13px;
	}

}

.collection-section .title {
	font-size: 26px;
	font-weight: bold;
}
@media (min-width: 1200px)  {
	.collection-section .collection-list {
		gap: 40px 20px;
	}
}
