/* ==============================
  font import 
 ==============================*/
/* ---------- 나눔고딕 ---------- */
@font-face {
/*  font-family: "NanumGothic"; */
  src: url("/fonts/NanumGothic/NanumGothic-Regular.woff2") format("woff2"),
    url("/fonts/NanumGothic/NanumGothic-Regular.woff") format("woff"),
    url("/fonts/NanumGothic/NanumGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NanumGothic";
  src: url("/fonts/NanumGothic/NanumGothic-Bold.woff2") format("woff2"),
    url("/fonts/NanumGothic/NanumGothic-Bold.woff") format("woff"),
    url("/fonts/NanumGothic/NanumGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* ---------- 프리텐다드 ---------- */
@font-face {
  font-family: "Pretendard";
  src: url("/fonts/Pretendard/Pretendard-Bold.woff2") format("woff2"),
    url("/fonts/Pretendard/Pretendard-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* ==============================
  common 
 ==============================*/
:root {
  --font-color: #444;
  --size15: 15px;
  --border-color: #a8a8a8;
  --transition3s: all 0.3s ease 0s;
  --hover-bright: brightness(0.7);
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-weight: normal;
  font-size: 16px;
  color: var(--font-color);
  font-family: "Nanum Gothic", sans-serif;
  text-decoration: none;
  word-spacing: 0px;
  scroll-behavior: smooth;
  width: calc(100% - 5px);
  box-sizing: border-box;
  overflow-x: scroll;

  /* Firefox 전용 */
  scrollbar-width: thin;
  scrollbar-color: #c4b8a2 #ffffff;
}

body::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #ffffff;
}

body::-webkit-scrollbar-thumb {
  background-color: #c4b8a2;
  border-radius: 4px;
  border: 1px solid #cec3b0;
}

select {
  font-weight: 700;
  font-size: 10pt;
  height: 26px;
  color: #777;
}

a {
  color: inherit;
  text-decoration: none;
}
figure {
  padding: 0;
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
button {
  border: none;
  background: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  /* width: 100%; */
  height: 100%;
  font-family: inherit;
  cursor: pointer;
}
.wrap {
  width: 1380px;
  margin: 0 auto;
  zoom: 0.8;   /* 전체 80% 축소 */
}

.layout {
    display: flex;
    flex-wrap: nowrap;      /* 줄바꿈 방지 → 2단 유지 */
    gap: 15px;              /* 본문-사이드바 간격 */
    align-items: flex-start;
    max-width: 1400px;      /* main(1115) + nav(250) + gap(20) ≈ 1385px */
    margin: 0 auto;
    box-sizing: border-box;
}

main {
    order: 1;
    width: 1115px;
    flex: 0 0 1115px;       /* 줄어들거나 늘어나지 않게 고정 */
    margin-top: 15px;
    box-sizing: border-box;
}

nav {
    order: 2;
    width: 250px;
    flex: 0 0 250px;        /* 고정 너비 */
    margin-top: 15px;
    box-sizing: border-box;
}

/* ==============================
  게시판 제목 스타일 
 ==============================*/
.sub_tit {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 20;
  font-weight: 700;
  letter-spacing: -0.75px;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: var(--size15);
  margin-bottom: 15px;
}

.sub_tit_icon {
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  margin-right: 7px;
  display: inline-block;
}

.sub_tit_icon::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ==============================
  header 
 ==============================*/
header {
  margin-top: var(--size15);
}
header ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  width: 100%;
  padding: 0;
}
.top_right {
  display: flex;
  align-items: flex-end;
}
.menu {
  width: 100%;
  align-items: center;
  padding: var(--size15) 0;
  margin: 5px 0;
  justify-content: space-evenly;
}

.menu li {
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}
.menu li a {
  transition: opacity 0.2s ease 0s;
}
.menu li a:visited {
  color: inherit;
}
.menu li a:hover {
  text-decoration: none;
  opacity: 0.7;
  color: #fff;
}

/* ==============================
   검색 컨테이너
 ==============================*/
/* ---------- quickSearch ---------- */
.quickSearch {
  padding: 30px 0;
  justify-content: space-between;
  box-sizing: border-box;
}

.quickSearch li {
  padding: 0 40px;
  border-right: 2px solid #e7e7e7;
}

.quickSearch li:last-of-type {
  border-right: none;
}
.quickSearch li.trade,
.quickSearch li.sms {
  cursor: pointer;
}
.quickSearch li img {
  transition: transform 0.3s ease 0s;
}
.quickSearch li.trade:hover img,
.quickSearch li.sms:hover img {
  transform: translateY(-5%);
}

.csBox {
  display: flex;
  align-items: center;
}
.csBox div {
  letter-spacing: -0.75px;
  color: #000;
}
.csBox div p:not(.cs_word) {
  border: 4px solid #d4d4d4;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  padding: 9px 15px;
  display: inline-block;
  border-radius: 49px;
  font-family: "Pretendard";
  position: relative;
  line-height: normal;
  word-spacing: 0;
  display: flex;
  align-items: center;
  width: 60%;
  justify-content: center;
  letter-spacing: -3px;
}
.csBox div h4 span .csBox div p:not(.cs_word).list01,
.csBox div h4 span.list01 {
  color: #60b7db;
}
.csBox div p:not(.cs_word).list02,
.csBox div h4 span.list02 {
  color: #4fc7a1;
}
.csBox div p:not(.cs_word).list03,
.csBox div h4 span.list03 {
  color: #6fc44a;
}
.csBox div p:not(.cs_word).list04,
.csBox div h4 span.list04 {
  color: #f6b83f;
}
.csBox div p:not(.cs_word).list05,
.csBox div h4 span.list05 {
  color: #f47c47;
}
.csBox div p:not(.cs_word).list06,
.csBox div h4 span.list06 {
  color: #ef5a89;
}
.csBox div p:not(.cs_word).list07,
.csBox div h4 span.list07 {
  color: #b77ed2;
}
.csBox div p:not(.cs_word).list08,
.csBox div h4 span.list08 {
  color: #7c8fe5;
}
.csBox div p:not(.cs_word).list09,
.csBox div h4 span.list09 {
  color: #6e8598;
}
.csBox div p:not(.cs_word)::after {
  display: inline-block;
  content: "";
  background: #d4d4d4;
  position: absolute;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
  width: 16px;
  height: 11px;
  background: url(/img/info/arrow_bottom.png) no-repeat;
  background-color: #fff;
}

.csBox div h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 18px 0;
}

.csBox div h4 span {
  font-size: inherit;
  text-decoration: none;
  word-spacing: 0;
  line-height: normal;
  font-weight: 900;
  border: none;
  background: none;
}

.csBox div .cs_word {
  font-size: 15px;
  font-weight: 500;
  text-wrap-style: pretty;
  width: 64%;
  line-height: 22px;
  color: #000;
  margin: 0 auto;
}

.naver_txt {
  border: 3px solid #56d640;
  font-size: 15px;
  color: #000;
  letter-spacing: -0.75px;
  font-weight: 500;
  margin-top: 18px;
  box-sizing: border-box;
  padding: 6px;
  white-space: nowrap;
}

.kakao_txt {
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.75px;
  font-weight: 500;
  margin-top: 18px;
  box-sizing: border-box;
  padding: 9px;
  white-space: nowrap;
  background: #371c1d;
}

/* ---------- 상단검색 ---------- */
.searchNum {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  align-items: center;
  column-gap: var(--size15);
}
.inputSearch {
  width: 62%;
  max-width: 696px;
  padding: 20px 10px;
  text-align: left;
  display: flex;
  align-items: center;
  column-gap: var(--size15);
}
.inputSearch span {
  padding-right: var(--size15);
  border-right: 1px solid #d5d5d5;
}
.searchNum svg {
  width: 40px;
  height: 26px;
}

.searchNum input {
  width: 100%;
  border: none;
  font-size: 20px;
  font-weight: 500;
  color: #6d6d6d;
}

.searchBtn {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  width: 38%;
}

.searchBtn a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.searchBtn div {
  color: #fff;
  padding: 24px 0;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.75px;
  transition: var(--transition3s);
  max-height:72px;
}

.searchBtn div:hover {
  filter: brightness(0.5);
}

.searchM {
  background: #171717;
}

.searchD {
  background: #616161;
}

.searchM svg,
.searchD svg {
  width: 25px;
  height: 24px;
}

.searchContainer {
  margin-bottom: var(--size15);
}
.detail-search {
  display: flex;
  list-style: none;
  padding: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition3s);
}

.detail-search.show {
  height: 238px;
  opacity: 1;
  margin: var(--size15) 0;
}

.detail-search_left {
  background: url("../img/info/detail_search_img.png") no-repeat right 110px/ 115px;
  background-color: #f9f9f9;
  width: 13%;
  text-align: center;
  color: #282828;
  font-weight: 700;
  height: calc(236px - 40px);
  padding: 20px;
}
.detail-search_left span {
  font-size: 11px;
}
.detail-search_left p {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.35px;
  margin-top: 8px;
}

.detail-search_right {
  width: calc(83% - 30px);
  padding: var(--size15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.detail-search_right select,
.selectSearch {
  width: 136px;
  height: 42px;
  border: 1px solid #bebebe;
  padding: 0 10px;
  font-size: 16px;
  color: #282828;
  font-weight: 500;
}

.detail-search_right .labelName,
.detail-search_right .sub_input_txt {
  font-size: 16px;
  font-weight: 700;
  color: #282828;
}

.detail-search_right .sub_input {
  padding: 0 10px;
  height: 42px;
  width: 90px;
  box-sizing: border-box;
  border: 1px solid #bebebe;
  font-size: 16px;
}
.detail-search_right > div {
  display: flex;
  align-items: center;
  column-gap: var(--size15);
}

.image_매매,
.image_전세,
.image_월세,
.image_경매,
.image_면적1,
.image_면적2 {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.mg15 {
  margin-left: var(--size15);
}

.detail-search_right .searchBtn {
  width: auto;
}

.detail-search_right .searchNum {
  width: 100%;
  justify-content: flex-start;
}
.detail-search_right .inputSearch {
  border: 1px solid #bebebe;
  width: 46%;
  font-size: 16px;
  padding: 7px 16px;
}
.detail-search_right .searchNum input {
  font-size: 16px;
  color: #282828;
  font-weight: 500;
}

.detail-search_right .searchBtn div {
  font-size: 16px;
  padding: 7px 16px;
  width: auto;
  transition: var(--transition3s);
}
.detail-search_right .searchM {
  background: #b91a34;
}
.detail-search_right .searchBtn .searchD {
  padding: 7px 40px;
  color: #fff;
}

.detail-search_right .searchBtn div a {
  display: flex;
  align-items: center;
  column-gap: 5px;
  color: inherit;
  transition: var(--transition3s);
}

.detail-search_right .searchBtn div a:hover {
  text-decoration: none;
}

/* ==============================
  좌측 콘텐츠 
 ==============================*/
.leftContainer {
  margin-bottom: var(--size15);
}
.leftContainer:last-of-type {
  margin-bottom: 0;
}
.leftContainer h3 {
  text-align: left;
  background: #3f6ec1;
  padding: var(--size15);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  column-gap: 7px;
  align-items: center;
  margin: 0;
}



.leftContainer h3 svg {
  width: 23px;
  height: 18px;
}

.leftContainer ul {
  list-style-type: none;
  margin: 0;
  padding: 20px 10px;
}

.leftContainer li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.leftContainer li:last-of-type {
  margin-bottom: 0;
}

.leftContainer li a {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease 0s;
}

.leftContainer li > a:hover {
  transform: translateX(2%);
}

.leftContainer li p {
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #282828;
}

.iconL {
  margin-left: 8px;
}

.categoryL li > a {
  width: 60%;
}

.category_money {
  display: flex;
  justify-content: space-between;
}
.categoryL li a {
  width: 55%;
}

.categoryTit {
  margin-top: 25px;
}

.categoryTit:first-of-type {
  margin-top: 0;
}

/* ---------- 좌측 SMS 스타일 ---------- */
.smsL textarea {
  width: 100%;
  background: #f7f7f7;
  min-height: 69px;
  padding: var(--size15);
  font-size: 14px;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #373737;
}
.leftContainer ul.smsL {
  padding: 10px;
}

.smsNumInput {
  justify-content: space-between;
}
.smsNumInput input {
  width: 66px;
  height: 26px;
  border: 1px solid #cacaca;
}

.hyphen {
  width: 4px;
  height: 1px;
  display: inline-block;
  background: #282828;
}
.agreeContainer {
  flex-direction: column;
}

.smsL .sms_pravicy3 {
  border: 1px solid #d7d7d7;
  padding: var(--size15) 10px;
  font-size: 13px;
  letter-spacing: -0.5px;
  line-height: 20px;
  color: #282828;
}

.agreeContainer div {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  color: #282828;
  letter-spacing: -0.5px;
}

.agreeContainer div input {
  width: auto;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}

.agreeContainer div label:nth-of-type(1) {
  margin-right: 20px;
}

.smsBtn {
  justify-content: center;
  column-gap: 10px;
}
.smsBtn button {
  height: auto;
  padding: 10px var(--size15) !important;
  font-size: var(--size15);
  font-weight: 700;
  color: #fff;
  border: none;
  display: inline-block;
  width: 50%;
  cursor: pointer;
  transition: var(--transition3s);
}
.smsBtn button:hover {
  filter: brightness(0.5);
}
.smsSendBtn {
  background: #3f6ec1;
}
.smsResetBtn {
  background: #797979;
}

/* ---------- 좌측 관련 사이트 콘텐츠 ---------- */
.leftContainer .rinkL {
  padding: 10px 0;
}
.rinkL li {
  border-bottom: 1px dashed #a5a7a9;
  padding-bottom: 7px;
  padding-left: 7px;
  font-size: 16px;
  color: #282828;
  letter-spacing: -0.5px;
}
.rinkL li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

/* ---------- 좌측 면적 계산기 ---------- */
.calL li {
  justify-content: space-between;
  padding-right: 7px;
}
.calL form {
  width: 100%;
}
.calL p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.calL input {
  width: 55px;
  height: 26px;
  border: 1px solid #cacaca;
}
.calL input:focus {
  border: 1px solid #cacaca;
}
.calL span {
  color: #373737;
}
.calL input[name="check2"] {
  background: #fbf8ef;
}
.calL button {
  height: 26px;
  width: 50px;
  text-align: center;
  border: 1px solid #cacaca;
  background: #f9f9f9;
  color: #373737;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition3s);
}

.calL button:hover {
  filter: brightness(0.5);
}

/* ---------- 좌측 접속자수 ---------- */
.leftContainer ul.countL {
  padding: 0;
}
.countL li {
  border-bottom: 1px dashed #a5a7a9;
  padding: var(--size15) 7px;
  font-size: 16px;
  font-weight: 500;
  justify-content: space-between;
  margin-bottom: 0;
  margin-left: 3px;
  margin-right: 3px;
}

.countL li:last-of-type {
  border-bottom: none;
}

.countL h3 {
  font-weight: 500;
  font-size: 16px;
  color: #373737;
  padding-right: 6px;
  border-right: 1px solid #624480;
}
.redBold {
  color: #ff0000 !important;
}
.countL span {
  font-weight: 700;
}

/* ==============================
  메인&리스트 매물 스타일
 ==============================*/
/* ---------- 사각형사진 스타일 ---------- */

.maemul_tit {
  padding: 12px 0;
}
.maemul_tit a {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  align-items: center;
}
.maemul_tit h2 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #fff;
}
.maemul_tit h2 span {
  font-size: var(--size15);
  position: relative;
  margin-left: 7px;
}
.maemul_tit h2 span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #fff;
  left: -7px;
  position: absolute;
}

.moreBtn {
  color: #fff;
  font-size: 23px;
  font-weight: 500;
}

.maemul_txt {
  display: flex;
  justify-content: flex-start;
  gap: 13px;
  padding: var(--size15);
  border: 1px solid var(--border-color);
  border-top: none;
  flex-wrap: wrap;
  box-sizing: content-box;
}
.maemul_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.maemul_txt figure,
.maemul_a figure {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.maemul_txt figure > img,
.maemul_a figure > img {
  aspect-ratio: 205 / 130;
  width: calc(100% - 4px);
  border: 1px solid #cacaca;
  padding: 1px;
}

.maemul_txt ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: calc(25% - 10px);
}
.maemul_grid ul {
  width: auto;
}

/* ---------- 사각형사진 좌우슬라이드 & 상하슬라이드 스타일 ---------- */
.horiMoving,
.vetiMoving {
  width: 100%;
  height: 283px;
  border-top: none;
  box-sizing: border-box;
}
.vetiMoving {
  border: 1px solid var(--border-color);
}
.horiMoving {
  border: none;
}
.vetiMoving > div {
  width: 260px;
}
.horiSlider {
  width: 100%;
  height: 100%;
  display: flex;
  column-gap: 10px;
}
.horiSlider > div {
  width: 260px;
}
.home_reco1slides ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 260px;
}
.rollingImg {
  aspect-ratio: 205 / 130;
}

.maemul_a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

main div > section:not(main div > section:last-of-type) {
  margin-bottom: var(--size15);
}
/* ---------- 긴줄 롤링 스타일 ---------- */
.긴줄롤링_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: calc(66px - 30px);
  border-bottom: 1px dashed var(--border-color);
  padding: var(--size15) 0;
}
.매물종류 > div,
.긴줄_소재지 > div,
.긴줄_제목 > div,
.긴줄_면적 > div,
.긴줄_가격 > div {
  text-align: center;
}

.매물종류 > div {
  width: 185px;
}
.긴줄_소재지 > div {
  width: 151px;
}
.긴줄_제목 > div {
  width: 391px;
}
.긴줄_면적 > div {
  width: 202px;
}
.긴줄_가격 > div {
  width: 154px;
}

/* ---------- 긴줄 사진 리스트 ---------- */
.maemul_main_list .dashedLine {
  border-bottom: 1px dashed var(--border-color);
}
.heightTr {
  height: var(--size15);
}

.maemul_main_list th {
  font-size: 16px;
  background-color: #ccc;
  font-weight: 700;
  border-right: 1px solid #ffffff;
  color: #282828;
}
.imgConiner > img {
  height: 96px;
  width: calc(100% - 4px);
  border: 1px solid #cacaca;
  padding: 1px;
  box-sizing: border-box;
  aspect-ratio: 151 / 96;
  min-width: 151px;
}
.maemul_main_list_tit {
  width: 90%;
  font-size: 16px;
  text-wrap-style: pretty;
  line-height: 22px;
}
.maemul_main_list_tit strong {
  color: inherit;
}
.소재지,
.지역명 {
  font-size: 16px;
  font-weight: 500;
}
.소재지 {
  color: #0000ff;
}
.지역명 {
  color: #cd6383;
  margin-top: 7px;
}
.면적 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  font-size: 16px;
}

