@charset "UTF-8";
.banner-wrap {
  background-image: url("../images/img_banner_list.jpg");
}

.category-wrap {
  border-bottom: 1px solid #AA1E2D;
}
.category-wrap .content-wrap {
  max-width: 1200px;
  display: flex;
  padding: 30px 0 25px;
  position: relative;
}
.category-wrap .content-wrap .category {
  flex: 1;
}
.category-wrap .content-wrap .category.active a img, .category-wrap .content-wrap .category:hover a img {
  filter: grayscale(0) brightness(1);
}
.category-wrap .content-wrap .category.active span, .category-wrap .content-wrap .category:hover span {
  color: #1e1e1e;
}
.category-wrap .content-wrap .category a {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  justify-content: center;
}
.category-wrap .content-wrap .category a img {
  width: 40px;
  height: 40px;
  filter: grayscale(100%) brightness(2.5);
  transition: filter 0.3s ease-in-out;
}
.category-wrap .content-wrap .category a span {
  font-size: 18px;
  font-weight: bold;
  color: #c8c8c8;
  text-align: center;
}
.category-wrap .content-wrap .indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 10px;
  background-image: url("../images/icon_category_indicator.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
}
.category-wrap .content-wrap .indicator.active {
  opacity: 1;
  transition: left 0.3s cubic-bezier(0.25, 0.1, 0, 1);
}

