@charset "utf-8";

@media screen and (max-width: 767px) {
  .pageTitleB01,
  .backA01 {
    display: none;
  }
  .anchorNavA01 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .anchorNavA01 li {
    padding: 0;
    background: none;
  }
  .anchorNavA01 li a {
    position: relative;
    display: block;
    padding: 8px 20px 8px 12px;
    background: #D1091E;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
  }
  .anchorNavA01 li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 4px;
    height: 4px;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    transform: translateY(-50%) rotate(45deg);
  }
}