@charset "UTF-8";

/* scss 게시판 */
.board {
  display: grid;
  grid-template-columns: 1fr;
  color: rgba(34, 34, 34, 0.7);
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .board {
    display: block;
    font-size: 14px;
    letter-spacing: -0.7px;
  }
}

.board[data-type=list][data-type-detail=normal] .board[data-col-idx=num] {
  flex: 0 0 80px;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=normal] .board[data-col-idx=num] {
    justify-content: flex-start;
  }
}

.board[data-type=list][data-type-detail=normal] .board[data-col-idx=num] .board-tag-notice {
  border-radius: 15px;
  background-color: #004A9C;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  color: #FFFFFF;
  padding: 6px 10px;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=normal] .board[data-col-idx=num] .board-tag-notice {
    font-size: 12px;
    padding: 4px 8px;
  }
}

.board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=num] {
  flex: 0 0 80px;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=num] {
    justify-content: flex-start;
  }
}

.board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=num] .board-tag-notice {
  border-radius: 15px;
  background-color: #004A9C;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  color: #FFFFFF;
  padding: 6px 10px;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=num] .board-tag-notice {
    font-size: 12px;
    padding: 4px 8px;
  }
}

.board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=writer] {
  flex: 0 0 calc(8% + 40px);
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=writer] {
    flex: unset;
  }
}

.board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=date] {
  flex: 0 0 100px;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=date] {
    flex: unset;
  }
}

.board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=hit] {
  flex: 0 0 calc(5% + 40px);
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=normal] .board-col[data-col-idx=hit] {
    flex: unset;
  }
}

.board[data-type=list][data-type-detail=lefthead] dt.board-col {
  flex: 0.05 0.05 120px;
  position: relative;
  padding-top: 12px;
  font-size: 18px;
  letter-spacing: 0;
  color: #222222;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=lefthead] dt.board-col {
    font-size: 15px;
    flex: 0.05 0.05 80px;
  }
}

@media only screen and (max-width: 530px) {
  .board[data-type=list][data-type-detail=lefthead] dt.board-col {
    padding-top: 6px;
    flex: 0.05 0.05 100%;
  }
}

.board[data-type=list][data-type-detail=lefthead] .board-card {
  min-height: 60px;
  padding: 10px 20px;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=lefthead] .board-card {
    min-height: 46px;
  }
}

@media only screen and (max-width: 530px) {
  .board[data-type=list][data-type-detail=lefthead] .board-card {
    padding: 5px 10px;
  }
}

.board[data-type=list][data-type-detail=lefthead] .board-col {
  justify-content: flex-start;
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list][data-type-detail=lefthead] .board-col {
    flex: 1;
  }
}

@media only screen and (max-width: 425px) {
  .board[data-type=list][data-type-detail=lefthead] .board-col {
    flex: 0 0 100%;
  }
}

.board[data-type=list][data-type-detail=lefthead] .board-col .img-wrap {
  display: flex;
}

.board[data-type=list][data-type-detail=lefthead] .board-cols {
  font-weight: 500;
  color: #222222;
}

@media only screen and (max-width: 530px) {
  .board[data-type=list][data-type-detail=lefthead] .board-cols {
    gap: 8px;
  }
}

.board[data-type=list] .board-card {
  border-bottom: 1px solid #ddd;
}

.board[data-type=list] .board-col {
  flex: 1;
  min-width: 0;
}

@media only screen and (max-width: 767px) {
  .board[data-type=list] .board-col {
    flex: 0 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .board[data-type=list] .board-col[data-col-idx=tit] {
    flex: 0 0 100%;
  }
}

.board[data-type=grid] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 55px 44px;
  padding: 35px 0 55px;
}

@media only screen and (max-width: 1320px) {
  .board[data-type=grid] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .board[data-type=grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 15px 0 30px;
  }
}

