/*---- 전역 설정 ----*/
html {
  font-size: var(--font-size);
  font-family: "pretendard", sans-serif;
  font-weight: 500;
  line-height: 1.4rem;
}
body {
  margin: 0;
}
body.spinner {
  overflow: hidden;
}
* {
  color: var(--font-color);
  cursor: url(https://cur.cursors-4u.net/cursors/cur-9/cur817.cur), auto !important;
}
*:focus {
  outline: none !important;
}

#cover *:hover,
.contents *:hover,
a,
img:hover,
span:hover,
input,
.listWrap div *,
i,
ion-icon,
.label {
  cursor: url(https://cur.cursors-4u.net/others/oth-6/oth589.cur), auto !important;
}

a,
span {
  transition: var(--transition-h);
}
a,
li,
ul {
  list-style: none;
  text-decoration: none;
}
.another_category,
.tistoryProfileLayerTrigger {
  display: none !important;
}
::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}
::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
}
::placeholder,
input,
textarea {
  font-size: var(--font-size);
  font-family: "pretendard", sans-serif;
  font-weight: 500;
}
::selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}
.menu_toolbar {
  display: none !important;
}
.imageblock.alignCenter {
  margin: 10px auto !important;
}
.imageblock.alignRight {
  margin-left: auto !important;
}

/* spinner */
body.spinner #spinner {
  visibility: visible;
  opacity: 1;
}
#spinner {
  visibility: hidden;
  position: fixed;
  background-color: #fff;
  background-size: 40px 40px;
  inset: 0;
  z-index: 99;
  opacity: 0;
  transition: var(--transition);
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--point-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/* 스킨 설정 */
#skin {
  width: var(--skin-width);
  margin: 0 auto;
}

/* 탑 헤더 */
#top {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid #f5f5f5;
  z-index: 30;
}
#top .title-m {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
#top i {
  font-size: 18px;
}

/* 컨테이너 */
#container {
  margin-top: 170px;
}

/* 헤더 */
.header {
  display: flex;
  margin-bottom: 50px;
}
.header > div {
  align-self: flex-start;
}
.header > div:not(:last-child) {
  margin-right: 30px;
}

/* 프로필 */
.profile-item {
  width: 100px;
}
.profile-item img {
  border-radius: 10px;
  margin-bottom: 5px;
}
.blogger a {
  display: block;
  padding: 5px;
  font-weight: 800;
  border-radius: 5px;
}
.blogger a:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}

/* 카테고리 */
.tt_category,
.category_list {
  margin: 0;
  padding-left: 0;
}
.link_tit,
.c_cnt {
  display: none;
}
.category {
  width: 150px;
  word-break: break-all;
}
.cate-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.cate-title span {
  padding: 5px;
  font-weight: bold;
  text-transform: uppercase;
}
.cate-title .toggle-list {
  padding: 5px;
  border-radius: 5px;
}
.cate-title .toggle-list:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.category_list {
  width: 100%;
}
.category_list > li {
  position: relative;
  width: 87%;
}
.category_list > li:not(:last-child) {
  margin-bottom: 10px;
}
.category_list ion-icon {
  position: relative;
  top: 2px;
}
.category_list > li > a {
  font-weight: 700;
}
.category_list .arrow {
  position: absolute;
  right: -20px;
  top: 2px;
  padding: 5px;
  border-radius: 5px;
}
.category_list .arrow:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.category_list a {
  display: block;
  padding: 5px;
  border-radius: 5px;
}
.category_list a:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.sub_category_list {
  display: none;
  padding-left: 15px;
}

/* 링크 연결 */
.link {
  width: 120px;
}
.link .links-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  margin-bottom: 5px;
}
.link .links-title i {
  color: var(--point-color);
}
.link .links-title span {
  font-weight: bold;
  text-transform: uppercase;
}
.icons a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px;
  border-radius: 5px;
  margin-bottom: 2px;
}
.link i {
  transform: scale(0.93);
}
.icons .label {
  transition: var(--transition-h);
  font-weight: 600;
}
.icons a:hover {
  background-color: var(--hover-color);
}
.icons a:hover .label {
  color: var(--point-color);
}