.면적 img:nth-of-type(2) {
  margin-left: 5px;
}

.가격 {
  font-size: var(--size15);
  text-align: center;
}

.긴줄일반 tr:not(.heightTr, .mt15, .긴줄일반타이틀) {
  height: 55px;
}

.mt15 {
  height: var(--size15);
}

/* ==============================
  매물상세페이지
 ==============================*/

/* ---------- 갤러리 ---------- */
.thumbnail-slide-wrap {
  padding: var(--size15);
  /* margin-top:var(--size15); */
  border: 1px solid var(--border-color);
  height: 657px;
  box-sizing: border-box;
}

.thumbnail-slide-wrap .thumbnail-slide .item-thumb-box {
  display: flex;
  flex-direction: row;
  position: relative;
  column-gap: var(--size15);
  justify-content: space-between;
  height: 100%;
}
.gallery-top {
  width: 982px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}
.gallery-top .swiper-slide .img-box {
  height: 622px;
}
.gallery-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  width: 87px;
  height: 622px;
  box-sizing: content-box;
  margin: 0;
}

.gallery-thumbs > div {
  row-gap: 5px;
  justify-content: space-between;
}

.gallery-thumbs .swiper-slide {
  width: 87px;
  height: 56px !important;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
}

.gallery-thumbs .swiper-slide-thumb-active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000004f;
}

