.column {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 6.666%;
	margin-bottom: 70px;
}
.column .box {
	width: calc(80% / 4);
	display: flex;
  flex-direction: column;
  align-items: center;
	text-align: center;
}
.column .box p {
  margin-top: -10px;
  letter-spacing: 0.05em;
}
.column .box p span {
  display: block;
  font-size: 11px;
}
.herblist a.btn-bottom {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 240px;
}
@media screen and (max-width:740px){
  .column {
    gap: 40px 6%;
    margin-bottom: 50px;
  }
  .column .box {
    width: calc(92% / 2);
  }
  .herblist a.btn-bottom {
    position: fixed;
    bottom: 30px;
    right: auto;
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
  }
}