@media only screen and (max-width: 425px) {
  .board[data-type=grid] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.board[data-type=grid][data-type-detail=normal] .board-card {
  padding: 0;
}

.board[data-type=grid][data-type-detail=normal] .board-card[data-idx=empty] {
  padding-top: 15px;
}

.board[data-type=grid][data-type-detail=normal] .board-col[data-col-idx=num] {
  display: none;
}

.board[data-type=grid][data-type-detail=normal] .board-col[data-col-idx=thumbnail] {
  aspect-ratio: 247/148;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
  border-radius: 20px;
}

.board[data-type=grid][data-type-detail=normal] .board-col[data-col-idx=thumbnail] img {
  object-fit: cover;
}

.board[data-type=grid][data-type-detail=normal] .board-col[data-col-idx=tit] {
  width: 100%;
}

.board[data-type=grid][data-type-detail=normal] .board-col[data-col-idx=tit] .col-plate {
  white-space: unset;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.board[data-type=grid][data-type-detail=normal] .board-cols {
  flex-wrap: wrap;
  height: auto;
}

.board[data-type=grid] .board-card.head {
  display: none;
}

.board[data-type=grid] .board-card[data-idx=empty] {
  grid-column: 1/5;
}

.board-wrap {
  position: relative;
}

.board-wrap:has(.board[data-type=list]) {
  border-top: 1px solid #222222;
}

.board-wrap:has(.board[data-type=grid]) {
  border-top: 1px solid #222222;
  border-bottom: 1px solid #ddd;
}

.board-card {
  min-width: 0;
  min-height: 66px;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .board-card {
    min-height: 50px;
    padding: 12px 5px;
  }
}

.board-card[data-idx=head] {
  min-height: 50px;
  font-weight: 700;
  color: #222222;
}

@media only screen and (max-width: 767px) {
  .board-card[data-idx=head] {
    min-height: 50px;
    display: none;
  }
}

.board-card[data-idx=head] .board-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.board-card[data-idx=empty] {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  height: auto;
  min-height: unset;
  padding: 100px 30px;
}

@media only screen and (max-width: 767px) {
  .board-card[data-idx=empty] {
    gap: 10px;
    padding: 30px 10px;
  }
}

.board-card[data-idx=empty] .board-col[data-col-idx=tit] {
  justify-content: center;
}

.board-card[data-idx=empty] .board-cols {
  justify-content: center;
}

.board-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .board-col[data-col-idx=num]:not(:has(.board-tag-notice)) {
    display: none;
  }
}

.board-col[data-col-idx=tit] {
  justify-content: flex-start;
  font-size: 17px;
  color: #222222;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .board-col[data-col-idx=tit] {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.7px;
  }
}

.board-col[data-col-idx=tit] p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-col[data-col-idx=tit] .col-plate {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-col>img {
  width: 100%;
}

.board-cols {
  display: flex;
  gap: 5px;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .board-cols {
    flex-wrap: wrap;
    gap: 5px 25px;
  }
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
}

.board-bottom {
  padding-top: 20px;
}

.board-total {
  font-weight: 500;
  color: rgba(34, 34, 34, 0.7);
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .board-total {
    font-size: 14px;
  }
}

.board-total-num {
  font-weight: 700;
  color: #00155E;
}

.board-controller {
  display: flex;
  align-items: center;
  gap: 8px;
}

.board-controller .icon {
  font-size: 17px;
}

@media only screen and (max-width: 767px) {
  .board-dlist {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.board-dlist dt {
  display: none;
}

@media only screen and (max-width: 767px) {
  .board-dlist dt {
    display: block;
  }
}

.board-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}

@media only screen and (max-width: 767px) {
  .board-pagination {
    padding-top: 15px;
  }
}

.board-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.board-navigation {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .board-navigation {
    position: relative;
    right: unset;
    justify-content: flex-end;
    padding-top: 15px;
  }
}

.board-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.board-btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  border-radius: 10px;
  background-color: #FFFFFF;
  border: 1px solid #D6D7DB;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .board-btns .btn {
    height: 40px;
    padding: 4px;
  }
}

.board-btns .btn-prev {
  max-width: 55px;
}

