<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@font-face {
    font-family: 'SEBANG_Gothic';
    src: url('https://cdn.jsdelivr.net/gh/wizfile/font/SEBANG_Gothic.eot');
    src:url('https://cdn.jsdelivr.net/gh/wizfile/font/SEBANG_Gothic.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'SEBANG_Gothic_Bold';
    src: url('https://cdn.jsdelivr.net/gh/wizfile/font/SEBANG_Gothic_Bold.eot');
    src:url('https://cdn.jsdelivr.net/gh/wizfile/font/SEBANG_Gothic_Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

    body {
      font-family: 'SEBANG_Gothic', Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      padding: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    header {
      background-color: #0073e6;
      color: #fff;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .header-content {
      display: flex;
      align-items: center;
    }

    .header-content span {
      font-weight: bold;
      font-size: 1.2em;
      margin-left: 30px;
    }

    .menu {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .menu a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      margin: 0 15px;
      transition: background-color 0.3s ease;
    }

    .menu a:hover {
      text-decoration: underline;
    }

    .menu-icon {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .menu-icon span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: #fff;
      transition: all 0.3s ease;
      margin-left: 10px;
    }

.site-title {
  text-align: center;
  width: 100%;
  font-family: 'SebaNGothic', 'Arial', sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  color: #0073e6; /* 파란색 텍스트 */
  padding: 20px 0;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}


#main-header {
  background-color: #0073e6;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 999;
}

/* 고정 스타일 */
#main-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}



    .search-bar {
      margin: 20px 0;
      text-align: center;
    }

.search-bar form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap; /* 중요! 줄바꿈 방지 */
}

.search-bar input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-bar input[type="submit"] {
  white-space: nowrap;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background-color: #0073e6;
  color: #fff;
  cursor: pointer;
}


    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    table, th, td {
      border: 1px solid #ddd;
    }

    th, td {
      padding: 10px;
      text-align: left;
    }

    th {
      background-color: #f2f2f2;
    }

.sido_box {
  margin-top: 20px;
  background-color: #f4f4f4;
  padding: 0px 10px 10px 10px; /* 상단 여백을 늘려줌 */
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sido_box h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  margin-top: 20px; /* 상단 여백 추가 */
}
    .sido_box .regions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .sido_box .regions a {
      color: #800080;
      text-decoration: none;
      padding: 5px 10px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      white-space: nowrap;
      transition: background-color 0.3s;
    }

    .sido_box .regions a:hover {
      background-color: #f0f0f0;
      text-decoration: underline;
    }

    .address-list {
      margin-top: 40px;
    }

    .address-list h2 {
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .address-list ul {
      list-style-type: none;
      padding: 0;
    }

    .address-list li {
      padding: 5px 0;
      border-bottom: 1px solid #ddd;
    }

    .pagination {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .pagination a {
      margin: 5px;
      padding: 5px 10px;
      border: 1px solid #ddd;
      color: #800080;
      text-decoration: none;
      border-radius: 4px;
    }

    .pagination a.active {
      background-color: #800080;
      color: #fff;
    }


/* 상세 주소 테이블 스타일 개선 */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  background-color: #f9f9ff;
  overflow: hidden;
}

.responsive-table caption {
  background-color: #0073e6;
  color: #fff;
  font-size: 1.2em;
  padding: 0px 20px 0px 20px;
  text-align: left;
}

.responsive-table td.label {
  background-color: #e6f0ff;
  font-weight: bold;
  padding: 12px;
  width: 25%;
  border: 1px solid #d0ddee;
}

.responsive-table td.value {
  background-color: #ffffff;
  padding: 12px;
  border: 1px solid #d0ddee;
}

.responsive-table tr:nth-child(even) td.value {
  background-color: #f3f8ff;
}

.responsive-table input[type="button"] {
  background-color: #0073e6;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.responsive-table input[type="button"]:hover {
  background-color: #005bb5;
}


.blue {
  background-color: #0073e6;  color: #fff;  font-size: 1.2em;  padding: 15px;  caption-side: top;
}


  .footer {
    background-color: #333;  /* 어두운 배경 색상 */
    color: #fff;  /* 흰색 텍스트 */
    text-align: center;  /* 텍스트 중앙 정렬 */
    padding: 20px 0;  /* 상하 패딩 */
    font-size: 14px;  /* 글씨 크기 */
    position: relative;
    bottom: 0;
    width: 100%;
  margin-top: 10px;
  margin-bottom: 100px;
  }

  .footer-content {
    display: flex;
    justify-content: center;  /* 가로로 중앙 정렬 */
    align-items: center;  /* 세로로 중앙 정렬 */
    gap: 20px;  /* 요소 간 간격 */
  }

  .footer .left, .footer .middle, .footer .right {
    font-family: 'Arial', sans-serif;
  }

  .footer .middle {
    color: #888;  /* 구분선 색상 */
  }

  .footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer a:hover {
    color: #0073e6;  /* 마우스 오버 시 파란색으로 변환 */
  }

  /* 모바일 화면에서 크기 조정 */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: 10px;
    }
  }


    /**********************  모바일 스타일 *************************/
    @media screen and (max-width: 768px) {


  body {
    font-size: 14px;
  }

    .container {
      padding: 5px;
      width: 95%;
    }


  .header-content span {
    font-size: 1em;
  }

  .menu a {
    font-size: 14px;
  }

    .search-bar {
      margin: 10px 0 -10px 0;
    }

  .search-bar input[type="text"],
  .search-bar input[type="submit"] {
    font-size: 14px;
    padding: 8px;
  }

  .sido_box h2,
  .address-list h2,
  caption h2 {
    font-size: 1.2em;
  }

  .sido_box .regions a {
    font-size: 13px;
    padding: 6px 8px;
  }

  table th, table td {
    font-size: 13px;
    padding: 8px;
  }

  .responsive-table .label,
  .responsive-table .value {
    font-size: 13px;
  }

.responsive-table caption {
    font-size: 17px;
}


      .header-content {
        display: none;
      }

      .menu-icon {
        display: flex;
      }

    .menu-icon span {
      display: block;
      width: 30px;
      height: 3px;
      background-color: #fff;
      transition: all 0.3s ease;
      margin-left: 10px;
    }


.menu {
  flex-direction: row; /* 👈 가로 정렬로 변경 */
  justify-content: left;
  align-items: left;
  position: absolute;
  top: 40px;
  right: 0;
  width: 100%;
  background-color: #0073e6;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  max-height: 0;
  overflow: hidden;
  flex-wrap: wrap; /* 혹시 좁으면 줄바꿈 허용 */
}

.menu.show {
  transform: scaleY(1);
  max-height: 500px;
}

.menu a {
  margin: 5px 10px; /* 좌우 마진 */
  padding: 5px 15px;
  text-align: center;
  white-space: nowrap;
}

  .search-bar form {
    flex-wrap: nowrap; /* 강제로 한 줄 유지 */
  }

  .search-bar input[type="text"] {
    width: 70%;
  }

  .search-bar input[type="submit"] {
    width: auto;
  }


.site-title {
    font-size: 20px;
    margin: -10px 0;
}

    .pagination a {
      margin: 2px;
      padding: 3px 5px;
      font-size: 1.2em;
    }


    .address-list {
        font-size: 13px; /* 원하는 글자 크기로 설정 */
    }

    }
    /******************  모바일 스타일 *******************/

</pre></body></html>