/* ---------- 매물 버튼 스타일 ---------- */
.maemul_view {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.maemul_view_btn {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  column-gap: 5px;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #fff;
  margin-top: var(--size15);
}
.maemul_view_btn li {
  padding: 12px 20px;
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3 ease 0s;
}

.maemul_view_btn li:hover {
  filter: brightness(0.9);
}

.maemul_view_btn li.pocketBtn {
  background: #ea750e;
}
.maemul_view_btn li.listBtn {
  background: #3f6ec1;
}
.maemul_view_btn li.printBtn {
  background: #e16c7f;
}

.maemul_view .sub_tit {
  margin-top: 30px;
  border-bottom: none;
  margin-bottom: var(--size15);
  padding-bottom: 0;
}
.maemul_view table:not(.memo table) {
  width: 100%;
  border-right: 1px solid #bfd0ee;   /* none → 실제 선으로 변경 */
  border-collapse: collapse;
}

.maemul_view table tr:not(.memo table tr) {
  border-bottom: 1px solid #bfd0ee;
  height: 38px;              /* 51px → 38px */
  box-sizing: border-box;
}

.maemul_view table th:not(.memo table th) {
  background: #eff4fd;
  font-size: 15px;           /* 살짝 축소 (선택사항) */
  color: var(--font-color);
  letter-spacing: -0.5px;
  padding: 6px 0;             /* 10px → 6px */
  width: 15%;
}

.maemul_view table td:not(.memo table td) {
  padding-left: 18px;
  width: 35%;
  font-size: 15px;           /* 살짝 축소 (선택사항) */
  color: var(--font-color);
}
.maemul_view table td.memo,
.memo02 {
  padding: 20px 18px;
}

.maemul_view table td.noBorder {
  border: none !important;
}

/* ---------- 매물상세 정보 - 옵션 ---------- */
.opt_box {
  padding: 0;
  list-style: none;
  display: grid;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  margin: 0;
  grid-template-columns: repeat(6, 1fr);
}
.opt_box li {
  display: flex;
  align-items: center;
  column-gap: 7px;
}

/* ==============================
  찾아오시는 길
 ==============================*/
.map_wrap {
  border: 1px solid #c9c9c9;
}
.company_name {
  height: 60px;
  background: #fff;
  border-top: 1px solid #c9c9c9;
  color: var(--font-color);
  letter-spacing: -0.25px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==============================
  회사소개
 ==============================*/
.inner {
  padding: 0 22px;
}
.intro_box {
  list-style: none;
  margin: 0;
  padding: 0;
}

.introduce01_Bcon01 {
  display: flex;
  margin-top: 35px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.introduce01_Bcon01 > div:first-child {
  order: 1;
}
.introduce01_Bcon01 > div:first-child img {
  max-width: 100%;
}
.introduce01_Bcon02 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.introduce01_Bcon02 > div:first-child {
  width: 523px;
  order: 1;
}
.sub_content
  .introduce01_Bcon02
  > div:first-child
  img:not(.introduce01_Bcon02 img) {
  width: 100%;
}
.introduce01_Bcon02 > div:last-child {
  order: 2;
  width: calc(100% - 450px);
}
.introduce01_Bcon_ingtitle {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: -2px;
  text-align: right;
}
.introduce01_Bcon_ingtitle h3 {
  font-size: 56px;
  font-weight: 700;
  white-space: nowrap;
  margin-top: var(--size15);
  margin-bottom: 30px;
}
.introduce01_Bcon_ingtitle h3 .intro_point {
  color: var(--main-bg-color1);
}
.introduce01_Bcon_ingtitle::after {
  content: "";
  display: inline-block;
  width: calc(100% + 50px);
  height: 1px;
  margin-left: -120px;
  background: #c9c9c9;
}
.introduce01_Bcon_ingtitle02 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: -2px;
  text-align: left;
  position: relative;
}
.introduce01_Bcon_ingtitle02 h3 {
  font-size: 56px;
  font-weight: 700;
  white-space: nowrap;
  margin-top: var(--size15);
  margin-bottom: 30px;
}
.introduce01_Bcon_ingtitle02 h3 .intro_point {
  color: #24b3e3;
}
.introduce01_Bcon_ingtitle02::after {
  content: "";
  display: inline-block;
  width: calc(100% + 50px);
  height: 1px;
  background: #c9c9c9;
  position: absolute;
  left: 0;
}
.introduce01_Bcon_ingtitle span.fontbold {
  font-weight: 500;
  letter-spacing: -2px;
  color: #036eb7;
}
.introduce01_Bcon_ingtitle02 span.fontbold {
  font-weight: 600;
  letter-spacing: -2px;
}
.introduce01_Bcon_ingtitle02 span.big_blue {
  font-size: 60px;
  color: #036eb7;
  font-weight: 500;
  letter-spacing: -3px;
}
.introduce01_Bcon_text {
  padding-top: 30px;
}
.introduce01_Bcon_text p {
  line-height: 26px;
  font-size: 16px;
  color: #434343;
  letter-spacing: -0.35px;
  text-align: left;
}
.introduce01_Bcon01 .introduce01_Bcon_text p {
  text-align: right;
}
.introduce_txt02 {
  margin-top: 50px;
  border: 1px solid #c5c5c5;
  background: #fafafa;
  padding: 50px;
}
.introduce_txt02 .cmt_box {
  text-align: center;
  font-size: 20px;
  letter-spacing: -2px;
  font-weight: 700;
  line-height: 34px;
  position: relative;
  padding: 0 64px;
  word-break: keep-all;
}
.introduce_txt02 .cmt_box::before {
  content: "";
  display: block;
  width: 64px;
  height: 42px;
  background: url("../img/marks01.png") no-repeat;
  position: absolute;
  left: 0;
  top: -32px;
  transform: translateY(50%);
}
.introduce_txt02 .cmt_box::after {
  content: "";
  display: block;
  width: 64px;
  height: 42px;
  background: url("../img/marks02.png") no-repeat;
  position: absolute;
  right: 0;
  bottom: -32px;
  transform: translateY(-50%);
}

.intro_map {
  padding-top: 50px;
  position: relative;
}
.intro_map .write_tit {
  padding-bottom: 12px;
  border-bottom: 2px solid #434343;
  font-size: 1.5rem;
  font-weight: 700;
}
.intro_map {
  padding-top: 50px;
}
.intro_map .root_daum_roughmap {
  width: 100%;
  margin-top: 30px;
}
.intro_map .map_contact {
  width: 100%;
  max-width: 300px;
  padding: 4px;
  border: 3px solid #929292;
  background: #fff;
  right: 80px;
  top: 50%;
  position: absolute;
  z-index: 1;
  transform: translateY(calC(-50% + 38px - 20px));
}
.intro_map .map_contact h4 {
  height: 55px;
  background: #ff7200;
  text-align: center;
  line-height: 55px;
  color: #fff;
  font-size: 1.37rem;
  font-weight: 700;
}
.intro_map .map_contact .map_box {
  padding: 20px;
  padding-bottom: 0;
}
.intro_map .map_contact .map_box:last-child {
  padding-bottom: 20px;
}
.intro_map .map_contact .map_box h5 {
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.intro_map .map_contact .map_box p {
  line-height: 20px;
  font-size: 14px;
  padding-top: 10px;
}
.map_size {
  position: relative;
  width: 100%;
  padding-top: 46.25%;
}
.mapIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==============================
  MY관심매물
============================== */
.pocket {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 10px;
  row-gap: 25px;
  margin-bottom: 35px;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 35px;
}
.pocket li {
  transition: var(--transition3s);
}

.pocket li:hover {
  filter: brightness(0.6);
}

.pocket a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.pocket figure > img {
  width: 205px;
  height: 130px;
  border: 1px solid #cacaca;
  padding: 2px;
  background: #fff;
}

.pocket .maemul_category {
  margin-bottom: 0;
}

.no_pocket {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.no_pocket ul {
  border: 1px solid #d8d8d8;
  padding: 90px;
  margin: auto 155px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
  color: #000;
  letter-spacing: -0.5px;
}
.no_pocket h5 {
  font-size: 18px;
  font-weight: 700;
}

/* ==============================
  커뮤니티
============================== */
/* ---------- 공지사항 ---------- */
.board_box .pagination_box {
  margin-left: 0 !important;
}
.board_box .sub_tit {
  border-bottom: none;
  padding-bottom: 0;
}
.board_box .count_title {
  text-align: left;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #282828;
  padding-bottom: 15px;
}
.list01,
.list02,
.list03,
.list04,
.list05,
.list06,
.list07,
.list08,
.list09 {
  font-weight: 700;
  font-size: 16px;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -0.25px;
  height: 50px;
  position: relative;
}
.info_view_box:has(.list01) {
  border-top: 2px solid #829fc8;
}
.info_view_box:has(.list02) {
  border-top: 2px solid #c983ae;
}
.info_view_box:has(.list03) {
  border-top: 2px solid #ff9aa9;
}
.info_view_box:has(.list04) {
  border-top: 2px solid #d1e6a8;
}
.info_view_box:has(.list05) {
  border-top: 2px solid #f8b78e;
}
.info_view_box:has(.list06) {
  border-top: 2px solid #91d4f1;
}
.info_view_box:has(.list07) {
  border-top: 2px solid #f6a57c;
}
.info_view_box:has(.list08) {
  border-top: 2px solid #c3e0fa;
}
.info_view_box:has(.list09) {
  border-top: 2px solid #d4d4d4;
}
.list01 {
  color: #426bb1;
  border-bottom: 1px solid #bfd0ee;
  background: #eff4fd;
}
.list02 {
  color: #f37da1;
  border-bottom: 1px solid #ecd6dc;
  background: #fdf8f9;
}
.list03 {
  color: #965d66;
  border-bottom: 1px solid #e0d0cf;
  background: #fdf6f6;
}
.list04 {
  color: #84ab40;
  border-bottom: 1px solid #b2d686;
  background: #fafef4;
}
.list05 {
  color: #f3854e;
  border-bottom: 1px solid #fcd5a6;
  background: #fdf9f4;
}
.list06 {
  color: #39b1df;
  border-bottom: 1px solid #b3e4f7;
  background: #f5fafc;
}
.list07 {
  color: #f3854e;
  border-bottom: 1px solid #fcd5a6;
  background: #fdf9f4;
}
.list08 {
  color: #479de4;
  border-bottom: 1px solid #addcfc;
  background: #f2f9fd;
}
.list09 {
  color: #747273;
  border-bottom: 1px solid #b4b4b4;
  background: #f3f3f3;
}
.info_view_box tr:last-of-type th {
  border-bottom: none;
}

th.list01::after,
th.list02::after,
th.list03::after,
th.list04::after,
th.list05::after,
th.list06::after,
th.list07::after,
th.list08::after,
th.list09::after {
  background: inherit;
  content: "";
  display: inline-block;
  right: 0;
  top: 0;
  position: absolute;
  width: 1px;
  height: 10px;
}
.info_table tr {
  height: 50px;
  text-align: center;
  cursor: pointer;
}
.info_table tr td {
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #444444;
}
.info_table td.list_title {
  text-align: left;
  padding-left: 15px;
  line-height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.info_table td.list_title a {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 80%;
  display: block;
  overflow: hidden;
}
.info_table td.list_title img:not(.reply_icon) {
  margin-left: 10px;
}
.reply_icon {
  margin-right: 6px;
}
.info_icon {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 8px 17px;
  border-radius: 5px;
}
.search_list_box {
  margin: 0 auto;
  margin-top: 35px;
}
.search_list_box td {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}
.search_list_box select {
  width: 110px;
  height: 42px;
  border: 1px solid #bebebe;
  font-size: 16px;
  color: #282828;
  font-weight: 500;
  padding: 0 10px;
}
.search_list_box input {
  height: 42px;
  border: 1px solid #bebebe;
  width: 287px;
}

.search_icon {
  height: 42px;
  width: 45px;
  background: #8b8b8b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition3s);
}
.search_icon:hover {
  filter: var(--hover-bright);
}
/* ---------- 공지사항 뷰페이지 ---------- */
.info_view_box [class^="list0"] {
  width: 167px;
}
.info_view_box tr td {
  padding-left: 15px;
  font-size: 16px;
  letter-spacing: -0.25px;
}
.info_view_box td.memo,
td.memoContainer {
  padding: 20px 18px;
}
.info_view_box td.memo td {
  padding-left: 0;
}
.info_view_box td img[src*="lib/community/img"] {
  margin-left: 10px;
}

/* ---------- 공지사항 뷰페이지 버튼 스타일 ---------- */
.info_view_btn {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  column-gap: 5px;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #fff;
  margin-top: 25px;
}
.info_view_btn li {
  padding: 12px 20px;
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition3s);
}

.info_view_btn li:hover {
  filter: brightness(0.9);
}

/* .info_view_btn li.modifyBtn {
  background: #3f6ec1;
} */
.info_view_btn li.removeBtn {
  background: #e16c7f;
}
.info_view_btn li.answerBtn {
  background: #797979;
}
.info_view_btn li.listBtn {
  background: #797979;
}
.answer_modify_btn {
  background: #3f3f3f;
}
.answer_delete {
  background: #575757;
}

/* ---------- 댓글 ---------- */
.reply_table {
  width: 100%;
}
.sub_list_tit {
  text-align: left;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.reply_input {
  height: 75px;
}
.reply_input input {
  width: 261px;
  height: 45px;
  border: 1px solid #dedede;
  padding: 5px 10px;
}
.reply_input input:focus {
  outline: none;
}
.reply_input_109h {
  height: 109px;
}
.reply_input_109h td {
  padding: 20px;
}
.reply_input_109h textarea {
  height: 81px;
  width: 790px;
  resize: vertical;
  border: 1px solid #dedede;
  padding: 5px 10px;
}
.reply_input_109h textarea:focus {
  border: 1px solid #dedede;
  outline: none;
}
.reply_input td {
  margin-left: 20px;
}
.reply_result_flex {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
  align-items: center;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 500;
  font-family: "Nanum Gothic";
}
.reply_result_flex span {
  color: #a9a9a9;
}
.flex_area {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
#sub_reply {
  width: 116px;
  height: 81px;
  border: none;
  background: #797979;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: "Nanum Gothic";
  transition: var(--transition3s);
  cursor: pointer;
}
#sub_reply:hover {
  filter: var(--hover-bright);
}

.reply_result_flex > p {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.reply_result_flex .del_reply {
  background: #727373;
  aspect-ratio: 1 / 1;
  width: 12px;
  display: inline-block;
  text-align: center;
  height: 12px;
  border-radius: 3px;
  color: #fff;
  font-size: 9px;
  font-weight: 400;
  line-height: 12px;
  cursor: pointer;
}

.write_btn {
  min-width: 75px;
  padding: 12px 20px;
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #fff;
  transition: var(--transition3s);
  border: none;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 41px;
}
.modifyBtn {
  height: auto;
  font-size: 16px;
  letter-spacing: -0.5px;
}
.write_btn.list01,
.smsSendBtn.list01,
.modifyBtn.list01 {
  background: #3f6ec1;
  color: #fff;
}
.write_btn.list02,
.smsSendBtn.list02,
.modifyBtn.list02 {
  background: #f37da1;
  color: #fff;
}
.write_btn.list03,
.smsSendBtn.list03,
.modifyBtn.list03 {
  background: #965d66;
  color: #fff;
}
.write_btn.list04,
.smsSendBtn.list04,
.modifyBtn.list04 {
  background: #84ab40;
  color: #fff;
}
.write_btn.list05,
.smsSendBtn.list05,
.modifyBtn.list05 {
  background: #f3854e;
  color: #fff;
}
.write_btn.list06,
.smsSendBtn.list06,
.modifyBtn.list06 {
  background: #39b1df;
  color: #fff;
}
.write_btn.list07,
.smsSendBtn.list07,
.modifyBtn.list07 {
  background: #e77d4e;
  color: #fff;
}
.write_btn.list08,
.smsSendBtn.list08,
.modifyBtn.list08 {
  background: #479de4;
  color: #fff;
}
.write_btn.list09,
.smsSendBtn.list09,
.modifyBtn.list09 {
  background: #747273;
  color: #fff;
}
.write_btn:hover {
  filter: var(--hover-bright);
}

.onlineTtxt {
  display: flex;
  align-items: end;
  margin-bottom: 10px;
  width: 1115px;
  justify-content: space-between;
  position: relative;
}
.onlineTtxt .pagination_box {
  width: 100%;
}
.onlineTtxt .count_title {
  padding-bottom: 0;
}
.online_list_search {
  margin-top: 25px;
}

/* ---------- 온라인 게시판 상태 버튼 스타일 ---------- */
.answer_state {
  display: inline-block;
  width: 82px;
  height: 29px;
  border-radius: 8px;
  position: relative;
  color: #fff;
}
.answer_state:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-block;
  width: 90%;
  text-align: center;
}

.확인전 {
  background: #4b76b9;
}
.확인전:after {
  content: "확인전";
}

.진행준비중,
.진행중 {
  background: #f35b88;
}
.진행준비중:after {
  content: "진행준비중";
}
.진행중:after {
  content: "진행중";
}
.상담대기 {
  background: #e64690;
}
.상담대기:after {
  content: "상담대기";
}

.상담완료 {
  background: #817e7e;
}
.상담완료:after {
  content: "상담완료";
}

.처리완료,
.계약완료 {
  background: #605b57;
}
.처리완료:after {
  content: "처리완료";
}

.전화요함,
.연락불가 {
  background: #659610;
}
.전화요함:after {
  content: "전화요함";
}

.연락불가:after {
  content: "연락불가";
}

.기타,
.처리불가,
.내용부족 {
  background: #aa64b4;
}
.기타:after {
  content: "기타";
}
.처리불가:after {
  content: "처리불가";
}
.내용부족:after {
  content: "내용부족";
}

.계약완료:after {
  content: "계약완료";
}

/* ---------- 부동산 앨범 ---------- */
.album_list .sub_tit {
  padding-bottom: 0;
  border: none;
}

.album_list .count_title {
  text-align: left;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #282828;
  padding-bottom: 15px;
}
.album_list ul {
  display: grid;
  grid-template-columns: repeat(5, calc(20% - 18px));
  gap: 18px;
  margin: 35px 0;
  padding-bottom: 35px;
  justify-content: center;
}

.album_list ul img {
  width: 100%;
  background: #fff;
  border: 1px solid #cacaca;
  padding: 1px;
  box-sizing: border-box;
  object-fit: cover;
  aspect-ratio: 205 / 130;
}
.album_list ul a {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: inline-block;
  width: 100%;
}
.album_list ul li {
  transition: var(--transition3s);
}
.album_list ul li:hover {
  filter: var(--hover-bright);
}

.album_list ul h4 {
  padding: 10px 0;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-family: "Nanum Gothic";
  color: #282828;
  font-weight: 500;
  margin: 0;
  text-align: center;
  justify-content: center;
}
.board_box_title {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.new_icon {
  width: 27px;
  height: 17px;
  font-size: 10px;
  background: #ff9540;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
}

.album_pagination .pagination_box {
  width: 100%;
  margin-left: 0;
}
.album_imgBox {
  padding: 50px;
}
.album_imgBox img {
  width: 100%;
  aspect-ratio: 1003 / 636;
}

.album_memo {
  margin-top: 15px;
}

.modify_table th {
  height: 73px;
}
input:focus {
  outline: none;
}
.modify_table input {
  border: 1px solid #dedede;
  padding: 5px 10px;
  cursor: pointer;
  accent-color: #787878;
}
.modify_table input[type="text"],
.modify_table
  input[type="password"]:not(
    input[name="tel1"],
    input[name="tel2"],
    input[name="tel3"]
  ) {
  width: 261px;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #282828;
}
.modify_table input[name="email"] {
  width: calc(100% -var(--size15));
}

fieldset {
  border: none;
  text-align: center;
  margin: 25px 0;
  padding: 0;
}
.info_view_box.privacy_table tr:last-of-type td {
  padding-left: 0;
}

/* ==============================
  매도및매수의뢰
============================== */
.flex_style {
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.info_view_btn.maedo_box_btns {
  position: relative;
}
.info_view_btn li.modifyInput,
.info_view_btn li.deleteInput {
  position: absolute;
  padding: 0;
  margin: 0;
  right: 110px;
  bottom: -50%;
  transform: translateY(-50%);
  height: 41px;
  align-items: center;
}
.info_view_btn li.modifyInput form,
.info_view_btn li.deleteInput form {
  margin: 0;
  padding: 0;
}
#Layer020,
#Layer010 {
  opacity: 0;
  display: none;
  transition: var(--transition3s);
}
#Layer020 input[type="password"],
#Layer010 input[type="password"] {
  height: 41px;
  border-radius: 0;
  border: 1px solid #bebebe;
  outline: none;
}

.bg_black {
  background: #282828 !important;
}
#Layer020.show,
#Layer010.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
}
#Layer020 > div,
#Layer010 > div {
  padding: 12px 20px;
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition3s);
  background: #797979;
  max-width: calc(80.09px - 31px);
}

.info_ask {
  margin-bottom: 28px;
  padding: 28px 25px;
  text-align: left;
}
.info_ask h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.info_ask p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #282828;
  margin-bottom: 10px;
}
.info_ask p:last-of-type {
  margin-bottom: 0;
}
.modify_table input[name="tel1"],
.modify_table input[name="tel2"],
.modify_table input[name="tel3"] {
  width: 110px;
  min-width: 110px;
}

