@charset "utf-8";

body {
  position: relative;
}

/* header */
.inner {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.ellipsis {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 85px;
  display: flex;
  align-items: center;
}
header.open,
header.dark {
  background: #fff;
}
header .inner {
  display: flex;
}
header .inner > button {
  margin-left: auto;
}
header .inner > button.gnb_close_btn {
  display: none;
}
header.open .inner > button.gnb_close_btn {
  display: block;
}
header.open .gnb_menu_btn {
  display: none;
}
.gnb {
  display: flex;
  gap: 80px;
  align-items: center;
}
.gnb > ul {
  display: flex;
  gap: 117px;
  align-items: center;
}
.gnb > ul a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.white .gnb > ul a {
  color: #fff;
}
header.scroll .gnb > ul a,
header.open .gnb > ul a,
header.dark .gnb > ul a {
  color: #000;
}
.gnbAll {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 1000;
  top: 85px;
  left: 0;
  background: #fff;
  /* -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}
.gnbAll ul.inner {
  padding-left: 226px;
  padding-bottom: 66px;
  gap: 32px;
}
.subMenu li ~ li {
  padding-top: 12px;
}
.subMenu a {
  display: inline-block;
  width: 148px;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
.subMenu a:hover {
  color: #e20819;
}
footer {
  /* position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: 100px; */
  background: #000;
  padding: 60px;
}
footer .footTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
footer .footTop ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
footer .footTop ul a {
  color: #d0d0d1;
}
footer .footTop ul li.highlight a {
  color: #fff;
  font-weight: 700;
}
footer .footBot * {
  color: #d0d0d1;
}
footer .footBot ul {
  margin: 16px 0;
  display: flex;
  gap: 30px;
}
.topBtn {
  position: fixed;
  right: 160px;
  bottom: 60px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333334;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.topBtn.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* subPage */
header.dark + .subPage {
  margin-top: 240px;
  margin-bottom: 180px;
}
/* directions */
header.dark + .subPage h2.pageTitle {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1.54px;
  color: #000;
  margin-bottom: 120px;
}
.directions .map {
  position: relative;
  height: 563px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.directions .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.directions .mapInfo {
  margin-top: 32px;
}
.directions .mapTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.directions .mapTop h3 {
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.35px;
}
.directions .mapTop h3 span {
  font-weight: 700;
}
.directions .mapTop a {
  width: 156px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 28px;
  gap: 4px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.29px;
}
.directions .mapTop a:hover {
  background: #000;
  color: #fff;
}
.directions .mapTop a .on {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.directions .mapTop a:hover .off {
  display: none;
}
.directions .mapTop a:hover .on {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.directions .mapBot {
  margin-top: 20px;
}
.directions .mapBot ul {
  display: flex;
  gap: 64px;
  align-items: center;
}
.directions .mapBot ul li {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.29px;
}
.directions .mapBot ul li,
.directions .mapBot ul li a {
  color: #000;
}
.directions .mapBot ul li span {
  color: #777778;
}
/* table 리스트형 공통 */
.subPage .tbl_head01 thead th {
  font-size: 18px;
}
.subPage .tbl_head01 thead th,
.subPage .tbl_head01 td {
  padding: 0 20px;
  height: 109px;
}
.subPage .tbl_head01 td {
  border-bottom: 1px solid #d9d9d9;
  border-top: 0;
  line-height: 1;
  word-break: unset;
}
.subPage .tbl_head01 thead th.date,
.subPage #bo_list .td_datetime {
  width: 140px;
  font-size: 18px;
  letter-spacing: -0.35px;
  color: #777778;
}
.subPage .tbl_head01 thead th.num {
  width: 95px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.subPage #bo_list .td_num2 {
  width: 75px;
  font-size: 20px;
  color: #5c5c5d;
  white-space: nowrap;
}
.subPage .tbl_head01 td.td_subject {
  overflow: hidden;
}
.subPage .tbl_head01 td .bo_tit {
  font-weight: 600;
  letter-spacing: -0.35px;
  font-size: 24px;
}
.subPage .tbl_head01 td .bo_tit a {
  max-width: 1000px;
}
.subPage .tbl_wrap table {
  border-bottom: 0;
  border-top: 2px solid #000;
}
.subPage .tbl_head01 thead th.chk_box {
  width: 40px;
}
.subPage #bo_list {
  margin-bottom: 0;
}
.subPage #bo_list tbody tr:hover {
  border: 0;
}
.subPage .tbl_head01 tbody tr:hover td {
  background: transparent;
}
.subPage .tbl_head01 a:hover {
  color: #e20819;
  text-decoration: none;
}
.subPage .tbl_head01 {
  margin-bottom: 100px;
}
/*  notice */
.notice .tbl_wrap table {
  table-layout: fixed;
}
/* paging */
.pg_wrap {
  float: none;
  display: block;
}
.pg_wrap .pg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg_page,
.pg_current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  font-size: 18px;
  letter-spacing: -0.29px;
  color: #000;
  background-color: transparent;
  line-height: 1;
  padding: 0;
  min-width: auto;
  margin: 0 5px;
}
.pg_current {
  color: #fff;
  background: #e20819;
  font-weight: 400;
}
.pg_start,
.pg_end {
  background: url("../img/common/forward_arrow2.png") no-repeat 50% 50%;
}
.pg_next,
.pg_prev {
  background: url("../img/common/forward_arrow.png") no-repeat 50% 50%;
}
.pg_start,
.pg_prev {
  transform: rotate(180deg);
}
.pg_arrow {
  margin: 0 2px;
}
.pg_arrow.pg_prev {
  margin-left: 5px;
}
.pg_arrow.pg_next {
  margin-left: 5px;
}
.pg_arrow:hover {
  background-color: transparent !important;
}
.pg_arrow.disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: default;
  background-color: transparent !important;
}
.pg_num:hover {
  background-color: transparent !important;
  border: 1px solid #e20819;
  color: #e20819;
}
/* notice viewPage */
.notice #bo_v_info .profile_info {
  display: none;
}
.notice #bo_v_title .bo_v_tit {
  margin-top: 0;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.35px;
  color: #000;
}
.notice #bo_v_info {
  border-top: 0;
  color: inherit;
}
.notice .titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #000;
  border-bottom: 1px solid #d0d0d1;
  padding: 41px 20px;
  /* height: 109px; */
}
.notice .titleBox span {
  display: block;
  min-width: 100px;
  font-size: 18px;
  letter-spacing: -0.35px;
  color: #777778;
}
#bo_v_con {
  margin: 0;
  padding: 40px 20px 100px;
}
.notice .bo_v_nb {
  margin: 0 0 80px;
}
.notice #bo_v {
  margin-bottom: 0;
}
.notice .bo_v_nb > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 69px;
}
.notice .bo_v_nb li .nb_tit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.notice .bo_v_nb li .nb_tit a {
  font-size: 18px;
  color: #000;
  max-width: 1000px;
  width: auto;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.notice .bo_v_nb li .nb_tit a:hover {
  /* text-decoration: underline;
  text-underline-position: under; */
  border-bottom: 1px solid #000;
}
.notice .bo_v_nb li:hover {
  background: transparent;
}
.notice .bo_v_nb li {
  padding: 0;
  border-top: 1px solid #d0d0d1;
}
.notice .bo_v_nb li:last-child {
  border-bottom: 1px solid #d0d0d1;
}
.notice .bo_v_nb li.btn_prv img {
  transform: rotate(180deg);
}
.notice .bo_v_nb li .nb_date {
  float: none;
  color: #777778;
  font-size: 16px;
  min-width: 90px;
}
.notice .listBtn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 149px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #d0d0d1;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.29px;
}
