@charset "UTF-8";
body {
  font-weight: 500;
}
.container_wrap {
  padding: 60px 0 145px;
}
.inner {
  padding: 0 34px;
}
.site_map {
  
}
.site_map_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.site_map .title {
  margin-bottom: 26px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: var(--main_orange);
}
.site_map .description {
  text-align: center;
  color: #BFBFBF;
}
.site_type {
  width: 206px;
}
.bottom_line {
  border-bottom: 2px solid var(--red_orange);
}
.site_type h4 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
  background: var(--red_orange);
  border-radius: 4px;
  color: #FFFFFF;
}
.site_type h4 span {
  display: block;
  font-size: 14px;
  color: #DBDBDB;
}
.site_type h4 .toggle_btn {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 37px;
  height: 37px;
  transform: translateY(-50%) rotate(180deg);
  display: none;
}
.site_type h4 .toggle_btn img {
  width: 100%;
}
.site_type .site_list {
  padding-bottom: 13.5px;
}
.site_type .list_item {

}
.site_type .list_item h5 {
  padding: 22px 0 16.5px;
  border-bottom: 1px solid #000000;
  font-weight: 500;
  color: var(--red_orange);
}
.site_type .list_item .detail_list {
  margin-top: 17px;
}
.site_type .inside_list .detail_list {
  margin-top: 13.5px;
}
.site_type .list_item .detail_list > li {
  position: relative;
}
.site_type .list_item .detail_list > li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  transform: translateY(100%);
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--red_orange);
  border-radius: 50%;
}
.site_type .list_item .detail_list li a{
  display: block;
  padding: 8px 0 8px 43px; 
}
.site_type .liner{
  position: relative;
  margin-bottom: 46px;
}
.site_type .liner::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  bottom: -23px;
}


/*================ 태블릿 ================*/
@media screen and (max-width: 1400px){
  .container_wrap {
    width: 100%;
    padding: calc(100vw*(60/1400)) 0 calc(100vw*(145/1400));
  }
  .site_map .title {
    margin-bottom: calc(100vw*(26/1400));
    font-size: calc(100vw*(25/1400));
  }
  .site_type {
    width: calc(100vw*(206/1400));
  }
  .site_type h4 {
    height: calc(100vw*(65/1400));
  }
  .site_type h4 span {
    font-size: calc(100vw*(14/1400));
  }
  .site_type .site_list {
    padding-bottom: calc(100vw*(13.5/1400));
  }
  .site_type .list_item h5 {
    padding: calc(100vw*(22/1400)) 0 calc(100vw*(16.5/1400));
  }
  .site_type .list_item .detail_list {
    margin-top: calc(100vw*(17/1400));
  }
  .site_type .inside_list .detail_list {
    margin-top: calc(100vw*(13.5/1400));
  }
  .site_type .list_item .detail_list > li {
    position: relative;
  }
  .site_type .list_item .detail_list > li::before {
    top: calc(100vw*(9/1400));
    width: calc(100vw*(8/1400));
    height: calc(100vw*(8/1400));
  }
  .site_type .list_item .detail_list li a{
    display: block;
    padding: calc(100vw*(8/1400)) 0 calc(100vw*(8/1400)) calc(100vw*(43/1400)); 
  }
  .site_type .liner{
    position: relative;
    margin-bottom: calc(100vw * (46/1400));
  }
  .site_type .liner::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    bottom: calc(100vw * (-23/1400));
  }
}
/*================ 모바일 ================*/
@media all and (max-width: 900px) {
  .container_wrap {
    padding: calc(100vw*(20/428)) 0 calc(100vw*(80/1400));
  }
  .inner {
    width: 100%;
    padding: 0 22px;
  }
  .site_map .title {
    margin-bottom: calc(100vw*(26/428));
    font-size: calc(100vw*(25/428));
  }
  .site_map .description {
    display: none;
  }
  .site_map_wrap {
    flex-direction: column;
  }
  .site_type {
    width: 100%;
    margin-bottom: calc(100vw*(30/428));
  }
  .site_type.inside_list:nth-of-type(1) {
    margin-top: calc(100vw*(30/428));
  }
  .site_type h4 {
    height: calc(100vw*(65/428));
    cursor: pointer;
  }
  .site_type h4 .toggle_btn {
    right: calc(100vw*(20/428));
    width: calc(100vw*(37/428));
    height: calc(100vw*(37/428));
    display: block;
  }
 
  .site_type h4 span {
    font-size: calc(100vw*(14/428));
  }
  .site_type .site_list {
    width: calc(100vw*(206/428));
    margin: auto;
    padding-bottom: calc(100vw*(13.5/428));
    display: none;
  }
  .site_type.current>.site_list {
    display: block;
  }
  .site_type.current>h4 .toggle_btn {
    transform: translateY(-50%) rotate(0);
  } 
  .site_type .list_item h5 {
    padding: calc(100vw*(20/428)) 0 calc(100vw*(15/428));
  }
  .site_type .list_item .detail_list {
    margin-top: calc(100vw*(17/428));
  }
  .site_type .inside_list .detail_list {
    margin-top: calc(100vw*(12/428));
  }
  .site_type .list_item .detail_list > li {
    position: relative;
  }
  .site_type .list_item .detail_list > li::before {
    top: calc(100vw*(9/428));
    width: calc(100vw*(8/428));
    height: calc(100vw*(8/428));
  }
  .site_type .list_item .detail_list li a{
    display: block;
    padding: calc(100vw*(8/428)) 0 calc(100vw*(8/428)) calc(100vw*(43/428)); 
  }
  .site_type .liner{
    position: relative;
    margin-bottom: calc(100vw * (46/428));
  }
  .site_type .liner::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #DBDBDB;
    bottom: calc(100vw * (-23/428));
  }
}