#category_wrap {
  width: 100%;
  max-width: 250px;
  height: auto;
  flex-shrink: 0;
}

#category_wrap h2 {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #fff;
  background: #053863;
  border-radius: 0 20px 20px 0;
  margin-bottom: 50px;
}

#category_wrap ul {
  width: 100%;
  height: auto;
}

#category_wrap ul li {
  width: 100%;
  height: 50px;
  padding-left: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #888;
  transition: all 0.3s;
}

#category_wrap ul li.active {
  border-bottom: 1px solid #053863;
}

#category_wrap ul li a {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #888;
  transition: all 0.3s;
}

#category_wrap ul li.active a {
  color: #053863;
}

#category_wrap ul li:hover {
  border-bottom: 1px solid #053863;
}

#category_wrap ul li:hover a {
  color: #053863;
}

#title_wrap {
  width: 100%;
  height: auto;
  padding-bottom: 50px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 100px;
}

#title_wrap h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 40px;
  color: #000;
  margin-bottom: 30px;
}

#title_wrap .wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#title_wrap .wrapper .inner {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

#title_wrap .wrapper .inner a {
  width: auto;
  height: auto;
  display: block;
}

#title_wrap .wrapper .inner img {
  width: auto;
  height: auto;
}

#title_wrap .wrapper .inner p {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  color: #888;
}

#title_wrap .wrapper .inner p.active {
  color: #000;
}

#title_wrap .wrapper .btn_wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
}

#title_wrap .wrapper .btn_wrap button {
  width: auto;
  height: auto;
  background: none;
  border: none;
}

#title_wrap .wrapper .btn_wrap button img {
  width: auto;
  height: auto;
}

@media (max-width: 1400px) {
  #category_wrap {
    display: none;
  }
}

@media (max-width: 1200px) {
  #title_wrap h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  #title_wrap {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  #title_wrap h2 {
    font-size: 24px;
  }

  #title_wrap .wrapper .inner {
    gap: 15px;
  }

  #title_wrap .wrapper .inner p {
    font-size: 14px;
  }

  #title_wrap .wrapper .inner img {
    width: 14px;
  }

  #title_wrap .wrapper .inner img.arrow {
    width: 5px;
  }

  #title_wrap .wrapper .btn_wrap {
    display: none;
  }

  #title_wrap {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}