@charset "euc-kr";
@import url("https://fonts.googleapis.com/css?family=Nanum+Gothic:400,700&amp;subset=korean");
@import url("//cdn.rawgit.com/hiun/nanumsquare/master/nanumsquare.css");

body {
  margin: 0;
  padding: 0;
  min-width: 1160px;
  background-color: #fff;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #333;
  width: 100%;
}
form {
  margin: 0;
  padding: 0;
}
img {
  margin: 0;
  padding: 0;
  border: 0;
}
button {
  margin: 0;
  padding: 0;
  background-color: #fff;
  outline: 0;
}
A:link {
  color: var(--black);
  text-decoration: none;
}
A:active {
  color: var(--black);
  text-decoration: none;
}
A:visited {
  color: var(--black);
  text-decoration: none;
}
A:hover {
  color: var(--black);
  text-decoration: none;
}
p {
  margin: 0;
  padding: 0;
}
ul,ol{
  list-style:none;
}

INPUT {
  height: 40px;
  font-size: 12pt;
  border: 1px solid var(--borderB);
  padding: 0 10px;
  outline: 0;
  width: 239px;
}
INPUT[class="radio"] + label {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 0;
  line-height: 0px;
  vertical-align: bottom;
  background-color: transparent;
  cursor: pointer;
  outline: 0;
}
.radio {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 0;
  line-height: 0px;
  vertical-align: bottom;
  background-color: transparent;
  cursor: pointer;
}
SELECT {
  height: 27px;
  font-size: 12pt;
  outline: 0;
}
textarea {
  outline: 0;
}
fileField {
  outline: 0;
}
dl {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
dd {
  margin: 0;
  padding: 0;
}
table {
  border: 0;
  padding: 0;
  border-spacing: 0;
  border-collapse: collapse;
}
.btn {
  padding: 5px 8px;
  border: 1px solid #fff;
  background-color: #fff;
  cursor: pointer;
}
.clear_left {
  clear: left;
  margin: 0;
  padding: 0;
}
.clear_right {
  clear: right;
  margin: 0;
  padding: 0;
}
.clear_both {
  clear: both;
  margin: 0;
  padding: 0;
}
.white_bold {
  font-weight: bold;
  color: #fff;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
.not_found {
  margin: 10px 0;
  font-size: 14pt;
  font-weight: bold;
  color: var(--black);
  text-align: center;
}
.popup_items {
  position: absolute;
  display: none;
  overflow: hidden;
  z-index: 99;
}

:root {
  --main: #31aa6d;
  --b-call: #31615e;
  --b-call-btn: #10cbbf;
  --grey: #555;
  --headerGrey: #d5d5d5;
  --titleRed: #ff3737;
  --subTxt: #505050;
  --borderB: #dedede;
  --fontC: #fff;
  --black: #000;
  --sms-bottom:#e0e0e0;
}

#blank_layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.7+0,0.7+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#b3000000',GradientType=0 ); /* IE6-9 */
}

/* blink */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* start */
#area_header {
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--main);
  border-bottom: 1px solid var(--headerGrey);
  background-color: #fff;
  z-index: 6;
  transition:all 0.2s ease 0s;
  overflow: hidden;
}
#top_logo {
  width: 1400px;
  height: 100px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

#top_logo > a{
  text-align: center;
}

.call_logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.call_logo span {
  width: 40%;
}
.call_logo span img {
  width: 90%;
  height: 100%;
  object-fit: contain;
}
.call_txt {
  text-align: left;
  font-weight: bold;
  font-size: 22px;
  line-height: 110%;
  margin-left: -10px;
}
.blink_txt {
  animation: blink 2s infinite;
  transition: all 0.2s linear 0;
}

.call_txt p:nth-of-type(1) {
  font-size: 18px;
  padding-left: 2px;
  text-align: center;
}
.call_txt p:nth-of-type(2) {
  color: #c00000;
  font-size: 24px;
}

#top_navi {
  /* border-top: 1px solid var(--main); */
  background-color: var(--main);
}
#top_navi > ul#top_menubar {
  max-width: 1400px;
  width:100%;
  height:70px;
  margin: 0 auto;
  list-style: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top_navi > ul#top_menubar > li{
  min-width:243px;
}
#top_navi > ul#top_menubar > li a {
    margin: 0 35px;
    padding: 10px 15px !important;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 38px;
    text-align: center;
    color: var(--fontC) !important;
    text-decoration: none;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    column-gap: 10px;
    min-width:284px;
}

#top_navi > ul#top_menubar > li a:hover {
  color: rgb(0, 0, 0) !important;
}

#top_navi > ul#top_menubar > li a > button {
  float: left;
  display: block;
  width: 26px;
  height: 26px;
  margin-top: 7px;
  margin-right: 7px;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}
.top_submenu {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  -moz-box-shadow: 0 0 2px 0 #393c45;
  -webkit-box-shadow: 0 0 2px 0 #393c45;
  box-shadow: 0 0 2px 0 #393c45;
  z-index: 100;
}
.top_submenu > .menu_box {
  width: 1400px;
  min-height: 100px;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #fff;
  color: #252525;
}
.top_submenu > .menu_box > .item_title {
  float: left;
  width: 300px;
  margin-left: 30px;
  padding-left: 10px;
  font-size: 21px;
  font-weight: bold;
  color: #252525;
  margin-bottom: 10px;
  font-weight: 700;
}
.top_submenu > .menu_box > .item_title > a {
  float: left;
  width: 300px;
  margin-left: 30px;
  padding-left: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #252525;
}
.top_submenu > .menu_box > .items {
  float: left;
  width: 1060px;
  padding: 0 10px;
}
.top_submenu > .menu_box > .items > div {
  float: left;
  width: 14.2%;
  margin: 0 0 20px 0;
  padding: 0;
}
.top_submenu > .menu_box > .items > .item {
  padding-left: 5px;
  font-size: 21px;
  font-weight: bold;
  color: var(--grey);
}
.top_submenu > .menu_box > .items > .item > a {
  padding: 2px 5px;
  border-radius: 5px;
  background-color: #fff;
  color: var(--grey);
  text-decoration: non;
}
#area_header > #submenu_total > #submenu_total_title {
  position: absolute;
  left: 0;
  padding-top: 20px;
  background-color: #f6fafb;
  border-right: 1px solid var(--headerGrey);
}
#area_header > #submenu_total > #submenu_total_title > #main_title {
  font-size: 24px;
  font-weight: bold;
  color: var(--grey);
}
#area_header > #submenu_total > #submenu_total_title > #sub_title {
  margin: 5px 0;
  font-size: 15px;
  font-weight: bold;
  color: #888;
}
#area_header > #submenu_total > .menu_box {
  padding-left: 300px;
}
#area_header > #submenu_total > .menu_box > .item_title {
  width: 200px;
}
#area_header > #submenu_total > .menu_box > .items {
  width: 760px;
}
#header_blank {
  height: 2px;
}

/* ??? end */

/* ??? */
.main_close_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: -20px -20px 0 0;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 20px;
  background-image: url("/img/header/btn_close.gif");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  z-index: 5;
}
#main_banner {
  /* position: relative; */
  width: 100%;
  margin-top: 164px;
}
.inner_banner{
  width:1400px;
  margin:0 auto;
  position:relative;
}
.leftBanenr{
  font-weight:700;
  font-family: 'NanumSquare';
  align-self: flex-start;
  margin-top: 5%;
}
.leftBanenr h3{
  font-size:45px;
  color:var(--black);
  letter-spacing: -0.35px;
  margin-bottom: 15px;
}
.leftBanenr h4{
  font-size: 57px;
  letter-spacing: -2.75px;
  color:var(--black);
  margin-bottom: 5px;
}
.leftBanenr h4 span{
  color:var(--main);
}
.leftBanenr div{
  /* background:var(--main); */
  color:#fff;
  font-size:25px;
  padding:9px 7px;
  /* letter-spacing: -0.5px; */
}
.leftBanenr div p{
 color:var(--main);
 font-weight: 700;
 font-size: 34.3px;
}
#main_map {
  position: fixed;
  visibility: hidden;
  top: 50% !important;
  right:0 !important;
  left: 50% !important;
  width: 1100px;
  height: 480px;
  background-color: #fff;
  border: 3px solid #3e4c5f;
  /* transform:translate(-50%,-40%) !important; */
}
#main_search {
  position: absolute;
  visibility: hidden;
  top: 0;
  right: 50px;
  width: 1100px;
  padding: 10px;
  background-color: #fff;
  border: 3px solid #3e4c5f;
  z-index: 1;
}
#main_sms {
  position: fixed;
  visibility: hidden;
  top: 50% !important;
  transform:translateY(-50%) !important;
  width: 1100px;
  padding: 10px;
  background-color: #fff;
  border: 3px solid #3e4c5f;
  z-index: 1;

}
#blackout {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.7+0,0.7+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* Chome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#b3000000',GradientType=0 ); /* IE6-9 */
}

.index_items {
  display: block;
  width: 1200px;
  margin: 0 auto;
  padding: 30px 0 10px 0;
}
.index_items > .index_item {
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
}
.index_items > a > .index_item {
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
  margin: 0;
}
.index_items > a > .index_item > .title_txt {
  padding: 10px 20px;
  border-bottom: 2px solid #282828;
  font-family: "NanumSquare";
  font-size: 22pt;
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_items > a > .index_item > .title_txt > .point {
  color: #e60000;
  font-size: 37px;
}
.index_items > .index_item > a > button.index_more {
  border: 0;
  font-family: "Spoqa Han Sans";
  font-size: 16px;
  font-weight: normal;
  color: #666;
  cursor: pointer;
  width: 90px;
  height: 28px;
  margin: 5px;
  border: 0;
  border: 1px solid #eee;
  border-radius: 15px;
}

/* ?????? ???? */

#index_search > #index_search_area > #search_tabs {
  width: 650px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

#index_search > #index_search_area > #search_tabs > button.index_search_tab {
  background: transparent;
  margin: 0 15px;
  font-weight: bold;
  padding: 0 0 15px 0;
  border: 0;
  font-size: 13pt;
  font-weight: normal;
  color: var(--black);
  cursor: pointer;
  font-weight: bold;
}
#index_search > #index_search_area > #search_tabs > button.tab_on {
  background-image: url("/img/index/search_tab_on.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  font-weight: bold;
  color: var(--main);
}
#index_search > #index_search_area > .index_search_box {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
  margin: 0 auto;
}
/* #index_search > #index_search_area > .index_search_box >.btn_search {
  float: left;
  width: 120px;
  height: 32px;
  margin: 1px;
  padding: 0;
  border: 0;
  background-color: var(--main);
  font-size: 12pt;
  font-weight: bold;
  color: #fff;
  text-align: center;
  z-index: 1;
} */
#index_search > #index_search_area > .index_search_box >.search_select {
  width: 100%;
  margin: 1px;
  font-size: 16px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  font-weight: bold;
  line-height: 43px;
  padding-left: 10px;
  border: 1px solid #dedede;
  background-color: #fff;
  position: relative;
}

#index_search > #index_search_area > .index_search_box >.search_select::after{
  display: block;
  content: '';
  background: url(/img/admin/select_arrow.png) no-repeat;
  background-position: top;
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  bottom: 50%;
  transform: translateY(50%);
}

#index_search > #index_search_area > .index_search_box > .search_selected {
  background-color: #eeecec;
  color: #5d5d5d;
}
#index_search > #index_search_area > .index_search_box > .search_moneys {
  display: none;
}
#index_search > #index_search_area > .index_search_box > input#titlei {
  float: left;
  width: 240px;
  height: 32px;
  margin: 1px 1px 0 1px;
  padding: 5px;
  border: 1px solid #878787;
  font-size: 10pt;
  text-align: center;
  z-index: 1;
}
#index_search > #index_search_area > .index_search_box > a > .btn_subway {
  width: 88px;
  height: 30px;
  margin: 2px;
  border: 0;
  border-radius: 5px;
  font-size: 10pt;
  font-weight: normal;
  color: #fff;
  line-height: 30px;
  font-weight: bold;
}
#index_search > #index_search_area > .search_slider_item {
  position: absolute;
  display: none;
  border: 1px solid #dedede;
  background-color: #fff;
  z-index: 10;
}
#index_search > #index_search_area > .search_select_item {
  position: absolute;
  display: none;
  min-width: 80px;
  max-height: 180px;
  border: 1px solid #dedede;
  background-color: #fff;
  overflow-y: scroll;
  z-index: 10;
}
#index_search > #index_search_area > .search_select_item > .select_option {
  display: block;
  min-width: 100px;
  height: 30px;
  margin: 0;
  padding: 0 5px;
  background-color: #fff;
  font-size: 10pt;
  color: #303030;
  line-height: 30px;
  cursor: pointer;
}
#index_search
  > #index_search_area
  > .search_select_item
  > .select_option:hover {
  background-color: var(--main);
  color: #fff;
}
#index_search > #index_search_area > .search_select_item > .select_selected {
  padding-left: 30px;
  background-color: var(--main);
  background-image: url("/img/index/option_selected.png");
  background-repeat: no-repeat;
  color: #fff;
}

/* ?????? ?? */

