/* btn-list */
.btn-list {
  display: -webkit-flex;
  display: flex;
  letter-spacing: normal;
}

.btn-list li {
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  text-align: center;
  margin-right: 3%;
}

.btn-list li:last-child {
  margin-right: 0;
}

.btn-basic {
  border-radius: 30px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 2.1rem;
  display: block;
  color: #fff !important;
  transition: .3s;
}

.btn-rectangle {
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 2.1rem;
  display: block;
  color: #000 !important;
  transition: .3s;
  position: relative;
}

.btn-rectangle__large {
  height: 120px;
  text-align: center;
  font-size: 2.1rem;
  display: block;
  color: #fff !important;
  transition: .3s;
  position: relative;
}

.btn-rectangle::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color:  transparent transparent #000 #000;
  transform: rotate(-45deg);
  position: absolute;
  left: calc(50% - 10px);
  bottom: 22px;
}

.btn-rectangle__large::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color:  transparent transparent #fff #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: calc(50% - 10px);
  bottom: 22px;
}

.btn-rectangle .btn-txt {
  position: relative;
  top: -5px;
}

.btn-basic:hover,
.btn-rectangle:hover,
.btn-rectangle__large:hover {
  opacity: .7;
  text-decoration: none;
}

.btn-basic.color-red {
  background: #c51919;
}

.btn-basic.color-blk {
  background: #000;
}

.btn-basic.color-wht {
  background: #fff;
  border: 1px solid #c51919;
  color: #c51919;
}

.btn-rectangle.color-pink {
  background: #f9e8e8;
  color: #000;
}
.btn-rectangle.color-yellow {
  background: #f9f3e8;
  color: #000;
}

.btn-rectangle.color-sky {
  background: #e4eaf6;
  color: #000;
}

.btn-rectangle__large.color-blk {
  background: #000;
}
.btn-rectangle__large.color-blk .btn-txt{
  display: block;
}

.btn-list li:first-child .btn-rectangle__large .btn-txt{
  padding-top: 30px;
}

.btn-list li:nth-child(n+2) .btn-rectangle__large .btn-txt {
  padding-top: 20px;
}

ul.btn-list p a img:hover{
  opacity: 0.7;
}