.page-wrap.product-list .content-wrap {
  max-width: 1200px;
}
.page-wrap.product-list .product-wrap {
  background-color: #f5f5f5;
  padding-top: 50px;
  padding-bottom: 100px;
}
.page-wrap.product-list .product-wrap .category {
  background-color: #fff;
  padding: 45px 30px;
}
.page-wrap.product-list .product-wrap .category + .category {
  margin-top: 20px;
}
.page-wrap.product-list .product-wrap .category h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: #AA1E2D;
}
.page-wrap.product-list .product-wrap .category h2 img {
  width: 35px;
}
.page-wrap.product-list .product-wrap .sub-category + .sub-category {
  margin-top: 47px;
}
.page-wrap.product-list .product-wrap .sub-category h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  color: #AA1E2D;
}
.page-wrap.product-list .product-wrap .sub-category h3 span {
  font-size: 18px;
  color: #1e1e1e;
  margin-left: 35px;
}
.page-wrap.product-list .product-wrap .sub-category .category-products {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product {
  width: 220px;
  border: 1px solid #e6e6e6;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s;
  background-color: #fff;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product:hover {
  box-shadow: 3px 3px 5px #ccc;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product .thumb {
  flex: 0 0 182px;
  border-bottom: 2px solid #AA1E2D;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product .thumb img {
  max-width: 100%;
  max-height: 122px;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product .text {
  padding-top: 11px;
  padding-bottom: 15px;
  min-height: 50px;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product .text p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product .text p.name {
  font-size: 20px;
  font-weight: 600;
}
.page-wrap.product-list .product-wrap .sub-category .category-products .product .text p.type {
  margin-top: 6px;
  font-size: 14px;
}

.page-wrap.product-view .row {
  display: flex;
  gap: 40px;
}
.page-wrap.product-view .row .col.text {
  flex: 1;
}
.page-wrap.product-view .row .col.thumb {
  width: 380px;
  height: 380px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.page-wrap.product-view .row .col.thumb .thumb-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-wrap.product-view .row .col.thumb .thumb-image img {
  max-width: 80%;
  max-height: 80%;
}
.page-wrap.product-view .row .col.thumb .extra-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}
.page-wrap.product-view .row .col.thumb .extra-images .image {
  width: 50px;
  height: 50px;
  border: 1px solid #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  cursor: pointer;
}
.page-wrap.product-view .row .col.thumb .extra-images .image img {
  max-width: 100%;
  max-height: 100%;
}
.page-wrap.product-view h2 {
  margin: 0;
  font-size: 28px;
  color: #AA1E2D;
}
.page-wrap.product-view h2 span {
  font-weight: 300;
}
.page-wrap.product-view .product-wrap .section {
  padding: 52px 0 42px 0;
}
.page-wrap.product-view .product-wrap .section:nth-child(odd) {
  background-color: #f5f5f5;
}
.page-wrap.product-view .product-wrap .section:last-child {
  padding-bottom: 100px;
}
.page-wrap.product-view .product-wrap .content-wrap {
  max-width: 1000px;
}
.page-wrap.product-view .category p {
  font-size: 18px;
  color: #AA1E2D;
  font-weight: bold;
}
.page-wrap.product-view .title {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 25px;
  gap: 50px;
}
.page-wrap.product-view hr {
  margin: 0 auto 0 0;
  border: none;
  border-top: 2px solid #AA1E2D;
}
.page-wrap.product-view .summary {
  margin-top: 20px;
}
.page-wrap.product-view .summary p {
  font-size: 20px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.5;
  white-space: pre-line;
}
.page-wrap.product-view .description {
  margin-top: 38px;
}
.page-wrap.product-view .description p {
  font-size: 14px;
  line-height: 2;
}
.page-wrap.product-view .features {
  margin-top: 40px;
}
.page-wrap.product-view .features p {
  font-size: 14px;
  line-height: 2;
}
.page-wrap.product-view .features p:before {
  content: "•";
  display: inline-block;
  margin-right: 4px;
}
.page-wrap.product-view .specification-section {
  padding-bottom: 0;
}
.page-wrap.product-view .specification-section h3 {
  font-size: 24px;
  font-weight: 400;
  color: #AA1E2D;
  margin: 0;
}
.page-wrap.product-view .specification-section .specification {
  margin-top: 27px;
}
.page-wrap.product-view .specification-section .specification table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}
.page-wrap.product-view .specification-section .specification table tr.even td {
  background-color: #f5f5f5;
}
.page-wrap.product-view .specification-section .specification table tr:first-child td:nth-child(1) {
  width: 115px;
  padding: 0;
}
.page-wrap.product-view .specification-section .specification table tr:first-child td:nth-child(2) {
  width: 275px;
}
.page-wrap.product-view .specification-section .specification table td {
  border-bottom: 1px solid #c8c8c8;
  border-top: 1px solid #c8c8c8;
  padding: 13px 0 13px 30px;
  line-height: 1.5;
}
.page-wrap.product-view .specification-section .specification table td[rowspan] {
  border-top-width: 2px;
  text-align: center;
}
.page-wrap.product-view .specification-section .specification table td[rowspan] + td, .page-wrap.product-view .specification-section .specification table td[rowspan] + td + td {
  border-top-width: 2px;
}

.page-wrap.category-products .category-product-wrap {
  background-color: #f5f5f5;
}
.page-wrap.category-products .category-product-wrap .content-wrap {
  max-width: 1000px;
  padding-top: 50px;
  padding-bottom: 100px;
}
.page-wrap.category-products .category-product-wrap h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #AA1E2D;
}
.page-wrap.category-products .category-product-wrap .product-list .product {
  margin-top: 48px;
  display: flex;
  gap: 30px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text {
  flex: 1;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .name {
  font-size: 28px;
  margin: 0;
  color: #AA1E2D;
  letter-spacing: 0.03em;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification {
  margin-top: 25px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td {
  height: 48px;
  text-align: center;
  border-bottom: 1px solid #c8c8c8;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td:nth-child(odd) {
  background-color: #ffffff;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td:nth-child(even) {
  background-color: #f5f5f5;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td:nth-child(1) {
  width: 112px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td:nth-child(2) {
  width: 101px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td:nth-child(3) {
  width: 124px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td:nth-child(4) {
  width: 72px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr td:nth-child(5) {
  width: 92px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr:first-child td {
  border-top: 1px solid #646464;
}
.page-wrap.category-products .category-product-wrap .product-list .product .text .specification table tr:last-child td {
  border-bottom: 1px solid #646464;
}
.page-wrap.category-products .category-product-wrap .product-list .product .thumb {
  width: 295px;
  height: 145px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.page-wrap.category-products .category-product-wrap .product-list .product .thumb img {
  max-width: 100%;
  max-height: 100%;
}

.layer-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.2s;
}
.layer-container.show {
  opacity: 1;
}
.layer-container.show .category-layer,
.layer-container.show .product-layer {
  transform: translateY(0);
}
.layer-container .category-layer,
.layer-container .product-layer {
  width: 750px;
  max-width: 80vw;
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  transition: 0.2s;
  transform: translateY(-100px);
}
.layer-container .category-layer .product-layer-content,
.layer-container .product-layer .product-layer-content {
  max-height: 80vh;
}
.layer-container .category-layer .title,
.layer-container .product-layer .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #AA1E2D;
  padding-bottom: 15px;
}
.layer-container .category-layer .title h2,
.layer-container .product-layer .title h2 {
  color: #AA1E2D;
  margin: 0;
  font-size: 28px;
}
.layer-container .category-layer .title a,
.layer-container .product-layer .title a {
  cursor: pointer;
  transition: 0.2s;
}
.layer-container .category-layer .title a:hover,
.layer-container .product-layer .title a:hover {
  transform: scale(1.2);
}
.layer-container .category-layer h3,
.layer-container .product-layer h3 {
  margin: 38px 0 0 0;
  font-size: 28px;
}
.layer-container .category-layer .thumb,
.layer-container .product-layer .thumb {
  margin-top: 40px;
  text-align: center;
}
.layer-container .category-layer .thumb img,
.layer-container .product-layer .thumb img {
  max-width: 100%;
}
.layer-container .product-layer .thumb img {
  max-width: 100%;
  max-height: 400px;
}
.layer-container .product-layer.partial {
  padding: 50px 0;
}
.layer-container .product-layer.partial .product-layer-content {
  overflow-y: auto;
  padding: 0 50px;
}
.layer-container .product-layer.partial .thumb {
  margin-top: 0;
  padding: 20px 0 20px 0;
}
.layer-container .product-layer.partial .thumb img {
  max-width: 460px;
  max-height: 400px;
}
.layer-container .product-layer.partial h3 {
  color: #AA1E2D;
}
.layer-container .product-layer.partial .description {
  font-size: 18px;
  line-height: 2;
  white-space: pre-line;
  margin-top: 40px;
}
.layer-container .product-layer.partial .btn-close {
  position: absolute;
  right: 50px;
  top: 50px;
}
.layer-container .category-layer .product-layer-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.layer-container .category-layer h3 {
  color: #AA1E2D;
  margin-bottom: 20px;
}
.layer-container .category-layer .product-list-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}
.layer-container .category-layer .product-list-wrap.has-bottom-scroll:after {
  opacity: 1;
}
.layer-container .category-layer .product-list-wrap.has-top-scroll:before {
  opacity: 1;
}
.layer-container .category-layer .product-list-wrap:before, .layer-container .category-layer .product-list-wrap:after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 20px;
  opacity: 0;
}
.layer-container .category-layer .product-list-wrap:after {
  bottom: 0;
  background: radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
}
.layer-container .category-layer .product-list-wrap:before {
  top: 0;
  background: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
}
.layer-container .category-layer .product-list {
  height: 100%;
  overflow: auto;
}
.layer-container .category-layer .product {
  display: flex;
  align-items: center;
  gap: 15px;
}
.layer-container .category-layer .product + .product {
  margin-top: 18px;
  padding-top: 7px;
  border-top: 1px solid #646464;
}
.layer-container .category-layer .product .name {
  width: 260px;
}
.layer-container .category-layer .product .thumb {
  text-align: left;
}
.layer-container .category-layer .product p {
  width: 133px;
  font-size: 18px;
  line-height: 1.5;
}
.layer-container .category-layer .product .thumb {
  flex: 1;
  margin: 0;
}
.layer-container .category-layer .product .thumb img {
  max-width: 100%;
}

@media (max-width: 1200px) {
  .page-wrap.product-view .row .col.thumb {
    width: 40vw;
    height: auto;
    aspect-ratio: 1/0.9;
  }
  .page-wrap.product-view .specification {
    width: 100%;
    overflow-x: auto;
  }
  .page-wrap.product-view .specification table {
    min-width: 1000px;
  }
  .page-wrap.product-view .specification table td {
    line-height: 1.5;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 900px) {
  .page-wrap.product-list .category-wrap .content-wrap {
    padding: 40px 20px 20px 20px;
  }
  .page-wrap.product-list .category-wrap .content-wrap .category a span {
    font-size: 16px;
    font-weight: 400;
  }
  .page-wrap.product-list .product-wrap {
    padding-top: 30px;
  }
  .page-wrap.product-list .product-wrap .sub-category .category-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .page-wrap.product-list .product-wrap .sub-category .category-products .product {
    width: 100%;
  }

  .page-wrap.product-view .row {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .page-wrap.product-view .row .col.thumb {
    width: 60%;
  }
  .page-wrap.product-view .row .col.text {
    width: 100%;
  }
  .page-wrap.product-view .description {
    font-size: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #c8c8c8;
  }
  .page-wrap.product-view .description p {
    line-height: 1.5;
  }
  .page-wrap.product-view .description p:before {
    content: " ";
    display: block;
    margin-top: -0.25em;
  }
  .page-wrap.product-view .product-wrap .section {
    padding: 50px 0;
  }
  .page-wrap.product-view .specification table {
    margin-top: 20px;
  }

  .layer-container .category-layer .product {
    flex-direction: column-reverse;
  }
  .layer-container .category-layer .product .name {
    width: auto;
  }
  .layer-container .category-layer .product .name br {
    display: none;
  }
}
@media (max-width: 700px) {
  .page-wrap.product-list .product-wrap .sub-category .category-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-wrap.product-list .product-wrap .sub-category .category-products .product {
    width: 100%;
  }

  .layer-container .product-layer.partial .thumb img {
    max-width: 100%;
    max-height: 70vw;
  }
  .layer-container .product-layer.partial .description {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.5;
  }
  .layer-container .product-layer.partial .description:before {
    content: " ";
    display: block;
    margin-top: -0.25em;
  }
  .layer-container .product-layer .title h2 {
    font-size: 20px;
  }
  .layer-container .product-layer h3 {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .page-wrap.product-list .product-wrap .category {
    padding: 20px;
  }
  .page-wrap.product-list .product-wrap .sub-category .category-products .product .text p.type {
    white-space: normal;
  }

  .page-wrap.product-view h2 {
    font-size: 20px;
  }
  .page-wrap.product-view .title {
    gap: 20px;
  }
  .page-wrap.product-view .summary {
    margin-top: 20px;
  }
  .page-wrap.product-view .summary p {
    font-size: 20px;
  }
  .page-wrap.product-view .features {
    margin-top: 20px;
  }
  .page-wrap.product-view .features p {
    font-size: 16px;
    line-height: 1.5;
  }
  .page-wrap.product-view .description p {
    font-size: 16px;
  }
  .page-wrap.product-view .specification table td {
    font-size: 16px;
    padding: 6px 12px;
  }
  .page-wrap.product-view .specification table tr:first-child td:nth-child(1) {
    width: 150px;
  }
}
@media (max-width: 510px) {
  .category-wrap {
    display: none;
  }

  .page-wrap.product-list .product-wrap .sub-category h3 span {
    display: block;
    margin: 10px 0 0 10px;
  }
  .page-wrap.product-list .product-wrap .sub-category .category-products {
    grid-template-columns: 1fr;
  }

  .layer-container .category-layer,
.layer-container .product-layer {
    padding: 30px;
  }
  .layer-container .product-layer .thumb img {
    max-width: 100%;
    max-height: 70vw;
  }
  .layer-container .product-layer.partial .product-layer-content {
    padding: 0 30px;
  }
}

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