@media only screen and (max-width: 767px) {
  .board-btns .btn-prev {
    max-width: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .board-btns .btn-prev .icon {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .board-btns .btn-prev .icon img {
    width: 100%;
  }
}

.board-btns .btn-next {
  max-width: 55px;
}

@media only screen and (max-width: 767px) {
  .board-btns .btn-next {
    max-width: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .board-btns .btn-next .icon {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .board-btns .btn-next .icon img {
    width: 100%;
  }
}

.board-btns .btn-write {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  color: #000;
  padding: 16px 40px;
}

@media only screen and (max-width: 767px) {
  .board-btns .btn-write {
    font-size: 15px;
    padding: 16px 30px;
  }
}

/* scss 게시판 */
/* scss 게시판 상세 */
.detail-top {
  display: flex;
  flex-direction: column;
}

.detail-tit {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 50px;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0;
  padding-bottom: 36px;
}

@media only screen and (max-width: 767px) {
  .detail-tit {
    min-height: 30px;
    font-size: 24px;
    padding-bottom: 20px;
  }
}

.detail-dlist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 25px;
}

@media only screen and (max-width: 767px) {
  .detail-dlist {
    gap: 10px 10px;
  }
}

.detail-dlist dt {
  font-size: 18px;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .detail-dlist dt {
    font-size: 15px;
  }
}

.detail-dlist dd {
  font-size: 18px;
  letter-spacing: 0;
  color: #666666;
}

@media only screen and (max-width: 767px) {
  .detail-dlist dd {
    font-size: 15px;
  }
}

.detail-dlists {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 90px;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #595959;
  padding: 20px 0;
}

@media only screen and (max-width: 767px) {
  .detail-dlists {
    gap: 10px 60px;
    padding: 15px 0;
  }
}

.detail-cont {
  padding-top: 40px;
  padding-bottom: 90px;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

@media only screen and (max-width: 767px) {
  .detail-cont {
    padding-top: 15px;
    padding-bottom: 40px;
  }
}

.detail-attach {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.detail-attach .txt {
  letter-spacing: 0;
  line-height: 22px;
}

.detail-attach-plate {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  background-color: #F5F7FC;
  padding: 38px 44px;
}

@media only screen and (max-width: 767px) {
  .detail-attach-plate {
    gap: 10px;
    padding: 16px 20px;
  }
}

.detail-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .detail-navigation {
    padding-top: 15px;
  }
}

.detail-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.detail-btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  border-radius: 10px;
  background-color: #FFFFFF;
  border: 1px solid #D6D7DB;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn {
    height: 40px;
    padding: 4px;
  }
}

.detail-btns .btn-prev {
  max-width: 55px;
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn-prev {
    max-width: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn-prev .icon {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn-prev .icon img {
    width: 100%;
  }
}

.detail-btns .btn-next {
  max-width: 55px;
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn-next {
    max-width: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn-next .icon {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn-next .icon img {
    width: 100%;
  }
}

.detail-btns .btn-list {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  color: #000;
  padding: 12px 30px;
  height: auto;
  /* 고정 높이 방해 금지 */
}

@media only screen and (max-width: 767px) {
  .detail-btns .btn-list {
    font-size: 14px;
    padding: 10px 20px;
    height: auto;
  }
}

/* scss 게시판 댓글 */
/* scss 게시판 쓰기 */
.write-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .write-navigation {
    padding-top: 15px;
  }
}

.write-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.write-btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 110px;
  height: 55px;
  border-radius: 10px;
  background-color: #FFFFFF;
  border: 1px solid #D6D7DB;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .write-btns .btn {
    min-width: 70px;
    height: 40px;
    padding: 4px;
  }
}

@media only screen and (max-width: 530px) {
  .write-btns .btn {
    min-width: 20px;
  }
}

.write-btns .btn-save {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  color: #000;
  padding: 16px 40px;
}

@media only screen and (max-width: 767px) {
  .write-btns .btn-save {
    font-size: 15px;
    padding: 16px 30px;
  }
}

.write-btns .btn-cancel {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  color: #000;
  padding: 16px 40px;
}

@media only screen and (max-width: 767px) {
  .write-btns .btn-cancel {
    font-size: 15px;
    padding: 16px 30px;
  }
}

.attach {
  display: flex;
  align-items: flex-start;
  border-radius: 7px;
  border: 1px solid #A2A2A2;
  overflow: hidden;
}

.attach-plate {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .attach-plate {
    gap: 10px;
  }
}

.attach-file {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  display: none;
}

.attach-filename {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 12px 15px;
}

.attach-filename-wrap {
  flex: 1;
}

.attach-btn {
  padding: 12px 22px;
  background-color: #444444;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .attach-btn {
    padding: 12px 15px;
  }
}

.attach-btn .txt {
  font-size: 17px;
  letter-spacing: 0;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .attach-btn .txt {
    font-size: 14px;
  }
}

/* scss 게시판 쓰기 */
.detail-comment {
  border-top: 1px solid #DEDEDE;
}

.comment .typing-container {
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
}

.comment .typing-container .typing-box {
  border-radius: 7px 0 0 7px;
}

.comment .typing-container .typing-box:has(textarea) {
  padding: 18px 20px;
}

.comment .typing-container .typing-box:has(textarea) textarea {
  font-size: 17px;
  letter-spacing: 0;
}

.comment .typing-container .typing-box:has(textarea) textarea::placeholder {
  font-size: 17px;
  letter-spacing: 0;
  color: #8F97AB;
}

.comment .typing-container .btn {
  color: #fff;
}

.comment .typing-container .btn-wrap {
  width: 100px;
  height: 100%;
  border-radius: 0px 7px 7px 0;
  background-color: #64708F;
}

.comment .check-wrap {
  justify-content: flex-start;
}

.comment .message-container {
  display: grid;
  grid-template-columns: auto minmax(auto, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 15px;
  padding: 20px 15px;
}

.comment .message-container .btns-list {
  grid-row: 1/2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.comment .message-container .btns-list .btn-wrap {
  border-radius: 3px;
  border: 1px solid #B2BDD6;
  background: #FFF;
  box-shadow: 0px 3px 0px #0000000D;
}

.comment .message-container .btns-list .btn-wrap>button,
.comment .message-container .btns-list .btn-wrap a,
.comment .message-container .btns-list .btn-wrap .btn {
  font-size: 13px;
  letter-spacing: 0;
  color: #808285;
  padding: 4px 7px;
}

.comment .message-container .btns-list .btn-wrap>button.btn-message,
.comment .message-container .btns-list .btn-wrap a.btn-message,
.comment .message-container .btns-list .btn-wrap .btn.btn-message {
  color: #D15721;
}

.comment .message-name {
  grid-row: 1/2;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0;
}

.comment .message-date {
  grid-row: 1/2;
  font-size: 16px;
  letter-spacing: 0;
  color: #666666;
}

.comment .message-cont {
  grid-column: 1/4;
  grid-row: 2/3;
  font-size: 17px;
  color: #808285;
}

.comment-list>li {
  border-bottom: 1px solid #DEDEDE;
}

.comment-list>li[data-level] {
  background-color: #F9FAFE;
}

.comment-list>li[data-level="1"] {
  background-color: transparent;
}

.comment-list>li[data-modify=false] .btn-wrap:has(.btn-modify) {
  display: none;
}

@media only screen and (max-width: 767px) {
  .comment-list>li[data-delete=false] .message-container {
    grid-template-rows: auto auto 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .comment-list>li[data-delete=false] .message-name {
    grid-row: 2/3;
  }
}

@media only screen and (max-width: 767px) {
  .comment-list>li[data-delete=false] .message-date {
    grid-row: 2/3;
  }
}

@media only screen and (max-width: 767px) {
  .comment-list>li[data-delete=false] .message-cont {
    grid-row: 3/4;
  }
}

@media only screen and (max-width: 767px) {
  .comment-list>li[data-delete=false] .btns-list {
    grid-column: 1/4;
  }
}

.comment-list>li[data-delete=true] .btns-list {
  display: none;
}

.comment-list>li .comment-container {
  padding: 15px;
}

.comment-container {
  display: grid;
  grid-template-columns: auto minmax(auto, 1fr);
  grid-template-rows: auto 1fr;
  gap: 12px 10px;
  padding: 40px 0 30px;
}

.comment-tit {
  grid-row: 1/2;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
}

.comment-check {
  grid-row: 1/2;
}

.comment-check .check:checked+.check-icon {
  border: unset;
}

.comment-check .check:checked~.check-txt {
  color: #004A9C;
}

.comment-check .check-icon {
  border: unset;
  padding: 0;
}

.comment-check .check-txt {
  font-size: 15px;
  letter-spacing: 0;
  color: #444;
}

/* END scss 게시판 댓글 */
/* scss 게시판 상세 */
/* scss 폼 */
input {
  font-weight: 500;
}

input.date:not([type=date]),
input[type=date],
input.time:not([type=time]),
input[type=time] {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  outline: 1px solid transparent;
  padding: 0 15px;
}

@media only screen and (max-width: 767px) {

  input.date:not([type=date]),
  input[type=date],
  input.time:not([type=time]),
  input[type=time] {
    height: 40px;
    font-size: 12px;
    padding: 0px 10px;
  }
}

@supports (-webkit-touch-callout: none) {

  input.date:not([type=date]),
  input[type=date],
  input.time:not([type=time]),
  input[type=time] {
    background-color: unset;
    -webkit-padding-start: 10px;
    padding-left: 10px;
  }
}

input.date:not([type=date])::before,
input[type=date]::before,
input.time:not([type=time])::before,
input[type=time]::before {
  content: unset;
}

input.date:not([type=date])::after,
input[type=date]::after,
input.time:not([type=time])::after,
input[type=time]::after {
  content: unset;
}

input.date:not([type=date])::before,
input.time:not([type=time])::before {
  display: none;
}

input[type=date]:not([type=date])::-webkit-date-and-time-value,
input[type=time]:not([type=time])::-webkit-date-and-time-value {
  text-align: left;
  padding: 0;
}

input[type=date]:not([type=date])::-webkit-datetime-edit-text,
input[type=date]:not([type=date])::-webkit-datetime-edit-year-field,
input[type=date]:not([type=date])::-webkit-datetime-edit-month-field,
input[type=date]:not([type=date])::-webkit-datetime-edit-day-field,
input[type=time]:not([type=time])::-webkit-datetime-edit-text,
input[type=time]:not([type=time])::-webkit-datetime-edit-year-field,
input[type=time]:not([type=time])::-webkit-datetime-edit-month-field,
input[type=time]:not([type=time])::-webkit-datetime-edit-day-field {
  color: #222222;
}

.date-wrap,
.time-wrap {
  position: relative;
  width: 100%;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 5px;
  margin: 0;
  padding: 0;
}

.date-wrap:not([class*=size-]),
.time-wrap:not([class*=size-]) {
  max-width: calc((100% - 10px * 2 - 16px) *0.5);
}

.date-wrap::after,
.time-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 20px;
  height: 100%;
  z-index: 0;
  border-left: 1px solid #9E9E9E;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
  border-left: 1px solid #ddd;
  padding: 0 16px;
}

@media only screen and (max-width: 767px) {

  .date-wrap::after,
  .time-wrap::after {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 425px) {

  .date-wrap::after,
  .time-wrap::after {
    padding: 0 5px;
  }
}

.date-wrap:has(> input[type=date]:disabled),
.date-wrap:has(> input.date:disabled) {
  background-color: #F9F9F9;
}

.date-wrap:has(> input[type=date]:disabled)::before,
.date-wrap:has(> input.date:disabled)::before {
  display: none;
}

.date-wrap:has(> input[type=date]:disabled)::after,
.date-wrap:has(> input.date:disabled)::after {
  background: #F9F9F9 url("/images/user/icon_calendar_black.svg") no-repeat center center/19px auto;
}

.date-wrap:has(> input[type=date])::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #fff;
  font-family: "Pretendard", sans-serif;
  color: #9E9E9E;
  box-sizing: border-box;
  font-weight: 500;
  padding: 15px 17px 17px;
}

@media only screen and (max-width: 767px) {
  .date-wrap:has(> input[type=date])::before {
    padding: 0 10px;
  }
}

.date-wrap:has(> input[type=date])::after,
.date-wrap:has(> input.date:not([type=date]))::after {
  background: #fff url("/images/user/icon_calendar_black.svg") no-repeat center center/19px auto;
}

.time-wrap:has(> input[type=time]:disabled),
.time-wrap:has(> input.time:disabled) {
  background-color: #F9F9F9;
}

.time-wrap:has(> input[type=time]:disabled)::before,
.time-wrap:has(> input.time:disabled)::before {
  display: none;
}

.time-wrap:has(> input[type=time]:disabled)::after,
.time-wrap:has(> input.time:disabled)::after {
  background: #F9F9F9 url("/images/user/icon_clock_black.svg") no-repeat center center/19px auto;
}

.time-wrap:has(> input[type=time])::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #fff;
  font-family: "Pretendard", sans-serif;
  color: #9E9E9E;
  box-sizing: border-box;
  font-weight: 500;
  padding: 15px 17px 17px;
}

@media only screen and (max-width: 767px) {
  .time-wrap:has(> input[type=time])::before {
    padding: 0 10px;
  }
}

.time-wrap:has(> input[type=time])::after,
.time-wrap:has(> input.time:not([type=date]))::after {
  background: #fff url("/images/user/icon_clock_black.svg") no-repeat center center/19px auto;
}

.radio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}

.radio:checked+.radio-icon {
  border: 1px solid #2ABDC2;
}

.radio:checked+.radio-icon::before {
  background-color: #2ABDC2;
}

.radio-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.radio-wrap input[type=radio] {
  display: none;
}

.radio-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 8px;
}

@media only screen and (max-width: 767px) {
  .radio-icon {
    width: 18px;
    height: 18px;
    padding: 3px;
  }
}

.radio-icon::before {
  content: "";
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background-color: transparent;
}

.radio-txt {
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .radio-txt {
    font-size: 14px;
  }
}

.check {
  width: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}

.check:checked+.check-icon {
  border: 1px solid #2ABDC2;
}

.check:checked+.check-icon::before {
  background: url("/assets/image/board/icon_check_colorful.svg") no-repeat center;
  background-size: cover;
}

.check-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.check-wrap input[type=checkbox] {
  display: none;
}

.check-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 6px;
}

