@charset "UTF-8";
/*-------------------------------------------------

Title       : 공통..... 폼/게시판/버튼
Author      : EASESOFT
Create Date : 2024-09

-------------------------------------------------*/
/* Button ================================================================================== */
.btn_box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.btn_box.center {
  justify-content: center;
}
.btn_box.right {
  justify-content: flex-end;
}
.btn_box.between {
  justify-content: space-between;
}
.btn_box.between .cut {
  margin-left: auto;
}
.btn_box .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 13.8rem;
  min-height: 4.8rem;
  padding: 0.5rem 1rem;
  border: 1px solid #999;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 0.4rem;
  transition: 0.3s;
  position: relative;
  box-sizing: border-box;
}
.btn_box .btn.xsm {
  min-width: 11rem;
  min-height: 3.2rem;
  font-size: 1.4rem;
}
.btn_box .btn.sm {
  min-width: 13rem;
  min-height: 4.2rem;
  font-size: 1.45rem;
}
.btn_box .btn.lg {
  min-width: 20rem;
  min-height: 5.6rem;
  font-size: 1.6rem;
}
.btn_box .btn.gray {
  border-color: #E8E9EF;
  background: #E8E9EF;
}
.btn_box .btn.navy {
  border-color: #1B2539;
  background: #1B2539;
  color: #fff;
}
.btn_box .btn.ic {
  justify-content: space-between;
  padding-right: 1.2rem;
}
.btn_box .btn.ic::after {
  font-family: "remixicon";
  margin-left: 2rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.btn_box .btn.ic.center {
  justify-content: center;
}
.btn_box .btn.ic.center::after {
  margin-left: 0.8rem;
}
.btn_box .btn.ic.down::after {
  content: "\ec5a";
}
.btn_box .btn.ic.check::after {
  content: "\eb7a";
}
.btn_box .btn.ic.refresh::after {
  content: "\f064";
}
.btn_box .btn.ic.window::after {
  content: "\ea70";
}
.btn_box .btn.ic.search::after {
  content: "\f0d1";
}
.btn_box .btn.ic.new::after {
  content: "\ecaf";
}
.btn_box .btn.ic.plus::after {
  content: "\ea13";
}
.btn_box .btn.ic.go::after {
  content: "\ea6e";
}
.btn_box .btn.ic.long::after {
  margin-left: 8rem;
}
.btn_box .btn.round {
  overflow: hidden;
  width: 4.2rem;
  min-width: 4.2rem;
  height: 4.2rem;
  min-height: 4.2rem;
  border-radius: 100%;
  font-size: 0;
}
.btn_box .btn.round::after {
  font-size: 2rem;
  margin: 0;
}
@media all and (min-width: 1025px) {
  .btn_box .btn:hover, .btn_box .btn:focus {
    border-color: #1B2539;
    background: #1B2539;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.29);
  }
  .btn_box .btn.gray:hover, .btn_box .btn.gray:focus {
    border-color: #F1F1F1;
    background: #F1F1F1;
    color: inherit;
  }
  .btn_box .btn.navy:hover, .btn_box .btn.navy:focus {
    border-color: #199CC5;
    background: #199CC5;
  }
}

/* Form ================================================================================== */
.form_radio {
  position: relative;
}
.form_radio + .form_radio {
  margin-left: 1rem;
}
.form_radio input[type=radio] {
  width: 0;
  height: 0;
}
.form_radio input[type=radio] + label {
  position: relative;
  padding-left: 3rem;
  cursor: pointer;
}
.form_radio input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid #CFD1D3;
  background: #fff;
  border-radius: 100%;
  box-sizing: border-box;
  transition: 0.3s;
}
.form_radio input[type=radio]:checked + label::before {
  border: 4px solid #0993BE;
}
.form_radio input[type=radio]:focus-visible + label {
  outline: 2px dotted #000;
}

