@charset "utf-8";
#header {
  display: inline-block;
  vertical-align: middle;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 40px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
#header .h_logo {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 25%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#header .h_logo a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 140px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#header .h_gnb {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: right;
  width: 75%;
  height: 40px;
}
#header .h_gnb .hg_main {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
#header .h_gnb .hg_main > li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 33.333%;
  text-align: left;
}
#header .h_gnb .hg_main > li > a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  margin-left: 20px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 40px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#header .h_gnb .hg_main > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  border-radius: 1px;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#header .h_gnb .hg_main > li.on > a:before {
  width: 22px;
  opacity: 1;
}
#header .h_gnb .hg_main > li > a:hover:before {
  width: 22px;
  opacity: 1;
}
#header .h_gnb .hg_main .hg_project {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  overflow: auto;
  padding: 5vw;
  background-color: rgba(16, 17, 17, 0.95);
}
#header .h_gnb .hg_main .hg_project h3 {
  display: inline-block;
  vertical-align: middle;
  position: fixed;
  left: 5vw;
  top: 5vw;
  font-size: 2.5vw;
  font-weight: 700;
  color: #fff;
  line-height: 60px;
}
#header .h_gnb .hg_main .hg_project > button {
  display: inline-block;
  vertical-align: middle;
  position: fixed;
  right: 5vw;
  top: 5vw;
  z-index: 2;
  width: 60px;
  height: 60px;
  outline: none;
  color: #fff;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#header .h_gnb .hg_main .hg_project > button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 4px;
  margin-top: -2px;
  margin-left: -12px;
  border-radius: 1px;
  background-color: currentColor;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#header .h_gnb .hg_main .hg_project > button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 24px;
  margin-top: -12px;
  margin-left: -2px;
  border-radius: 1px;
  background-color: currentColor;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#header .h_gnb .hg_main .hg_project > button:hover:before {
  transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}
#header .h_gnb .hg_main .hg_project > button:hover:after {
  transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}
#header .h_gnb .hg_main .hg_project .hgp_wrap {
  position: absolute;
  left: 20vw;
  right: 15vw;
  top: 5vw;
  padding-bottom: 5vw;
}
#header .h_gnb .hg_main .hg_project .hgp_wrap ul {
  display: block;
  box-sizing: border-box;
  padding-left: 60px;
}
#header .h_gnb .hg_main .hg_project .hgp_wrap > ul {
  float: left;
  width: 50%;
}
#header .h_gnb .hg_main .hg_project .hgp_wrap li {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#header .h_gnb .hg_main .hg_project .hgp_wrap > ul > li {
  margin: 15px 0;
}
#header .h_gnb .hg_main .hg_project .hgp_wrap a {
  display: inline-block;
  vertical-align: middle;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 200;
  color: #fff;
  line-height: 23px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#header .h_gnb .hg_main .hg_project .hgp_wrap a:hover {
  font-weight: 600;
}
.menuopen {
  overflow: hidden;
}
.menuopen #header .h_logo, .menuopen #header .h_gnb .hg_main > li > a, .menuopen #contents, .menuopen #footer {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
}
.menuopen #header .h_gnb .hg_main .hg_project {
  display: block;
}
.menuopen #header.on {
  background-color: rgba(255, 255, 255, 0);
}
.menuopen #contents.c_inquiry {
  z-index: -1;
}
#header.on {
  background-color: rgba(255, 255, 255, 0.2);
}
#header.on .h_logo a {
  background-image: url("http://www.glowseoul.co.kr/images/common/logo_black.png");
}
#header.on .h_gnb .hg_main > li > a {
  color: #101111;
}
#header.on .h_gnb .hg_main > li > a:before {
  background-color: #101111;
}
#header.up {
  bottom: -100px;
  opacity: 0;
}
#wrap.main #header {
  display: none;
}
#wrap.project #header {
  display: block;
  position: relative;
  transition: 0s;
  -webkit-transition: 0s;
}
#wrap.customer #header {
  display: block;
  position: relative;
  transition: 0s;
  -webkit-transition: 0s;
}
#wrap.customer #header .h_gnb .hg_main > li > a {
  color: #101111;
}
#wrap.customer #header .h_gnb .hg_main > li > a:before {
  background-color: #101111;
}
#wrap.customer #header .h_logo a {
  background-image: url("http://www.glowseoul.co.kr/images/common/logo_black.png");
}
/* 메인 */
#main {
  background-color: #101111;
}
#main .m_wrap {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 50%;
  line-height: 0;
}
#main a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#main a img {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 100%;
  box-sizing: border-box;
  border: #101111 solid 1px;
}
#main .m_video {
  width: 100%;
  background-image: url("../img/index/_img01.png");
}
#main .m_video:hover {
  background-image: url("../img/index/shadow/_img01.png");
}
#main .m_video img {
  float: right;
  width: 33.333%;
}
#main .m_inquiry {
  width: 100%;
  background-image: url("../img/index/shadow/_img02.png");
}
#main .m_inquiry:hover {
  background-image: url("../img/index/_img02.png");
}
#main .m_inquiry img {
  float: right;
  width: 33.333%;
}
#main .m_note {
  width: 100%;
  background-image: url("../img/index/shadow/img03.png");
}
#main .m_note:hover {
  background-image: url("../img/index/img03.png");
}
#main .m_note img {
  width: 33.333%;
}
#main .m_natureart {
  width: 33.333%;
  background-image: url("../img/index/shadow/img04.png");
}
#main .m_natureart:hover {
  background-image: url("../img/index/img04.png");
}
#main .m_instagram {
  float: right;
  width: 66.666%;
  background-image: url("../img/index/shadow/img06.png");
}
#main .m_instagram:hover {
  background-image: url("../img/index/img06.png");
}
#main .m_instagram img {
  width: 50%;
}
#main .m_kitchen {
  width: 33.333%;
  background-image: url("../img/index/shadow/img05.png");
}
#main .m_kitchen:hover {
  background-image: url("../img/index/img05.png");
}
#main .m_txt span {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  font-weight: 100;
  color: #fff;
}
#main .m_txt.t1 span {
  width: 100%;
  font-size: 1.302vw;
  line-height: 2.083vw;
  letter-spacing: 1.6vw;
  text-indent: 1.041vw;
}
#main .m_txt.t2 span {
  left: 2.604vw;
  font-size: 0.833vw;
  line-height: 1.041vw;
}
#main .m_video .m_txt span {
  left: 0;
  bottom: 13%;
}
#main .m_inquiry .m_txt span {
  left: 0;
  bottom: 25%;
}
#main .m_note .m_txt span {
  left: 0;
  top: 50%;
  margin-top: -1.041vw;
}
#main .m_natureart .m_txt span {
  bottom: 1.458vw;
}
#main .m_instagram .m_txt span {
  top: 2.447vw;
}
#main .m_kitchen .m_txt span {
  bottom: 1.458vw;
}
#main .m_txt strong {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  font-size: 0.833vw;
  font-weight: 100;
  color: #fff;
  line-height: 1.041vw;
}
#main .m_txt.t2 strong {
  left: 1.562vw;
  width: 2.708vw;
  height: 1.718vw;
  background-image: url("http://www.glowseoul.co.kr/images/common/logo_glow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
#main .m_video .m_txt strong {
  left: 50%;
  bottom: 5%;
  margin-left: -2.968vw;
  width: 5.937vw;
  height: 1.770vw;
  background-image: url("http://www.glowseoul.co.kr/images/common/logo_glowseoul.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
#main .m_inquiry .m_txt strong {
  left: 0;
  bottom: 11%;
  width: 100%
}
#main .m_note .m_txt strong {
  left: 0;
  top: 63%;
  width: 100%;
}
#main .m_natureart strong {
  bottom: 1.562vw;
}
#main .m_instagram strong {
  top: 1.666vw;
}
#main .m_kitchen strong {
  bottom: 1.562vw;
}
/*#main .m_video:before {
  content: "";
  position: absolute;
  left: 0;
  top: 35%;
  bottom: 35%;
  width: 100%;
  background-image: url("http://www.glowseoul.co.kr/images/common/logo_symbol.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}*/
/*#main .m_video:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background-color: #101111;
}*/
/*#main .m_inquiry:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.604vw;
  height: 2.604vw;
  margin-top: -2.343vw;
  margin-left: -1.302vw;
  background-image: url("http://www.glowseoul.co.kr/images/icon_inquiry.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}*/
