/* Font */
@font-face {
  font-family: "GmarketSans";
  font-weight: 300;
  font-style: normal;
  src: url("../../fonts/GmarketSansLight.woff") format("woff");
}

@font-face {
  font-family: "GmarketSans";
  font-weight: 500;
  font-style: normal;
  src: url("/fonts/GmarketSans-Medium.woff") format("woff");
}

@font-face {
  font-family: "GmarketSans";
  font-weight: 700;
  font-style: normal;
  src: url("/fonts/GmarketSans-Bold.woff") format("woff");
}

body {
  overflow-x: hidden;
}

/* 말줄임 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 네비게이션 */
header {
  position: fixed;
  top: 41px;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 78px;
  font-family: "GmarketSans";
  background: #00000080;
  transition: all ease-in-out 0.2s;
}

h1.logo {
  position: relative;
  padding: 0;
  padding-left: 3.75rem;
}

h1.logo a {
  width: 7.3125rem;
}

header .headerGnb {
  width: 100%;
  height: 100%;
}

header .headerGnb .headerInner {
  height: 100%;
}

header .headerGnb .headerInner ul.gnb {
  justify-content: center;
  gap: 0;
  height: 100%;
}

header .headerGnb .headerInner ul.gnb > li {
  display: flex;
  align-items: center;
  position: unset;
  flex-shrink: 0;
  height: 100%;
}

header .headerGnb .headerInner ul.gnb > li::after {
  margin: 0 0.625rem;
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: #fff;
  border-radius: 50%;
}

header .headerGnb .headerInner ul.gnb > li:last-child::after {
  content: none;
}

header .headerGnb .headerInner ul.gnb > li > a {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  word-break: keep-all;
  word-wrap: break-word;
}

header .headerGnb .headerInner ul.gnb > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.1875rem;
  background: #fff;
  transform: translateY(0.25rem);
  transition: all ease-out 0.2s;
  z-index: -1;
}

header .headerGnb .headerInner ul.gnb > li > a:hover::before {
  transform: translateY(0);
}

header .headerGnb .headerInner ul.gnb > li > a.show,
header .headerGnb .headerInner ul.gnb > li > a:hover,
header .headerGnb .headerInner ul.gnb > li > a.active {
  font-weight: 700;
}

