.site-content {
  background: none;
}
.online {
  max-width: 768px;
  margin: 100px auto 0;
  padding: 80px 24px;
  box-sizing: content-box;
}
.section-ttl {
  position: relative;
  padding-bottom: 10px;
  font-family: "BIZ UDPMincho", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.section-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #fa2858;
}
.section-msg {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #FA2858;
  text-align: center;
}
.shop-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px auto 0;
  max-width: 300px;
  list-style: none;
}
.shop-list-item {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.shop-list-item img {
  margin: 0 auto;
}
.merchandise {
  margin: 40px auto 0;
  font-family: "BIZ UDPMincho", serif;
  text-align: center;
}
.merchandise-img {
  margin: 0 auto;
  max-width: 100%;
}
.merchandise-name {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
}
.merchandise-class {
  display: inline-block;
  margin-top: 4px;
  padding: 4px;
  border: 1px solid #54565A;
  font-size: 14px;
  line-height: 1;
}
@media only screen and (min-width:768px) {
  .shop-list {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    max-width: 100%;
  }
  .shop-list-item + .shop-list-item {
    position: relative
  }
  .shop-list-item + .shop-list-item::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -24px;
    width: 1px;
    height: 64px;
    background-color: #CCCCCC;
  }
}