@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP|Roboto:300,400&display=swap");
/**
 * Usage:
 * フォントのスタイルを定義するプロパティセット
 */
/**
 * Usage:
 * 一部のみ角丸にする場合に用いるプロパティセット
 */
.c-under-page-header {
  background-color: #F0F0F0;
}
.c-under-page-header__inner {
  max-width: 1080px;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 106px;
}
.c-under-page-header__title-small {
  font-family: 'Roboto', Helvetica, 'メイリオ', 'Meiryo', sans-serif;
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  line-height: 1.57;
  letter-spacing: .06rem;
  color: #333333;
}
.c-under-page-header__title-big {
  display: block;
  font-size: 1.8rem;
  line-height: 1.33;
  letter-spacing: .1rem;
  color: #333333;
}

/*-----TABLET-----*/
@media only screen and (max-width: 1079px) {
  .c-under-page-header {
    margin-bottom: 40px;
  }
  .c-under-page-header__inner {
    max-width: 1080px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.p-new-products-section {
  max-width: 1080px;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 102px;
  margin-top: 72px;
}

/*-----TABLET-----*/
@media only screen and (max-width: 1079px) {
  .p-new-products-section {
    max-width: 1080px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 72px;
    margin-top: 40px;
  }
}
.p-product-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.p-product-list:after {
  content: "";
  display: block;
  width: 307px;
}
.p-product-list__item {
  max-width: 307px;
  margin-bottom: 40px;
}
.p-product-list__item:nth-child(3n) {
  margin-right: 0;
}
.p-product-list__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: block;
  text-decoration: none;
}
.p-product-list__link:hover {
  opacity: .7;
}
.p-product-list__tag {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: 'Roboto', Helvetica, 'メイリオ', 'Meiryo', sans-serif;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 1;
  width: 48px;
  height: 16px;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.45;
  letter-spacing: .04rem;
  background-color: #E50000;
}
.p-product-list__img-box {
  position: relative;
  margin-bottom: 10px;
}
.p-product-list__img-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: #E6E6E6 solid 1px;
}
.p-product-list__img-box--special:after {
  border: none;
}
.p-product-list__img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-product-list__item-title {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.57;
  letter-spacing: .06rem;
}
.p-product-list__item-desc {
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.45;
  letter-spacing: .04rem;
}

/* Notice: TABLET */
@media only screen and (max-width: 1079px) {
  .p-product-list:after {
    width: calc((100% - 44px) / 3);
  }
  .p-product-list__item {
    max-width: none;
    width: calc((100% - 44px) / 3);
    margin-bottom: 25px;
  }
  .p-product-list__tag {
    right: 0;
    top: 0;
  }
  .p-product-list__item-title {
    margin-bottom: 9px;
    font-size: 1.4rem;
    color: #333333;
    line-height: 1.57;
    letter-spacing: .06rem;
  }
}
/* Notice: SP-375 */
@media only screen and (max-width: 767px) {
  .p-product-list:after {
    width: calc(50% - 7.5px);
  }
  .p-product-list__item {
    width: calc(50% - 7.5px);
    margin-bottom: 22px;
  }
  .p-product-list__item:nth-child(3n) {
    margin-right: auto;
  }
  .p-product-list__item:nth-child(2n) {
    margin-right: 0;
  }
  .p-product-list__img-box {
    margin-bottom: 10px;
  }
  .p-product-list__item-title {
    margin-bottom: 11px;
  }
}

/* 231101-KT-08 スマホ時の改行調整用 */
.u-display-inline--pc {
  display: inline !important;
}

.u-display-inline--tablet {
  display: none !important;
}

.u-display-inline--sp {
  display: none !important;
}

.u-display-inline--sp320 {
  display: none !important;
}

@media only screen and (max-width: 1079px) {
  .u-display-inline--pc {
    display: none !important;
  }

  .u-display-inline--tablet {
    display: inline !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-display-inline--sp {
    display: inline !important;
  }

  .u-display-none--sp {
    display: none !important;
  }
}
@media only screen and (max-width: 374px) {
  .u-display-inline--sp320 {
    display: inline !important;
  }

  .u-display-none--sp320 {
    display: none !important;
  }
}

/*# sourceMappingURL=new-products.css.map */
