@charset "UTF-8";
/* ---------------공통 START--------------- */
.sub-title {
  font-size: 25px;
  line-height: 150%;
}

.sub-title + .sub-desc {
  margin-top: 25px;
}

.sub-desc {
  font-size: 18px;
  line-height: 150%;
}

/* ---------------공통 END--------------- */
/* 

*/
/* ---------------sub-visual START--------------- */
.sub-visual {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 450px;
}
.sub-visual::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.sub-visual .bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sub-visual .bg-box .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sub-visual .text-box {
  z-index: 2;
  position: relative;
}
.sub-visual .text-box .sub-visual-title {
  line-height: 150%;
  font-size: 36px;
  opacity: 0;
  transition: opacity 1.5s;
}
.sub-visual .text-box .sub-visual-title + .sub-visual-desc {
  margin-top: 25px;
}
.sub-visual .text-box .sub-visual-desc {
  font-size: 20px;
  line-height: 150%;
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.3s;
}
.sub-visual.active .text-box .sub-visual-title {
  opacity: 1;
}
.sub-visual.active .text-box .sub-visual-desc {
  opacity: 1;
}

/* ---------------sub-visual END--------------- */
/* 

*/
/* ---------------top-category-box START--------------- */
.top-category-box .top-category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.top-category-box .top-category li {
  box-sizing: border-box;
  border: 1px solid #DDD;
  overflow: hidden;
  max-width: 25%;
}
.top-category-box .top-category li:nth-of-type(1) {
  border-radius: 3px 0 0 3px;
}
.top-category-box .top-category li:nth-last-of-type(1) {
  border-radius: 0 3px 3px 0;
}
.top-category-box .top-category li:not(:nth-of-type(1)) {
  margin-left: -1px;
}
.top-category-box .top-category li .btn-category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  max-width: 100%;
  height: 40px;
  font-size: 16px;
  background-color: #FFF;
  color: #555;
  font-weight: 300;
  transition: background-color 0.5s;
}
.top-category-box .top-category li .btn-category.active, .top-category-box .top-category li .btn-category#bo_cate_on {
  background-color: #f3f3f3 !important;
  color: #1c1c1c;
}

/* ---------------top-category-box END--------------- */
/* 

*/
/* ---------------top-search-box START--------------- */
.top-search-box {
  display: flex;
  justify-content: center;
  width: 100%;
}
.top-search-box form {
  display: block;
}
.top-search-box .category-inner {
  position: relative;
  box-sizing: border-box;
  border-bottom: 1px solid #DDD;
}
.top-search-box .category-inner:focus-within::before {
  width: 100%;
}
.top-search-box .category-inner:focus-within .btn-category-open i {
  transform: rotate(180deg);
}
.top-search-box .category-inner:focus-within .category-list {
  opacity: 1;
  visibility: visible;
}
.top-search-box .category-inner:not(:focus-within) .category-list {
  transition-delay: 0s, 0.5s;
}
.top-search-box .category-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 0;
  height: 1px;
  background-color: #1c1c1c;
  transition: width 0.5s;
}
.top-search-box .category-inner .btn-category-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  height: 45px;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 16px;
}
.top-search-box .category-inner .btn-category-open i {
  transition: transform 0.3s;
}
.top-search-box .category-inner .category-list {
  z-index: 2;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 100%;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  border: 1px solid #EEE;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s;
}
.top-search-box .category-inner .category-list li .btn-category {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 16px;
  color: #777;
  background-color: #FFF;
  transition: background-color 0.3s, color 0.3s;
}
.top-search-box .category-inner .category-list li .btn-category#bo_cate_on {
  font-weight: 500;
  color: #1c1c1c;
}
.top-search-box .search-inner {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid #DDD;
}
.top-search-box .search-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 0;
  height: 1px;
  background-color: #1c1c1c;
  transition: width 0.5s;
}
.top-search-box .search-inner .text-input {
  display: block;
  width: 250px;
  height: 45px;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 16px;
}
.top-search-box .search-inner .btn-search {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 16px;
}

/* ---------------top-search-box END--------------- */
/* 

*/
/* ---------------top-btn-box START--------------- */
.top-btn-box {
  display: flex;
  justify-content: flex-end;
}
.top-btn-box li:not(:nth-of-type(1)) {
  margin-left: 15px;
}
.top-btn-box li .btn-etc {
  display: flex;
  width: 100px;
  height: 35px;
  line-height: 33px;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #DDD;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.5s, border-color 0.5s;
}
.top-btn-box li .btn-etc.btn-etc-write {
  background-color: #f7f7f7;
}
.top-btn-box li .btn-etc.btn-etc-delete {
  color: #FFF;
  border-color: #555;
  background-color: #555;
}

