.site-content {
  background: none;
}
.store {
  margin-top: 100px;
  padding: 80px 24px;
}
.store-ttl {
  position: relative;
  padding-bottom: 10px;
  font-family: "BIZ UDPMincho", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.store-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #fa2858;
}
@media only screen and (min-width:768px) {
  .store {
    padding: 170px calc(336 / 1440 * 100vw) 80px;
  }
  .store-wrapper {
    min-width: 768px;
  }
}
@media only screen and (min-width:1320px) {
  .store {
    padding: 80px calc(336 / 1440 * 100vw) 80px;
  }
}
@media only screen and (min-width:1440px) {
  .store {
    margin: 0 auto;
    padding: 170px 336px 80px;
    max-width: 1440px;
  }
}
.store-msg {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #FA2858;
  text-align: center;
}
.store-note {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
.document-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px auto 0;
  max-width: 300px;
  list-style: none;
}
.document-list-item {
  width: 100%;
}
.document-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  border: 1px solid #CCCCCC;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  text-decoration: none;
  color: #313131;
}
.document-btn:hover {
  background-color: #F2F4F4;
}
.document-btn > span {
  position: relative;
  padding-left: 36px;
}
.document-btn > span::after {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  left: 0;
  width: 32px;
  height: 32px;
  background: url(/chc/brand/bup4lady/assets/common/img/icon_pdf.png) center / contain;
}

@media only screen and (min-width:768px) {
  .store-note {
    text-align: center;
  }
  .document-list {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .document-list-item {
    width: calc(50% - 12px);
    height: 88px;
  }
  .document-btn {
    font-size: 20px;
  }
}