@font-face {
	font-family: 'PL_B';
	font-weight: bold;
	font-style: bold;
	src: url("./fonts/Paperlogy-7Bold.ttf")  format('truetype');
}

@font-face {
	font-family: 'PL_M';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Paperlogy-5Medium.ttf")  format('truetype');
}

@font-face {
	font-family: 'PL_R';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Paperlogy-4Regular.ttf")  format('truetype');
}

@font-face {
	font-family: 'PL_L';
	font-weight: 100;
	font-style: normal;
	src: url("./fonts/Paperlogy-3Light.ttf")  format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul,li,ol {
  list-style: none;
}

#header {
  width: 100%;
  height: 80px;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(95,95,95,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .wrap .logo {
  width: auto;
  height: auto;
  display: block;
}

#header .wrap .logo img {
  width: auto;
  height: auto;
}

#header .wrap .info {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

#header .wrap .info a {
	font-family: 'PL_R';
	font-weight: normal;
  font-size: 16px;
  color: #5F5F5F;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .wrap .info a.join {
  width: 100px;
  height: 30px;
  font-family: 'PL_B';
	font-weight: bold;
  border-radius: 5px;
  background: #EA6483;
  color: #fff;
}

#footer {
  width: 100%;
  height: auto;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #5F5F5F;
}

#footer .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
}

#footer .wrap .logo {
  width: auto;
  height: auto;
  display: block;
}

#footer .wrap .logo img {
  width: auto;
  height: auto;
}

#footer .wrap .line {
  width: 100%;
  height: 1px;
  background: #5F5F5F;
  margin: 50px auto;
}

#footer .wrap ul {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 20px;
}

#footer .wrap ul li {
  width: auto;
  height: auto;
  position: relative;
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 16px;
  color: #5F5F5F;
}

#footer .wrap ul li::after {
  content: "";
  width: 2px;
  height: 18px;
  background: #5F5F5F;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

#footer .wrap ul li:last-of-type:after {
  display: none;
}

#footer .wrap p {
  font-family: 'PL_B';
	font-weight: bold;
  font-size: 16px;
  color: #5F5F5F;
}

#quick_btn {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 99;
}

#quick_btn a {
  width: auto;
  height: auto;
  display: block;
}

#quick_btn a img {
  width: 80px;
  height: auto;
}

@media (max-width: 1600px) {
  #header .wrap {
    max-width: 90%;
  }

  #footer .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #footer .wrap {
    text-align: center;
  }

  #footer .wrap ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  #header {
    height: 50px;
  }

  #header .wrap .logo img {
    width: 70px;
  }

  #header .wrap .info a {
    font-size: 14px;
  }

  #header .wrap .info a.join {
    width: 80px;
    height: 25px;
  }

  #quick_btn a img {
    width: 50px;
  }

  #quick_btn {
    gap: 10px;
    right: 20px;
    bottom: 30px;
  }
}

@media (max-width: 700px) {
  #footer {
    padding: 100px 0 50px;
  }

  #footer .wrap .logo img {
    width: 80px;
  }

  #footer .wrap .line {
    margin: 30px auto;
  }

  #footer .wrap ul li {
    font-size: 12px;
  }

  #footer .wrap ul {
    gap: 20px;
  }

  #footer .wrap ul li::after {
    height: 14px;
    right: -10px;
  }

  #footer .wrap p {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  #header .wrap .logo img {
    width: 60px;
  }
  
  #header .wrap .info a {
    font-size: 12px;
  }

  #header .wrap .info a.join {
    width: 70px;
    height: 20px;
  }

  #header .wrap .info {
    gap: 10px;
  }

  #quick_btn a img {
    width: 60px;
  }

  #quick_btn {
    bottom: 50px;
  }
}