@charset "shift_jis";

.linkArea {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
}
.linkArea dl {
  border: 1px solid #ccc;
  padding: 8px;
  width: calc((100% - 8px) / 3);
  margin-left: 4px;
}
.linkArea dl:first-child {
  margin-left: 0;
}
.linkArea dl dt {
  color: #960119;
  font-weight: bold;
  text-align: center;
  height: 68px;
}
.btnBox_rect a {
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  height: 32px;
  transition: opacity .3s ease-in-out;
}
.btnBox_rect a:hover {
  opacity: 0.7;
}
.btnBox_rect a.btnW {
  color: #960119;
  background: #fff;
  border: 2px solid #960119;
}
.btnBox_rect a.btnW::after {
  content: "";
  box-sizing: border-box;
  width: 16px;
  height: 18px;
  position: absolute;
  top: calc((100% - 18px) * 0.5);
  right: 8px;
  background: url(/assets/img/common/btn_arrow02.png) no-repeat;
}