/* 콘텐츠*/
#contents {
  position: relative;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents .c_hero {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#contents section {
  padding: 40px;
}
#contents p.mt {
  margin-top: 30px;
}
#contents .c_title {
  padding-top: 0;
}
#contents .c_title dl {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: left;
}
#contents .c_title dd {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 25%;
}
#contents .c_title h2 {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-size: 2.0833vw;
  font-weight: 700;
  color: #fff;
  line-height: 40px;
  letter-spacing: -1px;
}
#contents .c_title p {
  vertical-align: middle;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 100;
  color: #afb1b0;
  letter-spacing: 0.5px;
}
#contents .c_title p span {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  line-height: 20px;
}
#contents.c_about.glowseoul .c_hero {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_glowseoul.jpg");
}
#contents.c_about.studio .c_hero {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_studio.jpg");
}
#contents.c_about.natureart .c_hero {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_natureart.jpg");
}
#contents.c_about.kitchen .c_hero {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_kitchen.jpg");
}
#contents.c_about.superman .c_hero {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_superman.jpg");
}
#contents.c_about .ca_title dl {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: left;
}
#contents.c_about .ca_title dd {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 25%;
}
#contents.c_about .ca_title h2 {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-size: 25px;
  font-weight: 700;
  color: #101111;
  line-height: 30px;
  letter-spacing: -1px;
}
#contents.c_about .ca_title p {
  vertical-align: middle;
  padding: 5px 20px;
  font-size: 12px;
  font-weight: 100;
  color: #afb1b0;
  line-height: 20px;
  letter-spacing: 0.5px;
}
#contents.c_about .ca_introduce {
  padding-top: 0;
}
#contents.c_about .ca_introduce .cai_pic {
  float: left;
  width: calc(50% - 20px);
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_introduce .cai_pic img {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 100%;
}
#contents.c_about .ca_introduce .cai_pic .caip_img {
  display: none;
}
#contents.c_about .ca_introduce .cai_content {
  float: left;
  width: calc(50% - 20px);
  max-width: 750px;
  margin-left: 20px;
  text-align: left;
}
#contents.c_about .ca_introduce .cai_content .caic_txt {
  margin-top: 55px;
}
#contents.c_about .ca_introduce .cai_content .caic_txt:first-child {
  margin-top: 0;
}
#contents.c_about .ca_service .cas_wrap {
  float: right;
  width: calc(50% - 20px);
  text-align: left;
}
#contents.c_about .ca_service .cas_txt {
  position: relative;
  margin-bottom: 60px;
}
#contents.c_about .ca_service .cas_txt h3 {
  margin-bottom: 30px;
}
#contents.c_about .ca_service .cas_txt p {
  display: block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
