<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------- S:Util ---------- */
.util {
  display: flex;
  justify-content: end;
  align-items: center;
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 30px;
}

.util .search {
  width: 100%;
}

.util .search form {
  display: flex;
  width: 100%;
}

.util .search input,
.util .search select {
  height:50px;
  padding: 0 25px;
  font-size:1.8rem;
  background-color: #fff;
  border: 1px solid #b5b5b5;
}

.util .search input {
  border-right: none;
}

.util .search input {
  width:calc(100% - 100px);
}

.util .search select {
  position: relative;
  width:100%;
}

.util .search button {
  position: absolute;
  top:0;
  right:0;
  display: flex;
  align-items: center;
  justify-content: center;
  width:100px;
  height:50px;
  padding:0px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background-color: #07913a;
}

.util .search .search-select {
  position: relative;
  width:150px;
  margin-right:10px;
  background-color: #eee;
} 


.util .search .search-select::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/common/select-arrow.png');
}


.util .search .search-input {
  position: relative;
  width:calc(100% - 160px);
  background-color: #eee;
}

@media(max-width:1200px) {
  .util {
    margin-top: 90px;
  }
  
  .util .search input,
  .util .search select {
    padding: 0 20px;
    font-size:1.6rem;
  }
  
  .util .search button {
    font-size: 1.6rem;
  }
  
  .util .search .search-select::after {
    right: 15px;
  }
}

@media(max-width:1024px) {
  .util {
    margin-top: 80px;
    margin-bottom: 30px;
  }
  
  .util .search input,
  .util .search select {
    height:45px;
    padding: 0 15px;
    font-size:1.5rem;
  }
  
  .util .search input {
    width:calc(100% - 80px);
  }
  
  .util .search select {
    width:100%;
  }
  
  .util .search button {
    width:80px;
    height:45px;
    font-size:1.5rem;
  }
  
  .util .search .search-select {
    width:140px;
    margin-right:10px;
  } 
  
  .util .search .search-input {
    width: calc(100% - 150px);
  }
}

@media(max-width:768px) {
  .util {
    margin-top: 70px;
    margin-bottom: 25px;
  }

  .util .search input,
  .util .search select {
    height:40px;
    padding: 0 12px;
    font-size:1.4rem;
  }
  
  .util .search input {
    width:calc(100% - 70px);
  }

  .util .search button {
    width:70px;
    height:40px;
    font-size: 1.4rem;
  }
  
  .util .search .search-select {
    width:120px;
    margin-right:10px;
  } 
  
  .util .search .search-input {
    width: calc(100% - 130px);
  }
  
  .util .search .search-select::after {
    right: 10px;
    width: 9px;
    height: 6px;
  }
}

@media(max-width:576px) {
  .util {
    margin-top: 60px;
  }
  
  .util .total {
    margin-bottom: 10px;
    font-size:1.4rem;
  }
  
  .util .search {
    width: 100%;
  }

  .util .search input,
  .util .search select {
    height:35px;
    padding: 0 10px;
    font-size:1.3rem;
  }
  
  .util .search input {
    width:calc(100% - 60px);
  }
  
  .util .search select {
    width:100%;
  }
  
  .util .search button {
    width:60px;
    height:35px;
    background-size: 20px;
    font-size:1.3rem;
  }
  
  .util .search .search-select {
    width:90px;
    margin-right:8px;
  } 
  
  .util .search .search-input {
    width: calc(100% - 98px);
  }
}
/* ---------- E:Util ---------- */

