@charset "UTF-8";
.sec-01 .page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .page-title {
    margin-bottom: 2.5rem;
  }
}
.sec-01 .page-title h3 {
  font-size: var(--f1);
  line-height: 1.5;
  font-weight: 700;
  font-family: "Noto Sans KR", sans-serif;
  margin-bottom: 0;
}
.sec-01 .page-title .symbol {
  display: flex;
  gap: 0;
}
.sec-01 .page-title .symbol span {
  width: 0.875rem;
  height: 0.875rem;
  transform: rotate(45deg);
}
.sec-01 .page-title .symbol span:nth-child(1) {
  background: var(--primary);
}
.sec-01 .page-title .symbol span:nth-child(2) {
  background: var(--secondary);
  margin-left: 0.3125rem;
}
.sec-01 .page-title .symbol span:nth-child(3) {
  background: var(--tertiary);
  margin-left: 0.3125rem;
}
.sec-01 .search-box {
  background: var(--b-2);
  border: 0.0625rem solid var(--l-2);
  padding: 1.875rem 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .search-box {
    flex-direction: row;
    padding: 0.625rem;
    gap: 0.5rem;
  }
}
.sec-01 .search-box .search-label {
  font-size: var(--f3);
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans KR", sans-serif;
  color: var(--f-1);
}
@media only screen and (max-width: 767px) {
  .sec-01 .search-box .search-label {
    display: none;
  }
}
.sec-01 .search-box .search-select {
  border: 0.0625rem solid var(--l-2);
  padding: 0.3125rem 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  background: #fff;
  cursor: pointer;
}
.sec-01 .search-box .search-select select {
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--f-1);
  cursor: pointer;
}
.sec-01 .search-box .search-select select:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .sec-01 .search-box .search-select {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.5rem 0.25rem;
  }
}
.sec-01 .search-box .search-input-wrap {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .sec-01 .search-box .search-input-wrap {
    flex: 1;
  }
}
.sec-01 .search-box .search-input-wrap input {
  width: 17.625rem;
  height: 2.375rem;
  border: 0.0625rem solid var(--l-2);
  padding: 0 0.625rem;
}
.sec-01 .search-box .search-input-wrap input:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .sec-01 .search-box .search-input-wrap input {
    flex: 1;
    width: 100%;
  }
}
.sec-01 .search-box .search-input-wrap button {
  background: #000;
  color: #fff;
  padding: 0.25rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.sec-01 h3 {
  font-size: var(--f3);
  line-height: var(--l3);
  margin-bottom: 1.875rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 h3 {
    margin-bottom: 1.25rem;
  }
}
.sec-01 .list-table {
  width: 100%;
  border-bottom: 1px solid var(--l-2);
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table {
    margin-bottom: 1.875rem;
  }
}
.sec-01 .list-table .list-header {
  display: flex;
  align-items: center;
  height: 3.5rem;
  background: #f2f2f2;
  border-top: 1px solid #444;
  font-size: 1rem;
  color: #444;
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table .list-header {
    display: none;
  }
}
.sec-01 .list-table .list-header .col-num {
  width: 7.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-header .col-num {
    width: 4rem;
  }
}
.sec-01 .list-table .list-header .col-title {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.sec-01 .list-table .list-header .col-author {
  width: 12.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-header .col-author {
    width: 6rem;
  }
}
.sec-01 .list-table .list-header .col-date {
  width: 12.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-header .col-date {
    width: 6rem;
  }
}
.sec-01 .list-table .list-header .col-views {
  width: 7.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-header .col-views {
    width: 4rem;
  }
}
.sec-01 .list-table .list-row {
  display: flex;
  align-items: center;
  height: 3.5rem;
  border-top: 1px solid var(--l-2);
  font-size: 1rem;
  color: #444;
  transition: background 0.2s;
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table .list-row {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 0;
  }
}
.sec-01 .list-table .list-row:hover {
  background: var(--b-2);
}
.sec-01 .list-table .list-row .col-num {
  width: 7.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-row .col-num {
    width: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table .list-row .col-num {
    display: none;
  }
}
.sec-01 .list-table .list-row .col-title {
  flex: 1;
  min-width: 0;
  padding: 0 1.25rem;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-row .col-title {
    padding: 0 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table .list-row .col-title {
    width: 100%;
    padding: 0;
    margin-bottom: 0.25rem;
  }
}
.sec-01 .list-table .list-row .col-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sec-01 .list-table .list-row .col-author {
  width: 12.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-row .col-author {
    width: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table .list-row .col-author {
    width: auto;
    font-size: 0.875rem;
    color: var(--f-3);
  }
  .sec-01 .list-table .list-row .col-author::after {
    content: "·";
    margin: 0 0.375rem;
  }
}
.sec-01 .list-table .list-row .col-date {
  width: 12.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-row .col-date {
    width: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table .list-row .col-date {
    width: auto;
    font-size: 0.875rem;
    color: var(--f-3);
  }
  .sec-01 .list-table .list-row .col-date::after {
    content: "·";
    margin: 0 0.375rem;
  }
}
.sec-01 .list-table .list-row .col-views {
  width: 7.5rem;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list-table .list-row .col-views {
    width: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .list-table .list-row .col-views {
    width: auto;
    font-size: 0.875rem;
    color: var(--f-3);
  }
}
.sec-01 .list {
  border-top: 0.125rem solid var(--line1);
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .list {
    margin-bottom: 1.875rem;
  }
}
.sec-01 .list li {
  display: flex;
  height: 5rem;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 0.0625rem solid var(--line2);
  font-size: var(--f7);
  line-height: var(--l7);
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list li {
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .list li {
    height: 3.5rem;
    padding: 0 0.5rem;
  }
}
.sec-01 .list li:hover {
  background: var(--bg2);
}
.sec-01 .list li .tit {
  width: calc(100% - 9.5rem);
  margin-right: 2rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .list li .tit {
    width: calc(100% - 8.5rem);
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .list li .tit {
    width: 100%;
    margin-right: 0;
  }
}
.sec-01 .list li .tit a {
  display: block;
}
.sec-01 .list li .tit a h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.sec-01 .list li .date {
  width: 7.5rem;
  text-align: right;
  color: var(--font3);
}
@media only screen and (max-width: 767px) {
  .sec-01 .list li .date {
    display: none;
  }
}
.sec-01 .list + .btn-area.adm {
  display: flex;
  justify-content: flex-end;
}
.sec-01 .gallery {
  display: flex;
  flex-wrap: wrap;
}
.sec-01 .gallery li {
  width: 25rem;
  margin-right: 2.5rem;
}
.sec-01 .gallery li:nth-of-type(3n) {
  margin-right: 0;
}
.sec-01 .gallery li:nth-child(n+4):nth-child(-n+6) {
  margin-top: 2.5rem;
}
.sec-01 .gallery li .img {
  width: 100%;
  height: 18.125rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background: var(--bg2);
  margin-bottom: 1.25rem;
}
.sec-01 .gallery li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec-01 .gallery li h4 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--f7);
  line-height: var(--l7);
}
.sec-01 .gallery li .date {
  font-size: var(--f8);
  line-height: var(--l8);
  color: var(--font2);
}
.sec-01 .gallery + .btn-area.adm {
  display: flex;
  justify-content: flex-end;
}
.sec-01 .date-search-box {
  background: var(--b-2);
  border: 1px solid var(--l-2);
  padding: 1.25rem 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .date-search-box {
    padding: 1rem;
  }
}
.sec-01 .date-search-box .date-filter {
  display: flex;
  gap: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .date-search-box .date-filter {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
}
.sec-01 .date-search-box .date-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sec-01 .date-search-box .date-item img {
  width: 1.875rem;
  height: 1.875rem;
}
.sec-01 .date-search-box .date-item span {
  font-size: 1rem;
  color: var(--f-1);
}
.sec-01 .date-search-box .date-item input[type=date] {
  width: 9.9375rem;
  height: 1.875rem;
  border: 1px solid var(--l-2);
  background: #fff;
  padding: 0 0.5rem;
  font-size: 0.875rem;
}
.sec-01 .date-search-box .date-item input[type=date]:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .sec-01 .date-search-box .date-item input[type=date] {
    flex: 1;
  }
}
.sec-01 .date-search-box .date-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.875rem;
  padding: 0 1.25rem;
  background: #000;
  color: #fff;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sec-01 .date-search-box .date-search-btn:hover {
  opacity: 0.85;
}
@media only screen and (max-width: 767px) {
  .sec-01 .date-search-box .date-search-btn {
    width: 100%;
    height: 2.375rem;
    margin-top: 0.5rem;
  }
}
.sec-01 .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .gallery-grid {
    gap: 1.5rem;
    margin-bottom: 1.875rem;
  }
}
.sec-01 .gallery-grid .gallery-item {
  width: calc((100% - 7.5rem) / 4);
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .gallery-grid .gallery-item {
    width: calc((100% - 2.5rem) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .gallery-grid .gallery-item {
    width: 100%;
  }
}
.sec-01 .gallery-grid .gallery-item a {
  display: block;
}
.sec-01 .gallery-grid .gallery-item .gallery-thumb {
  width: 100%;
  height: 14.125rem;
  background: #d9d9d9;
  overflow: hidden;
  margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .gallery-grid .gallery-item .gallery-thumb {
    height: 12rem;
  }
}
.sec-01 .gallery-grid .gallery-item .gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec-01 .gallery-grid .gallery-item .gallery-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sec-01 .gallery-grid .gallery-item .gallery-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 0.5rem;
}
.sec-01 .gallery-grid .gallery-item .gallery-title .gallery-symbol {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  border: 3px solid var(--primary);
  transform: rotate(45deg);
}
.sec-01 .gallery-grid .gallery-item .gallery-title h4 {
  flex: 1;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .sec-01 .gallery-grid .gallery-item .gallery-title h4 {
    font-size: 1.125rem;
  }
}
.sec-01 .gallery-grid .gallery-item .gallery-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  color: #767676;
}
@media only screen and (max-width: 767px) {
  .sec-01 .gallery-grid .gallery-item .gallery-meta {
    font-size: 0.875rem;
  }
}
.sec-01 .gallery-grid .gallery-item .gallery-meta .meta-divider {
  width: 1px;
  height: 1rem;
  background: #d9d9d9;
}
.sec-01 .gallery-grid .gallery-item .gallery-meta .meta-views {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.sec-01 .gallery-grid .gallery-item .gallery-meta .meta-views img {
  width: 1.5rem;
  height: 1.5rem;
}
.sec-01.view-page {
  padding: 6.25rem 0 10rem;
}
@media only screen and (max-width: 767px) {
  .sec-01.view-page {
    padding: 3.75rem 0 5rem;
  }
}
.sec-01.view-page .page-title {
  margin-bottom: 1.25rem;
}
.sec-01 .view-table {
  border-top: 1px solid #444;
  margin-bottom: 0;
  margin-top: 2.5rem;
  width: 100%;
  overflow: hidden;
}
.sec-01 .view-table__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--l-2);
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .view-table__row {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-table__row {
    flex-wrap: wrap;
  }
}
.sec-01 .view-table__row--title .view-table__value {
  flex: 1;
  min-width: 0;
}
.sec-01 .view-table__row--file .view-table__value {
  flex: 1;
  min-width: 0;
}
.sec-01 .view-table__row--file .view-table__value a {
  color: var(--f-1);
  text-decoration: underline;
}
.sec-01 .view-table__cell {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .view-table__cell {
    flex: none;
    width: 33.333%;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-table__cell {
    width: 100%;
    flex: none;
  }
}
.sec-01 .view-table__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  flex-shrink: 0;
  min-height: 3.5rem;
  padding: 0.625rem;
  background: #f2f2f2;
  border-width: 1px 0;
  font-size: 1rem;
  color: #444;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .view-table__label {
    width: 5rem;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-table__label {
    width: 4.5rem;
    min-height: 2.75rem;
    font-size: 0.875rem;
  }
}
.sec-01 .view-table__value {
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 3.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  color: #444;
  gap: 0.9375rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-table__value {
    min-height: 2.75rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
}
.sec-01 .view-content {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--l-2);
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  min-height: 18.75rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-content {
    padding: 1.5rem 0;
    min-height: 12.5rem;
  }
}
.sec-01 .view-content::after {
  content: "";
  display: table;
  clear: both;
}
.sec-01 .view-content img {
  max-width: 100%;
  height: auto;
}
.sec-01 .view-content img[style*=float] {
  margin: 0.5rem;
}
.sec-01 .view-content img[style*=float][style*="float: left"] {
  margin-left: 0;
}
.sec-01 .view-content img[style*=float][style*="float: right"] {
  margin-right: 0;
}
.sec-01 .view-content p::after {
  content: "";
  display: table;
  clear: both;
}
.sec-01 .view-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-buttons {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.sec-01 .view-buttons__left {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-buttons__left {
    position: static;
    order: 1;
  }
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-buttons__center {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.sec-01 .view-buttons__right {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .view-buttons__right {
    position: static;
    order: 2;
  }
}
.sec-01 .view-buttons .btn-prev,
.sec-01 .view-buttons .btn-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.875rem;
  padding: 0 1rem;
  border: 1px solid var(--l-2);
  border-radius: 3.25rem;
  font-size: 1rem;
  color: var(--f-1);
  background: #fff;
}
.sec-01 .view-buttons .btn-prev.btn-disabled,
.sec-01 .view-buttons .btn-next.btn-disabled {
  opacity: 0.4;
  cursor: default;
}
.sec-01 .view-buttons .btn-prev .btn-icon,
.sec-01 .view-buttons .btn-next .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.sec-01 .view-buttons .btn-prev .btn-icon::before,
.sec-01 .view-buttons .btn-next .btn-icon::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
.sec-01 .view-buttons .btn-prev .btn-icon::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2"><polyline points="15 18 9 12 15 6"/></svg>') no-repeat center/contain;
}
.sec-01 .view-buttons .btn-next .btn-icon::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2"><polyline points="9 18 15 12 9 6"/></svg>') no-repeat center/contain;
}
.sec-01 .view-buttons .btn-list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  padding: 0 2.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: 3.25rem;
  font-size: 1rem;
}
.sec-01 .view-buttons .btn-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  padding: 0 1.5rem;
  border: 1px solid var(--l-2);
  border-radius: 3.25rem;
  font-size: 1rem;
  color: var(--f-1);
  background: #fff;
}
.sec-01 .view-buttons .btn-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  padding: 0 1.5rem;
  background: var(--tertiary);
  color: #fff;
  border-radius: 3.25rem;
  font-size: 1rem;
}
.sec-01 .view {
  border-top: 0.125rem solid var(--line1);
  margin-bottom: 1.875rem;
}
.sec-01 .view .cont-01 {
  height: 5rem;
  display: flex;
  padding: 1.6875rem 2rem;
  justify-content: space-between;
  border-bottom: 0.0625rem solid var(--line2);
  font-size: var(--f7);
  line-height: var(--l7);
}
.sec-01 .view .cont-01 h4 {
  font-weight: 500;
  width: calc(100% - 8.25rem);
  margin-right: 2rem;
}
.sec-01 .view .cont-01 span {
  width: 6.25rem;
  text-align: right;
  color: var(--font3);
}
.sec-01 .view .cont-02 {
  padding: 2.5rem 2rem 3.75rem;
  border-bottom: 0.0625rem solid var(--line2);
}
.sec-01 .view .cont-03 > div {
  height: 3.125rem;
  display: flex;
  align-items: center;
  color: var(--font2);
}
.sec-01 .view .cont-03 > div img {
  width: 2.5rem;
  height: 2.5rem;
}
.sec-01 .view .cont-03 > div span {
  display: block;
}
.sec-01 .view .cont-03 > div span:first-of-type {
  width: 1.875rem;
  margin-right: 2rem;
}
.sec-01 .view .cont-03 > div a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 6.275rem);
}
.sec-01 .view + .btn-area.adm {
  display: flex;
  justify-content: space-between;
}
.sec-01 .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1875rem;
}
.sec-01 .pagination a {
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  line-height: 2.375rem;
  font-size: 1rem;
  border: 1px solid var(--l-2);
  color: var(--f-1);
}
@media only screen and (max-width: 767px) {
  .sec-01 .pagination a {
    width: 2rem;
    height: 2rem;
    line-height: 1.875rem;
    font-size: 0.875rem;
  }
}
.sec-01 .pagination a.current {
  background: #ededed;
}
.sec-01 .pagination a.prev, .sec-01 .pagination a.next {
  border: none;
}
.sec-01 .pagination a.prev img, .sec-01 .pagination a.next img {
  width: 2.5rem;
  height: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .pagination a.prev img, .sec-01 .pagination a.next img {
    width: 2rem;
    height: 2rem;
  }
}
.sec-01 .btn-new {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
}
.sec-01 .btn-new a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  padding: 0 2.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: 3.25rem;
  font-size: 1rem;
}
.sec-01 .icon-lock {
  display: inline-flex;
  align-items: center;
  margin-right: 0.375rem;
  color: #888;
  font-size: 0.875rem;
}
.sec-01 .password-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  border-top: 1px solid #444;
  border-bottom: 1px solid var(--l-2);
}
@media only screen and (max-width: 767px) {
  .sec-01 .password-form-wrap {
    padding: 3rem 1rem;
  }
}
.sec-01 .password-form-icon {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}
.sec-01 .password-form-text {
  font-size: 1rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.sec-01 .password-form-error {
  font-size: 0.875rem;
  color: #e53935;
  margin-bottom: 1rem;
}
.sec-01 .password-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .password-form {
    flex-direction: column;
    width: 100%;
    max-width: 18rem;
  }
}
.sec-01 .password-form input[type=password] {
  width: 15rem;
  height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid var(--l-2);
  font-size: 1rem;
}
.sec-01 .password-form input[type=password]:focus {
  outline: none;
  border-color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .sec-01 .password-form input[type=password] {
    width: 100%;
  }
}
.sec-01 .password-form button {
  height: 2.75rem;
  padding: 0 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sec-01 .password-form button:hover {
  opacity: 0.85;
}
.sec-01 .btn-back {
  font-size: 0.875rem;
  color: #888;
  text-decoration: underline;
}
.sec-01 .btn-back:hover {
  color: var(--primary);
}
.sec-01 .inquiry-reply-section {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border: 1px solid var(--l-2);
  border-radius: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .inquiry-reply-section {
    margin-top: 1.5rem;
    padding: 1rem;
  }
}
.sec-01 .inquiry-reply-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--f-1);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--l-2);
}
.sec-01 .inquiry-reply-title i {
  color: var(--primary);
}
.sec-01 .inquiry-reply-empty {
  font-size: 0.9375rem;
  color: #888;
  text-align: center;
  padding: 2rem 0;
}
.sec-01 .inquiry-reply-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sec-01 .inquiry-reply-item {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--l-2);
  border-radius: 0.375rem;
}
.sec-01 .inquiry-reply-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.sec-01 .inquiry-reply-meta .reply-author {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  color: var(--f-1);
}
.sec-01 .inquiry-reply-meta .reply-author i {
  color: var(--primary);
}
.sec-01 .inquiry-reply-meta .reply-date {
  color: #888;
}
.sec-01 .inquiry-reply-content {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #444;
}
.sec-01 .inquiry-reply-form {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--l-2);
}
.sec-01 .inquiry-reply-form textarea {
  width: 100%;
  min-height: 6rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--l-2);
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  resize: vertical;
}
.sec-01 .inquiry-reply-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.sec-01 .btn-reply-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1.5rem;
  margin-top: 0.75rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sec-01 .btn-reply-submit:hover {
  opacity: 0.85;
}
.sec-01.write-page {
  padding: 7.5rem 0;
}
@media only screen and (max-width: 767px) {
  .sec-01.write-page {
    padding: 3.75rem 0;
  }
}
.sec-01 .write-form {
  border-top: 1px solid #444;
}
.sec-01 .write-form .required {
  color: #e53935;
  margin-right: 0.25rem;
}
.sec-01 .write-form__row {
  display: flex;
  border-bottom: 1px solid var(--l-2);
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__row {
    flex-direction: column;
  }
}
.sec-01 .write-form__row--editor .write-form__label {
  align-items: flex-start;
  padding-top: 1rem;
}
.sec-01 .write-form__row--editor .write-form__input {
  min-height: 31.25rem;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__row--editor .write-form__input {
    min-height: 25rem;
  }
}
.sec-01 .write-form__row--editor .ql-toolbar.ql-snow {
  border: none;
  border-bottom: 1px solid var(--l-2);
}
.sec-01 .write-form__row--editor .ql-container.ql-snow {
  border: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sec-01 .write-form__row--editor .ql-editor {
  flex: 1;
}
.sec-01 .write-form__row--editor #editor {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sec-01 .write-form__row--editor .ql-editor img {
  max-width: 100%;
  height: auto;
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="12px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="12px"]::before {
  content: "12px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="14px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="14px"]::before {
  content: "14px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="16px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="16px"]::before {
  content: "16px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="18px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="18px"]::before {
  content: "18px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="20px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="20px"]::before {
  content: "20px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="22px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="22px"]::before {
  content: "22px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="24px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="24px"]::before {
  content: "24px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="26px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="26px"]::before {
  content: "26px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="28px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="28px"]::before {
  content: "28px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="30px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="30px"]::before {
  content: "30px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="32px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="32px"]::before {
  content: "32px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="34px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="34px"]::before {
  content: "34px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="36px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="36px"]::before {
  content: "36px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="38px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="38px"]::before {
  content: "38px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="40px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="40px"]::before {
  content: "40px";
}
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="42px"]::before,
.sec-01 .write-form__row--editor .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="42px"]::before {
  content: "42px";
}
.sec-01 .write-form__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  min-height: 3.5rem;
  padding: 0.625rem;
  background: #f2f2f2;
  font-size: 1rem;
  color: #444;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__label {
    width: 100%;
    min-height: 2.75rem;
    justify-content: flex-start;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}
