body.p-category-product {
  background-image: none;
}


/* Heading */
.heading + .heading {
  margin-top: 200px;
}

.heading:last-child {
  padding-bottom: 110px;
}

.heading .heading__head {
  margin: 40px 0 50px;
  text-align: center;
}

.heading .heading__title {
  font-size: 26px;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: 0.04em;
}

.heading .heading__text {
  margin: 23px 0 0;
  font-size: 16px;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .heading + .heading {
    margin-top: 90px;
  }

  .heading .heading__head {
    margin: 30px 0 30px;
  }

  .heading .heading__title {
    font-size: 18px;
  }

  .heading .heading__text {
    margin: 0;
    font-size: 12px;
  }
}


/* Sort */
.sort {
  text-align: right;
}

.sort .sort__wrapper {
  display: inline-block;
  position: relative;
  padding: 0 28px 0 10px;
  border-bottom: 2px solid #000;
}

.sort .sort__wrapper::after {
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 16px;
  height: 8px;
  margin: auto;
  background-image: url(/images/new/product/arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}

.sort .sort__select {
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

@media (max-width: 768px) {
  .sort {
    margin-top: 15px;
  }

  .sort .sort__select {
    font-size: 12px;
  }
}


/* Product */
.product {
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -40px -22px 0;
}

.product .product__item {
  -webkit-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-top: 40px;
  padding: 0 22px;
}

.product .product__item.product__item--4col {
  -webkit-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.product .product__item a {
  display: block;
}

.product .product__item a:hover img {
  opacity: 1;
}

.product .product__item a:hover {
  color: inherit;
  opacity: 0.7;
}

.product .product__thumb {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 350px;
  padding: 20px 25px;
  border: 1px solid #e9efeb;
}

.product .product__item.product__item--4col .product__thumb {
  height: 255px;
}

.product .product__thumb img {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  max-height: 100%;
}

.product .product__title {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 25px;
  font-weight: bold;
}

.product .product__price {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  font-weight: bold;
}

.product .product__tax {
  font-size: 14px;
  font-weight: 300;
}

.product .product__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 21px;
  color: #5b5b5b;
}

@media (max-width: 768px) {
  .product {
    display: -webkit-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -40px -7px 0;
  }

  .product .product__item {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 40px;
    padding: 0 7px;
  }

  .product .product__item.product__item--4col {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product .product__thumb {
    height: 230px;
    padding: 13px;
  }

  .product .product__item.product__item--4col .product__thumb {
    height: 110px;
  }

  .product .product__title {
    margin: 5px 0 0;
    font-size: 12px;
    line-height: 16px;
  }

  .product .product__price {
    font-size: 12px;
    line-height: 16px;
  }

  .product .product__tax {
    font-size: 11px;
  }

  .product .product__text {
    margin: 5px 0 0;
    font-size: 11px;
    line-height: 14px;
  }
}


/* Page Hero */
.page-hero {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 35px;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .page-hero {
    height: 190px;
    margin-top: 10px;
  }
}


/* Lead */
._lead {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px 70px;
  text-align: center;
}

._lead ._lead__title {
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

._lead ._lead__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  ._lead {
    margin: 0 20px;
    padding: 25px 0 45px;
  }

  ._lead ._lead__title {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.4285714286;
  }

  ._lead ._lead__text {
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1.6666666667;
  }
}


/* Product */
._product {
  max-width: 940px;
  margin: 0 auto;
  padding: 100px 20px;
  border-top: 1px solid #aaa;
}

._product ._product__body._product__body--01 {
  padding: 70px 0 0;
  margin-bottom: -150px;
}

._product ._product__body._product__body--02 {
  padding: 0 0 70px;
}

._product ._product__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5384615385;
  letter-spacing: 0.02em;
}

._product ._product__text {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.02em;
}

._product img {
  width: 100%;
}

._product img + img {
  margin-top: 75px;
}

._product ._product__row {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 50px 0;
}

._product ._product__col {
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  ._product {
    margin: 0 20px;
    padding: 50px 0;
  }

  ._product ._product__body._product__body--01 {
    padding: 25px 0;
    margin-bottom: 0;
  }

  ._product ._product__body._product__body--02 {
    padding: 0 0 25px;
  }

  ._product ._product__title {
    font-size: 14px;
    line-height: 1.4285714286;
  }

  ._product ._product__text {
    margin: 15px 0 0;
    font-size: 12px;
    line-height: 1.6666666667;
  }

  ._product img + img {
    margin-top: 30px;
  }

  ._product ._product__row {
    display: block;
    margin: 25px 0;
  }

  ._product ._product__col {
    max-width: 100%;
  }

  ._product ._product__col:not(:first-child) {
    margin-top: 25px;
  }
}


/* Feature 01 */
._feature-01 {
  position: relative;
  width: 100%;
}

._feature-01::before {
  content: "";
  display: block;
  padding-top: calc( ( 594 / 900 ) * 100% );
}

._feature-01 picture:nth-of-type(1) img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc( ( 400 / 900 ) * 100% );
}

._feature-01 picture:nth-of-type(2) img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc( ( 570 / 900 ) * 100% );
}