#map_area {
  width: 100%;
  height: 474px;
  margin: 0 0 0 0;
  padding: 0;
}
#naver_map {
  position: relative;
  width: 100%;
  height: 474px;
  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;
}

.map_item {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 20px;
  z-index: 1;
}
.map_item > .map_item_name {
  display: table-cell;
  min-width: 65px;
  margin: 0;
  padding: 0 10px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: #fff;
  font-weight: bold;
  color: #333;
  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: 15px;
  border-bottom-right-radius: 15px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
#area_body {
  display: block;
  position: relative;
  width: 1570px;
  margin: 20px auto;
}
#area_body > #contents_left {
  float: left;
  position: relative;
  width: 220px;
}
#area_body > #contents_right {
  /* position: fixed; */
  /* top: 250px !important; */
  /* right: -13px; */
  right:0;
  z-index: 6;
  overflow: hidden;
  float:right;
}
#area_body > #contents_body {
  float: left;
  width: 1160px;
  margin: 0 0 0 10px;
  overflow: hidden;
}
.search_title {
  margin: 0;
  padding: 30px 0;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -1.7px;
  color: #363636;
  text-align: center;
}
.search_box {
  display: table;
  width: 98%;
  margin: 0 auto;
  border-top: 2px solid var(--black);
}
.search_box > .search_items {
  display: table-row;
}
.search_box > .search_items > .search_items_part {
  display: table-cell;
  width: 120px;
  height: 60px;
  margin: 0;
  padding: 0 10px;
  border-bottom: 1px solid var(--sms-bottom);
  background-color: #f2f2f2;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.5px;
  line-height: 60px;
  color: #424242;
}
.search_box > .search_items > .search_items_part > .point {
  float: left;
  margin-right: 5px;
  font-size: 15px;
  line-height: 60px;
  color: #424242;
}
.search_box > .search_items > .search_items_vals {
  position: relative;
  display: table-cell;
  margin: 0;
  padding: 0 10px;
  border-bottom: 1px solid var(--sms-bottom);
}
.search_box > .search_items > .search_items_vals > .search_item_money {
  position: absolute;
  top: 0;
}
.search_box
  > .search_items
  > .search_items_vals
  > .search_item_money
  > .search_item_money_bar {
  display: inline-table;
  width: 340px;
  height: 50px;
  margin: 0;
  padding: 0 10px;
  line-height: 25px;
  text-align: center;
  overflow: hidden;
}
.search_box
  > .search_items
  > .search_items_vals
  > .search_item_money
  > .search_item_money_bar
  > .search_item_money_txt {
  float: left;
  width: 80px;
  margin: 11px 15px 11px 0;
  padding: 0;
  font-size: 12pt;
  font-weight: bold;
  color: var(--grey);
  text-align: center;
}
.search_box
  > .search_items
  > .search_items_vals
  > .search_item_money
  > .search_item_money_bar
  > .search_money_txt {
  float: left;
  width: 220px;
  height: 27px;
  margin: 0;
  padding: 0 2px;
  border: 0;
  font-size: 14pt;
  font-weight: bold;
  color: #e00;
  text-align: center;
}
.search_box
  > .search_items
  > .search_items_vals
  > .search_item_money
  > .search_item_money_bar
  > .search_money_txt
  > .search_money_won {
  font-size: 11pt;
  font-weight: normal;
  color: var(--grey);
}
.search_box
  > .search_items
  > .search_items_vals
  > .search_item_money
  > .search_item_money_bar
  > .search_money_slider {
  float: left;
  width: 200px;
  height: 18px;
  margin: 0;
  padding: 0;
}
.search_box
  > .search_items
  > .search_items_vals
  > .search_item_money
  > .money_comment {
  font-size: 13px;
  font-weight: normal;
}
.search_box > .search_items > .search_items_vals > .search_item {
  width: 120px;
  height: 30px;
}
.search_box > .search_items > .search_items_vals > .search_item_multicheckbox {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0 0 0 30px;
  line-height: 25px;
  text-align: left;
}
.search_box
  > .search_items
  > .search_items_vals
  > .search_item_multicheckbox
  > .search_checkbox {
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin: 0 0 0;
  border: 0;
  outline: 0;
}
.search_box > .search_items > #titlei {
  width: 200px;
  height: 30px;
  margin: 0;
  padding: 0;
  text-align: center;
}
.search_buttons {
  width: 100%;
  text-align: center;
}
.search_buttons > button {
  margin: 20px 5px;
  padding: 0;
  border: 0;
  cursor: pointer;
}

/* sms */
.sms_title {
  margin: 0;
  padding: 30px 0;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -1.7px;
  color: #363636;
  text-align: center;
}
.sms_box {
  display: table;
  width: 98%;
  margin: 0 auto;
  border-top: 2px solid var(--black);
}
.sms_box > #sms_infos {
  display: table-cell;
  width: 382px;
  border-bottom: 1px solid var(--sms-bottom);
  vertical-align: middle;
  line-height: 130%;
}
.sms_box > #sms_infos > #sms_pic {
  float: left;
  width: 160px;
  height: 120px;
  margin: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sms_box > #sms_infos > #sms_info {
  float: left;
  width: 205px;
  overflow: hidden;
}
.sms_box > #sms_infos > #sms_info > .info_item {
  display: inline-block;
  width: 90px;
  margin: 5px 5px;
  padding: 7px 0px;
  border-radius: 20px;
  background-color: #3d3d3d;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
}
.sms_box > #sms_infos > #sms_info > .info_vals {
  display: inline-block;
  margin: 3px 0;
  padding: 5px 5px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: left;
}
.sms_box > #sms_infos > #sms_info > .basic_sms {
  display: block;
  margin: 5px 0;
  font-size: 20px;
  line-height: 45px;
  font-weight: bold;
  text-align: center;
}
.sms_box > #sms_form {
  display: table-cell;
  width: 670px;
}
.sms_box > #sms_form > .sms_items {
  display: table-row;
}
.sms_box > #sms_form > .sms_items > .sms_items_part {
  width: 100%;
  margin: 0;
  padding: 0 10px;
  border-bottom: 1px solid #d1d1d1;
  background-color: #fafafa;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 60px;
  color: var(--black);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.sms_box > #sms_form > .sms_items > .sms_items_part > .point {
  float: left;
  margin-right: 5px;
  font-size: 15px;
  line-height: 60px;
  color: #424242;
}
.sms_box > #sms_form > .sms_items > .sms_items_vals {
  position: relative;
  display: table-cell;
  width: 520px;
  margin: 0;
  padding: 0 10px;
  border-bottom: 1px solid var(--sms-bottom);
}
.sms_box > #sms_form > .sms_items > .sms_items_vals > .sms_item {
  width:30%;
  height: 30px;
}
.sms_box > #sms_form > .sms_items > .sms_items_vals > p {
  margin: 3px 0;
  font-size: 14px;
  font-weight: normal;
  color: #909090;
}
.sms_buttons {
  width: 100%;
  padding: 15px 0 0 0;
  text-align: center;
}
.sms_buttons > p > .radio_private {
  width: 22px;
  height: 22px;
  border: 0;
  cursor: pointer;
  outline: 0;
  line-height: 0px;
  vertical-align: middle;
  background-color: transparent;
}

.sms_buttons > p > label{
  margin-left:5px;
  margin-right:10px;
}

.sms_buttons > button {
  padding: 0;
  border: 0;
  letter-spacing: -0.7px;
  font-weight: 500;
  line-height: 34px;
  width: 162px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  text-align: center;
  margin: 20px auto;
  background: var(--main);
  color: #fff;
  font-size: 18px;
}

.sms_buttons > button:hover{transform: scale(1.1);}

.sms_box > #sms_infos_inner {
  display: table-cell;
  width: 382px;
  border-bottom: 1px solid var(--sms-bottom);
  vertical-align: middle;
}
.sms_box > #sms_infos_inner > #sms_pic_inner {
  float: left;
  width: 160px;
  height: 120px;
  margin: 5px;
  border: 1px solid var(--sms-bottom);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sms_box > #sms_infos_inner > #sms_info_inner {
  float: left;
  width: 205px;
  overflow: hidden;
}
.sms_box > #sms_infos_inner > #sms_info_inner > .info_item {
  display: inline-block;
  width: 90px;
  margin: 5px 5px;
  padding: 7px 15px;
  border-radius: 20px;
  background-color: #3d3d3d;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
}
.sms_box > #sms_infos_inner > #sms_info_inner > .info_vals {
  display: inline-block;
  margin: 3px 0;
  padding: 5px 5px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #444;
  text-align: left;
}
.sms_box > #sms_infos_inner > #sms_info_inner > .basic_sms {
  display: block;
  margin: 5px 0;
  font-size: 20px;
  line-height: 45px;
  font-weight: bold;
  text-align: center;
}
.sms_box > #sms_form_inner {
  display: table-cell;
  width: 670px;
}
.sms_box > #sms_form_inner > .sms_items {
  display: table-row;
}
.sms_box > #sms_form_inner > .sms_items > .sms_items_part {
  display: table-cell;
  width: 150px;
  height: 60px;
  margin: 0;
  padding: 0 10px;
  border-bottom: 1px solid var(--sms-bottom);
  background-color: #f2f2f2;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.5px;
  line-height: 60px;
  color: #424242;
}
.sms_box > #sms_form_inner > .sms_items > .sms_items_part > .point {
  float: left;
  margin-right: 5px;
  font-size: 15px;
  line-height: 60px;
  color: #424242;
}
.sms_box > #sms_form_inner > .sms_items > .sms_items_vals {
  position: relative;
  display: table-cell;
  width: 520px;
  margin: 0;
  padding: 0 10px;
  border-bottom: 1px solid var(--sms-bottom);
}
.sms_box > #sms_form_inner > .sms_items > .sms_items_vals > .sms_item {
  height: 30px;
}
.sms_box > #sms_form_inner > .sms_items > .sms_items_vals > p {
  margin: 3px 0;
  font-size: 14px;
  font-weight: normal;
  color: #909090;
}

/* sms */
#left_items {
  width: 220px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#left_items > a > .left_item {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0;
  border: 1px solid #d3d3d3;
  background-repeat: no-repeat;
  font-size: 12px;
  font-weight: bold;
  color: var(--black);
  text-align: center;
}
#left_items > .left_item {
  width: 100%;
  margin: 0 0 10px 0;
  
}

#left_items > .left_item a{
  display:inline-block;
  width:100%;
  height:100%;
}

#left_items > .left_item:nth-of-type(4){
  border: 1px solid #d3d3d3;
}

#left_items > li.left_item > .left_area {
  width: 200px;
  margin: 0 10px 10px;
  padding: 0;
  list-style-type: none;
}
#left_items > li.left_item > .left_area li.area_d1 {
  width: 100%;
  padding:20px 0;
  padding-bottom:0;
}
#left_items > li.left_item > .left_area li.area_d2 {
  float: left;
  width: 50%;
  margin: 0;
  padding: 3px;
}
#left_items > li.left_item > .left_area li.area_d2 .area_txt {
  margin: 0;
  padding: 10px 0;
  border: 1px solid #d3d3d3;
}
#left_tel {
  width: 218px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 27px;
  font-weight: bold;
  letter-spacing: -1px;
  color: #ff6c00;
  text-align: center;
  margin-top: 6px;
  margin-bottom:20px;
}
.area_gu {
  text-align: center;
}
.area_dong {
  background-color: #fff;
  font-size: 15px;
  font-weight: bold;
  color: #3d3d3d;
  letter-spacing: -0.5px;
  text-align: center;
}
.area_dong:hover {
  background-color: var(--main);
  color: #fff;
}

.sms_container image{
  cursor:pointer;
  transition: all 0.3s ease 0s;
}

.sms_container:hover image{
  filter:brightness(0.5);
}


/* include_right.php */
.right_menu{
  width:170px;
  /* border:1px solid #d3d3d3; */
}

/* .right_menu:nth-of-type(1){
  border:none;
} */

.right_menu:nth-of-type(1) li:nth-of-type(1){
  margin: 0;
  height: auto;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
}
.right_menu li{
  height: 50px;
  line-height: 50px;
  background: #fff;
  color: #2b2b2b;
  font-size: clamp(14px,1vw,15px);
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding-left: 12px;
  border: 1px solid #d3d3d3;
  /* border-top:none; */
  transition:all 0.3s ease 0s;
  cursor:pointer;
  /* border-left: none; */
  /* border-right: none; */
  margin-bottom:10px;
}

.right_menu > li:hover{
  background:#d3d3d3;
  /* transform: translateX(10px); */
  /* filter: drop-shadow(2px 4px 6px black); */
}
.right_menu li.sawContainer:hover{
  background:var(--main);
}
.right_menu li.sawList:hover{
  filter:none;
  background: none;
}
.right_menu li.sawList ul{
  height: calC(117px* 4);
  overflow: hidden;
}
.right_menu li.sawList li{height:auto;border:none;padding:0;}
.right_menu li.sawList img{
  transition: all 0.3s ease 0s;
  border:1px solid #d3d3d3;
}
.right_menu li.sawList img:hover{
  filter: brightness(0.8);
}
.right_menu li.sawList i:hover{
  opacity:0.7;
}
.right_menu li:nth-of-type(1){
  /* background:var(--main); */
  /* color:#fff; */
  /* border:none; */
  /* border-bottom:1px solid #d3d3d3; */
}

