@charset "UTF-8";


/*--------------------------
   sp 
-------------------------*/

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.title h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
}
.title p {
  font-size: 0.875rem;
  margin-top: 7px;
}

.shop-contents {
  max-width: 100%;
  margin-top: 60px;
}

.shop-item h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000;
  margin-top: 20px;
  margin-bottom: 20px;
}
 .shop-item {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
 }

 .item-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 35px;
 }
 .item-list dl dt {
  font-weight: bold;
  margin: 7px 0;
 }
 
 .shop-menu {
  background-color: #f8f8f8;
  padding: 50px 20px;
  margin: 60px 0;
 }
 .shop-menu-inner h2 {
  font-size: 1.125rem;
  font-weight: bold;
  padding-bottom: 20px;
 }

.shop-menu-inner li {
  font-size: 0.875rem;
  list-style-type: disc;
  margin-left: 15px;
}
.item-list a {
  display: block;
  transition-duration: 0.2s;
}
.item-list a:hover {
  transform: scale(1.05);
}

/*--------------------------
    @media pc 1024px
-------------------------*/

@media (min-width: 1024px) {

  .title {
    margin-top: 60px;
  }
  .shop-contents {
    width: 1080px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .shop-item {
    flex-grow: 1;
    max-width: 765px;
  }
  .item-list {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 40px;
  }
  .shop-menu {
    background-color: #fff;
  }
  .shop-menu-inner {
    position: sticky;
    top: 140px;
    left: 0;
    right: 0;
  }
  .footer {
    margin-top: 40px;
  }
}