/* ---------- S:Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  margin-top:80px;
}

.gallery-list .pagination,
.basic-list .pagination {
  margin-top: 0;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:30px;
  height:30px;
  margin: 0 6px 0 7px;
  background-repeat:no-repeat;
  background-position:center;
  background-color:#fff;
  border:1px solid transparent;
  text-align: center;
  font-size:1.6rem;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
  color: #b5b5b5;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
  color: #191919;
}

.pagination a.pagination__backward,
.pagination a.pagination__prev,
.pagination a.pagination__forward,
.pagination a.pagination__next {
  border-color: #b5b5b5;
}

.pagination a.pagination__prev {
  margin-right:16px;
}

.pagination a.pagination__next {
  margin-left:16px;
}

.pagination a.pagination__forward,
.pagination a.pagination__backward {
  margin: 0;
}

.pagination a.pagination__backward {
  background-image: url('/child/img/common/pagination-backward.png');
}

.pagination a.pagination__prev {
  background-image: url('/child/img/common/pagination-prev.png');
}

.pagination a.pagination__forward {
  background-image: url('/child/img/common/pagination-forward.png');
}

.pagination a.pagination__next {
  background-image: url('/child/img/common/pagination-next.png');
}

@media(max-width:1200px) {
  .pagination {
    margin-top:70px;
  }
  
  .pagination a {
    font-size:1.6rem;
  }
}

@media(max-width:1024px) {
  .pagination {
    margin-top:60px;
  }
  
  .pagination a {
    width:35px;
    height:35px;
  }
  
  .pagination a.pagination__backward,
  .pagination a.pagination__prev {
    margin-right:12px;
  }
  
  .pagination a.pagination__forward,
  .pagination a.pagination__next {
    margin-left:12px;
  }
}
@media(max-width:768px) {
  .pagination {
    margin-top:50px;
  }
  
  .pagination a {
    width:30px;
    height:30px;
    font-size:1.4rem;
  }

  .pagination a.pagination__backward,
  .pagination a.pagination__prev {
    margin-right:10px;
  }
  
  .pagination a.pagination__forward,
  .pagination a.pagination__next {
    margin-left:10px;
  }

}
@media(max-width:576px) {
  .pagination {
    margin-top:45px;
  }
  
  .pagination a {
    font-size:1.2rem;
  }
  
  .pagination a.pagination__backward,
  .pagination a.pagination__prev {
    margin-right:8px;
  }
  
  .pagination a.pagination__forward,
  .pagination a.pagination__next {
    margin-left:8px;
  }
}
/* ---------- S:Pagination ---------- */

/* ---------- S:View ---------- */
.basic-view  {
  border-top:2px solid #959595;
}

.basic-view .view_head .top {
  padding-top: 22px;
}

.basic-view .view_head h3 {
  font-size:2.4rem;
  margin-bottom: 15px;
}

.basic-view .view_head .info {
  display: flex;
  margin:0px -10px;
}

.basic-view .view_head .info li {
  font-size:1.8rem;
  line-height:1;
  color:#737373;
  padding:0px 10px;
  border-right:1px solid #9d9d9d;
}

.basic-view .view_head .info li:last-child {
  border:0px;
}

.basic-view .file {
  display: flex;
  align-items: start;
  width: 100%;
  margin-top: 32px;
  padding: 18px 0 21px;
  border-top: 1px solid #ddd;
  border-bottom:1px solid #ddd;
}

.basic-view .file p {
  display: flex;
  align-items: center;
  gap: 0 5px;
  font-size: 1.8rem;
}

.basic-view .file p i {
  display: block;
  width: 18px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/common/file_icon.png');
}

.basic-view .file a {
  display: block;
  width: calc(100% - 115px);
  margin-left: 27px;
  font-size: 1.8rem;
  color: #737373;
}

.basic-view .view_area {
  min-height:505px;
  height: 100%;
  padding:24px 0;
}

.basic-view .view_area p {
  font-size:1.8rem;
}

.basic-view .btn-wrap {
  position: relative;
  width: 100%;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

/* .basic-view .btn-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #ddd;
} */

.basic-view .btn-wrap  a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 23px 21px;
  font-size: 1.8rem;
  font-weight: 500;
}

.basic-view .btn-wrap  a:first-of-type {
  border-bottom: 1px solid #dcdcdc;
}

.basic-view .btn-wrap a i {
  display: block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-top: 2px solid #8a8a8a;
  border-left: 2px solid #8a8a8a;
}

.basic-view .btn-wrap a:first-of-type i {
  margin-top: 3px;
  transform: rotate(45deg);
}

.basic-view .btn-wrap a:last-of-type i {
  transform: rotate(-135deg);
  margin-bottom: 3px;
}

.basic-view .btn-wrap a p {
  width: calc(100% - 70px);
  font-size: 1.8rem;  
  margin-left: 28px;
  font-weight: 400;
}

.basic-view .view_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.basic-view .view_btns .button {
  max-width:240px;
  width:100%;
  height:50px;
  font-size:1.8rem;
  font-weight: 700;
  color: #fff;
  background-color: #07913a;
}