/* .right_menu li:last-of-type{
  border-bottom:none;
} */

.right_menu li > img{
  margin-left:6px;

}

.right_menu img{
  width:100%;
  object-fit:contain;
}

.right_menu li i{
  width:30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right_menu .sawContainer{background:var(--main);border-bottom:none;color:#fff;border:none;margin-bottom:0;}

.right_menu li.sawList{
  flex-direction: column;
  height: auto;
  padding: 10px 0;
  /* border: 12px solid var(--main); */
  border:2px solid #d3d3d3;
  border-top:none;
}

.right_menu .sawList div{padding:0 10px;}

.right_menu .sawList i{color:var(--main);font-size:21px;transition:all 0.3s ease 0s;}

.changeWhite{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* ???? ????? style ?? */

.search_area_title {
  border: 1px solid #d1d1d1;
  display: flex;
  column-gap: 27px;
  margin-bottom: 20px;
  align-items: baseline;
}
.search_area_title h1{
  font-size: 28px;
  font-weight: 600;
  padding: 12.5px;
  padding-right: 0;
  letter-spacing: -0.7px;
}
.search_area_title h1 span{
  color: #ff6c00;
  letter-spacing: -0.35px;
}

.search_area_title p {
  font-size: 16px;
  color: #767676;
}
/* #search_area_title p span {
  font-size: 15px;
  margin-left: 20px;
  font-weight: normal;
  text-shadow: none;
} */
#search_area_title2 {
  width: 100%;
  padding: 18px 10px 18px 10px;
  color: #fff;
  background-repeat: no-repeat;
  background-color: var(--main);
}
#search_area_title2 p {
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 0px #b1b1b1;
}
#search_area_title2 p span {
  font-size: 15px;
  margin-left: 20px;
  font-weight: normal;
  text-shadow: none;
}
#search_train_title {
  display: none;
  width: 100%;
  padding: 12px 10px 11px;
  background-color: var(--main);
}
.list_search_box {
  display: none;
  margin: 0 0 30px 0;
  padding: 0 0px 10px;
}
.list_search_box > .list_search_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 18px;
}
.searchL_container {
  position: absolute;
  left: 0;
}
.list_search_box > .list_search_item .search_item {
  background: var(--main);
  padding: 18px 0;
  color: #fff;
  border: 1px solid #d1d1d1;
  width: 25%;
  text-align: center;
  transition:all 0.3s ease 0s;
  cursor:pointer;
}
.list_search_box > .list_search_item .search_item a{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.list_search_box > .list_search_item .search_item:hover {
  background-color: #d1d1d1;
}
.list_search_box > .list_search_item .search_item_on {
  background-color: #d1d1d1;
}

.list_search_box > .list_search_item .search_item_on a{
  color: var(--black);
}

.list_search_box2 .list_search_item a .search_item {
  width: 200px !important;
  justify-content: stretch;
  margin: 5px 9px;
}
.list_search_box2 .list_search_item a:first-of-type .search_item {
  margin-left: 0;
}
.list_search_box2 .list_search_item a:last-of-type .search_item {
  margin-right: 0;
}
.list_search_box2 #search_area_items {
  padding-left: 0 !important;
}

.list_search_box2 {
  display: block;
}
.list_search_box2 > .list_search_item {
  display: flex;
}

.list_search_box2 dl a {
  margin: 0 auto;
}
.list_search_box2 dl a dd {
  width: 100%;
  text-align: center;
}

#list_title_tab {
  width: 100%;
  padding-bottom: 10px;
  font-size: 18pt;
  font-weight: bold;
  color: var(--black);
  font-family: "Noto Sans KR", sans-serif;
  border-bottom: 2px solid #a1a1a1;
}
#list_title_tab > .list_sort_item {
  float: right;
  height: 32px;
  margin: 0 5px;
}
#list_title_tab > .list_sort_item > button {
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  border: 0;
  cursor: pointer;
}
#list_title_tab > .list_sort_item > button#list_type_webzine {
  background-image: url("/img/info/ico_list2_off.png");
}
#list_title_tab > .list_sort_item > button#list_type_square {
  background-image: url("/img/info/ico_list1_off.png");
}
#list_title_tab > .list_sort_item > select.order_item {
  height: 32px;
}

.main_good_title {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border-bottom: 2px solid #999;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.main_good_title > .item_more {
  height: 21px;
  margin: 5px;
  border: 0;
  color: var(--black);
  letter-spacing: -1px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  transition:all 0.3s ease 0s;
}

.main_good_title:hover > .item_more{
  transform:translateY(-10%);
}

.main_good_title > .item_more i {
  border-radius: 50%;
  width: 17px;
  height: 17px;
  position: relative;
  background: var(--main);
  text-align: center;
  line-height: 15px;
}
.main_good_title > .item_title {
  margin: 0;
  padding: 10px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -1px;
  color: #222838;
}
.main_good_title > .item_title img {
  display: none;
}
.main_good_title > .item_title > .item_point {
  font-size: 28px;
  font-weight: bold;
  color: var(--main);
}
.main_good_title > .item_title > .item_point > p {
  color: var(--black);
  display: inline-block;
}
#contents_body a:nth-child(3) .main_good_title > .item_title > .item_point > p {
  color: var(--titleRed);
  display: inline-block;
}
.main_good_title > .item_title > .item_subtitle {
  font-size: 16px;
  font-weight: normal;
  color: #404040;
  display: none;
}

/* ??? ????? */
.main_good_item_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.mgood_item_area {
  float: left;
  transition: all 0.3s ease 0s;
}
.mgood_item_area > .mgood_item_box {
  margin: 0 auto;
  padding: 0 0 1px 0;
  border: 0;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #d1d1d1;
  padding-bottom:10px;
  height: 443.5px;
}
.mgood_item_area:hover {
  filter: drop-shadow(1px 1px 3px #d3d3d3);
  transform: translateY(-10px);
}

.mgood_item_area > .mgood_item_box > .mgood_item_title {
  width: 100%;
  margin: 0;
  padding: 12px 7px;
  background-color: #e6f9e9;
  border-bottom: 1px solid #d1d1d1;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--black);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.mgood_item_area > .mgood_item_box > .mgood_item_title p:nth-of-type(1){
    width: 65px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    background: var(--main);
    color: #fff;
    font-weight: 700;
}

.mgood_item_area > .mgood_item_box > .mgood_item_title p:nth-of-type(2){
  margin-left:14px;
}

.mgood_item_area > .mgood_item_box > .mgood_item_pic {
  position: relative;
  margin: 10px auto 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  text-align: right;
}
.mgood_item_area > .mgood_item_box > .mgood_item_pic > .cont_comp {
  position: absolute;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
.mgood_item_area > .mgood_item_box > .mgood_item_pic > .mgood_item_besticon {
  position: absolute;
  right: 0;
  padding: 5px;
  font-size: 11pt;
  font-weight: bold;
  z-index: 2;
  top: 0px;
}
.mgood_item_area > .mgood_item_box > .mgood_item_pic > .mgood_item_overinfo {
  position: absolute;
  display: none;
  padding: 70px 10px 0 10px;
  text-align: center;
  overflow: hidden;
  z-index: 3;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/var(--subTxt)+0,505050+100&0.65+0,0.65+100 */
  background: -moz-linear-gradient(
    top,
    rgba(48, 48, 48, 0.6) 0%,
    rgba(48, 48, 48, 0.6) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(48, 48, 48, 0.6) 0%,
    rgba(48, 48, 48, 0.6) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(48, 48, 48, 0.6) 0%,
    rgba(48, 48, 48, 0.6) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc303030', endColorstr='#cc303030',GradientType=0 ); /* IE6-9 */
}
.mgood_item_area
  > .mgood_item_box
  > .mgood_item_pic
  > .mgood_item_overinfo
  > .more_icon {
  position: absolute;
  width: 100%;
  margin-left: -10px;
  text-align: center;
}
.mgood_item_area
  > .mgood_item_box
  > .mgood_item_pic
  > .mgood_item_overinfo
  > .more_icon
  > .mgood_more_icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  padding: 13px;
  border-radius: 30px;
}
.mgood_item_area
  > .mgood_item_box
  > .mgood_item_pic
  > .mgood_item_overinfo
  > .more_icon
  > .view {
  background-color: #303030;
}
.mgood_item_area
  > .mgood_item_box
  > .mgood_item_pic
  > .mgood_item_overinfo
  > .more_icon
  > .mgood_more_icon
  > img {
  width: 35px;
  height: 35px;
}

.mgood_item_area .mgood_item_info {
  width: 100%;
  margin:15px auto;
  font-size: 13px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  align-items: center;
}
.mgood_item_info img{margin-right:8px;}
.mgood_item_area .mgood_item_info > .mgood_item_info_address {
  font-weight: bold;
  color: #303030;
}
.mgood_item_area .mgood_item_info .mgood_item_info_room {
  font-weight: bold;
  color: var(--black);
  font-size: 16px;
  display: flex;
  align-items: center;
}
.mgood_item_area .mgood_item_info .mgood_item_info_size {
  font-weight: normal;
  font-size: 16px;
  color: var(--black);
  display: flex;
  align-items: center;
}
.mgood_item_area .mgood_item_info > .mgood_item_info_size strong:nth-child(2) {
  font-size: 16px;
}
.mgood_item_area
  > .mgood_item_box
  > .mgood_item_info
  > .mgood_item_info_size
  > .cal_size {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  color: #444;
  cursor: pointer;
}
.mgood_item_area > .mgood_item_box > .mgood_item_info > .mgood_item_info_bar {
  padding: 0 7px;
  color: var(--black);
  font-size: 16px;
}
.mgood_item_area .mgood_item_box .mgood_item_money {
  width: 250px;
  margin: 5px auto;
  padding: 2px 0;
  text-align: center;
  height: 30px;
  line-height: 30px;
  margin-bottom: 10px;
}
.mgood_item_area .mgood_item_box .mgood_item_money .mgood_item_money_icon {
  float: left;
  text-align: center;
}
.mgood_item_area .mgood_item_box .mgood_item_money .mgood_item_money_money {
  float: right;
  padding: 0 0 0 0;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#list_boxs{border-bottom:1px solid #a9a9a9;}

.list_item_area {
  position: relative;
  padding:30px 0;
  display:flex;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;
  column-gap: 30px;
  cursor:pointer;
  justify-content: space-between;
  transition: all 0.3s ease 0s;
}
.list_item_area:last-of-type{
  border-bottom:none;
}
.list_item_area:hover{
  box-shadow: 10px 0px 24px #d1d1d1;
}
.list_container{
  width:230px;
}
.list_container .subContainer{
  display:flex;
}
.item_besticon {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  padding: 2px 6px;
}
.list_item_area > a > .item_pics > .item_more_pic {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  width: 40px;
  height: 40px;
  background-image: url("/img/info/ico_plus.png");
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 2;
}
.list_item_area .item_pics > .item_pic {
  background-repeat: no-repeat;
  background-size: cover;
  width:230px !important;
  height:184px !important;
  border: 1px solid #d1d1d1;
}
.item_pics{
  position: relative;
  width:230px !important;
  height:184px !important;
}
.item_pics .subContainer{
  display:flex;
}

.list_container .train_line_con{
  padding:0;
}

.item_money_icon{
  display: flex;
  column-gap: 15px;
  align-items: center;
  height:32px;
  margin-bottom:10px;
}

.item_money_icon span:nth-of-type(2) span{
  font-size:24px;
  font-weight:700;
}

.item_info{
  width: 460px;
  height:224px;
}

.list_item_area .item_title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.75px;
  color:var(--black);
  margin-bottom:15px;
}

.item_info .item_address{
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.75px;
  margin-bottom:15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.list_item_area .item_code {
  color: #ff6c00;
}

.list_R .item_code{
  font-size:18px;
  font-weight:600;
}

dd.list_item_area > .item_info > a > .item_address {
  float: left;
  margin: 0 5px 2px 8px;
  padding: 5px 0;
  font-size: 21px;
  font-weight: bold;
  color: var(--black);
  margin-top: 0;
  margin-bottom: -4px;
  transform: translateY(-1px);
}
dd.list_item_area > .item_info > a > .item_category {
  float: left;
  margin: 0 5px 5px 10px;
  padding: 5px 0;
  font-size: 18px;
  font-weight: bold;
  color: #09f;
}
dd.list_item_area > .item_info > a > .item_size {
  float: left;
  margin: 0 5px 5px 5px;
  padding: 5px 0;
  font-size: 18px;
  font-weight: bold;
  color: #270;
}
dd.list_item_area > .item_info > a > .item_size > span > .cal_size {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
dd.list_item_area > .item_info > a > .item_room {
  float: left;
  margin: 0 5px 5px 10px;
  padding: 5px 0;
  font-size: 22px;
  font-weight: bold;
}
dd.list_item_area > .item_info > a > .item_bath {
  float: left;
  margin: 0 5px 5px 5px;
  padding: 5px 0;
  font-size: 22px;
  font-weight: bold;
}
dd.list_item_area > .item_info > a > .item_veranda {
  float: left;
  margin: 0 5px 5px 5px;
  padding: 5px 0;
  font-size: 22px;
  font-weight: bold;
}
dd.list_item_area > .item_info > a > .item_floor {
  float: left;
  margin: 0 5px 5px 10px;
  padding: 5px 0;
  font-size: 16px;
  font-weight: normal;
}
dd.list_item_area .subContainer a .item_train {
  float: left;
  margin: 0 5px 5px 5px;
  padding: 5px 0;
  font-size: 16px;
  margin-bottom: 5px;
}
dd.list_item_area .subContainer a .item_train .train_line {
  padding: 3px 5px;
  color: #fff;
  border-radius: 15px;
  font-weight: bold;
}
dd.list_item_area .subContainer a .item_train em {
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}
dd.list_item_area > .item_info > a > .item_comment {
  width: 100%;
  margin: 0 5px 5px 5px;
  padding: 5px 0;
  font-size: 16px;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
dd.list_item_area > .item_info > a > .item_admin {
  width: 100%;
  margin: 0 0 5px 0;
  padding: 5px;
}
dd.list_item_area > .item_info > a > .item_admin > .admin_pic {
  display: table-cell;
  width: 50px;
  padding: 0 10px 0 0;
  vertical-align: middle;
}
dd.list_item_area > .item_info > a > .item_admin > .admin_pic > img {
  width: 50px;
  height: 50px;
  border-radius: 17px;
}
dd.list_item_area > .item_info > a > .item_admin > .admin_info {
  display: table-cell;
  padding: 0 10px 0 0;
  font-size: 16px;
  font-weight: normal;
  vertical-align: middle;
}
dd.list_item_area > .item_info > a > .item_admin > .admin_info > img {
  width: 40px;
  height: 40px;
}
dd.list_item_area > .item_info > a > .item_admin > .admin_info > .point {
  font-size: 18px;
  font-weight: bold;
}
.admin_pic.info_img > img {
  width: 60px !important;
  height: 60px !important;
}

.kakaoNum{
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  letter-spacing: -0.75px;
}

.mgood_money {
  margin: 3px 0 5px;
  padding: 2px 0;
}


.icon_money_bun {
  background-color: #26629a;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #fff;
  width: 62px;
  height: 100%;
  line-height: 32px;
  display: inline-block;
  text-align: center;
}
.num_money_bun {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  display: block;
}
.icon_money_fin {
  padding: 3px 7px;
  background-color: #ca774c;
  border: 1px solid #b36945;
  font-size: 17px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #fff;
}
.num_money_mae{
  color:#26629a !important;
  font-size: 24px;
  font-weight: 700;
}
.num_money_fin {
  color:var(--main) !important;
}

.num_money_sil {
  color:#ff6c00 !important;
}
.mgood_item_container .num_money_sil span{
  font-size: 24px;
  font-weight: 700;
}
.icon_money_suic {
  padding: 3px 7px;
  background-color: #d24474;
  border: 1px solid #ba3e6a;
  font-size: 17px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #fff;
}
.num_money_suic {
  font-size: 24px;
  font-weight: bold;
  color: #992424;
}
.icon_money_fer {
  padding: 3px 7px;
  background-color: #8944c8;
  border: 1px solid #713bb8;
  font-size: 17px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #fff;
}
.num_money_fer {
  font-size: 24px;
  font-weight: bold;
  color: var(--grey);
}
.icon_money_jen {
  padding: 3px 7px;
  background-color: #f37315;
  border: 1px solid #e05b2b;
  font-size: 17px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #fff;
}
.num_money_jen {
  font-size: 24px;
  font-weight: bold;
  color: var(--grey);
}
.icon_money_sec {
  padding: 3px 7px;
  background-color: #a80d0e;
  border: 1px solid #7d0001;
  font-size: 17px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #fff;
}
.num_money_sec {
  font-size: 24px;
  font-weight: bold;
  color: var(--grey);
}
.icon_money_wol {
  padding: 3px 7px;
  background-color: #ff205e;
  border: 1px solid #ec0808;
  font-size: 17px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #fff;
}
.num_money_wol {
  font-size: 24px;
  font-weight: bold;
  color: var(--grey);
}
.type_money {
  font-size: 24px;
  font-weight: 700;
}

#submenu_community > .menu_box > .items {
  padding-right: 152px;
}
#submenu_community > .menu_box > .items > div {
  float: right;
}

#list_page {
  position: relative;
  width: 860px;
  margin: 20px auto;
  text-align: center;
}
.page_now {
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: var(--main);
    color: #fff;
    width: 53px;
    height: 53px;
    border: 1px solid #cbcbcb;
    font-weight: 500;
}
.page_num {
    font-size: 16px;
    font-weight: normal;
    color: #8f96a5;
    cursor: pointer;
    border: none;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: #ffffff;
    color: #565656;
    width: 53px;
    height: 53px;
    border: 1px solid #cbcbcb;
    font-weight: 500;
}
.page_first {
  width:53px;
  height:53px;
  border: 1px solid #aaa;
  background-color: #fff;
  font-size: 16px;
  font-weight: normal;
  color: var(--black);
  cursor: pointer;
}
.page_prev {
  width:53px;
  height:53px;
  border: 1px solid #aaa;
  background-color: #fff;
  font-size: 16px;
  font-weight: normal;
  color: var(--black);
  cursor: pointer;
  margin-right: 15px;
  margin-left: 5px;
}
.page_next {
  width:53px;
  height:53px;
  border: 1px solid #aaa;
  background-color: #fff;
  font-size: 16px;
  font-weight: normal;
  color: var(--black);
  cursor: pointer;
  margin-left: 15px;
  margin-right: 5px;
}
.page_end {
  width:53px;
  height:53px;
  border: 1px solid #aaa;
  background-color: #fff;
  font-size: 16px;
  font-weight: normal;
  color: var(--black);
  cursor: pointer;
}

#maemul_view_area {
  position: relative;
  width: 1160px;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
}

#maemul_view_area > #top_banner_area > .page_area > img {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
#maemul_view_area > #top_banner_area > .page_area > #top_banner_close {
  position: absolute;
  top: 50px;
  right: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--black);
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.adTxt{
  font-weight:500;
  font-size:28px;
}