.form_radio_box {
  position: relative;
  display: block;
}
.form_radio_box input[type=radio] {
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.form_radio_box input[type=radio] + label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4.8rem;
  min-width: 17.2rem;
  padding: 0 0.5rem;
  cursor: pointer;
  border: 1px solid #CED6DC;
  color: #767676;
  transition: 0.3s;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.form_radio_box input[type=radio] + label::after {
  display: none;
  content: "\eb7b";
  font-family: "remixicon";
  margin-left: 0.5rem;
}
.form_radio_box input[type=radio] + label.active {
  background: #0993BE;
  color: #fff;
}
.form_radio_box input[type=radio] + label.active::after {
  display: block;
}
.form_radio_box input[type=radio]:focus-visible + label {
  outline: 2px dotted #000;
}
@media screen and (min-width: 1025px) {
  .form_radio_box:hover input[type=radio] + label:not(.active) {
    border: 1px solid #0993BE;
    color: #0993BE;
  }
}

.form_check {
  position: relative;
}
.form_check + .form_check {
  margin-left: 1rem;
}
.form_check input[type=checkbox] {
  width: 0;
  height: 0;
}
.form_check input[type=checkbox] + label {
  position: relative;
  padding-left: 3rem;
  cursor: pointer;
  font-size: 1.6rem;
}
.form_check input[type=checkbox] + label::before {
  content: "";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 2.4rem;
  height: 2.4rem;
  padding-top: 0.2rem;
  border: 2px solid #CFD1D3;
  font-family: "remixicon";
  color: #fff;
  box-sizing: border-box;
  transition: 0.3s;
  border-radius: 2px;
}
.form_check input[type=checkbox]:checked + label::before {
  content: "\eb7b";
  border-color: #0993BE;
  background: #0993BE;
}
.form_check input[type=checkbox]:focus-visible + label {
  outline: 2px dotted #000;
}
.form_check + .form_item {
  margin-left: 2rem;
}

input.form_input {
  width: 33rem;
  max-width: 100%;
  height: 4.8rem;
  padding: 0 1.6rem;
  border: 1px solid #CED6DC;
  border-radius: 4px;
  transition: 0.2s;
  font-size: 1.6rem;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
input.form_input:read-only, input.form_input:disabled {
  border-color: #CED6DC;
  background: #EFF2F6;
  color: #151515;
}
input.form_input:focus {
  border-color: #1B2539;
  box-shadow: 0 3px 6px rgba(178, 178, 185, 0.2509803922);
}
input.form_input::placeholder {
  color: #767676;
}

textarea.form_textarea {
  padding: 1.6rem;
  border: 1px solid #CED6DC;
  border-radius: 4px;
  font-size: 1.6rem;
}
textarea.form_textarea:read-only, textarea.form_textarea:disabled {
  border-color: #CED6DC;
  background: #EFF2F6;
  color: #151515;
}
textarea.form_textarea:focus {
  border-color: #1B2539;
  box-shadow: 0 3px 6px rgba(178, 178, 185, 0.2509803922);
}
textarea.form_textarea::placeholder {
  color: #767676;
}

.form_select {
  position: relative;
  display: block;
  width: 33rem;
  max-width: 100%;
}
.form_select::after {
  content: "\ea4e";
  position: absolute;
  transform: translate(0, -50%);
  right: 1rem;
  top: 50%;
  z-index: 0;
  font-family: "remixicon";
  font-size: 2rem;
  pointer-events: none;
}
.form_select select {
  outline: none;
  width: 100%;
  height: 5rem;
  padding: 0 3rem 0 1.6rem;
  border: 1px solid #CED6DC;
  border-radius: 4px;
  transition: 0.2s;
  font-size: 1.6rem;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.form_select select:focus {
  border-color: #1B2539;
  box-shadow: 0 3px 6px rgba(178, 178, 185, 0.2509803922);
}

.form_list_select {
  position: relative;
  z-index: 10;
}
.form_list_select .btn_open {
  display: inline-flex;
  align-items: center;
  position: relative;
  outline: none;
  width: 33rem;
  max-width: 100%;
  height: 5rem;
  padding: 0 2rem 0 1.6rem;
  background: #fff;
  border: 1px solid #CED6DC;
  border-radius: 4px;
  transition: 0.2s;
}
.form_list_select .btn_open::after {
  content: "\ea4e";
  position: absolute;
  transform: translate(0, -50%);
  right: 1rem;
  top: 50%;
  z-index: 1;
  font-family: "remixicon";
  font-size: 2rem;
}
.form_list_select > div {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateX(-2px);
  left: 0;
  top: 100%;
  z-index: 0;
  z-index: -1;
  width: 100%;
  max-height: 0;
  padding: 2rem;
  border: 1px solid #CED6DC;
  background: #fff;
  border-radius: 4px;
}
.form_list_select > div ul {
  overflow-y: auto;
  max-height: 10rem;
}
.form_list_select > div ul::-webkit-scrollbar-track {
  background-color: #EBEDF1;
  border-radius: 0;
}
.form_list_select > div ul::-webkit-scrollbar {
  width: 0.5rem;
}
.form_list_select > div ul::-webkit-scrollbar-thumb {
  background-color: #A3A3A3;
  border-radius: 0;
}
.form_list_select > div ul li a {
  display: block;
  padding: 5px 3px;
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .form_list_select > div ul li a:hover {
    background: #F5F7FB;
  }
}
.form_list_select:focus .btn_open, .form_list_select.active .btn_open {
  border-color: #1B2539;
  box-shadow: 0 3px 6px rgba(178, 178, 185, 0.2509803922);
}
.form_list_select.active .btn_open::after {
  content: "\ea78";
}
.form_list_select.active > div {
  opacity: 1;
  visibility: visible;
  max-height: 50rem;
}

.form_file_upload {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.form_file_upload input.form_input[type=file] {
  line-height: 4.8rem;
}
.form_file_upload input.form_input[type=file]::file-selector-button {
  display: none;
}
.form_file_upload label {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 4.8rem;
  padding: 0 2rem;
  background: #1B2539;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .form_file_upload label:hover, .form_file_upload label:focus {
    border-color: #199CC5;
    background: #199CC5;
  }
}

/* Board  ======================================================================================================================================================*/
.board_info {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.board_info .page {
  font-size: 1.5rem;
}
.board_info .page .total b {
  padding-left: 0.5rem;
}
.board_info .page .current {
  margin-left: 2rem;
  position: relative;
}
.board_info .page .current::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: calc(50% - 5px);
  width: 1px;
  height: 10px;
  background: #DCDCDC;
}
.board_info .page .current strong {
  padding-left: 0.5rem;
}
.board_info form, .board_info .form {
  margin-left: auto;
}
.board_info .form {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}
.board_info .form .form_select {
  width: 20rem;
}
.board_info .form .form_select.sm {
  width: 16rem;
}
.board_info .form .form_select.cate {
  width: 15rem;
}
.board_info .form .form_select.area {
  width: 12rem;
}
.board_info .form .form_input {
  padding-right: 3rem;
}
.board_info:has(.cate_select) {
  position: relative;
  padding-top: 23rem;
}
.board_info:has(.cate_select) .cate_select {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  border: 1px solid #E8EDF1;
  border-radius: 1.6rem;
  width: 100%;
  padding: 4rem;
}
.board_info:has(.cate_select) .cate_select .category {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
}
.board_info:has(.cate_select) .cate_select .code_name {
  width: 38rem;
  height: 4.8rem;
  background: #E9F3F7;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 700;
}
.board_info:has(.cate_select) .cate_select .radio_box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.board_info:has(.cate_select) .cate_select .radio_box .form_radio_box {
  flex: 1;
}
.board_info:has(.cate_select) .cate_select .radio_box .form_radio_box label {
  border-radius: 0.4rem;
  font-weight: 600;
}

.board_pager {
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
.board_pager a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 100%;
  transition: 0.3s;
  letter-spacing: -1px;
}
.board_pager a.nav {
  border: 1px solid #E1E8EE;
  font-size: 0;
}
.board_pager a.nav::before {
  font-family: "remixicon";
  font-size: 2rem;
}
.board_pager a.nav.first::before {
  content: "\f2e3";
}
.board_pager a.nav.prev::before {
  content: "\ea64";
}
.board_pager a.nav.next::before {
  content: "\ea6e";
}
.board_pager a.nav.last::before {
  content: "\f2e5";
}
@media screen and (min-width: 1025px) {
  .board_pager a.nav:hover {
    background: #199CC5;
    border-color: #199CC5;
    color: #fff;
  }
}
.board_pager a:not(.nav) {
  font-size: 1.4rem;
  font-weight: 600;
  color: #151515;
}
.board_pager a:not(.nav).on {
  background: #E7F3F6;
}
@media screen and (min-width: 1025px) {
  .board_pager a:not(.nav):not(.on):hover {
    background: #F1F1F1;
  }
}
.board_pager a.total {
  display: none;
}

.board_view {
  border-top: 2px solid #454B56;
}
.board_view h2.title {
  padding: 4rem 2rem;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  word-break: keep-all;
}
.board_view .info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem 3rem;
  padding: 2.5rem;
  border-bottom: 1px solid #E4E4E4;
  background: #F9F9FB;
}
.board_view .info li {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.board_view .info li span {
  color: #333;
}
.board_view .info li + li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: calc(50% - 0.5rem);
  width: 1px;
  height: 1rem;
  background: #DBE0E3;
}
.board_view .info.nofity_info {
  flex-wrap: wrap;
}
.board_view .info.nofity_info li {
  width: 33.33%;
}
.board_view .contents {
  padding: 4rem 0;
  min-height: 30rem;
  font-size: 1.8rem;
  border-bottom: 1px solid #E4E4E4;
}
.board_view .contents .image_slide {
  margin-bottom: 5rem;
  border-bottom: 1px solid #E4E4E4;
}
.board_view .contents .image_slide .swiper-wrapper {
  align-items: center;
}
.board_view .contents .image_slide .swiper-wrapper .swiper-slide {
  text-align: center;
}
.board_view .contents .image_slide .btn_thumb {
  box-sizing: border-box;
  transition: 0.2s;
}
.board_view .contents .image_slide .btn_thumb::before {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "remixicon";
}
.board_view .contents .image_slide .btn_thumb.prev::before {
  content: "\ea64";
}
.board_view .contents .image_slide .btn_thumb.next::before {
  content: "\ea6e";
}
.board_view .contents .image_slide .thumb {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 0 3rem;
  margin-bottom: 3rem;
}
.board_view .contents .image_slide .thumb .btn_thumb {
  flex: none;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid #E9E9E9;
  color: #bdbdbd;
  border-radius: 100%;
  font-size: 0;
}
.board_view .contents .image_slide .thumb .btn_thumb::before {
  font-size: 2rem;
  line-height: 4.5rem;
}
.board_view .contents .image_slide .thumb .btn_thumb.prev::before {
  padding-right: 2px;
}
.board_view .contents .image_slide .thumb .btn_thumb.next::before {
  padding-left: 2px;
}
@media screen and (min-width: 1025px) {
  .board_view .contents .image_slide .thumb .btn_thumb:hover {
    background: #00BFFB;
    color: #fff;
  }
}
.board_view .contents .image_slide .thumb .thumb_slide {
  overflow: hidden;
  padding: 3px 0;
  flex: 1;
}
.board_view .contents .image_slide .thumb .thumb_slide .swiper-slide {
  position: relative;
}
.board_view .contents .image_slide .thumb .thumb_slide .swiper-slide a {
  display: block;
  height: 10rem;
}
.board_view .contents .image_slide .thumb .thumb_slide .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board_view .contents .image_slide .thumb .thumb_slide .swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #00BFFB;
  box-sizing: border-box;
}
.board_view .contents .image_slide .detail {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5rem 0;
  background: #ECF2FD;
}
.board_view .contents .image_slide .detail .btn_thumb {
  flex: none;
  width: 5rem;
  color: #666;
  font-size: 0;
}
.board_view .contents .image_slide .detail .btn_thumb::before {
  font-size: 5rem;
}
@media screen and (min-width: 1025px) {
  .board_view .contents .image_slide .detail .btn_thumb:hover {
    color: #000;
  }
}
.board_view .contents .image_slide .detail .page {
  width: 100%;
  margin-top: 2rem;
}
.board_view .contents .image_slide .detail .pagination {
  width: 10rem;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  background: #E9E9E9;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  color: #333;
  line-height: 1.2;
  border-radius: 50em;
}
.board_view .contents .image_slide .detail .pagination span {
  color: #333;
}
.board_view .contents .image_slide .detail .detail_slide {
  flex: 1;
  overflow: hidden;
}
.board_view .contents .image_slide .detail .detail_slide .swiper-slide img {
  max-height: 70rem;
}
.board_view .contents .image_slide.down {
  margin-top: 5rem;
  margin-bottom: 0;
  border-bottom: 0;
  border-top: 1px solid #E4E4E4;
  padding-top: 5rem;
}
.board_view .contents .image_slide.down .thumb {
  margin-bottom: 0;
}
.board_view .contents .image_slide.down .detail {
  margin-bottom: 3rem;
}
.board_view .contents .no_data {
  text-align: center;
  padding: 2rem 0;
}
.board_view .file {
  position: relative;
  padding: 2.5rem 0;
  border-bottom: 1px solid #E4E4E4;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.board_view .file .title {
  align-self: flex-start;
  width: 20rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}
.board_view .file .list {
  flex: 1;
}
.board_view .file .list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
  gap: 1rem;
}
.board_view .file .list li + li {
  margin-top: 1rem;
}
.board_view .file .list li .btn_box {
  margin-left: auto;
  flex: none;
}
.board_view .file_cont {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  padding-left: 3.5rem;
}
.board_view .file_cont img {
  position: absolute;
  left: 0;
  top: -0.2rem;
}
.board_view .file_cont .txt {
  font-weight: 400;
  color: #666;
}