/* 검색창 */
.search input {
  width: 100px;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  padding: 8px 10px;
  box-sizing: border-box;
  background-color: #fefefe;
}
.search input:focus {
  border: 1px solid var(--point-color);
}
.search input::placeholder {
  text-align: center;
}

/* 커버 */
#cover > div:not(:last-child) {
  margin-bottom: 30px;
}
#cover .listWrap {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #f5f5f5;
  box-sizing: border-box;
}
#cover .listWrap .gallery {
  width: calc(100% / 4);
}
#cover + .contents {
  display: none;
}

/* 커버 아이템 타이틀 */
#cover .item-title {
  width: 100%;
  text-align: center;
}
#cover .item-title span {
  display: block;
  width: 100%;
  font-weight: 800;
  color: var(--point-color);
  margin-bottom: 15px;
}
#cover .item-title span i {
  color: var(--point-color);
}
#cover .item-title span:empty {
  display: none;
}

/* 커버 공지 */
#cover .notice {
  display: flex;
  flex-direction: column-reverse;
}
#cover .notice-item {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #f5f5f5;
}
#cover .notice .summary {
  word-break: break-all;
  white-space: pre-wrap;
}
#cover .notice .summary a[href] {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  font-weight: 600;
  position: relative;
}
#cover .notice .summary a[href]:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}

/* 컨텐츠 */
.contents {
  padding: 20px;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  box-sizing: border-box;
}

/* 글목록 */
.empty {
  text-align: center;
}
#listStyle,
.index,
.itemInfo img {
  display: none;
}
.description:not(:empty) {
  border: 1px solid #f5f5f5;
  background-color: #fefefe;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  white-space: pre-wrap;
}
.description a[href] {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  font-weight: 600;
  position: relative;
}
.description a[href]:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.listWrap .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-h);
  transform: translateZ(0) scale(1.2);
}
.listWrap .thumb img + .noimg {
  display: none;
}
.listWrap .noimg {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: var(--transition-h);
}
.listWrap .noimg i {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-h);
}
.listWrap .itemTitle {
  font-weight: 600;
}

/* 갤러리형 */
.listWrap {
  display: flex;
  flex-wrap: wrap;
}
.gallery {
  width: calc(100% / 4);
  padding: 10px;
  position: relative;
  box-sizing: border-box;
}
.gallery .thumb {
  position: relative;
  border-radius: 5px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  background-color: var(--hover-color);
  cursor: pointer;
}
.gallery .thumb::after {
  display: block;
  content: "";
  padding-bottom: 100%;
}
.gallery .item:hover .thumb img {
  transform: scale(1.3);
}
.gallery .item:hover .noimg {
  background-color: var(--point-color);
}
.gallery .item:hover .noimg i {
  color: #fff;
}
.gallery .itemInfo {
  position: absolute;
  inset: 10px;
  border-radius: 5px;
  text-align: center;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  transition: var(--transition-h);
}
.gallery .itemInfo .itemTitle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  overflow: hidden;
  padding: 0 10px;
  z-index: 2;
}
.gallery .itemInfo .itemTitle span {
  color: #fff;
}
.gallery .itemDate {
  display: none;
}
.gallery .item:hover .itemInfo {
  opacity: 1;
}

/* 기본 목록형 */
.basic {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.basic .thumb {
  display: none !important;
}
.basic .itemInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.basic .itemInfo .itemTitle {
  flex: 1;
  overflow: hidden;
  margin-right: 10px;
}
.basic .itemInfo .itemTitle span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: var(--transition-h);
  border-radius: 5px;
  padding: 15px;
  box-sizing: border-box;
}
.basic .itemTitle:hover span {
  color: var(--point-color);
  background-color: var(--hover-color);
}