.adTxt span {
  color: #ff6c00;
  font-weight:400;
}

.orange{
  color: #ff6c00 !important;
}

.liveBanner{
  background:#e6f9e9;
  padding: 25px;
  text-align:center;
  font-size:22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 20px;
}

.liveBanner .orange{
  font-weight: 600;
}

.view_info{
  display:flex;
  justify-content: space-between;
  column-gap: 25px;
}

.view_info > div{
  width:50%;
}

.view_info .info_box_mini{
  border:1px solid #d1d1d1;
}

.view_info .info_box_mini:nth-of-type(1){
  margin-bottom:15px;
}
.view_info .info_box_mini h2{
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 24px;
  letter-spacing: -1.5px;
  padding: 20px 0;
}
.view_info .info_box_mini:nth-of-type(1) h2{
  background: var(--main);
}

.view_info .info_box_mini:nth-of-type(1) li{
  display:flex;
  align-items: center;
  height: 57px;
  line-height: 57px;
  border-bottom:1px solid #d1d1d1;
  box-sizing: content-box;
}


.view_info .info_box_mini:nth-of-type(1) li:nth-of-type(1){
  display:block;
  height:auto;
  line-height: normal;
}

.view_info .info_box_mini:nth-of-type(1) li:last-of-type{
  border-bottom:none;
}

.view_info .info_box_mini:nth-of-type(1) li h3{
  width:30%;
  font-size:18px;
  font-weight:500;
  text-align: center;
  background:#fafafa;
  border-right:1px solid #d1d1d1;
  color:var(--black);
}

.view_info .info_box_mini:nth-of-type(1) li p{
  width:70%;
  padding-left: 15px;
  font-size:18px !important;
  font-weight: 500;
  letter-spacing: -0.7px;
  color:var(--black);
}


.view_info .info_box_mini:nth-of-type(2) h2{
  background:#4d4d4d;
}

.view_info .info_box_mini:nth-of-type(2) > ul{
  display:flex;
  height: 179px;
}

.view_info .info_box_mini:nth-of-type(2) > ul > li{
  width:30%;
}

.view_info .info_box_mini:nth-of-type(2) > ul > li:nth-of-type(2){
  width:70%;
}

.view_info .info_box_mini:nth-of-type(2) > ul ul{
  height:179px;
}

.view_info .info_box_mini:nth-of-type(2) > ul ul li{
  display:flex;
  align-items: center;
  border-bottom:1px solid #d1d1d1;
  height: 33.333%;
}

.view_info .info_box_mini:nth-of-type(2) > ul ul li:last-of-type{
  border-bottom:none;
}

.view_info .info_box_mini:nth-of-type(2) > ul ul h3{
  width: 30%;
  text-align: center;
  background: #f9f9f9;
  border: 1px solid #d1d1d1;
  border-bottom: none;
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
  letter-spacing:-0.7px;
  height: 100%;
  line-height: 58.66px;
}

.view_info .info_box_mini:nth-of-type(2) > ul ul h3:nth-of-type(1){
  border-top: none;
}

.view_info .info_box_mini:nth-of-type(2) > ul ul li p{
  margin-left: 15px;
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: -0.7px;
  height: 100%;
  line-height: 58.66px;
}

.view_info .info_box_mini:nth-of-type(2) > ul ul div{
  width: 35%;
  height: 100%;
  line-height: 58.66px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}


.view_info .info_box_mini:nth-of-type(2) > ul ul span{
  letter-spacing: -0.7px;
  font-weight:500;
  line-height: 34px;
  width: 102px;
  height: 34px;
  text-align: center;
  display:flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  cursor:pointer;
  transition: all 0.3s ease 0s;
}



.profile img{
  width:100%;
  height: 100%;
  object-fit: cover;
}


.human p{
  width: 70%;
}

.phone p{
  width: 35%;
}

.phone span{
  background: var(--main);
  color:#fff;
}

.phone span:hover{
  transform:scale(1.1);
}

.kakao p{
  width: 35%;
}

.kakao span{
  background: #fae100;
  color:#371d1e;
}

.detail_watch {
  color:var(--black);
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  background: #fafafa;
  padding: 25px 0;
  border: 1px solid #d1d1d1;
  margin-top: 20px;
  letter-spacing: -0.35px;
  margin-bottom: 50px;
}
#watchPeople {
  color: #ff6c00;
  animation: blink 1s infinite;
}

.basicInf{
  margin-bottom:50px;
}

.basicInf h3{
  font-size: 29px;
  letter-spacing: -0.7px;
  font-weight: 500;
  color: var(--black);
}

.basicInf ul{
  display:flex;
  flex-wrap:wrap;
  border-top:3px solid var(--black);
  border-bottom:1px solid #d1d1d1;
  margin-top:15px;
}

.basicInf ul li{
  width: calC(50% - 1.5px);
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid #d1d1d1;
  box-sizing: content-box;
  border-top: none;
}

.basicInf ul li:nth-of-type(1),.basicInf ul li:nth-of-type(2){
  border-top: 1px solid #d1d1d1;
}

.basicInf ul li:nth-of-type(even){
  border-left:none;
}

.basicInf ul li:last-of-type{
  width:100%;
  border-bottom:none;
}


.basicInf ul h3{
  width: 30%;
  max-width:173px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background: #fafafa;
  border-right: 1px solid #d1d1d1;
  color: var(--black);
}


.basicInf ul p{
  width: 70%;
    padding-left: 15px;
    font-size: 18px !important;
    font-weight: 500;
    letter-spacing: -0.7px;
}

.counsel{
  margin-bottom:50px;
}

.counsel h3{
  font-size: 29px;
  letter-spacing: -0.7px;
  font-weight: 500;
  color: var(--black);
}

.counsel ul:nth-of-type(1){
  display:flex;
  flex-wrap:wrap;
  border:1px solid #d1d1d1;
  border-top:3px solid var(--black);
  margin-top:15px;
  background: #fafafa;
  padding: 40px;
  position:relative;
  column-gap: 20px;
  justify-content: space-between;
}