@media(max-width:1200px) {
  .basic-view .view_head .top {
    padding-top: 20px;
  }

  .basic-view .view_head h3 {
    font-size: 2.2rem;
  }
  
  .basic-view .view_head .info li {
    font-size: 1.6rem;
  }

  .basic-view .file {
    margin-top: 30px;
  }
  
  .basic-view .file p {
    font-size: 1.6rem;
  }
  
  .basic-view .file p i {
    width: 16px;
    height: 14px;
    margin-right: 5px;
  }

  .basic-view .file a {
    width: calc(100% - 110px);
    margin-left: 25px;
    font-size: 1.6rem;
  }
    
  .basic-view .view_area {
    padding: 20px 0;
  }

  .basic-view .view_area p {
    font-size: 1.6rem;
  }
  
  .basic-view .view_btns {
    margin-top: 50px;
  }

  .basic-view .view_btns .button {
    font-size: 1.6rem;
  }

  .basic-view .btn-wrap  a {
    padding: 20px;
    font-size: 1.6rem;
  }

  .basic-view .btn-wrap a i {
    width: 6px;
    height: 6px;
    margin-right: 9px;
  }

  .basic-view .btn-wrap a p {
    font-size: 1.6rem;  
    margin-left: 25px;
  }
}

@media(max-width:1024px) {
  .basic-view .view_head .top {
    padding-top: 18px;  
  }
  
  .basic-view .view_head h3 {
    margin-bottom:12px;
    font-size: 2rem;
  }
  
  .basic-view .view_head .info {
    margin:0px -10px;
  }
  
  .basic-view .view_head .info li {
    padding:0px 10px;
  }
  
  .basic-view .file {
    margin-top: 25px;
    padding: 15px 0;
  }
  
  .basic-view .file p {
    gap: 0 3px;
    font-size: 1.5rem;
  }

  .basic-view .file a {
    width: calc(100% - 99px);
    margin-left: 20px;
    font-size: 1.5rem;
  }

  .basic-view .view_area {
    padding: 15px 0;
  }
  
  .basic-view .view_area p {
    font-size: 1.5rem;
  }

  .basic-view .view_btns {
    margin-top: 45px;
  }
  
  .basic-view .view_btns .button {
    height:45px;
  }
  
}

@media(max-width: 768px) {
  .basic-view .view_head .top {
    padding-top: 15px;
  }
  
  .basic-view .view_head h3 {
		font-size:1.8rem;
    margin-bottom:12px;
  }
  
  .basic-view .view_head .info {
    margin:0px -8px;
  }
  
  .basic-view .view_head .info li {
    padding:0px 8px;
    font-size: 1.4rem;
  }
  
  .basic-view .file {
    margin-top: 20px;
    padding: 12px 0;
  }
  
  .basic-view .view_area {
    padding:12px 0;
  }
  
  .basic-view .view_area p {
    font-size: 1.4rem;
  }
  
  .basic-view .view_btns {
    margin-top:40px;
  }
  
  .basic-view .view_btns .button {
    height:40px;
    font-size: 1.4rem;
  }
  
  .basic-view .file p {
    font-size: 1.4rem;
  }
  
  .basic-view .file p i {
    width: 15px;
    height: 13px;
    margin: 0;
  }
  
  .basic-view .file a {
    width: calc(100% - 84px);
    margin-left: 15px;
    font-size: 1.4rem;
  }
  
  .basic-view .btn-wrap  a {
    padding: 15px;
    font-size: 1.4rem;
  }

  .basic-view .btn-wrap a i {
    width: 6px;
    height: 6px;
    margin-right: 9px;
  }

  .basic-view .btn-wrap a p {
    font-size: 1.4rem;  
    margin-left: 20px;
  }
}

@media(max-width: 576px) {
  .basic-view .view_head .top {
    padding-top: 10px;
  }
  
  .basic-view .view_head h3 {
		font-size: 1.6rem;
    margin-bottom:10px;
  }
  
  .basic-view .view_head .info li {
    font-size: 1.3rem;
  }
  
  .basic-view .file {
    margin-top: 15px;
    padding: 10px 0;
  }
  
  .basic-view .view_area {
    padding: 10px 0;
  }
  
  .basic-view .view_area p {
    font-size: 1.3rem;
  }

  .basic-view .file p {
    font-size: 1.3rem;
  }
  
  .basic-view .file a {
    width: calc(100% - 74px);
    margin-left: 12px;
    font-size: 1.3rem;
  }
  
    
  .basic-view .view_btns {
    margin-top: 35px;
  }
  
  .basic-view .view_btns .button {
    height: 35px;
    font-size: 1.2rem;
  }
  
  .basic-view .btn-wrap  a {
    padding: 12px;
    font-size: 1.2rem;
  }

  .basic-view .btn-wrap a i {
    width: 6px;
    height: 6px;
    margin-right: 5px;
  }

  .basic-view .btn-wrap a p {
    width: calc(100% - 50px);
    font-size: 1.2rem;  
    margin-left: 15px;
  }
}
/* ---------- E:View ---------- */