.modify_table select#category,
.modify_table select#part {
  width: 130;
  height: 45px;
  border-radius: 0;
  margin-right: 5px;
  border: 1px solid #bebebe;
  color: #282828;
  font-size: 16px;
  letter-spacing: -0.25px;
  font-weight: 500;
}

/* ---------- 개인정보수집 ---------- */
.privacy_btns {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
  margin-top: 20px;
}
.privacy_btns div {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 7px;
}
.privacy_btns input {
  cursor: pointer;
  width: auto;
  margin: 0;
  border: #898989;
}

#filePlus {
  display: none;
}

label[for="filePlus"] {
  cursor: pointer;
  width: 96px;
  height: 41px;
  display: inline-block;
  border: 1px solid #767676;
  background: #efefef;
  text-align: center;
  line-height: 41px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Nanum Gothic";
  letter-spacing: -0.5px;
  color: #242424;
}

.changeFile {
  border: 1px solid #bebebe;
  padding: 1px;
  padding-right: 130px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: 346px;
}

/* 비활성화 스타일 */
.changeFile.on {
  filter: var(--hover-bright);
  pointer-events: none;
}

/* 온라인상담 */
.owner_answer_box {
  width: 100%;
}
.owner_answer_box li:not(.answer_memo) {
  display: flex;
  height: 51px;
  align-items: center;
  padding-left: 15px;
}
.answer_memo {
  padding: 20px 18px;
  border-bottom: none;
}

