#hnavi {
  position: relative;

  .green-season {
    --arrow-color: #134161;

    text-decoration: none;
    font-size: 14px;
    text-align: right;
    padding-right: 0.8em;
    position: absolute;
    top: 100%;
    right: 0;

    &:hover {
      --arrow-color: #0858A4;
      color: #0858A4;
    }

    &:before {
      content: '';
      display: block;
      width: 5px;
      height: 7px;
      clip-path: polygon(40% 50%, 0 0, 100% 50%, 0% 100%);
      background-color: #134161;
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto 0;
      right: calc(100% + 0.2em);
    }
  }
}