@media only screen and (max-width: 767px) {
  .check-icon {
    width: 13px;
    min-width: 13px;
    height: 13px;
    padding: 3px;
  }
}

.check-icon::before {
  content: "";
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background: url("/assets/image/board/icon_check_gray.svg") no-repeat center;
  background-size: cover;
}

.check-txt {
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .check-txt {
    font-size: 14px;
  }
}

.typing {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  outline: unset;
}

.typing-wrap {
  position: relative;
  width: 100%;
  /*padding: 15px 17px 17px;*/
}

@media only screen and (max-width: 767px) {
  .typing-wrap {
    padding: 0px 10px;
  }
}

.typing-wrap:has(.typing) {
  padding: 0;
}

.typing-wrap:has(.typing) .typing {
  width: 100%;
  height: 100%;
  padding: 15px 17px 17px;
}

@media only screen and (max-width: 767px) {
  .typing-wrap:has(.typing) .typing {
    padding: 0px 10px;
  }
}

.typing-wrap:has(.typing:focus),
.typing-wrap:has(.select:open) {
  border: 1px solid #222222;
}

.typing-wrap:has(.typing:disabled) {
  background-color: rgba(34, 34, 34, 0.05);
}

.typing-wrap:has(> input:disabled),
.typing-wrap:has(select:disabled) {
  background-color: rgba(34, 34, 34, 0.05);
}