#contents.c_about .ca_service .cas_txt p > mark {
  position: absolute;
  left: 0;
  top: 0;
}
#contents.c_about .ca_service .cas_txt p > span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 145px;
}
#contents.c_about .ca_service .cas_step {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 60px;
}
#contents.c_about .ca_service .cas_step li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: calc(33.333% + 20px);
  margin: 0 -15px;
}
#contents.c_about .ca_service .cas_step li img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#contents.c_about .ca_service .cas_step li:first-child {
  margin-left: 0;
}
#contents.c_about .ca_service .cas_step li:right-child {
  margin-right: 0;
}
#contents.c_about .ca_service .cas_step li:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: rgba(16, 17, 17, 0.1) solid 1px;
  border-radius: 50%;
}
#contents.c_about .ca_service .cas_step li span {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 55%;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #101111;
  line-height: 30px;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_service .cas_step li span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -210%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  background-image: url("http://www.glowseoul.co.kr/images/about/icon_progress.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_service .cas_step li.cass_plan span:before {
  background-position: center 0;
}
#contents.c_about .ca_service .cas_step li.cass_develop span:before {
  background-position: center -300px;
}
#contents.c_about .ca_service .cas_step li.cass_design span:before {
  background-position: center -120px;
}
#contents.c_about .ca_service .cas_advantage {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_service .cas_advantage li:nth-child(n+2) {
  margin-top: 25px;
}
#contents.c_about .ca_service .cas_advantage span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
#contents.c_about .ca_progress {
  padding-bottom: 0;
}
#contents.c_about .ca_progress .cap_wrap {
  display: block;
  width: auto;
  padding: 100px;
  background-color: #f8f8f8;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_progress .cap_txt {
  margin-bottom: 65px;
}
#contents.c_about .ca_progress .cap_content {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  max-width: 1540px;
}
#contents.c_about .ca_progress .cap_content strong {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_progress .cap_content span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_progress .cap_content li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 100%;
}
#contents.c_about .ca_progress .cap_content li.t1 {
  width: 28.57%;
}
#contents.c_about .ca_progress .cap_content li.t2 {
  width: 14.285%;
}
#contents.c_about .ca_progress .cap_content li .cap_part {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: calc(100% + 20px);
  overflow: hidden;
  padding: 20px 0;
  border-radius: 75px;
  margin-left: -10px;
  margin-right: -10px;
}
#contents.c_about .ca_progress .cap_content li.seoul .cap_part {
  background-color: #6e6d72;
  z-index: 5;
}
#contents.c_about .ca_progress .cap_content li.studio .cap_part {
  background-color: #bfbec5;
  z-index: 4;
}
#contents.c_about .ca_progress .cap_content li.art .cap_part {
  background-color: #679c80;
  z-index: 3;
}
#contents.c_about .ca_progress .cap_content li.kitchen .cap_part {
  background-color: #9a5d7f;
  z-index: 2;
}
#contents.c_about .ca_progress .cap_content li.superman .cap_part {
  background-color: #4e6b7b;
  z-index: 1;
}
#contents.c_about .ca_progress .cap_content li .cap_part:before {
  content: "";
  position: absolute;
  right: -100%;
  top: 0;
  bottom: 0;
  margin-right: 20px;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  border-radius: 75px;
  opacity: 0.2;
}
#contents.c_about .ca_progress .cap_content li.seoul .cap_part:before {
  background-color: #bfbec5;
}
#contents.c_about .ca_progress .cap_content li.studio .cap_part:before {
  background-color: #679c80;
}
#contents.c_about .ca_progress .cap_content li.art .cap_part:before {
  background-color: #9a5d7f;
}
#contents.c_about .ca_progress .cap_content li.kitchen .cap_part:before {
  background-color: #4e6b7b;
}
#contents.c_about .ca_progress .cap_content li.superman .cap_part:before {
  display: none;
}
#contents.c_about .ca_progress .cap_content ul {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
#contents.c_about .ca_progress .cap_content .cap_part strong {
  font-size: 15px;
  font-weight: 500;
  color: #f4f4f4;
  line-height: 30px;
  letter-spacing: -1px;
}
#contents.c_about .ca_progress .cap_content .cap_part span {
  font-size: 14px;
  font-weight: 300;
  color: #f4f4f4;
  line-height: 30px;
  letter-spacing: -1px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_progress .cap_content li.t1 .cap_team {
  width: 50%;
}
#contents.c_about .ca_progress .cap_content li.t1 .cap_team .capt_txt {
  float: left;
  width: 100%;
}
#contents.c_about .ca_progress .cap_content .cap_team .capt_txt {
  padding-top: 110px;
  font-size: 14px;
  color: #212224;
  line-height: 30px;
  letter-spacing: -0.5px;
}
#contents.c_about .ca_progress .cap_content .cap_team .capt_txt strong {
  position: relative;
  font-weight: 500;
  margin-bottom: 25px;
}
#contents.c_about .ca_progress .cap_content .cap_team .capt_txt span {
  font-weight: 300;
}
#contents.c_about .ca_progress .cap_content .cap_team .capt_txt strong:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -70px;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  background-image: url("http://www.glowseoul.co.kr/images/about/icon_progress.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_progress .cap_content .cap_team.enforcer .capt_txt strong:before {
  background-position: center 0;
}
#contents.c_about .ca_progress .cap_content .cap_team.analysis .capt_txt strong:before {
  background-position: center -60px;
}
#contents.c_about .ca_progress .cap_content .cap_team.design .capt_txt strong:before {
  background-position: center -120px;
}
#contents.c_about .ca_progress .cap_content .cap_team.construct .capt_txt strong:before {
  background-position: center -180px;
}
#contents.c_about .ca_progress .cap_content .cap_team.art .capt_txt strong:before {
  background-position: center -240px;
}
#contents.c_about .ca_progress .cap_content .cap_team.development .capt_txt strong:before {
  background-position: center -300px;
}
#contents.c_about .ca_progress .cap_content .cap_team.operate .capt_txt strong:before {
  background-position: center -360px;
}
#contents.c_about .ca_area {
  padding-bottom: 20px;
  text-align: left;
}
#contents.c_about .ca_area .caa_pic {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#contents.c_about .ca_area.studio .caa_pic {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_studio.jpg");
}
#contents.c_about .ca_area.natureart .caa_pic {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_natureart.jpg");
}
#contents.c_about .ca_area.kitchen .caa_pic {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_kitchen.jpg");
}
#contents.c_about .ca_area.superman .caa_pic {
  background-image: url("http://www.glowseoul.co.kr/images/about/pic_hero_superman.jpg");
}
#contents.c_about .ca_area dd {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 25%;
  margin-top: 40px;
}
#contents.c_about .ca_area dd:last-child {
  width: 50%;
}
#contents.c_about .ca_area .caa_title {
  display: block;
  padding-right: 20px;
}
#contents.c_about .ca_area .caa_title h3 {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#contents.c_about .ca_area .caa_title h3:before {
  content: "";
  position: absolute;
  right: -27px;
  bottom: 7px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_area.studio .caa_title h3:before {
  border-top: #bfbec5 solid 1px;
  border-right: #bfbec5 solid 1px;
}
#contents.c_about .ca_area.natureart .caa_title h3:before {
  border-top: #679c80 solid 1px;
  border-right: #679c80 solid 1px;
}
#contents.c_about .ca_area.kitchen .caa_title h3:before {
  border-top: #9a5d7f solid 1px;
  border-right: #9a5d7f solid 1px;
}
#contents.c_about .ca_area.superman .caa_title h3:before {
  border-top: #4e6b7b solid 1px;
  border-right: #4e6b7b solid 1px;
}
#contents.c_about .ca_area .caa_title:hover h3:before {
  right: -35px;
}
#contents.c_about .ca_area .caa_business {
  display: block;
  padding: 0 20px;
}
#contents.c_about .ca_area .caa_business span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  word-break: keep-all;
}
#contents.c_about .ca_area .caa_txt {
  display: block;
  padding: 0 20px;
}
#contents.c_about .ca_process .cap_wrap {
  position: relative;
  left: 50%;
  width: 50%;
  margin-left: 20px;
  max-width: 1200px;
}
#contents.c_about .ca_process strong {
  float: left;
}
#contents.c_about .ca_process ol {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
#contents.c_about .ca_process li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  min-height: 152px;
}
#contents.c_about .ca_process.t1 li {
  width: 12.5%;
}
#contents.c_about .ca_process.t2 li {
  width: 14.285%;
}
#contents.c_about .ca_process li span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #101111;
  line-height: 30px;
  letter-spacing: -1.5px;
}
#contents.c_about .ca_process li:first-child span {
  font-weight: 400;
}
#contents.c_about .ca_process li:last-child span {
  font-weight: 400;
}
#contents.c_about .ca_process li span:first-child {
  margin-top: 92px;
}
#contents.c_about .ca_process li span:first-child:after {
  content: "";
  position: absolute;
  left: calc(50% + 25px);
  top: -36px;
  width: calc(100% - 50px);
  height: 1px;
  background-color: rgba(16, 17, 17, 0.1);
}
#contents.c_about .ca_process li:last-child span:after {
  display: none;
}
#contents.c_about .ca_process li span:first-child:before {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  top: -60px;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  border: rgba(16, 17, 17, 0.1) solid 1px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #101111;
  line-height: 50px;
}
#contents.c_about .ca_process li:nth-child(1) span:first-child:before {
  content: "01";
  background-color: #101111;
  color: #fff;
}
#contents.c_about .ca_process li:nth-child(2) span:first-child:before {
  content: "02";
}
#contents.c_about .ca_process li:nth-child(3) span:first-child:before {
  content: "03";
}
#contents.c_about .ca_process li:nth-child(4) span:first-child:before {
  content: "04";
}
#contents.c_about .ca_process li:nth-child(5) span:first-child:before {
  content: "05";
}
#contents.c_about .ca_process li:nth-child(6) span:first-child:before {
  content: "06";
}
#contents.c_about .ca_process li:nth-child(7) span:first-child:before {
  content: "07";
}
#contents.c_about .ca_process li:nth-child(8) span:first-child:before {
  content: "08";
}
#contents.c_about .ca_process li:last-child span:before {
  background-color: #101111;
  color: #fff;
}
#contents.c_about .ca_member .cam_wrap {
  position: relative;
  left: 50%;
  width: 50%;
  margin-left: 20px;
  max-width: 1200px;
}
#contents.c_about .ca_member strong {
  float: left;
}
#contents.c_about .ca_member .cam_list {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  margin-top: 32px;
  text-align: left;
}
#contents.c_about .ca_member .cam_list > li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: calc(33.333% - 80px);
  min-height: 120px;
  padding-left: 80px;
}
#contents.c_about.studio .ca_member .cam_list > li:nth-child(4) {
  margin-left: 33.333%;
}
#contents.c_about.studio .ca_member .cam_list > li:nth-child(n + 4) {
  margin-top: 30px;
}
#contents.c_about.kitchen .ca_member .cam_list > li {
  width: calc(50% - 80px);
  min-height: 150px;
}
#contents.c_about.kitchen .ca_member .cam_list > li:nth-child(3) {
  margin-top: 30px;
}
#contents.c_about.kitchen .ca_member .cam_list > li:nth-child(4) {
  margin-top: 30px;
}
#contents.c_about.kitchen .ca_member .cam_list > li:nth-child(n+4) {
  min-height: 50px;
}
#contents.c_about .ca_member .cam_list > li strong {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 500;
  color: #101111;
  line-height: 30px;
  letter-spacing: -0.5px;
}
#contents.c_about .ca_member .cam_list > li span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  color: #101111;
  line-height: 30px;
  letter-spacing: -0.5px;
  word-wrap: normal;
  word-break: keep-all;
}
#contents.c_about .ca_member .cam_list > li span:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 15px;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background-color: #d5d5d6;
  border-radius: 2px;
}
#contents.c_about .ca_portfolio {
  background-color: #101111;
  overflow: hidden;
}
#contents.c_about .ca_portfolio .cap_list {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
#contents.c_about .ca_portfolio .cap_list li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 33.333%;
}
#contents.c_about .ca_portfolio .cap_list a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_about .ca_portfolio .cap_list img {
  display: inline-block;
  vertical-align: middle;
  float: left;
  box-sizing: border-box;
  width: 100%;
  border: #101111 solid 1px;
}
#contents.c_about .ca_portfolio .cap_list .capl_pic {
  display: none;
}
/* 프로젝트 메인*/
#wrap.project {
  background-color: #101111;
}
#contents.c_main {
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#contents.c_main .c_title {
  padding-top: 0;
}
#contents.c_main .cm_project {
  padding-top: 0;
  padding-bottom: 0;
}
#contents.c_main .cm_project .cmp_list {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 49.9995%;
}
#contents.c_main .cm_project .cmp_list li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 33.333%;
}
#contents.c_main .cm_project .cmp_list a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#contents.c_main .cm_project .cmp_list img {
  display: inline-block;
  vertical-align: middle;
  float: left;
  box-sizing: border-box;
  width: 100%;
  border: #101111 solid 1px;
}
#contents.c_project .cp_introduce .cpi_title {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 25%;
  text-align: left;
}
#contents.c_project .cp_introduce .cpi_title h2 {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  color: #101111;
  line-height: 30px;
  letter-spacing: -1px;
}
#contents.c_project .cp_introduce .cpi_title p {
  max-width: 150px;
  padding: 5px 0;
  font-size: 12px;
  font-weight: 100;
  color: #afb1b0;
  letter-spacing: 0.5px;
}
#contents.c_project .cp_introduce .cpi_title p.mt {
  margin-top: 10px;
}
#contents.c_project .cp_introduce .cpi_title span {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  line-height: 20px;
}
#contents.c_project .cp_introduce .cpi_info {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 25%;
  word-break: keep-all;
}
#contents.c_project .cp_introduce .cpi_info li {
  display: block;
  vertical-align: middle;
  position: relative;
  padding: 5px 20px 5px 30px;
  font-size: 13px;
  font-weight: 100;
  color: #101111;
  text-align: left;
}
#contents.c_project .cp_introduce .cpi_info mark {
  display: none;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  font-weight: 500;
  line-height: 30px;
}
#contents.c_project .cp_introduce .cpi_info span {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  line-height: 20px;
}
#contents.c_project .cp_introduce .cpi_info span:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background-color: #d5d5d6;
  border-radius: 2px;
}
#contents.c_project .cp_introduce .cpi_info a {
  color: #101111;
  word-break: break-all
}
#contents.c_project .cp_introduce .cpi_info a span:hover {
  color: #101111;
  text-decoration: underline;
  text-decoration-color: #101111;
}
#contents.c_project .cp_introduce .cpi_content {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: 50%;
  box-sizing: border-box;
  float: left;
  width: 50%;
  max-width: 750px;
  padding-left: 20px;
  text-align: left;
}
#contents.c_project .cp_introduce .cpi_title + .cpi_content {
  left: 25%;
}
#contents.c_project .cp_introduce .cpi_info + .cpi_content {
  left: 0;
}
#contents.c_project .cp_introduce .cpi_content p.mt {
  margin-top: 35px;
}
#contents.c_project .cp_introduce .cpi_content p > span {
  display: block;
  vertical-align: middle;
  position: relative;
  padding-left: 10px;
}
#contents.c_project .cp_introduce .cpi_content p > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background-color: #d5d5d6;
  border-radius: 2px;
}
#contents.c_project .cp_introduce .cpi_content .cpic_inquiry {
  margin-top: 45px;
}
#contents.c_project .cp_portfolio .cpp_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
#contents.c_project .cp_portfolio .cpp_wrap:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: #fff solid 2px;
}
#contents.c_project .cp_portfolio .cpp_wrap:last-child {
  margin-bottom: 0;
}
#contents.c_project .cp_portfolio .cpp_wrap img {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 100%;
}
#contents.c_project .cp_portfolio .cpp_wrap.t2 img {
  width: 50%;
}
#contents.c_project .cp_portfolio .cpp_wrap strong {
  position: absolute;
  left: 5.208vw;
  top: 4.687vw;
  font-size: 2.604vw;
  font-weight: 700;
  color: #fff;
  line-height: 2.604vw;
  letter-spacing: -0.26vw;
}
#contents.c_project .cp_portfolio .cpp_wrap.shadow strong {
  text-shadow: 0 2px 1.0417vw rgba(16, 17, 17, 0.2);
}
#contents.c_project .cp_portfolio .cpp_wrap mark {
  font-weight: 300;
  color: #fff;
}
#contents.c_project .cp_portfolio .cpp_wrap a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
#contents.c_project .cp_portfolio .cpp_wrap iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#contents.c_project .cp_portfolio .cpp_wrap.map {
  box-sizing: border-box;
  padding: 15% 25%;
}
#contents.c_project .cp_portfolio .cpp_wrap .cpp_ratio {
  height: auto;
  background: #fff;
}
#contents.c_project .cp_portfolio .cpp_content {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  left: 50%;
  box-sizing: border-box;
  width: 50%;
  max-width: 750px;
  margin-left: 20px;
  margin-bottom: 40px;
  text-align: left;
}
#contents.c_project .cp_portfolio .cpp_content p.mt {
  margin-top: 35px;
}
#contents.c_project .cp_portfolio .cp_introduce {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 40px 0;
}
#contents.c_project .cp_portfolio .cp_introduce.t2 {
  padding-top: 0;
}
#contents.c_project .cp_portfolio .cp_introduce.t2:before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  right: 0;
  height: 1px;
  background-color: rgba(16, 17, 17, 0.05);
}
#contents.c_project .cp_portfolio .cp_introduce .cpi_title h2 {
  margin-bottom: 0;
}
#contents.c_project .cp_portfolio .cp_introduce.t1 .cpi_info li {
  padding: 5px 0 5px 10px;
}
#contents.c_project .cp_portfolio .cp_introduce.t1 .cpi_info span:before {
  left: 0;
}
#contents.c_project .cp_portfolio .cp_introduce.t1 .cpi_info + .cpi_content {
  left: 25%;
}
#wrap.customer #contents .c_title h2 {
  color: #101111;
}
#wrap.customer #contents .c_contents {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 0 40px;
}
#wrap.customer #contents .cc_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  left: 50%;
  box-sizing: border-box;
  width: calc(25% + 40px);
  min-height: 940px;
  margin: -1px 0 -1px -20px;
  padding: 0 40px;
  background-color: #fff;
}
#wrap.customer #contents .cc_bg {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  bottom: 0;
  float: left;
  background-image: url("http://www.glowseoul.co.kr/images/main_inquiry.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#wrap.customer #contents .cc_bg img {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 100%;
}
#wrap.customer #contents .cc_task {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#wrap.customer #contents .cc_task .cct_manager {
  margin-bottom: 15px;
}
#wrap.customer #contents .cc_task .cct_manager ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-bottom: 5px;
}
#wrap.customer #contents .cc_task .cct_manager li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
  box-sizing: border-box;
  width: 25%;
  padding-left: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #101111;
  letter-spacing: -0.5px;
  line-height: 20px;
  text-align: left;
  word-break: keep-all;
}
#wrap.customer #contents .cc_task .cct_manager li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: #d5d5d6;
  border-radius: 2px;
}
#wrap.customer #contents .cc_task .cct_manager p {
  padding-left: 10px;
  font-size: 15px;
  font-weight: 100;
  color: #101111;
  letter-spacing: -0.5px;
  line-height: 20px;
  text-align: left;
}
#wrap.customer #contents .cc_task .cct_manager p > a {
  color: #101111;
}
#wrap.customer #contents .cc_task .cct_manager p > a:hover {
  color: #101111;
  text-decoration: underline;
  text-decoration-color: #101111;
}
#wrap.customer #contents.c_inquiry #board {
  padding: 0;
}
/* 게시판 */
#board {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: left;
}
#board .button_wrap {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}
#board .button_wrap ul li {
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin-left: 10px;
}
#board .button_wrap ul li:first-child {
  margin-left: 0;
}
#board .b_category {
  margin-bottom: 20px;
  padding: 5px;
  border: #ececec solid 1px;
  border-radius: 5px;
  background: #f3f6f9;
  text-align: center;
}
#board .b_category ul {
  display: inline-block;
  vertical-align: middle;
}
#board .b_category li {
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin: 0 5px;
}
#board .b_category a {
  display: inline-block;
  vertical-align: middle;
  min-width: 100px;
  padding: 0 20px;
  border: #fff solid 1px;
  border-radius: 2px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #0e0e0e;
  line-height: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#board .b_category a:hover {
  border-color: #0e0e0e;
}
#board .b_category a#bo_cate_on {
  border-color: #0e0e0e;
  background: #0e0e0e;
  color: #fff;
}
#board .b_info {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#board .b_info .bi_count {
  display: inline-block;
  vertical-align: middle;
  float: left;
  font-size: 13px;
  color: #777;
  line-height: 36px;
}
#board .b_info .bi_count strong {
  color: #0e0e0e;
}
#board .b_list {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#board .b_list .bl_wrap {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-top: 10px;
  border-top: #9f9f9f solid 1px;
}
#board .b_list .bl_head {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  padding: 12px 0;
  border-bottom: #ececec solid 1px;
  font-size: 15px;
  font-weight: 300;
  color: #0e0e0e;
  line-height: 30px;
  text-align: center;
}
#board .b_list .bl_head a {
  color: #0e0e0e;
}
#board .b_list .bl_head .blh_wrap {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#board .b_list .bl_head .blh_wrap div {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 12px;
}
#board .b_list .bl_head .blh_checkbox {
  left: 0;
  width: 40px;
}
#board .b_list .bl_head .blh_no {
  left: 0;
  width: 100px;
}
#board .b_list .bl_head .blh_no.checkbox {
  left: 40px;
}
#board .b_list .bl_head .blh_subject {
  display: block !important;
  position: relative !important;
  top: 0 !important;
  margin-left: 100px;
  margin-right: 290px;
}
#board .b_list .bl_head .blh_subject.checkbox {
  margin-left: 140px;
}
#board .b_list .bl_head .blh_name {
  right: 160px;
  width: 130px;
}
#board .b_list .bl_head .blh_date {
  right: 80px;
  width: 80px;
}
#board .b_list .bl_head .blh_hit {
  right: 0;
  width: 80px;
}
#board .b_list .bl_body ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#board .b_list .bl_body li {
  display: block;
  position: relative;
  padding: 12px 0;
  border-bottom: #ececec solid 1px;
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 0;
  text-align: center;
}
#board .b_list .bl_body li.notice {
  background-color: #f3f6f9;
}
#board .b_list .bl_body li.open {
  background-color: #f5f5f5;
}
#board .b_list .bl_body .blb_wrap {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  line-height: 30px;
}
#board .b_list .bl_body .blb_wrap div {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 12px;
}
#board .b_list .bl_body .blb_checkbox {
  left: 0;
  width: 40px;
}
#board .b_list .bl_body .blb_no {
  left: 0;
  width: 100px;
  font-size: 11px;
}
#board .b_list .bl_body .blb_no.checkbox {
  left: 40px;
}
#board .b_list .bl_body .notice .blb_no {
  font-weight: normal;
  color: #0e0e0e;
}
#board .b_list .bl_body .blb_subject {
  display: block !important;
  position: relative !important;
  top: 0 !important;
  margin-left: 100px;
  margin-right: 290px;
  font-size: 15px;
}
#board .b_list .bl_body .blb_subject.checkbox {
  margin-left: 140px;
}
#board .b_list .bl_body .blb_subject a {
  display: inline-block;
  vertical-align: middle;
  float: left;
  font-weight: 700;
  color: #0e0e0e;
  text-align: left;
}
#board .b_list .bl_body .notice .blb_subject {
  color: #101111;
}
#board .b_list .bl_body .blb_subject:hover a {
  color: #101111;
  text-decoration: underline;
}
#board .b_list .bl_body .blb_subject .cnt_cmt {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 18px;
  margin: 0 4px;
  padding: 0 6px;
  border-radius: 5px;
  background-color: #0e0e0e;
  font-size: 11px;
  color: #fff;
  line-height: 18px;
  text-align: center;
}
#board .b_list .bl_body .blb_subject:hover .cnt_cmt {
  background-color: #0e0e0e;
}
#board .b_list .bl_body .blb_name {
  right: 160px;
  width: 130px;
}
#board .b_list .bl_body .blb_name span {
  color: #0e0e0e;
}
#board .b_list .bl_body .blb_name .sv_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#board .b_list .bl_body .blb_name .sv_member {
  font-size: 14px;
  color: #0e0e0e;
  line-height: 22px;
}
#board .b_list .bl_body .blb_name .sv_member img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
#board .b_list .bl_body .blb_name .sv {
  display: none;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
