/* notice */
#notice .width-wrap {
  padding: var(--padding120);
}
#notice .width-wrap > h1 {
  margin-top: 16px;
}
#notice .width-wrap .notice-list {
  margin: 80px 0;
  min-height: 402px;
}
#notice .width-wrap .notice-list .notice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 107px;
  padding: 40px 20px;
  border-bottom: 1px solid var(--gray);
  position: relative;
  cursor: pointer;
}
#notice .width-wrap .notice-list .notice-item:hover {
  background: #f9f9f9;
}
#notice .width-wrap .notice-list .notice-item:hover::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background: var(--po);
  position: absolute;
  bottom: 0;
  left: 0;
}
#notice .width-wrap .notice-list .notice-item:hover p:nth-child(1) {
  font-weight: 500;
}
#notice .width-wrap .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#notice .width-wrap .pagination svg {
  pointer-events: all;
  cursor: pointer;
}
#notice .width-wrap .pagination svg.non {
  opacity: 0.4;
}
#notice .width-wrap .pagination .number {
  display: flex;
  gap: 6px;
}
#notice .width-wrap .pagination .number p.cur {
  color: var(--po);
}

/* detail */
#detail .width-wrap {
  padding: var(--padding200);
}
#detail .width-wrap article {
  min-height: 450px;
}
#detail .width-wrap article > a {
  gap: 6px;
}
#detail .width-wrap article .tit-zone {
  margin: 60px 0;
  padding-bottom: 20px;
  position: relative;
}
#detail .width-wrap article .tit-zone::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background: var(--po);
  position: absolute;
  bottom: 0;
}
#detail .width-wrap article .tit-zone p {
  margin-bottom: 14px;
}
#detail .width-wrap article .desc {
  line-height: 180%;
}
#detail .width-wrap article figure img {
  width: 100%;
} 

/* responsive */
@media all and (max-width: 500px) {
  /* notice */
  #notice .width-wrap > p {
    font-size: 14px;
    letter-spacing: -0.42px;
  }
  #notice .width-wrap > h1 {
    font-size: 24px;
    letter-spacing: -0.72px;
    margin-top: 10px;
  }
  #notice .width-wrap .notice-list {
    margin: 32px 0 28px;
  }
  #notice .width-wrap .notice-list .notice-item {
    padding: 24px 0px;
    height: 67px;
  }
  #notice .width-wrap .notice-list .notice-item p:nth-child(1) {
    font-size: 14px;
    letter-spacing: -0.42px;
  }
  #notice .width-wrap .notice-list .notice-item p:nth-child(2) {
    font-size: 12px;
    letter-spacing: -0.36px;
  }
  #notice .width-wrap .pagination svg {
    width: 16px;
  }

  /* detail */
  #detail .width-wrap article .tit-zone {
    margin: 32px 0;
  }
  #detail .width-wrap article .desc {
    font-size: 14px;
    letter-spacing: -0.42px;
  }
}