/* ---------- 비밀번호 페이지 ---------- */
.secret_top {
  border-top: 1px solid #d8d8d8;
  padding-top: 72px;
}
.secret_top p {
  width: 411px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-family: "Nanum Gothic";
  color: #000;
}
.secret_box {
  position: relative;
  width: 813px;
  height: 174px;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/img/include/secret_bg.png);
}
.secret_box form {
  width: 100%;
}
.secret_box .left_search1 {
  width: 261px;
  height: 45px;
  background: #fff;
  border: 1px solid #d5d5d5;
}

.secret_box ul {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}
.secret_box ul li input {
  width: 261px;
  height: 45px;
  background: #fff;
  border: 1px solid #d5d5d5;
}
.secret_box ul li p {
  line-height: 45px;
  font-weight: 700;
  font-family: "Nanum Gothic";
  letter-spacing: -0.5px;
  width: 150px;
  height: 45px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition3s);
}
.secret_box ul li p.list01 {
  background: #3f6ec1;
}
.secret_box ul li p.list02 {
  background: #f37da1;
}
.secret_box ul li p.list03 {
  background: #965d66;
}
.secret_box ul li p.list04 {
  background: #84ab40;
}
.secret_box ul li p.list05 {
  background: #f3854e;
}
.secret_box ul li p.list06 {
  background: #39b1df;
}
.secret_box ul li p.list07 {
  background: #e77d4e;
}
.secret_box ul li p.list08 {
  background: #479de4;
}
.secret_box ul li p.list09 {
  background: #747273;
}
.secret_box ul li:nth-of-type(2) p {
  background: #797979;
}

