@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
/*-------------------------------------------
px→vw
 * ex)
   width: sp(200)
   width: tab(200)
-------------------------------------------*/
#container {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#container:before {
  pointer-events: none;
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  background: url(../images/feature/chiikawa/bg.jpg) repeat top center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  #container:before {
    background-size: 1100px auto;
  }
}

.wrapCol:after {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  background: url(../images/feature/chiikawa/bg_bottom.png) repeat-x bottom center/auto;
  width: 100vw;
  height: 100%;
  transform: translate(-50%, 0);
}

#chiikawa {
  position: relative;
  z-index: 0;
}
#chiikawa .chiikawaInner {
  position: relative;
  z-index: 0;
  width: 100%;
}
#chiikawa .itemList {
  margin: 20px 0 0 0;
}
@media screen and (min-width: 768px) {
  #chiikawa .itemList {
    margin: 40px 0 0 0;
  }
}
#chiikawa .itemList .productsListCol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  margin: 0 auto;
}
#chiikawa .itemList .productsListCol > li {
  position: relative;
  z-index: 0;
  background: #FFF;
  width: 47%;
  margin-top: 8%;
  border-radius: 20px;
}
#chiikawa .itemList .productsListCol > li::before {
  pointer-events: none;
  content: "";
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #000;
  border-radius: 20px;
}
#chiikawa .itemList .productsListCol > li:after {
  pointer-events: none;
  content: "";
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/feature/chiikawa/ico_new.png) no-repeat center/contain;
  width: 3em;
  aspect-ratio: 1/1;
  font-weight: bolder;
  transform: translate(-25%, -25%);
  opacity: 0;
}
#chiikawa .itemList .productsListCol > li.new:after {
  opacity: 1;
}
#chiikawa .itemList .productsListCol > li a {
  display: block;
  padding: calc(3px + 1em);
}
#chiikawa .itemList .productsListCol > li a:hover {
  color: #333 !important;
}
#chiikawa .itemList .productsListCol > li a:hover img {
  opacity: 1;
}
#chiikawa .itemList .productsListCol > li .metaCol {
  margin-top: 20px;
}
#chiikawa .itemList .productsListCol > li .metaCol li {
  font-weight: bolder;
            /*
            &.price {
              //color: $accentColor;

              &:before {
                content: "";
                background: url(../images/common/ico_price.png) center left no-repeat;
                width: 16px;
                height: 16px;
                display: inline-block;
                background-size: contain;
                margin-right: 5px;
                vertical-align: text-bottom;
              }
            }
            */
}
#chiikawa .itemList .productsListCol > li .metaCol li.date {
  color: #ffadb8;
}
#chiikawa .itemList .productsListCol > li .metaCol li.date:before {
  content: "";
  background: #ffadb8;
  mask: url(../images/common/ico_date.png) center left no-repeat;
  -webkit-mask: url(../images/common/ico_date.png) center left no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 16px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: text-bottom;
}
#chiikawa .itemList .productsListCol > li h3 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bolder;
}
#chiikawa .itemList .productsListCol > li:nth-child(-n+2) {
  margin-top: 0;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n)::before {
  border-color: #6ac6eb;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n) .metaCol li.date {
  color: #57b2d6;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n) .metaCol li.date:before {
  background: #57b2d6;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n-1)::before {
  border-color: #ffe365;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n-1) .metaCol li.date {
  color: #f3c23c;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n-1) .metaCol li.date:before {
  background: #f3c23c;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n-2)::before {
  border-color: #ffadb8;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n-2) .metaCol li.date {
  color: #ee8a98;
}
#chiikawa .itemList .productsListCol > li:nth-child(3n-2) .metaCol li.date:before {
  background: #ee8a98;
}
@media screen and (min-width: 768px) {
  #chiikawa .itemList .productsListCol {
    justify-content: center;
  }
  #chiikawa .itemList .productsListCol > li {
    width: 30%;
    margin: 40px 4% 0 0;
    transition: transform 0.2s;
  }
  #chiikawa .itemList .productsListCol > li::before {
    border-width: 4px;
  }
  #chiikawa .itemList .productsListCol > li a {
    padding: calc(4px + 1em);
  }
  #chiikawa .itemList .productsListCol > li h3 {
    font-size: 15px;
    line-height: 1.4;
  }
  #chiikawa .itemList .productsListCol > li:hover {
    transform: scale(1.05);
  }
  #chiikawa .itemList .productsListCol > li:nth-child(3n) {
    margin-right: 0;
  }
  #chiikawa .itemList .productsListCol > li:last-child {
    margin-right: 0;
  }
  #chiikawa .itemList .productsListCol > li:nth-child(-n+3) {
    margin-top: 0;
  }
}
#chiikawa .bnrCol {
  text-align: center;
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  #chiikawa .bnrCol {
    margin: 80px 0;
  }
}
#chiikawa .bnrCol h4 {
  display: inline-block;
  background: #2b71b8;
  padding: 0.8em 1.5em;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bolder;
  line-height: 1;
  color: #FFF;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  #chiikawa .bnrCol h4 {
    font-size: 18px;
  }
}
#chiikawa .bnrCol ul li {
  margin-top: 30px;
}