#board .b_list .bl_body .blb_name .sv.sv_on {
  display: none;
}
#board .b_list .bl_body .blb_date {
  right: 80px;
  width: 80px;
  font-size: 11px;
}
#board .b_list .bl_body .blb_hit {
  right: 0;
  width: 80px;
  font-size: 11px;
}
#board .b_view {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-bottom: 40px;
}
#board .b_view .bv_subject {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-bottom: 10px;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  line-height: 30px;
}
#board .b_view .bv_info {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 20px 0;
  border-top: #0e0e0e solid 1px;
  border-bottom: #ececec solid 1px;
}
#board .b_view .bv_info ul {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
#board .b_view .bv_info li {
  display: inline;
  float: left;
  font-size: 12px;
  color: #777;
  line-height: 22px;
}
#board .b_view .bv_info li span {
  font-weight: 500;
  color: #0e0e0e;
}
#board .b_view .bv_info .bvi_name {
  margin-left: 5px;
  font-size: 15px;
}
#board .b_view .bv_info .bvi_name .sv_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#board .b_view .bv_info .bvi_name .sv_member {
  font-size: 15px;
  color: #0e0e0e;
  line-height: 22px;
}
#board .b_view .bv_info .bvi_name .sv_member img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
#board .b_view .bv_info .bvi_name .sv {
  display: none;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