/* ---------- S:Basic List ---------- */
.basic-list .table {
  table-layout: fixed;
  border-collapse: collapse;
  width:100%;
  border-top:2px solid #b5b5b5;
}

.basic-list .table tr {
  border-bottom:1px solid #ddd;
}

.basic-list .table tr.table_notice {
  background-color: #eee;
}

.basic-list .table th,
.basic-list .table td {
  padding: 20px 8px 19px;
  text-align: center;
}

.basic-list .table th {
  font-size:1.8rem;
}

.basic-list .table td {
  font-size:1.8rem;
}

.basic-list .table td.left {
  text-align: left;
  padding: 0;
}

.basic-list .table .link {
  display: block;
  padding: 20px 8px 19px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.basic-list .table tr.table_message div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding:50px 0px;
} 

.basic-list .table tr.table_message p {
  font-size:2.2rem;
}

.basic-list .btns {
  display: flex;
  justify-content: flex-end;
  margin-top:40px;
}


@media(max-width:1200px) {
  .basic-list .table th {
    font-size:1.6rem;
  }
  
  .basic-list .table td {
    font-size:1.6rem;
  }

  .basic-list .table tr.table_message p {
    font-size:2rem;
  }
}

@media(max-width:1024px) {
  .basic-list .table {
    border-top:2px solid #000;
  }

  .basic-list .table th,
  .basic-list .table td {
    padding:15px 12px;
    font-size:1.5rem;
  }

  .basic-list .table tr.table_message div {
    padding:45px 0px;
  } 
  
  .basic-list .table tr.table_message p {
    font-size:1.8rem;
  }

  .basic-list .btns {
    margin-top:35px;
  }

  .basic-list .btns .button {
    max-width:220px;
    height:45px;
  }
}

@media(max-width:768px) {
  .basic-list .table colgroup {
    display: none;
  }
  
  .basic-list .table thead {
    display: none;
  }

  .basic-list tr {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    padding: 12px 12px;
  }
  
  .basic-list .table td {
    display: block;
    padding: 0;
    font-size:1.4rem;
  }
    
  .basic-list .table td.writer,
  .basic-list .table td.data {
    display: flex;
    align-items: center;
  }
  
  .basic-list .table td.writer::after,
  .basic-list .table td.data::after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    margin-left: 10px;
    background-color: #000;
  }

  .basic-list .table td.subject {
    width: 100%;
  }
  
  .basic-list .table .link {
    padding: 15px 0;
  }

  .basic-list .table tr.table_message p {
    font-size:1.6rem;
  }

}

@media(max-width:500px) {
  .basic-list tr {
    gap: 0 7px;
    padding: 10px 10px;
  }
  
  .basic-list .table td {
    font-size:1.3rem;
  }

  .basic-list .table td.writer::after,
  .basic-list .table td.data::after {
    height: 10px;
    margin-left: 7px;
  }

  .basic-list .table .link {
    padding: 10px 0;  
  }

  .basic-list .table tr.table_message p {
    font-size:1.6rem;
  }
}
/* ---------- E:Basic List ---------- */

/* ---------- S:Gallery List ---------- */
.gallery-list .list_wrap {
  margin: 0 0 100px; 
}

.gallery-list .list_wrap .item a {
  display: flex;
  align-items: start;
  margin: 0 0 60px;
}

.gallery-list .item .thumb {
  position: relative;
  max-width: 436px;
  width: 100%;
  aspect-ratio: 1.397 / 1;
  margin-right: 80px;
  overflow: hidden;
}

.gallery-list .item .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.gallery-list .item .con {
  margin-top: -12px;
  width: calc(100% - 516px);
}

.gallery-list .item .date {
  display: block;
  margin: 0 0 24px;
  font-size: 1.8rem;
  line-height: 1;
  color: #737373;
}

.gallery-list .item .subject {
  display: -webkit-box;
  margin:0 0 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
  -webkit-line-clamp: 1;
  font-size: 3.6rem;
  font-weight: 700;
}