/* ---------------top-btn-box END--------------- */
/* 

*/
/* ---------------media query START--------------- */
@media screen and (min-width: 850.1px) {
  /* ---------------top-category-box START--------------- */
  .top-category-box .top-category li .btn-category:hover {
    background-color: #f7f7f7;
  }
  /* ---------------top-category-box END--------------- */
  /* 

  */
  /* ---------------top-search-box START--------------- */
  .top-search-box .category-inner:hover::before {
    width: 100%;
  }
  .top-search-box .category-inner .category-list li .btn-category:hover {
    color: #1c1c1c;
    background-color: #f7f7f7;
  }
  .top-search-box .search-inner:hover::before {
    width: 100%;
  }
  /* ---------------top-search-box END--------------- */
  /* 

  */
  /* ---------------top-btn-box START--------------- */
  .top-btn-box li .btn-etc.btn-etc-write:hover {
    background-color: #e3e3e3;
  }
  .top-btn-box li .btn-etc.btn-etc-delete:hover {
    background-color: #333;
    border-color: #333;
  }
  /* ---------------top-btn-box END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------공통 START--------------- */
  .sub-title {
    font-size: 23px;
  }
  .sub-title + .sub-desc {
    margin-top: 23px;
  }
  .sub-desc {
    font-size: 17px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------sub-visual START--------------- */
  .sub-visual {
    height: 400px;
  }
  .sub-visual .text-box .sub-visual-title {
    font-size: 33px;
  }
  .sub-visual .text-box .sub-visual-title + .sub-visual-desc {
    margin-top: 23px;
  }
  .sub-visual .text-box .sub-visual-desc {
    font-size: 18px;
  }
  /* ---------------sub-visual END--------------- */
  /* 

  */
  /* ---------------top-category-box START--------------- */
  .top-category-box .top-category li .btn-category {
    width: 130px;
    height: 37px;
    font-size: 15px;
  }
  /* ---------------top-category-box END--------------- */
  /* 

  */
  /* ---------------top-search-box START--------------- */
  .top-search-box .category-inner .btn-category-open {
    width: 145px;
    height: 43px;
    padding: 0 13px;
    font-size: 15px;
  }
  .top-search-box .category-inner .category-list li .btn-category {
    height: 43px;
    padding: 0 13px;
    font-size: 15px;
  }
  .top-search-box .search-inner .text-input {
    width: 240px;
    height: 43px;
    padding: 0 13px;
    font-size: 15px;
  }
  .top-search-box .search-inner .btn-search {
    width: 43px;
    height: 43px;
    font-size: 15px;
  }
  /* ---------------top-search-box END--------------- */
  /* 

  */
  /* ---------------top-btn-box START--------------- */
  .top-btn-box li:not(:nth-of-type(1)) {
    margin-left: 13px;
  }
  .top-btn-box li .btn-etc {
    width: 95px;
    height: 33px;
    line-height: 31px;
    font-size: 14px;
  }
  /* ---------------top-btn-box END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------공통 START--------------- */
  .sub-title {
    font-size: 21px;
  }
  .sub-title + .sub-desc {
    margin-top: 20px;
  }
  .sub-desc {
    font-size: 16px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------sub-visual START--------------- */
  .sub-visual {
    height: 350px;
  }
  .sub-visual .text-box .sub-visual-title {
    font-size: 30px;
  }
  .sub-visual .text-box .sub-visual-title + .sub-visual-desc {
    margin-top: 20px;
  }
  .sub-visual .text-box .sub-visual-desc {
    font-size: 17px;
  }
  /* ---------------sub-visual END--------------- */
  /* 

  */
  /* ---------------top-category-box START--------------- */
  .top-category-box .top-category li .btn-category {
    width: 120px;
    height: 35px;
    font-size: 14px;
  }
  /* ---------------top-category-box END--------------- */
  /* 

  */
  /* ---------------top-search-box START--------------- */
  .top-search-box .category-inner .btn-category-open {
    width: 140px;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
  .top-search-box .category-inner .category-list li .btn-category {
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
  .top-search-box .search-inner .text-input {
    width: 230px;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
  .top-search-box .search-inner .btn-search {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  /* ---------------top-search-box END--------------- */
  /* 

  */
  /* ---------------top-btn-box START--------------- */
  .top-btn-box li:not(:nth-of-type(1)) {
    margin-left: 10px;
  }
  .top-btn-box li .btn-etc {
    width: 85px;
    height: 30px;
    line-height: 28px;
    font-size: 13px;
  }
  /* ---------------top-btn-box END--------------- */
}
@media screen and (max-width: 850px) {
  /* ---------------공통 START--------------- */
  .sub-title {
    font-size: 19px;
  }
  .sub-title + .sub-desc {
    margin-top: 17px;
  }
  .sub-desc {
    font-size: 15px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------sub-visual START--------------- */
  .sub-visual {
    height: 300px;
  }
  .sub-visual .text-box .sub-visual-title {
    font-size: 27px;
  }
  .sub-visual .text-box .sub-visual-title + .sub-visual-desc {
    margin-top: 17px;
  }
  .sub-visual .text-box .sub-visual-desc {
    font-size: 16px;
  }
  /* ---------------sub-visual END--------------- */
  /* 

  */
  /* ---------------top-category-box START--------------- */
  .top-category-box .top-category li .btn-category {
    width: 110px;
  }
  /* ---------------top-category-box END--------------- */
  /* 

  */
  /* ---------------top-search-box START--------------- */
  .top-search-box .category-inner .btn-category-open {
    width: 130px;
  }
  .top-search-box .search-inner .text-input {
    width: 210px;
  }
  /* ---------------top-search-box END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------공통 START--------------- */
  .sub-title {
    font-size: 18px;
  }
  .sub-title + .sub-desc {
    margin-top: 15px;
  }
  .sub-desc {
    font-size: 14px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------sub-visual START--------------- */
  .sub-visual {
    height: 250px;
  }
  .sub-visual .text-box .sub-visual-title {
    font-size: 25px;
  }
  .sub-visual .text-box .sub-visual-title + .sub-visual-desc {
    margin-top: 15px;
  }
  .sub-visual .text-box .sub-visual-desc {
    font-size: 15px;
  }
  /* ---------------sub-visual END--------------- */
  /* 

  */
  /* ---------------top-category-box START--------------- */
  .top-category-box .top-category li .btn-category {
    width: 100px;
    height: 33px;
    font-size: 13px;
  }
  /* ---------------top-category-box END--------------- */
  /* 

  */
  /* ---------------top-search-box START--------------- */
  .top-search-box .category-inner .btn-category-open {
    width: 115px;
    height: 37px;
    padding: 0 7px;
    font-size: 13px;
  }
  .top-search-box .category-inner .category-list {
    top: calc(100% + 7px);
  }
  .top-search-box .category-inner .category-list li .btn-category {
    height: 37px;
    padding: 0 7px;
    font-size: 13px;
  }
  .top-search-box .search-inner .text-input {
    width: 200px;
    height: 37px;
    padding: 0 7px;
    font-size: 13px;
  }
  .top-search-box .search-inner .btn-search {
    width: 37px;
    height: 37px;
    font-size: 13px;
  }
  /* ---------------top-search-box END--------------- */
  /* 

  */
  /* ---------------top-btn-box START--------------- */
  .top-btn-box li:not(:nth-of-type(1)) {
    margin-left: 7px;
  }
  .top-btn-box li .btn-etc {
    width: 75px;
    height: 27px;
    line-height: 25px;
    font-size: 12px;
  }
  /* ---------------top-btn-box END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------공통 START--------------- */
  .sub-title {
    font-size: 17px;
  }
  .sub-title + .sub-desc {
    margin-top: 13px;
  }
  .sub-desc {
    font-size: 13px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------sub-visual START--------------- */
  .sub-visual {
    height: 200px;
  }
  .sub-visual .text-box .sub-visual-title {
    font-size: 23px;
  }
  .sub-visual .text-box .sub-visual-title + .sub-visual-desc {
    margin-top: 13px;
  }
  .sub-visual .text-box .sub-visual-desc {
    font-size: 14px;
  }
  /* ---------------sub-visual END--------------- */
  /* 

  */
  /* ---------------top-category-box START--------------- */
  .top-category-box .top-category li .btn-category {
    width: 90px;
    height: 30px;
    font-size: 12px;
  }
  /* ---------------top-category-box END--------------- */
  /* 

  */
  /* ---------------top-search-box START--------------- */
  .top-search-box .category-inner .btn-category-open {
    width: 100px;
    height: 35px;
    padding: 0 5px;
    font-size: 12px;
  }
  .top-search-box .category-inner .category-list li .btn-category {
    height: 35px;
    padding: 0 5px;
    font-size: 12px;
  }
  .top-search-box .search-inner .text-input {
    width: 180px;
    height: 35px;
    padding: 0 5px;
    font-size: 12px;
  }
  .top-search-box .search-inner .btn-search {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  /* ---------------top-search-box END--------------- */
}
@media screen and (max-width: 350px) {
  /* ---------------공통 START--------------- */
  .sub-title {
    font-size: 16px;
  }
  .sub-title + .sub-desc {
    margin-top: 10px;
  }
  .sub-desc {
    font-size: 12px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------sub-visual START--------------- */
  .sub-visual {
    height: 175px;
  }
  .sub-visual .text-box .sub-visual-title {
    font-size: 20px;
  }
  .sub-visual .text-box .sub-visual-title + .sub-visual-desc {
    margin-top: 10px;
  }
  .sub-visual .text-box .sub-visual-desc {
    font-size: 13px;
  }
  /* ---------------sub-visual END--------------- */
  /* 

  */
  /* ---------------top-category-box START--------------- */
  .top-category-box .top-category li .btn-category {
    width: 85px;
  }
  /* ---------------top-category-box END--------------- */
  /* 

  */
  /* ---------------top-search-box START--------------- */
  .top-search-box .category-inner .btn-category-open {
    width: 80px;
  }
  .top-search-box .search-inner .text-input {
    width: 150px;
  }
  /* ---------------top-search-box END--------------- */
}
/* ---------------media query END--------------- */