.sub .hero-bg {
  display: flex;
  align-items: center;
  height: 480px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
}
.sub .hero-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
.sub .hero-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 110%);
}
.sub .hero-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .hero-content {
    flex-direction: column;
  }
}
.sub .hero-content .page-title .title {
  font-size: var(--fs18);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .hero-content .page-title .title {
    text-align: center;
  }
}
.sub .hero-content .page-title .subtitle {
  font-size: clamp(40px, 60 / var(--inr) * 100vw, 60px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .hero-content .page-title .subtitle {
    text-align: center;
  }
}
.sub .hero-content .brc {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .hero-content .brc {
    display: none;
  }
}
.sub .hero-content .brc li a {
  font-size: 16px;
  transition: all 0.4s;
}
.sub .hero-content .brc li a:hover {
  color: var(--accent);
}
.sub .hero-content .brc .item.active {
  text-transform: uppercase;
}
.sub .item1 {
  background-image: url("/images/slider/slide_1.webp");
}
.sub .item2 {
  background-image: url("/images/slider/slide_2.webp");
}
.sub .item3 {
  background-image: url("/images/slider/slide_3.webp");
}
.sub .item4 {
  background-image: url("/images/slider/slide_1.webp");
}
.sub .lnb {
  display: flex;
  align-items: stretch;
  background: var(--grey1);
}
.sub .lnb-dropdown, .sub .lnb-bar {
  display: flex;
  align-items: stretch;
  gap: 1px;
  height: calc(var(--lnb-height) + 20rem);
}
.sub .lnb-dropdown .home, .sub .lnb-bar .home {
  display: flex;
}
.sub .lnb-dropdown .home > a, .sub .lnb-bar .home > a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black);
  color: var(--white);
  padding: 0 30rem;
  transition: all 0.4s;
}
.sub .lnb-dropdown .home > a:hover, .sub .lnb-bar .home > a:hover {
  background: var(--accent);
  color: var(--white);
}
.sub .lnb-dropdown .parent, .sub .lnb-bar .parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  color: var(--white);
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 600px) {
  .sub .lnb-dropdown .parent, .sub .lnb-bar .parent {
    flex-grow: 1;
  }
}
.sub .lnb-dropdown .parent-toggle, .sub .lnb-bar .parent-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  height: 100%;
  padding-inline: 20rem;
  min-width: 250rem;
  border-right: 1px solid var(--grey2);
  font-size: var(--fs18);
  color: var(--grey);
}
@media screen and (min-width: 320px) and (max-width: 600px) {
  .sub .lnb-dropdown .parent-toggle, .sub .lnb-bar .parent-toggle {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.sub .lnb-dropdown .parent-toggle i, .sub .lnb-bar .parent-toggle i {
  transition: all 0.4s;
  font-size: var(--fs20);
  color: var(--black);
  position: relative;
}
.sub .lnb-dropdown .parent-toggle.active i, .sub .lnb-bar .parent-toggle.active i {
  transform: rotate(180deg);
}
.sub .lnb-dropdown .parent-menu, .sub .lnb-bar .parent-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  color: var(--grey8);
  background: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 1;
}
.sub .lnb-dropdown .parent-menu > li, .sub .lnb-bar .parent-menu > li {
  display: flex;
  border-bottom: 1px solid var(--grey1);
}
.sub .lnb-dropdown .parent-menu > li > a, .sub .lnb-bar .parent-menu > li > a {
  padding: 15rem 20rem;
  font-size: var(--fs18);
  transition: all 0.4s;
  width: 100%;
}
.sub .lnb-dropdown .parent-menu > li > a:hover, .sub .lnb-bar .parent-menu > li > a:hover {
  color: var(--accent);
}
.sub .lnb-dropdown .parent-menu > li > a.active, .sub .lnb-bar .parent-menu > li > a.active {
  color: var(--accent);
}
.sub .lnb-dropdown .child, .sub .lnb-bar .child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 320px) and (max-width: 600px) {
  .sub .lnb-dropdown .child, .sub .lnb-bar .child {
    flex-grow: 1;
  }
}
.sub .lnb-dropdown .child-toggle, .sub .lnb-bar .child-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  height: 100%;
  padding-inline: 20rem;
  min-width: 250rem;
  border-right: 1px solid var(--grey2);
  font-size: var(--fs18);
  color: var(--grey);
  font-weight: 500;
}
@media screen and (min-width: 320px) and (max-width: 600px) {
  .sub .lnb-dropdown .child-toggle, .sub .lnb-bar .child-toggle {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.sub .lnb-dropdown .child-toggle i, .sub .lnb-bar .child-toggle i {
  transition: all 0.4s;
  font-size: var(--fs20);
  color: var(--black);
  position: relative;
}
.sub .lnb-dropdown .child-toggle.active i, .sub .lnb-bar .child-toggle.active i {
  transform: rotate(180deg);
}
.sub .lnb-dropdown .child-menu, .sub .lnb-bar .child-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  color: var(--grey8);
  background: var(--white);
  box-shadow: var(--box-shadow);
}
.sub .lnb-dropdown .child-menu > li, .sub .lnb-bar .child-menu > li {
  display: flex;
  border-bottom: 1px solid var(--grey1);
}
.sub .lnb-dropdown .child-menu > li > a, .sub .lnb-bar .child-menu > li > a {
  padding: 15rem 20rem;
  font-size: var(--fs18);
  transition: all 0.4s;
  width: 100%;
}
.sub .lnb-dropdown .child-menu > li > a:hover, .sub .lnb-bar .child-menu > li > a:hover {
  color: var(--accent);
}
.sub .lnb-dropdown .child-menu > li > a.active, .sub .lnb-bar .child-menu > li > a.active {
  color: var(--accent);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .lnb-dropdown, .sub .lnb-bar {
    --inr-width: 1;
  }
}
.sub .lnb-bar {
  justify-content: center;
}
.sub .lnb-bar > li {
  display: flex;
  align-items: stretch;
  position: relative;
}
.sub .lnb-bar > li:not(:first-child)::before {
  content: "";
  width: 0;
  height: 30%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sub .lnb-bar-item {
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 0 20rem;
}
.sub .lnb-bar-item.active {
  color: var(--primary);
}
.sub .content {
  padding-bottom: clamp(50px, 100 / var(--inr) * 150vw, 150px);
}
.sub .content-title {
  text-align: center;
  margin-top: clamp(50px, 100 / var(--inr) * 100vw, 100px);
  font-size: clamp(20px, 40 / var(--inr) * 100vw, 40px);
}
.sub .content-subtitle {
  text-align: center;
  font-size: 16px;
  color: #999999;
}
.sub .content-wrap {
  display: flex;
  flex-direction: column;
  margin-top: clamp(50px, 100 / var(--inr) * 100vw, 100px);
}
.sub .content-wrap .about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(50px, 120 / var(--inr) * 100vw, 120px);
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .sub .content-wrap .about {
    flex-direction: column;
  }
}
.sub .content-wrap .about figure {
  width: 600px;
  height: 580px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .sub .content-wrap .about figure {
    width: 100%;
    height: auto;
    -o-object-fit: 4/3;
    object-fit: 4/3;
  }
}
.sub .content-wrap .about > div {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sub .content-wrap .about > div p {
  text-align: justify;
  font-size: var(--fs18);
  line-height: 40px;
}
.sub .content-wrap .about-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--black);
  padding: 20px 30px;
}
.sub .content-wrap .map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAFAFA;
  border: 1px solid #DDDDDD;
  padding: 24px 36px;
  font-size: var(--fs18);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .map-info {
    flex-direction: column;
  }
}
.sub .content-wrap .map-wrap {
  display: flex;
  position: relative;
}
.sub .content-wrap .map-wrap .wrap_controllers.hide, .sub .content-wrap .map-wrap .cont {
  display: none;
}
.sub .content-wrap .map-wrap .root_daum_roughmap_landing {
  width: 100%;
  height: 500px;
  border-bottom: 1px solid #DDDDDD;
}
.sub .content-wrap .map-wrap .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 100%;
}
.sub .content-wrap .map-wrap .border1 {
  display: none;
}
.sub .content-wrap .map-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: #222222;
  padding: 24px 57px;
  color: var(--white);
  transition: all 0.4s;
}
.sub .content-wrap .map-link:hover {
  background: #3B3B3B;
}
.sub .content-wrap .map-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(30px, 50 / var(--inr) * 100vw, 50px);
  border: 1px solid #DDDDDD;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .sub .content-wrap .map-detail {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sub .content-wrap .map-detail .tel, .sub .content-wrap .map-detail .fax, .sub .content-wrap .map-detail .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: clamp(18px, 37 / var(--inr) * 100vw, 37px);
  font-weight: 500;
  font-size: var(--fs18);
  text-transform: uppercase;
}
.sub .content-wrap .map-detail .tel i, .sub .content-wrap .map-detail .fax i, .sub .content-wrap .map-detail .mail i {
  color: var(--accent);
  font-size: clamp(18px, 24 / var(--inr) * 100vw, 24px);
}
.sub .content-wrap .map-detail .tel span, .sub .content-wrap .map-detail .fax span, .sub .content-wrap .map-detail .mail span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub .content-wrap .map-detail .tel span:last-child, .sub .content-wrap .map-detail .fax span:last-child, .sub .content-wrap .map-detail .mail span:last-child {
  text-transform: lowercase;
}
.sub .content-wrap .map-detail .fax {
  border-left: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .sub .content-wrap .map-detail .fax {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
  }
}
.sub .content-wrap .lawyers {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 120 / var(--inr) * 100vw, 120px);
}
.sub .content-wrap .lawyers-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 120 / var(--inr) * 100vw, 120px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .lawyers-box {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .lawyers-box:nth-child(2) {
    flex-direction: column-reverse;
  }
}
.sub .content-wrap .lawyers-box .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3/3.5;
  overflow: hidden;
}
.sub .content-wrap .lawyers-box .img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.sub .content-wrap .lawyers-box .bio {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.sub .content-wrap .lawyers-box .bio h1 {
  font-size: clamp(22px, 32 / var(--inr) * 100vw, 32px);
  font-weight: 800;
  margin-top: 0;
}
.sub .content-wrap .lawyers-box .bio p {
  color: var(--accent);
  font-size: var(--fs20);
  font-weight: 600;
}
.sub .content-wrap .lawyers-box .bio hr {
  height: 1px;
  width: 50%;
  margin-top: 10px;
  margin-bottom: 43px;
}
.sub .content-wrap .lawyers-box .bio h3 {
  font-size: var(--fs22);
  font-weight: 600;
}
.sub .content-wrap .lawyers-box .bio ul li {
  list-style: circle inside;
  margin-left: 10px;
  line-height: 30px;
}
.sub .content-wrap .lawyers-box:nth-child(2) .img {
  aspect-ratio: 3/4.5;
}
.sub .content-wrap .service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
}
.sub .content-wrap .service-img {
  display: flex;
  width: 100%;
  height: clamp(450px, 450 / var(--inr) * 100vw, 450px);
  padding: clamp(10px, 25 / var(--inr) * 100vw, 25px);
  border: 1px solid #DDDDDD;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-img {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    flex-direction: column;
    background-color: var(--white);
  }
}
.sub .content-wrap .service-img img {
  position: relative;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.sub .content-wrap .service-img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - clamp(10px, 25 / var(--inr) * 100vw, 25px) * 2);
  height: calc(100% - clamp(10px, 25 / var(--inr) * 100vw, 25px) * 2);
  background: rgba(0, 0, 0, 0.5);
  display: block;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-img::after {
    display: none;
  }
}
.sub .content-wrap .service-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-grow: 1;
  gap: 10px;
  height: 100%;
  position: absolute;
  color: var(--white);
  text-shadow: 2px 1px 3px var(--black);
  z-index: 2;
  font-size: var(--fs18);
  width: calc(100% - 50px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-txt {
    width: 100%;
    position: relative;
    padding-inline: 0 !important;
    margin-top: 20px;
    background: var(--white);
    text-shadow: none;
    color: var(--black);
  }
}
.sub .content-wrap .service-txt h3 {
  color: #e7c655;
  font-size: clamp(28px, 50 / var(--inr) * 100vw, 50px);
  font-weight: 600;
  line-height: 65px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-txt h3 {
    line-height: 40px;
    color: var(--accent);
    text-align: center;
  }
}
.sub .content-wrap .service-txt .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  color: var(--accent);
  box-shadow: var(--box-shadow);
  text-shadow: none;
  padding: clamp(10px, 20 / var(--inr) * 100vw, 20px);
  font-weight: 700;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-txt .contact {
    margin-block: 20px;
    background: var(--black);
    color: var(--white);
    width: 100%;
  }
}
.sub .content-wrap .service-step {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 50 / var(--inr) * 100vw, 50px);
  margin-top: clamp(50px, 50 / var(--inr) * 100vw, 50px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step {
    padding-inline: 0 !important;
    row-gap: 50px;
  }
}
.sub .content-wrap .service-step li {
  display: flex;
  gap: clamp(20px, 50 / var(--inr) * 100vw, 50px);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step li {
    flex-direction: column;
  }
}
.sub .content-wrap .service-step li img {
  width: calc(50% - clamp(20px, 50 / var(--inr) * 100vw, 50px) / 2);
  aspect-ratio: 3/1.6;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step li img {
    width: 100%;
  }
}
.sub .content-wrap .service-step li .step-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  width: calc(50% - clamp(20px, 50 / var(--inr) * 100vw, 50px) / 2);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step li .step-text {
    width: 100%;
  }
}
.sub .content-wrap .service-step li .step-text::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid var(--accent);
  margin-right: 12px;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step li .step-text::before {
    display: none;
  }
}
.sub .content-wrap .service-step li:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step li:nth-child(even) {
    flex-direction: column;
  }
}
.sub .content-wrap .service-step li:nth-child(even) .step-text {
  align-items: flex-end;
  border-right: 2px solid var(--accent);
  border-left: 0;
  padding-right: 20px;
  padding-left: 0;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step li:nth-child(even) .step-text {
    align-items: flex-start;
    border-right: none;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
    padding-right: 0;
  }
}
.sub .content-wrap .service-step li:nth-child(even) .step-text::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid var(--accent);
  margin-right: 12px;
  position: absolute;
  left: unset;
  right: -24px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .service-step li:nth-child(even) .step-text::before {
    display: none;
  }
}
.sub .content-wrap .service-step li h1 {
  font-size: clamp(22px, 32 / var(--inr) * 100vw, 32px);
}
.sub .content-wrap .service-step2 {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(20px, 50 / var(--inr) * 100vw, 50px);
  margin-bottom: clamp(20px, 50 / var(--inr) * 100vw, 50px);
  width: 100%;
}
.sub .content-wrap .service-step2 li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  position: relative;
}
.sub .content-wrap .service-step2 li::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid var(--grey5);
  margin-left: 18px;
  position: absolute;
  right: -18px;
}
.sub .content-wrap .service-step2 li:last-child::after {
  display: none;
}
.sub .content-wrap .service-step2 li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: relative;
  top: 10px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
}
.sub .content-wrap .service-step2 li span i {
  font-size: 65px;
}
.sub .content-wrap .service-step2 li h4 {
  color: var(--black);
  position: relative;
  top: 20px;
}
.sub .content-wrap .service-step3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: clamp(20px, 50 / var(--inr) * 100vw, 50px);
}
.sub .content-wrap .service-step3 li {
  display: flex;
  gap: 10px;
  background: var(--grey1);
  padding: 25px;
}
.sub .content-wrap .service-step3 li span:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  background: var(--black);
  padding: 10px;
  color: var(--white);
  font-size: var(--fs20);
}
.sub .content-wrap .service-step3 li span strong {
  color: var(--accent);
}
.sub .content-wrap .service h1 {
  font-size: clamp(30px, 60 / var(--inr) * 100vw, 60px);
  text-align: center;
  width: 100%;
}
.sub .content-wrap .service .box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--grey1);
  padding: 25px;
  width: 100%;
  line-height: 40px;
  margin-top: clamp(30px, 10 / var(--inr) * 100vw, 10px);
}
.sub .content-wrap .gallery-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .gallery-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sub .content-wrap .gallery-img {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border: 1px solid #DDDDDD;
  transition: all 0.4s;
}
.sub .content-wrap .gallery-img .image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 413/348;
}
.sub .content-wrap .gallery-img .image .title {
  font-size: clamp(16px, 20 / var(--inr) * 100vw, 20px);
  margin-top: 15px;
  transition: all 0.4s;
}
.sub .content-wrap .gallery-img:hover {
  box-shadow: var(--box-shadow);
  scale: 1.02;
}
.sub .content-wrap .gallery-img:hover .title {
  color: var(--accent);
}
.sub .content-wrap .inquiry .bbsView {
  border: 0;
}
.sub .content-wrap .inquiry .bbsView th, .sub .content-wrap .inquiry .bbsView th label {
  font-size: 18rem;
  font-weight: 400;
}
.sub .content-wrap .inquiry .captcha-numb {
  background-color: #222;
  color: #fff;
  height: 39rem;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 15rem;
  font-style: normal;
  letter-spacing: 2rem;
}
.sub .content-wrap .inquiry .btn_area .button {
  background-color: #41464e;
  font-size: 18rem;
  font-weight: 300;
  height: 50rem;
  width: 135rem;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .sub .content-wrap .inquiry .captcha-numb {
    height: 55rem;
    width: 100%;
  }
}
.sub .content-wrap .inquiry input[type=text], .sub .content-wrap .inquiry input[type=password], .sub .content-wrap .inquiry input[type=tel], .sub .content-wrap .inquiry input[type=date], .sub .content-wrap .inquiry input[type=email], .sub .content-wrap .inquiry input[type=number], .sub .content-wrap .inquiry textarea {
  margin-top: 0;
}
.sub .content .tab-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(30px, 60 / var(--inr) * 100vw, 60px);
  width: 100%;
}
.sub .content .tab-list li {
  cursor: pointer;
  font-size: var(--fs18);
  font-weight: 700;
  background: var(--grey1);
  padding-inline: clamp(10px, 20 / var(--inr) * 100vw, 20px);
  padding-block: 10px;
  transition: all 0.4s;
}
.sub .content .tab-list li.active {
  background: var(--accent);
  color: var(--white);
}
.sub .content .tab-list li.active:hover {
  background: var(--black);
  color: var(--white);
}
.sub .content .tab-list li:hover {
  color: var(--white);
  background: var(--black);
}
.sub .content .tab-content {
  display: none;
  opacity: 0;
  transition: all 0.4s ease;
}
.sub .content .tab-content.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  width: 100%;
}

.w50 {
  width: 50%;
}

/*# sourceMappingURL=content.css.map */