.counsel ul:nth-of-type(1) li{
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.counsel ul:nth-of-type(1) label{
  font-size: 18px;
  color:var(--black);
  letter-spacing: -0.35px;
  font-weight: 500;
}

.counsel ul:nth-of-type(1) input{
  padding: 20px 15px;
  width:289px;
}

.counsel ul:nth-of-type(1) input::placeholder{
  color:var(--black);
  opacity:0.57;
  font-size:18px;
  font-weight:500;
}

.counsel ul:nth-of-type(1) li:nth-of-type(1){
  width:25%;
}

.counsel ul:nth-of-type(1) li:nth-of-type(2){
  position:relative;
  width:50%;
}

.counsel ul:nth-of-type(1) li:nth-of-type(3){
  width:17%;
}

.counsel ul:nth-of-type(1) li:nth-of-type(3) p{
  height: 100%;
  font-size: 30px;
  text-align: center;
  line-height: 79px;
  font-weight: 500;
  background: #282828;
  color: #fff;
  transition: all 0.3s ease 0s;
  border:1px solid #222838;
  box-sizing: border-box;
  cursor:pointer;
}

.counsel ul:nth-of-type(1) li:nth-of-type(3) p:hover{
  border-radius: 14px;
  font-size:34px;
}

.counsel ul li:nth-of-type(2) input{width:560px;}

.priv{
  position:absolute;
  bottom:10px;
  left:40px;
  display:flex;
  flex-direction: row !important;
  font-size:16px;
  color:var(--black);
  letter-spacing: -0.35px;
  font-weight: 500;
}

 /* ¸ð´Þ ÄÜÅÙÃ÷ ½ºÅ¸ÀÏ */
 .modal-content {
  position: relative;
  height:200px;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #d1d1d1;
  max-width: 100%; /* ¸ð´Þ ³Êºñ¸¦ Á¶ÀýÇÒ ¼ö ÀÖ½À´Ï´Ù. */
  max-height: 80%; /* ¸ð´Þ ³ôÀÌ¸¦ Á¶ÀýÇÒ ¼ö ÀÖ½À´Ï´Ù. */
  overflow: hidden; /* ³»¿ëÀÌ ³ÑÄ¡´Â °æ¿ì ¼û±è Ã³¸® */
  margin-top: 10px;
}

/* ¸ð´Þ ³»¿ë ½ºÅ©·Ñ °¡´ÉÇÏµµ·Ï ½ºÅ¸ÀÏ */
.scrollable-content {
  max-height: 100%; /* ³»¿ëÀÇ ÃÖ´ë ³ôÀÌ¸¦ ÁöÁ¤ÇÕ´Ï´Ù. */
  overflow-y: auto; /* ³»¿ëÀÌ ³ôÀÌ¸¦ ÃÊ°úÇÏ´Â °æ¿ì ½ºÅ©·Ñ È°¼ºÈ­ */
}

.sms_person{
  padding: 5px;
  border-radius: 5px;
  font-weight: 500;
}

.evnetB{
  margin-bottom:50px;
}

.evnetB > div{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.location{
  margin-bottom:50px;
}
.location h3{
  font-size: 29px;
  letter-spacing: -0.7px;
  font-weight: 500;
  color: var(--black);
}

.location div{
  margin-top: 15px;
  border: 1px solid #d1d1d1;
  border-top: 3px solid var(--black);
}


#maemul_view_area > table.info_box_mini td.info_t_thr {
  width: 4.3%;
  height: 50px;
  border-bottom: 1px dotted var(--black);
  border-left: 1px dotted var(--black);
  background-color: #f0f0f0;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 19px;
  letter-spacing: -0.5px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  color: var(--black);
}
#maemul_view_area > table.info_box_mini td.info_i_thr {
  width: 16%;
  height: 50px;
  padding: 0 10px;
  border: 1px dotted var(--black);
  background-color: #fff;
  font-size: 19px;
  font-weight: normal;
  text-align: left;
  font-weight: bold;
}

#maemul_view_area > table.info_box_mini td.member_pic {
  width: 30%;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px dotted var(--black);
}
#maemul_view_area > table.info_box_mini td.info_t {
  width: 20%;
  height: 50px;
  border: 1px dotted var(--black);
  font-size: 17px;
  letter-spacing: -0.5px;
  font-weight: bold;
  line-height: 40px;
  text-align: left;
  color: var(--black);
  padding-left: 7px;
}
#maemul_view_area > table.info_box_mini td.info_i {
  width: 50%;
  height: 50px;
  padding: 0 10px;
  border: 1px dotted var(--black);
  background-color: #fff;
  font-size: 19px;
  font-weight: bold;
  text-align: left;
  position: relative;
}
#maemul_view_area > table.info_box_mini td.info_i > button.view_online_btn {
  width: 119px;
  margin: 0;
  padding: 8px 12px;
  border: 0;
  background-color: #4e4e4e;
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #fff;
  margin: 0 5px;
  transition: all 0.3s ease 0;
}
#maemul_view_area
  > table.info_box_mini
  td.info_i
  > button.view_online_btn:hover {
  opacity: 0.7;
}
#maemul_view_area > table.info_box {
  width: 1160px;
  margin: 0 auto;
}
#maemul_view_area > table.info_box > caption {
  margin: 20px 0 0px 0;
  text-align: center;
}
#maemul_view_area > table.info_box > caption > .info_title {
  display: inline-block;
  padding: 20px 0;
  font-size: 30px;
  letter-spacing: -1.5px;
  font-weight: bold;
  color: #333333;
  text-align: center;
}
#maemul_view_area > table.info_box > caption > .info_title > .info_subtitle {
  display: none;
  font-size: 30px;
  font-weight: bold;
  color: var(--subTxt);
}
#maemul_view_area > table.info_box td.info_t {
  padding: 20px 5px 20px 5px;
  border-bottom: 1px solid #b0b0b0;
  background-color: #f0f0f0;
  font-size: 18px;
  letter-spacing: -0.5px;
  font-weight: bold;
  text-align: center;
}
#maemul_view_area > table.info_box td.info_i {
  padding: 20px 5px 20px 9px;
  border-bottom: 1px solid #b0b0b0;
  background-color: #fff;
  font-size: 20px;
  font-weight: normal;
  text-align: left;
}
#maemul_view_area > table.info_box td.info_13 {
  width: 13%;
}
#maemul_view_area > table.info_box td.info_37 {
  width: 390px;
  height: 70px;
  font-weight: bold;
  line-height: 120%;
}
#maemul_view_area > table.info_box td.info_87 {
  width: 87%;
  padding-right: 5px;
}
#maemul_view_area > table.info_box td.info_c {
  text-align: center;
}
#maemul_view_area > table.info_box td.info_l {
  text-align: left;
}
#maemul_view_area > table.info_box td.info_title {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_category {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_code {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_address {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_size {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_floor {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_room {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_train {
  font-weight: bold;
}
#maemul_view_area > table.info_box td.info_i > .info_item_train {
  display: inline-block;
  margin: 2px 5px;
  padding: 2px 15px;
  border-radius: 15px;
  font-size: 17.4px;
  letter-spacing: -1px;
  color: #fff;
}
#maemul_view_area > table.info_box td.info_blank {
  background-image: url("");
}
#maemul_view_area > table.info_box td#usr_add_image {
  width: 1160px;
  margin: 0;
  padding: 0;
  text-align: center;
}
#maemul_view_area > #info_maemul_title {
  width: 1160px;
  margin: 20px auto 0;
  padding: 25px;
  border: 1px solid #d1d1d1;
  font-weight: 600;
  letter-spacing: -0.75px;
  color: var(--black);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  column-gap:14px;
  font-size:26px;
  margin-bottom:20px;
}

#maemul_pic {
  display: block;
  /* width: 623px; */
  height: 467px;
  /* margin: 10px; */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border:1px solid #d1d1d1;
  margin-bottom:5px;
}

.thumnail{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap:5.7px;
  margin-bottom: 10px;
  width:100%;
}

.thumnail img{
  border:1px solid #d1d1d1;
}

.maemul_pic_item {
  width: 100%;
  height: 80px;
  cursor: zoom-in;
}

.show_container {
  text-align: center;
  cursor: pointer;
  background:#ff6c00;
  padding: 10px;
  border:1px solid #ff6c00;
  box-sizing: border-box;
  color: #fff;
  transition:all 0.3s ease 0s;
}

.show_container:hover{
  background:none;
  color:#ff6c00;
}

.all_meamul_show {
  font-size:18px;
  font-weight:500;
  display: inline-block;
  width: 100%;
  height: 100%;
}

#option_box{
  margin-bottom:50px;
}

#option_box > h3{
  font-size: 29px;
  letter-spacing: -0.7px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 15px;
}

#option_box > ul:first-of-type{
  border-top:3px solid var(--black);
}

#option_box ul >li{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  text-align: center;
  grid-template-rows: repeat(1, 176px);
  border-bottom:1px solid #cbcbcb;
  column-gap: 30px;
}

#option_box ul:last-of-type > li{
  grid-template-columns: 140px calC(100% - 140px);
  grid-template-rows: repeat(1, 122px);
  height: 123px;
}

#option_box ul > li h3{
  background:#fafafa;
  height: 100%;
  line-height: 177px;
  min-width: 166px;
  letter-spacing: -0.35px;
}

#option_box ul:last-of-type > li h3{
  line-height: 122px;
  background:url('/img/include/pattern.png') no-repeat center center;
  color: #fff;
  font-weight: 500;
  background-size: cover;
}

#option_box ul:last-of-type > li p{
  border: 1px solid #cfcfcf;
  width: 93%;
  margin: 0 auto;
  font-size: 18px;
  padding: 20px;
  text-align: left;
  font-weight: 500;
}

#option_box .opt_item{
  border: 1px solid #cfcfcf;
  width: 90%;
  height: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

#option_box .item_icon{
  border-radius: 50%;
  padding: 5px;
  background:#e4e4e4;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#option_box .opt_item  img {
  height: 30px;
  object-fit: contain;
  max-width: 40px;
}
#maemul_view_area > #option_box .icon_on {

  background:#cbeed0;
}
#ad{
  margin-bottom:50px;
}

#ad h3{
    font-size: 29px;
    letter-spacing: -0.7px;
    font-weight: 500;
    color: var(--black);
    border-bottom: 3px solid var(--black);
    padding-bottom: 15px;

}

#result_view{
  margin-bottom:50px;
}

#result_view h3{
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -0.7px;
  padding-bottom:15px;
  color:var(--black);
}

#result_view h3 span{
  color: var(--main);
}

#result_view > ul{
  border-top:2px solid var(--black);
}

#result_view .list_item_area{
  position: relative;
    padding: 30px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d1d1d1;
    column-gap: 30px;
    cursor: pointer;
    justify-content: space-between;
    transition: all 0.3s ease 0s;
}

#view_btns {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}


#view_btns > button.view_btn {
  width: 120px;
  padding: 15px 20px;
  border: 0;
  background-color: #5f5f5f;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1.7px;
  color: #fff;
  text-align: center;
}

#page_title_area {
  border: 1px solid #d1d1d1;
  display: flex;
  column-gap: 27px;
  margin-bottom: 30px;
  align-items: baseline;
}

#page_title_area h1{
  font-size: 28px;
  font-weight: 600;
  padding: 12.5px;
  padding-right: 0;
  letter-spacing: -0.7px;
}

#page_title_area h1 span{
  color: #ff6c00;
  letter-spacing: -0.35px;
}

#page_title_area p{
  font-size: 16px;
  color: #767676;
}

#page_title_area > #title {
  display: inline-block;
  margin: 0;
  padding: 0 10px 20px 10px;
  border: 0;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -1.5px;
  color: #252525;
}
#page_title_area > #title > #sub_title {
  color: #666;
}

#page_body_area {
  width: 100%;
  margin: 10px 0 20px;
  /* padding: 10px; */
  border: 0;
  overflow-x: hidden;
}
ol.notice_body {
  margin: 0;
  padding: 0;
}
ol.notice_body > li {
  margin: 0 10px 10px 30px;
  font-size: 15px;
  font-weight: normal;
}
ol.notice_body > li.depth1 {
  margin: 0 10px 30px 30px;
  font-size: 21px;
  font-weight: bold;
  width: 100%;
}
ol.notice_body > li.depth2 {
  margin: 0 10px 20px 30px;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}
.notice_subitem {
  font-size: 15px;
  font-weight: normal;
}

#staff_introduce {
  width: 100%;
  margin: 0 0 10px 0;
}
#staff_introduce > a > .staff_introduce_item {
  float: left;
  width: 360px;
  margin: 10px;
  padding: 0;
  background-color: #e9e9e9;
}
#staff_introduce > a > .staff_introduce_item > .staff_introduce_name {
  width: 100%;
  margin: 0;
  padding: 10px;
  background-color: #b31617;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px;
  color: #fff;
}
#staff_introduce
  > a
  > .staff_introduce_item
  > .staff_introduce_name
  > .staff_introduce_upmu {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -1px;
  color: #ccc;
}
#staff_introduce > a > .staff_introduce_item > .staff_introduce_pic {
  float: left;
  width: 100px;
  height: 100px;
  margin: 10px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  overflow: hidden;
}
#staff_introduce > a > .staff_introduce_item > .staff_introduce_info {
  float: left;
  width: 228px;
  margin: 10px 0;
  padding: 0;
}
#staff_introduce > a > .staff_introduce_item > .staff_introduce_info > p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 20px;
}
#staff_introduce
  > a
  > .staff_introduce_item
  > .staff_introduce_info
  > p
  > .staff_introduce_part {
  font-size: 15px;
  font-weight: normal;
  color: #686d7a;
}
#staff_introduce
  > a
  > .staff_introduce_item
  > .staff_introduce_info
  > p
  > .staff_introduce_tel {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #333;
}
#staff_introduce
  > a
  > .staff_introduce_item
  > .staff_introduce_info
  > p
  > .staff_introduce_hp {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #cc2020;
}
#staff_introduce
  > a
  > .staff_introduce_item
  > .staff_introduce_info
  > p
  > .staff_introduce_kakao {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #333;
}
#staff_introduce > a > .staff_introduce_item > p {
  margin: 10px 0;
  text-align: center;
}
#staff_introduce > a > .staff_introduce_item > p > .staff_link {
  width: 90%;
  padding: 10px;
  border: 0;
  background-color: #686d7a;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -1px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