/* 본문 */
.article.pages .container_postbtn,
.article.notice .container_postbtn {
  display: none !important;
}
.admin {
  text-align: right;
  margin-bottom: 30px;
}
.admin a {
  display: inline-block;
  margin-left: 5px;
  padding: 5px;
  border-radius: 5px;
}
.admin a:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.articleTitle {
  text-align: center;
  font-weight: 700;
  word-break: break-all;
}
.articleDate {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.article {
  padding: 10px;
  word-break: break-all;
  line-height: 1.3rem;
  border-radius: 5px;
}
.article a[href] {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  font-weight: 600;
  position: relative;
}
.article a[href]:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
code.hljs {
  padding: 15px;
  background-color: #fff !important;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  font-family: "pretendard" !important;
}
code.hljs * {
  font-family: "pretendard" !important;
}
figure[data-ke-type="opengraph"] {
  display: none !important;
}
.article .password {
  width: 100px;
  margin: 20px auto;
}
.article .password input {
  width: 100%;
  border-radius: 5px;
  padding: 10px 15px;
  background-color: #fefefe;
  border: 1px solid #f5f5f5;
  overflow: hidden;
  text-align: center;
}
.article .password input::placeholder {
  text-align: center;
  text-transform: lowercase;
}

/* 태그 */
.tagTrail {
  text-align: right;
}
.tagTrail a {
  display: inline-block;
  padding: 6px;
  border-radius: 5px;
}
.tagTrail a::before {
  content: "#";
  font-family: "pretendard";
  padding-right: 3px;
}
.tagTrail a:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}

/* 태그 로그 */
.taglog a {
  display: inline-block;
  padding: 6px;
  border-radius: 5px;
}
.taglog a::before {
  content: "#";
  font-family: "pretendard";
  padding-right: 3px;
}
.taglog a:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}

/* 보호글 */
.article .password {
  width: 100px;
  margin: 20px auto;
}
.article .password input {
  width: 100%;
  border-radius: 5px;
  padding: 10px 15px;
  background-color: #fefefe;
  border: 1px solid #f5f5f5;
  overflow: hidden;
  text-align: center;
}
.article .password input::placeholder {
  text-align: center;
  text-transform: lowercase;
}

/* 공감버튼 */
#page .container_postbtn,
#notice .container_postbtn {
  display: none !important;
}
.container_postbtn {
  margin-top: 30px;
  display: flex !important;
  align-items: center;
  padding: 0 !important;
  position: relative;
  clear: unset !important;
}
.container_postbtn .postbtn_like {
  float: unset !important;
  padding: 0 !important;
  border: 0 !important;
  font-size: 0 !important;
  border-radius: 0 !important;
}
.postbtn_like > div:not(:first-of-type),
.container_postbtn .btn_post .txt_like,
.ico_postbtn {
  display: none !important;
}
.wrap_btn {
  float: unset !important;
  width: unset !important;
}
.uoc-icon {
  width: 100% !important;
  padding: 0 !important;
  height: unset !important;
}
.container_postbtn .postbtn_like + .btn_menu_toolbar {
  display: none !important;
}

/* ++ 공감 아이콘 변경 */
.btn_post .uoc-icon::before {
  display: block;
  content: "\ea11";
  font-family: "xeicon";
  font-size: 1.2rem !important;
  width: auto !important;
  height: 30px;
  text-align: left;
  line-height: 30px !important;
  color: var(--font-color) !important;
}
.uoc-icon.like_on::before {
  content: "\ea10";
  color: red !important;
}

/* 인용구 */
blockquote {
  margin: 0 !important;
}
blockquote[data-ke-style="style1"] {
  padding: unset !important;
  background: unset !important;
  text-align: left !important;
}
blockquote[data-ke-style="style1"] span {
  display: block;
  background-color: #fbfbfb;
  margin-top: 5px;
  padding: 10px;
  border-radius: 5px;
  color: var(--font-color) !important;
  font-size: 1rem !important;
  font-family: "pretendard", sans-serif !important;
}
blockquote[data-ke-style="style2"] {
  border-left: 3px solid var(--point-color);
  font-size: 1rem !important;
  color: var(--font-color) !important;
  padding-left: 10px;
}
blockquote[data-ke-style="style3"] {
  background: #fff !important;
  border: 1px solid #f5f5f5 !important;
  padding: 10px !important;
  font-size: 1rem !important;
  color: var(--font-color) !important;
  border-radius: 5px !important;
}