.secret_box ul li p:hover {
  filter: var(--hover-bright);
}

@keyframes shake {
  0% {
    transform: translateX(-50%);
  }
  20% {
    transform: translateX(-45%);
  }
  40% {
    transform: translateX(-50%);
  }
  60% {
    transform: translateX(-45%);
  }
  80% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-45%);
  }
}

.secret_top .left_search1:focus {
  outline: auto;
}
.secret_top .red_alarm {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  color: #c13f3f;
  transition: all 0.1s ease-in-out 0s;
  opacity: 0;
}
.red_alarm.show {
  opacity: 1;
  animation: shake 0.4s ease;
}

/* ==============================
  footer 푸터
============================== */
footer {
  list-style: none;
}
.f_menu {
  display: grid;
  list-style: none;
  background: #515151;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  grid-template-columns: repeat(5, 1fr);
  padding: 6px 0;
  font-size: var(--size15);
  font-weight: 700;
  margin-top: 35px;
}
.f_menu li {
  padding: 6px 0;
  border-right: 1px solid #7e7e7e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f_menu li:last-of-type {
  border-right: none;
}
.f_menu li a {
  color: inherit;
  display: inline-block;
  width: 100%;
  height: 100%;
}

address ul {
  margin-top: 20px;
  list-style: none;
  display: grid;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  grid-template-columns: 18% calc(64% - 30px) 18%;
}

.company_info {
  text-align: left;
  line-height: 22px;
  font-size: 14px;
  font-style: normal;
  color: #000;
}
.copyRight {
  margin-top: 10px;
}
.copyBtn {
  display: flex;
  justify-content: flex-end;
  column-gap: 8px;
  padding-right: var(--size15);
}
.copyBtn a {
  display: inline-block;
  padding: 10px;
  border-radius: 8px;
}

.goAdmin {
  background: #a5a5a5;
}

.goSsweb {
  background: #f0f0f0;
}

.radio2 {
  border: 0;
  line-height: 0px;
  width: 25px;
  vertical-align: middle;
  background-color: transparent;
}
.sms_pravicy {
  font-weight: none;
  font-size: 8.5pt;
  color: #666666;
  text-decoration: none;
  word-spacing: -1px;
  line-height: 12pt;
}
.sms_pravicy3 {
  font-weight: none;
  font-size: 8.5pt;
  color: #666666;
  text-decoration: none;
  word-spacing: -1px;
  line-height: 12pt;
}
.sms_pravicy2 {
  font-weight: none;
  font-size: 9pt;
  color: #666666;
  text-decoration: none;
  word-spacing: -1px;
  line-height: 12pt;
}

