@charset "utf-8";

a.txt_ul {
  text-decoration: underline;
}

a.txt_ul:hover {
  text-decoration: none;
}

.btn01 {
  width: 400px;
  position: relative;
  padding: 25px;
  background: #e87296;
  border: 1px solid #e87296;
  border-radius: 9999px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP";
  font-weight: bold;
  text-align: center;
  transition: all 0.5s ease 0s;
  box-sizing: border-box;
}

.btn01:hover {
  opacity: .6;
  cursor: pointer;
}

.btn01::after {
  position: absolute;
  right: 25px;
  top: 50%;
  content: '';
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url(../img/arrow03.svg);
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: all 0.5s ease 0s;
}

.btn01:hover::after {
  right: 12px;
}
