/* ページレイアウト */
@media screen and (min-width: 767px) {
  .mainWrap, .footerWrap{
    width: 768px;
    margin: auto;
  }
}

/* 共通で利用 */
.buttonWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.button{
  display: block;
  width: 280px;
  padding: 12px;
  background-color: #5902D3;
  text-align: center;
  color: #fff;
  font-size: 18px;
  /* font-weight: bold; */
  cursor: pointer;
}
.button:hover{
  background-color: #783bcf;
}
.sellerWrap{
  padding: 8px 0;
}
.sellerList{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.sellerListItem{
  width: 42%;
  margin-bottom: 16px;
  cursor: pointer;
}
.sellerLogo{
  display: block;
}
.sellerLogo:hover{
  opacity:0.5;
	transition:0.3s;
}
.attentionWrap{
  padding: 0 32px 32px;
  color: #555;
  font-size: 13px;
}
.attentionWrapTitle{
  margin-bottom: 32px;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
}
.attentionList{
  list-style: disc;
}
@media screen and (min-width:600px) {
  .button{
    width: 435px;
    font-size: 18px;
  }
  .sellerWrap{
    padding: 32px 0;
  }
  .attentionWrap{
    padding: 0 72px 32px;
  }
}

/* JSで読んでいるフッターCSS */
.bottom-gfooter__sub-nav{
  font-size: 13px;
}