.board_comment {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 4rem 0;
  margin-top: 4rem;
}
.board_comment .form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 1rem;
  width: 100%;
}
.board_comment .form textarea.form_textarea {
  height: 10rem;
}
.board_comment .form .length {
  position: absolute;
  right: 16rem;
  bottom: 1rem;
  font-size: 1.4rem;
  color: #767676;
}
.board_comment .form .btn_box .btn {
  height: 10rem;
}
.board_comment .list {
  margin-top: 3rem;
}
.board_comment .list .title {
  font-size: 1.6rem;
}
.board_comment .list .title::before {
  content: "\ef46";
  font-family: "remixicon";
  margin-right: 0.5rem;
}
.board_comment .list ul {
  margin-top: 2rem;
}
.board_comment .list ul li {
  background: #FAFAFA;
  padding: 4rem;
}
.board_comment .list ul li + li {
  margin-top: 1rem;
}
.board_comment .list ul li .info {
  margin-top: 1rem;
  font-size: 1.4rem;
  text-align: right;
}
.board_comment .list ul li .info .date {
  position: relative;
  margin-left: 2rem;
}
.board_comment .list ul li .info .date::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: calc(50% - 5px);
  width: 1px;
  height: 10px;
  background: #ddd;
}
.board_comment .list ul li .form {
  margin-top: 3rem;
  transition: 0s;
}

.board_answer {
  margin-top: 4rem;
}
.board_answer .top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.board_answer .top .title {
  font-size: 1.6rem;
}
.board_answer .top .title::before {
  content: "\ef44";
  font-family: "remixicon";
  margin-right: 0.5rem;
}
.board_answer .top .info {
  margin-left: auto;
  font-size: 1.4rem;
  text-align: right;
}
.board_answer .top .info span + span {
  position: relative;
  margin-left: 2rem;
}
.board_answer .top .info span + span::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: calc(50% - 5px);
  width: 1px;
  height: 10px;
  background: #ddd;
}
.board_answer .contents {
  background: #FAFAFA;
  padding: 4rem;
  margin-top: 1rem;
}
.board_answer .list {
  margin-top: 3rem;
}
.board_answer .list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.board_answer .list li + li {
  margin-top: 1rem;
}
.board_answer .list li .btn_box {
  margin-left: auto;
}

.board_prevnext {
  margin-top: 4rem;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.board_prevnext li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 1rem;
}
.board_prevnext li .txt {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 16rem;
  font-weight: 600;
  margin-right: 2rem;
}
.board_prevnext li .txt::before {
  content: "\ea78";
  margin-right: 0.5rem;
  font-family: "remixicon";
}
.board_prevnext li a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--text-color-80);
}
@media screen and (min-width: 1025px) {
  .board_prevnext li a:hover {
    text-decoration: underline;
  }
}
.board_prevnext li .date {
  display: none;
}
.board_prevnext li.next {
  border-top: 1px solid #E4E4E4;
}
.board_prevnext li.next .txt::before {
  content: "\ea4e";
}

