@charset "UTF-8";
/* CSS Document */
.section-shop {
  background-color: #FFFFFF;
}
.section-shop h2 {
  padding: 60px 0 ;
  font-size: 3.2rem;
}
.section-shop__main-image {
  width: 80vw;
  max-width: 1160px;
  margin-bottom: 60px;
  object-fit: cover;
}
.section-shop h4 {
  font-size: 2.4rem;
	margin-bottom: 60px;
}
@media(max-width:1160px) {
  .section-shop__main-image {
    margin-bottom: 30px;
  }
  .section-shop h2 {
    padding: 40px 0;
    margin: 0;
    font-size: 2.0rem;
  }
	.section-shop h4 {
  font-size: 1.8rem;
	width:80vw;
	margin:0 auto 40px;
}
}
.section-shop ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto 80px;
}
.section-shop ul li {
  margin: 0 auto 50px;
}
.section-shop__item {
  padding: 10px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 300px;
  height: 420px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: -2px 10px 5px rgba(0, 0, 0, 0);
  border-radius: 10px;
  font-family: SQ Market, SQ Market, Helvetica, Arial, sans-serif;
}
.section-shop__item-decolation {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 4.8rem;
  height: 48px;
  color: #ffffff;
  width: 230px;
  background-color: #030303;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .1) inset;
  margin-bottom: 15px;
	text-decoration: none;
}
.section-shop__item-name {
  font-size: 1.8rem;
  line-height: 2.0rem;
  margin-bottom: 15px;
}
.section-shop__item-price {
  font-size: 1.8rem;
  line-height: 2.0rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.section-shop__item img {
  height: 200px;
  object-fit: cover;
  margin: 20px 0;
}
@media(max-width:1160px) {
  .section-shop__item-decolation {
    font-size: 1.6rem;
  }
  .section-shop__item-name {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  .section-shop__item-price {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}