@media (max-width: 768px) {
  ._feature-01::before {
    content: "";
    display: block;
    padding-top: calc( ( 185 / 335 ) * 100% );
  }

  ._feature-01 picture:nth-of-type(1) img {
    width: calc( ( 148 / 335 ) * 100% );
  }

  ._feature-01 picture:nth-of-type(2) img {
    width: calc( ( 210 / 335 ) * 100% );
  }
}


/* Feature 02 */
._feature-02 {
  position: relative;
  width: 100%;
  margin-bottom: 75px;
}

._feature-02::before {
  content: "";
  display: block;
  padding-top: calc( ( 521 / 900 ) * 100% );
}

._feature-02 picture:nth-of-type(1) img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc( ( 570 / 900 ) * 100% );
}

._feature-02 picture:nth-of-type(2) img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc( ( 450 / 900 ) * 100% );
}

@media (max-width: 768px) {
  ._feature-02 {
    margin-bottom: 30px;
  }

  ._feature-02::before {
    content: "";
    display: block;
    padding-top: calc( ( 185 / 335 ) * 100% );
  }

  ._feature-02 picture:nth-of-type(1) img {
    width: calc( ( 212 / 335 ) * 100% );
  }

  ._feature-02 picture:nth-of-type(2) img {
    width: calc( ( 175 / 335 ) * 100% );
  }
}


/* Product Button */
._product-button {
  padding-bottom: 10px;
  text-align: center;
}

._product-button ._product-button__link {
  display: inline-block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

@media (max-width: 768px) {
  ._product-button {
    padding: 50px 20px;
  }

  ._product-button ._product-button__link {
    display: block;
    padding: 13px 0;
    font-size: 12px;
  }
}


/* fade */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0,0,.3,1);
}

.fade-in.fade-in--delay {
  transition-delay: 200ms;
}

.fade-in.is-active {
  opacity: 1;
  transform: translateY(0);
}


/* Brand */
._brand {
}

._brand ._brand__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -22px;
}

._brand ._brand__item {
  -webkit-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-top: 40px;
  padding: 0 22px;
}

._brand ._brand__item a {
  display: block;
}

._brand ._brand__thumb img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

._brand ._brand__title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
}

._brand ._brand__notice {
  margin: 100px 0;
  text-align: center;
  font-size: 18px;
}

@media (max-width: 768px) {
  ._brand ._brand__wrapper {
    margin: 0 -7px;
  }

  ._brand ._brand__item {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;;
    margin-top: 20px;
    padding: 0 7px;
  }

  ._brand ._brand__title {
    margin-top: 10px;
    font-size: 11px;
    font-weight: normal;
  }

  ._brand ._brand__notice {
    margin: 50px 0;
    font-size: 16px;
  }
}