#board_list_submenu {
  width: 97%;
  margin: 20px 0 5px;
  margin: 10px auto;
  margin-top: 20px;
}
#board_list_submenu > .item_left {
  float: left;
  padding-left: 4px;
}
#board_list_submenu > .item_left > select {
  width: 120px;
  height: 30px;
  margin: 0;
}
#board_list_submenu > .item_left > input {
  width: 120px;
  height: 30px;
  margin: 0;
  border: 1px solid #707070;
}
#board_list_submenu > .item_left > button {
  width: 80px;
  height: 30px;
  margin: 0;
  border: none;
  background-color: var(--main);
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

#btn_write {
  padding: 12px 45px;
  background: var(--main);
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.75px;
  font-weight: 500;
  border: 1px solid #d1d1d1;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  position: absolute;
  right: 0;
  bottom: 0;
  display:none;
}

#btn_write:hover{
  background:none;
  color:var(--main);
  border:1px solid var(--main);
}

.board_B{
  position:relative;
}

table.board_box {
  width: 98%;
  border-top: 2px solid #999;
}
td.board_item {
  padding: 26px 5px;
  border: 1px solid var(--borderB);
  background-color: #fafafa;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.35px;
  color: var(--black);
}
td.board_value {
  padding: 15px 15px;
  border: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.175px;
}
td.board_value label{
  width:auto;
}
td.board_value > INPUT[class="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  line-height: 0px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #d1d1d1;
  margin-left:15px;
}


td.board_value > INPUT[class="btn"] {
  padding: 5px 15px;
  border: 1px solid #616161;
  background-color: #616161;
  color: #fff;
}
td.board_value > .board_small {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.175px;
}
td.board_value > .board_small_point {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.175px;
}

#pass .board_small{
  margin-left:15px;
}
#board_private_title {
  margin: 38px 0 5px 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.35px;
  color: var(--black);
}
#board_private_btn {
  margin: 20px 0;
  font-size: 15px;
  text-align: center;
}
#board_private_btn > INPUT[class="radio"] {
  width: 25px;
  height: 25px;
  border: 0;
  cursor: pointer;
  line-height: 0px;
  vertical-align: middle;
  background-color: transparent;
}
#board_btns {
  width: 100%;
  margin: 36px 0;
  text-align: center;
  display:flex;
  justify-content: center;
  column-gap:10px;
}
#board_btns li{
  padding: 17px 50px;
  background: var(--main);
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.75px;
  font-weight: 500;
  border: 1px solid #d1d1d1;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

#board_btns li:nth-of-type(2){
  background:#444;
}

#board_btns li:hover{
  border: 1px solid var(--main);
  color:var(--main);
  background:none;
}

#board_btns li:nth-of-type(2):hover{
  border: 1px solid #444;
  color:#444;
  background:none;
}

.board_point {
  font-weight: bold;
  margin-left:10px;
  margin-right:5px;
}
.board_point:nth-of-type(2){
  margin-left:5px;
  margin-right:10px;
}
button.board_btn {
  width: 80px;
  height: 30px;
  margin: 0;
  border: 0;
  background-color: #707070;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
#board_memo {
  color: var(--black);
  font-weight: bold;
}
#board_writer {
  padding: 10px;
  background-color: var(--sms-bottom);
  font-size: 15px;
  font-weight: normal;
  color: #404040;
  text-align: right;
}
#board_writer > .board_attr {
  float: left;
  margin: 5px;
  font-size: 15px;
  font-weight: normal;
  color: var(--grey);
  text-align: left;
  cursor: pointer;
}
#board_writer > .board_attr > .attr_size {
  font-size: 13px;
  font-weight: normal;
  color: #999;
}

dd.gallery_item {
  float: left;
  width: 25%;
  padding: 20px 15px;
}
dd.gallery_item > .gallery_box {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ededed;
  cursor: pointer;
}
dd.gallery_item > .gallery_box > .item_pic {
  width: 100%;
  height: 190px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90% 90%;
}
dd.gallery_item > .gallery_box > .item_title {
  padding: 10px 10px;
  background-color: #dbeef4;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--black);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-shadow: 1px 1px 0px #b1b1b1;
}

dl#board_list_box > dd#online_list_item_number {
  width: 5%;
}
dl#board_list_box > dd#online_list_item_part {
  width: 18%;
}
dl#board_list_box > dd#online_list_item_category {
  width: 14%;
}
dl#board_list_box > dd#online_list_item_address {
  width: 23%;
}
dl#board_list_box > dd#online_list_item_writer {
  width: 13%;
}
dl#board_list_box > dd#online_list_item_re {
  width: 13%;
}
dl#board_list_box > dd#online_list_item_date {
  width: 13%;
}
dl#board_list_box > dd.online_list_item_v_number {
  float: left;
  width: 5%;
  margin: 0 1px 0 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 11pt;
  font-weight: normal;
  color: var(--black);
  text-align: center;
}
dl#board_list_box > dd.online_list_item_v_part {
  float: left;
  width: 18%;
  margin: 0 1px 0 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 11pt;
  font-weight: normal;
  color: var(--black);
  text-align: center;
}
dl#board_list_box > dd.online_list_item_v_category {
  float: left;
  width: 14%;
  margin: 0 1px 0 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 11pt;
  font-weight: normal;
  color: var(--black);
  text-align: center;
}
dl#board_list_box > dd.online_list_item_v_address {
  float: left;
  width: 23%;
  margin: 0 1px 0 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 11pt;
  font-weight: normal;
  color: var(--black);
  text-align: center;
}
dl#board_list_box > dd.online_list_item_v_writer {
  float: left;
  width: 13%;
  margin: 0 1px 0 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 11pt;
  font-weight: normal;
  color: var(--black);
  text-align: center;
}
dl#board_list_box > dd.online_list_item_v_re {
  float: left;
  width: 13%;
  margin: 0 1px 0 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 11pt;
  font-weight: normal;
  color: var(--black);
  text-align: center;
}
dl#board_list_box > dd.online_list_item_v_date {
  float: left;
  width: 13%;
  margin: 0 1px 0 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 11pt;
  font-weight: normal;
  color: var(--black);
  text-align: center;
}
table.online_view_box {
  width: 98%;
  border-top: 2px solid var(--black);
  table-layout: fixed;
}
td.online_view_item {
  width: 15%;
  padding: 20px 5px;
  border: 1px solid var(--borderB);
  background-color: var(--sms-bottom);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
td.online_view_vals {
  width: 85%;
  padding: 15px 15px;
  border: 1px solid var(--borderB);
  background-color: #fff;
  font-size: 18px;
  font-weight: normal;
}

#index_community {
  display: table;
  width: 1160px;
  border: 1px solid var(--headerGrey);
}
#index_community > .community_item {
  display: table-cell;
  width: 37.5%;
  padding: 20px 10px 15px;
  border-right: 1px dashed #d3d3d3;
}
#index_community > .community_item:last-child {
  border-right: 0;
}
#index_community > .community_item > a > .bbs_title {
  padding-bottom: 5px;
}
#index_community > .community_item > a > .bbs_title > .main_title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--black);
}
#index_community > .community_item > a > .bbs_title > .sub_title {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: -1px;
  color: #888;
}
#index_community > #community_title {
  width: 25%;
  background-image: url("/img/footer/comm_bg.gif");
  background-repeat: no-repeat;
  border-right: 0;
}
#index_community > .community_item > a > .bbs_item {
  margin: 7px 0;
  padding: 0 5px;
  font-size: 13px;
  color: #565656;
}
#index_community > .community_item > a > .bbs_item > .item_title {
  float: left;
  width: 320px;
  height: 20px;
  line-height: 20px;
  background-image: url("/img/footer/ico.gif");
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#index_community > .community_item > a > .bbs_item > .item_date {
  float: right;
  width: 68px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#copyright {
  width: 100%;
  background-color: #444;
  margin-bottom: 60px;
}
#footer_menu{display:flex;justify-content: center;align-items: center;}
#footer_menu > ul{display:flex;height: 17px;align-items: center;}
#footer_menu > ul li{
  padding: 0 20px;
  border-right: 1px solid #d0ced0;
  height: 17px;
  display: flex;
  align-items: center;
}
#footer_menu > ul li:last-of-type{
  border-right:none;
}
#footer_menu > ul li a{
  color: #d0ced0;
  font-size: 18px;
  font-weight: 500;
}
#copyright > #footer_menu {
  margin: 0 auto;
  text-align: center;
  color: #d0ced0;
  font-weight: bold;
  border-bottom: 1px solid #323232;
  height: 53px;
  font-size: 20px;
  line-height: 53px;
}
#copyright > #footer_menu > .menu_item {
  margin: 0 10px;
  font-size: 17px;
  letter-spacing: -1px;
  font-weight: normal;
  text-decoration: none;
}
#copyright > #footer_menu > .menu_item a {
  color: #d0ced0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}
/* #copyright > #footer_menu > .menu_bar {
  margin: 0 10px;
  font-size: 17px;
  letter-spacing: -0.7px;
  font-weight: normal;
  color: #d0ced0;
} */
#copyright > #footer_menu > #btn_private a {
  font-weight: 600;
  color: #d0ced0;
}
#copyright > #footer_menu > #customer {
  margin: 0 30px 0 0;
  font-size: 20px;
  font-weight: 500;
}
#copyright > #footer_menu > #customer > #point {
  color: #33f952;
  margin-left: 15px;
  font-weight: 700;
}

#copyright > #company_info {
  width: 100%;
  padding: 45px 0;
  letter-spacing: -0.7px;
}
#copyright > #company_info > #info_box {
  display: flex;
  width: 1400px;
  margin: 10px auto;
  justify-content: space-between;
  align-items: center;
}
#copyright > #company_info > #info_box > #footer_logo {
  text-align: center;
  vertical-align: middle;
}
#copyright > #company_info > #info_box > #footer_logo > img {
  height: 54px;
}
#copyright > #company_info > #info_box > #footer_txt {
  font-weight: 400;
  width: 801px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 10px;
}
#copyright > #company_info > #info_box > #footer_txt > .menu_item {
  display: inline-block;
  color:#e4e4e4;
  font-size:15px;
}
#copyright > #company_info > #info_box > #footer_txt > #copyright {
  display: block;
  padding: 0;
  margin: 0;
}
#copyright > #company_info > #info_box > #btns_sswebplus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
#copyright > #company_info > #info_box > #btns_sswebplus > button {
  margin: 0;
  padding: 0;
  width: 37px;
  height: 37px;
  margin: 1px;
  border: 0;
  border-radius: 5px;
  background-color: var(--main);
  font-size: 22px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
#copyright
  > #company_info
  > #info_box
  > #btns_sswebplus
  > #btn_footer_sswebplus {
  background-image: url("/img/footer/btn_sswebplus.gif");
  background-position: center center;
}
.top_submenu > .menu_box > .item_title {
  border-left: 5px solid var(--main);
  color: var(--grey);
}

.map_item > .map_item_count {
  background-color: var(--main);
}
.mgood_item_area
  > .mgood_item_box
  > .mgood_item_pic
  > .mgood_item_overinfo
  > .more_icon
  > .cart {
  background-color: #b31617;
}
#option_box .icon_on {
  background-color: var(--main);
}
.viewmemo_company {
  position: relative;
  float: left;
  width: 25%;
  max-width: 275px;
  margin: 0;
}
.top_banner_more {
  position: absolute;
  bottom: -30px;
  left: 0;
  display: block;
  width: 95px;
  height: 25px;
  margin: 0 90px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background-color: var(--black);
  font-size: 11pt;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  color: #fff;
}

dd.list_item_area > a > .item_pics > .item_pic + .list_info_item {
  position: absolute;
  left: 0;
  bottom: -35px;
  width: 100%;
}
.list_info_date {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #cd2223;
  border-radius: 5px;
  background-color: #fff;
  font-size: 11pt;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  color: #cd2223;
}

