@charset "UTF-8";
/*  */
/* font */
/* 범위 : woff2 < woff < opentype(otf) */
/* 용량 : woff2 < woff < opentype(otf) */
/* font 범위 지정 unicode-range: U+AC00-D7A3; */
@font-face {
  font-family: "GmarketSans";
  src: url("../../fonts/user/GmarketSansLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSans";
  src: url("../../fonts/user/GmarketSansMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSans";
  src: url("../../fonts/user/GmarketSansBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Yeongdeok_Snow_Crab";
  src: url("../../fonts/user/Yeongdeok_Snow_Crab.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* //font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  border: 0;
  vertical-align: middle;
}

ul, ol, li {
  list-style: none;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=search] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  outline-style: none;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder {
  opacity: 0.8;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-cancel-button {
  display: none;
}

button,
input[type=submit],
input[type=button] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

textarea {
  resize: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}

select {
  appearance: none;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* animation */
@keyframes modalFadeIn {
  0% {
    left: 100%;
    opacity: 0;
  }
  10% {
    left: 0;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes modalFadeOut {
  0% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 0;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    z-index: 0;
    visibility: hidden;
    display: none;
  }
}
@keyframes dropdownSlideUp {
  0% {
    transform: translate3d(calc(var(--center) * 1%), calc(var(--tailH) * 1px + 0%), 0) rotateX(0deg);
    opacity: 1;
  }
  90% {
    transform: translate3d(calc(var(--center) * 1%), 25%, 0) rotateX(0deg);
    opacity: 0;
  }
  100% {
    transform: translate3d(calc(var(--center) * 1%), 25%, 0) rotateX(0deg);
    opacity: 0;
  }
}
@keyframes dropdownSlideDown {
  0% {
    transform: translate3d(calc(var(--center) * 1%), 25%, 0) rotateX(0deg);
    opacity: 0;
  }
  10% {
    transform: translate3d(calc(var(--center) * 1%), 25%, 0) rotateX(0deg);
    opacity: 0;
  }
  100% {
    transform: translate3d(calc(var(--center) * 1%), calc(var(--tailH) * 1px + 0%), 0) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes dropdownFadeOff {
  0% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
@keyframes dropdownFadeOn {
  0% {
    opacity: 0;
    visibility: hidden;
    display: flex;
  }
  10% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes moveLeftRight {
  0% {
    margin-left: 0;
    margin-right: 0;
  }
  50% {
    margin-left: 5px;
    margin-right: -5px;
  }
  100% {
    margin-left: 0;
    margin-right: 0;
  }
}
@keyframes moveUpDown {
  0% {
    margin-up: 0;
    margin-bottom: 0;
  }
  50% {
    margin-top: 10rem;
    margin-bottom: -10rem;
  }
  100% {
    margin-up: 0;
    margin-bottom: 0;
  }
}
@keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveDeco {
  0% {
    transform: rotate(0deg) translateY(150%) rotate(0deg);
  }
  76% {
    transform: rotate(180deg) translateY(150%) rotate(-180deg);
  }
  100% {
    transform: rotate(360deg) translateY(150%) rotate(-360deg);
  }
}
/* //animation */
/* projesct css setting */
html {
  /* 영어+숫자+특수문자, 한글, 나머지 */
  font-family: "GmarketSans", sans-serif;
  font-size: 0.0520833333vw;
  font-size: 10px;
  overscroll-behavior: contain;
  touch-action: pan-x;
}
html.seal {
  /* modal 시 뒷배경 움직임 방어용 */
  overflow: hidden;
  overscroll-behavior: contain;
}

body {
  font-size: 16px;
  color: #231915;
}
@media only screen and (max-width: 542px) {
  body {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
  }
}
body.seal {
  /* modal 시 뒷배경 움직임 방어용 */
  overflow: hidden;
  overscroll-behavior: contain;
}

input {
  font-family: "GmarketSans", sans-serif;
  font-size: 16px;
  letter-spacing: -0.8px;
}
input::placeholder {
  font-family: "GmarketSans", sans-serif;
  font-size: 16;
  letter-spacing: -0.8px;
}

textarea {
  font-family: "GmarketSans", sans-serif;
  font-size: 15px;
  line-height: 22.4px;
}

button {
  font-family: "GmarketSans", sans-serif;
  font-size: 16px;
  letter-spacing: -0.8px;
  color: #231915;
}

select {
  font-family: "GmarketSans", sans-serif;
  font-size: 16px;
  letter-spacing: -0.8px;
  color: #231915;
}
select:invalid {
  color: rgba(35, 25, 21, 0.6);
}

address {
  font-style: normal;
}

@media only print {
  section {
    width: inherit;
  }
}

table th, table td {
  font-family: "GmarketSans", sans-serif;
  font-size: 16;
  letter-spacing: -0.8px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

.wrap {
  position: relative;
}
.layout {
  position: relative;
  width: 904px;
  margin: 0 auto;
}
@media only screen and (max-width: 1104px) {
  .layout {
    padding: 0 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 542px) {
  .layout {
    padding: 0 15px;
  }
}
.layout.align-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  margin: unset;
}

.main {
  grid-column: 1/-1;
  position: relative;
  background-color: #fff;
  padding-top: 80px;
}

.logo {
  display: block;
}

.flex {
  display: flex;
}

.assi {
  position: relative;
  display: flex;
  color: #004CBD;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi {
    align-items: flex-start;
    font-size: 13px;
    line-height: 15px;
  }
}
.assi .icon {
  position: relative;
  display: block;
  margin: 4px 4px 0 0;
}
@media only screen and (max-width: 542px) {
  .assi .icon {
    margin-top: 2px;
  }
}
.assi .icon img {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  font-size: 0;
  line-height: 0;
  object-fit: contain;
}
@media only screen and (max-width: 542px) {
  .assi .icon img {
    width: 13px;
    height: 13px;
  }
}
.assi .txt {
  color: #004CBD;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi .txt {
    font-size: 13px;
    line-height: 15px;
  }
}
.assi .txt > * {
  display: block;
  color: #004CBD;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi .txt > * {
    font-size: 13px;
    line-height: 15px;
  }
}
.assi .txt a {
  color: #004CBD;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi .txt a {
    font-size: 13px;
    line-height: 15px;
  }
}
.assi.gray {
  position: relative;
  display: flex;
  color: gray;
  color: #666;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi.gray {
    align-items: flex-start;
    font-size: 13px;
    line-height: 15px;
  }
}
.assi.gray .icon {
  position: relative;
  display: block;
  margin: 4px 4px 0 0;
}
@media only screen and (max-width: 542px) {
  .assi.gray .icon {
    margin-top: 2px;
  }
}
.assi.gray .icon img {
  content: url("/base_jsp_2024/images/user/pages/cultural/cultural_intro_precautions_icon_img01.svg");
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  font-size: 0;
  line-height: 0;
  object-fit: contain;
}
@media only screen and (max-width: 542px) {
  .assi.gray .icon img {
    width: 13px;
    height: 13px;
  }
}
.assi.gray .txt {
  color: gray;
  color: #666;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi.gray .txt {
    font-size: 13px;
    line-height: 15px;
  }
}
.assi.gray .txt > * {
  display: block;
  color: gray;
  color: #666;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi.gray .txt > * {
    font-size: 13px;
    line-height: 15px;
  }
}
.assi.gray .txt a {
  color: gray;
  color: #666;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (max-width: 542px) {
  .assi.gray .txt a {
    font-size: 13px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 824px) {
  .table_wrap {
    margin: 0 -15px;
    padding: 0 15px;
  }
}

.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-container {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bg-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-wrap + .bg-wrap {
  position: absolute;
  left: 0;
  top: 0;
}

.dropdown {
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  transform: translate3d(calc(var(--center) * 1%), 25%, 0) rotateX(0deg);
  display: block;
  border-radius: 5px;
  border: 1px solid #231915;
  padding: 10px 2px;
  opacity: 0;
  pointer-events: none;
  z-index: 39;
}
.dropdown.active {
  pointer-events: all;
  animation: dropdownSlideDown 0.3s ease both;
  -webkit-animation: dropdownSlideDown 0.3s ease both;
  -moz-animation: dropdownSlideDown 0.3s ease;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
}
@media only screen and (max-width: 362px) {
  .dropdown.active {
    animation: dropdownFadeOn 0.3s ease both;
    -webkit-animation: dropdownFadeOn 0.3s ease both;
    -moz-animation: dropdownFadeOn 0.3s ease;
    animation-play-state: running;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
  }
}
.dropdown.close {
  animation: dropdownSlideUp 0.3s ease both;
  -webkit-animation: dropdownSlideUp 0.3s ease both;
  -moz-animation: dropdownSlideUp 0.3s ease;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
}
@media only screen and (max-width: 362px) {
  .dropdown.close {
    animation: dropdownFadeOff 0.3s ease both;
    -webkit-animation: dropdownFadeOff 0.3s ease both;
    -moz-animation: dropdownFadeOff 0.3s ease;
    animation-play-state: running;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
  }
}
.dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  display: block;
}
.dropdown-wrap {
  position: relative;
}
.dropdown-btn-close {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  padding: 5px;
}
.dropdown-btn-close .icon {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
.dropdown-btn-close .icon img {
  width: 100%;
  height: 100%;
}
/* projesct css setting */
.board {
  display: grid;
  grid-template-columns: 1fr;
  transition: all 0.3s;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=normal] .board-col {
    font-size: 14px;
  }
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=normal] .board-col[data-col-idx=num] {
    display: none;
  }
}
.board[data-type=list][data-list-type=normal] .board-col[data-col-idx=tit] {
  justify-content: flex-start;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=normal] .board-col[data-col-idx=file] {
    display: none;
  }
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=normal] .board-col[data-col-idx=view] {
    display: none;
  }
}
.board[data-type=list][data-list-type=normal] .board-cols {
  display: grid;
  grid-template-columns: 80px 1fr 50px 0.3fr 0.4fr 0.3fr;
  grid-template-columns: 80px 1fr 0.3fr 0.4fr 0.3fr;
  gap: 5px;
  height: 100%;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=normal] .board-cols {
    grid-template-columns: 1fr 0.3fr 0.4fr;
  }
}
.board[data-type=list][data-list-type=dl] .board-col.dt {
  padding: 60px 0;
  font-weight: 700;
  color: #333;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=dl] .board-col.dt {
    padding: 33px 0;
    font-size: 15px;
  }
}
.board[data-type=list][data-list-type=dl] .board-col.dd {
  justify-content: flex-start;
}
.board[data-type=list][data-list-type=dl] .board-cols {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 5px;
  height: 100%;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=dl] .board-cols {
    grid-template-columns: 100px 1fr;
  }
}
.board[data-type=list][data-list-type=form] {
  padding-top: 20px;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] {
    padding-top: 10px;
  }
}
.board[data-type=list][data-list-type=form] .board-card {
  border-bottom: 1px solid transparent;
  padding: 5px 20px;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card {
    padding: 10px 0px;
  }
}
.board[data-type=list][data-list-type=form] .board-card.tit .input-wrap {
  width: 100%;
  max-width: 600px;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap {
  width: 100%;
  height: 160px;
  padding: 23px 20px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.contract .input-wrap {
    padding: 13px;
  }
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar {
  width: 0rem;
  background: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar-track-piece {
  background: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar-track {
  border-radius: 800rem;
  background-color: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar-thumb {
  border-radius: 800rem;
  background-color: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar {
  width: 8rem;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar-track {
  box-shadow: none;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt {
    scrollbar-color: transparent transparent;
    scrollbar-width: none;
  }
  .board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt::-webkit-scrollbar {
    display: none;
  }
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt > ul > li {
  padding-top: 20px;
}
.board[data-type=list][data-list-type=form] .board-card.contract .input-wrap .txt > ul ~ p {
  padding-top: 20px;
}
.board[data-type=list][data-list-type=form] .board-card.contract .board-col {
  align-items: flex-start;
}
.board[data-type=list][data-list-type=form] .board-card.address .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.board[data-type=list][data-list-type=form] .board-card.address .list > li {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.address .list > li {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.address .list > li:first-child {
    flex-wrap: unset;
  }
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.address .list > li:first-child .input-wrap {
    flex: 1;
    width: 0;
  }
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.address .list > li:first-child .btn-address {
    flex: 0 0 102px;
    width: 0;
  }
}
.board[data-type=list][data-list-type=form] .board-card.address .list > li:not(:first-child) .input-wrap {
  width: 100%;
  max-width: 600px;
}
.board[data-type=list][data-list-type=form] .board-card.address .board-col {
  align-items: flex-start;
}
.board[data-type=list][data-list-type=form] .board-card.category .input-wrap {
  width: 100%;
  max-width: 175px;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.category .input-wrap {
    max-width: unset;
  }
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap {
  width: 100%;
  height: 320px;
  padding: 23px 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-card.cont .input-wrap {
    padding: 13px;
  }
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea {
  width: 100%;
  min-height: 100%;
  color: #696C6E;
  overflow-y: auto;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea::-webkit-scrollbar {
  width: 0rem;
  background: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea::-webkit-scrollbar-track-piece {
  background: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea::-webkit-scrollbar-track {
  border-radius: 800rem;
  background-color: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea::-webkit-scrollbar-thumb {
  border-radius: 800rem;
  background-color: transparent;
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea::-webkit-scrollbar {
  width: 8rem;
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.board[data-type=list][data-list-type=form] .board-card.cont .input-wrap > textarea::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
}
.board[data-type=list][data-list-type=form] .board-card.cont .board-col {
  align-items: flex-start;
}
.board[data-type=list][data-list-type=form] .board-col.dt {
  justify-content: flex-start;
  font-weight: 700;
  color: #333;
  word-break: keep-all;
}
.board[data-type=list][data-list-type=form] .board-col.dd {
  justify-content: flex-start;
}
.board[data-type=list][data-list-type=form] .board-cols {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 5px;
  height: 100%;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list][data-list-type=form] .board-cols {
    grid-template-columns: 1fr;
  }
}
.board[data-type=list] .board-card {
  border-bottom: 1px solid #C0C9D4;
  padding: 5px 0;
}
@media only screen and (max-width: 542px) {
  .board[data-type=list] .board-card {
    padding: 10px 0;
  }
}
.board[data-type=list] .board-card.head {
  height: 40px;
  font-weight: 700;
}
.board[data-type=list] .board-card.head .board-col[data-col-idx=tit] {
  justify-content: center;
}
.board[data-type=list] .board-card[data-idx=empty] .board-col[data-col-idx=thumbnail] img {
  display: none;
}
.board[data-type=list] .board-card[data-idx=empty] .board-col[data-col-idx=tit] {
  grid-column: 1/-1;
  justify-content: center;
}
.board[data-type=list] .board-card[data-idx=empty] .board-col:not([data-col-idx=tit]) {
  display: none;
}
.board[data-type=list] .board-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.board[data-type=grid] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.board[data-type=grid][data-grid-type=normal] .board-card {
  border: 2px solid #ddd;
  padding: 15px 10px;
}
.board[data-type=grid][data-grid-type=normal] .board-col[data-col-idx=num] {
  display: none;
}
.board[data-type=grid][data-grid-type=normal] .board-col[data-col-idx=thumbnail] {
  aspect-ratio: 300/240;
  overflow: hidden;
}
.board[data-type=grid][data-grid-type=normal] .board-col[data-col-idx=thumbnail] img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  object-fit: cover;
  min-width: 360px;
  min-height: 288px;
  height: 100%;
}
.board[data-type=grid][data-grid-type=normal] .board-col[data-col-idx=tit] {
  margin-top: 10px;
  margin-bottom: 6px;
}
.board[data-type=grid] .board-card.head {
  display: none;
}
.board[data-type=detail] .board-card {
  border-bottom: 1px solid #C0C9D4;
  padding: 20px;
}
@media only screen and (max-width: 542px) {
  .board[data-type=detail] .board-card {
    padding: 15px 0;
  }
}
.board[data-type=detail] .board-card.tit {
  font-weight: 700;
}
.board[data-type=detail] .board-card.tit .board-col {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #333;
}
@media only screen and (max-width: 542px) {
  .board[data-type=detail] .board-card.tit .board-col {
    font-size: 18px;
  }
}
.board[data-type=detail] .board-card.cont {
  padding: 30px 20px;
}
@media only screen and (max-width: 542px) {
  .board[data-type=detail] .board-card.cont {
    padding: 15px 0;
  }
}
.board[data-type=detail] .board-col {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(51, 51, 51, 0.7);
}
@media only screen and (max-width: 542px) {
  .board[data-type=detail] .board-col {
    gap: 8px 15px;
  }
}
.board[data-type=detail] .dl-wrap dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 542px) {
  .board[data-type=detail] .dl-wrap dl {
    font-size: 13px;
  }
}
.board-wrap {
  position: relative;
}
.board-wrap:has(.board[data-type=list]) {
  border-top: 1px solid #004CBD;
}
.board-card {
  transition: all 0.3s;
}
.board-col {
  position: relative;
  color: #999;
  transition: all 0.3s;
}
.board-col[data-col-idx=tit] {
  color: #181C25;
  overflow: hidden;
}
.board-col[data-col-idx=tit] a, .board-col[data-col-idx=tit] p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-col > img {
  width: 100%;
}
.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 0;
}
@media only screen and (max-width: 542px) {
  .board-top {
    padding: 10px 0;
  }
}
.board-controller {
  display: flex;
  align-items: center;
  gap: 8px;
}
.board-controller .icon {
  font-size: 18px;
}

@media only screen and (max-width: 633px) {
  body {
    font-size: 16px;
  }
}

.wrap {
  background-color: #E6F0F8;
  padding: 40px 0 60px;
  min-height: calc(var(--vh, 1vh) * 100);
  scrollbar-color: transparent transparent;
  scrollbar-width: none;
}
.wrap::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 633px) {
  .wrap {
    padding: 15px 0 50px;
  }
}
.wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  min-width: 80px;
  background: url("../../images/icon-bottom-black.svg") calc(100% - 10px) center no-repeat;
  background-size: 14px;
}
@media only screen and (max-width: 633px) {
  .wrap select {
    font-size: 15px;
    background-size: 12px;
  }
}
.wrap-guide .bottom-container {
  padding-top: 40px;
}
@media only screen and (max-width: 633px) {
  .wrap-guide .bottom-container {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-password .guide-sect.sect-top .top-cont {
    display: none;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-password .top-info {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-password .top-imgs {
    grid-row: 1/2;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-password .top-imgs .btns {
    justify-content: flex-end;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-detail .guide-sect.sect-top .top-cont {
    display: none;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-detail .top-info {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-detail .top-imgs {
    grid-row: 1/2;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-detail .top-imgs .btns {
    justify-content: flex-end;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-form .guide-sect.sect-top .top-cont {
    display: none;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-form .top-info {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-form .top-imgs {
    grid-row: 1/2;
  }
}
@media only screen and (max-width: 633px) {
  .wrap-form .top-imgs .btns {
    justify-content: flex-end;
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 542px) {
  .guide-sect.sect-top .layout {
    width: 100%;
    padding: 0 15px;
  }
}
.guide-sect.sect-board {
  padding-top: 40px;
}
@media only screen and (max-width: 633px) {
  .guide-sect.sect-board {
    padding-top: 12px;
  }
}
.top-container {
  display: grid;
  grid-template-columns: 1fr auto;
}
@media only screen and (max-width: 916px) {
  .top-container {
    gap: 15px;
  }
}
.top-info {
  grid-column: 1/3;
  grid-row: 1/2;
}
.top-tit {
  font-family: "Yeongdeok_Snow_Crab", "GmarketSans", sans-serif;
  font-size: 31px;
  letter-spacing: -1.2px;
  color: #333;
  word-break: keep-all;
}
@media only screen and (max-width: 633px) {
  .top-tit {
    font-size: 20px;
  }
}
.top-tit strong {
  color: #0051CC;
  font-weight: 400;
}
.top-cont {
  letter-spacing: -0.64px;
  color: #696C6E;
  line-height: 22.4px;
  word-break: keep-all;
  padding-top: 23px;
  max-width: calc(100% - 499px - 60px);
}
@media only screen and (max-width: 916px) {
  .top-cont {
    max-width: unset;
    padding-top: 10px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 633px) {
  .top-cont {
    font-size: 13px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 916px) {
  .top-cont p {
    display: inline;
    line-height: 1.3;
  }
}
.top-cont .point {
  font-weight: 700;
  letter-spacing: -0.64px;
  text-decoration: underline;
  color: #333;
}
.top-img {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 916px) {
  .top-img {
    display: none;
  }
}
.top-img img {
  width: 100%;
  max-width: 499px;
}
.top-imgs {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 916px) {
  .top-imgs {
    grid-row: span 1;
  }
}
.top-imgs .btns {
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 30px;
}
@media only screen and (max-width: 916px) {
  .top-imgs .btns {
    justify-content: flex-start;
    gap: 5px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 633px) {
  .top-imgs .btns {
    padding-bottom: 20px;
  }
}

.bottom-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

/* board custom */
.board[data-type=list][data-list-type=normal] .board-card.head {
  height: 60px;
  padding: 0;
}
@media only screen and (max-width: 633px) {
  .board[data-type=list][data-list-type=normal] .board-card.head {
    display: none;
  }
}
.board[data-type=list][data-list-type=normal] .board-card.head .board-col {
  height: auto;
}
.board[data-type=list][data-list-type=normal] .board-col {
  height: 50px;
}
@media only screen and (max-width: 633px) {
  .board[data-type=list][data-list-type=normal] .board-col {
    justify-content: flex-start;
    height: auto;
  }
}
@media only screen and (max-width: 633px) {
  .board[data-type=list][data-list-type=normal] .board-col[data-col-idx=tit] {
    grid-column: 1/3;
    height: auto;
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.board[data-type=list][data-list-type=normal] .board-col[data-col-idx=tit] a {
  color: #333;
}
@media only screen and (max-width: 633px) {
  .board[data-type=list][data-list-type=normal] .board-col[data-col-idx=writer] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 633px) {
  .board[data-type=list][data-list-type=normal] .board-col[data-col-idx=date] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 633px) {
  .board[data-type=list][data-list-type=normal] .board-cols {
    grid-template-columns: auto 1fr;
    gap: 0 15px;
  }
}
@media only screen and (max-width: 633px) {
  .board[data-type=list][data-list-type=form] .input-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 633px) {
  .board[data-type=list] .board-card {
    padding: 10px 0;
  }
}
.board[data-type=list] .board-card.head .board-col {
  color: #333;
}
.board-wrap:has(.board[data-type=list]) {
  border-top: 2px solid #333;
}
.board-wrap:has(.board[data-type=detail]) {
  border-top: 2px solid #333;
}
.board-col[data-col-idx=tit] {
  color: rgba(51, 51, 51, 0.7);
}
.board-col[data-col-idx=tit] a {
  color: rgba(51, 51, 51, 0.7);
}
.board-top {
  align-items: flex-end;
  padding-top: 0px;
}
@media only screen and (max-width: 633px) {
  .board-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}
.board-total {
  color: rgba(51, 51, 51, 0.7);
}
.board-total-num {
  color: #0066E0;
}
.board-search {
  position: relative;
  border-radius: 800px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0px 30px 0px;
  max-width: 350px;
}
@media only screen and (max-width: 633px) {
  .board-search {
    width: 100%;
    height: 45px;
    gap: 10px;
    max-width: unset;
  }
}
.board-search .txt {
  width: 100%;
}
.board-search > .btn-search {
  width: 20px;
}
.board-search-cate {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}
.board-search-cate-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board-search-cate-wrap:has(select:focus) .icon {
  transform: rotate(180deg);
}
.board-search-cate-wrap .icon {
  transition: transform 0.3s;
}
.board-sect.sect-bottom {
  padding-top: 40px;
}
@media only screen and (max-width: 633px) {
  .board-sect.sect-bottom {
    padding-top: 15px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination > li {
  position: relative;
  width: 34px;
  aspect-ratio: 1/1;
  border-radius: 3px;
  border: 1px solid transparent;
  background-color: transparent;
}
.pagination > li.current {
  border-color: #0066E0;
  background-color: #0066E0;
}
.pagination > li.current a {
  color: #fff;
}
.pagination > li > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: #222;
  letter-spacing: 0;
}

/* board custom */
.selectC {
  position: relative;
}
.selectC .btn {
  width: 100%;
  min-width: 80px;
}
.selectC .btn.selectC-toggle {
  padding-right: 11px;
}
.selectC .btn.selectC-toggle .icon {
  position: absolute;
  right: 0;
  top: 43%;
  transform: translateY(-50%);
}
.selectC .btn.active::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.selectC-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}
.selectC-menu .btn {
  padding: 6px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.selectC-menu .btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.7);
}

/* button */
.btn {
  cursor: pointer;
  white-space: nowrap;
}
@media only screen and (max-width: 633px) {
  .btn {
    font-size: 15px;
  }
}
.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-round {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 800px;
  padding: 0 32px;
}
@media only screen and (max-width: 633px) {
  .btn-round {
    height: 45px;
  }
}
.btn-blue {
  background-color: #0066E0;
  color: #fff;
}
.btn-black {
  background-color: #333;
  color: #fff;
}
.btn-border-blue {
  border: 1px solid #0066E0;
  background-color: #FFFFFF99;
  color: #0066E0;
}
.btn-search {
  padding-bottom: 3px;
}
.btn-address {
  height: 50px;
  border-radius: 5px;
  font-weight: 500;
  padding: 0 20px;
}
@media only screen and (max-width: 633px) {
  .btn-address {
    height: 45px;
  }
}
.btn-download {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 144px;
  min-height: 34px;
  border-radius: 5px;
  background-color: #333333;
  padding: 0 10px;
}
@media only screen and (max-width: 1104px) {

}
@media only screen and (max-width: 633px) {
  .btn-download {
    min-width: 120px;
    min-height: 30px;
    padding: 0 8px 1px;
  }
}
.btn-download .txt {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #fff;
  text-transform: capitalize;
  padding-top: 1px;
  padding-top: 2px;
}
@media only screen and (max-width: 633px) {
  .btn-download .txt {
    font-size: 14px;
    font-size: 12px;
  }
}
.btn-download .icon {
  padding-bottom: 2px;
}
@media only screen and (max-width: 633px) {
  .btn-download .icon {
    width: 12px;
  }
}
.btn-download .icon > img {
  width: 100%;
}
.btn-download-multi .multi {
  display: none;
}

input[type=submit].btn {
  white-space: nowrap;
}
@media only screen and (max-width: 633px) {
  input[type=submit].btn {
    font-size: 15px;
  }
}
input[type=submit].btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
input[type=submit].btn-round {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 800px;
  padding: 0 32px;
}
@media only screen and (max-width: 633px) {
  input[type=submit].btn-round {
    height: 45px;
  }
}
input[type=submit].btn-blue {
  background-color: #0066E0;
  color: #fff;
}
input[type=submit].btn-black {
  background-color: #333;
  color: #fff;
}
input[type=submit].btn-border-blue {
  border: 1px solid #0066E0;
  background-color: #FFFFFF99;
  color: #0066E0;
}
input[type=submit].btn-search {
  padding-bottom: 3px;
}
input[type=submit].btn-address {
  height: 50px;
  border-radius: 5px;
  font-weight: 500;
  padding: 0 20px;
}
@media only screen and (max-width: 633px) {
  input[type=submit].btn-address {
    height: 45px;
  }
}

/* button */
/* form */
legend, fieldset {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}

@media only screen and (max-width: 633px) {
  body {
    font-size: 15px;
  }
}

@media only screen and (max-width: 633px) {
  select {
    font-size: 15px;
  }
}

.input-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 5px;
  background-color: #fff;
  padding: 0 17px;
}
@media only screen and (max-width: 633px) {
  .input-wrap {
    height: 45px;
    padding: 0 13px;
  }
}
.input-wrap > input {
  width: 100%;
}

/* form */