header .headerGnb .headerInner ul.gnb > li > .lnb {
  display: none;
  position: absolute;
  top: 4.875rem;
  left: 0;
  width: max-content;
  min-width: 100%;
  background: #fff;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  border-top: 0.0625rem solid var(--Greyscale1);
  box-sizing: border-box;
  box-shadow: 0 0.5rem 0.375rem -0.375rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

header .headerGnb .headerInner ul.gnb > li > .lnb > div {
  position: relative;
}

header .headerGnb .headerInner ul.gnb > li > .lnb[style*="display: block"] {
  display: flex !important;
}

header .headerGnb .headerInner ul.gnb > li > .lnb .titBox {
  position: absolute;
  left: 0;
  top: 0;
  padding: 2.1875rem 1.875rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: calc(((100% - 88.75rem) / 2) + 17.5rem);
  height: 100%;
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 700;
  background-color: var(--Primary);
  background-image: url(/assets/DOM_0000009/Img/common/gnbBg.png),
    url(/assets/DOM_0000009/Img/common/gnbBg_rotate.png);
  background-repeat: no-repeat;
  background-position: bottom 0 right 1.25rem, top 0 left 1.25rem;
  background-size: 25%;
  box-sizing: border-box;
}

header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner {
  padding: 1.875rem;
  padding-left: 1.875rem;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 50rem;
  /* height: 100%; */
  background-color: #fff;
}

header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li {
  width: calc(100% / 4 - 0.9375rem) !important;
}

header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li a {
  display: block;
  padding: 0.625rem;
  color: var(--Greyscale8);
  font-size: 1rem;
  font-weight: 500;
  border: 0.0625rem solid var(--Greyscale4);
  border-radius: 0.5rem;
  transition: all ease-in-out 0.2s;
  box-sizing: border-box;
}

header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li a:hover {
  color: #fff !important;
  background: #209f84;
}

header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li a.active {
  color: #fff;
  background: #209f84;
}

header .headerGnb .headerInner ul.gnb .lnb .lnb_inner > li > a > img {
  transition: all ease-in-out 0.2s;
}

header .headerGnb .headerInner ul.gnb .lnb .lnb_inner > li > a:hover > img {
  filter: invert(100%) sepia(44%) saturate(2%) hue-rotate(40deg)
    brightness(109%) contrast(100%) !important;
}

.gnbItemBox > a {
  width: unset !important;
  height: unset !important;
}

.gnbItemBox > a > img,
.languageBox .dropdown > a {
  width: 32px;
  height: 32px;
}

.languageBox .dropdown {
  min-width: unset;
}

.languageBox a.dropdownBtn {
  display: block;
  border: none;
  border-radius: 0;
  background: transparent;
}

.languageBox .dropdownCon {
  width: fit-content;
  top: 40px;
  left: unset;
  right: 0 !important;
}

.languageBox .dropdownCon > a {
  width: unset;
  height: unset;
  font-weight: 400;
  text-align: center;
}

.dropdown .dropdownCon a:hover {
  color: #fff;
  border-radius: 0.25rem;
}

.languageBox a.dropdownBtn img {
  padding: 0;
  width: 100%;
}

.languageBox .dropdown.show .dropdownCon {
  display: block;
}

.languageBox .dropdown > a > img {
  transition: all 0.2s;
}

.languageBox .dropdown.show > a > img {
  transform: rotate(180deg);
}

.gnbItemBox > a.menuBtn {
  padding: 1.4375rem;
  width: 100%;
  height: 100%;
  background: var(--Primary);
}

@media (max-width: 1420px) {
  header .headerGnb .headerInner ul.gnb li > .lnb {
    width: 100%;
  }

  header .headerGnb .headerInner ul.gnb li > .lnb .titBox {
    width: 290px;
  }

  header .headerGnb .headerInner ul.gnb li > .lnb .lnb_inner {
    width: calc(100% - 260px);
    padding-left: 320px;
  }
}

@media (max-width: 1199px) {
  h1.logo {
    padding-left: 2rem;
  }

  header .headerGnb .headerInner ul.gnb > li::after {
    margin: 0 0.3125rem;
    width: 0.25rem;
    height: 0.25rem;
  }

  header .headerGnb .headerInner ul.gnb > li > a {
    padding: 0.625rem 0.3125rem;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li {
    width: calc(100% / 2 - 0.9375rem) !important;
  }
}

@media (max-width: 960px) {
  .mBtn {
    position: unset !important;
    right: 0 !important;
    padding: 1.625rem;
    width: 78px;
    height: 100%;
    background: var(--Primary);
    box-sizing: border-box;
  }

  .mBtn .bar {
    width: 24px;
    height: 2px;
  }

  .mBtn .bar,
  .mBtn.active .bar {
    background: #fff !important;
  }

  header .headerGnb {
    background: var(--Primary);
    box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
  }

  .languageBox {
    display: none;
  }

  .gnbItemBox > a.menuBtn {
    display: none;
  }

  header .headerGnb .headerInner {
    margin: 0;
    padding: 0;
    height: unset;
  }

  header .headerGnb .headerInner ul.gnb {
    margin-top: 4.875rem;
    padding: 1.25rem 0;
    position: absolute;
    left: 0;
    align-items: start;
    justify-content: flex-start;
    width: 50%;
    height: calc(100% - 4.875rem);
    background-color: #fff;
    background-image: url(/assets/DOM_0000009/Img/common/mountain.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: bottom right 0.5rem;
    border-radius: 0 1rem 0 0;
    box-sizing: border-box;
  }

  header .headerGnb .headerInner ul.gnb > li {
    width: 100%;
    height: unset;
  }

  header .headerGnb .headerInner ul.gnb > li::after {
    content: none;
  }

  header .headerGnb .headerInner ul.gnb > li > a {
    padding: 0.75rem 1.25rem !important;
    justify-content: left;
    opacity: 0.7;
  }

  header .headerGnb .headerInner ul.gnb > li > a::before {
    content: none;
  }

  header .headerGnb .headerInner ul.gnb > li > a:hover::before {
    content: none !important;
  }

  header .headerGnb .headerInner ul.gnb > li > a.show,
  header .headerGnb .headerInner ul.gnb > li > a:hover,
  header .headerGnb .headerInner ul.gnb > li > a.active {
    font-weight: 700;
    opacity: 1;
  }

  header .headerGnb .headerInner ul.gnb > li > a.active ~ .lnb {
    display: flex;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    min-width: unset;
    left: unset;
    height: 100% !important;
    background-color: var(--Primary);
    box-shadow: none;
    align-items: start;
    border-top: none;
    transition: none !important;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb .titBox {
    display: none;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner {
    padding: 20px;
    width: 100%;
    flex-direction: column;
    background-color: transparent;
    gap: 0;
    height: 100%;
    overflow-y: auto;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li > a::after {
    content: none;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li:hover a,
  header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li a.active {
    background-color: var(--Primary-light) !important;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li {
    margin-bottom: 0.25rem;
    width: 100% !important;
    box-sizing: border-box;
  }

  header .headerGnb .headerInner ul.gnb > li > .lnb .lnb_inner > li:last-child {
    margin-bottom: 0;
  }

  header .headerGnb .headerInner ul.gnb > li a {
    padding: 0;
    align-items: unset;
    justify-content: space-between;
    width: 100%;
    color: var(--Greyscale9) !important;
    font-size: 1rem;
    text-align: left;
  }

  header .headerGnb .headerInner ul.gnb > li a.show::after,
  header .headerGnb .headerInner ul.gnb > li a:hover::after,
  header .headerGnb .headerInner ul.gnb > li a.active::after {
    content: "";
    width: 1rem;
    height: 1rem;
    background-image: url(/assets/DOM_0000009/Icon/nav_arrow_bk.svg);
    background-position: center right;
    transition: all ease-in-out 0.2s;
  }

  header .headerGnb .headerInner ul.gnb .lnb .lnb_inner > li > a {
    color: #fff !important;
    font-size: 1rem;
    text-align: left;
    border: none !important;
    transition: none !important;
    word-break: keep-all;
    word-wrap: break-word;
  }

  header .headerGnb .headerInner ul.gnb .lnb .lnb_inner > li > a > img {
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(335deg)
      brightness(106%) contrast(101%);
  }

  header .udBox .headerGnb .headerInner {
    position: relative;
    padding: 0;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--Greyscale4);
    background-color: var(--Greyscale1);
    height: calc(100% - 23px);
    height: 100%;
  }

  header .rightItem {
    position: absolute !important;
    right: 5.875rem !important;
  }
}

@media (max-width: 640px) {
  h1.logo a img {
    width: 80%;
  }

  .gnbItemBox > a > img,
  .languageBox .dropdown > a {
    width: 1.75rem;
    height: 1.75rem;
  }

  .languageBox .dropdownCon > a {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  h1.logo {
    padding-left: 1rem;
  }
}

/* 서브페이지 네비게이션 스타일  */
.subHeader {
  background: #fff;
}

.nav-bg {
  box-shadow: 0 0.5rem 0.375rem -0.375rem rgba(0, 0, 0, 0.1);
}

header.subHeader .headerGnb .headerInner ul.gnb > li > a {
  color: var(--Greyscale8) !important;
}

header.subHeader .headerGnb .headerInner ul.gnb > li:after {
  background: var(--Greyscale8);
}

header.subHeader .headerGnb .headerInner ul.gnb > li > a::before {
  background: var(--Primary);
}

/* 푸터 */
footer {
  background-color: var(--Greyscale3);
}

footer .footerWrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

footer .footerWrap .footerInfo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3.75rem;
}

footer .footerWrap .footerInfo > img {
  width: 8.125rem;
  height: auto;
}

footer .footerWrap .footerInfo .infoBox {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

footer .footerWrap .footerInfo .footerNav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.875rem;
}

footer .footerWrap .footerInfo .footerNav > a {
  font-family: "GmarketSans";
  font-size: 1rem;
  color: var(--Greyscale8);
}

footer .footerWrap .footerInfo .localInfo {
  font-family: "GmarketSans";
  font-size: 1rem;
  color: var(--Greyscale7);
}


@media (max-width: 1480px) {
  header {
    top: 61px;
  }
}

@media (max-width: 1480px) {
  header {
    top: 61px;
  }

  footer {
    padding-left: 0;
  }
}

@media (max-width: 1235px) {
  footer .footerWrap {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 960px) {
  footer .footerWrap {
    flex-direction: column;
  }

  footer .footerWrap .footerInfo {
    flex-direction: column;
    margin-bottom: 1rem;
    gap: 1.25rem;
  }
}
@media (max-width: 640px) {
  footer .footerWrap .footerInfo > img {
    width: 6.25rem;
  }

  footer .footerWrap .footerInfo .localInfo {
    font-size: 0.875rem;
  }

  footer .footerWrap .footerInfo .footerNav {
    gap: 0.625rem;
  }

  footer .footerWrap .footerInfo .footerNav > a {
    font-size: 0.875rem;
  }
}

@media (max-width: 460px) {
  footer .footerWrap .footerInfo .footerNav {
    flex-wrap: wrap;
  }
}

/* 서브페이지 콘텐츠 영역 */
.main {
  padding-top: 4.875rem;
}

/* 서브페이지 타이틀 */
.subTitBox {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 25rem;

  background-repeat: no-repeat;
  background-size: cover;
}

.subTitBox.GIA {
  background-image: url(/assets/DOM_0000009/Img/GIAbg.png);
}

.subTitBox.GIB {
  background-image: url(/assets/DOM_0000009/Img/GIBbg.png);
}

.subTitBox.GIC {
  background-image: url(/assets/DOM_0000009/Img/GICbg.png);
}

.subTitBox.GID {
  background-image: url(/assets/DOM_0000009/Img/GIDbg.png);
}

.subTitBox.GIE {
  background-image: url(/assets/DOM_0000009/Img/GIEbg.png);
}

.subTitBox.GIF {
  background-image: url(/assets/DOM_0000009/Img/GIEbg.png);
}

.subTitBox h2.titTxt {
  padding: 0.75rem 0;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.subTitBox ul.iconBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.subTitBox ul.iconBox li a {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
}

.subTitBox ul.iconBox li a img {
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .subTitBox h2.titTxt {
    font-size: 2.25rem;
  }
}

/* 탭 콘텐츠 */

.tabBox {
  position: relative;
  top: -1.5625rem;
}

.tabBox > ul.tab {
  position: relative;
  background: #fff;
  border: 1px solid #c4c8cc;
  border-radius: 0.625rem;
  z-index: 2;
}

.tabBox > ul.tab .tabBtn {
  position: relative;
  border: none;
  box-sizing: border-box;
}

/*
.tabBox > ul.tab .tabBtn::after {
  position: absolute;
  content: "";
  right: -0.0625rem;
  width: 0.0625rem;
  height: 24px;
  background: #c4c8cc;
}

.tabBox > ul.tab .tabBtn:last-child::after {
  content: none;
}
  */

.tabBox > ul.tab .tabBtn a {
  padding: 1rem 0.625rem;
  color: var(--Greyscale9);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  word-break: keep-all;
  word-wrap: break-word;
  opacity: 0.5;
  transition: all ease-in-out 0.2s;
}

.tabBox > ul.tab .tabBtn.active {
  border-radius: 0.625rem;
}

.tabBox > ul.tab .tabBtn:not(.active):hover a,
.tabBox > ul.tab .tabBtn.active a {
  opacity: 1;
}

.tabBox > .tabCon {
  margin: -1.875rem auto 0;
}

.tabBox > .tabCon .tabConItem {
  margin-top: 0;
}

@media (max-width: 640px) {
  .tabBox {
    top: -4.875rem;
  }

  .tabBox > ul.tab {
    padding: 0.3125rem;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .tabBox > ul.tab .tabBtn {
    width: calc(100% / 2 - 0.25rem);
  }

  .tabBox > ul.tab .tabBtn a {
    font-size: 1rem;
  }

  .tabBox > ul.tab .tabBtn:nth-child(2)::after {
    content: none;
  }

  .tabBox > .tabCon {
    margin: -2.625rem auto 0;
  }
}

/* breadCrumb + IconBox */

.breadCrumbBox {
  position: relative;
  top: -1.875rem;
  padding: 3.125rem 0 1.25rem;
  width: 100%;
  font-family: "Pretendard GOV";
  background: var(--Greyscale0);
}

.breadCrumbBox.wantList {
  top: 0 !important;
}

.breadCrumbBox.noTab {
  padding: 1.25rem 0;
}

.breadCrumbBox > .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.breadCrumbBox .breadCrumb {
  justify-content: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  z-index: 3;
}

.breadCrumbBox .breadCrumb li > .dropdown {
  min-width: unset;
}

.breadCrumbBox .breadCrumb li a.dropdownBtn {
  padding: 0.25rem;
  gap: 0.5rem;
  background: transparent;
  border: none;
}

.breadCrumbBox .breadCrumb li a.dropdownBtn > span {
  padding: 0;
  padding-top: 0.1875rem;
  color: #878d91 !important;
}

.breadCrumbBox .breadCrumb li .dropdownCon {
  top: 2.5rem;
  width: max-content;
  border-radius: 0.625rem;
}

.breadCrumbBox .breadCrumb li .dropdownCon a {
  border-radius: 0.625rem;
}

.breadCrumbBox .breadCrumb li .dropdownCon a:hover {
  color: #fff;
}

.breadCrumbBox .breadCrumb li .dropdownCon a:hover img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(109deg)
    brightness(103%) contrast(103%);
}

.breadCrumbBox ul.iconBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.breadCrumbBox ul.iconBox li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  background: #fff;
  border: 1px solid #e1e4e6;
  border-radius: 50px;
  box-sizing: border-box;
}

.breadCrumbBox ul.iconBox li a img {
  width: 1.25rem;
  height: 1.25rem;
}

.breadCrumbBox ul.iconBox li a:hover {
  border: 0.0938rem solid var(--Primary-dark);
}

@media (max-width: 640px) {
  .breadCrumbBox {
    top: -2.625rem;
  }

  .breadCrumbBox > .container {
    padding: 0.9375rem 0;
    flex-direction: column;
    justify-content: center;
  }

  .breadCrumbBox .breadCrumb li a {
    font-size: 1rem;
  }
}

/* 만족도 조사 */
.subFooterCommon {
  padding-top: 2.5rem;
  padding-bottom: 1.875rem;
  font-family: "GmarketSans";
}

.subFooterCommon .topItem {
  margin-bottom: 0.625rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.1875rem;
  flex-wrap: wrap;
  border: 0.0625rem solid var(--Greyscale3);
}

.subFooterCommon .topItem p {
  color: var(--Greyscale7);
  font-size: 1rem;
  font-weight: 500;
}

.subFooterCommon .topItem p span {
  color: var(--Greyscale9);
}

.subFooterCommon .bodyItem .leftItem {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.subFooterCommon .bodyItem .leftItem .infoBox {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 0.0625rem solid var(--Greyscale3);
}

.subFooterCommon .bodyItem .leftItem .infoBox .titBox {
  padding: 0.5625rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3125rem;
  color: #fff;
  background: var(--Primary-dark);
}

.subFooterCommon .bodyItem .leftItem .infoBox .partTxt {
  display: flex;
  align-items: center;
  padding: 0.5625rem 1rem;
  color: var(--Greyscale7);
}

.subFooterCommon .bodyItem .leftItem .rdoBox {
  padding: 0.625rem 1rem;
  display: flex;
  flex-direction: column;
  border: 0.0625rem solid var(--Greyscale3);
}

.subFooterCommon .bodyItem .leftItem .rdoBox .titItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.subFooterCommon .bodyItem .leftItem .rdoBox .titItem a {
  display: block;
  padding: 0.3125rem 1rem;
  color: #fff;
  font-size: 1.125rem;
  border-radius: 3.75rem;
}

.subFooterCommon .bodyItem .leftItem .rdoBox .titItem a.opn {
  background: var(--Greyscale7);
}

.subFooterCommon .bodyItem .leftItem .rdoBox .titItem a.opn:hover {
  background: var(--Greyscale8);
}

.subFooterCommon .bodyItem .leftItem .rdoBox .titItem a.sbm {
  background: var(--Primary-dark);
}

.subFooterCommon .bodyItem .leftItem .rdoBox .titItem a.sbm:hover {
  background: var(--Primary-darken);
}

.subFooterCommon .bodyItem .leftItem .rdoBox .rdoItem {
  padding-top: 0.625rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.subFooterCommon .bodyItem .leftItem .rdoBox .rdoItem > .radioArea {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.subFooterCommon .bodyItem .leftItem .rdoBox .rdoItem > .radioArea .radioBtn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
}

.subFooterCommon .bodyItem .leftItem .rdoBox .rdoItem > .radioArea label span {
  color: var(--Greyscale8);
  font-size: 1rem;
  font-weight: 400;
}

.subFooterCommon .bodyItem .leftItem .rdoBox .rdoItem a {
  display: block;
  padding: 0.3125rem 1rem;
  color: #fff;
  font-size: 1.125rem;
  background: var(--Greyscale7);
  border-radius: 3.75rem;
}

.subFooterCommon .bodyItem .leftItem .rdoBox .rdoItem a:hover {
  background: var(--Greyscale8);
}

.subFooterCommon .bodyItem .rightItem {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  height: 100%;
  background: var(--Greyscale3);
  box-sizing: border-box;
}

.subFooterCommon .bodyItem .rightItem .qrImg {
  padding: 0.4375rem;
  background: #fff;
  border-radius: 0.625rem;
}

.subFooterCommon .row .col {
  padding: 0;
}

.col.qrBox {
  padding-left: 1.875rem !important;
}

@media (max-width: 1199px) {
  .col.qrBox {
    padding-left: 0 !important;
  }
}

@media (max-width: 640px) {
  .subFooterCommon .topItem > img {
    height: 2.625rem;
  }

  .subFooterCommon .topItem > p,
  .subFooterCommon .bodyItem .leftItem .infoBox,
  .subFooterCommon .bodyItem .leftItem .infoBox .titBox,
  .subFooterCommon .bodyItem .rightItem,
  .subFooterCommon .bodyItem .leftItem .rdoBox .titItem a,
  .subFooterCommon .bodyItem .leftItem .rdoBox .rdoItem a {
    font-size: 0.875rem;
    gap: 0.625rem;
  }

  .subFooterCommon
    .bodyItem
    .leftItem
    .rdoBox
    .rdoItem
    > .radioArea
    label
    span {
    font-size: 0.875rem;
  }
}

@media (max-width: 460px) {
  .breadCrumbBox .breadCrumb li:last-child .dropdownCon {
    left: unset;
    right: 0 !important;
  }
}

/* 탑버튼 */

.topBtnBox {
  position: fixed;
  bottom: 3.75rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.topBtnBox > a.topBtn {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: var(--Primary);
  display: none;
  text-align: center;
  padding-top: 0.75rem;
  box-shadow: 0px 0.125rem 0.625rem rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.topBtnBox > a.topBtn > img {
  width: 70%;
  height: 70%;
}

.topBtnBox > a.topBtn:hover {
  background-color: var(--Primary-darken);
}

/* 텍스트 스타일 */
span,
p,
b,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: keep-all;
  word-wrap: break-word;
}

/* 테이블 스타일 */
.tableBox {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: none;
}

.tableBox table {
  width: 100%;
}

.tableBox table.listTable {
  width: 100%;
  table-layout: fixed;
}

table thead,
table tbody {
  text-align: center;
}

table thead {
  background: var(--Greyscale0);
  border-top: 0.125rem solid var(--Greyscale8);
  border-bottom: 0.0625rem solid var(--Greyscale5);
}

table tbody > tr {
  border-bottom: 0.0625rem solid var(--Greyscale4);
}

table thead > tr th {
  font-weight: 700 !important;
}

table tbody > tr td {
  font-weight: 400;
}

table.listTable thead > tr th,
table.listTable tbody > tr td {
  border-right: 0.0625rem solid var(--Greyscale4);
}

table thead > tr th:last-child,
table tbody > tr td:last-child {
  border-right: none;
}

.tableBox table tr th,
.tableBox table tr td {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 400;
  word-break: keep-all;
  word-wrap: break-word;
}

table thead > tr th,
table tbody > tr td {
  padding: 1rem;
  font-size: 1rem !important;
  word-break: keep-all;
}

table.board tbody > tr:hover {
  background: var(--Greyscale0);
}

table .num {
  width: 25px;
}

table thead > tr th.item00,
table tbody > tr td.item00 {
  width: 50px;
}

table thead > tr th.item01,
table tbody > tr td.item01 {
  width: 6.25rem;
}

table thead > tr th.item02,
table tbody > tr td.item02 {
  width: 12.5rem;
}

table thead > tr th.tit,
table tbody > tr td.tit {
  flex: auto;
  max-width: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

table tbody > tr td.tit {
  text-align: left;
}

table tbody > tr td.tit a {
  display: block;
  color: var(--Greyscale9);
}

@media (max-width: 960px) {
  table.listTable .num {
    width: 80px;
  }
}

@media (max-width: 640px) {
  table thead tr th,
  table tbody tr td {
    font-size: 1rem !important;
  }

  table.board tbody {
    border-top: 0.125rem solid var(--Greyscale8);
  }

  table tbody > tr {
    padding: 1.25rem 0.625rem;
  }

  table.board tbody > tr td {
    width: 100% !important;
    padding: 0.3125rem 0 !important;
  }

  table tbody > tr td.tit {
    max-width: 100%;
  }

  table tbody > tr td.tit a {
    font-size: 1rem;
    font-weight: 600;
  }
}

/* input 반응형 사이즈 적용 */
@media (max-width: 640px) {
  input,
  input::placeholder {
    font-size: 1rem;
  }
}

/* 의견남기기 스타일 */
.inputField.opn-input {
  display: none;
  flex-shrink: 0;
  width: 100%;
}

.inputField.opn-input input {
  padding: 0.75rem 1rem;
  width: 100%;
  height: 2.6875rem;
  border: 0.0625rem solid var(--Greyscale4);
}

.inputField.opn-input.active {
  display: block;
}

/* 페이지 만족도 결과보기 */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.modalBg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal.show,
.modal-img.show {
  display: none;
}

.modal .modalCon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 50%;
  background: #fff;
  box-shadow: 0px 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
}

.modal.rslView-modal .modalCon {
  max-height: 43.75rem;
  overflow: auto;
}

.modal.rslView-modal .modalCon .modalTop {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
  background: var(--Primary-darker);
}

.modal.rslView-modal .modalCon .modalTop img {
  width: 1.5rem;
}

.modal.rslView-modal .modalCon .modalTop h1.tit {
  font-family: "GmarketSans";
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}

.modal.rslView-modal .modalBody {
  padding: 1rem 1.5rem 0;
}

.modal.rslView-modal .modalBody .rslViewchartBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 0.0625rem solid var(--Greyscale4);
  width: 100%;
}

.modal.rslView-modal .modalBody .rslViewchartBox ul {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.modal.rslView-modal .modalBody .rslViewchartBox ul:last-child li {
  border-bottom: none;
}

.modal.rslView-modal .modalBody .rslViewchartBox ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.0625rem;
  font-size: 0.75rem;
  height: 2.5rem;
  text-align: center;
  border-right: 1px solid var(--Greyscale4);
  min-width: 5.25rem;
  max-width: 7.5rem;
  border-bottom: 0.0625rem solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .rslViewchartBox ul li:last-child {
  border-right: none;
  max-width: 100%;
  width: 100%;
}

.modal.rslView-modal .modalBody .rslViewchartBox ul.rslChart li {
  justify-content: flex-start !important;
}

.modal.rslView-modal .modalBody .opn-area .topItem {
  margin: 1rem 0;
  padding: 0.375rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: none;
  border-bottom: 0.0625rem solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .topItem img {
  width: 1.5rem;
  height: 1.5rem;
}

.modal.rslView-modal .modalBody .opn-area .topItem h2.tit {
  font-family: "GmarketSans";
  color: var(--Primary-darker);
  font-size: 1rem;
  font-weight: 500;
}

.modal.rslView-modal .modalBody .opn-area .opnBox {
  max-height: 18.125rem;
  overflow: auto;
  border: 0.0625rem solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-family: "Pretendard GOV";
  font-size: 0.875rem;
  border-bottom: 0.0625rem solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem:last-child {
  border-bottom: none;
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .name {
  padding: 0.5rem 1rem;
  flex-shrink: 0;
  width: 5.25rem;
  height: 100%;
  text-align: center;
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-grow: 1;
  border-left: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon p.conTxt {
  flex-grow: 1;
  font-size: 0.875rem;
  font-weight: 400;
  white-space: pre-wrap;
  word-break: break-all;
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon .date {
  flex-shrink: 0;
  padding: 0 1rem;
  margin-bottom: auto;
}

.modal.rslView-modal
  .modalBody
  .opn-area
  .opnBox
  .opnBoxItem
  .opnCon
  .date
  .dateTxt {
  color: var(--Greyscale7);
  font-size: 0.875rem;
  font-weight: 400;
}

.modal.rslView-modal
  .modalBody
  .opn-area
  .opnBox
  .opnBoxItem
  .opnCon
  .date
  .timeTxt {
  color: var(--Greyscale7);
  font-size: 0.875rem;
  font-weight: 400;
}

.modal.rslView-modal .modalFooter {
  margin: 1rem auto;
}

.modal.rslView-modal .modalFooter button {
  margin: 0 auto;
  padding: 0.4375rem;
  width: 7.5rem;
  font-family: "Pretendard GOV";
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background: var(--Primary);
  border-radius: 0.5rem;
}

.modal.rslView-modal .modalFooter button:hover {
  background: var(--Primary-dark);
}

.modal.rslView-modal .modalBody .rslChart {
  flex-grow: 1;
  width: 100%;
  /* padding: 0.625rem 0.625rem 0.625rem 0; */
  display: flex;
  align-items: center;
  height: 2.5rem;
}

.modal.rslView-modal .modalBody .rslChart .bar {
  height: 0.625rem;
}

.modal.rslView-modal .modalBody .rslChart #bar1 {
  width: 20%;
  background-color: var(--Greyscale9);
}

.modal.rslView-modal .modalBody .rslChart #bar2 {
  width: 40%;
  background-color: var(--Greyscale8);
}

.modal.rslView-modal .modalBody .rslChart #bar3 {
  width: 60%;
  background-color: var(--Greyscale7);
}

.modal.rslView-modal .modalBody .rslChart #bar4 {
  width: 80%;
  background-color: var(--Greyscale6);
}

.modal.rslView-modal .modalBody .rslChart #bar5 {
  width: 100%;
  background-color: var(--Greyscale5);
}

@media (max-width: 767px) {
  .modal.rslView-modal .modalCon {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
  .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem {
    flex-direction: column;
  }

  .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .name {
    width: 100%;
    text-align: left;
  }

  .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon {
    flex-direction: column;
    width: 100%;
    border-left: none;
  }

  .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon .date {
    padding: 0.625rem 0 0;
  }

  .modal.rslView-modal .modalCon {
    max-width: 90%;
  }
}

@media (max-width: 460px) {
  .modal.rslView-modal .modalCon {
    max-height: 75%;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul {
    flex-wrap: wrap;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul li:nth-child(1),
  .modal.rslView-modal .modalBody .rslViewchartBox ul li:nth-child(2) {
    flex-shrink: 0;
  }

  .modal.rslView-modal .modalBody .rslChart {
    width: 100%;
  }
}

@media (max-width: 1160px) {
  .modal.rslView-modal .modalBody .rslViewchartBox {
    flex-direction: row;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul {
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    box-sizing: border-box;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul.rslChart {
    padding: 0;
    width: 100%;
    height: unset;
    box-sizing: border-box;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul li,
  .modal.rslView-modal .modalBody .rslViewchartBox ul li:last-child {
    min-width: 3.8125rem !important;
    width: 5.3125rem;
    max-width: unset;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul li {
    min-width: unset;
    height: unset;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul li:last-child {
    border-bottom: none;
    border-right: 0.0625rem solid var(--Greyscale4);
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul.rslChart li {
    width: 100%;
    height: 1.1687rem;
    border-right: none;
    border-bottom: 0.0625rem solid var(--Greyscale4);
    box-sizing: border-box;
  }

  .modal.rslView-modal .modalBody .rslViewchartBox ul.rslChart li:last-child {
    border-bottom: none;
  }
}

/* 상단 사이트 링크 스타일 추가 - 20240906 */
.siteLink-wrap {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.625rem 0;
  width: 100%;
  font-family: "GmarketSans";
  background: var(--Greyscale7);
  box-sizing: border-box;
  z-index: 9999;
}

.siteLink-wrap .siteLinkCon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.siteLink-wrap .siteLinkCon .siteLinkItem {
  display: flex;
  align-items: center;
}

.siteLink-wrap .siteLinkCon .siteLinkItem::after {
  content: "│";
  padding: 0 0.375rem;
  color: var(--Greyscale6);
  font-size: 1rem;
}

.siteLink-wrap .siteLinkCon .siteLinkItem:last-child::after {
  content: none;
}

.siteLink-wrap .siteLinkCon .siteLinkItem a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.siteLink-wrap .siteLinkM {
  display: none;
  padding: 0 3.75rem;
  width: 100%;
  box-sizing: border-box;
}

.siteLink-wrap .siteLinkM .dropdown {
  width: 100%;
  box-sizing: border-box;
}

.siteLink-wrap .siteLinkM .dropdownBtn {
  color: var(--Greyscale9);
  border: 0.0625rem solid var(--Greyscale4);
  border-radius: 0.5rem;
  box-sizing: border-box;
}

.siteLink-wrap .siteLinkM .dropdownBtn span {
  border-right: 1px solid var(--Greyscale4);
}

.siteLink-wrap .siteLinkM .dropdownBtn > img {
  padding: 0 0.875rem;
  transition: all 0.2s;
}

.siteLink-wrap .siteLinkM .dropdown.show .dropdownBtn > img {
  transform: rotate(180deg);
}

.siteLink-wrap .siteLinkM .dropdownCon {
  top: 2.75rem;
  max-height: 12.5rem;
  overflow-y: auto;
  border-radius: 0.5rem;
}

@media (max-width: 1480px) {
  .siteLink-wrap .siteLinkD {
    display: none;
  }

  .siteLink-wrap .siteLinkM {
    display: block;
  }
}

@media (max-width: 1199px) {
  .siteLink-wrap .siteLinkM {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .siteLink-wrap .siteLinkM {
    padding: 0 1rem;
  }
}

/* 열린군수실 Gnb 안보이게 하기 - 20250213 */
.headerGnb {
  display: none;
}

@media (max-width: 960px) {
  .mBtn {
    display: none;
  }

  header .rightItem {
    right: 0 !important;
  }

  .gnbItemBox > a.menuBtn {
    display: block;
  }
}