.typing-wrap:has(> input:disabled) input,
.typing-wrap:has(> input:disabled) select,
.typing-wrap:has(select:disabled) input,
.typing-wrap:has(select:disabled) select {
  background-color: transparent;
}

.typing-wrap:has(select:not(:has(option))) {
  background-color: rgba(34, 34, 34, 0.05);
}

.typing-wrap:has(select:not(:has(option))) input,
.typing-wrap:has(select:not(:has(option))) select {
  background-color: transparent;
}

.typing-box {
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
}

.typing-box:has(textarea) {
  height: auto;
  min-height: 100px;
}

.typing-box:has(textarea) textarea {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .typing-box {
    height: 40px;
  }
}

.select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  padding: 0 15px;
  outline: unset;
}

@media only screen and (max-width: 767px) {
  .select {
    font-size: 14px;
    padding: 0 10px;
  }
}

.select-wrap {
  position: relative;
  display: flex;
  width: 100%;
}

.select-wrap:has(.select:open)::after {
  transform: translateY(-50%) rotate(180deg);
}

.select-wrap:has(+ *) {
  max-width: 108px;
}

@media only screen and (max-width: 767px) {
  .select-wrap:has(+ *) {
    max-width: 80px;
  }
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 100%;
  background: url("/assets/image/common/icon_arrow_bottom_black.svg") no-repeat center;
  transition: transform 0.3s;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .select-wrap::after {
    width: 10px;
    right: 12px;
  }
}