.sec-01 .write-form__input {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.625rem 1.25rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__input {
    min-height: 2.75rem;
    padding: 0.625rem 1rem;
  }
}
.sec-01 .write-form__input input[type=text],
.sec-01 .write-form__input input[type=tel],
.sec-01 .write-form__input input[type=password] {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 1rem;
  color: #444;
}
.sec-01 .write-form__input input[type=text]::-moz-placeholder, .sec-01 .write-form__input input[type=tel]::-moz-placeholder, .sec-01 .write-form__input input[type=password]::-moz-placeholder {
  color: #aaa;
}
.sec-01 .write-form__input input[type=text]::placeholder,
.sec-01 .write-form__input input[type=tel]::placeholder,
.sec-01 .write-form__input input[type=password]::placeholder {
  color: #aaa;
}
.sec-01 .write-form__input input[type=text]:focus,
.sec-01 .write-form__input input[type=tel]:focus,
.sec-01 .write-form__input input[type=password]:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__input input[type=text],
  .sec-01 .write-form__input input[type=tel],
  .sec-01 .write-form__input input[type=password] {
    font-size: 0.875rem;
  }
}
.sec-01 .write-form__input input[type=file] {
  display: none;
}
.sec-01 .write-form__input--radio {
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__input--radio {
    gap: 1rem;
  }
}
.sec-01 .write-form__input .radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  color: #444;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__input .radio-label {
    font-size: 0.875rem;
  }
}
.sec-01 .write-form__input .radio-label input[type=radio] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--primary);
  cursor: pointer;
}
.sec-01 .write-form__file-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__file-label {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.sec-01 .write-form__file-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f2f2f2;
  border: 1px solid var(--l-2);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #444;
  transition: background 0.2s;
}
.sec-01 .write-form__file-btn:hover {
  background: #e5e5e5;
}
.sec-01 .write-form__file-text {
  font-size: 0.875rem;
  color: #767676;
}
.sec-01 .write-form__file-attached {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f8f8fa;
  border-radius: 0.25rem;
}
.sec-01 .write-form__file-name {
  font-size: 0.875rem;
  color: #444;
  max-width: 20rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__file-name {
    max-width: 12rem;
  }
}
.sec-01 .write-form__file-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background: #ddd;
  border: none;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #666;
  cursor: pointer;
  transition: background 0.2s;
}
.sec-01 .write-form__file-remove:hover {
  background: #ccc;
}
.sec-01 .write-form .filelist {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f8f8fa;
  border-radius: 0.25rem;
}
.sec-01 .write-form .filelist span {
  font-size: 0.875rem;
  color: #444;
  max-width: 20rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form .filelist span {
    max-width: 12rem;
  }
}
.sec-01 .write-form .filelist .remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background: #ddd;
  border: none;
  border-radius: 50%;
  font-size: 0.875rem;
  color: #666;
  cursor: pointer;
  transition: background 0.2s;
}
.sec-01 .write-form .filelist .remove:hover {
  background: #ccc;
}
.sec-01 .write-form__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__buttons {
    margin-top: 1.5rem;
  }
}
.sec-01 .write-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  padding: 0 2.25rem;
  border-radius: 3.25rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 767px) {
  .sec-01 .write-form__btn {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
  }
}
.sec-01 .write-form__btn:hover {
  opacity: 0.85;
}
.sec-01 .write-form__btn--cancel {
  background: #fff;
  border: 1px solid var(--l-2);
  color: var(--f-1);
}
.sec-01 .write-form__btn--submit {
  background: var(--primary);
  color: #fff;
}
.sec-01 .form {
  border-top: 0.125rem solid var(--line1);
}
.sec-01 .form article {
  border-bottom: 0.0625rem solid var(--line2);
  margin-bottom: 1.875rem;
}
.sec-01 .form article > div {
  display: flex;
}
.sec-01 .form article > div .cont {
  min-height: 3.75rem;
  width: 100%;
  border-bottom: 0.0625rem solid var(--line2);
}
@media only screen and (max-width: 767px) {
  .sec-01 .form article > div .cont {
    width: 100%;
  }
}
.sec-01 .form article > div .cont label {
  display: block;
  height: 100%;
  cursor: pointer;
  line-height: 3.75rem;
  padding: 0 2rem;
}
.sec-01 .form article > div.cont-03 .cont {
  min-height: 43.75rem;
}
.sec-01 .form article > div.cont-03 .cont .ql-toolbar.ql-snow {
  border: none;
  border-bottom: 0.0625rem solid var(--line2);
}
.sec-01 .form article > div.cont-03 .cont #editor {
  height: calc(100% - 2.625rem);
  border: none;
}
.sec-01 .form article > div:last-of-type .tit, .sec-01 .form article > div:last-of-type .cont {
  border-bottom: none;
}
.sec-01 .form article > div input:focus {
  outline: none;
}
.sec-01 .form article > div input[type=file] {
  display: none;
}
.sec-01 .form article > div input[type=text] {
  border: none;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
}
.sec-01 .form article .file-label {
  display: flex;
  height: 100%;
  padding: 0.5rem 0;
  align-items: center;
  font-size: var(--f8);
  line-height: var(--l8);
  color: var(--color-font3);
  cursor: pointer;
}
.sec-01 .form article .file-label .button {
  padding: 0.375rem 1rem;
  background: #F1F1F5;
  display: inline-block;
  box-shadow: none;
  border: none;
  font-size: var(--f8);
  line-height: var(--l8);
  margin-right: 8px;
  letter-spacing: -0.025em;
  color: var(--color-font1);
  font-weight: 400;
}
.sec-01 .form article .filelist {
  margin: 0.7969rem 2rem;
  height: 2.1563rem;
  padding: 0.375rem 2.25rem 0.375rem 1rem;
  position: relative;
  background: #F8F8FA;
  vertical-align: middle;
  display: inline-block;
  font-weight: 400;
}
.sec-01 .form article .filelist span {
  max-width: 60.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  font-size: var(--f8);
  line-height: var(--l8);
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-01 .form article .filelist span {
    max-width: 23.25rem;
  }
}
.sec-01 .form article .filelist .remove {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  right: 0.5rem;
  top: 50%;
  margin-top: -0.625rem;
  text-indent: -9999px;
  background: url(../../../images/bbs/x.svg) no-repeat center center/80%;
  border: none;
  box-shadow: none;
}
.sec-01 .form article + .btn-area {
  display: flex;
  justify-content: flex-end;
}
.sec-01 .form article + .btn-area .main-btn {
  margin-left: 0.5rem;
}
.sec-01 .form input[type=checkbox] {
  display: none;
}