#board .b_view .bv_info .bvi_name .sv.sv_on {
  display: none;
}
#board .b_view .bv_info .bvi_date {
  margin-left: 20px;
  font-size: 15px;
}
#board .b_view .bv_info .bvi_hit {
  position: absolute;
  right: 5px;
  top: 0;
}
#board .b_view .bv_info .bvi_comment {
  position: absolute;
  right: 90px;
  top: 0;
}
#board .b_view .bv_op li {
  display: block;
  position: relative;
  margin-top: 6px;
  padding: 8px 60px;
  border: #f1f1f1 solid 1px;
  border-radius: 10px;
  font-size: 12px;
  color: #777;
  line-height: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
#board .b_view .bv_op strong {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 15px;
  top: 8px;
  color: #394242;
}
#board .b_view .bv_op span {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 15px;
  top: 8px;
  text-align: right;
}
#board .b_view .bv_op mark {
  color: #0e0e0e;
}
#board .b_view .bv_op a {
  color: #0e0e0e;
}
#board .b_view .bv_op a:hover {
  color: #0e0e0e;
  text-decoration: underline;
}
#board .b_view .bv_atc {
  padding: 0 10px 30px;
  border-bottom: #ececec solid 1px;
}
#board .b_view .bv_atc #bo_v_img {
  margin-bottom: 30px;
  text-align: center;
}
#board .b_comment {
  display: none;
}
#board .b_view .bv_atc #bo_v_img img {
  margin-top: 30px;
}
#board .b_comment {
  display: none;
}
#board .b_comment .bc_list {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#board .b_comment .bc_list .bcl_box {
  display: block;
  position: relative;
  margin-bottom: 6px;
  padding: 10px 15px;
  border: #f1f1f1 solid 1px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}
#board .b_comment .bc_list .bcl_head {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 10px;
  border-bottom: #f1f1f1 solid 1px;
}
#board .b_comment .bc_list .bcl_info {
  display: inline-block;
  vertical-align: middle;
  float: left;
  font-size: 11px;
  color: #777;
  line-height: 25px;
}
#board .b_comment .bc_list .bcl_info .member {
  font-size: 13px;
  color: #0e0e0e;
}
#board .b_comment .bc_list .bcl_info .sv_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#board .b_comment .bc_list .bcl_info .sv_member {
  font-size: 13px;
  font-weight: 500;
  color: #0e0e0e;
  line-height: 22px;
}
#board .b_comment .bc_list .bcl_info .sv_member img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
#board .b_comment .bc_list .bcl_info .sv {
  display: none;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
#board .b_comment .bc_list .bcl_info .sv.sv_on {
  display: none;
}
#board .b_comment .bc_list .bcl_info ul {
  display: inline-block;
  vertical-align: middle;
}
#board .b_comment .bc_list .bcl_info li {
  float: left;
  display: inline;
  margin-right: 10px;
}
#board .b_comment .bc_list .bcl_btn {
  display: inline-block;
  vertical-align: middle;
  float: right;
  margin: 0;
  padding: 0;
}
#board .b_comment .bc_list .bcl_btn ul {
  display: inline-block;
  vertical-align: middle;
  float: right;
  margin: 0;
  padding: 0;
}
#board .b_comment .bc_list .bcl_btn li {
  float: left;
  display: inline;
  margin: 0 2px;
}
#board .b_comment .bc_list .bcl_body {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 10px 0 5px 0;
}
#board .b_comment .bc_write {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  height: 80px;
  margin-top: 4px;
}
#board .b_comment .bc_write .bcw_form {
  margin-right: 110px;
}
#board .b_comment .bc_write .bcw_form .textarea {
  height: 80px;
}
#board .b_comment .bc_write .bcw_btn {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
#board .b_comment .bc_write .bcw_btn .button {
  width: 100px;
  height: 80px;
}
#board .b_write .bw_name {
  padding-top: 0;
}
#board .b_write .bw_content .ff_title {
  height: 100%;
  box-sizing: border-box;
}
#board .b_write .bw_check {
  position: relative;
  padding-left: 40px;
  padding-top: 5px;
  padding-bottom: 5px;
}
#board .b_write .bw_check input {
  position: absolute;
  left: 0;
  top: 10px;
  width: 30px;
  height: 30px;
  opacity: 0;
}
#board .b_write .bw_check label {
  cursor: pointer;
}
#board .b_write .bw_check label i {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin-right: 8px;
  border-radius: 2px;
  background-color: #f5f5f5;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#board .b_write .bw_check label i:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 5px;
  margin-top: -6px;
  margin-left: -6px;
  border-bottom: solid 3px currentColor;
  border-left: solid 3px currentColor;
  color: #777;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