.bottom_call {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 82px;
  left: 0;
  display: flex;
  align-items: center;
  padding: 4px 0;
  transition: all 0.3s ease 0s;
  background-size: cover;
  font-size: clamp(1.2rem, 1vw, 2.5rem);
  background: var(--b-call);
}
.bottom_call ul{
  width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom_call ul li{
  display:flex;
  justify-content: center;
  column-gap: 15px;
  align-items: center;
}
.bottom_call ul li:nth-of-type(1){
  margin-right:50px;
}
.bottom_call ul li p{
  font-size:22px;
  font-weight: 700;
  color: #fff;
}
.bottom_call ul li:nth-of-type(1) p{
  font-size: 30px;
  letter-spacing: -3px;
}

.bottom_call ul li input{
  height: 43px;
  width: 331px;
  padding-left: 13px;
  font-size: 18px;
  color: #727272;
  font-family: 'Noto Sans KR';
}

.bottom_call input::placeholder{
  font-weight:600;
}

.bottom_call .pcbotcv{
    height: 62px;
    line-height: 62px;
    background: var(--b-call-btn);
    font-size: 24px;
    width: 185px;
    text-align: center;
    transform: translateX(15px);
}

.bottom_call div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 25%;
  font-size: clamp(1rem, 1vw, 1.5rem);
  font-weight: 600;
  height: 40px;
}
.bottom_call div:nth-of-type(1) {
  width: 22%;
  font-size: 25px;
  font-weight: bold;
}
.detail_call div:nth-of-type(1) {
  width: 29%;
}
.bottom_call img {
  margin-right: 10px;
  width: 10%;
}
.bottom_call div input {
  margin: 0 5%;
  padding: 19px 10px;
  font-size: 15px;
  width: 69%;
  height: 40px;
}
.bottom_call div input::placeholder {
  font-weight: 600;
  font-family: "NanumSquare";
}
.bottom_call div:nth-of-type(4) {
  background: var(--main);
  padding: 6px 5px;
  width: 14%;
  cursor: pointer;
  transform: translateX(170px);
  text-shadow: 1px 1px 0px #b1b1b1;
  font-weight: 400;
  height: 62px;
  line-height: 62px;
  background: var(--main);
  font-size: 24px;
  width: 185px;
  text-align: center;
  transform: translateX(75px);
}

.bottom_call div:nth-of-type(4) i {
  margin-left: 5px;
  display: none;
}
.bottom_call .bottom_num {
  font-size: 25px;
}
/* #myform_sms2 .bottom_call > .info_view_btn {
  transform: translateX(150px);
} */

.donePopup {
  width: 20%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--main);
  border: 1px solid #ffffff;
  text-align: center;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  color: #fff;
  display: none;
}
.donePopup p {
  font-size: 20px;
  line-height: 180%;
  margin-bottom: 20px;
  font-weight: bold;
}
.donePopup span {
  padding: 9px;
  background: #fff;
  color: var(--main);
  cursor: pointer;
}

/* info_list */
.info_list_container {
  padding-top: 19px;
  border-top: 1px solid darkgrey;
}
.info_list_txt {
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background: var(--main);
  color: #fff;
}
.info_list_txt span {
  color: #feec01;
  animation: blink 2s infinite;
}

/* info_view */
.item_blank > p {
  font-size: 17px;
  width: 53.6%;
  background: var(--main);
  padding: 15px;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
  font-weight: bold;
  margin-left: 10px;
  text-wrap: nowrap;
}
.item_blank > p span {
  color: #feec01;
}

/* info_view */

.info_maemul_title p {
  margin: 0px;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info_maemul_title p span {
  margin: 0 30px !important;
}

.train_line01 {
  font-size: 13px;
  height: 40px;
  text-align: center;
  line-height: 28px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  line-height: 40px;
  width: 100%;
  margin:0;
  padding:0;
}

.info_box_mini .train_line01 {
  margin: 0;
}

.info_view_txt {
  padding: 19px 10px;
  border: 2px solid #d9d9d9;
  margin-top: 50px;
  font-weight: bold;
  background: #fff;
  color: var(--black);
  font-size: 20px;
  width: 63%;
  text-align: center;
}
.list_tag span {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  background: #f2f2f2;
  color: #454242;
  font-size: 14px;
  margin: 0 5px;
  font-weight: bold;
}

.fa-plus:before {
  content: "\2b";
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 BLACK;
}
.fa-chevron-up:before {
  content: "\f077";
  font-size: 20px;
}
.train_line_con {
  padding:0 9px;
  height: 40px;
}
.train_line_con .subContainer .item_train > p {
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -1px;
  font-family: "Noto Sans KR";
  font-weight: 500;
  width:100%;
}

.main_good_title .main_review_more .item_more {
  position: absolute;
  top: 10px;
  right: 0;
  width: 90px;
  height: 28px;
  margin: 5px;
  border: 0;
  border: 1px solid #eee;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}
.main_good_title .main_review_more .item_more p {
  display: flex;
  align-items: center;
  color: #666;
  letter-spacing: -1px;
  font-weight: 600;
  font-size: 14px;
  margin-left: 7px;
}
.main_good_title .main_review_more .item_more i {
  width: 17px;
  height: 17px;
  position: relative;
  top: 5px;
}
.dot_line {
  font-size: 7px;
  letter-spacing: 1px;
  margin-left: 50px;
}
#banner_review_main .page_area .index_items {
  padding: 10px 0;
}

/* info_view */


.info_box_mini tr:nth-of-type(4) {
  border: none;
}
.info_box_mini tr:nth-of-type(5) {
  border: none;
}
.info_i {
  border: none;
}
.info_view_txt {
  width: 61%;
  text-wrap: nowrap;
  font-size: 19px;
}
.move_left {
  margin-right: 5%;
  display: flex;
  line-height: 113%;
}

.sms_box_view ul > li input {
  border: 1px dotted var(--black);
  font-weight: bold;
  text-align: left;
  padding: 18px 5px;
}
.sms_box_view ul > li:nth-of-type(1) {
  width: 34%;
}
.sms_box_view ul > li:nth-of-type(2) {
  width: 30%;
}
.sms_box_view ul > li:nth-of-type(3) {
  text-align: center;
}
.sms_box_view ul > li:nth-of-type(3) input {
  width: 15px;
  height: 15px;
}
.sms_box_view ul > li:nth-of-type(3) input[type="radio"] {
  border-radius: 0;
}
.privateCon {
  display: flex;
  align-items: center;
}
.privateCon input {
  margin-right: 10px;
}
.carParking {
  border-bottom: none;
  padding: 26px 0;
}
.intro_box td {
  border-top: 1px solid #b0b0b0;
  font-weight: bold;
}

.list_tag {
  clear: both;
  position: absolute;
  bottom: -8px;
  margin: 10px 0;
  margin-bottom: 9px;
}
.bottom_list {
  border-bottom: 1px solid #b0b0b0;
}

.admin_pic div div img {
  width: 25px;
}
.list_R{
  width: 364.64px;
  display: flex;
  align-items: center;
  column-gap: 20px;
  padding: 40px 30px;
  border: 1px solid #d1d1d1;
}

.kakaoCon{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}

.admin_picture {
  object-fit: contain;
  height: 150px;
  border-radius:50%;
}
.admin_picture .point {
  font-size: 19px;
  margin-bottom: 11px;
  font-weight: bold;
  display: inline-block;
  width: 90px;
}

.fa-caret-right {
  color: #8f96a5;
}
.fa-forward {
  color: #8f96a5;
  margin-left: 0;
  margin-right: 0;
}
.fa-forward-fast {
  color: #8f96a5;
}
.fa-caret-left {
  color: #8f96a5;
}
.fa-backward {
  color: #8f96a5;
  margin-left: 0;
  margin-right: 0;
}
.fa-backward-fast {
  color: #8f96a5;
}

.detail_money .icon_money_sil {
  background-color: #ff6c00;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #fff;
  width: 62px;
  height: 100%;
  line-height:32px;
  display: inline-block;
  text-align: center;
}
.icon_money_sil{
  background-color: #ff6c00;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #fff;
  width: 62px;
  height: 100%;
  text-align: center;
  display: inline-block;
  line-height: 32px;
}
.list_call {
  color: red;
  font-weight: bold;
  font-size: 20px;
  flex: 1 1 auto;
}

.list_call2 {
  color:var(--black);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.75px;
}
.list_call_container {
  margin-top:10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}


#maemul_view_area > table.info_box_mini td.info_i.askContainer {
  padding: 10px 0;
  border: none;
  text-align: right;
}
.smsAsk {
  background: #ff7c80;
  color: #fff;
  cursor: pointer;
  border: none;
  margin: 0 5px;
  padding: 11px 15px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.kakaoAsk {
  background: #feec01;
  color: #5f5c5c;
  border: none;
  margin: 0 5px;
  padding: 11px 15px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.item_bar {
  font-size: 15px;
  width: 8px;
  text-align: center;
}

.gallery_banner {
  width: 97%;
  margin: 0 auto;
}
.gallery_banner > img {
  width: 100%;
  object-fit: contain;
}

.item_size {
  color: var(--black);
  display: flex;
  align-items: center;
}

.item_size img{
  margin-right:8px;
}

.train_line_con .subContainer {
  margin-bottom: 6px;
  width:100%;
}
.subContainer span{
  display: inline-block;
  width: 100%;
}
.subContainer a{
  display: inline-block;
  width: 100%;
}
.subContainer div{
  width:100%;
  padding:0;
}

.mgood_item_area .mgood_item_box > .mgood_item_money {
  margin-top: 10px;
  padding-bottom: 0;
}
.mgood_item_area .mgood_item_box > .mgood_item_container {
  margin-top: 5px;
  margin-bottom: 10px;
}
.list_search_item .searchL_container a:first-of-type dd {
  margin-left: 11px;
  width: 95px !important;
}

.roomsizesub {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--black);
  font-size: 16px;
  font-weight: bold;
  column-gap:15px;
  margin-bottom:25px;
}

.item_room{
  display: flex;
  align-items: center;
  border-right: 1px solid #d1d1d1;
  padding-right: 15px;
}

.item_room img{
  margin-right:8px;
}

.list_item_size > span {
  font-size: 15px;
}

.list_info_container {
  width: 100%;
  transform: translateY(-0.5px);
  display: inline-block;
}
.human_name {
  font-size: 24px;
  margin-bottom: 17px;
  font-weight: 600;
  text-wrap: nowrap;
  color: var(--black);
}

#maemul_view_area .intro_box td.info_i div.info_item_train {
  font-size: 16.4px;
}

#search_train_items .search_item {
  width: 93.7px !important;
  height: 43.64px;
}
#search_train_title p {
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 0px #b1b1b1;
  color: #fff;
}
#search_train_title p span {
  font-size: 15px;
  margin-left: 20px;
  font-weight: normal;
  text-shadow: none;
}

.icon_money_mae {
  background-color: #992424;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #fff;
  width:62px;
  height: 100%;
  text-align: center;
  display: inline-block;
  line-height: 32px;
}
.train_view {
  display: flex;
  align-items: center;
  height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 43px;
  margin-right: 5px;
  font-weight: bold;
  padding: 5px 14px;
  line-height: 118%;
  font-size: 13px;
}

/* include_left */
.naver {
  position: relative;
}
.naver span {
  position: absolute;
  top: 53%;
  left: 50%;
  color: var(--black);
  transform: translate(-50%, -50%);
  font-weight: 600;
}
.naver p {
  position: absolute;
  top: 69%;
  right: 114px;
  color: #ff0000;
  font-weight: 600;
  font-size: 16px;
  transform: none;
}

/* include_left > sms box */
.sms_box_left {
  list-style: none;
  text-align: center;
  padding: 8px;
  color: #fff;
  background-image: linear-gradient(120deg, #394f2f 0%, #2eb944 100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 10px;
}

.sms_box_left:hover {
  background-image: linear-gradient(120deg, #b1e599 0%, #2eb944 100%);
}

.sms_box_left li {
  margin-bottom: 15px;
}

.sms_box_left li:nth-of-type(1) {
  margin-bottom: 5px;
  font-size: 10px;
}

.sms_box_left li:nth-of-type(1):after {
  width: 20px;
  height: 1px;
  border-bottom: 1px solid #fff;
  content: "";
  display: inline-block;
  transform: translateY(-1px);
}

.sms_box_left li:nth-of-type(2) {
  font-size: 25px;
  letter-spacing: -2px;
  margin-bottom: 0;
}

.sms_box_left li:nth-of-type(3) {
  font-size: 12px;
}

.sms_box_left li:nth-of-type(4) {
  display: inline-block;
  padding: 3px 29px;
  border: 1px solid #fff;
  font-size: 12px;
}

/* °Ë»ö ÄÜÅÙÃ÷ */
#index_search{
  max-width: 1570px;
  width:100%;
  height:176px;
  margin: 35px auto;
  padding: 35px 0;
  background:url('./img/index/search_bg.png') no-repeat;
  background-size:cover;
  display: flex;
  align-items: center;
  justify-content: center;

}
#index_search > #index_search_area {
  max-width: 1075px;
  width:100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  column-gap: 35px;
}

#index_search_area .main_tit {
  font-size: 30px;
  font-weight: 700;
  z-index: 1;
  letter-spacing: -4px;
  text-align: center;
  color: #fff;
}

#index_search > #index_search_area > .index_search_box > button.search_select {
  margin: 1px;
  padding: 5px 30px 5px 5px;
  border: 1px solid #dedede;
  background-image: url(/img/admin/select_arrow.png);
  background-position: right center;
  background-repeat: no-repeat;
  font-size: 16px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  font-weight: bold;
  padding-left: 10px;
  appearance: none;
  width: 100%;
  height: 100%;
  height: 44px;
}

.index_search_box02 {
  grid-column: 1 / 5;
  display: flex;
  column-gap: 5px;
}

.index_search_box02 input {
  color: #333;
  width: 75%;
  height: 43px;
  font-weight: bold;
  padding-left: 7px;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;
}