/* 리스트 꾸미기 */
ul[data-ke-list-type="disc"],
ul[data-ke-list-type="circle"],
ol[data-ke-list-type="decimal"] {
  display: block;
  padding: 0;
}
ul[data-ke-list-type="disc"] li,
ul[data-ke-list-type="circle"] li,
ol[data-ke-list-type="decimal"] li {
  display: block;
  margin: 10px 0;
}
ul[data-ke-list-type="disc"] li *[data-ke-list-type],
ul[data-ke-list-type="circle"] li *[data-ke-list-type],
ol[data-ke-list-type="decimal"] li *[data-ke-list-type] {
  padding-left: 15px;
  margin: 10px 0;
}
ul[data-ke-list-type="disc"] > li::before {
  display: inline-block;
  content: "\f0c8";
  font-family: "fontawesome";
  transform: scale(0.5);
  margin-right: 3px;
  font-weight: 900;
  color: var(--point-color);
}
ul[data-ke-list-type="circle"] > li::before {
  display: inline-block;
  content: "\f111";
  font-family: "fontawesome";
  font-weight: 900;
  margin-right: 3px;
  transform: scale(0.5);
  color: var(--point-color);
}
ol[data-ke-list-type="decimal"] > li::before {
  display: inline-block;
  content: "\f068";
  font-family: "fontawesome";
  font-weight: 900;
  margin-right: 3px;
  transform: scale(0.6);
  color: var(--point-color);
}

/* 접은글 */
div[data-ke-type="moreLess"] {
  margin-bottom: 10px;
}
.btn-toggle-moreless {
  display: inline-block;
  margin: 3px 0 !important;
  position: relative;
  color: var(--font-color) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 1.3rem !important;
}
.btn-toggle-moreless::before {
  display: inline-block;
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--point-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 5px;
}
.open[data-ke-type="moreLess"] .btn-toggle-moreless::before {
  content: "\f0d7";
}
.moreless-content {
  padding: 15px;
  margin: 10px 0 20px 0;
  border-radius: 5px;
  background-color: #fbfbfb;
  word-break: break-word;
}

/* 첨부파일 */
figure.fileblock {
  display: flex;
  margin: 10px !important;
  width: unset !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: unset !important;
}
figure.fileblock[data-ke-align="alignLeft"] {
  justify-content: flex-start;
}
figure.fileblock[data-ke-align="alignCenter"] {
  justify-content: center;
}
figure.fileblock[data-ke-align="alignRight"] {
  justify-content: flex-end;
}
figure.fileblock a {
  display: flex !important;
  height: auto !important;
  overflow: hidden;
}
figure.fileblock a::before {
  display: none !important;
}
figure.fileblock a::after {
  display: none;
}
figure.fileblock .image,
figure.fileblock .size {
  display: none !important;
}
figure.fileblock .desc {
  position: unset !important;
}
figure.fileblock .filename {
  height: auto !important;
  margin-top: 0 !important;
}
figure.fileblock .name {
  max-width: unset !important;
  height: auto !important;
  white-space: unset !important;
  overflow: unset !important;
  word-break: break-all;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  padding: 10px 15px;
  background-color: #fff;
  transition: var(--transition-h);
  font-size: 1rem;
}
figure.fileblock .name:hover {
  color: #fff;
  background-color: var(--point-color);
}
figure.fileblock a[href],
figure.fileblock a[href]:hover {
  all: unset !important;
}

/* 댓글 토글 */
.cmtToggle {
  margin: 20px 0;
  text-align: right;
}
.cmtToggle span {
  display: inline-block;
  padding: 6px;
  border-radius: 5px;
}
.cmtToggle span:hover {
  background-color: var(--hover-color);
  color: var(--point-color);
}