.select-wrap+.typing-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #DDDDDD;
}

.sect-cate.date .detail-cate-plate {
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .sect-cate.date .date-wrap {
    width: 100%;
    max-width: 100%;
  }
}

.sect-cate.date .date-wrap+.img-wrap {
  width: 16px;
}

@media only screen and (max-width: 767px) {
  .sect-cate.date .date-wrap+.img-wrap {
    width: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .sect-cate.date .time-wrap:has(+ .img-wrap) {
    max-width: calc((100% - 12px - 10px * 2) * 0.5);
  }
}

@media only screen and (max-width: 767px) {
  .sect-cate.date .time-wrap:has(+ .img-wrap)~.time-wrap {
    max-width: calc((100% - 12px - 10px * 2) * 0.5);
  }
}

.sect-cate.date .time-wrap+.img-wrap {
  width: 16px;
}

@media only screen and (max-width: 767px) {
  .sect-cate.date .time-wrap+.img-wrap {
    width: 12px;
  }
}

.sect-cate.date img {
  width: 100%;
}

.detail-plate {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-wrap: wrap;
  padding: 30px 40px;
}

@media only screen and (max-width: 767px) {
  .detail-plate {
    padding: 15px;
  }
}

.detail-cate-plate {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-cate-plate:has(.radio-wrap) {
  gap: 20px;
  flex-wrap: wrap;
}

.detail-cate-plate:has(.info-wrap) {
  gap: 20px;
  flex-wrap: wrap;
}

.detail-cate-box .txt {
  font-weight: 500;
  color: #222222;
}

.detail-cate-box .txt .point {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -1.05px;
  color: #2ABDC2;
}

.detail-cate-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.75px;
  color: rgba(0, 0, 0, 0.502);
}

@media only screen and (max-width: 767px) {
  .detail-cate-name {
    font-size: 12px;
    letter-spacing: -0.6px;
  }
}

.detail-cate-cont {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .detail-cate-cont:has(.info-wrap) {
    flex-wrap: wrap;
    gap: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .detail-cate-cont:has(.info-wrap) .detail-cate-plate {
    flex: 0 0 100%;
  }
}

/* scss 폼 */
/* scss 검색 박스 */
.search-container {
  position: relative;
  display: block;
}

.search-plate {
  display: flex;
}

.search-typing {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .search-typing {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.search-typing::placeholder {
  color: rgba(34, 34, 34, 0.3);
}

@media only screen and (max-width: 767px) {
  .search-typing::placeholder {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.search-typing-wrap {
  position: relative;
}

.search-typing-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #222222;
}

.search-select {
  font-weight: 500;
}

.search-date-wrap input[type=date] {
  min-width: 210px;
}

@media only screen and (max-width: 767px) {
  .search-date-wrap input[type=date] {
    min-width: 120px;
  }
}

.search-date-plate {
  gap: 10px;
}

@media only screen and (max-width: 1400px) {
  .search-date-plate {
    flex: 100%;
    justify-content: flex-start;
  }
}

.btn-search {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* scss 검색 박스 */
/* scss 수정 */
/* subpage common */
.wrap:has(.submenu-container) {
  background-color: #F5F7FC;
}

.wrap:has(.submenu-container) #container {
  padding-top: 60px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 1280px) {
  .wrap:has(.submenu-container) #container {
    padding-top: 0px;
  }
}

.wrap:has(.submenu-container) #container .layout {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 0 50px;
}

@media only screen and (max-width: 1280px) {
  .wrap:has(.submenu-container) #container .layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.wrap:has(.board) .board-card[data-idx=empty] .board-col[data-col-idx=tit] {
  font-size: 18px;
  letter-spacing: 0;
  color: #666;
}

@media only screen and (max-width: 767px) {
  .wrap:has(.board) .board-card[data-idx=empty] .board-col[data-col-idx=tit] {
    font-size: 15px;
  }
}

.wrap:has(.board) .board-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wrap:has(.board) .pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .wrap:has(.board) .pagination a {
    width: 30px;
    height: 30px;
  }
}

.wrap:has(.board) .pagination a img {
  width: 100%;
  height: 100%;
}

.wrap:has(.board) .pagination-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 20px;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .wrap:has(.board) .pagination-num {
    width: 30px;
    font-size: 16px;
  }
}

.wrap:has(.board) .pagination-num.active {
  font-weight: 900;
  color: #E5002B;
}

.wrap:has(.board) .pagination-num.active a {
  font-weight: 900;
  color: #E5002B;
}

.wrap:has(.board) .search-plate {
  position: relative;
}

.wrap:has(.board) .search-typing::placeholder {
  color: #A4AEC7;
}

.wrap:has(.board) .search-typing-wrap {
  flex: 1;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .wrap:has(.board) .search-typing-wrap {
    flex: 0 0 calc(100% - 40px);
  }
}

.wrap:has(.board) .search-typing-box {
  position: relative;
  border-radius: 10px;
  border-color: #DEDEDE;
}

@media only screen and (max-width: 767px) {
  .wrap:has(.board) .search-typing-box {
    flex: 0 0 100%;
  }
}

.wrap:has(.board) .btn-search {
  width: 100%;
  height: 100%;
}

.wrap:has(.board) .btn-search-wrap {
  flex: 0 0 50px;
  height: 50px;
}

@media only screen and (max-width: 767px) {
  .wrap:has(.board) .btn-search-wrap {
    flex: 0 0 40px;
    height: 40px;
  }
}

.wrap:has(.board) .btn-search .icon {
  width: 100%;
  height: 100%;
}

.wrap:has(.board) .btn-search .icon img {
  width: 100%;
  height: 100%;
}

.submenu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed #B8BFCF;
}

