#skip_nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

#skip_nav a {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;

  background: #000;
  color: #fff;

  height: 80px;
  text-align: center;
  line-height: 80px;
}

#skip_nav a:focus,
#skip_nav a:active {
  top: 0;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  margin: -1px;
  overflow: hidden;
}

.gr_txt {
  color: transparent;
  text-shadow: 1px 0 3px rgba(255, 255, 255, 0.25);
  background: linear-gradient(to right top, #0a96ba, #032777, #333333);
  background-clip: text;
}

.table {
  /* margin-top: 4rem; */
  width: 100%;
  border-top: 2px solid var(--primary-color);

  line-height: 1.5;
}

.table td {
  border-bottom: 1px solid var(--line-color);
  padding: 16px 24px;
}

.table th {
  border-bottom: 1px solid var(--line-color);
  padding: 16px 24px;
  text-align: left;
  font-weight: 400;
}

/* 테이블 반응형: 500px 미만 시 가로 스크롤 */
.table_wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0; /* flex 컨테이너 내 축소 허용 */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table_wrap .table {
  min-width: 500px;
}
.table_wrap .table th {
  background: var(--background-color);
}

.table_wrap .table td {
  border-left: none;
}
.dot_list {
}

.dot_list > * {
  position: relative;
  display: block;
  line-height: 32px;
  /* border-bottom: 1px solid #ddd; */
  padding-left: 24px;

  word-break: keep-all;
}

.dot_list > *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;

  width: 4px;
  height: 4px;
  border-radius: 50%;

  background: var(--primary-color);
}

.t_js {
  text-align: justify;
}

.t_js::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
}


.right-btn {
  padding: 8px 18px;
  font-size: 2rem;
  background: #3a8afd;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.small-btn {
  padding: 10px 12px;
  font-size: 1.6rem;
  background: #3a8afd;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.right-btn-img {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  cursor: pointer;
  padding: 8px 18px;
  font-size: 2rem;
  background: #3a8afd;
  color: #fff;
  border: none;
  border-radius: 5px;
  
}
.right-btn-img img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.mb8 {
  margin-bottom: 8px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

  .mb40 {
    margin-bottom: 40px;
  }

.mb50 {
  margin-bottom: 50px;
}

.mt8 {
  margin-top: 8px;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt32 {
  margin-top: 32px;
}

.mt40 {
  margin-top: 40px;
}


.file_wrap {
  display: flex; 
  gap: 24px;
}
.file_item {
  display: flex;
  flex-direction: column;
}
.file_item_title {
  /* font-size: 2rem; */
  /* font-weight: 700; */
  color: #333;
  margin-bottom: 16px;
}
.file_item_content img {
  width: 100%;
  height: auto;   
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .file_wrap {
      flex-direction: column;
  }
  .file_item_content img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
}



.con_wrap .img_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.con_wrap .img_wrap.view4 {
  grid-template-columns: repeat(4, 1fr);
}


.con_wrap .img_item {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.con_wrap .img_item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
}


  
  @media (max-width: 768px) {
    .con_wrap .img_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .con_wrap .img_wrap.view4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .con_wrap .img_item {
            
            margin-bottom: 10px;
  }
  .con_wrap .img_wrap {
          flex-direction: row;
          flex-wrap: wrap;
      }
     
  }