.exhibit-title {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 1023px) {
  .exhibit-title {
    font-size: 1.625rem;
    line-height: 2.25rem;
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .exhibit-title {
    font-size: 1.375rem;
    line-height: 2rem;
    margin-bottom: 0.625rem;
  }
}

.board_read .read_header {
  border-top: 0.1875rem solid #111111;
  border-bottom: 0.0625rem solid #111111;
}
@media only screen and (max-width: 767px) {
  .board_read .read_header {
    padding-left: 0.5rem;
  }
}
.board_read .read_header h4 {
  font-size: 1.375rem;
  line-height: 2rem;
  padding-block: 1.5rem;
  padding-inline: 1.25rem;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_read .read_header h4 {
    padding-block: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .board_read .read_header h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-block: 1.125rem;
    padding-inline: 0;
  }
}
.board_read .read_header .exhibit_meta {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: left;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 1rem 1.25rem;
  border-block: 0.0625rem solid #E1E1E4;
}
@media only screen and (max-width: 767px) {
  .board_read .read_header .exhibit_meta {
    gap: 1rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 1rem 0;
  }
}
.board_read .read_header .exhibit_meta .schedule-day, .board_read .read_header .exhibit_meta .time, .board_read .read_header .exhibit_meta span {
  color: #767676;
}
.board_read .read_header .exhibit_meta .division {
  margin-inline: 1rem;
}
.board_read .read_header .exhibit_meta .schedule, .board_read .read_header .exhibit_meta .time > span {
  color: #111111;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 1023px) {
  .board_read .read_header .exhibit_meta .schedule, .board_read .read_header .exhibit_meta .time > span {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .board_read .read_header .exhibit_meta .schedule, .board_read .read_header .exhibit_meta .time > span {
    margin-right: 0.375rem;
  }
}
.board_read .read_header .exhibit_meta .time strong {
  font-weight: 400;
  color: var(--font1);
  display: inline-block;
}
.board_read .read_header .exhibit_meta .read_count img {
  vertical-align: top;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.125rem;
}
@media only screen and (max-width: 767px) {
  .board_read .read_header .exhibit_meta .read_count img {
    margin-right: 0;
  }
}
.board_read .read_body {
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 2.5rem 1.25rem;
}
.board_read .read_body img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .board_read .read_body {
    padding: 1.25rem 0;
  }
}
.board_read .read_body.del form {
  text-align: center;
}
.board_read .read_body.del form strong {
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.board_read .read_body.del form .btnArea {
  text-align: center;
}
.board_read .admin-btns {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .board_read .admin-btns {
    flex-flow: column nowrap;
    font-size: 0.875rem;
    line-height: 1.375rem;
    margin-top: 0.75rem;
    gap: 0.75rem;
  }
}
.board_read .admin-btns > .return-btn {
  display: inline-block;
  color: #505050;
  width: 10rem;
  border-radius: 0.25rem;
  background-color: #F1F1F5;
  padding-block: 0.9375rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .board_read .admin-btns > .return-btn {
    padding-block: 0.6875rem;
    width: 100%;
    order: 1;
  }
}
.board_read .admin-btns > .return-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left;
  opacity: 0.9;
  background-color: #00AB4E;
  border-radius: 0.25rem;
  width: 0;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.board_read .admin-btns > .return-btn:hover {
  color: #FFFFFF;
}
.board_read .admin-btns > .return-btn:hover::after {
  width: 100%;
}
.board_read .admin-btns__item {
  border-radius: 0.25rem;
  padding: 0.9375rem 2.625rem;
}
@media only screen and (max-width: 767px) {
  .board_read .admin-btns__item {
    padding: 0.6875rem 0;
    text-align: center;
    width: 50%;
  }
}
.board_read .admin-btns div {
  display: flex;
  gap: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .board_read .admin-btns div {
    width: 100%;
  }
}
.board_read .admin-btns div .del-btn {
  border: 0.0625rem solid #E1E1E4;
  cursor: pointer;
}
.board_read .admin-btns div .modify-btn {
  display: inline-block;
  background-color: #00AB4E;
  color: #FFFFFF;
  font-weight: 600;
}