/* FORM ================================================================== */
.board_form {
  border-top: 1px solid #000;
}
.board_form tr {
  border-bottom: 1px solid #E4E4E4;
}
.board_form th, .board_form td {
  padding: 1rem;
}
.board_form th {
  text-align: left;
  padding-left: 2rem;
  font-size: 1.6rem;
}
.board_form td.row_box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.board_form td.row_box.email input#email_1 {
  width: 20rem;
}
.board_form td.row_box.email input#email_2 {
  width: 25rem;
}
.board_form td.row_box.email .form_select {
  width: inherit;
}
.board_form td.row_box.tel .form_select {
  width: 12rem;
}
.board_form td.row_box.tel input.form_input {
  width: 12rem;
}
.board_form td.row_box.address {
  flex-wrap: wrap;
}
.board_form td.row_box.address .btn_box {
  gap: 1rem;
}
.board_form td.row_box.address .map {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.board_form td.row_box.address .map .btn::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  flex: none;
}
.board_form td.row_box.address .map .kakao::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00053 0C3.58113 0 0 3.08232 0 6.88407C0 9.35843 1.51712 11.5282 3.79545 12.7407C3.62758 13.4211 3.18944 15.2047 3.10181 15.5863C2.99307 16.0598 3.26123 16.054 3.43649 15.9264C3.57374 15.8265 5.62824 14.306 6.51508 13.6498C7.00706 13.7291 7.50327 13.7681 8.00053 13.7681C12.4189 13.7681 16.0011 10.6858 16.0011 6.88292C16.0011 3.08002 12.4178 0 7.99947 0' fill='%23391B1B'/%3E%3Cpath d='M4.78055 4.85693H2.44099C2.22139 4.85693 2.04297 5.05001 2.04297 5.28906C2.04297 5.5281 2.22034 5.72233 2.43993 5.72233H3.20113V8.77361C3.20113 9.00691 3.37533 9.19539 3.58965 9.19654H3.67411C3.88843 9.19654 4.06158 9.00691 4.06158 8.77361V5.72233H4.77949C4.99909 5.72233 5.17751 5.52925 5.17751 5.2902C5.17751 5.05116 5.00014 4.85693 4.78055 4.85693Z' fill='%23FAE300'/%3E%3Cpath d='M10.4036 8.38257H9.31617V5.26692C9.31617 5.00719 9.12296 4.79688 8.88542 4.79688C8.64682 4.79688 8.45361 5.00719 8.45361 5.26577V8.62506C8.45361 8.65034 8.45572 8.67563 8.45995 8.69976C8.45572 8.7239 8.45361 8.74918 8.45361 8.77446C8.45361 8.99167 8.61409 9.16751 8.81363 9.16751H10.4047C10.6042 9.16751 10.7657 8.99167 10.7657 8.77446C10.7657 8.55725 10.6042 8.38142 10.4047 8.38142L10.4036 8.38257Z' fill='%23FAE300'/%3E%3Cpath d='M13.8791 8.52525L12.6671 6.79216L13.7629 5.59923C13.915 5.44178 13.9213 5.17975 13.7767 5.01426C13.632 4.84876 13.3913 4.84187 13.2393 4.99932C13.2351 5.00391 13.2298 5.00966 13.2255 5.01426L11.87 6.48991V5.26595C11.87 5.00621 11.6768 4.7959 11.4382 4.7959C11.1996 4.7959 11.0063 5.00621 11.0063 5.26595V8.72752C11.0063 8.98725 11.1996 9.19756 11.4382 9.19756C11.6768 9.19756 11.87 8.98725 11.87 8.72752V7.65985L12.1159 7.39208L13.2625 9.02977C13.3881 9.2171 13.6299 9.25848 13.802 9.12171C13.9741 8.98495 14.0121 8.72177 13.8865 8.53444C13.8843 8.53099 13.8822 8.52755 13.8801 8.5241L13.8791 8.52525Z' fill='%23FAE300'/%3E%3Cpath d='M8.12811 8.63772L6.96255 5.1658L6.95833 5.16235C6.86226 4.9302 6.64583 4.7854 6.4125 4.79689C6.15279 4.7808 5.91735 4.96238 5.84556 5.23361C5.83712 5.252 5.82973 5.27153 5.82339 5.29107L4.67684 8.63886C4.60294 8.85722 4.70535 9.09857 4.90594 9.17902C5.10653 9.25947 5.32824 9.14799 5.40214 8.92963C5.4032 8.92503 5.40531 8.92158 5.40637 8.91699L5.60485 8.30098H7.2001L7.39858 8.91699C7.46615 9.13764 7.68575 9.25602 7.8874 9.18247C8.0901 9.10891 8.19885 8.86987 8.13128 8.65036C8.13022 8.64576 8.12917 8.64231 8.12705 8.63772H8.12811ZM5.85718 7.51374L6.3935 5.84846C6.39984 5.84846 6.40511 5.85076 6.41039 5.85076L6.94672 7.51489H5.85718V7.51374Z' fill='%23FAE300'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
}
.board_form td.row_box.address .map .naver::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1226_6406)'%3E%3Cpath d='M10.5432 0V8.07013L5.47789 0H0V16H5.45684V7.92519L10.5221 15.9953H15.9958V0H10.5389H10.5432Z' fill='%233ACC15'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1226_6406'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
}
.board_form .only_text {
  display: inline-block;
  padding: 1rem 0;
  font-size: 1.6rem;
}
.board_form .required {
  color: #C30909;
}
.board_form .file_active td {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.board_form .file_active .btn_delete::before {
  content: "\eb97";
  font-family: "remixicon";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.board_form .form_file_upload + .form_file_upload {
  margin-top: 1rem;
}
.board_form .form_file_upload + .cont_list {
  font-size: 1.4rem;
}
.board_form .view_file {
  width: 100%;
}
.board_form .view_file li + li {
  margin-top: 1.5rem;
}
.board_form .view_file li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.board_form .view_file .btn_box {
  margin-left: auto;
  flex: none;
}
.board_form .file_cont {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  padding-left: 3.5rem;
}
.board_form .file_cont img {
  position: absolute;
  left: 0;
  top: -0.2rem;
}
.board_form .file_cont .txt {
  font-weight: 400;
  color: #666;
}
.board_form .captcha {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.board_form .captcha img {
  display: block;
  height: 4.8rem;
}
.board_form .captcha .btn {
  border: 1px solid #1B2539;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 4.8rem;
  font-size: 1.5rem;
  padding: 0 1rem;
  transition: 0.3s;
}
.board_form .captcha .btn::after {
  font-family: "remixicon";
  margin-left: 1rem;
}
.board_form .captcha .btn.refresh::after {
  content: "\f064";
}
.board_form .captcha .btn.audio::after {
  content: "\f29c";
}
@media screen and (min-width: 1025px) {
  .board_form .captcha .btn:hover {
    background: #1B2539;
    color: #fff;
  }
}

/* List (모양) ============================================= */
.board_list table {
  border-top: 2px solid #454B56;
  border-bottom: 1px solid #aaa;
  font-size: 1.8rem;
  overflow: hidden;
  table-layout: fixed;
}
.board_list thead {
  border-bottom: 1px solid #454B56;
}
.board_list thead th {
  padding: 1.5rem 0.5rem;
  font-weight: 600;
  text-align: center;
}
.board_list tbody tr {
  border-bottom: 1px solid #DDD;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .board_list tbody tr:hover {
    border-color: #00BFFB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2117647059);
  }
}
.board_list tbody tr.notice {
  background: #ECF2FD;
}
.board_list tbody td {
  padding: 2rem 0.5rem;
  text-align: center;
  overflow: hidden;
}
.board_list tbody td.subject {
  text-align: left;
  overflow: hidden;
}
.board_list tbody td.subject a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.board_list tbody td.subject i {
  position: relative;
  display: inline-block;
  width: inherit;
  height: inherit;
  margin: 0;
}
.board_list tbody td.subject i::before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 2.6rem;
  font-family: "remixicon";
  box-sizing: border-box;
  border-radius: 100%;
}
.board_list tbody td.subject i.reply::before {
  content: "\f309";
}
.board_list tbody td.subject i.lock::before {
  content: "\eece";
}
.board_list tbody td.subject i.new::before {
  content: "N";
  width: 2.6rem;
  background: #39A5CE;
  font-family: "NanumSquareNeo";
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.board_list tbody td.subject .title {
  font-weight: 600;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.board_list tbody td .icon_notice {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  background: #333;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 100%;
}
.board_list tbody td .state {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 11rem;
  padding: 0.5rem;
  margin: 0 auto;
  border-radius: 0.4rem;
  background: #CBD3E2;
  font-weight: 600;
}
.board_list tbody td .state.ing {
  background: #11279E;
  color: #fff;
}
.board_list tbody td .state.end {
  background: #000;
  color: #fff;
}
.board_list tbody td .state.cancel {
  background: #CD1B1B;
  color: #fff;
}
.board_list .no_data {
  padding: 5rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  width: 100%;
}

.faq_list {
  border-top: 1px solid #CED6DC;
}
.faq_list li {
  border-bottom: 1px solid #CED6DC;
  transition: 0.3s;
}
.faq_list li .icon {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  margin-right: 2rem;
  font-family: "titillium";
  font-size: 2.4rem;
  font-weight: 700;
}
.faq_list li .question {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 1.6rem 2.5rem;
}
.faq_list li .question .icon {
  background: #199CC5;
  color: #fff;
}
.faq_list li .question .cate {
  flex: none;
  margin-right: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}
.faq_list li .question .title {
  font-size: 2rem;
  font-weight: 700;
  padding-right: 1rem;
  word-break: keep-all;
  word-wrap: break-word;
}
.faq_list li .question::after {
  content: "";
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.121' height='8.811' viewBox='0 0 16.121 8.811'%3E%3Cpath id='down' d='M23,20.5l-7-7-7,7' transform='translate(-7.939 -12.75)' fill='none' stroke='%23373737' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
  transition: 0.3s;
  opacity: 0.5;
}
.faq_list li .answer {
  overflow-y: auto;
  max-height: 0;
  transition: 0.3s;
  font-size: 1.6rem;
  opacity: 0;
  visibility: hidden;
}
.faq_list li .answer::-webkit-scrollbar-track {
  background-color: #EBEDF1;
  border-radius: 0;
}
.faq_list li .answer::-webkit-scrollbar {
  width: 0.5rem;
}
.faq_list li .answer::-webkit-scrollbar-thumb {
  background-color: #A3A3A3;
  border-radius: 0;
}
.faq_list li .answer .inner {
  border-top: 1px solid #CED6DC;
  padding: 1.6rem 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 600;
}
.faq_list li .answer .inner .text {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.faq_list li .answer .icon {
  background: #CBD2DB;
}
.faq_list li.active {
  background: #F3F7F9;
}
.faq_list li.active .question::after {
  transform: rotate(0);
  opacity: 1;
}
.faq_list li.active .answer {
  max-height: 50rem;
  opacity: 1;
  visibility: visible;
}
.faq_list .no_data {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  border-top: 2px solid #454B56;
  margin-top: -1px;
}

.gallery_list {
  border-top: 2px solid #454B56;
  padding-top: 4rem;
}
.gallery_list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4rem 2.7rem;
}
.gallery_list li {
  border: 1px solid #DCDCDC;
}
.gallery_list li a {
  display: block;
  padding: 2.6rem;
  box-sizing: border-box;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .gallery_list li a:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1019607843);
  }
  .gallery_list li a:hover .thumb img {
    transform: scale(1.05);
  }
}
.gallery_list .thumb {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/9;
  margin-bottom: 2.4rem;
  overflow: hidden;
}
.gallery_list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.gallery_list .thumb.long {
  aspect-ratio: 67/96;
}
.gallery_list .thumb.long img {
  object-fit: fill;
}
.gallery_list .desc {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.gallery_list .desc .title {
  flex: none;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 5rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  word-break: keep-all;
  margin-bottom: 2rem;
}
.gallery_list .desc .title .new {
  position: relative;
  display: inline-block;
}
.gallery_list .desc .title .new::before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  content: "N";
  background: #39A5CE;
  font-family: "NanumSquareNeo";
  box-sizing: border-box;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  border-radius: 100%;
  transform: translateY(-2px);
}
.gallery_list .desc .title .subject {
  font-size: 1.7rem;
  font-weight: 600;
}
.gallery_list .desc .label {
  display: none;
}
.gallery_list .desc .name {
  font-size: 1.4rem;
  font-weight: 600;
}
.gallery_list .desc .date {
  font-size: 1.4rem;
  font-family: "titillium";
  font-variant-numeric: tabular-nums;
  color: #555;
}
.gallery_list .desc .hit {
  position: relative;
  margin-left: 1rem;
  font-size: 1.4rem;
  font-family: "titillium";
  font-variant-numeric: tabular-nums;
  color: #555;
}
.gallery_list .desc .hit::before {
  content: "\ecb5";
  font-family: "remixicon";
  font-size: 90%;
}
.gallery_list .desc .hit::after {
  content: "";
  position: absolute;
  left: -1rem;
  top: 7px;
  width: 1px;
  height: 10px;
  background: #DDDDDD;
}
.gallery_list .no_data {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 5rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 1px solid #aaa;
}
.gallery_list.webzine ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery_list.webzine ul li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
}
.gallery_list.webzine .thumb {
  flex: none;
  width: 22rem;
  aspect-ratio: 1/1;
  margin: 0;
}
.gallery_list.webzine .desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.gallery_list.webzine .txt {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  height: 11rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  word-break: keep-all;
  font-size: 1.5rem;
}
.gallery_list.webzine .items {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.gallery_list.ebook .box {
  display: block;
  padding: 2.6rem;
  box-sizing: border-box;
  transition: 0.3s;
}
.gallery_list.ebook .txt {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  height: 11rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  word-break: keep-all;
  font-size: 1.5rem;
}

/* 달력 */
.calendar_box .date_area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
}
.calendar_box .date_area .today {
  font-size: 2.4rem;
  font-weight: 500;
}
.calendar_box .date_area .month {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 100%;
  border: 1px solid #999;
  box-sizing: border-box;
  transition: 0.2s;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M10.8284 12.0007L15.7782 16.9504L14.364 18.3646L8 12.0007L14.364 5.63672L15.7782 7.05093L10.8284 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem;
}
.calendar_box .date_area .month.next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
}
@media screen and (min-width: 1025px) {
  .calendar_box .date_area .month:hover {
    border-color: #39A5CE;
    background-color: #39A5CE;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M10.8284 12.0007L15.7782 16.9504L14.364 18.3646L8 12.0007L14.364 5.63672L15.7782 7.05093L10.8284 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
  }
  .calendar_box .date_area .month:hover.next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
  }
}
.calendar_box .date_area.type_btn .month {
  width: 4.2rem;
  height: 4.2rem;
}
.calendar_box .date_area.type_btn .left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.calendar_box .date_area.type_btn .left .btn_box .btn {
  min-width: 6rem;
}
.calendar_box .date_area.type_btn .today {
  font-size: 3.2rem;
}
.calendar_box .date_area.type_btn .right.btn_box {
  gap: 0.5rem;
}
.calendar_box .date_area.type_btn .right.btn_box .btn {
  min-width: 10rem;
}
.calendar_box .date_area.type_btn .right.btn_box .btn.btn_type {
  min-width: 4.5rem;
}
.calendar_box .date_area.type_btn .right.btn_box .btn.btn_type.active {
  background: #39A5CE;
  color: #fff;
  border-color: #39A5CE;
}
.calendar_box .calendar_ul .week {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 1px solid #eee;
}
.calendar_box .calendar_ul .week > li {
  flex: none;
  width: 14.3%;
  padding: 1rem 0;
  position: relative;
}
.calendar_box .calendar_ul .week.title {
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
}
.calendar_box .calendar_ul .week.title > li {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.calendar_box .calendar_ul .week .sun {
  color: #ff0000;
}
.calendar_box .calendar_ul .week .sat {
  color: #3c1cca;
}
.calendar_box .calendar_ul .day {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  border-radius: 100%;
  margin: 0 auto;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: 0.2s;
}
.calendar_box .calendar_ul .day.select {
  border-color: #39A5CE;
}
.calendar_box .calendar_ul .day.today {
  background-color: #39A5CE;
  color: #fff;
}
.calendar_box .calendar_ul .day.today.select {
  background-color: rgba(24, 172, 179, 0.3);
  color: inherit;
}
.calendar_box .calendar_ul .day.end {
  background: #DEE2EA;
  cursor: default;
  pointer-events: none;
}
.calendar_box .calendar_ul a.day {
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .calendar_box .calendar_ul a.day:not(.end):hover {
    border-color: #39A5CE;
  }
}
.calendar_box .calendar_ul .holiday {
  font-size: 1.2rem;
  margin: 0.2rem 0 -0.5rem;
  text-align: center;
  display: block;
  font-weight: 500;
  color: #ff0000;
  word-break: break-all;
}
.calendar_box .calendar_ul li:has(.holiday) .day {
  color: #ff0000;
}

/* 완료 */
.complete_box {
  padding: 6rem 2rem;
  word-break: keep-all;
  word-wrap: break-word;
}
.complete_box .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 15.6rem;
  height: 15.6rem;
  margin: 0 auto 4rem;
  background: #F6F9FF;
  border-radius: 100%;
}
.complete_box strong {
  font-size: 3.6rem;
  font-weight: 700;
}
.complete_box p {
  margin-top: 3.2rem;
  font-size: 1.8rem;
  color: #555;
}
.complete_box .form_input {
  margin: 0 auto;
}

