.bj11 {
  background: url(../img/cat_bg.jpg) no-repeat;
  background-position: 0 21%;
  background-size: cover;
  background-attachment: fixed;
}

.gclist {
  margin-top: 2rem;
}

.cpfl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cpfl a {
  margin-right: 10px;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 4px;
  display: block;
}
.cpfl a:hover {
  background: var(--c1);
}

.cp {
  margin-bottom: 3rem;
}

.a_title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.a_title p span {
  display: inline-block;
  margin: 5px;
  background: var(--c2);
  height: 8px;
  border-radius: 200px;
}

.a_title p {
  line-height: 0;
}

.a_title p span:nth-child(1) {
  width: 10px;
  background: var(--c1);
  animation: fa_span01_ani 1.5s ease infinite alternate;
}
.a_title p span:nth-child(2) {
  width: 45px;
  animation: fa_span02_ani 1.5s ease infinite alternate;
}

@keyframes fa_span01_ani {
  0% {
    width: 6px;
  }
  100% {
    width: 48px;
  }
}
@keyframes fa_span02_ani {
  0% {
    width: 48px;
  }
  100% {
    width: 6px;
  }
}