/* 댓글폼 */
.comment {
  margin-top: 30px;
}
.writeBox {
  margin-bottom: 30px;
}
textarea {
  width: 100%;
  resize: none;
  height: 45px;
  padding: 15px;
  border: 1px solid #f5f5f5;
  background-color: #fefefe;
  transition: var(--transition-h);
  border-radius: 5px;
  overflow: hidden;
}
textarea:focus,
textarea:not(:placeholder-shown) {
  height: 100px;
}
.member {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.nameInput,
.pwInput {
  width: 100px;
  margin-right: 10px;
}
.member input {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #f5f5f5;
  background-color: #fefefe;
  overflow: hidden;
}
.member input::placeholder {
  text-align: center;
  text-transform: lowercase;
}
.member input:not(:placeholder-shown) {
  color: var(--point-color);
}
.submit {
  display: block;
  width: 50px;
  margin-left: auto;
  text-align: center;
  transition: var(--transition-h);
  font-weight: 600;
  margin-top: 15px;
  padding: 10px 5px;
  border-radius: 5px;
  overflow: hidden;
}
.submit:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.submit i {
  padding-right: 5px;
}

/* 비댓 토글 */
.check-bt {
  margin-left: auto;
  margin-right: 5px;
}
input[id="secret"] {
  display: none;
}
input[id="secret"] + label {
  display: inline-block;
  cursor: pointer;
}
input[id="secret"] + label::before {
  display: block;
  content: "\f3c1";
  font-family: "fontAwesome";
  font-weight: 900;
  font-size: var(--font-size);
  color: var(--font-color);
}
input[id="secret"]:checked + label::before {
  content: "\f023";
  color: var(--point-color);
  font-weight: 900;
}

/* 댓글 리스트 */
.cmtList > li:not(:last-child) {
  margin-bottom: 40px;
}
.cmtList > li ul {
  margin: 0;
  padding-left: 30;
}
.cmtList > li ul > li {
  margin-top: 15px;
}
.cmtWrap {
  margin-bottom: 10px;
}
.cmtName {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--point-color);
  background-color: var(--hover-color);
}
.cmtName a {
  color: var(--point-color);
}
.control {
  display: inline-block;
  margin-left: 5px;
}
.control a {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
}
.control a:hover {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.cmtdesc {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #f5f5f5;
  background-color: #fefefe;
  word-break: break-all;
}
.cmtDate {
  text-align: right;
  color: #aaa;
  margin-top: 15px;
}
.cmtDate a {
  display: none;
}

/* 다른 글 보기 */
.area-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.area-title span {
  display: inline-block;
  padding: 15px;
  font-weight: bold;
}
.toggle-area {
  padding: 15px;
}
.toggle-area.up {
  transform: rotate(180deg);
}
.area_related {
  display: none;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}
.area_related a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.txt_related {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.this_post .txt_related,
.this_post .txt_related i {
  font-weight: bold;
  color: var(--point-color);
}
.area_related a:hover .txt_related {
  color: var(--point-color);
  background-color: var(--hover-color);
}
.area_related .date_related {
  padding: 10px;
}

/* 페이징 */
.paging {
  margin-top: 20px;
  text-align: center;
}
.paging .selected {
  color: var(--point-color);
  font-weight: 700;
  text-decoration: underline;
}
.paging a {
  display: inline-block;
  padding: 5px;
}
.paging a span {
  color: #aaa;
}
.paging a:hover {
  opacity: 0.5;
}

/* 풋터 */
#footer {
  margin-bottom: 80px;
}

.copyright {
  box-shadow: none !important;
  border: 1px solid #f5f5f5;
  transition: var(--transition-h);
}
.copyright:hover {
  background-color: var(--hover-color) !important;
}
@media all and (max-width: 500px) {
  .gallery,
  #cover .listWrap .gallery {
    width: 50%;
  }
}