/* Form 개인정보 수집 */
.privacy_agree .cont {
  overflow: hidden;
  margin-top: 2.4rem;
  border: 1px solid #CED6DC;
  padding: 4rem;
  border-radius: 1.6rem;
}
.privacy_agree .cont .inner {
  overflow-y: auto;
  max-height: 32rem;
}
.privacy_agree .cont .inner::-webkit-scrollbar-track {
  background-color: #EBEDF1;
  border-radius: 0;
}
.privacy_agree .cont .inner::-webkit-scrollbar {
  width: 5px;
}
.privacy_agree .cont .inner::-webkit-scrollbar-thumb {
  background-color: #A3A3A3;
  border-radius: 0;
}
.privacy_agree .agree_form {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.privacy_agree .agree_form .form_box {
  margin-left: auto;
}

/* 인증서 로그인 */
#sub_wrap:has(.login_box) .contents_nav::before {
  display: none;
}

.login_box {
  padding: 8rem;
  border: 1px solid #CED6DC;
  border-radius: 1.6rem;
}
.login_box ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
.login_box ul li {
  flex: 1;
  max-width: 35rem;
}
.login_box ul li .btn {
  height: 23rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 1.6rem;
  color: #fff;
  background: #255CC8;
  transition: 0.3s;
}
.login_box ul li .btn em {
  font-size: 2rem;
}
@media screen and (min-width: 1025px) {
  .login_box ul li .btn:hover {
    filter: brightness(120%);
  }
}
.login_box ul li .small_btn {
  display: inline-block;
  margin-top: 2.4rem;
  padding-right: 3rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  font-size: 1.6rem;
  position: relative;
}
.login_box ul li .small_btn::after {
  content: "";
  position: absolute;
  left: -0.5rem;
  bottom: -0.5rem;
  width: 0;
  border-bottom: 1px solid #000;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .login_box ul li .small_btn:hover::after {
    width: 100%;
  }
}
.login_box ul li:nth-child(2) .btn {
  background: #1A3567;
}
.login_box ul li:nth-child(3) .btn {
  background: #4E2E93;
}
.login_box ul li:nth-child(4) .btn {
  background: #A1118E;
}
.login_box ul li span {
  display: block;
  margin-top: 2.4rem;
  color: #555;
}