.sms_pravicy4 {
  font-weight: none;
  font-size: 8.5pt;
  color: #ffffff;
  text-decoration: none;
  word-spacing: -1px;
  line-height: 12pt;
}
TR {
  font-weight: normal;
  font-size: 11pt;
  color: var(--font-color);
  text-decoration: none;
  word-spacing: 0px;
}
.main_news {
  font-weight: normal;
  font-size: 9pt;
  color: #737270;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}
.main_news A:link {
  color: #737270;
  text-decoration: none;
}
.main_news A:active {
  color: #737270;
  text-decoration: none;
}
.main_news A:visited {
  color: #737270;
  text-decoration: none;
}
.main_news A:hover {
  color: #000000;
  text-decoration: none;
}
.small2 {
  font-weight: none;
  font-size: 9pt;
  color: #373737;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.small {
  font-weight: none;
  font-size: 8.5pt;
  color: #373737;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}
.small A:link {
  color: #373737;
  text-decoration: none;
}
.small A:active {
  color: #373737;
  text-decoration: none;
}
.small A:visited {
  color: #373737;
  text-decoration: none;
}
.small A:hover {
  color: #000000;
  text-decoration: none;
}

.radio {
  border: 0;
}
.login_join {
  font-weight: none;
  font-size: 8.5pt;
  color: #252525;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join A:link {
  color: #252525;
  text-decoration: none;
}
.login_join A:active {
  color: #252525;
  text-decoration: none;
}
.login_join A:visited {
  color: #252525;
  text-decoration: none;
}
.login_join A:hover {
  color: #252525;
  text-decoration: underline;
}
.login_join_bold {
  font-weight: bold;
  font-size: 9pt;
  color: #2a58a6;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold A:link {
  color: #2a58a6;
  text-decoration: none;
}
.login_join_bold A:active {
  color: #2a58a6;
  text-decoration: none;
}
.login_join_bold A:visited {
  color: #2a58a6;
  text-decoration: none;
}
.login_join_bold A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_1 {
  font-weight: 500;
  font-size: 16px;
  color: #2a58a6;
}
.login_join_bold_1 {
  font-weight: 500;
  font-size: 16px;
  color: #2a58a6;
}
.login_join_bold2_2 {
  font-weight: bold;
  font-size: 11pt;
  color: #cd6383;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_2 {
  font-weight: none;
  font-size: 11pt;
  color: #cd6383;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_2 A:link {
  color: #cd6383;
  text-decoration: none;
}
.login_join_bold_2 A:active {
  color: #cd6383;
  text-decoration: none;
}
.login_join_bold_2 A:visited {
  color: #cd6383;
  text-decoration: none;
}
.login_join_bold_2 A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_3 {
  font-weight: bold;
  font-size: 11pt;
  color: #92535e;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_3 {
  font-weight: none;
  font-size: 11pt;
  color: #92535e;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_3 A:link {
  color: #92535e;
  text-decoration: none;
}
.login_join_bold_3 A:active {
  color: #92535e;
  text-decoration: none;
}
.login_join_bold_3 A:visited {
  color: #92535e;
  text-decoration: none;
}
.login_join_bold_3 A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_4 {
  font-weight: bold;
  font-size: 11pt;
  color: #46650d;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_4 {
  font-weight: none;
  font-size: 11pt;
  color: #46650d;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_4 A:link {
  color: #46650d;
  text-decoration: none;
}
.login_join_bold_4 A:active {
  color: #46650d;
  text-decoration: none;
}
.login_join_bold_4 A:visited {
  color: #46650d;
  text-decoration: none;
}
.login_join_bold_4 A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_5 {
  font-weight: bold;
  font-size: 11pt;
  color: #f06622;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_5 {
  font-weight: none;
  font-size: 11pt;
  color: #f06622;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_5 A:link {
  color: #f06622;
  text-decoration: none;
}
.login_join_bold_5 A:active {
  color: #f06622;
  text-decoration: none;
}
.login_join_bold_5 A:visited {
  color: #f06622;
  text-decoration: none;
}
.login_join_bold_5 A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_6 {
  font-weight: bold;
  font-size: 11pt;
  color: #0b7ba7;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_6 {
  font-weight: none;
  font-size: 11pt;
  color: #0b7ba7;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_6 A:link {
  color: #0b7ba7;
  text-decoration: none;
}
.login_join_bold_6 A:active {
  color: #0b7ba7;
  text-decoration: none;
}
.login_join_bold_6 A:visited {
  color: #0b7ba7;
  text-decoration: none;
}
.login_join_bold_6 A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_7 {
  font-weight: bold;
  font-size: 11pt;
  color: #be4225;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_7 {
  font-weight: none;
  font-size: 11pt;
  color: #be4225;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_7 A:link {
  color: #be4225;
  text-decoration: none;
}
.login_join_bold_7 A:active {
  color: #be4225;
  text-decoration: none;
}
.login_join_bold_7 A:visited {
  color: #be4225;
  text-decoration: none;
}
.login_join_bold_7 A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_8 {
  font-weight: bold;
  font-size: 11pt;
  color: #1f7aab;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_8 {
  font-weight: none;
  font-size: 11pt;
  color: #1f7aab;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_8 A:link {
  color: #1f7aab;
  text-decoration: none;
}
.login_join_bold_8 A:active {
  color: #1f7aab;
  text-decoration: none;
}
.login_join_bold_8 A:visited {
  color: #1f7aab;
  text-decoration: none;
}
.login_join_bold_8 A:hover {
  color: #000000;
  text-decoration: none;
}
.login_join_bold2_9 {
  font-weight: bold;
  font-size: 11pt;
  color: #595757;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_9 {
  font-weight: none;
  font-size: 11pt;
  color: #595757;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.login_join_bold_9 A:link {
  color: #595757;
  text-decoration: none;
}
.login_join_bold_9 A:active {
  color: #595757;
  text-decoration: none;
}
.login_join_bold_9 A:visited {
  color: #595757;
  text-decoration: none;
}
.login_join_bold_9 A:hover {
  color: #000000;
  text-decoration: none;
}
.category {
  font-weight: none;
  font-size: 11pt;
  color: #282828;
  line-height: 13pt;
  text-decoration: none;
  word-spacing: 0px;
}
.poll_title {
  font-weight: none;
  font-size: 9pt;
  color: #141414;
  line-height: 11pt;
  text-decoration: none;
  word-spacing: -1px;
}
.poll_q {
  font-weight: bold;
  font-size: 9pt;
  color: #ff6600;
  line-height: 11pt;
  text-decoration: none;
  word-spacing: -1px;
}
.counter01 {
  font-weight: bold;
  font-size: 8.5pt;
  color: #242323;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.counter01-1 {
  font-weight: bold;
  font-size: 9.5pt;
  color: #dd4110;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}
.counter02 {
  font-weight: bold;
  font-size: 8.5pt;
  color: #545353;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.counter02-1 {
  font-weight: bold;
  font-size: 9.5pt;
  color: #545353;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}
.main_comment {
  font-weight: none;
  font-size: 8.5pt;
  color: #5b5a5a;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.maemul_address,
.maemul_category {
  font-size: 16px;
  letter-spacing: -0.25px;
  margin: 0;
  color: #282828;
  text-align: center;
}
.maemul_address {
  font-weight: 700;
  padding: 10px 0;
}
.maemul_category {
  font-weight: 500;
  margin-bottom: 5px;
}
.maemul_money {
  font-weight: 700;
  font-size: var(--size15);
  color: #c23a06;
}
.money_all {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  font-size: 16px;
  letter-spacing: -0.25px;
}

.money_all p:nth-of-type(2) {
  display: flex;
  align-items: center;
}

.money_all strong {
  font-weight: 700;
  color: #c64f2c;
  margin-right: 5px;
}
.maemul_money A:link {
  color: #c23a06;
  text-decoration: none;
}
.maemul_money A:active {
  color: #c23a06;
  text-decoration: none;
}
.maemul_money A:visited {
  color: #c23a06;
  text-decoration: none;
}
.maemul_money A:hover {
  color: #000000;
  text-decoration: none;
}
.maemul_white {
  font-weight: bold;
  font-size: 9pt;
  color: #ffffff;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}
.premium_ss {
  font-weight: none;
  font-size: 8.5pt;
  color: #818081;
  line-height: 10pt;
  text-decoration: none;
  word-spacing: -1px;
}

.board {
  font-weight: none;
  font-size: 9pt;
  color: #282828;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.board A:link {
  color: #282828;
  text-decoration: none;
}
.board A:active {
  color: #282828;
  text-decoration: none;
}
.board A:visited {
  color: #282828;
  text-decoration: none;
}
.board A:hover {
  color: #074877;
  text-decoration: none;
}
.big_font {
  font-weight: bold;
  font-size: 11pt;
  color: #272727;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list {
  font-weight: bold;
  font-size: 9pt;
  color: #426bb1;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}

.basic_85bold {
  font-weight: bold;
  font-size: 9pt;
  color: #373737;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.basic_85 {
  font-weight: none;
  font-size: 9pt;
  color: #373737;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.basic_85 A:link {
  color: #373737;
  text-decoration: none;
}
.basic_85 A:active {
  color: #373737;
  text-decoration: none;
}
.basic_85 A:visited {
  color: #373737;
  text-decoration: none;
}
.basic_85 A:hover {
  color: #373737;
  text-decoration: underline;
}
.page {
  font-weight: bold;
  font-size: 9pt;
  color: #5d5d5d;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}
.page A:link {
  color: #5d5d5d;
  text-decoration: none;
}
.page A:active {
  color: #5d5d5d;
  text-decoration: none;
}
.page A:visited {
  color: #5d5d5d;
  text-decoration: none;
}
.page A:hover {
  color: #ff6600;
  text-decoration: none;
}
.board2 {
  font-weight: bold;
  font-size: 9pt;
  color: #1b4d70;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.comment {
  font-weight: bold;
  font-size: 9pt;
  color: #717272;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.comment2 {
  font-weight: bold;
  font-size: 9pt;
  color: #cf441f;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.daes_date {
  font-weight: none;
  font-size: 9pt;
  color: #a9a9a9;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}
.daes_name {
  font-weight: bold;
  font-size: 9pt;
  color: #686767;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.m-premium {
  font-weight: bold;
  font-size: 11pt;
  color: #4c4b4b;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list02 {
  font-weight: bold;
  font-size: 11pt;
  color: #d94773;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list03 {
  font-weight: bold;
  font-size: 11pt;
  color: #79303c;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list04 {
  font-weight: bold;
  font-size: 11pt;
  color: #42620f;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list05 {
  font-weight: bold;
  font-size: 11pt;
  color: #b23128;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list06 {
  font-weight: bold;
  font-size: 11pt;
  color: #127ea8;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list07 {
  font-weight: bold;
  font-size: 11pt;
  color: #e2560e;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list08 {
  font-weight: bold;
  font-size: 11pt;
  color: #0d6fc8;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.list09 {
  font-weight: bold;
  font-size: 11pt;
  color: #4e4c4d;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: -1px;
}
.left_search1 {
  border-right: #c2d3f3 1px solid;
  border-top: #c2d3f3 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #c2d3f3 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #c2d3f3 1px solid;
  background-color: #c2d3f3;
  text-decoration: none;
}
.left_search2 {
  border-right: #f6cdda 1px solid;
  border-top: #f6cdda 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #f6cdda 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #f6cdda 1px solid;
  background-color: #f6cdda;
  text-decoration: none;
}
.left_search3 {
  border-right: #eccdd1 1px solid;
  border-top: #eccdd1 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #eccdd1 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #eccdd1 1px solid;
  background-color: #eccdd1;
  text-decoration: none;
}
.left_search4 {
  border-right: #c7dea0 1px solid;
  border-top: #c7dea0 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #c7dea0 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #c7dea0 1px solid;
  background-color: #c7dea0;
  text-decoration: none;
}
.left_search5 {
  border-right: #fbccae 1px solid;
  border-top: #fbccae 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #fbccae 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #fbccae 1px solid;
  background-color: #fbccae;
  text-decoration: none;
}
.left_search6 {
  border-right: #bce6f7 1px solid;
  border-top: #bce6f7 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #bce6f7 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #bce6f7 1px solid;
  background-color: #bce6f7;
  text-decoration: none;
}
.left_search7 {
  border-right: #fbd4bb 1px solid;
  border-top: #fbd4bb 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #fbd4bb 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #fbd4bb 1px solid;
  background-color: #fbd4bb;
  text-decoration: none;
}
.left_search8 {
  border-right: #cae6f6 1px solid;
  border-top: #cae6f6 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #cae6f6 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #cae6f6 1px solid;
  background-color: #cae6f6;
  text-decoration: none;
}
.left_search9 {
  border-right: #cacaca 1px solid;
  border-top: #cacaca 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #cacaca 1px solid;
  color: #585858;
  line-height: 17px;
  border-bottom: #cacaca 1px solid;
  background-color: #cacaca;
  text-decoration: none;
}
.m_box {
  font-weight: bold;
  font-size: 8.5pt;
  color: #000000;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
  line-height: 11pt;
}
.m_box2 {
  font-weight: bold;
  font-size: 9pt;
  color: #000000;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
  line-height: 11pt;
}
.m_box2 A:link {
  color: #000000;
  text-decoration: none;
}
.m_box2 A:active {
  color: #000000;
  text-decoration: none;
}
.m_box2 A:visited {
  color: #000000;
  text-decoration: none;
}
.m_box2 A:hover {
  color: #ff6600;
  text-decoration: underline;
}
.sms_box2 {
  border-right: #ccb9bf 0px solid;
  border-top: #ccb9bf 0px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #ccb9bf 0px solid;
  color: #494949;
  line-height: 17px;
  border-bottom: #ccb9bf 0px solid;
  background-color: transparent;
  text-decoration: none;
  overflow-y: hidden;
  word-spacing: -1px;
}
.sms_input2 {
  border-right: #ecd6dc 1px solid;
  border-top: #ecd6dc 1px solid;
  font-size: 9pt;
  word-spacing: -0.1em;
  border-left: #ecd6dc 1px solid;
  color: #494949;
  line-height: 17px;
  border-bottom: #ecd6dc 1px solid;
  background-color: #ffffff;
  text-decoration: none;
}
.maemul_title {
  font-size: 9pt;
  font-weight: none;
  color: #346590;
  line-height: 14pt;
  text-decoration: none;
  word-spacing: 0px;
}
.maemul_title A:link {
  color: #346590;
  text-decoration: none;
}
.maemul_title A:active {
  color: #346590;
  text-decoration: none;
}
.maemul_title A:visited {
  color: #346590;
  text-decoration: none;
}
.maemul_title A:hover {
  color: #000000;
  text-decoration: none;
}
.hot-category {
  font-weight: bold;
  font-size: 11pt;
  color: #010c0f;
  line-height: 13pt;
  text-decoration: none;
  word-spacing: -1px;
}
.maeview {
  font-weight: bold;
  font-size: 11pt;
  color: #333333;
  line-height: 13pt;
  text-decoration: none;
  word-spacing: -1px;
}
.maeview_summary {
  font-weight: bold;
  font-size: 11pt;
  color: #062c64;
  line-height: 13pt;
  text-decoration: none;
  word-spacing: -1px;
}

.maeview_summary_444444 {
  font-weight: none;
  font-size: 11pt;
  color: #000000;
  line-height: 13pt;
  text-decoration: none;
  word-spacing: -1px;
}

.maeview_no {
  font-weight: bold;
  font-size: 11pt;
  color: #000000;
  line-height: 13pt;
  text-decoration: none;
  word-spacing: 0px;
}
.maeview_money {
  font-weight: bold;
  font-size: 11pt;
  color: #c50a43;
  line-height: 13pt;
  text-decoration: none;
  word-spacing: 0px;
}
.update2 {
  font-weight: none;
  font-size: 9pt;
  color: #a06d7d;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: -1px;
}
.update2-1 {
  font-weight: none;
  font-size: 9pt;
  color: #a06d7d;
  line-height: 12pt;
  text-decoration: none;
  word-spacing: 0px;
}

/* 지도 */
#map_area {
  width: 100%;
  height: 400px;
  margin: 0 0 0 0;
  padding: 0;
}
#naver_map {
  position: relative;
  width: 100%;
  height: 400px;
  z-index: 1;
}
.buttons {
  position: absolute;
  top: 0;
  right: 10px;
  width: 60px;
  z-index: 9;
  padding: 5px;
  text-align: center;
  letter-spacing: -0.5px;
}
.buttons > .control-btn {
  width: 45px;
  height: 45px;
  margin: 5px 0;
  border: 1px solid #363636;
  background-color: #fff;
  font-size: 13px;
  font-weight: bold;
  color: #363636;
  cursor: pointer;
  letter-spacing: -0.5px;
}
.buttons > .control-on {
  background-color: #363636;
  border: 2px solid #fff;
  color: #fff;
}
.buttons > .control-btn > #map_img {
  margin-left: -7px;
  margin-top: -5px;
  float: left;
}

.map_item {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 20px;
  z-index: 1;
}
.map_item > .map_item_name {
  display: table-cell;
  min-width: 30px;
  margin: 0;
  padding: 0 10px;
  border-top-left-radius: var(--size15);
  border-bottom-left-radius: var(--size15);
  border-top-right-radius: var(--size15);  /*추가 260211*/
  border-bottom-right-radius: var(--size15); /*추가 260211*/
  background-color: #333;
  font-weight: bold;
  color: #fff;
  line-height: 30px;
  text-align: center;
  white-space: nowrap;
}
.map_item > .map_item_count {
  display: table-cell;
  min-width: 30px;
  margin: 0;
  padding: 0 10px;
  border-top-right-radius: var(--size15);
  border-bottom-right-radius: var(--size15);
  font-size: var(--size15);
  font-weight: bold;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
.list01 .map_item > .map_item_count {
  background-color: #60b7db;
}
.list02 .map_item > .map_item_count {
  background-color: #4fc7a1;
}
.list03 .map_item > .map_item_count {
  background-color: #6fc44a;
}
.list04 .map_item > .map_item_count {
  background-color: #f6b83f;
}
.list05 .map_item > .map_item_count {
  background-color: #f47c47;
}
.list06 .map_item > .map_item_count {
  background-color: #ef5a89;
}
.list07 .map_item > .map_item_count {
  background-color: #b77ed2;
}
.list08 .map_item > .map_item_count {
  background-color: #7c8fe5;
}
.list09 .map_item > .map_item_count {
  background-color: #6e8598;
}
/* 지도 */

/* ==============================
  페이지네이션
============================== */
.pagination_box {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  font-size: 16px;
  width: 1115px;
  margin-left: 265px;
  margin-top: 35px;
}
.pagination_box p {
  color: #434343;
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #cbcbcb;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  cursor: pointer;
  transition: var(--transition3s);
}
.pagination_box p:hover {
  filter: var(--hover-bright);
}
.pagination_box p.page_now {
  color: #ff6600;
}
.pagination_box p a {
  width: 100%;
  height: 100%;
}

#ghost_layer {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

#ghost_layer > #load_layer {
  position: absolute;
  z-index: 11;
  box-shadow: 2px 3px 18px #00000059;
}

#ghost_layer > #load_layer > div {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

#ghost_layer > #ghost_close {
  position: absolute;
  width: 73px;
  height: 32px;
  border: 0;
  background-color: #18534d;
  cursor: pointer;
  z-index: 12;
}

/* ==============================
  SMS 스타일
============================== */
.closeContainer {
  text-align: right;
  position: absolute;
  top: 3px;
  right: 3px;
  cursor: pointer;
}

.closeContainer span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #3f6ec1;
  text-align: center;
  line-height: 20px;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.closeContainer span:hover {
  background: #00246f;
}

#sms_box {
  width: 456px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  padding: 30px 35px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f9fd', endColorstr='#dde1e6', GradientType=1);
  border: 8px solid #aebfdd;
  background: #fff;
}

#sms_box > #sms_title {
  padding-bottom: 30px;
  font-family: "Nanum Gothic", sans-serif;
  font-size: 30px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.6px;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#sms_box > #sms_title span {
  color: #ff7646;
}

#sms_box > #sms_title svg {
  margin-right: 10px;
}

.sms_subT {
  text-align: center;
  font-size: 16px;
  letter-spacing: -0.25px;
  color: #373737;
  margin-bottom: 20px;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sendBtn {
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.25px;
  background: #3f6ec1;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.sendBtn:hover {
  background: #2b4d88;
}

.sendBtn p {
  padding: 18px 0;
}

#sms_box > #sms_maemul {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fafafa;
  overflow-y: hidden;
  resize: none;
  font-size: 10pt;
  font-weight: normal;
  color: #404040;
}

#info_pic {
  float: left;
  margin: 2px;
}

#info_txt {
  float: left;
  margin: 2px;
  font-weight: bold;
  line-height: 120%;
}

