@charset "UTF-8";
header {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
@media (min-width: 1024px) {
  header {
    padding: 0 15%;
  }
}

.header-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 48px;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
}
.header-logo button {
  background-color: #fff;
  border: none;
  margin: 0 0 0 12px;
  padding: 0;
  z-index: 100;
}

.header-button {
  display: flex;
  justify-content: end;
}
.header-button button {
  margin: 0;
  border: none;
  width: 164px;
  z-index: 100;
}
.header-button button a {
  font-weight: 600;
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.header-button .btn_alliance {
  background: #D0141B;
}
@media (max-width: 568px) {
  .header-button .btn_alliance {
    display: none;
  }
}
.header-button .btn_apply {
  background: #00A051;
}

.menu-btn {
  display: flex;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 3px;
  background-color: #707070;
  position: absolute;
  transition: 0.3s;
  z-index: 100;
}

.menu-btn span:before {
  bottom: 6px;
}

.menu-btn span:after {
  top: 6px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  transition: 0.3s;
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: 0.3s;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  transition: all 0.5s; /*アニメーション設定*/
  opacity: 0;
  padding-top: 30%;
}
@media (min-width: 1024px) {
  .menu-content {
    width: 30%;
    padding-top: 0;
  }
}

.menu-content ul {
  padding: 10px 10px 0;
}

.menu-content ul li {
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
  padding: 12px 20px;
  position: relative;
  font-weight: 600;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
  opacity: 1;
}
@media (min-width: 1024px) {
  #menu-btn-check:checked ~ .menu-content {
    left: 70%;
  }
}

#current a {
  color: #00A051;
}/*# sourceMappingURL=header.css.map */