/* 로딩 모달 */
#loading_modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
#loading_modal .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#loading_modal .spinner {
  width: 14.4px;
  height: 14.4px;
  border-radius: 14.4px;
  animation: spinner_lotate 0.8s infinite linear;
  box-shadow: 36px 0px 0 0 rgba(244, 123, 30, 0.2), 29.2px 21.2px 0 0 rgba(244, 123, 30, 0.4), 11.16px 34.2px 0 0 rgba(244, 123, 30, 0.6), -11.16px 34.2px 0 0 rgba(244, 123, 30, 0.8), -29.2px 21.2px 0 0 #f47b1e;
}
@keyframes spinner_lotate {
  to {
    transform: rotate(360deg);
  }
}

/*-------------------------------------------------

Responsive

-------------------------------------------------*/
/* Media Query */
@media (max-width: 1280px) {
  .board_view .contents .image_slide .detail {
    padding: 3rem 0;
  }
  .board_view .contents .image_slide .thumb {
    gap: 1rem;
    padding: 0;
  }
  .gallery_list ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .login_box {
    padding: 4rem;
  }
  .login_box ul li .btn {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  input.form_input {
    width: 100%;
  }
  .form_select {
    width: 100%;
  }
  .form_list_select .btn_open {
    width: 100%;
  }
  .form_file_upload input.form_input[type=file] {
    flex: 1;
  }
  .form_file_upload label {
    width: 9rem;
    font-size: 1.4rem;
    padding: 0;
  }
  .board_info:has(.cate) {
    margin-top: -1.5rem;
  }
  .board_info .page {
    display: none;
  }
  .board_info form, .board_info .form {
    margin-left: 0;
    flex: 1;
  }
  .board_info .form {
    width: 100%;
    padding: 0;
    gap: 1rem 0;
    flex-wrap: wrap;
  }
  .board_info .form .form_select {
    display: none;
  }
  .board_info .form .form_select.cate {
    display: block;
    width: calc(50% - 1rem);
    margin-right: 1rem;
    flex: none;
  }
  .board_info .form .form_select.area {
    display: block;
    width: 50%;
    flex: none;
  }
  .board_info .form input.form_input {
    width: calc(100% - 4.8rem);
    padding: 0 1rem;
    border-radius: 0;
  }
  .board_info .form .btn {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 0;
  }
  .board_info:has(.cate_select) {
    padding-top: 21rem;
  }
  .board_info:has(.cate_select) .cate_select {
    gap: 1rem;
    padding: 3rem 2rem;
  }
  .board_info:has(.cate_select) .cate_select .category {
    gap: 1rem;
  }
  .board_info:has(.cate_select) .cate_select .code_name {
    font-size: 1.5rem;
  }
  .board_info:has(.cate_select) .cate_select .radio_box {
    gap: 0.5rem;
  }
  .board_info:has(.cate_select) .cate_select .radio_box .form_radio_box {
    flex: 1;
  }
  .board_info:has(.cate_select) .cate_select .radio_box .form_radio_box label {
    min-width: 14rem;
    font-size: 1.4rem;
  }
  .board_view h2.title {
    padding: 3rem 1rem;
    font-size: 2.4rem;
  }
  .board_view .info {
    flex-wrap: wrap;
    gap: 1rem 3rem;
    padding: 2rem 1rem;
    font-size: 1.4rem;
  }
  .board_view .info li + li::before {
    display: none;
  }
  .board_view .contents {
    font-size: 1.6rem;
  }
  .board_view .file {
    flex-direction: column;
  }
  .board_view .file .title {
    margin-bottom: 1rem;
  }
  .board_view .file .list {
    width: 100%;
  }
  .board_view .file .list li {
    flex-wrap: wrap;
    font-size: 1.4rem;
  }
  .board_comment {
    padding: 3rem 0;
  }
  .board_comment .form .length {
    right: 10rem;
    font-size: 1.3rem;
  }
  .board_comment .form .btn_box .btn {
    min-width: 8rem;
  }
  .board_comment .list ul li {
    padding: 3rem 2rem;
  }
  .board_comment .list ul li .text {
    font-size: 1.4rem;
  }
  .board_answer .top {
    flex-wrap: wrap;
  }
  .board_answer .contents {
    padding: 3rem 2rem;
  }
  .board_prevnext li {
    font-size: 1.4rem;
  }
  .board_prevnext li .txt {
    width: 8rem;
  }
  .board_form tr {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem 0;
  }
  .board_form th, .board_form td {
    padding: 0;
    width: 100%;
  }
  .board_form th {
    padding-left: 0;
    margin-bottom: 1rem;
  }
  .board_form td.row_box {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .board_form td.row_box .empha_txt {
    flex: none;
    width: 100%;
  }
  .board_form td.row_box.email .form_select {
    width: inherit;
  }
  .board_form td.row_box.address .btn_box .btn {
    min-width: 9rem;
    font-size: 1.4rem;
  }
  .board_form td.row_box.address input.form_input.wd100 {
    width: 100% !important;
    flex: none !important;
  }
  .board_form input.form_input {
    width: 100% !important;
    flex: 1 !important;
  }
  .board_form .file_active td {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  .board_form .file_active .btn_delete::before {
    content: "\eb97";
    font-family: "remixicon";
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .board_form .view_file li {
    flex-direction: column;
    font-size: 1.4rem;
  }
  .board_form .view_file .btn_box {
    margin: 0 auto;
  }
  .board_form .captcha {
    flex-wrap: wrap;
  }
  .board_form .captcha input.form_input {
    width: 100%;
    flex: none !important;
  }
  .board_list thead, .board_list colgroup {
    display: none;
  }
  .board_list tbody tr {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem 0.5rem;
    width: 100%;
    padding: 1.5rem 1rem;
    position: relative;
  }
  .board_list tbody tr.notice {
    background: #F4FAFD;
  }
  .board_list tbody td {
    padding: 0;
    overflow: hidden;
    font-size: 1.4rem;
  }
  .board_list tbody td::before {
    font-family: "remixicon";
    margin-right: 0.5rem;
    font-weight: 600;
  }
  .board_list tbody td.number {
    display: none;
  }
  .board_list tbody td.category {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 2.5rem;
    border: 1px solid #CED6DC;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.3rem;
    box-sizing: border-box;
    background: #fff;
    letter-spacing: -1px;
  }
  .board_list tbody td.subject {
    padding: 0;
    width: 100%;
  }
  .board_list tbody td.subject a {
    align-items: flex-start;
  }
  .board_list tbody td.subject a .title {
    font-size: 1.6rem;
    color: #151515;
    font-weight: 700;
    text-overflow: inherit;
    white-space: wrap;
  }
  .board_list tbody td.name {
    font-weight: 700;
  }
  .board_list tbody td.date {
    margin-left: 0;
  }
  .board_list tbody td.date::before {
    content: "\eb27";
  }
  .board_list tbody td.hit {
    margin-left: 1rem;
  }
  .board_list tbody td.hit::before {
    content: "\ecb5";
  }
  .board_list tbody td.file {
    display: none;
  }
  .board_list tbody td.state {
    position: absolute;
    right: 1rem;
    bottom: 1.5rem;
  }
  .board_list tbody td .state {
    width: 8rem;
    padding: 0.3rem 0;
  }
  .board_list:has(td.category) td.subject {
    width: calc(100% - 5rem);
  }
  .board_list .no_data {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
  }
  .board_list.return_list tbody td {
    text-align: left;
  }
  .board_list.return_list tbody td.number {
    display: none;
  }
  .board_list.return_list tbody td.area {
    color: #fff;
    background: #61A015;
    border-radius: 20px;
    padding: 0 6px;
  }
  .board_list.return_list tbody td.cate {
    color: #fff;
    background: #39A5CE;
    border-radius: 20px;
    padding: 0 6px;
  }
  .board_list.return_list tbody td.cate.rt {
    background: #F28123;
  }
  .board_list.return_list tbody td.name {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
  }
  .board_list.return_list tbody td.address {
    margin: 0;
    width: 100%;
    color: #333;
    font-weight: 600;
  }
  .board_list.return_list tbody td.open {
    width: 100%;
  }
  .board_list.return_list tbody td.open::before {
    content: "운영시간";
    font-family: "NanumSquareNeo";
    font-weight: 600;
  }
  .board_list.return_list tbody td.open.eng::before {
    content: "Open Hours";
    font-family: "titillium";
  }
  .faq_list li .icon {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    font-size: 1.5rem;
  }
  .faq_list li .question {
    flex-wrap: wrap;
    padding: 1.6rem 0.5rem;
    position: relative;
  }
  .faq_list li .question .cate {
    font-size: 1.4rem;
  }
  .faq_list li .question .title {
    flex: none;
    width: 100%;
    margin-top: 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    padding-right: 3rem;
    word-break: keep-all;
    word-wrap: break-word;
  }
  .faq_list li .question::after {
    position: absolute;
    right: 1rem;
    top: calc(50% - 1.5rem);
    height: 3rem;
  }
  .faq_list li .answer .inner {
    padding: 1.6rem 0.5rem;
  }
  .gallery_list ul {
    gap: 3rem 2rem;
  }
  .gallery_list li a {
    padding: 2rem;
  }
  .gallery_list.webzine ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .gallery_list.webzine .thumb {
    width: 20rem;
  }
  .gallery_list.webzine .txt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    height: 8.5rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    word-break: keep-all;
    font-size: 1.4rem;
  }
  .complete_box {
    padding: 4rem 2rem;
  }
  .complete_box .icon {
    width: 13rem;
    height: 13rem;
    margin: 0 auto 3rem;
  }
  .complete_box strong {
    font-size: 2.8rem;
  }
  .complete_box p {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
  .login_box {
    padding: 2rem;
  }
  .login_box ul {
    gap: 1.6rem;
  }
  .login_box ul li .btn {
    height: 18rem;
    width: 100%;
  }
  .login_box ul li .btn em {
    font-size: 1.6rem;
  }
}
@media (max-width: 800px) {
  .board_view .file .list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .board_view .file .list li .btn_box {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .form_radio input[type=radio] + label {
    padding-left: 2.5rem;
  }
  .form_radio input[type=radio] + label::before {
    top: -0.3rem;
    width: 2rem;
    height: 2rem;
  }
  .form_check input[type=checkbox] + label {
    padding-left: 2.5rem;
  }
  .form_check input[type=checkbox] + label::before {
    top: -0.3rem;
    width: 2rem;
    height: 2rem;
  }
  .board_info:has(.cate_select) {
    padding-top: 0;
  }
  .board_info:has(.cate_select) .cate_select {
    padding: 0;
    border: none;
    position: static;
    margin-bottom: 3rem;
  }
  .board_info:has(.cate_select) .cate_select .category {
    flex: 1;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .board_info:has(.cate_select) .cate_select .code_name {
    width: 100%;
    position: relative;
  }
  .board_info:has(.cate_select) .cate_select .code_name::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: calc(50% - 1rem);
    width: 2rem;
    height: 2rem;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(90deg);
  }
  .board_info:has(.cate_select) .cate_select .code_name.open::after {
    transform: rotate(270deg);
  }
  .board_info:has(.cate_select) .cate_select .radio_box {
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
  }
  .board_info:has(.cate_select) .cate_select .radio_box .form_radio_box {
    flex: none;
    width: calc(50% - 0.5rem);
  }
  .board_info:has(.cate_select) .cate_select .radio_box .form_radio_box label {
    min-width: 7rem;
    width: 100%;
    font-size: 1.4rem;
  }
  .board_pager a {
    flex: none;
    width: 3.8rem;
    height: 3.8rem;
  }
  .board_pager a:not(.nav):not(.on, .total) {
    display: none;
  }
  .board_pager a:not(.nav).on {
    background: none;
    width: inherit;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .board_pager a:not(.nav).on::after {
    content: "/";
    margin: 0 0.5rem 0 1rem;
    transform: scale(0.8);
  }
  .board_pager a.prev {
    margin-right: 2rem;
  }
  .board_pager a.next {
    margin-left: 2rem;
  }
  .board_pager a.total {
    display: flex;
    width: inherit;
  }
  .board_form .address {
    position: relative;
  }
  .board_form .address .btn_box .map {
    position: absolute;
    transform: translate(0, -100%);
    right: 0;
    top: -0.5rem;
    z-index: 0;
  }
  .board_form .address .btn_box .map .btn {
    height: 28px;
    min-height: inherit;
    font-size: 1.3rem;
    padding: 0.7px 1rem 0;
  }
  .board_form .address .btn_box .map em {
    display: none;
  }
  .faq_list ul li .question .title {
    font-size: 1.6rem;
  }
  .faq_list ul li .answer {
    font-size: 1.4rem;
  }
  .gallery_list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .privacy_agree .cont {
    padding: 3rem 2rem;
  }
  .privacy_agree .cont .inner {
    max-height: 28rem;
  }
  .login_box ul {
    display: flex;
    flex-direction: column;
  }
  .login_box ul li {
    width: 100%;
    max-width: 100%;
  }
  .login_box ul li .btn {
    width: 100%;
    height: inherit;
    min-height: 10rem;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 30%;
  }
  .login_box ul li .btn em {
    font-size: 1.8rem;
  }
  .login_box ul li .btn i {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 7rem;
  }
}
@media (max-width: 620px) {
  .gallery_list li a {
    padding: 1.5rem;
  }
  .gallery_list.webzine .thumb {
    width: 15rem;
  }
  .gallery_list.webzine .desc .title {
    margin-bottom: 1rem;
  }
  .gallery_list.webzine .txt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    height: 6.5rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    word-break: keep-all;
  }
  .login_box ul {
    gap: 1rem;
  }
  .login_box ul li .btn {
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0;
    min-width: inherit;
    word-break: keep-all;
    word-wrap: break-word;
    min-height: 8rem;
  }
  .login_box ul li .btn i {
    transform: scale(0.7);
  }
  .login_box ul li .btn em {
    font-size: 1.6rem;
    text-align: left;
  }
  .login_box ul li .small_btn {
    margin-top: 1rem;
  }
}
@media (max-width: 480px) {
  .board_form .captcha {
    gap: 0.5rem;
  }
  .board_form .captcha .btn {
    flex: 1;
    padding: 0 0.5rem;
    font-size: 1.3rem;
  }
  .board_form .captcha .btn::after {
    margin-left: auto;
  }
  .board_list tbody tr {
    padding: 1.5rem 0.3rem;
  }
  .gallery_list ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .gallery_list li a .desc .title .subject {
    font-size: 1.6rem;
  }
  .gallery_list.webzine ul li a {
    gap: 1rem;
  }
  .gallery_list.webzine .thumb {
    width: 10rem;
  }
  .gallery_list.webzine .desc .title {
    margin-bottom: 1rem;
    -webkit-line-clamp: 1;
    max-height: 2rem;
  }
  .gallery_list.webzine .txt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    height: 4rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    word-break: keep-all;
  }
  .complete_box strong {
    font-size: 2.4rem;
  }
}