@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.2s;
  width: 100%;
  max-height: 100%;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  background: white;
  height: var(--header__height);
}
.header__wrap__L {
  display: flex;
  height: 100%;
}
.header__wrap__L img {
  width: 200.59px;
  height: 100%;
}
.header__wrap__L p {
  color: black;
  font-size: 15px;
  line-height: 15px;
  margin: 0 20px;
  margin-top: 2px;
}
.header__wrap__L a {
  display: flex;
  align-items: center;
  text-decoration: none;
  text-align: center;
  background: white;
  margin: 0 1px;
}
.header__wrap__L a:hover {
  filter: brightness(95%);
}
.header__wrap__R {
  margin-right: 15px;
  height: var(--header__height);
}
.header__wrap__R__imgs {
  display: flex;
  flex-wrap: wrap;
  width: 160px;
  height: 100%;
}
.header__wrap__R__imgs > a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px 1px;
  width: calc(50% - 2px);
  height: 28px;
  background: white;
}
.header__wrap__R__imgs > a:hover {
  filter: brightness(90%);
}
.header__wrap__R__imgs img {
  width: 24px;
  height: 24px;
}
.header__wrap__R__imgs p {
  width: 56px;
  font-size: 10px;
  color: black;
  text-align: center;
}
.header__wrap__R__ham {
  display: none;
  background: white;
  width: 45px;
  height: 100%;
  position: relative;
  justify-content: center;
  cursor: pointer;
}
.header__wrap__R__ham:active {
  filter: brightness(95%);
}
.header__wrap__R__ham::before, .header__wrap__R__ham::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  background: #ddd;
  transition: 0.4s;
}
.header__wrap__R__ham::before {
  top: 15%;
}
.header__wrap__R__ham::after {
  top: 40%;
}
.header__wrap__R__ham__p {
  width: 100%;
  text-align: center;
  font-size: 12px;
  position: absolute;
  bottom: 5%;
  color: #aaa;
}
.header__wrap__R__ham_chk {
  display: none;
  /* 透明度0 */
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  /* ブラウザのデフォルトのスタイルを削除 */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* レイアウトから無視 */
  position: fixed;
}
.header__wrap__R__ham_chk:focus-visible + header > .header__wrap > .header__wrap__R > .header__wrap__R__ham {
  box-shadow: 0 0 4px #004aa1;
}
.header__wrap__R__ham_chk:checked + .header > .header__wrap > .header__wrap__R > .header__wrap__R__ham::before {
  transform: translateY(4px) rotate(22deg);
}
.header__wrap__R__ham_chk:checked + .header > .header__wrap > .header__wrap__R > .header__wrap__R__ham::after {
  transform: translateY(-7px) rotate(-22deg);
}
.header__wrap__R__ham_chk:checked + .header > .header__wrap ~ .header__V {
  transition: 0.3s;
  transform: translateX(calc(-100vw + 45px + 3px + 7px));
}
.header__wrap__R__ham_chk:checked + .header > .header__wrap ~ .header__V > .header__V__menu {
  background: white;
}
.header__wrap__R__ham_chk:checked + .header > .header__wrap ~ .header__V > .header__V__menu a {
  display: flex;
}
.header__wrap__R__ham_chk:checked + .header > .header__wrap ~ .header__V_bg {
  display: block;
}
.header__wrap__R__ham_chk:checked + .header + .main {
  transition: 0.3s;
  filter: blur(4px);
}
.header__V {
  position: fixed;
  top: 0;
  right: 3px;
  display: flex;
  width: 6px;
  height: 100%;
  z-index: 2;
}
.header__V__line {
  height: 100vh;
}
.header__V__line_0 {
  width: 2px;
  background: yellow;
}
.header__V__line_1 {
  width: 2px;
  background: white;
}
.header__V__line_2 {
  width: 2px;
  background: #233b6c;
}
.header__V__menu {
  position: absolute;
  left: 6px;
  top: 51px;
  width: calc(100vw - 45px - 6px - 1px);
  height: calc(100% - 51px);
  background: none;
}
.header__V__menu__top > a {
  display: none;
  justify-content: left;
  align-items: center;
  margin: 2px 2px;
  padding-left: 20px;
  width: calc(100% - 4px);
  height: 70px;
  background: white;
}
.header__V__menu__top > a:active {
  filter: brightness(90%);
}
.header__V__menu__top > a p {
  color: black;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  margin-right: 12px;
  animation: header__V__menu__top 0.6s ease-out;
}
@keyframes header__V__menu__top {
  0% {
    transform: translateX(180px);
  }
  100% {
    transform: translateX(0);
  }
}
.header__V__menu__bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: absolute;
  bottom: 10px;
}
.header__V__menu__bottom > a {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 2px 2px;
  width: calc(50% - 4px);
  height: 40px;
  background: white;
  border-bottom: 1px solid rgb(240, 240, 240);
  border-right: 1px solid rgb(240, 240, 240);
}
.header__V__menu__bottom > a:hover {
  filter: brightness(90%);
}
.header__V__menu__bottom img {
  width: 30px;
  height: 30px;
}
.header__V__menu__bottom p {
  width: 70px;
  font-size: 12px;
  color: black;
  text-align: center;
}
.header__V_bg {
  display: none;
  background: rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  filter: brightness(95%);
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.header__line {
  width: 100%;
  height: 2px;
}
.header__line_0 {
  background: #78a7d3;
}
.header__line_1 {
  background: white;
}
.header__line_2 {
  background: rgb(5, 172, 63);
}
.header__Vline {
  position: absolute;
}
.header__Vline_0 {
  top: 0;
  height: 100vh;
  width: 2px;
  right: 3px;
  background: #233b6c;
}
.header__Vline_1 {
  top: 0;
  width: 2px;
  height: 100vh;
  right: 7px;
  background: yellow;
}
.header__visible {
  display: none;
}
.header__visible:checked ~ .header {
  transform: translateY(-100%);
}
.header__visible:checked ~ .header a {
  display: none;
}
.header__visible:checked ~ .header .header__V__line {
  display: none;
}

@media screen and (max-width: 767px) {
  .header__wrap__L img {
    width: 150.44px;
  }
  .header__wrap__L > a {
    display: none;
  }
  .header__wrap__L > a:first-child {
    display: block;
  }
  .header__wrap__R__imgs {
    display: none;
  }
  .header__wrap__R__ham {
    display: flex;
  }
  .header__wrap__R__ham_chk {
    display: block;
  }
}