@charset "utf-8";

/* ブロックスキップ */

.accessibility-jump-main {
  font-family: "Noto Sans JP", sans-serif;
}

.accessibility-jump-main a {
  position: relative;
  display: block;
  display: -webkit-box;
  display: flexbox;
  display: flex;
  align-items: center;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 0;
  font-size: 0;
  color: #3C459A;
  text-align: center;
  text-decoration: underline;
  background: none;
  transition:
    height 0.35s ease-in-out,
    background 0.35s linear 0.35s,
    font-size 0.35s linear 0.35s;
  transition:
    height 0.35s ease-in-out,
    background 0.35s linear 0.35s,
    font-size 0.35s linear 0.35s,
    z-index linear 0.35s;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.accessibility-jump-main a:focus {
  z-index: 100;
  height: 36px;
  font-size: 16px;
  color: #3C459A;
  background-color: #E0F5FF;
  outline: none;
  transition: height 0.35s ease-in-out;
}

.accessibility-jump-main a span {
  align-content: baseline;
  margin-bottom: 10px;
  line-height: 1;
}

.accessibility-jump-main.is-hidden a {
  height: 0;
  font-size: 0;
  background: none;
}