#board .b_write .bw_check input:checked + label i {
  background-color: #101111;
}
#board .b_write .bw_check input:checked + label i:before {
  background-color: #0055ff;
}
#board .b_write .bw_check input:checked + label i:after {
  color: #fff;
}
#board .b_write .bw_check label span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-size: 15px;
  font-weight: 100;
  color: #101111;
  line-height: 30px;
}
#board .b_write .bw_check input:checked + label span {
  color: #101111;
}
#board .b_write .bw_check a {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  color: #101111;
  line-height: 30px;
}
#board .b_write .bw_check a:hover {
  color: #101111;
  text-decoration: underline;
}
#board .b_write .bw_send {
  position: absolute;
  left: 40px;
  bottom: 1px;
}
#footer {
  position: relative;
  padding: 40px;
  text-align: right;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#footer div {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#footer .f_copyright {
  float: left;
  width: auto;
  font-size: 12px;
  font-weight: 400;
  color: #101111;
  line-height: 40px;
}
#footer .f_copyright strong {
  font-weight: 900;
}
#footer .f_quick {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: calc(100% - 128px);
  height: 40px;
}
#footer .f_quick .fq_btn {
  display: none;
}
#footer .f_quick li {
  display: inline-block;
  vertical-align: middle;
  float: left;
}
#footer .f_quick a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  height: 100%;
}
#footer .f_quick .fq_icon {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: 200% auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#footer .f_quick a:hover .fq_icon {
  background-color: #101111;
}
#footer .f_quick .fq_sns {
  float: left;
  width: auto;
}
#footer .f_quick .fq_sns li {
  margin-left: 10px;
}
#footer .f_quick .fq_sns .fq_icon {
  background-image: url("http://www.glowseoul.co.kr/images/common/icon_sns.png");
}
#footer .f_quick .fq_sns .fq_icon.youtube {
  background-position: left top;
}
#footer .f_quick .fq_sns .fq_icon.instragram {
  background-position: left bottom;
}
#footer .f_quick .fq_sns a:hover .fq_icon.youtube {
  background-position: right top;
}
#footer .f_quick .fq_sns a:hover .fq_icon.instragram {
  background-position: right bottom;
}
#footer .f_quick .fq_menu {
  float: right;
  width: auto;
}
#footer .f_quick .fq_menu li {
  margin-left: 35px;
}
#footer .f_quick .fq_menu li:last-child {
  display: none;
}
#footer .f_quick .fq_menu a {
  font-size: 12px;
  font-weight: 400;
  color: #101111;
  line-height: 40px;
}
#footer .f_quick .fq_menu a:hover {
  text-decoration: underline;
}
#footer .f_quick .fq_menu .fq_icon {
  background-image: url("http://www.glowseoul.co.kr/images/common/icon_contact.png");
}
#footer .f_quick .fq_menu .fq_icon.call {
  display: none;
  background-position: left top;
}
#footer .f_quick .fq_menu .fq_icon.email {
  display: none;
  background-position: left center;
}
#footer .f_quick .fq_menu .fq_icon.location {
  background-position: left bottom;
}
#footer .f_quick .fq_menu a:hover .fq_icon.call {
  background-position: right top;
}
#footer .f_quick .fq_menu a:hover .fq_icon.email {
  background-position: right center;
}
#footer .f_quick .fq_menu a:hover .fq_icon.location {
  background-position: right bottom;
}
#footer .f_quick .fq_powered {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 290px;
  top: 0;
  width: auto;
  opacity: 0.1;
}
#footer .f_quick .fq_powered a {
  font-size: 12px;
  font-weight: 400;
  color: #101111;
  line-height: 40px;
}
#wrap.main #footer {
  display: none;
}
#wrap.project #footer .f_copyright {
  color: #fff;
}
#wrap.project #footer .f_quick a:hover .fq_icon {
  background-color: #fff;
}
#wrap.project #footer .f_quick .fq_sns .fq_icon.youtube {
  background-position: right top;
}
#wrap.project #footer .f_quick .fq_sns .fq_icon.instragram {
  background-position: right bottom;
}
#wrap.project #footer .f_quick .fq_sns a:hover .fq_icon.youtube {
  background-position: left top;
}
#wrap.project #footer .f_quick .fq_sns a:hover .fq_icon.instragram {
  background-position: left bottom;
}
#wrap.project #footer .fq_menu .fq_icon.call {
  background-position: right top;
}
#wrap.project #footer .fq_menu .fq_icon.email {
  background-position: right center;
}
#wrap.project #footer .fq_menu .fq_icon.location {
  background-position: right bottom;
}
#wrap.project #footer .f_quick .fq_menu a {
  color: #fff;
}
#wrap.project #footer .fq_menu a:hover .fq_icon.call {
  background-position: left top;
}
#wrap.project #footer .fq_menu a:hover .fq_icon.email {
  background-position: left center;
}
#wrap.project #footer .fq_menu a:hover .fq_icon.location {
  background-position: left bottom;
}
@media all and (max-width:1600px) {
  #contents .c_hero {
    min-height: 500px;
  }
  #contents.c_about .ca_process.t1 li {
    width: 25%;
  }
  #contents.c_about .ca_process.t2 li {
    width: 25%;
  }
  #contents.c_about .ca_process li:nth-child(4) span:after {
    display: none;
  }
  #contents.c_about .ca_member .cam_list > li {
    width: calc(50% - 80px);
    min-height: 60px;
  }
  #contents.c_about .ca_member.t1 .cam_list > li:nth-child(n + 3) {
    margin-top: 30px;
  }
  #contents.c_about.studio .ca_member .cam_list > li:nth-child(4) {
    margin-left: 0;
  }
}
@media all and (max-width:1440px) {
  #contents .c_hero {
    min-height: 450px;
  }
  #contents.c_about .ca_member .cam_list > li {
    width: calc(100% - 80px);
    min-height: auto;
  }
  #contents.c_about.kitchen .ca_member .cam_list > li {
    width: calc(100% - 80px);
    min-height: auto;
  }
  #contents.c_about.kitchen .ca_member .cam_list > li:nth-child(n+4) {
    min-height: 30px;
  }
  #contents.c_about .ca_member .cam_list > li:nth-child(n) {
    margin-top: 10px !important;
  }
}
@media all and (max-width:1400px) {
  #wrap.customer #contents .cc_wrap {
    width: calc(50% + 40px);
  }
}
@media all and (max-width:1280px) {
  #header {
    padding: 30px;
  }
  #contents section {
    padding: 30px;
  }
  #contents .c_hero {
    min-height: 400px;
  }
  #contents.c_about .ca_service .cas_step li {
    width: calc(33.333% + 10px);
    margin: 0 -10px;
  }
  #contents.c_about .ca_service .cas_step li span {
    font-size: 12px;
  }
  #contents.c_about .ca_progress .cap_txt {
    margin-bottom: 50px;
  }
  #contents.c_about .ca_progress .cap_wrap {
    padding: 50px;
  }
  #contents.c_about .ca_progress .cap_content .cap_part strong {
    font-size: 18px;
    line-height: 25px;
  }
  #contents.c_about .ca_progress .cap_content .cap_part span {
    font-size: 13px;
    line-height: 25px;
  }
  #contents.c_about .ca_progress .cap_content .cap_team .capt_txt {
    font-size: 13px;
    line-height: 25px;
  }
  #contents.c_about .ca_area .caa_pic {
    height: 450px;
  }
  #contents.c_project .cp_portfolio .cpp_wrap {
    margin-bottom: 30px;
  }
  #contents.c_project .cp_portfolio .cpp_content {
    margin-bottom: 30px;
  }
  #contents.c_project .cp_portfolio .cp_introduce.t2:before {
    top: -30px;
  }
  #wrap.customer #contents .cc_bg {
    left: 30px;
    right: 30px;
  }
  #footer {
    padding: 30px;
  }
}
@media all and (max-width:1024px) {
  #contents p.mt {
    margin-top: 15px;
  }
  #contents .c_hero {
    min-height: 350px;
  }
  #contents.c_about .ca_title p {
    line-height: 0;
  }
  #contents.c_about .ca_title p span {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    line-height: 20px;
  }
  #contents.c_about .ca_introduce .cai_pic {
    width: 100%;
    margin-right: 0;
  }
  #contents.c_about .ca_introduce .cai_content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  #contents.c_about .ca_introduce .cai_content .caic_txt {
    margin-top: 30px;
  }
  #contents.c_about .ca_service .cas_wrap {
    width: 100%;
  }
  #contents.c_about .ca_service .cas_step li {
    width: calc(33.333% + 20px);
    margin: 0 -15px;
  }
  #contents.c_about .ca_service .cas_step li span {
    font-size: 14px;
  }
  #contents.c_about .ca_progress .cap_content > li:nth-last-child(n+2) {
    margin-bottom: 30px;
  }
  #contents.c_about .ca_progress .cap_content li.t1 {
    width: 100%;
  }
  #contents.c_about .ca_progress .cap_content li.t2 {
    width: 100%;
  }
  #contents.c_about .ca_progress .cap_content li .cap_part:before {
    display: none;
  }
  #contents.c_about .ca_progress .cap_content .cap_team .capt_txt {
    padding-top: 90px;
    line-height: 20px;
  }
  #contents.c_about .ca_progress .cap_content .cap_team .capt_txt strong {
    margin-bottom: 10px;
  }
  #contents.c_about .ca_area dd {
    width: 100% !important;
    margin-top: 30px;
  }
  #contents.c_about .ca_area .caa_business {
    padding: 0;
  }
  #contents.c_about .ca_area .caa_txt {
    padding: 0;
  }
  #contents.c_about .ca_area .caa_pic {
    height: 350px;
  }
  #contents.c_about .ca_process .cap_wrap {
    left: 0;
    width: 100%;
    margin-left: 0;
  }
  #contents.c_about .ca_process.t1 li {
    width: 12.5%;
  }
  #contents.c_about .ca_process.t2 li {
    width: 14.285%;
  }
  #contents.c_about .ca_process li:nth-child(4) span:after {
    display: block;
  }
  #contents.c_about .ca_member .cam_wrap {
    left: 0;
    width: 100%;
    margin-left: 0;
  }
  #contents.c_about .ca_member .cam_list {
    margin-top: 20px;
  }
  #wrap.project .menu .m_list {
    width: 60%;
  }
  #contents.c_project .cp_introduce .cpi_title {
    width: 50%;
    margin-bottom: 30px;
  }
  #contents.c_project .cp_introduce .cpi_title h2 {
    margin-bottom: 15px;
  }
  #contents.c_project .cp_introduce .cpi_title p.mt {
    margin-top: 0;
  }
  #contents.c_project .cp_introduce .cpi_info {
    width: 50%;
    padding: 5px 0;
    margin-bottom: 30px;
  }
  #contents.c_project .cp_introduce .cpi_info mark {
    left: 0;
  }
  #contents.c_project .cp_introduce .cpi_content {
    float: left;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
  #contents.c_project .cp_introduce .cpi_title + .cpi_content {
    left: 0;
  }
  #contents.c_project .cp_introduce .cpi_content p.mt {
    margin-top: 20px;
  }
  #contents.c_project .cp_introduce .cpi_content .cpic_inquiry {
    margin-top: 30px;
  }
  #contents.c_project .cp_portfolio .cpp_wrap.map {
    padding: 0;
  }
  #contents.c_project .cp_portfolio .cpp_content {
    left: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  #contents.c_project .cp_portfolio .cpp_content p.mt {
    margin-top: 20px;
  }
  #contents.c_project .cp_portfolio .cp_introduce {
    padding: 30px 0;
  }
  #contents.c_project .cp_portfolio .cp_introduce.t1 .cpi_info + .cpi_content {
    left: 0;
  }
  #wrap.customer #contents .c_contents {
    padding: 0 30px;
  }
  #board {
    display: block;
    width: auto;
  }
  #board .b_category a {
    min-width: 90px;
    padding: 0 15px;
    font-size: 14px;
  }
}
@media all and (max-width:768px) {
  #header {
    padding: 25px;
  }
  #header .h_logo a {
    width: 105px;
    height: 30px;
  }
  #header .h_gnb {
    height: 30px;
  }
  #header .h_gnb .hg_main > li > a {
    height: 30px;
    font-size: 16px;
    line-height: 30px;
  }
  #header .h_gnb .hg_main > li > a:before {
    height: 3px;
  }
  #header .h_gnb .hg_main > li.on > a:before {
    width: 16px;
  }
  #header .h_gnb .hg_main .hg_project h3 {
    font-size: 4vw;
    line-height: 40px;
  }
  #header .h_gnb .hg_main .hg_project > button {
    width: 40px;
    height: 40px;
  }
  #header .h_gnb .hg_main .hg_project > button:before {
    width: 18px;
    height: 2px;
    margin-top: -1px;
    margin-left: -9px;
  }
  #header .h_gnb .hg_main .hg_project > button:after {
    width: 2px;
    height: 18px;
    margin-top: -9px;
    margin-left: -1px;
  }
  #header .h_gnb .hg_main .hg_project .hgp_wrap ul {
    padding-left: 40px;
  }
  #header .h_gnb .hg_main .hg_project .hgp_wrap > ul {
    width: 100%;
  }
  #header .h_gnb .hg_main .hg_project .hgp_wrap > ul > li {
    margin: 10px 0;
  }
  #header .h_gnb .hg_main .hg_project .hgp_wrap a {
    line-height: 30px;
  }
  #main .m_wrap {
    width: 100%;
  }
  #main .m_txt.t1 span {
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 15px;
    text-indent: 10px;
  }
  #main .m_txt.t2 span {
    left: 6.2vw;
    font-size: 16px;
    line-height: 20px;
  }
  #main .m_video .m_txt span {
    bottom: 16%;
  }
  #main .m_note .m_txt span {
    margin-top: -15px;
  }
  #main .m_natureart .m_txt span {
    bottom: 3.3vw;
  }
  #main .m_instagram .m_txt span {
    top: 5.4vw;
  }
  #main .m_kitchen .m_txt span {
    bottom: 3.3vw;
  }
  #main .m_txt strong {
    font-size: 16px;
    line-height: 20px;
  }
  #main .m_txt.t2 strong {
    left: 3.124vw;
    width: 52px;
    height: 33px;
  }
  #main .m_video .m_txt strong {
    margin-left: -57px;
    width: 114px;
    height: 34px;
  }
  #main .m_natureart strong {
    bottom: 3.124vw;
  }
  #main .m_instagram strong {
    top: 3.332vw;
  }
  #main .m_kitchen strong {
    bottom: 3.124vw;
  }
  #main .m_inquiry:after {
    width: 5.208vw;
    height: 5.208vw;
    margin-top: -4.686vw;
    margin-left: -2.604vw;
  }
  #contents section {
    padding: 25px;
  }
  #contents .c_hero {
    min-height: 300px;
  }
  #contents .c_title dd {
    float: left;
    width: 100%;
  }
  #contents .c_title h2 {
    margin-bottom: 15px;
    font-size: 6.510vw;
    line-height: 6.510vw;
  }
  #contents .c_title p {
    padding: 5px 0;
    margin-top: 0;
  }
  #contents .c_title p span {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    line-height: 20px;
  }
  #contents.c_about .ca_title dd {
    width: 100%;
  }
  #contents.c_about .ca_title h2 {
    margin-bottom: 5px;
  }
  #contents.c_about .ca_title p {
    padding: 5px 0;
  }
  #contents.c_about .ca_service .cas_step li {
    width: calc(33.333% + 10px);
    margin: 0 -10px;
  }
  #contents.c_about .ca_service .cas_step li span {
    font-size: 12px;
  }
  #contents.c_about .ca_area dd {
    width: 100% !important;
    margin-top: 20px;
  }
  #contents.c_about .ca_area .caa_pic {
    height: 300px;
  }
  #contents.c_about .ca_process.t1 li {
    width: 25%;
  }
  #contents.c_about .ca_process.t2 li {
    width: 25%;
  }
  #contents.c_about .ca_process li:nth-child(4) span:after {
    display: none;
  }
  #contents.c_about .ca_member .cam_list > li:nth-child(n) {
    margin-top: 10px !important;
  }
  #contents.c_main .cm_project .cmp_list {
    width: 100%;
  }
  #contents.c_project .cp_introduce .cpi_title {
    margin-bottom: 25px;
  }
  #contents.c_project .cp_introduce .cpi_info {
    margin-bottom: 25px;
  }
  #contents.c_project .cp_portfolio .cpp_wrap {
    margin-bottom: 25px;
  }
  #contents.c_project .cp_portfolio .cpp_content {
    margin-bottom: 25px;
  }
  #contents.c_project .cp_portfolio .cp_introduce {
    padding: 25px 0;
  }
  #contents.c_project .cp_portfolio .cp_introduce.t2:before {
    top: -25px;
  }
  #wrap.customer #contents .c_contents {
    box-sizing: border-box;
    padding: 0 25px;
  }
  #wrap.customer #contents .cc_bg {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    margin-bottom: 2vw;
  }
  #wrap.customer #contents.c_inquiry #board {
    background-image: none;
  }
  #wrap.customer #contents .cc_wrap {
    left: 0;
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0;
    padding: 0;
  }
  #board .b_category {
    margin-bottom: 15px;
  }
  #board .b_category ul {
    width: 100%;
    max-width: 400px;
  }
  #board .b_category li {
    float: left;
    width: 50%;
    margin: 0;
  }
  #board .b_category a {
    display: block;
    min-width: auto;
    margin: 5px;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
  }
  #board .b_info .bi_count {
    float: none;
    width: 100%;
  }
  #board .b_info .bi_search {
    float: none;
    width: 100%;
  }
  #board .b_info .bi_search form {
    width: 260px;
    margin: 0 auto;
  }
  #board .b_info .bi_search select {
    width: 80px;
  }
  #board .b_info .bi_search input {
    width: 120px;
  }
  #board .b_info .bi_search button {
    width: 50px;
  }
  #board .b_list .bl_head {
    display: none;
  }
  #board .b_list .bl_body li {
    padding: 10px 10px 6px 10px;
    font-size: 10px;
    line-height: 14px;
    text-align: left;
  }
  #board .b_list .bl_body .blb_wrap div {
    position: relative;
    top: 0;
  }
  #board .b_list .bl_body .blb_checkbox {
    float: left;
    width: 24px;
  }
  #board .b_list .bl_body .blb_no {
    float: left;
    left: 0;
    width: 100px;
  }
  #board .b_list .bl_body .blb_no.checkbox {
    left: 0;
  }
  #board .b_list .bl_body .blb_subject {
    display: inline-block !important;
    width: 100%;
    margin: 0;
    font-size: 15px;
    line-height: 22px;
  }
  #board .b_list .bl_body .blb_subject.checkbox {
    margin-left: 0;
  }
  #board .b_list .bl_body .blb_subject a {
    width: 100%;
    padding: 7px 0;
  }
  #board .b_list .bl_body .blb_subject:hover a {
    color: #c79d70;
  }
  #board .b_list .bl_body .blb_subject .cnt_cmt {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: 16px;
    margin: 0 4px;
    padding: 0 5px;
    border-radius: 5px;
    background-color: #0e0e0e;
    font-size: 11px;
    color: #fff;
    line-height: 16px;
    text-align: center;
  }
  #board .b_list .bl_body .blb_subject:hover .cnt_cmt {
    background-color: #0e0e0e;
  }
  #board .b_list .bl_body .blb_name {
    float: left;
    right: 0;
    width: 110px;
  }
  #board .b_list .bl_body .blb_name .sv_member {
    font-size: 12px;
  }
  #board .b_list .bl_body .blb_name .sv_member img {
    width: 11px;
    height: 11px;
  }
  #board .b_list .bl_body .blb_date {
    float: right;
    right: 0;
    width: 45px;
    margin-top: 5px;
    text-align: right;
  }
  #board .b_list .bl_body .blb_hit {
    float: right;
    right: 0;
    width: auto;
    margin-top: 5px;
    text-align: right;
  }
  #board .b_view {
    margin-bottom: 20px;
  }
  #board .b_view .bv_subject {
    font-size: 16px;
    line-height: 26px;
  }
  #board .b_view .bv_info {
    padding: 10px 0;
  }
  #board .b_view .bv_info li {
    font-size: 11px;
  }
  #board .b_view .bv_info .bvi_date {
    margin-left: 5px;
    font-size: 11px;
  }
  #board .b_view .bv_info .bvi_name {
    width: 100%;
    box-sizing: border-box;
    margin: 0 5px;
    font-size: 0;
  }
  #board .b_view .bv_info .bvi_name .sv_member {
    font-size: 13px;
  }
  #board .b_view .bv_info .bvi_name .sv_member img {
    width: 11px;
    height: 11px;
  }
  #board .b_view .bv_info .bvi_hit {
    position: absolute;
    right: 5px;
    top: 27px;
  }
  #board .b_view .bv_info .bvi_comment {
    right: 5px;
    top: 0;
  }
  #board .b_view .bv_op li {
    margin-top: 5px;
    padding: 5px 50px 5px 40px;
    font-size: 11px;
  }
  #board .b_view .bv_op strong {
    left: 12px;
    top: 5px;
  }
  #board .b_view .bv_op span {
    right: 12px;
    top: 5px;
  }
  #board .b_view .bv_atc {
    padding: 0 0 20px
  }
  #board .b_view .bv_atc #bo_v_img img {
    margin-top: 20px;
  }
  #board .b_comment .bc_list .bcl_box {
    margin-bottom: 5px;
    padding: 5px 10px;
  }
  #board .b_comment .bc_list .bcl_head {
    padding-top: 3px;
    padding-bottom: 5px;
  }
  #board .b_comment .bc_list .bcl_info {
    font-size: 10px;
    line-height: 20px;
  }
  #board .b_comment .bc_list .bcl_info .member {
    font-size: 11px;
  }
  #board .b_comment .bc_list .bcl_info .sv_member {
    font-size: 11px;
    line-height: 20px;
  }
  #board .b_comment .bc_list .bcl_info .sv_member img {
    width: 11px;
    height: 11px;
  }
  #board .b_comment .bc_list .bcl_info li {
    margin-right: 6px;
  }
  #board .b_comment .bc_list .bcl_btn li {
    margin: 0 1px;
  }
  #board .b_comment .bc_list .bcl_body {
    padding: 6px 0 3px 0;
  }
  #board .b_comment .bc_write {
    margin-top: 6px;
  }
  #board .b_comment .bc_write .bcw_form {
    margin-right: 90px;
  }
  #board .b_comment .bc_write .bcw_btn .button {
    width: 80px;
  }
  #board .b_write .bw_check {
    margin-top: 10px;
  }
  #board .b_write .bw_send {
    position: relative;
    left: 0;
    float: left;
    margin-top: 20px;
  }
  #footer {
    padding: 25px;
  }
  #footer .f_copyright {
    float: left;
    font-size: 11px;
    line-height: 40px;
  }
  #footer .f_quick .fq_btn {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 20px;
    outline: none;
    color: #101111;
    transition: 0.2s;
    -webkit-transition: 0.2s;
  }
  #footer .f_quick .fq_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    margin-top: -1px;
    margin-left: -7px;
    border-radius: 1px;
    background-color: currentColor;
    transition: 0.2s;
    -webkit-transition: 0.2s;
  }
  #footer .f_quick .fq_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 14px;
    margin-top: -7px;
    margin-left: -1px;
    border-radius: 1px;
    background-color: currentColor;
    transition: 0.2s;
    -webkit-transition: 0.2s;
  }
  #footer .f_quick.on .fq_btn {
    background-color: #101111;
    color: #fff;
  }
  #footer .f_quick.on .fq_btn:before {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
  }
  #footer .f_quick.on .fq_btn:after {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
  }
  #footer .f_quick .fq_wrap {
    display: none;
    vertical-align: middle;
    position: absolute;
    right: 0;
    width: 40px;
    padding-top: 10px;
    padding-bottom: 50px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(35, 31, 32, 0.1);
    opacity: 0;
    transition: 0.2s;
    -webkit-transition: 0.2s;
  }
  #footer .f_quick.on .fq_wrap {
    display: inline-block;
    bottom: 0;
    opacity: 1;
  }
  #footer .f_quick a span {
    display: none;
  }
  #footer .f_quick .fq_sns {
    float: left;
    width: auto;
  }
  #footer .f_quick .fq_sns li {
    margin-left: 0;
  }
  #footer .f_quick .fq_menu {
    float: right;
    width: auto;
  }
  #footer .f_quick .fq_menu li {
    margin-left: 0;
  }
  #footer .f_quick .fq_menu .fq_icon.call {
    display: inline-block;
  }
  #footer .f_quick .fq_menu .fq_icon.email {
    display: inline-block;
  }
  #footer .f_quick .fq_powered {
    right: 50px;
  }
  #footer .f_quick .fq_powered a {
    font-size: 10px;
  }
  #wrap.project #footer .f_quick .fq_btn {
    color: #fff;
  }
  #wrap.project #footer .f_quick.on .fq_btn {
    background-color: #fff;
    color: #101111;
  }
  #wrap.project #footer .f_quick .fq_wrap {
    background-color: #101111;
  }
}
@media all and (max-width:600px) {
  #header .h_gnb .hg_main {
    float: right;
  }
  #header .h_gnb .hg_main > li {
    box-sizing: border-box;
    margin-left: 0;
  }
  #header .h_gnb .hg_main > li:first-child {
    margin-left: 0;
  }
  #header .h_gnb .hg_main > li > a {
    float: right;
    margin-left: 0;
    text-align: right;
  }
  #header .h_gnb .hg_main > li > a:before {
    left: 0;
  }
  #contents.c_project .cp_introduce .cpi_title {
    width: 100%
  }
  #contents.c_project .cp_introduce .cpi_info {
    width: 100%;
  }
  #contents.c_project .cp_introduce .cpi_info li {
    padding: 5px 0 5px 10px;
  }
  #contents.c_project .cp_introduce .cpi_info span:before {
    left: 0;
  }
  #board .button_wrap ul {
    width: 100%;
  }
  #board .button_wrap ul li {
    width: 100%;
    margin-left: 0;
  }
}
@media all and (max-width:420px) {
  #header {
    padding: 20px;
  }
  #header .h_logo a {
    width: 88px;
    height: 25px;
  }
  #header .h_gnb {
    height: 25px;
  }
  #header .h_gnb .hg_main > li > a {
    height: 25px;
    font-size: 14px;
    line-height: 25px;
  }
  #header .h_gnb .hg_main > li > a:before {
    bottom: -1px;
    height: 2px;
  }
  #header .h_gnb .hg_main > li.on > a:before {
    width: 12px;
  }
  #main .m_txt.t1 span {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 10px;
    text-indent: 5px;
  }
  #main .m_txt.t2 span {
    font-size: 12px;
  }
  #main .m_video .m_txt span {
    bottom: 16%;
  }
  #main .m_natureart .m_txt span {
    bottom: 2.5vw;
  }
  #main .m_kitchen .m_txt span {
    bottom: 2.5vw;
  }
  #main .m_txt strong {
    font-size: 12px;
  }
  #main .m_txt.t2 strong {
    width: 40px;
    height: 25px;
  }
  #main .m_video .m_txt strong {
    margin-left: -35px;
    width: 70px;
    height: 21px;
  }
  #contents section {
    padding: 20px;
  }
  #contents .c_hero {
    min-height: 250px;
  }
  #contents.c_about .ca_service .cas_txt p > mark {
    position: relative;
  }
  #contents.c_about .ca_service .cas_txt p > span {
    margin-left: 10px;
  }
  #contents.c_about .ca_service .cas_step {
    width: 60%;
    margin-left: 20%;
  }
  #contents.c_about .ca_service .cas_step li {
    width: 100%;
    margin: -10px 0;
  }
  #contents.c_about .ca_progress .cap_wrap {
    padding: 40px;
  }
  #contents.c_about .ca_area .caa_pic {
    height: 250px;
  }
  #contents.c_about .ca_process.t1 li {
    width: 33.333%;
  }
  #contents.c_about .ca_process.t2 li {
    width: 33.333%;
  }
  #contents.c_about .ca_process li:nth-child(3n) span:after {
    display: none;
  }
  #contents.c_about .ca_process li:nth-child(4) span:after {
    display: block;
  }
  #contents.c_project .cp_introduce .cpi_title {
    margin-bottom: 20px;
  }
  #contents.c_project .cp_introduce .cpi_info {
    margin-bottom: 20px;
  }
  #contents.c_project .cp_portfolio .cpp_wrap {
    margin-bottom: 20px;
  }
  #contents.c_project .cp_portfolio .cpp_content {
    margin-bottom: 20px;
  }
  #contents.c_project .cp_portfolio .cp_introduce {
    padding: 20px 0;
  }
  #contents.c_project .cp_portfolio .cp_introduce.t2:before {
    top: -20px;
  }
  #wrap.customer #contents .c_contents {
    padding: 0 20px;
  }
  #board .b_write .bw_check label span {
    font-size: 13px;
  }
  #board .b_write .bw_check a {
    font-size: 13px;
  }
  #footer {
    padding: 20px;
  }
}