.index_search_box02 button {
  width: 11.9%;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 700;
  background: #f77c04;
  transition:all 0.3s ease 0s;
  cursor:pointer;
}
.index_search_box02 button.search_map{
  background:var(--main);
}

.index_search_box02 button:hover{
  filter: grayscale(0.7);
}

#room {
  margin: 1px;
  padding: 5px 30px 5px 5px;
  border: 1px solid #dedede;
  background-image: url(/img/admin/select_arrow.png);
  background-position: right center;
  background-repeat: no-repeat;
  font-size: 10pt;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  font-weight: bold;
  padding-left: 10px;
  appearance: none;
  width: 100%;
  height: 44px;
}

#index_search > #index_search_area > .search_select_item > .select_option {
  width: 207.9px;
}
#index_search > #index_search_area > .search_select_item {
  transform: translate(1px, 12px);
}

/* ??? ?????? */
.top_submenu > .menu_box > .item_title button {
  float: left;
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 7px;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.menu_item,
.item {
  transition: all 0.3s ease 0s;
}

#top_navi .menu_item:hover {
  background: var(--main);
}

#top_navi > ul#top_menubar > li:hover a {
  color: #fff !important;
}

.menu_item i {
  margin-right: 7px;
  color: #616161;
}

#top_navi .menu_item:hover i {
  color: #fff;
}

.top_submenu > .menu_box > .items > .item > a:hover {
  color: var(--main);
}

/* ????????©¥? ??¬Û?? */
.sub_review{
  padding-top:35px;
}
.secret div{
  border: 1px solid #d1d1d1;
  display: flex;
  align-items: center;
  column-gap: 27px;
  margin-bottom: 30px;
}

.secret h1{
  font-size: 28px;
  font-weight: 600;
  padding: 12.5px;
  padding-right:0;
  letter-spacing: -0.7px;
}

.secret h1 span{
  color:#ff6c00;
  letter-spacing: -0.35px;
}

.secret div:nth-of-type(1){
  align-items: baseline;
}

.secret div:nth-of-type(1) p{
  font-size:16px;
  color:#767676;
}

.secret div:nth-of-type(2){
  padding: 60px;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}


.secret div:nth-of-type(2) p{
  font-size: 18px;
  margin-bottom: 35px;
  font-weight: 400;
  color: var(--black);
}

.secret div:nth-of-type(2) div{
  padding: 65px 74px;
  column-gap:5px;
  background: #fafafa;
  margin-bottom:0;
  align-items: center;
}

.secret div:nth-of-type(2) div span{
  font-size: 18px;
  font-weight: 400;
  background: var(--main);
  color: #fff;
  padding: 13px 43px;
  transition:all 0.3s ease 0s;
  cursor:pointer;
}


.secret div:nth-of-type(2) div span:nth-of-type(2){
  background: #444;
}

.secret div:nth-of-type(2) div span:hover{
  background:#d3d3d3;
}


.secret div:nth-of-type(2) div span:nth-of-type(2):hover{
  background:#d3d3d3;
}


.secret div:nth-of-type(2) div input{
  height:53px;
  padding: 0 17px;
}

.secret div:nth-of-type(2) div input::placeholder{
  color:#6d6d6d;
  font-weight:300;
}


.map_title{
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid #434343;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.title{
  border: 1px solid #d1d1d1;
  display: flex;
  column-gap: 27px;
  margin-bottom: 20px;
  align-items: baseline;
}

.title h1{
  font-size: 28px;
  font-weight: 600;
  padding: 12.5px;
  padding-right: 0;
  letter-spacing: -0.7px;
  color: var(--black);
}

.title h1 span {
  color: #ff6c00;
  letter-spacing: -0.35px;
}
.review_list .title{
  border: 1px solid #d1d1d1;
  display: flex;
  column-gap: 27px;
  margin-bottom: 20px;
  align-items: baseline;
  justify-content: flex-start;
}

.review_list h1 {
  font-size: 28px;
  font-weight: 600;
  padding: 12.5px;
  padding-right: 0;
  letter-spacing: -0.7px;
}

.review_list h1 span {
  color: #ff6c00;
  letter-spacing: -0.35px;
}
/* °è¾àÈÄ±â ºä */
.review .title{
    border: 1px solid #d1d1d1;
    display: flex;
    column-gap: 27px;
    margin-bottom: 20px;
    align-items: baseline;
}

.review h1 {
  font-size: 28px;
  font-weight: 600;
  padding: 12.5px;
  padding-right: 0;
  letter-spacing: -0.7px;
}

.review h1 span {
  color: #ff6c00;
  letter-spacing: -0.35px;
}
.review ul:nth-of-type(1){
  border: 1px solid #e5e5e5;
  margin-bottom: 36px;
}

.review ul h2{
  text-align: center;
    font-size: 30px;
    letter-spacing: -0.75px;
    color: var(--black);
    font-weight: 500;
    padding: 36px 0;
    background: #fafafa;
}

.review .memo{
  padding:50px;
  color: var(--black);
}

.review_info{
  height: 78px;
  line-height: 78px;
  display: flex;
  justify-content: space-between;
  background: #fafafa;
  border-top: 1px solid #dadada;
  color:var(--black);
  letter-spacing: -0.35px;
  font-weight:500;
  padding: 0 50px;
}

.fileName{
  color:#ff6c00;
  letter-spacing: -0.35px;
  font-weight:500;
}

.reviewBtn{
  display: flex;
  justify-content: center;
  column-gap: 10px;
}

.writeBtn{
  padding: 12px 45px;
  background: var(--main);
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.75px;
  font-weight: 500;
  border: 1px solid #d1d1d1;
  cursor:pointer;
  transition:all 0.3s ease 0s;
}

.writeBtn:hover{
  border: 1px solid var(--main);
  color:var(--main);
  background:none;
}

.reviewBtn li:hover{
  border: 1px solid var(--main);
  color:var(--main);
  background:none;
}

.reviewBtn li{
    padding: 17px 50px;
    background: var(--main);
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.75px;
    font-weight: 500;
    border: 1px solid #d1d1d1;
    cursor:pointer;
    transition:all 0.3s ease 0s;
}



.writeBtn li:hover{
  border: 1px solid var(--main);
  color:var(--main);
  background:none;
}

.reviewBtn li:nth-of-type(2){
  background:#444444;
}

.reviewBtn li:nth-of-type(2):hover{
  border: 1px solid #444444;
  color:#444444;
  background:none;
}

.review_list{
  margin-top:36px;
}

.review_list > div{
  border-bottom: 2px solid #999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.review_list h3{
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: -0.75px;
}

.review_list ul{
  margin-top:30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 2px solid #999999;
}

.review_list ul li{
  border: 1px solid #d1d1d1;
  cursor:pointer;
  transition: all 0.3s ease 0s;
}

.review_list ul li:hover{
  transform:translateY(-1%);
}

.review_list ul h4{
  border-top: 1px solid #d1d1d1;
  margin: 0;
  padding: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 270px;
  overflow: hidden;
}

.review_list ul img{
  display:block;
}

/* °è¾àÈÄ±â ¼öÁ¤ */

.reviewE .title{
  border: 1px solid #d1d1d1;
  display: flex;
  column-gap: 27px;
  margin-bottom: 20px;
  align-items: baseline;
}

.reviewE h1 {
  font-size: 28px;
  font-weight: 600;
  padding: 12.5px;
  padding-right: 0;
  letter-spacing: -0.7px;
}

.reviewE h1 span {
  color: #ff6c00;
  letter-spacing: -0.35px;
}

/* °³ÀÎÁ¤º¸ */
.personC h3{
  border: 1px solid #d9e2db;
  display: flex;
  column-gap: 27px;
  margin-bottom: 20px;
  align-items: baseline;
  background: #e6f9e9;
  color: var(--main);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.75px;
  padding: 12.5px;
  padding-left: 30px;
}

.personC h4{
  font-size: 24px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: -0.75px;
  display: flex;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 25px;
}

.Tbox{
  width: 8px;
  height: 22px;
  display: inline-block;
  background: var(--main);
  margin-right: 10px;
}

.black{
  color:#000 !important;
}

.personC p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 24px;
  color: #434343;
  letter-spacing: -0.35px;
  word-break: auto-phrase;
}


.personC h5{
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.5px;
  font-weight: 500;
  margin-bottom: 15px;
}

.personC ol{
  padding: 23px 21px;
  border: 1px solid #cfcfcf;
  margin-bottom: 24px;
}
.personC ul{
  margin-bottom:24px;
}

.personC ol li{
  display: flex;
  align-items: baseline;
  column-gap: 7px;
  margin-bottom:20px;
}

.personC ol li:last-of-type{
  margin-bottom:0;
}

.personC ol p:last-of-type{
  margin-bottom:0;
}

.personC ol ul{
  width: 100%;
  margin-left: 3%;
}

.urls li{
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.35px;
  line-height: 36px;
}


/* ¹®ÀÇ°Ô½ÃÆÇ ¸®½ºÆ® */
dl#board_list_box {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 80px 940px 140px;
  border-top: 2px solid #999999;
  border-bottom: 1px solid #d1d1d1;
}
dl#board_list_box > dt.list_item_t {
  float: left;
  padding: 20px 0;
  border-right: 1px solid #fff;
  background-color: var(--main);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.35px;
  color: #fff;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
dl#board_list_box > dt.list_item_t:last-child {
  border: 0;
}
dl#board_list_box > dt.list_item_writer {
  border-right: 0;
}
dl#board_list_box > dt.list_item_date {
  display: none;
}
dl#board_list_box > dt.list_item_see {
  display: none;
}
/* dl#board_list_box > dt.online_item_number {
  width: 9%;
}
dl#board_list_box > dt.online_item_part {
  width: 12%;
}
dl#board_list_box > dt.online_item_category {
  width: 15%;
}
dl#board_list_box > dt.online_item_address {
  width: 22%;
}
dl#board_list_box > dt.online_item_writer {
  width: 14%;
}
dl#board_list_box > dt.online_item_re {
  width: 14%;
} */
dl#board_list_box > dt.online_item_date {
  border-right: 0;
}
dl.board_item {
  font-size: 18px;
  font-weight: 400;
  display: grid;
  grid-template-columns: 80px 940px 140px;
}
dl.board_item:hover dd.list_item_title{
  font-weight:800;
  padding-left: 5%;
}

dl.board_item > dd.list_item_v {
  float: left;
  padding: 22px 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid var(--sms-bottom);
  background-color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
dl.board_item > dd.list_item_number {
  width: 80px;
}
dl.board_item > dd.list_item_title {
  width: 940px;
  padding-left: 15px;
  text-align: left;
  transition:all 0.3s ease 0s;
}
dl.board_item > dd.list_item_writer {
  width: 140px;
  border-right: 0;
}
dl.board_item > dd.list_item_date {
  display: none;
}
dl.board_item > dd.list_item_see {
  display: none;
}
dl.board_item > dd.online_item_number {
  width: 9%;
}
dl.board_item > dd.online_item_part {
  width: 12%;
}
dl.board_item > dd.online_item_category {
  width: 15%;
}
dl.board_item > dd.online_item_address {
  width: 22%;
}
dl.board_item > dd.online_item_writer {
  width: 14%;
}
dl.board_item > dd.online_item_re {
  width: 14%;
}
dl.board_item > dd.online_item_date {
  width: 14%;
  border-right: 0;
}

.subTitle{
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 13px;
  margin-top:30px;
}

.item_left{
  display: flex;
  align-items: center;
  column-gap: 8px;
  letter-spacing: -0.75px;
  font-weight: 500;
  font-size: 18px;
}

.item_left select{
  height: 55px;
  width: 132px;
  padding-left: 13px;
  padding-right: 13px;
  color: #444444;
  border: 1px solid var(--borderB);
}

.item_left input{
  height: 55px;
  width: 238px;
  padding-left: 13px;
}

.item_left button{
  width: 130px;
  height: 55px;
  border: 1px solid var(--borderB);
  color: #fff;
  background: #444444;
  transition:all 0.3s ease 0s;
  font-size:18px;
  cursor:pointer;
}

.item_left button:hover{
  background:none;
  color:#444
}

.cT{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.35px;
  line-height: 30px;
}

.reviewBtn .editBtn{
  background: var(--main)!important;
}

.reviewBtn .editBtn:hover{
  border:1px solid var(--main) !important;
  color:var(--main) !important;
  background:none !important;
}

.reviewBtn .deleteBtn{
  background:#444;
}

.reviewBtn .listBtn{
  background:#444;
}

.reviewBtn .deleteBtn:hover,.reviewBtn .listBtn:hover{
  border:1px solid #444 !important;
  color:#444 !important;
  background:none !important;
}


@media (max-width: 1365px) {
  #top_navi > ul#top_menubar > li a{
    margin: 0 30px;
  }
  #copyright > #company_info > #info_box{
    padding: 0 50px;
  }
  .bottom_call ul li:nth-of-type(1) p{
    font-size: 25px;
  }
  .bottom_call ul li p{
    font-size:18px;
  }
  .bottom_call ul{
    padding:0 10px;
  }
  .bottom_call ul li input{
    margin-left: 10px;
    width: 291px;
  }
  .bottom_call .pcbotcv{
    transform:unset;
  }
}