@charset "UTF-8";
/*-------------------------------------------------
title       : 믹스인
Author      : ㅈㅁㅈ
Create date : 2024-05-23
-------------------------------------------------*/
@import url("contents_repond.css");
:root {
  --fontsize: 1.6rem;
  --color: #333;
  --lineheight: calc(3rem / var(--fontsize));
}

/*-------------------------------------------------
title       : 서브 반응형
Author      : PLAN I
Create date : 2023-01-01

History     : 2024-09-13 ㅈㅁㅈ
-------------------------------------------------*/
@media (max-width: 768px) {
  #visual {
    height: 20rem;
    font-size: 4rem;
    line-height: 20rem;
  }
  #contents_body {
    font-size: inherit;
  }
  #contents_title {
    font-size: 3rem;
  }
  .main_wrap {
    margin-bottom: 5rem;
  }
  .contents_util {
    margin: 4rem 0 3rem;
  }
  .contents_util .path {
    display: none;
  }
  #snb .list ul {
    display: block;
    margin-top: 3rem;
  }
  #snb .list li {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    min-width: 100%;
  }
  #snb .list li + li a {
    border-top: 0 none;
  }
  #snb .list a {
    position: relative;
    z-index: inherit;
    height: 5rem;
    border: 1px solid #DCDCDC;
  }
  #snb .list a::before {
    display: none;
  }
  #snb .list .active {
    visibility: visible;
    overflow: visible;
    width: 100%;
    height: 5rem;
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #snb .list .active a {
    z-index: 0;
    border: 0.3rem solid #1D76B7 !important;
  }
  #snb.active li {
    visibility: visible;
    overflow: visible;
    width: 100%;
    height: 5rem;
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}