:root {
  --history-yesar-gap: 9vw;
}
.hidden {
  display: none !important;
}
.red {
  color: red;
  font-family: "Pretendard";
  font-weight: 500 !important;
}
.pd20 {
  padding: 0 20px;
  box-sizing: border-box;
}
.mt20 {
  margin-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.ud {
  text-decoration: underline;
}
.iframe_box_ {
  margin-bottom: 180px !important;
}

header.hover .header__top > ul > li > a {
  color: rgba(255, 255, 255, 0.5);
}
header .header__top > ul > li > a {
  color: rgba(0, 0, 0, 0.8);
}
header .header__top > ul > li.active > a,
header .header__top > ul > li:hover > a {
  color: var(--active);
}
header.hover .header__top > ul > li.active > a,
header.hover .header__top > ul > li:hover > a {
  color: #fff;
}
.container {
  min-height: 100vh;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 50px;
  padding-top: 150px;
  box-sizing: border-box;
  width: auto !important;
}
section {
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.inner_v2 {
  width: 100%;
  max-width: 1960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.inner_v3 {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.inner_v4 {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.inner_v5 {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.sub_tit {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 150px;
  font-family: "Pretendard";
}
.paging {
  display: flex;
  justify-content: center;
  margin: 100px auto 150px;
}
.paging > * {
  margin-right: 5px;
  font-size: 0;
}
.paging > *:last-child {
  margin-right: 0;
}
.paging .number {
  color: rgb(0 0 0 / 50%);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  width: 34px;
  height: 34px;
  padding: 9px 14px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: transparent;
  box-sizing: border-box;
  line-height: 1;
  transition: 0.3s ease;
}
.paging .number.current {
  background: #c3003b;
  color: #fff;
  box-sizing: border-box;
}
.paging span a {
  width: 100%;
  height: 100%;
  display: block;
}
.paging span {
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}
.paging span.first {
  background: #fafafa url(../images/common/paging_first.svg) no-repeat;
  background-position: 50% 50%;
}
.paging span.prev {
  background: #fafafa url(../images/common/paging_prev.svg) no-repeat;
  background-position: 50% 50%;
}
.paging span.next {
  background: #fafafa url(../images/common/paging_next.svg) no-repeat;
  background-position: 50% 50%;
}
.paging span.last {
  background: #fafafa url(../images/common/paging_last.svg) no-repeat;
  background-position: 50% 50%;
}
.paging a.number:first-child {
  /* 여기에 스타일을 적용하세요 */
  margin-left: 15px;
}
.paging > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging a.number:last-child {
  margin-right: 15px;
}
section.gallery_link {
  position: relative;
}
.link_btn {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 30px;
  overflow: hidden;
  z-index: 9;
}
.link_btn a {
  display: block;
  width: 250px;
  height: 50px;
  border-radius: 25px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translateY(0%);
  transition: transform 1s ease;
  animation: __top_bottom 0.5s ease forwards;
}
@keyframes __bottom_top {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes __top_bottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.link_btn a.bottom_top {
  animation: __bottom_top 0.5s ease forwards;
}
.link_btn .ani {
  background: #222;
  left: -100%;
  opacity: 0;
  transition: 1s ease;
  animation: __left_right 0.5s ease forwards;
}
@keyframes __left_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(200%);
    opacity: 1;
  }
}
@keyframes __right_left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
    opacity: 1;
  }
}
.link_btn .ani.right_left {
  animation: __right_left 0.5s ease forwards;
}
/* .link_btn a:hover .ani {
  opacity: 1;
  left: 0;
} */
.link_btn a > div {
  border-radius: 25px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.link_btn .md {
  left: 0;
  background: rgba(195, 0, 59, 0.7);
  color: #fff;
  font-size: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.link_btn p {
  position: relative;
  z-index: 1;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 19px;
}
body.masstige .link_btn .ani {
  background-color: #fff;
}
body.masstige .link_btn p {
  color: #000;
}
.sub_tit.live {
  margin-top: 9px;
}
.sub_tit.live img {
  position: relative;
  top: -12px;
  right: -5px;
}
.custom_btn_v3 {
  appearance: none;
  display: none;
  position: relative;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 700;
  background: url("../images/common/select_arrow2.png") calc(100% - 15px) center
    no-repeat;
  background-position: calc(100% - 20px) 50%;
  background-size: 15px;
  border: 0;
  line-height: 50px;
  height: 50px;
  padding: 0px 15px;
  box-sizing: border-box;
  width: 100%;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  color: #42414d;
  font-size: 16px;
  background-color: #f6f7f9;
  border: 1px solid #dee2e6;
}
.custom_btn_v3:after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background: #32a39b;
}
.tab_cont > div {
  display: none;
}
.tab_cont > .tab_content {
  display: block;
}
.tab_box .custom_btn {
  display: none;
}
.tab_box .tabmenu {
  margin-bottom: 90px;
}
.tab_box .big_tab ul {
  display: flex;
  padding: 30px 50px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  background: #f8f3f0;
}
.tab_box .big_tab ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 3px solid rgba(0, 0, 0, 0.45);
  background: #fff;
  box-sizing: border-box;
  transition: 0.3s ease;
}
.tab_box .big_tab ul li:hover,
.tab_box .big_tab ul li.active {
  background: #dc9f7a;
  border-color: rgba(0, 0, 0, 0.1);
}
.tab_box .big_tab ul li > a {
  color: rgba(0, 0, 0, 0.75);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  font-family: "Pretendard";
  padding: 7px 22px;
  box-sizing: border-box;
  letter-spacing: -0.66px;
  transition: color 0.3s ease;
}
.tab_box .big_tab ul li:hover > a,
.tab_box .big_tab ul li.active > a {
  color: #fff;
}
.tab-contents {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 50px 30px 0;
  margin-top: 80px;
  box-sizing: border-box;
}
.basic_tab {
  position: relative;
  z-index: 0;
}
.basic_tab .tab_box {
  margin-top: 0;
}
.basic_tab .tab_box .big_tab ul {
  margin: 0 auto;
  text-align: center;
}
.basic_tab .tab_box .big_tab ul::-webkit-scrollbar {
  display: none;
}
.content_wrap .tit {
  padding-bottom: 20px;
  border-bottom: 1px solid #999;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.content_wrap .tit span {
  display: block;
  color: #9a9a9a;
  /* font-size: 16px; */
  font-size: 0;
  font-weight: 500;
  margin-bottom: 10px;
}
.content_wrap .tit h3 {
  font-family: "Pretendard";
  font-size: 42px;
  font-weight: 500;
}
.content_wrap .tit h4 {
  display: block;
  color: #9a9a9a;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.content_wrap .content > img {
  display: block;
  width: 100%;
}
.content_wrap .content .img_wrapper {
  text-align: center;
}
.content_wrap .content .img_wrapper,
.content_wrap .content .img_wrapper * {
  font-size: 0;
}
.content_wrap .content > img:not(:last-child) {
  margin-bottom: 40px;
}
.content_wrap .content > * {
  font-family: "Pretendard";
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 30px;
  white-space: pre-wrap;
  margin: 0 auto 30px;
}
.content_wrap .content img {
  display: block;
  margin: 0 auto 10px;
}
.content_wrap .content .editor_content img {
  margin-bottom: 0px;
}
.view_list {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
  margin: 100px auto 30px;
  font-size: 0;
}
.view_list > div {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 30px;
  box-sizing: border-box;
}
.view_list.thumb > div {
  padding: 15px 30px;
}
.view_list > div:nth-child(1) {
  border-right: 1px solid #000;
  box-sizing: border-box;
}
.view_list > div:nth-child(2) a {
  justify-content: end;
}
.view_list > div > a {
  display: flex;
  gap: 35px;
  align-items: center;
}
.view_list p {
  transition: 0.3s ease;
  color: rgba(0, 0, 0, 0.75);
  font-family: "Pretendard";
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view_list span {
  display: inline-block;
  transition: 0.3s ease;
  color: #424242;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.view_list img:not(.thumb) {
  transition: 0.3s ease;
  display: inline-block;
  width: 7px;
  height: 10px;
  filter: brightness(0);
}
.view_list img.thumb {
  width: 100px;
  height: 65px;
  object-fit: cover;
}
.view_list img.thumb.no_img {
  width: 0px;
  margin-left: -35px;
}
.view_list > div > a:hover span,
.view_list > div > a:hover p {
  color: #c3003b;
}
.view_list > div > a:hover img {
  filter: inherit;
}
.basic_btn {
  margin-bottom: 100px;
  display: flex;
  justify-content: end;
}
.basic_btn a {
  padding: 13px 71px;
  border-radius: 5px;
  background: #c3003b;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  min-width: 204px;
  width: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.basic_btn_v2 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.basic_btn_v2 .sh,
.basic_btn_v2 .sh_v2 {
  background: #369e6d;
}
.thumb_slide {
  height: 514px;
  position: relative;
  margin-bottom: 80px;
}
.thumb_slide .swiper-slide:after {
  display: block;
  clear: both;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  top: 0;
  left: 0;
  z-index: 1;
}
.thumb_slide .swiper {
  height: 100%;
}
.thumb_slide .swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.thumb_slide .tit {
  position: absolute;
  left: 50px;
  bottom: 70px;
  z-index: 2;
}
.thumb_slide .tit h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 300;
}
.thumb_slide .tit p {
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}
.thumb_slide .swiper-button-next,
.thumb_slide .swiper-button-prev {
  position: absolute;
  width: 80px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
  margin-top: auto;
  pointer-events: auto;
}
.thumb_slide .swiper-button-next:hover,
.thumb_slide .swiper-button-prev:hover {
  background: #dc9f7a;
}
.thumb_slide .swiper-button-next:after,
.thumb_slide .swiper-rtl .swiper-button-prev:after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  color: transparent;
  background-image: url("../images/architecture/next.png");
  width: 22px;
  height: 7px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.thumb_slide .swiper-button-prev:after,
.thumb_slide .swiper-rtl .swiper-button-next:after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  color: transparent;
  background-image: url("../images/architecture/prev.png");
  width: 22px;
  height: 7px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.thumb_slide .swiper-button-next {
  right: 55px;
  left: auto;
  top: auto;
  transform: inherit;
  bottom: 70px;
}
.thumb_slide .swiper-button-prev {
  top: auto;
  transform: inherit;
  bottom: 70px;
  right: 145px;
  left: auto;
}
.badge_sub {
  margin-bottom: 50px;
}
.badge_sub > ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 50px;
  width: 100%;
}
.badge_sub .thumb {
  box-sizing: border-box;
  background-size: cover !important;
  overflow: hidden;
  height: 21vw;
  max-height: 338px;
  position: relative;
  margin-bottom: 20px;
}
.badge_sub li .thumb > div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.badge_sub li:hover .thumb > div {
  filter: grayscale(1) brightness(0.75);
  transform: scale(1.1);
}
.badge_sub .thumb i {
  position: absolute;
  font-style: normal;
  border-radius: 3px;
  background: #369e6d;
  display: inline-block;
  top: 25px;
  right: 27px;
  color: #fff;
  font-size: 11px;
  font-family: "Pretendard";
  font-weight: 500;
  padding: 5px 10px;
  line-height: 1;
}
.badge_sub .state.ing i {
  background: #004ec3;
}
body.architecture .badge_sub .thumb i {
  position: static;
}
.badge_sub em {
  border-radius: 5px;
  background: #dc9f7a;
  padding: 5px 10px 5px 10px;
  font-style: normal;
  color: #fff;
  display: inline-block;
  margin-bottom: 15px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}
.badge_sub p {
  color: #222;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}
section.cm_ah .badge_sub p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.badge_sub p span {
  color: #898989;
  font-size: 13px;
  font-weight: 500;
  margin-left: 5px;
  display: inline-block;
}
.guest_main {
  position: relative;
  background: url("../images/notice/guest.png") no-repeat;
  background-position: center;
  background-size: cover;
  height: 700px;
  margin-bottom: 75px;
}
.guest_main > a {
  display: block;
  width: 100%;
  height: 100%;
}
.guest_main .desc {
  position: absolute;
  left: 70px;
  bottom: 25px;
}
.guest_main .desc p {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.guest_main .desc p:after {
  clear: both;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.guest_main .desc dl {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.guest_main .desc dt {
  color: #dc9f7a;
  font-weight: 300;
  font-size: 32px;
}
.guest_main .desc dt span {
  font-size: 120px;
  font-weight: 200;
  line-height: 1;
}
.guest_main .desc dd {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: #dc9f7a;
  line-height: 1;
  padding: 6px 12px 5px 12px;
  top: -21px;
  position: relative;
}
section.guest .badge_sub .thumb {
  max-height: 203px;
  height: 203px;
  background-size: cover !important;
}
.desc_range {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.ratio {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ratio span.date {
  color: #ababab;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}
.ratio em {
  color: #ababab;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}
section.live .badge_sub .ratio em {
  color: #fff;
}
.range {
  display: flex;
  align-items: center;
  gap: 5px;
}
.badge_sub .range.ing .num,
.range .num {
  color: #c3003b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
}
.range .track {
  position: relative;
  width: 50px;
  height: 4px;
  background: #d9d9d9;
}
.badge_sub .range.ing .track .hit,
.range .track .hit {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #c3003b;
}
.range.full .num,
.badge_sub .range .num {
  color: #369e6d;
  font-size: 14px;
  font-weight: 500;
}
.range.full .track .hit,
.badge_sub .range .track .hit {
  background: #369e6d;
}
.case h5 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.15);
  letter-spacing: -0.05em;
  padding-bottom: 20px;
  padding-top: 40px;
}
.case > ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 50px;
  width: 100%;
}
.case > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
}
.case .thumb {
  box-sizing: border-box;
  overflow: hidden;
  height: 21vw;
  max-height: 238px;
  position: relative;
  margin-bottom: 20px;
}
.case li .thumb > div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.case li:hover .thumb > div {
  filter: grayscale(1) brightness(0.75);
  transform: scale(1.1);
}
.thumb:hover div.state,
.case li:hover .thumb > div.state {
  transform: scale(1) !important;
  filter: none !important;
}
.case p {
  color: #222;
  font-size: 20px;
  font-weight: 400;
}
.case p span {
  color: #898989;
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-top: 3px;
}
.state {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-content: flex-start;
  gap: 7px;
  height: auto !important;
  z-index: 9;
}
.state span {
  color: #fff;
  line-height: 1;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px 5px;
  border-radius: 3px;
}
.state .done {
  background: #369e6d;
}
.state .new {
  background: #c3003b;
}
.state .ing {
  background: #004ec3;
}
.sub_desc {
  color: #b4b4b4;
  color: #929292;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0 70px;
  font-family: "Pretendard";
}
.sub_desc b {
  font-weight: 500;
  color: #242424;
  font-family: "Pretendard";
}
.sub_desc i {
  font-style: normal;
  color: #dc9f7a;
  font-family: "Pretendard";
}
.sub_desc_v2 {
  padding-bottom: 50px;
  margin-bottom: 0;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.check {
  border-bottom: 1px solid #ababab;
  box-sizing: border-box;
  margin-bottom: 37px;
  padding-bottom: 5px;
}
.check > ul > li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 25px;
}
.check > ul > li .wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.check > ul > li .wrap:after {
  clear: both;
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: #c8c8c8;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
}
.check > ul > li .wrap > div:last-child {
  margin-right: 20px;
}
.check > ul > li:last-child .wrap:after {
  display: none;
}
.check h4 {
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  padding: 5px 8px;
  border-radius: 5px;
  background: #dc9f7a;
  background: #222;
  margin-right: 8px;
}
.check .wrap > div {
  position: relative;
  display: inline-block;
  font-size: 0;
}
.check .wrap > div input[type="checkbox"] {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
}
.check > ul > li .wrap > div:not(:last-child) {
  margin-right: 3px;
}
.check .wrap > div input[type="checkbox"]:hover + label {
  color: #222;
}
.check .wrap > div input[type="checkbox"]:checked + label {
  color: #369e6d;
  border-color: #369e6d;
}
.check .wrap > div label {
  border-radius: 30px;
  padding: 5px 11px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 2px solid transparent;
  line-height: 1;
  color: #b8b8b8;
  color: #929292;
  display: inline-block;
  font-family: "Pretendard";
  cursor: pointer;
}
section.reservation .row {
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
section.reservation .chk p {
  margin: 0 !important;
}
section.guest .badge_sub,
section.cm_ah .badge_sub {
  padding: 30px 0;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
section.showroom .sub_img {
  margin-bottom: 100px;
}
section.complex .badge_sub p span {
  display: block;
  margin-left: 0;
  font-size: 16px;
  margin-top: 2px;
}
section.showroom .tab_box .big_tab ul li.op {
  pointer-events: none;
  opacity: 0.3;
}
.floor_name ul > li:nth-child(1),
.floor_name ul > li:nth-child(3),
.floor_name ul > li:nth-child(4) {
  pointer-events: none;
}
section.showroom .floor_tit {
  display: flex;
  gap: 90px;
  padding: 70px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  margin-bottom: 80px;
}
section.showroom .floor_tit h3 {
  color: #000;
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
}
section.showroom .floor_tit .tit {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
section.showroom .floor_tit .tit h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  background: #dc9f7a;
  display: inline-flex;
  padding: 8px 15px;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-family: "Pretendard";
}
section.showroom .floor_tit .tit h5 {
  color: #000;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1.56px;
  margin-top: 30px;
  font-family: "Pretendard";
}
section.showroom .floor_tit p {
  color: #696969;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
.basic_tab .tab {
  display: none;
}
.basic_tab .tab.active {
  display: block;
}
section.showroom .slider_wrap .slick .thumb {
  width: 890px;
  height: 100%;
}
section.showroom .floor_tit .desc span {
  color: #dc9f7a;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.54px;
  line-height: 1;
  display: inline-flex;
  padding: 4px 15px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 15px;
  border: 2px solid #dc9f7a;
  margin-bottom: 5px;
}
section.showroom .floor_tit .desc span:not(:last-of-type) {
  margin-right: 1px;
}
section.showroom .slider_wrap {
  width: 69%;
  height: 480px;
  margin-left: 0;
}
section.showroom .slider_wrap .wrap {
  display: block;
  height: 100%;
}
section.showroom .slider_wrap .slick {
  width: 100%;
  height: 100%;
}
section.showroom .slider_wrap .slick-list {
  width: 890px !important;
  height: 100%;
}
section.showroom .inner_v3 {
  max-width: 1530px;
}
section.gallery_visual {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.gallery_visual:after {
  clear: both;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
section.gallery_visual .thumb {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
section.gallery_visual .txt {
  position: absolute;
  top: 215px;
  color: #fff;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
  left: 0;
  right: 0;
}
section.gallery_visual .txt h2 {
  display: inline-block;
  background: #369e6d;
  font-weight: 500;
  padding: 3px 11px 1px;
  font-size: 14px;
  border-radius: 3px;
}
section.gallery_visual .txt h3 {
  font-size: 60px;
  font-weight: 600;
  margin: 15px 0;
}
section.gallery_visual .txt h3 span {
  font-weight: 300;
}
section.gallery_visual .txt p {
  font-size: 24px;
}
section.board_detail {
  background: #fff;
  position: relative;
  z-index: 1;
  padding-top: 150px;
  box-sizing: border-box;
}
section.board_detail .board_plan {
  margin-bottom: 0;
}
section.board_detail .content_wrap > div:not(:first-child) {
  margin-bottom: 180px;
}
body.masstige section.board_detail .content_wrap > div:not(:first-child) {
  margin-bottom: 0;
}
body.masstige section.board_detail .ma_mb {
  margin-bottom: 100px !important;
}
section.furniture_view .board_plan > ul > li:nth-child(1) {
  padding-right: 100px;
  padding-top: calc(100% * 9 / 16);
  position: relative;
}
section.furniture_view .board_plan > ul > li:nth-child(1) > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
}
section.board_detail .board_plan > ul > li:nth-child(1) h4,
section.board_detail .board_plan > ul > li:nth-child(3) h4 {
  margin-bottom: 30px;
}
section.board_detail .board_plan > ul > li:nth-child(1) p {
  font-size: 18px;
  line-height: 1.8;
}
section.board_detail .board_plan > ul > li:nth-child(2) {
  margin-top: 81px;
}
section.board_detail .board_col02 iframe {
  width: 100%;
  height: 828px;
}
section.board_detail .board_col03 > div:not(:last-child) {
  margin-bottom: 50px;
}
section.board_detail iframe {
  margin-bottom: 50px;
}
section.board_detail .table_format .row {
  min-height: 70px;
}
section.board_detail .write_notice .col01 .chk {
  border-top: none;
}
section.board_detail .write_notice {
  margin-bottom: 0;
}
section.board_detail .write_notice .col01 .all {
  padding-top: 20px;
  border-top: 3px solid rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid rgba(0, 0, 0, 0.5);
}
section.board_detail .board_col05 {
  padding: 100px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
section.board_detail .board_col05:after {
  background: rgba(0, 0, 0, 0.025);
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  clear: both;
  content: "";
  display: block;
  z-index: -2;
}
.bd_tit {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  /*    border-bottom: 1px solid #000;*/
  box-sizing: border-box;
  padding-left: 20px;
  /*    padding-bottom: 5px;*/
  margin-bottom: 25px;
  line-height: 1;
}
.bd_tit:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #c3003b;
}
.bd_desc {
  width: 100%;
  background: #f6f7f9;
  padding: 27px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.bd_desc h5 {
  font-size: 26px;
  font-family: "Pretendard";
  font-weight: 700;
}
.bd_desc p {
  font-size: 19px;
  font-family: "Pretendard";
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  margin-top: 10px;
  position: relative;
  padding-left: 25px;
  box-sizing: border-box;
}
.bd_desc p:after {
  display: block;
  content: "";
  clear: both;
  width: 14px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 0;
  background: url("../images/board_detail/chk_icon.png") no-repeat;
  background-size: cover;
  filter: grayscale(1);
}
.bd_wrap {
  padding: 0 30px;
}
section.board_detail .board_plan ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 80px;
  grid-row-gap: 100px;
}
section.main_top_banner_ {
  width: 100%;
  position: relative;
  margin: 0 auto 100px;
}
section.main_top_banner_ .swiper-slide {
  height: 100%;
}
section.main_top_banner_ .swiper-button-next:after,
section.main_top_banner_ .swiper-button-prev:after {
  display: none !important;
}
section.main_top_banner_ .swiper-pagination-fraction {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  bottom: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  box-sizing: border-box;
  display: block;
  width: 60px;
  padding: 3px 0 5px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.main_top_banner_ .swiper-pagination-fraction span {
  margin: 0 2px;
}
section.main_top_banner_
  .swiper-pagination-fraction
  .swiper-pagination-current {
  color: #fff;
}
section.main_top_banner_ .swiper-button-next,
section.main_top_banner_ .swiper-button-prev {
  width: 61px;
  height: 87px;
  background-size: cover;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.main_top_banner_ .swiper-button-prev {
  background-image: url("../images/common/main_banner-left-arrow.svg");
}
section.main_top_banner_ .swiper-button-next {
  background-image: url("../images/common/main_banner-right-arrow.svg");
}
.floor_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
}
.floor_name {
  display: inline-block;
  margin-left: -50px;
}
.floor_name ul {
  display: flex;
  flex-direction: column-reverse;
}
.floor_name ul > li {
  display: flex;
  align-items: self-start;
  gap: 15px;
  cursor: pointer;
}
/*.floor_name ul > li:not(:first-child) {*/
.floor_name ul > li {
  margin-top: -22px;
}
.floor_name ul > li.active div > * {
  color: #dc9f7a;
}
.floor_name ul > li.active div:before {
  filter: drop-shadow(0px 0px 4px #fff);
  border-color: #fff;
}
.floor_name ul > li.active div:after {
  border-bottom: 1px solid #ae7055;
}
.floor_name div {
  display: inline-block;
  position: relative;
  top: 16px;
  left: -46px;
}
.floor_name div * {
  color: #c5c5c5;
  font-style: normal;
  font-family: "Pretendard";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.45px;
  position: relative;
}
.floor_name div:before {
  clear: both;
  content: "";
  display: block;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: -9px;
  left: -60px;
  background: transparent;
  width: 7px;
  height: 7px;
}
.floor_name div:after {
  position: absolute;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  clear: both;
  content: "";
  display: block;
  bottom: -7px;
  left: -52px;
  width: 200px;
}
.floor_name div i {
  padding-right: 20px;
  position: relative;
}
.floor_name div i:after {
  top: 0;
  right: 6px;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  clear: both;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
}
.badge_mb {
  display: none;
}
body.exhibition .sub_tit,
body.architecture .sub_tit,
body.community .sub_tit,
body.notice .sub_tit {
  margin-bottom: 0;
}
body.masstige {
  background: #221f1d;
}
body.masstige .write_notice .btn {
  margin-bottom: 150px;
}
body.masstige header.show .request a {
  background: #c3003b;
  color: #fff;
}
body.masstige header.show.hover .request a {
  background: #fff;
  color: #c3003b;
}
body.masstige header.show.top .request:hover a,
body.masstige header .request:hover a {
  color: #2d2d2d;
  background: #fff;
}
body.masstige header .request:hover a,
body.masstige header.show .request:hover a,
body.masstige header.hover.show .request:hover a,
body.masstige header.hover .request:hover a {
  color: #fff;
  background: #2d2d2d;
}
body.header_reverse header.show.hover.top .search svg path,
body.header_reverse header .search svg:hover path,
body.header_reverse header.show.hover .search svg path,
body.header_reverse header.show.top .search svg:hover path {
  stroke: #fff;
}
body.header_reverse header.show.top .search svg path {
  stroke: #c3003b;
}
body.header_reverse header.show .search svg path {
  stroke: #c3003b;
}
body.header_reverse header .search svg:hover path,
body.header_reverse header.show.hover.top .search svg:hover path,
body.header_reverse header.hover .search svg:hover path,
body.header_reverse header.show .search svg:hover path {
  stroke: #2d2d2d;
}
body.header_reverse header.show.top .logo svg path.cl1 {
  fill: rgba(255, 255, 255, 0.5);
}
body.header_reverse header.show.top .logo svg path.cl2 {
  fill: #fff;
}
body.header_reverse header.show.hover .logo svg path.cl1,
body.header_reverse header.hover .logo svg path.cl1 {
  fill: rgba(255, 255, 255, 0.5);
}
body.header_reverse header.show .logo svg path.cl1 {
  fill: #c3003b;
}
body.header_reverse header.show .logo svg path.cl2 {
  fill: #000;
}
body.header_reverse header.show.hover .logo svg path.cl2 {
  fill: #fff;
}
body.masstige header.show.hover .header__top > ul > li > a,
body.masstige header.show.top .header__top > ul > li > a,
body.masstige header.show.top .header__top > ul > li > a {
  color: #fff;
}
body.masstige header.show .header__top > ul > li > a {
  color: rgba(0, 0, 0, 0.8);
}
body.masstige header .header__top > ul > li.active > a,
body.masstige header.top.show .header__top > ul > li.active > a,
body.masstige header.show.top .header__top > ul > li.active > a,
body.masstige header .header__top > ul > li:hover > a {
  color: var(--active);
}
body.masstige header.top.show.hover .header__top > ul > li.active > a,
body.masstige header.show.top .header__top > ul > li:hover > a,
body.masstige header.show.top.hover .header__top > ul > li:hover > a {
  color: #fff;
}
body.masstige header.hover .header__top > ul > li.active > a,
body.masstige header.hover .header__top > ul > li:hover > a {
  color: #fff;
}
body.masstige section.sub__bottom {
  background: #fff;
}
body.masstige .ms_visual {
  margin: 115px auto 450px;
}
body.masstige section.board_detail {
  background: #221f1d;
}
body.masstige .bd_desc {
  border: 1px solid #ffffff50;
  background: rgba(0, 0, 0, 0.2);
}
body.masstige .bd_desc p {
  color: rgba(255, 255, 255, 0.7);
}
body.masstige .board_plan h4,
body.masstige .board_plan dd,
body.masstige .bd_tit,
body.masstige .bd_desc h5,
body.masstige .bd_tit_v2,
body.masstige .case p,
body.masstige .content_wrap .tit h3,
body.masstige section.board_detail .board_plan {
  color: #fff;
}
body.masstige .board_plan dd p em {
  color: #767676;
}
body.masstige .write_notice .col01 .chk p,
body.masstige .write_notice * {
  color: #fff;
}
body.masstige .write_notice .col01 .chk span {
  background: #474747;
}
body.masstige .write_notice .col01 .chk button {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #ffffff50;
  color: #fff;
}
body.masstige .table_format .row .col input,
body.masstige .table_format .row .col textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #ffffff50;
}
body.masstige .table_format select {
  background: url("../images/common/arrow.png") 95% center no-repeat;
  border: 1px solid #ffffff50;
  background-color: rgba(0, 0, 0, 0.2);
}
body.masstige .table_format,
body.masstige .write_notice .col01 .chk,
body.masstige section.board_detail .write_notice .col01 .all,
body.masstige .table_format .row {
  border-color: #ffffff50;
}
body.masstige section.board_detail .board_col05:after {
  background: rgba(0, 0, 0, 0.2);
}
body.masstige .table_format select option {
  background: #1b1917;
}
body.masstige section.board_detail .board_plan ul {
  margin-bottom: 180px;
}
body.masstige .ms_img {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
body.masstige .ms_img .desc {
  width: 100%;
  max-width: 1480px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
body.masstige .ms_img h4 {
  color: #fff;
  background: #c3003b;
  padding: 3px 20px;
  border-radius: 3px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin: 15px 0 20px;
  display: inline-block;
}
body.masstige .ms_img h5 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  /*    margin-right: 12px;*/
  /*    display: inline-block;*/
}
body.masstige .ms_img span {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-left: 12px;
}
body.masstige .ms_img p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-weight: 400;
  line-height: 1.7;
}
body.notice {
  background: #fff;
}
body.notice .datepicker {
  margin-top: 55px;
}
body.notice .datepicker .table-condensed > tbody > tr > td {
  padding: 10.4px 15px;
}
section.masstige h2 {
  position: relative;
  text-align: center;
  padding-bottom: 460px;
}
section.masstige h2 span {
  color: #fff;
  font-family: "Lovelace";
  font-size: 70px;
  font-weight: 250;
  display: block;
  position: relative;
  left: -115px;
}
section.masstige h2 img {
  position: relative;
  display: block;
  margin: 0 auto;
}
section.masstige h2:after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 60px;
  width: 1px;
  height: 350px;
  background: rgba(220, 159, 122, 0.5);
  clear: both;
  content: "";
  display: block;
}
section.masstige .wrap {
  text-align: center;
}
section.masstige .wrap p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  font-weight: 200;
  display: inline-block;
  text-align: left;
  left: -50px;
  position: relative;
}
section.masstige .wrap span {
  color: #dc9f7a;
  text-align: right;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.72px;
  margin-top: 50px;
  display: inline-block;
  position: relative;
  right: 235px;
}
section.masstige .visual {
  font-size: 0;
  margin-top: -710px;
  position: relative;
}
section.masstige .visual img {
  display: inline-block;
  vertical-align: bottom;
}
section.masstige .visual > img:nth-child(2) {
  margin-left: 30px;
}
section.masstige .visual > img:last-child {
  margin-left: -155px;
  top: 250px;
  position: relative;
}
section.masstige .col01 h3 {
  color: #fff;
  font-family: "Lovelace";
  font-size: 42px;
  font-weight: 200;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
section.masstige .col01 h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 85px;
  height: 1px;
  background: rgba(220, 159, 122, 0.5);
  clear: both;
  content: "";
  display: block;
}
section.masstige .col .desc {
  position: relative;
  padding: 130px 0 130px 0;
  padding-left: calc(100% - 83%);
}
section.masstige .col01 .desc {
  padding: 10px 0 120px 0;
  padding-left: calc(100% - 83%);
  margin-top: 120px;
}
section.masstige .col .desc:after {
  clear: both;
  content: "";
  display: block;
  left: calc(100% - 86%);
  top: 0;
  width: 2px;
  height: 0%;
  background: rgba(220, 159, 122, 0.33);
  position: absolute;
  transition: height 0.5s ease;
}
section.masstige .col.sc_event .desc:after {
  height: 100%;
}
section.masstige .col .desc > img {
  transform: translateY(100%);
  opacity: 0;
  transition: 0.6s ease;
}
section.masstige .col .desc > p {
  transform: translateY(20%);
  opacity: 0;
  transition: 0.6s ease;
}
section.masstige .col.sc_event .desc > * {
  transform: translateY(0);
  opacity: 1;
}
section.masstige .col .desc img {
  display: block;
  margin-bottom: 20px;
}
section.masstige .col .desc p {
  color: #fff;
  text-align: left;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
}
section.masstige .col .bg {
  width: 100%;
  height: 780px;
  background-image: url("../images/masstige/masstige4.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
section.masstige .col02 .desc,
section.masstige .col04 .desc {
  padding-left: inherit;
  padding-right: calc(100% - 83%);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
}
section.masstige .col02 .desc p,
section.masstige .col04 .desc p {
  text-align: right;
}
section.masstige .col02 .desc:after,
section.masstige .col04 .desc:after {
  left: auto;
  right: calc(100% - 86%);
}
section.masstige .col02 .bg {
  background-image: url("../images/masstige/masstige5.png");
}
section.masstige .col03 .bg {
  background-image: url("../images/masstige/masstige6.png");
}
section.masstige .col04 .bg {
  background-image: url("../images/masstige/masstige7.png");
}
section.furniture .img,
section.house .inner_v3 {
  margin-bottom: 180px;
}
section.furniture_list .case p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
section.furniture_list .case .thumb i {
  position: absolute;
  font-style: normal;
  border-radius: 3px;
  background: #369e6d;
  display: inline-block;
  top: 25px;
  right: 27px;
  color: #fff;
  font-size: 14px;
  font-family: "Pretendard";
  font-weight: 500;
  padding: 3px 11px;
}
section.furniture .slider_wrap .wrap .txt {
  width: 377px;
}
section.furniture .slider_wrap .wrap {
  gap: 70px;
}
section.furniture .slider_wrap .slick-list {
  width: 890px;
}
.bg_tit {
  border-radius: 5px;
  background: #dc9f7a;
  padding: 6px 15px;
  margin-bottom: 15px;
  display: inline-block;
}
.bg_tit em {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  font-style: normal;
}
.more_btn {
  width: max-content;
  height: 35px;
  padding: 10px 25px;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #dc9f7a;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  transition: 0.3s ease;
}
.more_btn span {
  color: #dc9f7a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s ease;
}
.more_btn:hover {
  background: #dc9f7a;
}
.more_btn img {
  transition: 0.3s ease;
}
.more_btn:hover img {
  filter: brightness(0) invert(1);
}
.more_btn:hover span {
  color: #fff;
}
.slider_wrap {
  width: 100%;
  max-width: inherit;
  margin-left: calc((100% - 1440px) / 2);
  font-size: 0;
}
.slider_wrap .wrap {
  font-size: 0;
  display: flex;
  gap: 50px;
}
.slider_wrap .wrap > div {
  display: inline-block;
  vertical-align: top;
}
.slider_wrap > div {
  margin-bottom: 100px;
}
.slider_wrap .txt h3 {
  color: #000;
  display: block;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -1.86px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.slider_wrap .txt h3 span {
  color: #dc9f7a;
  font-size: 16px;
  font-weight: 500;
  padding: 2px 15px;
  border-radius: 20px;
  border: 2px solid #dc9f7a;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 0px;
  vertical-align: 22px;
}
.slider_wrap .txt .desc {
  font-size: 32px;
  font-style: normal;
  font-weight: 200;
  padding-bottom: 23px;
  margin-bottom: 25px;
  position: relative;
  box-sizing: border-box;
  line-height: 1.2;
  letter-spacing: -1.14px;
}
.slider_wrap .txt .desc:after {
  clear: both;
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  height: 1px;
  background: #dc9f7a;
}
section.house .slider_wrap .wrap .txt {
  width: 350px;
}
section.house .slider_wrap .wrap {
  justify-content: space-between;
  display: inline-flex;
}
section.house .slider_wrap .txt h3 {
  word-break: break-all;
}
section.house .slider_wrap .txt h3 span {
  margin-top: 15px;
}
.slider_wrap .slick {
  position: relative;
}
.slider_wrap .slick-list {
  left: 76px;
  top: -75px;
}
.slider_wrap .slick-list {
  margin-left: 25px;
}
section.house .slider_wrap .slick-slide {
  margin-right: 25px;
  width: 20vw;
}
section.house .slider_wrap .slick-slide > a {
  position: relative;
  display: block;
  padding-top: calc(100% * 9 / 16);
}
section.house .slider_wrap .slick-slide > a img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
}
.slider_wrap .slick .thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: width 0.5s ease, height 0.5s ease;
}
.slider_wrap .slick-slider .slick-track {
  height: 100%;
}
.slider_wrap .slick-arrow {
  width: 80px;
  height: 75px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: 0.3s ease;
  position: relative;
  font-size: 0;
  cursor: pointer;
}
.slider_wrap .slick-prev:after {
  background: url("../images/common/left_.svg") no-repeat;
  background-position: center;
  background-size: cover;
  width: 23px;
  height: 8px;
  clear: both;
  display: block;
  content: "";
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider_wrap .slick-next:after {
  background: url("../images/common/right_.svg") no-repeat;
  background-position: center;
  background-size: cover;
  width: 23px;
  height: 8px;
  clear: both;
  display: block;
  content: "";
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider_wrap .slick-next {
  top: 87px;
  position: absolute;
}
.slider_wrap .slick-arrow:hover {
  background: #dc9f7a;
}
.slider_wrap .slick-arrow:hover:after {
  filter: invert(1);
}
section.furniture .slider_wrap {
  margin-left: 0;
}
section.furniture .slider_wrap .thumb img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
section.furniture .slider_wrap .slick {
  width: 68.8%;
}
section.company .col01 {
  text-align: center;
  margin-top: 40px;
}
section.company .col01 p {
  font-family: "Lovelace";
  font-size: 100px;
  font-weight: 300;
}
section.company .col01 span {
  display: block;
  margin-top: 70px;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.7);
  margin-left: 10px;
}
section.company .col02 {
  position: relative;
  background: #242424;
  padding: 200px 0;
  margin: 215px 0 330px;
  box-sizing: border-box;
}
section.company .col02 .txt {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
section.company .col02 .txt:after {
  clear: both;
  content: "";
  display: block;
}
section.company .col02 ul {
  position: relative;
  width: calc(100% - 40%);
  float: right;
}
section.company .col02 ul > li {
  position: relative;
  padding-left: 35px;
  box-sizing: border-box;
}
section.company .col02 ul > li:after {
  position: absolute;
  content: "";
  display: block;
  clear: both;
  border: 4px solid #dc9f7a;
  box-sizing: border-box;
  top: 0;
  left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #242424;
}
section.company .col02 ul > li:not(:last-child) {
  padding-bottom: 170px;
  border-left: 1px dashed #dc9f7a;
  box-sizing: border-box;
}
section.company .col02 h3 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 42px;
  font-weight: 100;
  line-height: 0.5;
}
section.company .col02 p {
  color: #dc9f7a;
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  margin: 30px 0 20px;
}
section.company .col02 p i {
  font-style: normal;
  font-size: 36px;
  font-weight: 500;
  color: #dc9f7a;
  display: inline-block;
  margin-left: 6px;
}
section.company .col02 p em {
  display: block;
  font-style: normal;
  font-size: 22px;
  font-weight: 400;
  color: rgba(220, 159, 122, 0.5);
}
section.company .col02 span {
  display: block;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}
section.company .col02 img {
  position: absolute;
}
section.company .col02 img.img1 {
  top: -225px;
  left: -508px;
}
section.company .col02 img.img2 {
  top: 46%;
  right: -208px;
}
section.company .col02 img.img3 {
  bottom: -217px;
  left: -113px;
}
section.company .col03 {
  padding: 0 0 240px;
  box-sizing: border-box;
}
section.company .col03 h3 {
  display: block;
  margin-bottom: 110px;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.2;
}
section.company .col03 h3 b {
  color: #c3003b;
  font-size: 60px;
  font-weight: 700;
}
section.company .col03 ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  gap: 190px 0;
}
section.company .col03 li {
  position: relative;
}
section.company .col03 li:nth-child(1),
section.company .col03 li:nth-child(3) {
  top: 100px;
}
section.company .col03 h4 {
  font-size: 36px;
  font-weight: 700;
  padding-left: 20px;
  box-sizing: border-box;
}
section.company .col03 h4:after {
  width: 10px;
  height: 10px;
  border: 3px solid #c3003b;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
}
section.company .col03 h5 {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: 500;
  padding-left: 23px;
  margin: 7px 0 25px;
  box-sizing: border-box;
}
section.company .col03 p {
  font-size: 22px;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
  margin: 10px 0;
}
section.company .col03 p:after {
  width: 5px;
  height: 5px;
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 5px;
  background: #000;
  border-radius: 50%;
  box-sizing: border-box;
}
section.company .col03 p:not(:last-child) {
  margin-bottom: 15px;
}
section.company .col03 img {
  margin-top: 40px;
}
section.greeting__contents1 {
  font-size: 0;
}
section.greeting__contents1 .col01 {
  position: relative;
  height: 972px;
}
section.greeting__contents1 .col01 > div {
  position: absolute;
}
section.greeting__contents1 .line1 {
  position: absolute;
  width: 100%;
  bottom: 37px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
section.greeting__contents1 .imgbox1 {
  position: relative;
  z-index: -1;
}
section.greeting__contents1 .textbox1 {
  top: 45px;
  left: 178px;
}
section.greeting__contents1 .textbox1 h3 {
  color: #000;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 110px;
  /* 110% */
  letter-spacing: -3px;
}
section.greeting__contents1 .textbox1 p {
  margin-top: 30px;
  color: #444;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}
section.greeting__contents1 .textbox2 {
  top: 45px;
  right: 100px;
}
section.greeting__contents1 .textbox2 div p {
  margin-top: 30px;
  color: #616161;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  display: flex;
}
section.greeting__contents1 .textbox2 div p:first-child {
  margin-top: 0;
}
section.greeting__contents1 .textbox2 div p:last-child {
  color: #898989;
  font-weight: 400;
}
section.greeting__contents1 .textbox2 div p:last-child span {
  position: relative;
  top: 17px;
  left: 15px;
}
section.greeting__contents1 .textbox2 div p b {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}
section.patent .tit {
  text-align: center;
  margin-bottom: 220px;
}
section.patent .tit h3 {
  display: inline-block;
  padding: 6px 20px 5px 20px;
  line-height: 1;
  border-radius: 5px;
  border: 2px solid #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
section.patent .tit p span {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  padding: 10px 15px;
  border-bottom: 1px solid #000;
}
section.patent .col01 .one {
  position: relative;
  width: 1200px;
  height: 400px;
  margin: 0 auto 100px;
}
section.patent .col01 .one p {
  text-align: center;
  overflow: hidden;
}
section.patent .col01 .one b {
  font-size: 150px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -6px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: url("../images/patent/patent.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  animation: bg 5s linear infinite;
}
@keyframes bg {
  0% {
    filter: hue-rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    filter: hue-rotate(180deg);
  }
  100% {
    filter: hue-rotate(0deg);
    transform: translate(-50%, -50%) rotate(359.9999deg);
  }
}
section.patent .col01 .one p:after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/patent/patent1.png") no-repeat;
  background-position: center;
  background-size: cover;
  width: 1164px;
  height: 780px;
  top: 37%;
  left: 50.65%;
  transform: translate(-50%, -50%);
}
@keyframes rotateImage {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
section.patent .col01 .one dl {
  position: absolute;
}
section.patent .col01 .one dl:nth-of-type(1) {
  bottom: 0;
  left: 75px;
}
section.patent .col01 .one dl:nth-of-type(2) {
  bottom: 150px;
  left: 63.5%;
  transform: translateX(-50%);
}
section.patent .col01 .one dl:nth-of-type(3) {
  right: 80px;
  top: -90px;
  display: flex;
  flex-direction: column-reverse;
  text-align: right;
}
section.patent .col01 .one dt {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
section.patent .col01 .one dd {
  font-family: "Valencia-LightIta";
  font-size: 36px;
  font-style: normal;
  color: #c3003b;
}
section.patent .col02 {
  background: url("../images/patent/patent2.png") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0 240px;
}
section.patent .col02 .tit {
  color: #fff;
  margin-bottom: 150px;
}
section.patent .col02 .tit h3,
section.patent .col02 .tit p span {
  border-color: #fff;
}
section.patent .col02 .desc {
  color: #fff;
  text-align: center;
  font-size: 52px;
  font-weight: 300;
}
section.patent .col02 .desc i {
  color: #d8b958;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
}
section.patent .col03 {
  background: #f5f5f5;
  padding: 88px 0 258px;
}
section.patent .col03 .tit {
  margin-bottom: 150px;
}
section.patent .col03 .thumb {
  display: flex;
  width: 300px;
  height: 300px;
  justify-content: center;
  align-items: center;
  border-radius: 150px;
  border: 1px dashed #555;
  background: #fff;
  margin-bottom: 35px;
}
section.patent .col03 ul {
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  text-align: center;
}
section.patent .col03 ul > li {
  position: relative;
}
section.patent .col03 ul > li:after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  width: 380px;
  height: 302px;
  background: url("../images/patent/patent7.png") no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 150px;
}
section.patent .col03 ul > li:last-child:after {
  display: none;
}
section.patent .col03 ul > li img {
  transition: 0.5s ease;
}
section.patent .col03 ul > li:hover img {
  transform: scale(1.1);
}
section.patent .col03 ul h4 {
  color: #c3003b;
  font-size: 20px;
  font-weight: 500;
}
section.patent .col03 ul h5 {
  color: #222;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}
section.patent .col03 ul p {
  color: #a0a0a0;
  font-size: 18px;
  font-weight: 500;
}
section.contact .basic_tab .tab_box .big_tab ul {
  width: 100%;
  max-width: 1440px;
}
section.contact iframe {
  display: block;
  width: 100%;
  max-width: 1540px;
  height: 887px;
  padding: 0 20px;
  margin: 0 auto 70px;
}
section.contact .col02 {
  margin-bottom: 205px;
}
section.contact .col02 .inner {
  width: 100%;
  max-width: 1020px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-content: flex-start;
  justify-content: space-between;
}
section.contact .col02 h3 {
  font-size: 34px;
  font-weight: 500;
}
section.contact .col02 dl {
  display: flex;
  align-content: flex-start;
  gap: 17px;
  margin-bottom: 50px;
}
section.contact .col02 dt {
  width: 110px;
  height: 29px;
  line-height: 29px;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  border-radius: 3px;
  background: #484848;
}
section.contact .col02 dl:last-of-type dt {
  background: #c3003b;
}
section.contact .col02 dl:nth-of-type(2) dd {
  line-height: 1.8;
}
section.contact .col02 dd {
  color: #7c7c7c;
  font-size: 18px;
  font-weight: 400;
}
section.contact .col02 dd b {
  color: #000;
  font-size: 20px;
  display: block;
  font-weight: 400;
}
section.contact .col02 dl:last-of-type b {
  display: inline-block;
}
.map_btn {
  display: flex;
  align-items: center;
}
section.contact .col02 .map_btn a {
  width: 216px;
  height: 52px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: #1fc63b;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
section.contact .col02 .map_btn .share_btn img {
  filter: contrast(0);
}
section.contact .col02 .map_btn a:nth-child(2) {
  background: #efcd1c;
}
section.contact .col02 .map_btn img {
  display: inline-block;
  margin-right: 20px;
}
section.history .col01 {
  display: flex;
}
section.history .col01 > img {
  display: inline-block;
  margin-right: 140px;
  position: relative;
  left: -20px;
}
section.history .col01 p {
  color: #dc9f7a;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}
section.history .col01 span {
  font-size: 22px;
  font-weight: 700;
}
.share_btn {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.8) !important;
}
/*타임라인 시작*/
#timeline {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.date_wrap {
  overflow: hidden;
}
#dates {
  display: flex;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  transition: left 0.5s ease;
}
.date_wrap {
  position: relative;
  top: 178px;
}
.date_wrap:after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  width: 500vw;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #000 2%, #000 100%);
  z-index: -1;
}
#dates li {
  list-style: none;
  float: left;
  width: var(--history-yesar-gap);
  text-align: center;
}
#dates a {
  cursor: pointer;
  position: relative;
  display: block;
  text-align: center;
  font-family: "Lovelace";
  margin-top: 20px;
  font-size: 24px;
}
#dates li.active a > i {
  color: #c3003b;
}
#dates a > i {
  font-style: normal;
  position: relative;
  display: block;
  color: #222;
  text-align: center;
  font-family: "Lovelace";
  font-weight: 400;
  transition: color 0.3s ease;
  font-size: 24px;
  opacity: 1;
}
#dates a:after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #000;
  background: #fff;
  box-sizing: border-box;
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: calc(-7px - 5px);
  left: calc(50% - 7px);
}
#dates li.active a:after {
  border-color: #c3003b;
}
#dates .selected {
  color: #c3003b;
}
#dates .selected:after {
  border-color: #c3003b;
}
.issues_wrap {
  height: auto;
  justify-content: center;
  gap: 200px;
  margin: 150px 0 200px;
}
.issues_wrap > h1 {
  font-size: 150px;
  font-weight: 300;
  line-height: 1;
  font-family: "Lovelace";
  width: 50%;
  text-align: right;
}
#issues {
  overflow: hidden;
  font-size: 0;
  width: 50%;
  text-align: left;
}
#issues > li {
  display: none;
  vertical-align: top;
  box-sizing: border-box;
}
#issues > li.active {
  display: block;
}
#issues * {
  font-size: 20px;
}
#issues li h1 {
  color: #ffcc00;
  font-size: 48px;
  margin: 20px 0;
  text-shadow: #000 1px 1px 2px;
}
#issues > li > div:not(:last-child) {
  margin-bottom: 40px;
}
#issues > li > div > * {
  display: inline-block;
  vertical-align: top;
}
#issues > li.v2 > div:not(:last-child) {
  margin-bottom: 80px;
}
#issues > li.v2 div > * {
  display: block;
}
#issues > li.v2 div div > * {
  display: inline-block;
}
#issues > li div span {
  display: inline-block;
  color: #c3003b;
  font-size: 18px;
  font-weight: 600;
  width: 70px;
  border-radius: 5px;
  border: 1px solid #a1a1a1;
  background: #fff;
  text-align: center;
  margin-right: 40px;
  display: none;
}
#issues > li div ul {
  width: calc(100% - 120px);
}
#issues > li ul li {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 13px;
  font-family: "Pretendard";
}
#issues > li ul li:not(:last-child) {
  margin-bottom: 13px;
  margin-bottom: 40px;
}
#issues > li ul li:after {
  position: absolute;
  content: "";
  display: block;
  clear: both;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 50%;
  box-sizing: border-box;
}
#issues li p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
section.ms_list {
  padding: 150px 0 0;
  box-sizing: border-box;
}
section.ms_list .case p {
  color: #fff;
}
section.ms_list .case p span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
section.ms_list .paging .number {
  color: rgba(255, 255, 255, 0.7);
}
section.ms_list .paging .number.current {
  color: #fff;
}
section.ms_list .paging span.first {
  background: #373737 url(../images/common/paging_first.svg) no-repeat;
  background-position: 50% 50%;
}
section.ms_list .paging span.prev {
  background: #373737 url(../images/common/paging_prev.svg) no-repeat;
  background-position: 50% 50%;
}
section.ms_list .paging span.next {
  background: #373737 url(../images/common/paging_next.svg) no-repeat;
  background-position: 50% 50%;
}
section.ms_list .paging span.last {
  background: #373737 url(../images/common/paging_last.svg) no-repeat;
  background-position: 50% 50%;
}
section.ms_list section.architecture .main_tit {
  text-align: center;
  margin-bottom: 80px;
}
section.architecture .main_tit h2 {
  color: #fff;
  text-align: center;
  font-family: "Lovelace";
  font-weight: 100;
  font-size: 32px;
}
section.architecture .main_tit h3 {
  color: #dc9f7a;
  text-align: center;
  font-family: "Pretendard";
  font-size: 82px;
  font-weight: 100;
  margin-bottom: 80px;
}
section.architecture .col {
  position: relative;
  height: auto;
  height: 929px;
  display: flex;
  align-items: center;
  /*    padding-bottom: 80px;*/
  box-sizing: border-box;
}
section.architecture .col .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
section.architecture .col .bg > div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  filter: blur(5px) brightness(0.75);
  transform: scale(1.1);
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  height: 100%;
  transition: opacity 0.5s;
}
section.architecture .col .bg > div:after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  filter: blur(7.5px);
}
section.architecture .col .bg > div.active {
  opacity: 1;
}
section.architecture .col .swiper-slide {
  width: 658px;
  /*    margin-right: 150px;*/
  /*    filter: brightness(0.5);*/
  transition: filter 0.3s ease;
}
section.architecture .col .swiper-slide-active {
  opacity: 1;
  filter: brightness(1);
}
section.architecture .col .swiper-slide .thumb {
  width: 100%;
  height: 414px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.architecture .col .swiper-slide .desc {
  background: #000;
  padding: 30px;
  box-sizing: border-box;
  height: 271px;
}
section.architecture .col .swiper-slide .desc h4 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
section.architecture .col .swiper-slide .desc h5 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  margin-right: 12px;
  display: inline-block;
}
section.architecture .col .swiper-slide .desc span {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
section.architecture .col .swiper-slide .desc p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  font-weight: 400;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
section.architecture .swiper-button-next,
section.architecture .swiper-button-prev {
  position: absolute;
  width: 80px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
  margin-top: auto;
}
section.architecture .swiper-button-next:after,
section.architecture .swiper-rtl .swiper-button-prev:after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  color: transparent;
  background-image: url("../images/architecture/next.png");
  width: 22px;
  height: 7px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.architecture .swiper-button-prev:after,
section.architecture .swiper-rtl .swiper-button-next:after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  color: transparent;
  background-image: url("../images/architecture/prev.png");
  width: 22px;
  height: 7px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.architecture .swiper-button-next {
  right: 70px;
  left: auto;
}
section.architecture .swiper-button-prev {
  left: 70px;
}
section.architecture .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.5s ease, background 0.5s ease;
}
section.architecture .swiper-pagination-bullet-active {
  width: 100px;
  height: 15px;
  border-radius: 20px;
  background: transparent;
  border: 3px solid #fff;
}
section.architecture .swiper {
  top: 18px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
section.architecture .swiper-pagination {
  top: auto;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.architecture
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
section.architecture
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7.5px);
}
section.live_view .inner_v2 {
  padding: 0;
}
section.live_view .col01 .swiper-button-next:after,
section.live_view .col01 .swiper-button-prev:after {
  font-size: 25px;
}
section.live_view .col01 {
  margin-bottom: 170px;
}
section.live_view .col01 h3 {
  color: #3a3a3a;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 45px;
}
section.live_view .col01 h3 span {
  display: inline-block;
  margin-left: 7px;
  padding: 6px 15px 5px 15px;
  border-radius: 3px;
  background: #369e6d;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  vertical-align: 8px;
}
section.live_view .mySwiper2 {
  height: 842px;
  width: 100%;
}
section.live_view .col01 .mySwiper {
  height: 116px;
  box-sizing: border-box;
  padding: 10px 0;
}
section.live_view .col01 .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.live_view .col01 .swiper-horizontal.swiper-free-mode{
  display: none;
}
section.live_view .col01 .swiper-slide .swiper-button-next,
section.live_view .col01 .swiper-slide .swiper-button-prev {
  display: none;
}
section.live_view .col01 .mySwiper .swiper-slide {
  width: 12%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
section.live_view .col01 .mySwiper .swiper-slide:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clear: both;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}
section.live_view .col01 .mySwiper .swiper-slide-thumb-active:after {
  background-color: transparent;
}
.board_plan {
  margin-bottom: 150px;
}
.board_plan ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 0fr);
  grid-column-gap: 0px;
  grid-row-gap: 135px;
}
.furniture_view .board_plan ul {
  grid-column-gap: 100px;
  grid-template-rows: repeat(1, 1fr);
}
.board_plan .plan {
  grid-area: 1 / 1 / 2 / 2;
}
.board_plan ul > li:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.board_plan ul > li:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
}
.board_plan ul > li {
  font-size: 0;
}
.board_plan .plan h4 {
  margin-bottom: 85px;
}
.board_plan ul > li:nth-child(2) h4 {
  margin-bottom: 35px;
}
.board_plan .plan > div {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.board_plan .plan > div.basic_btn_v3 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 50px 0 0;
  gap: 10px;
}
.board_plan .plan > div.basic_btn_v3 a {
  width: 100%;
}
.board_plan .plan > div.basic_btn_v3 a:nth-child(2),
.board_plan .plan > div.basic_btn_v3 a:nth-child(3) {
  background: #222;
}
.board_plan h4 {
  color: #1d1d1d;
  font-size: 32px;
  font-weight: 600;
}
.board_plan dl {
  margin-bottom: 15px;
}
.board_plan dt {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 3px;
  background: #474747;
  width: 90px;
  padding: 5px 0px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.board_plan dd {
  color: #353535;
  font-size: 20px;
  font-weight: 400;
  padding-left: 15px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 90px);
  padding-top: 3px;
}
.board_plan dd div {
  position: relative;
  padding-left: 15px;
  width: calc(100% - 110px;);
}
.board_plan dd div:after {
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #c2c2c2;
}
.board_plan dd p span {
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #a5a5a5;
  padding: 3px 0px;
  width: 55px;
  display: inline-block;
  line-height: 1;
  text-align: center;
}
.board_plan dd p em {
  font-style: normal;
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding-left: 5px;
  box-sizing: border-box;
  line-height: 1;
}
.board_plan > ul > li:nth-child(2) .over {
  width: 657px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/live/over.png");
}
.board_plan > ul > li:nth-child(2) .out {
  position: absolute;
  width: 100%;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  background-image: url("../images/live/out.png");
}
.board_plan > ul > li:nth-child(2) .wrap {
  position: relative;
  height: 331px;
}
.board_plan > ul > li:nth-child(2) .line {
  background: #c3003b;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  text-align: right;
}
.board_plan > ul > li:nth-child(2) .line.full {
  background: #369e6d;
}
.board_plan > ul > li:nth-child(2) .line > div {
  display: inline-block;
  position: relative;
  top: -70px;
}
.board_plan > ul > li:nth-child(2) .line.full > div {
  top: -40px;
}
.board_plan > ul > li:nth-child(2) .line p {
  color: #c3003b;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.96px;
}
.board_plan > ul > li:nth-child(2) .line.full p {
  color: #369e6d;
}
.board_plan > ul > li:nth-child(2) .line span {
  display: block;
  color: #c3003b;
  font-size: 18px;
  font-weight: 600;
}
.floor_plan {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
  /*    align-items: flex-start;*/
  justify-content: space-between;
}
.floor_plan > img {
  width: 48%;
  max-height: 715px;
}
.bd_tit_v2 {
  color: #1d1d1d;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
.cm_bd img {
  width: 100%;
}
.bd_form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.bd_form .case {
  width: 25%;
}
.bd_form .write_notice {
  width: 75%;
}
.bd_form .write_notice .col02 .tit {
  border-bottom: none;
  margin-bottom: 0;
}
.bd_form .case > ul {
  display: block;
}
section.live_view .col03 .tit {
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 50px;
  justify-content: space-between;
  width: 100%;
}
section.live_view .col03 .tit h5 {
  color: #1d1d1d;
  font-size: 32px;
  font-weight: 600;
  position: relative;
}
section.live_view .col03 .tit h5:after {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  display: flex;
  width: 30px;
  min-width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 20px;
  background: #dc9f7a;
  margin-right: 30px;
  clear: both;
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  right: -65px;
}
section.live_view .col03 .tit p {
  color: #b4b4b4;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  min-height: 66px;
  width: 74%;
  letter-spacing: -0.66px;
}
section.live_view .col03 > ul > li:nth-child(1) h5:after {
  content: "01";
}
section.live_view .col03 > ul > li:nth-child(2) h5:after {
  content: "02";
}
section.live_view .col03 > ul > li:nth-child(3) h5:after {
  content: "03";
}
section.live_view .col03 > ul > li:nth-child(4) h5:after {
  content: "04";
}
section.live_view .col03 > ul > li:nth-child(5) h5:after {
  content: "05";
}
section.live_view .col03 > ul > li:nth-child(6) h5:after {
  content: "06";
}
section.live_view .col03 > ul > li:nth-child(7) h5:after {
  content: "07";
}
section.live_view .col03 > ul > li:nth-child(8) h5:after {
  content: "08";
}
section.live_view .col03 > ul > li h5.this_step:after {
  background: #369e6d;
}
/*
section.live_view .col03 > ul > li:nth-child(9) h5:after {
content: "09";
}

section.live_view .col03 > ul > li:nth-child(10) h5:after {
content: "10";
}

section.live_view .col03 > ul > li:nth-child(11) h5:after {
content: "11";
}

section.live_view .col03 > ul > li:nth-child(12) h5:after {
content: "12";
}

section.live_view .col03 > ul > li:nth-child(13) h5:after {
content: "13";   background: #369E6D;

}
*/
section.live_view .col03 > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.live_view .col03 > ul > li {
  display: inline-block;
  vertical-align: top;
  width: 688px;
  margin-bottom: 130px;
}
section.live_view .col03 .swiper {
  width: 688px;
  height: 384px;
}
section.live_view .col03 .swiper-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.live_view .col03 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
section.live_view .col03 .swiper-pagination-bullet-active {
  background: #c3003b;
}
section.live_view .col03 .swiper-pagination {
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.09);
  padding: 10px;
  backdrop-filter: blur(7.5px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  width: auto;
}
section.live_view .col03 .swiper-button-next,
section.live_view .col03 .swiper-button-prev {
  width: 60px;
  height: 60px;
  border: 1px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(7.5px);
  transition: 0.3s ease;
}
section.live_view .col03 .swiper-button-next:hover,
section.live_view .col03 .swiper-button-prev:hover {
  background: #292929;
}
section.live_view .col03 .swiper-button-next:hover:after,
section.live_view .col03 .swiper-button-prev:hover:after {
  filter: invert(1);
}
section.live_view .col03 .swiper-button-prev:after {
  background: url("../images/common/left_.svg") no-repeat;
  background-position: center;
  background-size: cover;
  width: 23px;
  height: 8px;
  font-size: 0;
  color: transparent;
  clear: both;
  display: block;
  content: "";
  transition: 0.3s ease;
}
section.live_view .col03 .swiper-button-next:after {
  background: url("../images/common/right_.svg") no-repeat;
  background-position: center;
  background-size: cover;
  width: 23px;
  height: 8px;
  font-size: 0;
  color: transparent;
  clear: both;
  display: block;
  content: "";
  transition: 0.3s ease;
}
.side_menu {
  position: fixed;
  width: 130px;
  top: 504px;
  right: calc((100% - 1841px) / 2);
}
.side_menu .btn {
  margin-bottom: 25px;
}
.side_menu .btn > a {
  color: #c3003b;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  padding: 12px 0px;
  border-radius: 5px;
  border: 2px solid #c3003b;
  display: flex;
  padding: 12px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.side_menu .list:not(:last-child) {
  margin-bottom: 30px;
}
.side_menu .list .thumb {
  width: 100%;
  height: 110px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.side_menu .list p {
  line-height: 1.3;
  letter-spacing: -0.39px;
  font-size: 13px;
  font-weight: 400;
  margin: 10px 0 7px;
}
.side_menu .list .range {
  justify-content: end;
}
.notice_ > ul > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.notice_ > ul > li:last-child {
  border-bottom: 1px solid #000;
}
.notice_ a {
  display: flex;
  gap: 40px;
  min-height: 273px;
  padding: 20px 0;
  box-sizing: border-box;
}
.notice_ .thumb {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 600px;
  height: 233px;
  position: relative;
}
.notice_ .desc {
  position: relative;
  width: 55%;
}
.notice_ .desc h3 {
  color: #fff;
  display: inline-flex;
  padding: 4px 10px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 5px;
  background: #dc9f7a;
}
.notice_ .desc p {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 20px;
  font-family: "Pretendard";
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notice_ .desc span {
  position: absolute;
  bottom: 0;
  color: #b5b5b5;
  font-size: 18px;
  font-weight: 500;
}
.notice_ .desc .e_title {
  position: relative;
  display: inline-block;
  padding: 3px 10px 2px;
  border-radius: 3px;
  background: #dc9f7a;
  color: #fff;
  margin-right: 10px;
}
section.open .notice_ .desc p {
  margin-top: 0;
}
.notice_ .thumb .close {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}
.notice_ .thumb .close p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  z-index: 1;
}
.list_notice {
  margin-bottom: 250px;
}
.list_notice .col01 {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  margin-bottom: 45px;
}
.list_notice .col01 p {
  font-size: 19px;
  font-weight: 400;
}
.list_notice .col01 p span {
  color: #c3003b;
  font-size: 19px;
  font-weight: 500;
  font-family: "Pretendard";
}
.list_notice .col01 a {
  border-radius: 5px;
  background: #c3003b;
  display: flex;
  width: 204px;
  height: 59px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}
.list_notice .col01 a:hover {
  background: #2d2d2d;
}
.list_notice .col02 > ul {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.list_notice .col02 > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.list_notice .col02 > ul > li:nth-child(odd) {
  background: #fafafa;
}
.list_notice .col02 > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  min-height: 90px;
  box-sizing: border-box;
}
.list_notice .col02 .tit {
  width: 60%;
}
.list_notice .col02 .tit p {
  font-family: "Pretendard";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list_notice .col02 .info,
.list_notice .col02 .info div {
  display: flex;
  gap: 100px;
  align-items: center;
}
.list_notice .col02 .info span {
  font-size: 16px;
  font-weight: 400;
}
.list_notice .col02 .info i {
  font-style: normal;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 10px 5px 10px;
  border-radius: 5px;
  background: #a8a8a8;
  box-sizing: border-box;
}
.list_notice .col02 .info i.end {
  background: #c3003b;
}
.list_notice .col02 .info em {
  font-style: normal;
  color: #949494;
  font-size: 16px;
  font-weight: 400;
  width: 85px;
}
.write_notice {
  margin-bottom: 250px;
}
.write_notice .col01 {
  margin-bottom: 25px;
}
.write_notice .col01 .all {
  padding-bottom: 20px;
  box-sizing: border-box;
}
.write_notice .col01 input[type="checkbox"] {
  display: inline-block;
  background: url("../images/common/ck_icon.svg") no-repeat;
  background-size: auto;
  background-position: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: -2px;
  border: 1px solid #999;
  cursor: pointer;
}
.write_notice .col01 input[type="checkbox"]:checked {
  background: url("../images/common/ck_icon.svg") no-repeat #c3003b;
  background-size: auto;
  background-position: center;
  border: 1px solid #c3003b;
}
.write_notice .col01 .all p {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
}
.write_notice .col01 .chk {
  padding: 20px 0;
  border-top: 3px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.33);
  box-sizing: border-box;
}
.write_notice .col01 .chk ul > li:not(:last-child) {
  margin-bottom: 20px;
}
.write_notice .col01 .chk p {
  display: inline-block;
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-weight: 500;
}
.write_notice .col01 .chk span {
  padding: 7px 10px;
  line-height: 1;
  border-radius: 3px;
  background: #bcbcbc;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin: 0 6px;
}
.write_notice .col01 .chk span.b {
  /* background: #222; */
}
.write_notice .col01 .chk button {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  padding: 5px 20px 4px 20px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: #fff;
  color: #000;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
}
.write_notice .col02 {
  margin-top: 70px;
}
.write_notice .col02 .tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.write_notice .col02 .tit h3 {
  font-size: 20px;
  font-weight: 600;
}
.write_notice .col02 .tit p {
  color: #c3003b;
  font-weight: 500;
  font-size: 13px;
}
.table_format {
  border-top: 3px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
.table_format .row {
  display: flex;
  border-bottom: 1px solid #c5c5c5;
}
.table_format .col {
  position: relative;
  flex: auto;
  transition: background 0.3s ease;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-left: 50px;
}
.table_format .row > div:nth-child(1) {
  width: 25%;
  background: rgba(0, 0, 0, 0.025);
  box-sizing: border-box;
  font-weight: 500;
  position: relative;
}
.table_format .row > div span {
  box-sizing: border-box;
  font-weight: 500;
  position: relative;
}
.table_format .row > div:nth-child(1) span {
  font-size: 16px;
}
.table_format .row > div:nth-child(1) span i {
  display: inline-block;
  font-style: normal;
  font-size: 15px;
  line-height: 15px;
  position: relative;
  top: -2px;
  margin-left: 1px;
  font-weight: 500;
  color: #c3003b;
}
.table_format .row > div:nth-child(2) {
  width: 75%;
  padding: 10px 20px;
  background: transparent;
  flex-grow: 1;
  display: block;
}
.table_format .row > div:nth-child(2) span {
  box-sizing: border-box;
  font-weight: 500;
  display: block;
  position: relative;
}
.table_format .row .col input {
  padding: 9px 15px;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  font-family: "Pretendard";
}
.table_format .row .col input:read-only:focus,
.table_format .row .col input:read-only {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #f6f7f6;
  color: rgba(0, 0, 0, 0.35);
}
.table_format .row .col input:focus,
.table_format .row .col textarea:focus {
  border: 1px solid #c3003b;
  background: #f6f7f6;
}
.table_format select:focus {
  border: 1px solid #c3003b;
  background: url("../images/common/arrow2.png") 95% center no-repeat #f6f7f6;
}
.table_format .row .col textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  min-height: 170px;
  padding: 9px 15px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  background: #fff;
  resize: none;
}
.table_format .row .col input::placeholder,
.table_format .row .col textarea::placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.table_format select {
  position: relative;
  width: 316px;
  height: 50px;
  padding: 11px 23px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: 400;
  color: #000;
  padding-left: 15px;
  box-sizing: border-box;
  background: url("../images/common/arrow.png") 95% center no-repeat;
}
.table_format .row .col input[type="date"] {
  width: 316px;
  height: 50px;
}
.write_notice .btn {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.write_notice .btn button {
  display: flex;
  width: 204px;
  height: 59px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  background: #c3003b;
  cursor: pointer;
}
.write_notice .btn button[type="button"] {
  background: #000;
}
.write_notice .zipp_code .row01 {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.write_notice .zipp_code .row02 {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.write_notice .zipp_code .row02 > div {
  width: 50%;
}
.write_notice .zipp_code #UserAdd1 {
  background: rgba(0, 0, 0, 0.035);
  cursor: default;
}
.write_notice .zipp_code #zipp_code_id {
  width: 260px;
  background: rgba(0, 0, 0, 0.035);
  cursor: default;
}
.write_notice .zipp_code #UserAdd1:focus,
.write_notice .zipp_code #zipp_code_id:focus {
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: default;
}
.write_notice .zipp_code #zipp_btn {
  width: 145px;
  color: #fff;
  border: 1px rgba(0, 0, 0, 0.15);
  background: #939393;
  cursor: pointer;
}
.pop_bg {
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.2s ease 0s;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 35;
  display: none;
}
.pop {
  z-index: 36;
  width: 650px;
  height: 650px;
  left: 50%;
  top: 50%;
  position: fixed;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 0px;
  box-sizing: border-box;
  display: none;
}
.pop_scroll {
  overflow-y: scroll;
  height: 100%;
  padding: 50px 30px 70px;
  box-sizing: border-box;
}
.pop_scroll::-webkit-scrollbar {
  width: 5px;
}
.pop_scroll::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, 0.1);
}
.pop_scroll::-webkit-scrollbar-thumb {
  background: #c3003b;
}
.pop.active {
  transition: opacity 0.2s ease 0.2s;
  opacity: 1;
}
.pop .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
/*

.pop .close::before,
.pop .close::after {
content: '';
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transform-origin: center center;
transition: all .5s ease;
background-color: #C3003B;
width: 20px;
height: 2px;
}

.pop .close::before {
transform: translate(-50%, -50%) rotate(40deg);
}

.pop .close::after {
transform: translate(-50%, -50%) rotate(315deg);
}
*/
.pop .tit h4 {
  margin-bottom: 20px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.pop .tit p {
  font-size: 16px;
  font-weight: 400;
}
.pop .col {
  margin-top: 30px;
}
.pop .txt p {
  font-size: 16px;
  font-family: "Pretendard";
}
.pop .txt p:not(:last-child) {
  margin-bottom: 7px;
}
.pop .col.txt_v2 p:not(:last-child) {
  margin-bottom: 0;
}
.pop .col h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Pretendard";
}
.pop .desc {
  margin-top: 20px;
}
.pop .desc > p {
  font-size: 16px;
  position: relative;
  padding-left: 17px;
  box-sizing: border-box;
  font-family: "Pretendard";
}
.pop.before_pop .desc {
  margin-top: 0;
  margin-bottom: 20px;
}
.blue,
.pop .desc > p a {
  color: blue;
  text-decoration: underline;
}
.pop .desc > p:after {
  clear: both;
  display: block;
  position: absolute;
  font-size: 16px;
  top: 1px;
  left: 0;
}
.pop .desc > p.pl_v1:after {
  content: "※";
  top: -1px;
}
.pop .desc > p.pl_v2:after {
  content: "–";
}
.pop .desc > p.pl_v3 {
  padding-left: 20px;
}
.pop .desc > p.pl_v3:after {
  content: "▶";
  top: -1px;
}
#share {
  padding: 20px;
  width: 350px;
  height: 185px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
}
#share .tit {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cecece;
  box-sizing: border-box;
}
#share .tit h4 {
  margin-bottom: 0;
}
#share ul {
  display: flex;
  align-items: top;
  align-items: flex-start;
  justify-content: space-between;
}
#share ul > li {
}
section.private2 .desc {
  margin-top: 0 !important;
}
section.information .pop {
  width: auto;
  height: auto;
  position: static;
  background: transparent;
  transform: inherit;
  box-shadow: none;
  display: block;
}
section.information .impo_box_v2 {
  border: none;
}
section.information .impo_box .right .pop p {
  margin-bottom: 0;
}
section.information .nber p {
  position: relative;
  padding-left: 22px;
  box-sizing: border-box;
  margin-bottom: 0;
}
section.information .num p {
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 0;
  font-family: "Pretendard";
}
section.information .nber p:after,
section.information .num p:after {
  clear: both;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
  font-family: "Pretendard";
}
section.information .num p.num_v1:after {
  content: "①";
}
section.information .num p.num_v2:after {
  content: "②";
}
section.information .num p.num_v3:after {
  content: "③";
}
section.information .num p.num_v4:after {
  content: "④";
}
section.information .num p.num_v5:after {
  content: "⑤";
}
section.information .num p.num_v6:after {
  content: "⑥";
}
section.information .num p.num_v7:after {
  content: "⑦";
}
section.information .num p.num_v8:after {
  content: "⑧";
}
section.information .nber p.nber_v1:after {
  content: "1)";
}
section.information .nber p.nber_v2:after {
  content: "2)";
}
section.information .nber p.nber_v3:after {
  content: "3)";
}
section.information .nber p.nber_v4:after {
  content: "4)";
}
section.service .impo_box > .box > .left > p {
  padding-left: 0;
}
section.service .impo_box > .box > .left > p:before {
  display: none;
}
/*시작*/
.chartTable {
  display: table;
  width: 100%;
}
.chartTable_wrap {
  width: 88%;
  padding-bottom: 30px;
  display: inline-block;
}
.chartTableRow {
  display: table-row;
  background: #f0f0f0;
  transition: background 0.3s ease;
}
.chartTableRow:nth-of-type(2n-1) {
  background: #f9f9f9;
}
.chartTableHeading {
  background-color: #eee;
  display: table-header-group;
}
.chartTableCell,
.divTableHead {
  font-size: 15px;
  font-weight: 300;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: table-cell;
  padding: 3px 10px;
  word-break: keep-all;
  vertical-align: middle;
}
.chartTableCell:last-child,
.divTableHead:last-child {
  border-right: 0px;
}
.divTableHead {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background: #414447;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 2% 10px;
}
.chartTableCell {
  text-align: center;
  padding: 2% 10px;
}
.chartTableCell > span {
  width: 80px;
  background: #5e5b5a;
  font-weight: 400;
  color: #fff;
  padding: 3px 15px;
  font-size: 13px;
  margin-right: 10px;
  display: none;
}
.chartTableCell > p {
  font-weight: 400;
}
.chartTableHeading {
  background-color: #eee;
  display: table-header-group;
  font-weight: bold;
}
.chartTableFoot {
  background-color: #eee;
  display: table-footer-group;
  font-weight: bold;
}
.chartTableBody {
  display: table-row-group;
}
.chartTable {
  border-bottom: 2px solid #c6c6c6;
}
.chartTable.type2 .chartTableCell:first-child {
  vertical-align: middle;
}
/*끝*/
/*개인정보 시작*/
.com_title {
  text-align: center;
  padding: 70px 0 80px;
  margin-bottom: 20px;
}
.com_title h2 {
  position: relative;
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}
section.information {
  margin-bottom: 150px;
}
section.information .com h3 {
  font-size: 28px;
  font-weight: 600;
}
section.information .com p {
  font-size: 18px;
  margin: 30px 0 50px;
  font-weight: 500;
}
.impo_box {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 0 0 7px;
  box-sizing: border-box;
}
.impo_box > .box > .left > p {
  position: relative;
}
.impo_box > .box > .left > p:before {
  clear: both;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  font-family: "Pretendard";
}
.impo_box > div:nth-child(2) > .left > p,
.impo_box > div:nth-child(3) > .left > p {
  padding-left: 30px;
}
.impo_box > div:nth-child(1) > .left > p:before {
  content: "1.";
}
.impo_box > div:nth-child(2) > .left > p:before {
  content: "1.1";
}
.impo_box > div:nth-child(3) > .left > p:before {
  content: "1.2";
}
.impo_box > div:nth-child(4) > .left > p:before {
  content: "2.";
}
.impo_box > div:nth-child(5) > .left > p:before {
  content: "3.";
}
.impo_box > div:nth-child(6) > .left > p:before {
  content: "4.";
}
.impo_box > div:nth-child(7) > .left > p:before {
  content: "5.";
}
.impo_box > div:nth-child(8) > .left > p:before {
  content: "6.";
}
.impo_box > div:nth-child(9) > .left > p:before {
  content: "7.";
}
.impo_box > div:nth-child(10) > .left > p:before {
  content: "8.";
}
.impo_box > div:nth-child(11) > .left > p:before {
  content: "9.";
}
.impo_box > div:nth-child(12) > .left > p:before {
  content: "10.";
}
.impo_box > div:nth-child(13) > .left > p:before {
  content: "11.";
}
.impo_box > div:nth-child(14) > .left > p:before {
  content: "12.";
}
.impo_box > div:nth-child(12) > .left > p,
.impo_box > div:nth-child(13) > .left > p,
.impo_box > div:nth-child(14) > .left > p {
  padding-left: 34px;
}
section.private2 .impo_box > div:nth-child(2) > .left > p:before {
  content: "2.";
}
section.private2 .impo_box > div:nth-child(3) > .left > p:before {
  content: "3.";
}
section.private2 .impo_box > div:nth-child(2) > .left > p,
section.private2 .impo_box > div:nth-child(3) > .left > p {
  padding-left: 25px;
}
.impo_box .box {
  font-size: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 50px 0;
  box-sizing: border-box;
}
.impo_box > div:last-child {
  border: none;
}
.impo_box .box > div {
  display: inline-block;
  vertical-align: top;
}
.impo_box .left {
  width: 30%;
}
.impo_box .left p {
  position: relative;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  font-family: "Pretendard";
  padding-left: 25px;
  word-break: keep-all;
}
.impo_box .right {
  width: 65%;
  padding-left: 50px;
  box-sizing: border-box;
}
.impo_box .right p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  word-break: keep-all;
}
.impo_box .right > p:last-child {
  margin-bottom: 0;
}
.impo_box .right p span {
  display: block;
  margin-bottom: 5px;
}
.impo_box .right p span:last-child {
  margin-bottom: 0;
}
.impo_box .right > div > p:last-child {
  margin-bottom: 0;
}
.impo_box .right .tab_body p {
  margin-bottom: 0;
}
/*개인정보 끝*/
/*검색결과 시작*/
.rd_custom {
  display: inline-block;
  margin-bottom: 50px;
}
.rd_custom .box {
  border: 1px solid #a5adbc;
  padding: 17px 25px;
  box-sizing: border-box;
}
.rd_custom h3 {
  font-size: 20px;
  font-weight: 400;
  color: #c3003b;
  margin-bottom: 20px;
}
.rd_custom input {
  position: absolute;
  opacity: 0;
}
.rd_custom label {
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
  cursor: pointer;
}
.rd_custom label:last-child {
  margin-right: 0;
}
.box label {
  vertical-align: top;
}
.rd_custom label i {
  font-style: normal;
}
.rd_custom input[type="radio"]:checked + label > span,
.rd_custom input[type="radio"] + label > span {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/ck_icon.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  border: 1px solid #999;
  box-sizing: border-box;
  margin-right: 7px;
  vertical-align: top;
}
.rd_custom input[type="radio"]:checked + label > span {
  background: url("../images/common/ck_icon.svg") no-repeat #c3003b;
  border: 1px solid #c3003b;
  background-size: auto;
  background-position: center;
}
.rd_custom input[type="radio"]:disabled,
.rd_custom input[type="radio"]:disabled + * {
  cursor: default;
  pointer-events: none;
}
.search_wrap .box {
  display: inline-block;
  position: relative;
}
.search_wrap .row01 {
  position: relative;
  width: 680px;
  height: 50px;
}
.search_wrap .row01 input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  border-bottom: 2px solid #c3003b;
  padding: 0 72px 0px 20px;
  box-sizing: border-box;
}
.search_wrap .row01 > a {
  position: absolute;
  top: 0;
  right: 15px;
  cursor: pointer;
}
.com_title {
  text-align: center;
  padding: 70px 0 80px;
  margin-bottom: 20px;
}
.com_title h2 {
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 48px;
  font-weight: 500;
  color: #000;
}
body.search_gallery header .search,
body.search_architecture header .search,
body.search_all header .search {
  display: none;
}
section.search_all .search_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
section.search_all .tab_box .tabmenu {
  margin-bottom: 0;
}
section.search_all .search_wrap .box {
  padding: 0;
}
section.search_all .basic_tab .tab_box .big_tab ul {
  padding: 0;
  gap: 0;
  background: transparent;
  display: block;
  text-align: left;
  margin-top: 50px;
}
section.search_all .tab_box .big_tab ul li {
  display: inline-block;
  width: auto;
  margin-right: 60px;
  border-right: none;
  border-bottom: none;
}
section.search_all .tab_box .big_tab ul li:hover,
section.search_all .tab_box .big_tab ul li.active,
section.search_all .tab_box .big_tab ul li {
  border: none;
  border-radius: 0;
  background: #fff;
  display: inline-block;
  vertical-align: top;
}
section.search_all .tab_box .big_tab ul li > a {
  display: block;
  padding: 0 0 25px 0;
  color: #000;
  font-weight: 400;
  font-size: 18px;
  border-bottom: 3px solid transparent;
  box-sizing: border-box;
}
section.search_all .tab_box .big_tab ul li.active > a {
  border-bottom: 4px solid #c3003b;
  box-sizing: border-box;
}
section.search_all .tab_box .big_tab ul li.active > a > span {
  color: #c3003b;
}
section.search_all .sub_tit {
  margin-bottom: 50px;
}
section.search .search_wrap .box {
  padding: 50px 0;
}
section.search_all .col {
  margin-bottom: 100px;
}
section.search_all .col .box {
  display: inline-block;
}
section.search_all .notice_ {
  border-top: 1px solid #000;
  box-sizing: border-box;
}
section.search_all .case {
  border-top: 1px solid #000;
  box-sizing: border-box;
  padding-top: 20px;
}
section.search_all .search_wrap .row01 > a > img {
  display: block;
  height: 40px;
}
section.search_all .complex .case p span {
  font-size: 16px;
}
.result_box {
  text-align: right;
  margin-bottom: 50px;
}
.result_box div {
  display: flex;
  justify-content: space-between;
}
.result_box div div {
  font-size: 20px;
  font-weight: 300;
  word-break: keep-all;
}
.result_box div div span {
  font-size: 20px;
  color: #c3003b;
  font-weight: 500;
}
.result_box.none {
  text-align: center;
}
.result_box .tab_header {
  padding-bottom: 0;
}
.result_box.none .tab_header {
  display: none;
}
.result_box .tab_header > ul {
  display: block;
  width: auto;
  font-size: 0;
  border-top: none;
  border-left: none;
  margin: 50px 0 0;
}
.result_box .tab_header > ul > li {
  display: inline-block;
  width: auto;
  margin-right: 60px;
  border-right: none;
  border-bottom: none;
}
.result_box .tab_header > ul > li:last-child {
  margin-right: 0;
}
.result_box .tab_header > ul > li.act {
  background: #fff;
}
.result_box .tab_header > ul > li > a {
  font-size: 18px;
  display: block;
  color: #000;
  font-weight: 300;
  border-bottom: 3px solid transparent;
  padding: 0 0 25px 0;
  box-sizing: border-box;
}
.result_box .tab_header > ul > li.act > a {
  border-bottom: 4px solid #007ede;
}
.result_box .tab_header > ul > li.num0 > a {
  cursor: default;
  color: rgba(0, 0, 0, 0.5);
}
.result_box .tab_header > ul > li.num0 > a > span {
  cursor: default;
  color: rgba(0, 0, 0, 0.5);
}
.result_box .tab_header > ul > li > a > span {
  color: #007ede;
}
.result_box_v2 {
  position: relative;
  padding-top: 20px;
}
.result_box_v2:after {
  position: absolute;
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: -100%;
  width: 300%;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
}
.result_box_v2.none {
  display: none;
}
.result_box_v2 .inner > div:not(:last-child) {
  margin-bottom: 75px;
}
.result_box_v2 .box:after {
  clear: both;
  display: block;
  content: "";
}
.result_box_v2 .box h3 {
  display: inline-block;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 20px;
}
.result_box_v2 .box h3 > span {
  color: #c3003b;
}
.down_btn p,
.result_box_v2 .box a {
  float: right;
  font-size: 13px;
  font-weight: 500;
  color: #c3003b;
  border: 1px solid #c3003b;
  border-radius: 3px;
  padding: 7px 33px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.result_box_v2 .box a {
  float: none;
  margin-left: 30px;
}
.down_btn p {
  display: inline-block;
  float: none;
  background: #f0f2f4;
  color: rgba(0, 0, 0, 0.8);
  border: none;
}
.down_btn p img,
.result_box_v2 .box a img {
  margin-left: 10px;
  vertical-align: -1px;
}
.down_btn p img {
  filter: brightness(0);
}
.basic_table {
  text-align: center;
  border-top: 2px solid #4bb3fb;
  border-bottom: 1px solid #80a2b9;
  box-sizing: border-box;
  background: #fff;
}
.basic_table .contents > li:nth-child(even) {
  background: #f5f8fa;
}
.basic_table .big_tit {
  height: 60px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  font-size: 0;
}
.basic_table .big_tit > li {
  display: inline-block;
  position: relative;
  vertical-align: top;
  line-height: 58px;
  font-size: 16px;
  font-weight: 300;
}
.basic_table .big_tit > li:after {
  display: block;
  content: "";
  clear: both;
  background: rgba(0, 0, 0, 0.2);
  width: 2px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.basic_table .big_tit > li:last-child:after {
  display: none;
}
.basic_table .big_tit > li:nth-child(1) {
  width: 10%;
}
.basic_table .big_tit > li:nth-child(2) {
  width: 20%;
}
.basic_table .big_tit > li:nth-child(3) {
  width: 20%;
}
.basic_table .big_tit > li:nth-child(4) {
  width: 50%;
}
.down_box .basic_table .big_tit > li:nth-child(1) {
  width: 10%;
}
.down_box .basic_table .big_tit > li:nth-child(2) {
  width: 50%;
}
.down_box .basic_table .big_tit > li:nth-child(3) {
  width: 20%;
}
.down_box .basic_table .big_tit > li:nth-child(4) {
  width: 20%;
}
.result_box_v2 .box a:hover {
  background: #c3003b;
  color: #fff;
}
.down_box .basic_table .contents > li:hover .down_btn p {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
}
.result_box_v2 .box a:hover img,
.down_box .basic_table .contents > li:hover .down_btn p img {
  filter: grayscale(1) brightness(9);
}
.basic_table .contents > li {
  height: 215px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: background 0.3s ease;
}
.result_box_v2 .col.product .basic_table .contents > li,
.result_box_v2 .col.solution .basic_table .contents > li {
  height: auto;
  min-height: 215px;
  padding: 20px 0;
}
.result_box_v2 .col.product .basic_table .contents > li > a,
.result_box_v2 .col.solution .basic_table .contents > li > a {
  display: inline-table;
  min-height: 168px;
}
.basic_table .contents > li > a {
  display: table;
  width: 100%;
  height: 100%;
  font-size: 0;
}
.basic_table .contents > li > a > div {
  mix-blend-mode: multiply;
  display: table-cell;
  vertical-align: middle;
}
.basic_table .contents > li > a > div.num {
  width: 10%;
}
.basic_table .contents > li > a > div.num span {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  background: #f0f2f4;
  padding: 0 14px;
  box-sizing: border-box;
  transition: color 0.3s ease, background 0.3s ease;
}
.basic_table .contents > li:hover {
  background: rgb(0, 126, 222, 0.1);
}
.basic_table .contents > li:hover > a > div.num span {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
}
.basic_table .contents > li > a > div.img {
  width: 20%;
}
.basic_table .contents > li > a > div.img > div {
  width: 178px;
  height: 125px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
}
.down_box .basic_table .contents li > a > div.tit {
  width: 50%;
}
.down_box .basic_table .contents li > a > div.tit span {
  height: 48px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  word-break: break-word;
  padding: 0 30px;
  box-sizing: border-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.down_box .basic_table .contents li > a > div.desc,
.down_box .basic_table .contents li > a > div.down_btn {
  width: 20%;
}
.down_box .basic_table .contents li > a > div.desc p {
  text-align: center;
}
.basic_table .contents > li > a > div.tit span {
  height: 24px;
  font-size: 16px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.basic_table .contents > li > a > div.desc {
  width: 50%;
  padding: 0 30px;
  text-align: left;
  box-sizing: border-box;
}
.basic_table .contents > li > a > div.desc .tag_wrapper .tag {
  background: #999;
  padding: 0px 12px;
  display: inline-block;
  font-size: 12px;
  line-height: 26px;
  font-weight: 300;
  margin-right: 3px;
  margin-bottom: 3px;
  color: #fff;
}
.basic_table .contents > li > a > div.desc .tag_wrapper {
  padding-bottom: 20px;
}
.basic_table .contents > li > a > div.desc p {
  height: 127px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  word-break: break-word;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.down_box .basic_table .contents li > a > div.desc p {
  display: block;
  height: auto;
}
.basic_table .contents > li.product div.num span {
  font-weight: 400;
  color: #007ede;
}
.basic_table .contents > li.company div.num span {
  font-weight: 400;
}
.basic_table .contents > li.product:hover div.num span {
  background: #007ede;
  color: #fff;
}
section.search .row02 {
  text-align: center;
}
section.search .row02 > p {
  font-size: 32px;
  font-weight: 400;
}
section.search .row02 > p > span {
  color: #007ede;
  font-weight: 500;
}
.dir_up {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-property: opacity, transform;
  transition: 1s ease;
}
.dir_up.sc_event {
  opacity: 1;
  transform: translateZ(0);
}
.dir_left {
  position: relative;
  transform: translateX(-5%);
  -moz-transform: translateX(-5%);
  -ms-transform: translateX(-5%);
  -o-transform: translateX(-5%);
  opacity: 0;
}
.dir_left.sc_event {
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transition: all 1s ease;
  opacity: 1;
}
.at_op {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-property: opacity, transform;
  transition: 1s ease;
}
.at_op.sc_event {
  opacity: 1;
  transform: translateZ(0);
}
@media screen and (max-width: 1920px) {
  section.greeting__contents1 .col01 {
    height: 935px;
  }
}
@media screen and (max-width: 1919px) {
  .m_br {
    display: block !important;
  }
  section.masstige .col .bg {
    height: 55rem;
  }
  .side_menu {
    display: none;
  }
  section.history .col01 > img {
    margin-right: 70px;
  }
  section.company .col02 img.img1,
  section.company .col02 img.img3 {
    transform: scale(0.8);
  }
  section.company .col02 img.img2 {
    transform: scale(0.65);
  }
  section.greeting__contents1 .col01 > div {
    position: static;
  }
  section.greeting__contents1 .textbox2 {
    margin: 50px auto;
  }
  section.greeting__contents1 .col01 {
    height: auto;
    text-align: center;
  }
  section.greeting__contents1 .textbox2 div p {
    display: block;
    text-align: center;
    width: 80%;
    margin: 0 auto 20px;
  }
  section.greeting__contents1 .imgbox1 {
    margin: 50px auto 0;
  }
  section.greeting__contents1 .textbox2 div p br {
    display: none;
  }
}
@media screen and (max-width: 1680px) {
  section.company .sub_tit {
    margin-bottom: 50px;
  }
  section.company .col02 {
    padding: 200px 0;
    margin: 200px 0;
  }
  section.company .col02 img {
    display: none;
  }
  section.company .col02 ul {
    width: calc(100% - 4%);
  }
}
@media screen and (max-width: 1600px) {
  section.contact iframe {
    padding: 0;
    /*        width: 95%;*/
    max-width: inherit;
    margin: 0 auto 70px;
  }
  .slider_wrap {
    padding: 0 20px;
    margin-left: 0;
    box-sizing: border-box;
  }
  section.furniture .slider_wrap {
    padding: 0;
  }
}
@media screen and (max-width: 1500px) {
  section.board_detail .board_col02 {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  section.board_detail .board_col02 iframe,
  section.board_detail .board_col02 object,
  section.board_detail .board_col02 embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  section.furniture .slider_wrap .slick-list {
    width: calc(100% - 10%);
  }
  section.showroom .slider_wrap .slick-list {
    width: calc(100% - 9%) !important;
  }
  section.showroom .slider_wrap .slick .thumb {
    width: 100%;
  }
  section.furniture .slider_wrap .slick-list {
    left: 60px;
  }
  section.showroom .slider_wrap .slick-list {
    left: 80px;
  }
}
@media screen and (max-width: 1480px) {
  :root {
    --history-yesar-gap: 20vw;
  }
  section.showroom .floor_tit {
    flex-direction: column;
    gap: 30px;
  }
  section.showroom .floor_tit .desc br {
    display: none;
  }
  section.showroom .slider_wrap {
    width: 64%;
  }
  section.live_view .col03 .tit h5:after {
    min-width: 25px;
    width: 25px;
    height: 25px;
    top: -8px;
    font-size: 12px;
    right: -63px;
    line-height: 27px;
  }
  section.live_view .col03 .swiper {
    width: 100%;
    height: 26vw;
  }
  section.live_view .col03 > ul > li {
    width: 49%;
    margin-bottom: 70px;
  }
  section.live_view .col03 .tit {
    margin: 0 auto 20px;
  }
  section.live_view .col03 .tit p {
    font-size: 18px;
    box-sizing: border-box;
    min-height: inherit;
    min-height: 54px;
  }
  section.live_view .col03 .tit i {
    min-width: 25px;
    width: 25px;
    height: 25px;
    top: -8px;
    left: 5px;
    font-size: 12px;
  }
  section.live_view .col03 .tit p br {
    display: none;
  }
  section.live_view .col03 .tit {
    flex-wrap: wrap;
  }
  section.live_view .col03 .tit h5 {
    font-size: 26px;
  }
  .badge_sub > ul {
    column-gap: 20px;
  }
  .case .thumb {
    margin-bottom: 10px;
  }
  .badge_sub .thumb {
    margin-bottom: 10px;
  }
  .case > ul {
    column-gap: 20px;
  }
  #dates {
    display: block;
    left: 0 !important;
    display: flex;
    overflow-x: scroll;
    padding: 20px 0;
    box-sizing: border-box;
    gap: 20px;
  }
  .date_wrap {
    top: 0;
    margin-top: 100px;
  }
  #dates a:after,
  .date_wrap:after {
    display: none;
  }
  #dates li {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
  }
  .issues_wrap {
    margin: 100px 0;
    justify-content: space-around;
  }
  section.history .col01 > img {
    display: block;
    margin-right: 0;
  }
  section.history .col01 {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  section.patent .col03 ul > li:after {
    display: none;
  }
  section.greeting__contents1 .imgbox1 {
    margin: 170px auto 0;
  }
  section.greeting__contents1 .imgbox1 img {
    transform: scale(1.3);
  }
  section.greeting__contents1 .textbox2 {
    margin: 150px auto 50px;
  }
}
@media screen and (max-width: 1440px) {
  .board_plan {
    margin-bottom: 70px;
  }
  section.showroom .slider_wrap .slick-list {
    left: 60px;
  }
  body.masstige .ms_visual {
    margin: 115px auto 250px;
  }
  section.masstige .wrap span {
    right: -155px;
    right: -155px;
  }
  section.masstige .col .desc:after {
    left: calc(100% - 95%);
  }
  section.masstige .col02 .desc:after,
  section.masstige .col04 .desc:after {
    left: auto;
    right: calc(100% - 95%);
  }
  section.masstige .col02 .desc,
  section.masstige .col04 .desc {
    padding-right: calc(100% - 90%);
  }
  section.masstige .col .desc {
    padding-left: calc(100% - 90%);
  }
  section.masstige .visual > img:last-child {
    display: none;
    margin-left: 0;
    top: 0;
  }
  section.masstige .wrap p {
    left: 170px;
    top: -30px;
  }
  section.masstige h2:after {
    bottom: auto;
    top: 250px;
    width: 1px;
    height: 270px;
  }
  section.patent .col03 ul {
    flex-wrap: wrap;
    gap: 100px 0;
  }
  section.masstige .visual {
    margin-top: -250px;
  }
  section.patent .col03 ul > li {
    width: 50%;
  }
  section.patent .col03 .thumb {
    margin: 0 auto 30px;
  }
  section.patent .col02 .desc,
  section.patent .col02 .desc i {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 1400px) {
  .more_btn {
    margin-top: 30px;
  }
  .bd_form .case {
    width: 100%;
  }
  section.board_detail .board_col04 .case .thumb {
    width: 346px;
    height: 238px;
  }
  .bd_form {
    flex-direction: column;
  }
  .bd_form .write_notice {
    width: 100%;
  }
  section.board_detail .board_plan ul {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 70px;
  }
  section.board_detail .board_plan > ul > li:nth-child(2) {
    margin-top: 0;
  }
  section.furniture .img,
  section.house .inner_v3 {
    margin-bottom: 100px;
  }
  .slider_wrap .txt h3 {
    font-size: 33px;
  }
  .slider_wrap .txt .desc {
    font-size: 26px;
  }
  .bg_tit {
    padding: 8px 13px 6px 13px;
    margin-bottom: 15px;
  }
  .bg_tit em {
    font-size: 14px;
  }
  .slider_wrap .slick-list {
    left: 80px;
    top: -54px;
  }
  .slider_wrap .slick-next {
    top: 65px;
  }
  .slider_wrap .slick-arrow {
    width: 60px;
    height: 55px;
  }
  .slider_wrap .txt h3 span {
    margin-left: 13px;
    vertical-align: 6px;
    padding: 5px 10px 3px 10px;
    font-size: 14px;
    line-height: 1;
  }
  section.company .col03 li {
    width: 48%;
  }
  .board_plan > ul > li:nth-child(2) .line {
    width: 70%;
    right: 0;
    margin: 0 auto;
  }
  /*
    .floor_plan {
    display: block;
    font-size: 0;
  }
  */
  .board_plan .plan h4,
  .board_plan ul > li:nth-child(2) h4,
  .board_plan ul > li:nth-child(3) h4 {
    margin-bottom: 30px;
  }
  /*
  .floor_plan > img {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
*/
  .board_plan ul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-row-gap: 70px;
  }
  .board_plan .plan {
    grid-area: 1 / 1 / 2 / 2;
  }
  .board_plan ul > li:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }
  .board_plan ul > li:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
  }
}
@media screen and (max-width: 1280px) {
  section.furniture_list .case .thumb i {
    top: 15px;
    right: 15px;
  }
  .issues_wrap > h1 {
    text-align: left;
  }
  .issues_wrap {
    gap: 100px;
  }
  .notice_ .thumb {
    width: 43%;
  }
  .notice_ .desc h3 {
    line-height: 1;
    font-size: 14px;
    padding: 5px 10px 3px 10px;
  }
  .notice_ .desc span {
    font-size: 13px;
  }
  .notice_ .desc p {
    font-size: 26px;
    word-break: break-all;
  }
  .notice_ .desc {
    width: 53%;
  }
  .slider_wrap > div {
    margin-bottom: 150px;
  }
  .tab_box .tabmenu {
    margin-bottom: 0;
  }
  section.contact .tab_box .tabmenu {
    margin-bottom: 50px;
  }
  section.main_top_banner_ {
    margin-bottom: 50px;
  }
  .floor_name {
    margin-left: -80px;
  }
  .floor_name div {
    left: -66px;
  }
  .floor_name img {
    transform: scale(0.7);
  }
  .floor_name p {
    width: 100%;
  }
  section.furniture .slider_wrap > div {
    margin-bottom: 70px;
  }
  .state {
    top: 15px;
    right: 15px;
  }
  .thumb_slide {
    margin-bottom: 50px;
  }
  section.complex .badge_sub p span {
    font-size: 16px;
  }
  body.masstige.on header.show .header__top > ul > li > a {
    color: #fff;
  }
  body.masstige.on header.show .logo svg path.cl2 {
    fill: #fff;
  }
  body.masstige.on header.show .logo svg path.cl1 {
    fill: rgba(255, 255, 255, 0.5);
  }
  .badge_sub > ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .badge_sub .thumb {
    max-height: 266px;
  }
  .badge_sub .thumb i {
    top: 15px;
    right: 15px;
  }
  section.gallery .badge_sub p {
    font-size: 22px;
  }
  .badge_sub p {
    font-size: 18px;
  }
  .case .thumb {
    max-height: 266px;
  }
  .case p {
    font-size: 18px;
  }
  .case > ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.masstige header.top .header__top > .ham span,
  body.masstige header.top.show .header__top > .ham span,
  body.masstige header.show.reverse.top .header__top > .ham span {
    background: #fff;
  }
  header.top .header__top > .ham span,
  header.show.reverse.top .header__top > .ham span,
  .header__top > .ham span {
    background: #000;
  }
  header.on .header__top > .ham span {
    background: #fff;
  }
  body.masstige header.on .header__top > .ham span,
  body.masstige header.show .header__top > .ham span {
    background: #000;
  }
  body.on .header__top > ul > li > a {
    color: #fff;
  }
  body.on .header__top > ul > li.active > a {
    color: #c3003b;
  }
  header.reverse .header__top > .ham span,
  header.reverse.show .header__top > .ham span {
    background: #fff;
  }
  body.on header.reverse .header__top > .ham span,
  body.on header.reverse.show .header__top > .ham span {
    background: #000;
  }
  body.masstige header.reverse .header__top > .ham span,
  body.masstige header.reverse.show .header__top > .ham span {
    background: #000;
  }
  body.masstige.on header.on .header__top > .ham span,
  body.masstige.on header.reverse .header__top > .ham span,
  body.masstige.on header.reverse.show .header__top > .ham span {
    background: #fff;
  }
}
@media screen and (max-width: 1240px) {
  .list_notice .col02 > ul > li {
    padding: 0 20px;
  }
  .list_notice .col02 .tit {
    width: 55%;
  }
  section.live_view .col03 .tit p {
    width: 100%;
  }
  section.architecture .swiper-button-prev {
    left: 20px;
  }
  section.architecture .swiper-button-next {
    right: 20px;
    left: auto;
  }
  section.architecture .swiper-button-next,
  section.architecture .swiper-button-prev {
    width: 60px;
    height: 60px;
  }
  section.architecture .swiper-button-prev:after,
  section.architecture .swiper-rtl .swiper-button-next:after,
  section.architecture .swiper-button-next:after,
  section.architecture .swiper-rtl .swiper-button-prev:after {
    width: 19px;
    height: 5px;
  }
  section.patent .col02 .desc {
    color: #fff;
    text-align: center;
    font-size: 3.6vw;
    font-weight: 300;
  }
  section.patent .col02 .tit {
    margin-bottom: 100px;
  }
  section.patent .tit {
    margin-bottom: 100px;
  }
  section.patent .col01 .one {
    width: auto;
    height: auto;
  }
  section.patent .col01 .one p {
    margin-bottom: 30px;
  }
  section.patent .col01 .one p b {
    font-size: 12vw;
  }
  section.patent .col01 .one dl:nth-of-type(3) {
    display: block;
    text-align: center;
  }
  section.patent .col01 .one dl:nth-of-type(2) {
    transform: inherit;
  }
  section.patent .col01 .one dl {
    position: static;
    text-align: center;
    margin-bottom: 25px;
  }
  section.patent .col01 .one p:after {
    display: none;
  }
  section.company .col03 h3 {
    text-align: center;
  }
  section.company .col03 h3 b {
    display: block;
  }
  section.company .col02 p {
    font-size: 10vw;
  }
  section.company .col01 p {
    font-size: 70px;
  }
  section.company .col01 img {
    height: 100px;
  }
  section.company .col01 span {
    font-size: 28px;
  }
  section.company .col02 {
    padding: 100px 0;
    margin: 100px 0;
  }
  section.company .col02 h3 {
    font-size: 30px;
  }
  section.company .col02 span {
    font-size: 22px;
  }
  section.company .col03 h4 {
    font-size: 28px;
  }
  section.company .col03 h4:after {
    width: 6px;
    height: 6px;
    top: 16px;
  }
  section.company .col03 p {
    font-size: 20px;
  }
  section.company .col03 p:after {
    width: 4px;
    height: 4px;
    top: 11px;
  }
}
@media screen and (max-width: 1170px) {
  .floor_name div i {
    padding-right: 0;
    text-align: center;
    display: block;
    margin-bottom: 7px;
  }
  .floor_name div {
    width: 100%;
    text-align: center;
    top: -5px;
  }
  .floor_name div i:after {
    display: none;
  }
  .floor_name div:after {
    width: 180px;
  }
  section.showroom .slider_wrap {
    width: 62%;
  }
}
@media screen and (max-width: 1024px) {
  .impo_box .box {
    padding: 30px 0;
  }
  .impo_box .left {
    width: 100%;
  }
  .impo_box .left p {
    margin-bottom: 20px;
  }
  .impo_box .right {
    width: 100%;
    padding-left: 0;
  }
  .impo_box .right p {
    margin-bottom: 15px;
  }
  .list_notice .col02 > ul > li {
    flex-wrap: wrap;
    padding: 15px;
    gap: 10px;
  }
  .list_notice .col02 .tit {
    width: 100%;
  }
  .list_notice .col02 .info div {
    gap: 22px;
  }
  .list_notice .col02 .info {
    gap: 22px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .sub_tit {
    margin-bottom: 50px;
  }
  section.house .slider_wrap .slick-slide {
    margin-right: 0;
  }
  section.showroom .floor_tit {
    padding: 50px 0 30px;
    border-bottom: none;
  }
  section.showroom .floor_tit .tit {
    gap: 30px;
  }
  section.showroom .floor_tit h3 {
    font-size: 90px;
  }
  section.showroom .floor_tit .tit h4 {
    padding: 6px 12px;
    font-size: 14px;
  }
  section.showroom .floor_tit .tit h5 {
    font-size: 30px;
    margin-top: 10px;
  }
  section.showroom .slider_wrap .slick-prev {
    right: 60px !important;
  }
  section.showroom .slider_wrap .slick-arrow {
    width: 50px;
    height: 50px;
    left: auto;
    bottom: auto;
    top: -67px;
    right: 0px;
    transform: inherit;
  }
  section.showroom .slider_wrap .slick-list {
    width: 100% !important;
    left: 0;
  }
  section.showroom .slider_wrap {
    width: 100%;
  }
  .floor_name {
    display: none;
  }
  .floor_wrap {
    flex-direction: column;
    align-items: center;
  }
  .more_btn {
    margin: 0 auto;
  }
  section.furniture .slider_wrap .wrap .txt {
    width: 100%;
    text-align: center;
  }
  section.furniture .slider_wrap .wrap {
    gap: 30px;
  }
  section.furniture .slider_wrap > div {
    margin-bottom: 150px;
  }
  section.furniture .slider_wrap .slick-list {
    width: 100%;
    left: 0;
  }
  section.furniture .slider_wrap .thumb {
    width: 100%;
  }
  section.furniture .slider_wrap .thumb,
  section.furniture .slider_wrap .slick {
    width: 100%;
  }
  section.furniture .slider_wrap .slick-list {
    padding: 0;
    margin-left: 0;
  }
  .slider_wrap .txt .desc:after {
    width: 90%;
    right: 0;
    margin: 0 auto;
  }
  section.house .slider_wrap .wrap {
    display: flex;
  }
  section.house .slider_wrap .wrap .txt {
    width: 100%;
    text-align: center;
  }
  section.house .slick-slide img {
    width: 100%;
  }
  .slider_wrap .wrap {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
  }
  section.house .slider_wrap .slick {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .slider_wrap .slick-list {
    left: 0;
    top: 0;
    padding: 0 !important;
    margin-left: 0;
  }
  .slider_wrap .slick-arrow {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -75px;
    position: absolute;
  }
  .slider_wrap .txt .desc:after {
    width: 100%;
    right: 0;
    margin: 0 auto;
  }
  .slider_wrap .slick-prev {
    left: 46%;
  }
  .slider_wrap .slick-next {
    left: 54%;
  }
  section.house .slider_wrap .wrap {
    flex-direction: column;
  }
  section.live_view .col01 h3 {
    font-size: 33px;
    margin-bottom: 20px;
  }
  section.live_view .mySwiper2 {
    height: 67vw;
  }
  section.live_view .col01 .mySwiper .swiper-slide {
    width: 15%;
  }
  section.live_view .col01 h3 span {
    padding: 5px 10px 5px 10px;
    font-size: 13px;
  }
  .content_wrap .tit {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .content_wrap .tit h3 {
    font-size: 33px;
  }
  .thumb_slide .swiper-button-next,
  .thumb_slide .swiper-button-prev {
    width: 55px;
    height: 55px;
  }
  .thumb_slide .tit h3 {
    font-size: 32px;
    margin-bottom: 0;
  }
  .thumb_slide .tit p {
    font-size: 18px;
  }
  .thumb_slide .tit {
    bottom: 30px;
    left: 30px;
  }
  .thumb_slide .swiper-button-next {
    right: 30px;
    bottom: 30px;
  }
  .thumb_slide .swiper-button-prev {
    bottom: 30px;
    right: 95px;
  }
  .check h4 {
    width: 15%;
    display: inline-block;
    vertical-align: top;
  }
  .check > ul > li .wrap {
    margin-left: 0;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 20%);
    padding-left: 10px;
    box-sizing: border-box;
    overflow-x: scroll;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .check > ul > li .wrap ::-webkit-scrollbar {
    display: none;
    /*Chrome, Safari, Opera*/
    width: 0px;
  }
  .check .wrap > div label {
    padding: 0;
    border: none;
    margin: 0 10px 10px 0;
  }
  .check > ul > li {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .check > ul > li .wrap:after {
    display: none;
  }
  .issues_wrap {
    margin: 50px 0 100px;
    gap: 50px;
    /*        flex-direction: column;*/
  }
  section.company .col01 p {
    font-size: 50px;
  }
  section.company .col01 img {
    height: 122px;
  }
  section.company .col01 span {
    margin-top: 50px;
    font-size: 26px;
  }
  section.greeting__contents1 .imgbox1 img {
    transform: scale(1);
  }
  section.greeting__contents1 .textbox1 h3 {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: normal;
  }
  section.greeting__contents1 .textbox1 p {
    font-size: 26px;
  }
  section.greeting__contents1 .imgbox1 {
    margin: 50px auto 0;
  }
  section.greeting__contents1 .textbox2 {
    margin: 50px auto;
  }
}
@media screen and (max-width: 990px) {
  section.masstige .wrap span {
    right: 0;
    text-align: center;
  }
  section.masstige .wrap p {
    left: 0;
    top: 0;
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
  }
  section.masstige .visual {
    margin-top: 0;
  }
  section.masstige h2:after {
    height: 150px;
  }
  section.masstige h2 {
    padding-bottom: 220px;
  }
  section.masstige .visual img {
    display: block;
    margin: 0 auto;
  }
  section.masstige .visual > img:nth-child(2) {
    margin-left: auto;
    margin-top: 30px;
  }
  .view_list > div {
    width: 100%;
  }
  .view_list > div:nth-child(1) {
    border-bottom: 1px solid #eee;
    border-right: 0;
  }
  .view_list img.thumb {
    width: 10vw;
    height: 6.5vw;
    min-width: 50px;
    min-height: 30px;
  }
  .view_list img.thumb.no_img {
    margin-left: -85px;
  }
}
@media screen and (max-width: 768px) {
  .link_btn a {
    width: 200px;
  }
  .link_btn p {
    font-size: 16px;
  }
  .hide:not(header) {
    display: none !important;
  }
  .iframe_box_ {
    margin-bottom: 70px !important;
  }
  section.board_detail .board_col03 > div:not(:last-child) {
    margin-bottom: 30px;
  }
  .board_plan .plan > div.basic_btn_v3 {
    margin: 20px 0 0;
  }
  .bd_wrap {
    padding: 0 20px;
  }
  .case h5 {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 26px;
  }
  body.notice .datepicker {
    left: 0 !important;
    right: 0 !important;
    margin: 70px auto 0 !important;
    min-width: auto !important;
    width: 95% !important;
  }
  body.notice .datepicker .table-condensed > tbody > tr > td {
    padding: 7px 15px;
  }
  body.masstige .ms_img {
    display: flex;
    flex-direction: column;
  }
  body.masstige .ms_img h4 {
    font-size: 20px;
  }
  body.masstige .ms_img h5 {
    font-size: 20px;
  }
  .floor_plan {
    gap: 10px 0;
  }
  body.masstige section.board_detail .board_plan ul {
    margin-bottom: 70px;
  }
  section.ms_list {
    padding: 0 0 50px;
  }
  .bd_tit_v2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .bd_tit {
    font-size: 26px;
    padding-left: 15px;
  }
  .bd_tit:after {
    width: 4px;
  }
  .bd_desc {
    padding: 20px 15px;
  }
  .bd_desc p {
    font-size: 16px;
    padding-left: 22px;
  }
  .bd_desc h5 {
    font-size: 22px;
  }
  .bd_desc p:after {
    width: 12px;
    height: 10px;
  }
  section.board_detail .board_col05 {
    padding: 70px 0;
  }
  section.board_detail .basic_btn {
    margin-bottom: 50px;
  }
  section.board_detail .board_plan > ul > li:nth-child(1) h4,
  section.board_detail .board_plan > ul > li:nth-child(3) h4 {
    margin-bottom: 15px;
  }
  section.board_detail .content_wrap > div:not(:first-child) {
    margin-bottom: 70px;
  }
  body.masstige section.board_detail .content_wrap > div:not(:first-child) {
    margin-bottom: 0;
  }
  body.masstige section.board_detail .ma_mb {
    margin-bottom: 70px !important;
  }
  section.board_detail {
    padding-top: 50px;
  }
  section.board_detail .board_plan ul {
    grid-row-gap: 50px;
  }
  section.gallery_visual .txt h3 {
    font-size: 33px;
    line-height: 1.3;
  }
  section.gallery_visual .txt p {
    font-size: 19px;
  }
  section.gallery_visual .txt h2 {
    font-size: 12px;
    padding: 3px 9px;
  }
  section.board_detail .board_plan ul > li:not(:last-child) {
    margin-bottom: 0;
  }
  section.board_detail .board_col04 .case .thumb {
    width: 100%;
    height: 60vw;
    max-height: none;
  }
  section.board_detail .board_plan > ul > li:nth-child(1) p br {
    display: none;
  }
  section.main_top_banner_ .swiper-pagination-fraction {
    bottom: 20px;
  }
  section.main_top_banner_ .swiper-button-next,
  section.main_top_banner_ .swiper-button-prev {
    width: 26px;
    height: 48px;
  }
  .result_box_v2 .box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  section.search_all .col .box {
    display: block;
  }
  .result_box_v2 .box a {
    font-size: 12px;
    padding: 3px 20px;
    float: right;
  }
  .result_box_v2 .box a img {
    display: none;
  }
  .rd_custom .box {
    padding: 15px 20px 5px 20px;
    box-sizing: border-box;
  }
  section.search_all .basic_tab .tab_box .big_tab ul {
    margin-top: 10px;
  }
  section.search_all .tab_box .big_tab ul li:hover,
  section.search_all .tab_box .big_tab ul li.active,
  section.search_all .tab_box .big_tab ul li {
    margin-right: 0;
    text-align: center;
    transition: 0.3s ease;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    margin: 0;
    border-radius: 0;
    width: 100% !important;
    height: 50px !important;
    line-height: 50px !important;
    /* border-bottom: 1px solid rgba(0, 0, 0, .3) !important; */
    margin: 0;
    background: #f8f3f0;
  }
  section.search_all .tab_box .big_tab ul li:hover,
  section.search_all .tab_box .big_tab ul li.active {
    background: #dc9f7a;
  }
  section.search_all .tab_box .big_tab ul li > a {
    border-bottom: none;
  }
  .state {
    top: 8px;
    right: 8px;
  }
  section.search_all .search_wrap .row01 > a {
    right: 0;
  }
  section.search_all .search_wrap .row01 > a > img {
    width: 25px;
    height: 25px;
  }
  section.search_all .complex .case p span {
    font-size: 13px;
  }
  .result_box_v2:after {
    display: none;
  }
  .rd_custom label {
    display: inline-flex;
    margin-bottom: 10px;
  }
  .custom_btn_v3 {
    display: block;
    position: relative;
    background-color: #f6f7f9;
  }
  .custom_btn_v3.on {
    background: url("../images/common/select_arrow5.png") calc(100% - 15px)
      center no-repeat;
    background-position: calc(100% - 20px) 50%;
    background-size: 15px;
    background-color: #f6f7f9;
  }
  .basic_btn_v2 {
    justify-content: center;
  }
  .basic_btn a {
    padding: 2vw 10%;
    font-size: 14px;
    width: 100%;
    min-width: auto;
  }
  .write_notice .btn button {
    padding: 12.5px 10%;
    font-size: 14px !important;
    min-width: auto;
    width: 50%;
    height: auto !important;
    gap: 0;
  }
  .write_notice .btn button:nth-of-type(1) {
    margin-right: 10px;
  }
  .result_box > p > span {
    font-size: 22px;
  }
  section.search_all .search_wrap {
    height: auto;
    margin-bottom: 50px;
  }
  section.search_all .search_wrap .row01 {
    width: 100%;
    padding: 0;
  }
  section.furniture_list .case .thumb i {
    top: 8px;
    right: 8px;
    font-size: 11px;
    padding: 1px 7px;
  }
  section.contact .tab_box .tabmenu {
    margin-bottom: 30px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  #share {
    width: 90%;
    height: 155px;
  }
  #share ul {
    justify-content: center;
    gap: 15px;
  }
  #share ul img {
    height: 55px;
  }
  /*    검색시작*/
  section.search_all .tab_header > .select_wrapper > select {
    display: block;
  }
  .result_box_v2 .inner > div:not(:last-child) {
    margin-bottom: 50px;
  }
  section.ajax_reload .tab_header {
    position: relative;
    padding-bottom: 30px;
  }
  .result_box .tab_header > ul,
  .tab_header > ul {
    display: none !important;
  }
  .tab_header label {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #007ede;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/gnb_arrow2.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
    background-size: 15px;
  }
  .tab_header > .select_wrapper {
    position: relative;
    width: 100%;
  }
  .tab_header > .select_wrapper > select {
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .tab_header > .select_wrapper > select > option {
    background: #fff;
    color: #000;
    text-align: center;
  }
  .result_box {
    margin-top: 0;
  }
  .result_box > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
  }
  .basic_table .big_tit {
    display: none;
  }
  .result_box_v2 .col.product .basic_table .contents > li,
  .result_box_v2 .col.solution .basic_table .contents > li,
  .basic_table .contents > li {
    padding: 20px;
    box-sizing: border-box;
  }
  .basic_table .contents > li > a > div.num {
    display: none;
  }
  .basic_table .contents > li > a > div.img,
  .basic_table .contents > li > a > div.tit {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
  }
  .basic_table .contents > li > a > div.desc {
    display: block;
    width: 100%;
  }
  .basic_table .contents > li > a > div.desc p {
    margin-top: 15px;
    height: auto;
    word-break: keep-all;
  }
  .basic_table .contents > li {
    height: auto;
  }
  .result_box_v2 .col.product .basic_table .contents > li,
  .result_box_v2 .col.solution .basic_table .contents > li,
  .result_box_v2 .col.product .basic_table .contents > li > a,
  .result_box_v2 .col.solution .basic_table .contents > li > a {
    min-height: auto;
  }
  /*    검색 끝*/
  section.architecture .col .bg {
    display: none;
  }
  section.architecture .main_tit {
    margin-bottom: 50px;
  }
  section.architecture .col {
    min-height: auto;
    height: auto;
    padding: 0 0 100px;
  }
  .issues_wrap {
    gap: 0px;
    flex-direction: column;
  }
  .issues_wrap > h1,
  #issues {
    width: 100%;
    text-align: left;
  }
  #issues > li div ul {
    width: 100%;
  }
  section.patent .col01 .one p {
    overflow: inherit;
  }
  .list_notice {
    margin-bottom: 150px;
  }
  .impo_box > div:nth-child(12) > .left > p,
  .impo_box > div:nth-child(13) > .left > p,
  .impo_box > div:nth-child(14) > .left > p {
    padding-left: 24px;
  }
  section.information .impo_box_v2 {
    padding: 0;
  }
  section.information .impo_box_v2 .com p span {
    display: block;
  }
  section.information .com h3 {
    display: none;
  }
  section.information .num p,
  section.information .nber p {
    padding-left: 17px;
  }
  section.private2 .impo_box > div:nth-child(1) > .left > p,
  section.private2 .impo_box > div:nth-child(2) > .left > p,
  section.private2 .impo_box > div:nth-child(3) > .left > p {
    padding-left: 18px;
  }
  .impo_box > div:nth-child(2) > .left > p,
  .impo_box > div:nth-child(3) > .left > p {
    padding-left: 25px;
  }
  .impo_box .box {
    padding: 20px 0;
  }
  .impo_box .left p {
    font-size: 16px;
    padding-left: 18px;
  }
  .impo_box .right p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .impo_box > .box > .left > p:before {
    font-size: 16px;
  }
  .impo_box .left p:after {
    display: none;
  }
  .impo_box .right p span {
    margin-bottom: 0;
    line-height: 1.5;
  }
  section.information .com p {
    font-size: 15px;
    margin: 0 0 20px;
  }
  section.information .com p br {
    display: none;
  }
  .com_title {
    padding: 30px 0 20px;
  }
  .com_title h2 {
    font-size: 26px;
  }
  .write_notice .zipp_code #zipp_code_id,
  .write_notice .zipp_code #zipp_btn {
    width: 100%;
  }
  .write_notice .zipp_code .row01,
  .write_notice .zipp_code .row02 {
    flex-direction: column;
  }
  .write_notice {
    margin-bottom: 150px;
  }
  .pop .desc > p:after {
    top: -1px;
  }
  .pop .txt p:not(:last-child) {
    margin-bottom: 3px;
  }
  .pop .desc > p:after,
  .pop .desc > p {
    font-size: 14px;
  }
  .pop .desc > p.pl_v3 {
    padding-left: 17px;
  }
  .write_notice .btn {
    gap: 0;
  }
  .write_notice .btn button {
    width: 50%;
    line-height: 1;
    height: 45px;
    font-size: 15px;
  }
  .table_format .col {
    padding-left: 10px;
  }
  .table_format .row > div:nth-child(1) {
    width: 30%;
  }
  .table_format .row > div:nth-child(2) {
    width: 70%;
    padding: 10px;
  }
  .table_format .row > div:nth-child(1) span {
    font-size: 14px;
  }
  .table_format select {
    width: 100%;
    height: 45px;
    padding: 10px;
    font-size: 14px;
    line-height: 1;
    background-size: 12px;
  }
  .table_format .row .col input[type="date"] {
    width: 100%;
    height: 45px;
  }
  .table_format .row .col textarea {
    font-size: 14px;
  }
  .table_format .row .col input {
    padding: 10px;
    height: 45px;
    font-size: 14px;
  }
  .write_notice .col02 .tit h3 {
    font-size: 17px;
    line-height: 1;
  }
  .write_notice .col02 .tit p {
    line-height: 1;
  }
  .write_notice .col02 .tit {
    padding-bottom: 10px;
  }
  .write_notice .col01 .chk span {
    font-size: 14px;
    margin: 0 10px 0 0;
  }
  .write_notice .col01 .all {
    padding-bottom: 10px;
  }
  .write_notice .col01 input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: -1px;
  }
  .write_notice .col01 .all p {
    font-size: 16px;
  }
  .write_notice .col01 .chk {
    padding: 15px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .write_notice .col01 .chk p {
    font-size: 16px;
    width: calc(100% - 27px);
    margin-left: 7px;
  }
  .write_notice .col01 .chk ul > li {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 7px 0;
  }
  .write_notice .col01 .chk button {
    font-size: 14px;
    padding: 4px 15px 3px 15px;
    box-sizing: border-box;
  }
  .write_notice .col02 {
    margin-top: 50px;
  }
  .chartTable {
    border-top: 3px solid #222;
  }
  section.information .chartTable {
    border-top: 2px solid #222;
  }
  .pop .col.txt p {
    font-size: 14px;
  }
  .pop .col {
    margin-top: 20px;
  }
  .chartTableBody,
  .chartTableRow {
    display: block;
    font-size: 0px;
  }
  .chartTableRow.head {
    display: none;
  }
  .chartTable,
  .divTableHead,
  .chartTableCell > span,
  .chartTableCell {
    display: inline-block;
    text-align: center;
    border-right: 0px;
  }
  .chartTableCell:last-child,
  .divTableHead:last-child {
    border-right: 0px;
  }
  .chartTableRow.data {
    text-align: left;
    padding: 10px;
    background: #fff;
  }
  .chartTable.type2 .chartTableCell:first-child {
    padding: 5px 0px;
    vertical-align: top;
  }
  .chartTableRow:nth-of-type(2n-1) {
    background: #fff;
  }
  .chartTableRow:nth-of-type(2n + 1) {
    background: rgba(203, 159, 159, 0.1);
  }
  .chartTableCell.half {
    width: 50%;
  }
  .chartTableCell {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 5px 0px;
    padding-right: 0px;
    font-size: 14px;
  }
  .chartTable.type2 .chartTableCell > span {
    vertical-align: top;
  }
  .chartTable.type3 .chartTableCell > span {
    vertical-align: middle;
  }
  .chartTable.type2 .chartTableCell > p {
    display: inline-block;
    width: calc(100% - 130px);
    vertical-align: top;
  }
  .chartTable.type3 .chartTableCell > p {
    vertical-align: middle;
  }
  .chartTableCell > span {
    text-align: center;
    background: #e5e5e5;
    font-size: 13px;
    color: #000;
    font-weight: 500;
    border-radius: 3px;
    width: 80px;
    padding: 2px 15px;
  }
  .pop {
    width: 90%;
    height: 50%;
  }
  .pop .close {
    right: 15px;
    right: 15px;
  }
  .pop .col h5,
  .pop .tit h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .pop .txt p,
  .pop .tit p {
    font-size: 14px;
  }
  .list_notice .col01 {
    margin-bottom: 15px;
  }
  .list_notice .col02 .info {
    gap: 15px;
  }
  .list_notice .col01 p span,
  .list_notice .col02 .tit p {
    font-size: 16px;
  }
  .list_notice .col01 a {
    width: 100px;
    height: 40px;
    font-size: 16px;
  }
  .list_notice .col02 .info span,
  .list_notice .col02 .info em {
    font-size: 14px;
    line-height: 1;
  }
  .list_notice .col02 .info em {
    width: 72px;
  }
  .list_notice .col02 .info i {
    font-size: 14px;
  }
  .guest_main {
    height: 53vw;
    margin-bottom: 0;
  }
  .guest_main {
    gap: 15px;
  }
  .guest_main .desc {
    left: 13px;
    bottom: 11px;
  }
  .guest_main .desc p {
    font-size: 19px;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .guest_main .desc dl {
    gap: 15px;
  }
  .guest_main .desc dt {
    font-size: 16px;
    font-weight: 300;
  }
  .guest_main .desc dt span {
    font-size: 24px;
  }
  .guest_main .desc dd {
    font-size: 12px;
    padding: 6px 6px 4px 6px;
    top: -6px;
    font-weight: 400;
  }
  section.cm_ah .badge_sub,
  section.guest .badge_sub {
    padding: 0 0 30px;
  }
  .sub_desc_v2 {
    margin: 15px 0 20px;
    padding-bottom: 20px;
  }
  .badge_sub em {
    font-size: 13px;
    padding: 5px 7px 3px 7px;
    margin-bottom: 10px;
  }
  .notice_ .thumb .close p {
    font-size: 20px;
  }
  .notice_ a {
    gap: 20px;
    min-height: 273px;
    flex-direction: column-reverse;
    min-height: inherit;
  }
  .notice_ .desc span {
    font-size: 13px;
    position: static;
  }
  .notice_ .desc {
    width: 100%;
  }
  .notice_ .thumb {
    width: 100%;
    height: 35vw;
  }
  .notice_ .desc p {
    font-size: 20px;
    word-break: break-all;
    margin: 15px 0 5px;
    -webkit-line-clamp: 2;
  }
  .floor_wrap {
    margin-bottom: 100px;
  }
  section.showroom .slider_wrap {
    height: 47vw;
  }
  section.showroom .floor_tit .desc span {
    font-size: 14px;
    padding: 4px 12px;
  }
  section.showroom .floor_tit h3 {
    font-size: 50px;
  }
  section.showroom .floor_tit > div {
    text-align: center;
  }
  section.showroom .floor_tit .desc {
    text-align: left;
  }
  section.showroom .floor_tit p {
    font-size: 16px;
  }
  section.showroom .floor_tit .tit h5 {
    font-size: 26px;
  }
  section.showroom .floor_tit .tit {
    gap: 10px;
    align-items: center;
    flex-direction: column;
  }
  section.showroom .floor_tit {
    padding: 0 0 20px;
  }
  section.furniture .slider_wrap > div {
    margin-bottom: 70px;
  }
  section.furniture .slider_wrap .wrap {
    gap: 30px;
  }
  .tab_box .tabmenu {
    margin-bottom: 50px;
  }
  .tab_box .custom_btn {
    display: none;
    color: #fff;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #dc9f7a;
    background-image: url("../images/common/select_arrow9.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
    background-size: 15px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
  }
  .tab_box .custom_btn.on {
    background: url("../images/common/select_arrow8.png") calc(100% - 15px)
      center no-repeat;
    background-position: calc(100% - 20px) 50%;
    background-size: 15px;
    background-color: #dc9f7a;
  }
  .big_tab > ul > li.active.hide {
    display: none !important;
  }
  .tab_box .big_tab ul {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
  }
  .tab_box .big_tab ul li > a {
    font-size: 16px !important;
    line-height: 50px !important;
  }
  .tab_header > ul > li.active a {
    color: #fff;
  }
  .tab_header > ul > li a {
    display: block;
    position: relative;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s ease;
    padding-bottom: 0;
    line-height: 50px;
  }
  .tab_box .big_tab ul li > a:after {
    display: none !important;
  }
  .basic_tab .tab_box .big_tab ul {
    border-radius: 0px;
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    background: rgba(246, 247, 249, 0.7);
    box-sizing: border-box;
    margin: 10px auto 0;
    display: block;
    overflow-x: inherit;
    overflow-y: inherit;
    scrollbar-width: none;
    width: 100%;
    padding: 0;
  }
  .tabmenu .big_tab ul li {
    transition: 0.3s ease;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    margin: 0;
    border-radius: 0;
    width: 100% !important;
    height: 50px !important;
    line-height: 50px !important;
    /* border-bottom: 1px solid rgba(0, 0, 0, .3) !important; */
    margin: 0;
    background: #f8f3f0;
  }
  .tab_box .tabmenu .big_tab ul li:hover,
  .tab_box .tabmenu .big_tab ul li.active {
    background: #dc9f7a;
  }
  .basic_tab .tab_box .big_tab {
    border-bottom: none;
  }
  .basic_tab .tab_box .big_tab ul > li > a {
    padding: 0;
    color: #775947;
    border-width: inherit;
    border: none;
    transition: 0.3s ease;
    display: block;
    width: 100%;
    height: 100%;
  }
  .basic_tab .tab_box .big_tab ul > li:hover > a {
    color: #fff;
  }
  .basic_tab .tab_box .big_tab ul > li:first-child > a {
    padding: 0;
    border-left-width: inherit;
    border-radius: inherit;
  }
  .basic_tab .tab_box .big_tab ul > li:after {
    display: none;
  }
  section.showroom .tab_box .big_tab ul li.op {
    display: none;
  }
  .container {
    margin-top: 60px;
    padding-top: 70px;
  }
  .sub_tit {
    font-size: 26px;
  }
  .sub_desc {
    font-size: 16px;
  }
  section.furniture .img,
  section.house .inner_v3 {
    margin-bottom: 70px;
  }
  section.live_view .col03 .swiper-pagination {
    background: transparent;
    filter: none;
    backdrop-filter: none;
    bottom: 7px;
    padding: 0;
  }
  .more_btn {
    height: 28px;
    padding: 4px 12px;
    margin: inherit;
  }
  .slider_wrap {
    padding: 0;
  }
  .slider_wrap > div {
    margin-bottom: 70px;
  }
  section.house .slider_wrap .txt {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .slider_wrap .wrap > .slick {
    width: 90%;
    margin: 0 auto;
  }
  .slick-slide img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  section.house .slider_wrap .slick-prev {
    right: 80px !important;
  }
  .slider_wrap .slick-prev {
    right: 60px !important;
  }
  section.house .slider_wrap .slick-slide {
    margin-right: 0;
  }
  .slider_wrap .slick-list {
    margin-left: 0;
    padding: 0 !important;
  }
  .more_btn span {
    font-size: 12px;
  }
  .more_btn img {
    width: 18px;
  }
  .slider_wrap .slick-arrow {
    width: 50px;
    height: 50px;
    left: auto;
    bottom: auto;
    top: -67px;
    right: 0px;
    transform: inherit;
  }
  section.house .slider_wrap .slick-arrow {
    right: 20px;
  }
  .slider_wrap .txt .desc:after {
    width: 100%;
  }
  .bg_tit {
    padding: 7px 10px 6px 10px;
  }
  .bg_tit em {
    font-size: 13px;
  }
  .slider_wrap .txt h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .slider_wrap .txt h3 span {
    vertical-align: 4px;
    padding: 5px 8px 3px 8px;
  }
  .slider_wrap .txt .desc {
    font-size: 18px;
  }
  section.live_view .col03 .tit h5:after {
    min-width: 22px;
    width: 22px;
    height: 22px;
    top: -5px;
    font-size: 11px;
    line-height: 24px;
    right: -60px;
  }
  section.live_view .col01 h3 span {
    margin-left: 0;
  }
  section.live_view .col03 > ul > li {
    width: 100%;
  }
  section.live_view .col03 .tit {
    padding: 0;
    margin: 0 auto 10px;
  }
  section.live_view .col03 > ul > li {
    margin-bottom: 40px;
  }
  section.live_view .col03 .swiper-button-next,
  section.live_view .col03 .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  section.live_view .col03 .swiper {
    width: 100%;
    height: 50vw;
  }
  section.live_view .col03 .tit h5 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  section.live_view .col03 .tit p {
    font-size: 16px;
    min-height: inherit;
    color: rgba(0, 0, 0, 0.6);
  }
  section.live_view .col03 .tit i {
    min-width: 22px;
    width: 22px;
    height: 22px;
    top: -5px;
    left: 5px;
    font-size: 11px;
  }
  section.live_view .col03 .swiper-button-prev:after,
  section.live_view .col03 .swiper-button-next:after {
    background-size: contain;
    width: 15px;
    height: 5px;
  }
  section.live_view .col01 h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  section.live_view .col01 .mySwiper {
    height: 100px;
  }
  section.live_view .col01 .mySwiper .swiper-slide {
    width: 23%;
  }
  section.live_view .col01 {
    margin-bottom: 50px;
  }
  section.live_view .col01 h3 span {
    padding: 2px 7px;
    font-size: 12px;
    vertical-align: 5px;
  }
  .board_plan dt {
    width: 75px;
    font-size: 14px;
  }
  .floor_plan > img {
    width: 100%;
  }
  .board_plan > ul > li:nth-child(2) .line > div {
    top: -50px;
  }
  .board_plan > ul > li:nth-child(2) .line p {
    font-size: 20px;
  }
  .board_plan > ul > li:nth-child(2) .line span {
    font-size: 14px;
  }
  .board_plan > ul > li:nth-child(2) .out {
    background-size: inherit;
  }
  .board_plan dd {
    font-size: 18px;
    position: relative;
    width: calc(100% - 75px);
  }
  .board_plan dd p em {
    font-size: 15px;
    position: relative;
    top: 2px;
  }
  .board_plan > ul > li:nth-child(2) .over {
    width: 100%;
    height: 100%;
  }
  .board_plan .plan > div {
    width: 100%;
  }
  .board_plan > ul > li:nth-child(2) .line {
    width: 100%;
  }
  .board_plan .plan > div:nth-of-type(1) {
    margin-bottom: 10px;
  }
  .board_plan h4 {
    font-size: 26px;
  }
  .board_plan > ul > li:nth-child(2) .wrap {
    height: 48vw;
  }
  section.live_view .col01 {
    margin-bottom: 70px;
  }
  .board_plan .plan h4,
  .board_plan ul > li:nth-child(2) h4,
  .board_plan ul > li:nth-child(3) h4 {
    margin-bottom: 15px;
  }
  .board_plan ul {
    display: block;
  }
  .board_plan ul > li:not(:last-child) {
    margin-bottom: 50px;
  }
  .view_list > div {
    padding: 17px 10px;
  }
  .view_list p,
  .view_list span {
    font-size: 14px;
  }
  .view_list img {
    width: 5px;
    height: 8px;
  }
  .view_list {
    margin: 50px auto 30px;
  }
  .view_list > div > a {
    gap: 15px;
  }
  .view_list img.thumb.no_img {
    margin-left: -60px;
  }
  .content_wrap .tit h3 {
    font-size: 20px;
    line-height: 1.3;
  }
  .content_wrap .tit span {
    font-size: 13px;
  }
  .sub_tit.live img {
    height: 20px;
  }
  section.masstige .wrap span {
    font-size: 22px;
  }
  .content_wrap .content > img:not(:last-child) {
    margin-bottom: 15px;
  }
  .badge_sub {
    margin-bottom: 30px;
  }
  section.live .badge_sub > ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  section.live .badge_sub .thumb {
    height: 67vw;
    max-height: inherit;
  }
  .ratio {
    margin-bottom: 3px;
  }
  .ratio span.date {
    font-size: 12px;
  }
  .case .state {
    gap: 3px;
  }
  body.architecture .state span {
    font-size: 11px;
  }
  .case .state span {
    top: 8px;
    right: 8px;
    font-size: 11px;
    padding: 1px 7px;
  }
  .thumb_slide {
    margin-bottom: 20px;
  }
  .thumb_slide {
    height: 250px;
  }
  .thumb_slide .tit h3 {
    font-size: 16px;
  }
  .thumb_slide .tit p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
  }
  .thumb_slide .tit {
    bottom: 70px;
    left: 15px;
  }
  .thumb_slide .swiper-button-prev {
    left: 20px;
    right: auto;
  }
  .thumb_slide .swiper-button-next {
    right: auto;
    left: 65px;
  }
  .thumb_slide .swiper-button-next,
  .thumb_slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    bottom: 15px;
  }
  .thumb_slide .swiper-button-next:after,
  .thumb_slide .swiper-rtl .swiper-button-prev:after {
    width: 18px;
    height: 5px;
  }
  .paging {
    margin: 50px auto;
  }
  section.complex .badge_sub p span {
    font-size: 13px;
  }
  .badge_sub p {
    font-size: 16px;
  }
  .badge_sub p span {
    font-size: 12px;
  }
  .badge_sub .thumb {
    height: 32vw;
  }
  .badge_sub > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
    column-gap: 10px;
  }
  .badge_sub .thumb i {
    top: 8px;
    right: 8px;
    font-size: 11px;
  }
  section.guest .badge_sub .thumb {
    height: 32vw;
  }
  .case p span {
    font-size: 12px;
  }
  .case p {
    font-size: 16px;
  }
  .case > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
    column-gap: 10px;
  }
  .case .thumb {
    height: 32vw;
  }
  .check {
    margin-bottom: 25px;
  }
  .badge_mb {
    display: block;
    margin-bottom: 30px;
  }
  .badge_mb .thumb {
    position: relative;
    height: 67vw;
  }
  .badge_mb .thumb > div {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .badge_mb .thumb i {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-family: "Pretendard";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    padding: 2px 10px;
    box-sizing: border-box;
    border-radius: 3px;
    background: #369e6d;
  }
  body.architecture .badge_mb .thumb i {
    position: static;
    font-size: 11px;
    padding: 1px 7px;
  }
  .badge_mb .swiper-horizontal > .swiper-pagination-bullets,
  .badge_mb .swiper-pagination-bullets.swiper-pagination-horizontal,
  .badge_mb .swiper-pagination-custom,
  .badge_mb .swiper-pagination-fraction {
    bottom: 50px;
  }
  .badge_mb .swiper-button-next,
  .badge_mb .swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
  }
  .badge_mb .swiper-button-next {
    right: 5px;
  }
  .badge_mb .swiper-button-prev {
    left: 5px;
  }
  .badge_mb .swiper-button-next,
  .badge_mb .swiper-button-prev {
    top: 45%;
  }
  .badge_mb .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.8);
  }
  .badge_mb .swiper-button-next:after,
  .badge_mb .swiper-button-prev:after {
    font-size: 27px;
  }
  .badge_mb .swiper p {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
  }
  .badge_mb .swiper p span {
    display: inline-block;
    margin-left: 7px;
    color: #898989;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
  }
  section.gallery .badge_sub {
    display: none;
  }
  .paging a.number:first-child {
    margin-left: 10px;
  }
  .paging a.number:last-child {
    margin-right: 10px;
  }
  .paging .number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .paging span {
    width: 30px;
    height: 30px;
  }
  .check h4 {
    font-size: 14px;
    padding: 4px 7px 3px 7px;
  }
  .check > ul > li {
    margin-bottom: 10px;
  }
  .check > ul > li .wrap {
    width: calc(100% - 23%);
    padding-left: 0px;
  }
  .check .wrap > div label {
    font-size: 17px;
    vertical-align: -4px;
    margin: 0 5px 10px 0;
  }
  section.architecture .main_tit h3 {
    font-size: 42px;
  }
  section.architecture .main_tit h2 {
    font-size: 20px;
  }
  section.architecture .swiper-pagination-bullet-active {
    width: 12%;
    border: 2px solid #fff;
  }
  section.architecture .swiper {
    top: 0;
    padding: 70px 0;
  }
  section.architecture .swiper-pagination {
    bottom: 30px;
  }
  section.architecture .col .swiper-slide .desc h4,
  section.architecture .col .swiper-slide .desc h5 {
    font-size: 20px;
  }
  section.architecture .col .swiper-slide .desc {
    padding: 20px;
  }
  section.architecture .col .swiper-slide .thumb {
    /*        height: 55vw;*/
    height: auto;
    position: relative;
  }
  section.architecture .col .swiper-slide .thumb:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  section.architecture .swiper-button-next,
  section.architecture .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
  section.architecture .swiper-button-next {
    top: 5px;
    transform: inherit;
  }
  section.architecture .swiper-button-prev {
    left: auto;
    right: 80px;
    top: 5px;
    transform: inherit;
  }
  section.architecture .col .swiper-slide {
    width: 90%;
  }
  section.masstige .col .bg {
    height: 71vw;
    background-attachment: inherit;
  }
  section.masstige .col .desc p {
    font-size: 22px;
    font-weight: 400;
  }
  section.masstige .col .desc img {
    height: 25px;
  }
  section.masstige .col .desc {
    padding: 70px 0 70px 0;
    padding-left: calc(100% - 90%);
  }
  section.masstige .col01 .desc {
    margin-top: 70px;
    padding: 10px 0 70px 0;
    padding-left: calc(100% - 90%);
  }
  section.masstige .col02 .desc,
  section.masstige .col04 .desc {
    padding-left: inherit;
    padding-right: calc(100% - 90%);
  }
  section.masstige .col .desc p {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
  }
  body.masstige .ms_visual {
    margin: 0 auto 100px;
  }
  section.masstige h2 {
    text-align: center;
    padding-bottom: 20px;
  }
  section.masstige .col01 h3 {
    font-size: 32px;
    padding-bottom: 10px;
  }
  section.masstige .col01 h3:after {
    width: 65px;
  }
  section.masstige .wrap p {
    font-size: 22px;
  }
  section.masstige h2:after {
    display: none;
  }
  section.masstige .visual > img:nth-child(2) {
    margin-top: 20px;
  }
  section.masstige h2 span {
    font-size: 33px;
    left: auto;
    margin-bottom: 10px;
  }
  section.masstige h2 img {
    width: 75%;
  }
  section.masstige .visual img {
    width: 90%;
  }
  #issues > li > div > * {
    display: block;
  }
  .issues_wrap {
    gap: 30px;
  }
  #issues li p {
    margin-bottom: 18px;
  }
  .issues_wrap > h1 {
    font-size: 60px;
  }
  #issues > li ul li:not(:last-child) {
    margin-bottom: 7px;
    margin-bottom: 25px;
  }
  #issues > li > div:not(:last-child),
  #issues > li > div div:not(:last-child) {
    margin-bottom: 25px;
  }
  #issues > li.v2 > div:not(:last-child) {
    margin-bottom: 50px;
  }
  #issues > li div span {
    margin: 0 0 20px 0;
  }
  .date_wrap {
    margin-top: 20px;
  }
  section.history .col01 p {
    font-size: 22px;
    margin-bottom: 20px;
  }
  section.history .col01 p br {
    display: none;
  }
  #dates a {
    margin-top: 15px;
  }
  #dates a > i {
    font-size: 16px;
  }
  #dates li {
    width: 25%;
  }
  section.history .col01 span {
    font-size: 20px;
  }
  section.contact .col02 dt {
    width: 150px;
    line-height: 31px;
  }
  section.contact iframe {
    height: 500px;
    margin: 0 auto 50px;
  }
  section.contact .col02 {
    margin-bottom: 100px;
  }
  section.contact .col02 .inner {
    flex-direction: column;
    gap: 20px;
  }
  section.contact .col02 .map_btn img {
    margin-right: 10px;
    height: 25px;
  }
  section.contact .col02 h3 {
    font-size: 30px;
  }
  section.contact .col02 dl {
    gap: 10px;
    margin-bottom: 30px;
    flex-direction: column;
  }
  section.contact .col02 .map_btn {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
  }
  section.contact .col02 .map_btn a {
    width: 100%;
    margin-right: 0;
    font-size: 16px;
  }
  section.patent .col01 .one p b {
    font-size: 100px;
  }
  section.patent .col03 {
    padding: 100px 0;
  }
  section.patent .col03 ul {
    gap: 70px 0;
  }
  section.patent .col03 .thumb {
    width: 250px;
    height: 250px;
  }
  section.patent .col03 .thumb img {
    height: 100px;
  }
  section.patent .col03 .tit {
    margin-bottom: 70px;
  }
  section.patent .col03 ul > li {
    width: 100%;
  }
  section.patent .col02 {
    padding: 100px 0;
  }
  section.patent .col02 .desc,
  section.patent .col02 .desc i {
    font-size: 24px;
    font-weight: 500;
  }
  section.patent .col02 .tit {
    margin-bottom: 50px;
  }
  section.patent .tit {
    margin-bottom: 50px;
  }
  section.patent .tit p span {
    font-size: 28px;
  }
  section.patent .col01 .one dd {
    font-size: 22px;
  }
  section.greeting__contents1 .textbox1 h3 {
    font-size: 46px;
  }
  section.greeting__contents1 .textbox1 p {
    margin-top: 10px;
  }
  section.greeting__contents1 .textbox1 p {
    font-size: 18px;
  }
  section.greeting__contents1 .textbox2 div p {
    width: 100%;
    text-align: left;
  }
  section.company .col01 img {
    height: 13vw;
  }
  section.company .col01 p {
    font-size: 9vw;
  }
  section.company .col01 span {
    font-size: 18px;
    width: 80%;
    margin: 30px auto 0;
  }
  section.company .col01 span br {
    display: none;
  }
  section.company .col02 ul > li {
    padding-left: 25px;
  }
  section.company .col02 ul > li:after {
    border: 3px solid #dc9f7a;
    left: -6px;
    width: 11px;
    height: 11px;
  }
  section.company .col02 ul > li:not(:last-child) {
    padding-bottom: 70px;
  }
  section.company .col03 li {
    width: 100%;
  }
  section.company .col03 h4 {
    font-size: 22px;
  }
  section.company .col03 img {
    margin-top: 20px;
    width: 100%;
  }
  section.company .col03 li:nth-child(1),
  section.company .col03 li:nth-child(3) {
    top: 0;
  }
  section.company .col03 ul {
    gap: 50px 0;
  }
  section.company .col03 p {
    font-size: 16px;
    margin: 5px 0;
    padding-left: 17px;
  }
  section.company .col03 p:after {
    width: 3px;
    height: 3px;
    top: 9px;
  }
  section.company .col03 h4:after {
    width: 4px;
    height: 4px;
    top: 11px;
  }
  section.company .col03 p:not(:last-child) {
    margin-bottom: 0;
  }
  section.company .col02 span {
    font-size: 18px;
  }
  section.company .col03 h3 {
    font-size: 9vw;
    margin-bottom: 50px;
  }
  section.company .col02 h3 {
    font-size: 24px;
  }
  section.company .col02 p {
    margin: 25px 0 15px;
  }
  section.company .col03 h3 b {
    font-size: 8vw;
    line-height: 1;
    margin-top: 15px;
  }
  section.company .col03 {
    padding: 0 0 70px;
  }
  section.company .col02 p {
    font-size: 32px;
  }
  section.company .col02 p em {
    font-size: 18px;
  }
  section.company .col02 p i {
    font-size: 26px;
  }
}
@media screen and (max-width: 414px) {
  .sub_desc {
    margin: 15px 0 40px;
  }
  .sub_desc_v2 {
    margin: 15px 0 20px;
  }
  section.patent .col01 .one p {
    font-size: 11vw;
  }
  section.patent .col01 .one p b {
    font-size: 22vw;
  }
  .badge_mb .swiper-button-next,
  .badge_mb .swiper-button-prev {
    top: 42%;
  }
  section.patent .col02 .desc,
  section.patent .col02 .desc i {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  section.history .col01 p {
    font-size: 20px;
  }
  section.company .col01 span {
    font-size: 18px;
  }
}
@media screen and (max-width: 320px) {
  body.notice .datepicker .table-condensed > tbody > tr > td {
    box-sizing: border-box;
    padding: 7px 0 !important;
  }
}
