* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Hiragino Kaku Gothic ProN', '¥Ò¥é¥®¥Î³Ñ¥´ ProN W3', Meiryo, ¥á¥¤¥ê¥ª, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
li {
  list-style-type: none;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.product-info {
  margin-bottom: 80px;
}

.link {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 50px;
}
.link__item {
  width: 45%;
}
.link__item img {
  width: 100%;
}
.link__item img:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 415px) {
  .link__item img.-small {
    width: 70%;
  }
}

.text {
  margin-bottom: 30px;
  padding: 0 10px;
  text-align: justify;
  text-justify: inter-ideograph;
  font-weight: bold;
}

.size-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.size-list__item {
  position: relative;
  width: 100px;
  margin: 0 10px;
  padding-left: 10px;
  font-weight: bold;
}
.size-list__item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  margin-right: 3px;
  background-color: #f60;
}
.size-list__item.-dammy {
  height: 0;
}
.size-list__item.-dammy::before {
  content: none;
}