@media only screen and (max-width: 1280px) {
  .submenu {
    height: 50px;
    padding: 0px 10px;
    border-bottom: unset;
    pointer-events: none;
  }
}

.submenu.current {
  display: none;
  order: 0;
}

@media only screen and (max-width: 1280px) {
  .submenu.current {
    display: flex;
  }
}

.submenu.active {
  border-bottom: 3px solid #004A9C;
}

@media only screen and (max-width: 1280px) {
  .submenu.active {
    border-bottom: unset;
  }
}

.submenu.active .txt {
  font-weight: 700;
  color: #004A9C;
}

.submenu.active .icon {
  border-color: #004087;
  background-color: #004A9C;
}

.submenu .txt {
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.57px;
}

.submenu .icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #D5DBE9;
  background-color: #fff;
}

@media only screen and (max-width: 1280px) {
  .submenu .icon {
    transform: rotate(90deg);
  }
}

.submenu .icon img {
  width: 5px;
}

.submenu-container {
  grid-column: 1/2;
  grid-row: 1/3;
  position: sticky;
  top: 90px;
  height: 265px;
  border-radius: 20px;
  background: url("/assets/image/page/sub/bg_submenu_blue.png") no-repeat center;
  background-size: contain;
  margin-bottom: 140px;
  z-index: 9;
}

