body,
html {
  height: 100%;
}
/* header */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
  mix-blend-mode: difference;
}
.header_con {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
  justify-content: space-between;
}
.logo {
  width: 118px;
}
.loginMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
}
.loginWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.loginBtn span {
  font-size: 16px;
  color: #f5f5f7;
  font-weight: 300;
}
.menu {
  width: 33px;
  height: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  cursor: pointer;
}
.menubar {
  height: 3px;
  background-color: #f5f5f7;
  border-radius: 3px;
}
.menubar_1 {
  width: 100%;
  transition: all 0.3s;
}
.menubar_1.active {
  width: 70%;
  transform: rotate(45deg) translate(6px, 6px);
}
.menubar_2 {
  width: 70%;
  transition: all 0.3s;
}
.menubar_2.active {
  width: 70%;
  transform: rotate(-45deg) translate(2.5px, -3px);
}
.menuWrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  z-index: 999;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}
.menuUl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.menuUl li {
  overflow: hidden;
}
.menuUl a {
  font-size: 40px;
  font-weight: 700;
  color: #f5f5f7;
}
.menuCon {
  position: relative;
  z-index: 1;
}
.menu_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
}
.menu_bg_1 {
  background-color: red;
}
.menu_bg_2 {
  background-color: blue;
}
.menu_bg_3 {
  background-color: purple;
}
.menu_bg_4 {
  background-color: #1e1e1e;
}
/* footer */
footer {
  width: 100%;
  height: 244px;
  background-color: #f5f5f7;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.footer_con {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer_top,
.footer_bottom {
  width: 100%;
}
.footer_top {
  max-width: 400px;
}
.footer_bottom {
  max-width: auto;
}
.footer_ul,
.footer_ul2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-weight: 500;
}
.footer_ul {
  color: #1e1e1e;
}
.footer_list a {
  font-size: 20px;
}
.copyright {
  font-weight: 500;
  margin: 20px 0;
  color: #939393;
  font-size: 15px;
}
.footer_ul2 {
  flex-wrap: wrap;
  column-gap: 30px;
  justify-content: center;

  color: #939393;
}
.footer_list2 {
  flex-basis: 1;
  flex-grow: 100px;
}
.footer_list2 a {
  font-size: 15px;
}

@media all and (max-width: 1100px) {
  .pc {
    display: none;
  }
  .menu {
    width: 33px;
    height: 15px;
  }
  .header_con {
    padding-top: 0;
  }
  .logo {
    max-width: 118px;
    width: 30%;
    min-width: 65px;
  }
  /* footer */
  footer {
    height: 200px;
  }

  .footer_ul,
  .footer_ul2 {
    font-size: 14px;
  }
  .copyright,
  .footer_list2 {
    font-size: 13px;
  }
  .footer_list a {
    font-size: 16px;
  }
}