#sms_box > #sms_msg {
  display: block;
  width: 100%;
  height: 111px;
  padding: 20px 10px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
  overflow-y: hidden;
  resize: none;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}

#sms_box > #sms_phone {
  width: 100%;
  padding: 18px 15px;
  font-size: 10pt;
  text-align: center;
  line-height: 28px;
  border: 1px solid #cbcbcb;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}

#sms_box > #sms_phone span.numTxt {
  font-size: 16px;
  font-weight: 700;
  color: #373737;
  letter-spacing: -0.25px;
  margin-right: 5px;
}

#sms_box > #sms_phone span:not(.numTxt) {
  display: inline-block;
  width: 5px;
  border-top: 2px solid #000;
}

#sms_box > #sms_phone > input[type="number"] {
  width: 84px;
  height: 34px;
  font-size: 10pt;
  font-weight: normal;
  color: #333;
  text-align: center;
}

#sms_box > #sms_phone > input[type="button"] {
  width: 50px;
  height: 24px;
  background-color: #18534d;
  border: 1px solid #18534d;
  border-radius: 0;
  font-size: 10pt;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
}

#sms_box > #sms_private {
  width: 100%;
  /* margin: 10px auto; */
  font-size: 15px;
  font-weight: normal;
  color: #373737;
  text-align: left;
  line-height: 160%;
  border: 1px solid #d1d1d1;
  border-top: none;
  padding: 18px 14px;
  letter-spacing: -0.25px;
}

#sms_box > #sms_private > input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.check_agree {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  font-size: 15px;
  font-family: noto sans-serif;
  letter-spacing: -0.25px;
}

.check_agree input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border-radius: 0;
  /* ← 이 줄 추가! */
  border: 1px solid #999;
  /* 체크박스 외곽선 직접 지정 */
}

/* ==============================
  우측 퀵메뉴 스타일
============================== */
#sidebar {
  margin-left: 13px;
  top: 9px;
  right: 60px;
  width: auto;
  display: inline-block;
  left: unset;
  position: absolute;
}

/* ==============================
  매물상세페이지 프린트 스타일
============================== */
@media print {
  body * {
    visibility: hidden;
  }

  main,
  main * {
    visibility: visible;
  }

  main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
