@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : goods.css
Description : グッズ
===================================================================== */
/* ========================================================
    goods
======================================================== */
.goods {
  position: relative;
  width: 100%;
  margin-bottom: -8rem;
  padding: 24rem 0 0 0;
  background-color: #f2ede6;
}
@media screen and (min-width: 768px) {
  .goods {
    padding: 16rem 0 0 0;
  }
}
.goods_column {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .goods_column {
    width: 84.375%;
  }
}
.goods_wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8rem 4rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .goods_wrap {
    gap: 6rem 4.1666666667%;
  }
}
@media screen and (min-width: 1080px) {
  .goods_wrap {
    gap: 6rem 3.7037037037%;
  }
}
.goods_wrap > li {
  position: relative;
  width: 32rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .goods_wrap > li {
    width: 30.5555555556%;
  }
}
@media screen and (min-width: 1080px) {
  .goods_wrap > li {
    width: 22.2222222222%;
  }
}
.goods_wrap > li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0.6rem;
  background-image: url(../images/common/common_bg06.png);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 2.4rem 0.6rem;
}
@media screen and (min-width: 768px) {
  .goods_wrap > li::after {
    height: 0.4rem;
    background-size: 1.6rem 0.4rem;
  }
}
.goods_wrap > li > a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.goods_img {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.goods_text {
  position: relative;
  padding: 2rem 0 0 0;
  font-size: 3rem;
  font-weight: 700;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  .goods_text {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=goods.css.map */