@charset "UTF-8";
/* CSS Document */
main .size-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -27px -27px 0;
}

main .size-list:not(:last-child) {
  margin-bottom: 50px;
}

main .size-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
main .size-list li {
    width: calc(33.33% - 27px);
    margin: 0 27px 27px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

main .size-list li a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: #fff;
    -webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
    height: 250px;
    color: #780000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

main .size-list li a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
}

main .size-list li a span:nth-child(1) {
    line-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 185px;
}

main .size-list li a span:nth-child(2) {
    font-size: 16px;
    font-size: 1rem;
}