@charset "utf-8";

.main {
  max-width: 1200px;
  margin: auto;
}

.title h1 {
  font-size: 26px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
  border-bottom: solid 2px green;
}

.title h1 span {
  font-size: 18px;
  font-weight: normal;
  margin-top: 12px;
}

.shop-contents {
  width: 1080px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}


.y-shop-items {
  max-width: 1080px;
  margin-top: 75px;
  margin-left:40px;
  margin-right: 40px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.shop-items {
  flex-grow: 1;
  max-width: 765px;
}

.y-shop-items dt {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

.y-shop-items dd {
  font-size: 18px;
  font-weight: normal;
  line-height: 20px;
}

.item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  column-gap: 50px;
  row-gap: 40px;
}

.pic {
  min-width: 250px;
  min-height: 250px;
}

.item-list a {
  display: block;
  transition-duration: 0.2s;
}

.item-list a:hover {
  transform: scale(1.05);
}

.shop-menu {
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
}

.shop-menu-inner h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

.shop-menu-inner ul {
  margin-top: 10px;

}

.shop-menu-inner li {
  font-size: 16px;
  font-weight: normal;
  line-height: 25px;
}