  @import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Noto+Sans+KR:wght@100..900&display=swap');
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans KR", sans-serif;
  }
  #nav{
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #fff;
	box-shadow: 0px 1px 25px 0px rgba(0,0,0,0.3);
  }
  #nav .gnb_wrapper{
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 100px;
    line-height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .gnb_wrapper .gnb_logo {position:relative;top:15px;display:block;} /* 로고시작위치 */
  .gnb_wrapper .gnb_logo img {max-width:100%;max-height:100%;}
  .mobile_logo {
    display:none;
  } 
  .gnb_wrapper .navul{
	padding-top:16px;
    display: inline-flex;
  }
  .navul div li{
    list-style: none;
  }
  .navul div li a{
    color:#2f363c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 9px 25px;
    transition: all 0.3s ease;
  }
  .navul div li a:hover{
    color:#2f363c;
  }
  .navul div:hover li a { color:#aa805b; transition: all 0.3s ease;}
  .navul .mobile-item{
    display: none;
   }
  .navul div .sub-menu{
    position: absolute;
    background: #fff;
    width: 180px;
    top: 100px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .navul div li:hover .sub-menu{
    background:#fff;
    transition: all 0.3s ease;
    top: 100px;
    opacity: 1;
    visibility: visible;
  }
  .sub-menu li a{
    color:#2f363c !important;
	font-size: 16px !important;
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
	line-height: 35px;
  }
  .sub-menu li a:hover{
    background:#aa805b;
    color:#fff !important;
	line-height: 35px;
  }
  
  .gnb_wrapper .btn{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .gnb_wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 22px;
  }
  
  .gnb_wrapper .btn.close-btn img {max-width:100%;height:auto;float:left;margin-left:-20px !important;margin-right:130px;}

  
  /* original 970px */
  @media screen and (max-width: 1024px) {
   .gnb_wrapper .btn{
    display: block;
  }
  .gnb_wrapper .navul{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 40px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
	border-bottom : 30px solid #fff;
  }
  .mobile_logo {
    display:block;
  }
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .navul{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .navul div { border-bottom : 1px solid #ccc; }
  .navul div li{
    margin-top: 15px;
	margin-bottom:7px;
  }
  .navul div li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .navul div .sub-menu{
    position: static;
    opacity: 1;
    top: 75px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop01:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop02:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop03:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop04:checked ~ .sub-menu{
    max-height: 100%;
  }
  #showDrop05:checked ~ .sub-menu{
    max-height: 100%;
  }
  .navul div .desktop-item{
    display: none;
  }
  .navul div .mobile-item{
    display: block;
    color: #2f363c;
    font-size: 20px;
    font-weight: 600;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .navul div .mobile-item:hover{
    background: #aa805b;
	color: #fff;
  }
  .sub-menu li{
    margin: 0;
  }
  .sub-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  }
  #nav input{
    display: none;
  }
  a.btn-secondary{
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    background-color: white;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(43, 108, 176) !important;
    border: 1px solid rgb(66, 153, 225);
    line-height: 26px;
	text-decoration:none;
	float:right;
  }
  .margin_center { height:50px;position:relative; }
  @media screen and (max-width:968px) {
   .margin_center { height:0px;position:relative; }
  }

  /*---- footer --------*/
  .footer {
    background-color: #232323;
    color: white;
    
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: top;
    flex-wrap: wrap;
    padding:50px 0 50px 10px;
    max-width: 1280px;
    margin: auto;
  }

  .footer-section {
    flex: 1;
    min-width: 250px;
    padding: 10px;
  }

  .company-info p {
    line-height:30px;
    font-size:15px;
  }

 .company-info > .company-name {
    color:#fff;
 }

 .footer-section h3 {
    margin-bottom: 10px;
 }

 .footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
 }

 .footer-section a:hover {
    text-decoration: underline;
 }

 /* 하단 카피라이트 */
 .footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 10px;
    font-size: 14px;
 }

 /* 반응형 스타일 */
 @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
	.company-info p {
        font-size:14px;
    }

    
  }
  /*---- footer end ----*/

   /*----main notice ----*/
 .notice_wrap {
    margin:0 auto;
    width: 1280px;
    max-width: 100%;
    background: #fff;
	/*
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px; */ 
	padding:10px; 
  }

  .notice_title p {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
  }

	

  .notice_subject ul {
    list-style: none;
    display: flex;
    flex-direction: column; /* 한 줄씩 정렬 */
  }

  .notice_subject li {
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd;
    background: #fff;
    padding: 15px 20px; 
    width: 100%; /* 한 줄씩 배치 */
    transition: 0.3s;
  }

  .notice_subject li:first-child { border-bottom: none; }

  .notice_subject li:hover {
    background: #eaeaea;
  }

  .notice_subject a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .subject {
    font-size: 16px;
    font-weight: bold;
    color: #005197;
    flex-shrink: 0;
  }

  .tit {
    font-size: 20px;
    font-weight: 500;
    flex-grow: 1;
    color:#333 !important;
  }

  .date {
    font-size: 14px;
    color: #777;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /*---- 반응형 스타일 ----*/
  @media (max-width: 768px) {
    .notice_wrap {
      width: 100%;
    /* padding: 20px; */ 
    }
     
    .notice_subject li {
      padding: 10px;
    }
     
    .notice_subject a {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }

    .tit {
      font-size: 16px;
    }

    .date {
      font-size: 12px;
    }
  }
  /*---- notice end ----*/

   #b_wrap {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 1280px;
    }
    #b_wrap p {
        position: relative;
        overflow: hidden;
        padding: 0; /* 여백을 제거하여 캡션이 벗어나지 않도록 설정 */
        border-radius: 8px;
        background-color: white;
        height: 100%; /* 이미지와 같은 높이를 유지 */
    }
    #b_wrap img {
        width: 100%;
        height: 100%; /* 이미지 높이를 고정 */
        object-fit: cover; /* 이미지가 영역에 맞춰 잘리도록 설정 */
        display: block;
        border-radius: 8px;
    }
    #b_wrap p strong {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        text-align: center;
        padding: 10px;
        opacity: 0;
        transition: opacity 0.5s;
        border-radius: 0 0 8px 8px;
    }
    #b_wrap p span {
        display: none;
    }
    #b_wrap p:hover strong {
        opacity: 1;
    }

    @media (max-width: 768px) {
        #b_wrap {
            grid-template-columns: repeat(2, 1fr);
        }
    }

	/* 기본 스타일 중앙이미지 */
    .m_wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .img_wrap {
      position: relative;
      width: 50%;
      margin: 0;
      padding: 0;
    }

    .img_wrap img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 텍스트 스타일 (왼쪽 정렬) */
    .img_text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 20px;
      text-align: left; /* 텍스트 왼쪽 정렬 */
      width: 60%;
      line-height: 1.4;
    }

    /* 버튼 스타일 (가운데 정렬) */
    .img_text .btn {
      display: block; /* 블록 요소로 변경 */
      width: fit-content; /* 버튼 크기를 내용에 맞게 설정 */
      margin: 20px auto; /* 버튼을 가운데 정렬 */
      padding: 10px 18px;
      background:#777777;
      color: white;
      text-decoration: none;
      font-size: 16px;
      border-radius: 25px;
      transition: background 0.3s ease-in-out;
    }

    .img_text .btn:hover {
      background:#d69e7b;
    }

    /* 모바일 뷰 (작은 화면에서 텍스트와 이미지 조정) */
    @media (max-width: 768px) {
      .m_wrap {
        flex-direction: column;
      }

      .img_wrap {
        width: 100%; /* 모바일에서는 이미지가 화면 너비를 꽉 채움 */
      }

      .img_text {
        font-size: 16px;
        width: 90%;
      }

      .img_text .btn {
        font-size: 14px;
        padding: 8px 14px;
        margin-top: 15px; /* 모바일에서도 버튼이 적절히 내려가도록 조정 */
      }
    }

    /* 매우 작은 화면 (더 작은 모바일 뷰) */
    @media (max-width: 480px) {
      .img_text {
        font-size: 14px;
      }
    }
