@charset "utf-8";
html,
body {
      font-size: 17px;
}
  
  .btn_scroll {
      display: block;
      position: absolute;
      left: 50%;
      bottom: 3em;
      animation: scroll .8s infinite alternate;
      z-index: 10;
  }
  @keyframes scroll {
      0% {
          transform: translateY(0);
      }
  
      100% {
          transform: translateY(-20px);
      }
  }
  
  /**************************************************************/
  /**************************************************************/
  /************************* basic setting **********************/
  /**************************************************************/
  /**************************************************************/
  /* ----------------------- basic setting ---------------------*/
  /* 섹션 제목 */
  .section_wrap section {
      width: var(--web-width);
      margin: 0 auto;
      /* margin-bottom: 50px; */
      overflow: hidden;
  }
  .section_wrap section .tit {
      overflow: hidden;
      margin-top: 4rem;
      margin-bottom: 2rem;
      text-align: center;
  }
  .section_wrap section .tit h4 {
      /* float: left; */
      font-size: 1.75rem;
      line-height: 1.3em;
      font-weight: 600;
      display: inline-block;
  }
  /* 제목 옆으로 들어가는 버튼 */
  .section_wrap section .tit .viewmore {
      float: right;
      font-size: 1rem;
      font-weight: 500;
      margin-top: 16px;
  }

  /* 서브페이지 대제목 */
  .max .tit h4 {
      font-size: 2rem;
      line-height: 1.3em;
      /* margin-top: 60px; */
      margin-bottom: 2rem;
      font-weight: 500;
      text-align: center;
  }
  .max .tit h4 span {
      color: var(--sub-color-2);
      font-weight: 700;
  }
  /* 서브페이지 중제목 */
  .max .tit h5 {
      font-size: 1.5rem;
      line-height: 1.3em;
      margin-top: 50px;
      margin-bottom: 30px;
      font-weight: 500;
      text-align: center;
  }
  /* 서브페이지 소제목 */
  .max .subtit {
      display: flex;
      justify-content: center;
      align-items: center;
  }

/**************************************************************/
/**************************************************************/
/************************ sub 서브페이지 **********************/
/**************************************************************/
/**************************************************************/