@media only screen and (max-width: 1280px) {
  .submenu-container {
    grid-column: 1/3;
    grid-row: 1/2;
    top: 0px;
    width: 100vw;
    height: auto;
    display: flex;
    border-radius: 0px;
    background-position: left top;
    margin-left: -40px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .submenu-container {
    margin-left: -30px;
  }
}

@media only screen and (max-width: 425px) {
  .submenu-container {
    margin-left: -15px;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(5):last-of-type) {
  margin-bottom: 200px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(5):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(6):last-of-type) {
  margin-bottom: 260px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(6):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(7):last-of-type) {
  margin-bottom: 320px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(7):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(8):last-of-type) {
  margin-bottom: 380px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(8):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(9):last-of-type) {
  margin-bottom: 440px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(9):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(10):last-of-type) {
  margin-bottom: 500px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(10):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(11):last-of-type) {
  margin-bottom: 560px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(11):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(12):last-of-type) {
  margin-bottom: 620px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(12):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(13):last-of-type) {
  margin-bottom: 680px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(13):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(14):last-of-type) {
  margin-bottom: 740px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(14):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-container:has(.submenu-list > li:nth-of-type(15):last-of-type) {
  margin-bottom: 800px;
}

@media only screen and (max-width: 1280px) {
  .submenu-container:has(.submenu-list > li:nth-of-type(15):last-of-type) {
    margin-bottom: 0;
  }
}

.submenu-tit {
  position: relative;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1.05px;
  color: #fff;
  padding: 80px 40px 25px;
  word-break: keep-all;
  z-index: 1;
}

@media only screen and (max-width: 1280px) {
  .submenu-tit {
    font-size: 0;
    width: 50px;
    height: 50px;
    background: url("/assets/image/page/sub/icon_breadcumb_home_black.svg") no-repeat center;
    filter: invert(1);
    background-size: 45% 45%;
    background-position: center center;
    padding: 0;
  }
}

.submenu-list {
  position: relative;
}

@media only screen and (max-width: 1280px) {
  .submenu-list {
    display: flex;
    flex-direction: column;
  }
}

.submenu-list>li {
  order: 1;
}

.submenu-list>li:has(.submenu.active) {
  order: 0;
}

.submenu-list-wrap {
  position: relative;
  border-radius: 20px;
  border: 1px solid #97A2BB;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px #00000033;
  padding: 35px 27.5px 50px;
  z-index: 1;
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap {
    flex: 1;
    height: 50px;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(1):last-of-type) {
    height: 50px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(2):last-of-type) {
    height: 100px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(3):last-of-type) {
    height: 150px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(4):last-of-type) {
    height: 200px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(5):last-of-type) {
    height: 250px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(6):last-of-type) {
    height: 300px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(7):last-of-type) {
    height: 350px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(8):last-of-type) {
    height: 400px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(9):last-of-type) {
    height: 450px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(10):last-of-type) {
    height: 500px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(11):last-of-type) {
    height: 550px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(12):last-of-type) {
    height: 600px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(13):last-of-type) {
    height: 650px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(14):last-of-type) {
    height: 700px;
  }
}

@media only screen and (max-width: 1280px) {
  .submenu-list-wrap.active:has(.submenu-list > li:nth-of-type(15):last-of-type) {
    height: 750px;
  }
}

.submenu-list-wrap.active .submenu {
  pointer-events: all;
}

.submenu-list-wrap.active .submenu.current .icon {
  transform: rotate(270deg);
}

.tit-middle {
  grid-column: 2/3;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.28px;
}

@media only screen and (max-width: 1280px) {
  .tit-middle {
    grid-column: 1/2;
    font-size: 22px;
    letter-spacing: -0.22px;
    padding: 15px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .tit-middle {
    grid-column: 1/3;
    font-size: 40px;
    letter-spacing: -0.4px;
    padding: 10px 0 0;
    display: none;
  }
}

.tit-breadcrumb {
  grid-column: 3/4;
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 1280px) {
  .tit-breadcrumb {
    grid-column: 1/3;
    grid-row: 2/3;
    align-items: center;
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 767px) {
  .tit-breadcrumb {
    padding: 10px 0;
  }
}

.breadcrumb {
  display: flex;
}

.breadcrumb-item {
  position: relative;
  font-size: 18px;
  letter-spacing: -0.18px;
  padding: 0 17px;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-item {
    padding: 0 12px;
  }
}

.breadcrumb-item:not(:first-child):not(:last-child) {
  color: #666;
}

.breadcrumb-item:not(:first-child):not(:last-child) a {
  color: #666;
}

.breadcrumb-item:first-child .icon {
  width: 20px;
  aspect-ratio: 1/1;
  background: url("/assets/image/page/sub/icon_breadcumb_home_black.svg") no-repeat center;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-item:first-child .icon {
    width: 14px;
  }
}

.breadcrumb-item:last-child {
  font-weight: 700;
}

.breadcrumb-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #666666;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-item a {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
}

.page-container {
  grid-column: 2/4;
  padding-top: 27px;
}

@media only screen and (max-width: 1280px) {
  .page-container {
    grid-column: 1/3;
  }
}

.page-block {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 35px 30px 40px;
}

@media only screen and (max-width: 767px) {
  .page-block {
    padding: 30px 15px 30px;
  }
}

.typing {
  border-radius: unset;
}

.typing-wrap:has(.typing) {
  border-radius: 7px;
  background-color: #F5F7FC;
}

.typing-wrap:has(.typing) .typing {
  padding: 12px 15px;
}

.select {
  border-radius: 7px;
  background-color: #F5F7FC;
  padding: 12px 15px;
}

.w-50p {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .w-50p {
    width: 100%;
  }
}

/* subpage common */
/* subpage 주보선인 */
/* subpage 주보선인 */
/* scss 수정 */


/* css 수정 */

/* css 수정 */