@charset "UTF-8";

/* -------------------------------------------------
	メディアクエリ
-------------------------------------------------- */
/* -------------------------------------------------
	rem
-------------------------------------------------- */
/* -------------------------------------------------
	変数
-------------------------------------------------- */
/* -------------------------------------------------
	item
-------------------------------------------------- */
.item-wrap {
  width: 1600px;
  margin-bottom: 160px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .item-wrap {
    margin-bottom: 80px;
    flex-direction: column;
  }
}

.item-sidebar {
  width: 100%;
  padding: 40px 20px;
  color: #fff;
  background: url("https://file001.shop-pro.jp/PA01332/246/img_2025/page/bg_sidebar.png");
  background-size: 100% 100%;
}

@media screen and (min-width: 769px) {
  .item-sidebar {
    width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .item-sidebar-cat {
    display: none;
  }

  .item-sidebar__tit {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .item-sidebar {
    padding: 17px 25px 10px;
    background-size: cover !important;
  }

  .item-sidebar.is-active {
    padding: 40px 25px 57px;
    background-size: 100% 100% !important;
  }

  .item-sidebar__tit.is-active {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 60px;
  }

  .item-sidebar__tit.is-active img {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .item-sidebar__tit {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 60px;
  }
}


.item-sidebar__tit--en {
  font-family: "Lobster", sans-serif;
  font-size: 18px;
}

.item-sidebar__tit--jp {
  color: #ccc;
  font-size: 11px;
  display: block;
}

.item-sidebar-cat__name {
  margin-bottom: 20px;
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
  font-weight: 700;
}

.item-sidebar-cat__name::before,
.item-sidebar-cat__name::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #fff;
}

.item-sidebar-cat__name::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.item-sidebar-cat__name.open::after {
  transform: rotate(0deg);
}

.item-sidebar-cat-wrap {
  margin-bottom: 20px;
  display: none;
}

.item-sidebar-cat-wrap__item {
  margin-bottom: 5px;
  display: block;
}

.item-inner {
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .item-inner {
    width: calc(100% - 340px);
  }
}

.item-all-parts {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-all-parts__item-num {
  font-weight: 700;
}

.item-all-parts__item-num--lg {
  font-size: 24px;
}

.item-all-parts-sort {
  display: flex;
  align-items: center;
  gap: 26px;
}

.item-all-parts-sort__tit {
  font-weight: 700;
}

.item-all-parts-sort-select-wrap {
  position: relative;
}

.item-all-parts-sort-select-wrap::after {
  content: "";
  width: 10px;
  height: 7px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #202022;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.item-all-parts-sort-select {
  width: 155px;
  padding: 10px 15px;
  border-radius: 2px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.newitem-list {
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}

@media screen and (max-width: 768px) {
  .newitem-list {
    max-width: 100%;
    margin-bottom: 60px;
    gap: 20px;
  }
}

.newitem-list-item {
  font-weight: 700;
}

@media screen and (min-width: 1300px) {
  .newitem-list-item {
    width: calc((100% - 60px) / 4);
  }
}

@media screen and (max-width: 1299px) {
  .newitem-list-item {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .newitem-list-item {
    width: calc((100% - 20px) / 2);
  }
}

.newitem-list-item__link {
  height: 100%;
  display: block;
  transition: all 0.3s;
}

.newitem-list-item__link:hover {
  opacity: 0.8;
}

.newitem-list-item__img-box {
  height: 238px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .newitem-list-item__img-box {
    height: 150px;
  }
}

.newitem-list-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.newitem-list-item__img--hover {
  opacity: 0;
  transition: opacity .3s;
}

.newitem-list-item__link:hover .newitem-list-item__img--hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .newitem-list-item__name {
    font-size: 12px;
  }
}

.item-pagenation {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .item-pagenation {
    max-width: 655px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (max-width: 768px) {
  .item-pagenation {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }
}

.item-pagenation-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.item-pagenation__arrow {
  width: 40px;
  height: 40px;
  border-radius: 2px;
}

.item-pagenation__arrow--img {
  width: 100%;
}

.item-pagenation__arrow-next {
  transform: rotate(180deg);
}

.item-pagenation__page {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.item-pagenation__page--current {
  color: #fff;
  background: #CF862D;
}

.item-mv-tit {
  font-size: 60px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .item-mv-tit {
    font-size: 30px;
  }
}

.item-cat {
  margin-bottom: 55px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
}

.item-cat__name {
  margin-bottom: 10px;
  padding: 10px 55px;
  background: #CF862D;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .item-cat__name {
    padding: 5px 30px;
    font-size: 18px;
  }
}

.item-cat-list {
  display: flex;
  gap: 0 30px;
  flex-wrap: wrap;
}

/* -------------------------------------------------
	item-detail
-------------------------------------------------- */
.item-detail {
  width: 1600px;
  margin-bottom: 80px;
  padding: 80px 60px 60px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-radius: 10px;
  position: relative;
}

@media screen and (max-width: 1299px) {
  .item-detail {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .item-detail {
    padding: 40px 20px;
  }
}

.item-detail-img {
  width: 100%;
}

@media screen and (min-width: 1300px) {
  .item-detail-img {
    width: calc(100% - 700px);
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    left: 0;
  }
}

.item-detail-slider {
  width: 100%;
  margin-bottom: 12px;
}

.item-detail-slider__img {
  width: 100%;
}

.item-detail-slider-thumb .slick-track {
  transform: unset !important;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.item-detail-slider-thumb__item {
  width: calc((100% - 60px) / 6) !important;
  height: 83px;
  cursor: pointer;
}

@media screen and (max-width: 1299px) {
  .item-detail-slider-thumb__item {
    width: calc((100% - 36px) / 3) !important;
  }
}

.item-detail-slider-thumb__item:first-child {
  margin-left: -12px;
}

.item-detail-slider-thumb__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item-info {
  width: 100%;
}

@media screen and (min-width: 1300px) {
  .item-info {
    width: 680px;
  }
}

.item-info__cat {
  margin-bottom: 30px;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #CF862D;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .item-info__cat {
    padding: 10px 20px;
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.item-info__name {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .item-info__name {
    margin-bottom: 20px;
  }
}

.item-info__price {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .item-info__price {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.item-info__stock {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .item-info__stock {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.item-info-num {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .item-info-num {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.item-info-num-select-wrap {
  width: 465px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .item-info-num-select-wrap {
    width: 100%;
  }
}

.item-info-num-select-wrap::after {
  content: "";
  width: 10px;
  height: 7px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #202022;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.item-info-num-select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.item-info-cart-btn {
  margin-bottom: 20px;
}

.item-info-cart-btn__link {
  width: 100%;
  padding: 20px 20px;
  border-radius: 5px;
  border: 1px solid #202022;
  background: #202022;
  color: #fff;
  font-weight: 700;
  display: block;
  text-align: center;
  transition: all 0.3s;
}

.item-info-cart-btn__link:hover {
  opacity: 0.8;
}

.item-info-fav-btn {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .item-info-fav-btn {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.item-info-fav-btn__link {
  width: 100%;
  padding: 20px 20px;
  border-radius: 5px;
  border: 1px solid #202022;
  background: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}

.item-info-fav-btn__link:hover {
  background: rgba(204, 204, 204, 0.8);
}

.newitem-cat {
  width: 1600px;
  padding: 65px 80px;
  margin-bottom: 120px;
  background: #EDEDED;
  position: relative;
}

@media screen and (max-width: 1299px) {
  .newitem-cat {
    margin-bottom: 60px;
    padding: 45px 20px;
  }
}

.newitem-cat__deco-table {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
}

@media screen and (max-width: 768px) {
  .newitem-cat__deco-table {
    width: 60px;
  }
}

.newitem-cat__deco-map {
  width: 32rem;
  position: absolute;
  right: -69px;
  top: 0;
  transform: translateY(-100%);
  opacity: 0.2;
}

@media screen and (max-width: 768px) {
  .newitem-cat__deco-map {
    width: 18.75rem;
    top: -30px;
  }
}

.newitem-cat-list {
  width: 1440px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .newitem-cat-list {
    max-width: 100%;
  }
}

.newitem-cat-list .header-navi-drop-item {
  pointer-events: auto;
}

@media screen and (min-width: 1300px) {
  .newitem-cat-list .header-navi-drop-item {
    width: calc((100% - 80px) / 5);
  }
}

.item-connection {
  width: 1440px;
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .item-connection {
    margin-bottom: 80px;
  }
}

.item-connection__tit {
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

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