.gallery-list .item .conTxt {
  max-width: 695px;
  width: 100%;
  display: -webkit-box;
  margin:0 0 49px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 1.8rem;
  line-height: 1.66;
}

.gallery-list .button-View {
  display: flex;
  align-items: center;
  width: 150px;
  height: 50px;
  gap: 0 17px;
  border-radius: 25px;
  background-color: #e6f4eb;
  color: #07913a;
  font-size: 2rem;
  font-weight: 500;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: all .3s ease-out;
}

.gallery-list .button-View i {
  display: block;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  background-image: url('/child/img/common/gallery_view.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .3s ease-out;
}

.gallery-list .item:hover .button-View {
  border-color: #07913a;
  background-color: #fff;
}

.gallery-list .item:hover .button-View i {
  transform: translate(2px, -2px);
}

@media(max-width: 1200px) {
  .gallery-list .list_wrap {
    margin: 0 0 85px;
  }

  .gallery-list .list_wrap .item a {
    margin: 0 0 50px;
  }

  .gallery-list .item .thumb {
    max-width: 400px;
    margin-right: 70px;
  }
  
  .gallery-list .item .con {
    width: calc(100% - 470px);
    margin-top: -10px;
  }
  
  .gallery-list .item .date {
    margin: 0 0 20px;
    font-size: 1.6rem;
  }
  
  .gallery-list .item .subject {
    font-size: 3rem;
  }

  .gallery-list .item .conTxt {
    margin:0 0 45px;
    font-size: 1.6rem;
  }
  
  .gallery-list .button-View {
    width: 140px;
    height: 45px;
    gap: 0 15px;
    font-size: 1.8rem;
  }
}

@media(max-width: 1024px) {
  .gallery-list .list_wrap {
    margin: 0 0 70px;
  }

  .gallery-list .list_wrap .item a {
    margin: 0 0 45px;
  }

  .gallery-list .item .thumb {
    width: 350px;
    margin-right: 40px;
  }
  
  .gallery-list .item .con {
    width: calc(100% - 390px);
    margin-top: -8px;
  }
  
  .gallery-list .item .date {
    margin: 0 0 15px;
    font-size: 1.5rem;
  }

  .gallery-list .item .subject {
    margin: 0 0 8px;
    font-size: 2.4rem;
  }

  .gallery-list .item .conTxt {
    margin:0 0 40px;
    font-size: 1.5rem;
  }

  .gallery-list .button-View {
    width: 130px;
    height: 40px;
    gap: 0 12px;
    font-size: 1.6rem;
  }
}

@media(max-width: 768px) {
  .gallery-list .list_wrap {
    margin: 0 0 55px;
  }

  .gallery-list .list_wrap .item a {
    margin: 0 0 40px;
  }

  .gallery-list .item .thumb {
    width: 270px;
    margin-right: 30px;
  }
  
  .gallery-list .item .con {
    margin-top: -7px;
    width: calc(100% - 300px);
  }

  .gallery-list .item .date {
    margin: 0 0 12px;
    font-size: 1.4rem;
  }

  .gallery-list .item .subject {
    margin: 0 0 6px;
    font-size: 2.2rem;
  }

  .gallery-list .item .conTxt {
    margin:0 0 35px;
    font-size: 1.4rem;
  }
  
  .gallery-list .button-View {
    width: 120px;
    height: 35px;
    gap: 0 12px;
    font-size: 1.5rem;
  }
  
  .gallery-list .button-View i {
    margin-top: 2px;
    width: 12px;
    height: 12px;
  }
}

@media(max-width: 576px) {
  .gallery-list .list_wrap {
    margin: 0 0 40px;
  }

  .gallery-list .list_wrap .item a {
    flex-direction: column;
    align-items: start;
    margin: 0 0 30px;
  }

  .gallery-list .item .thumb {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .gallery-list .item .con {
    width: 100%;
  } 
  
  .gallery-list .item .date {
    font-size: 1.3rem;
  }

  .gallery-list .item .subject {
    font-size: 2rem;
  }

  .gallery-list .item .conTxt {
    margin:0 0 30px;
    font-size: 1.3rem;
  }

  .gallery-list .button-View {
    width: 110px;
    height: 30px;
    gap: 0 10px;
    font-size: 1.4rem;
  }
}
/* ---------- E:Gallery List ---------- */

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