@charset "utf-8";

img {max-width: 100%;}
div, ul, li, h1, h2, h3, h4, h5, h6, span, b, strong, p {
  word-break: keep-all;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {line-height: 1.3}
.desc {
  font-size: 18px;
  line-height: 1.7;
}
.st0 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}
.admin-btn {
  position: relative;
  z-index: 10;
  margin: 30px auto 0;
  text-align: center;
  font-size: 20px;
  color: #ef2727;
  display: block;
}
.more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffe804;
  height: 55px;
  border-radius: 55px;
  padding: 0 30px;
  max-width: 200px;
  width: 100%;
  transition: all .2s;
  box-shadow: 0 15px 40px rgb(0,0,0,0.1);
  border: none;
}
.more-btn b {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.more-btn:hover {background: #000;}
.more-btn:hover b {color: #fff;}
.more-btn:hover .st0 {stroke: #fff;}
.arrow-btn {
  width: 55px;
  height: 55px;
  border-radius: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  background: #ffe804;
  cursor: pointer;
}
@media all and (max-width: 767px) {
  .desc {font-size: 15px;}
  .more-btn {
    height: 48px;
    padding: 0 20px;
    max-width: 180px;
  }
  .more-btn b {font-size: 14px;}
  .arrow-btn {
    width: 40px;
    height: 40px;
  }
}

/*main*/
.main {overflow: hidden;}
.main section {
  position: relative;
  margin-bottom: 150px;
}
.main section:last-child {margin-bottom: 0;}
.main .title {
  margin-bottom: 100px;
  text-align: center;
}
.main .title h2 {font-size: 50px;}
.main .title p {
  margin-top: 40px;
  font-size: 20px;
}
.main .banner {
  background: url(/img/assets/main_banner_bg.jpg) center / cover no-repeat;
  padding: 50px 0;
}
.main .banner .swiper-wrapper {padding-top: 20px;}
.main .banner .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main .banner .swiper-slide .txt {
  width: 50%;
  padding-right: 50px;
}
.main .banner .swiper-slide .txt .subject,
.main .banner .swiper-slide .txt p,
.main .banner .swiper-slide .txt .more-btn {
  opacity: 0;
  transform: translateY(50px);
}
.main .banner .swiper-slide .txt .subject {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
}
.main .banner .swiper-slide .txt p {
  font-size: 20px;
  margin: 40px 0 70px;
}
.main .banner .swiper-slide .txt.animate .subject {
  animation: fadeUp 0.8s ease-out forwards;
}
.main .banner .swiper-slide .txt.animate p {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}
.main .banner .swiper-slide .txt.animate .more-btn {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main .banner .swiper-slide .img {
  width: 50%;
  position: relative;
  aspect-ratio: 700 / 500;
}
.main .banner .swiper-slide .img::before {
  content: "";
  background: #ffe804;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.main .banner .swiper-slide .img span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin-top: -20px;
  margin-left: -20px;
}
.main .banner .slider-controls > div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.main .banner .slider-controls .prev-btn {left: 50px;}
.main .banner .slider-controls .next-btn {right: 50px;}
.main .product .tab-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.main .product .tab-menu li {
  margin-right: 60px;
  font-size: 28px;
  font-weight: bold;
  opacity: 0.4;
  transition: all .2s;
  border-bottom: 3px solid transparent;
  padding-bottom: 35px;
  position: relative;
  cursor: pointer;
}
.main .product .tab-menu li::after {
  content: none;
  background: url(/img/assets/triangle.svg) center / cover no-repeat;
  display: block;
  width: 12px;
  aspect-ratio: 12 / 10;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
}
.main .product .tab-menu li:last-child {margin-right: 0;}
.main .product .tab-menu li:hover {opacity: 1;}
.main .product .tab-menu li.active {
  opacity: 1;
  border-bottom-color: #000;
}
.main .product .tab-menu li.active::after {content: ""}
.main .product .tab-content {position: relative}
.main .product .tab-content > div {display: none;}
.main .product .tab-content > div.active {display: block;}
.main .product .swiper-wrapper {padding-bottom: 30px;}
.main .product .swiper-slide {
  max-width: 800px;
  margin: 0 50px;
}
.main .product .swiper-slide .img {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 800 / 658;
}
.main .product .swiper-slide .img span {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: all .2s;
}
.main .product .swiper-slide:hover .img span {transform: scale(1.1)}
.main .product .swiper-slide .txt {
  padding-top: 42px;
  position: relative;
}
.main .product .swiper-slide .txt .subject {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-right: 80px;
}
.main .product .swiper-slide .txt .content {padding-right: 75px;}
.main .product .swiper-slide .txt .arrow-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.main .product .slider-controls {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 80px auto 0;
}
.main .product .slider-controls .prev-btn,
.main .product .slider-controls .next-btn {
  cursor: pointer;
  width: 25px;
}
.main .product .swiper-pagination {
  background: rgba(0,0,0,0.1);
  width: calc(100% - 90px);
  height: 1px;
  margin: 0 20px;
  position: static;
}
.main .product .swiper-pagination span {background: #30312f;}
.main .partners .partner-list .slick-list {margin: 0 -50px;}
.main .partners .partner-list .slick-slide {
  margin: 0 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .partners .partner-list .slick-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.main .estimate {
  background: url(/img/assets/main_inquiry_bg.jpg) center / cover no-repeat;
  background-attachment: fixed;
  padding: 170px 0;
  text-align: center;
}
.main .estimate p {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px;
}
.main .estimate .more-btn {margin: 0 auto;}
@media all and (max-width: 1600px) {
  .main .banner .slider-controls .prev-btn {left: 20px;}
  .main .banner .slider-controls .next-btn {right: 20px;}
}
@media all and (max-width: 1024px) {
  .main .product .swiper-slide {max-width: 600px;}
  .main .product .slider-controls {padding: 0 50px;}
}
@media all and (max-width: 991px) {
  .main .banner .swiper-wrapper {padding-top: 0;}
  .main .banner .swiper-slide .txt {
    width: 100%;
    padding: 0;
    margin-bottom: 80px;
    text-align: center;
  }
  .main .banner .swiper-slide .txt p {margin: 30px 0 50px;}
  .main .banner .swiper-slide .txt .more-btn {margin: 0 auto;}
  .main .banner .swiper-slide .img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .main .product .tab-menu li {
    font-size: 24px;
    margin-right: 40px;
    padding-bottom: 25px;
  }
  .main .product .tab-menu li img {height: 24px;}
  .main .product .swiper-slide {margin: 0 25px;}
}
@media all and (max-width: 767px) {
  .main section {margin-bottom: 50px;}
  .main .title {margin-bottom: 30px;}
  .main .title h2 {font-size: 30px;}
  .main .title p {
    font-size: 15px;
    margin-top: 15px;
  }
  .main .banner .swiper-slide .txt {margin-bottom: 50px;}
  .main .banner .swiper-slide .txt .subject {font-size: 30px;}
  .main .banner .swiper-slide .txt p {
    font-size: 16px;
    margin: 20px 0 30px;
  }
  .main .banner .swiper-slide .img span {
    margin-left: -10px;
    margin-top: -10px;
  }
  .main .banner .slider-controls {display: none;}
  .main .product .tab-menu {margin-bottom: 30px;}
  .main .product .tab-menu li {
    font-size: 16px;
    margin-right: 15px;
    padding-bottom: 12px;
    border-width: 2px;
  }
  .main .product .tab-menu li::after {
    width: 8px;
    bottom: -8px;
  }
  .main .product .tab-menu li img {height: 13px;}
  .main .product .swiper-slide {
    max-width: 300px;
    margin: 0 10px;
  }
  .main .product .swiper-slide .txt {padding-top: 15px;}
  .main .product .swiper-slide .txt .subject {
    font-size: 20px;
    margin-bottom: 10px;
    padding-right: 50px;
  }
  .main .product .swiper-slide .txt .content {padding-right: 50px;}
  .main .product .swiper-slide .txt .arrow-btn {
    bottom: auto;
    top: 15px;
  }
  .main .product .slider-controls {
    margin-top: 10px;
    padding: 0 15px;
  }
  .main .product .slider-controls .prev-btn,
  .main .product .slider-controls .next-btn {width: 18px;}
  .main .product .slider-controls .prev-btn img,
  .main .product .slider-controls .next-btn img {width: 8px;}
  .main .product .swiper-pagination {
    width: calc(100% - 56px);
    margin: 0 10px;
  }
  .main .partners .title {padding: 0 15px;}
  .main .partners .partner-list .slick-list {margin: 0 -20px;}
  .main .partners .partner-list .slick-slide {
    margin: 0 20px;
    height: 60px;
    max-width: 120px;
  }
  .main .estimate {padding: 100px 15px;}
  .main .estimate p {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/*인사말*/
.sub-greeting .img {
  position: relative;
  margin-bottom: 80px;
}
.sub-greeting .img > div {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}
.sub-greeting .img > div .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.sub-greeting .img::after {
  content: "";
  background: #ffe804;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  right: -20px;
  bottom: -20px;
}
.sub-greeting .sign {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 20px;
}
.sub-greeting .sign b {
  font-size: 16px;
  margin-right: 20px;
}
@media all and (max-width: 767px) {
  .sub-greeting .img {margin-bottom: 40px;}
  .sub-greeting .img > div .logo {max-width: 150px;}
  .sub-greeting .img::after {
    right: -10px;
    bottom: -10px;
  }
  .sub-greeting .sign b {
    font-size: 14px;
    margin-right: 10px;
  }
  .sub-greeting .sign img {width: 65px;}
}

/*오시는길*/
.sub-location .txt {
  background: #f5f5f5;
  padding: 25px 50px;
}
.sub-location .txt ul li {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
}
.sub-location .txt ul li:last-child {border-bottom: none;}
.sub-location .txt ul li > div {
  margin-right: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
.sub-location .txt ul li > div:last-child {margin-right: 0;}
.sub-location .txt ul li h4 {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.sub-location .txt ul li h4 b {
  padding-left: 10px;
  font-weight: bold;
}
.sub-location .txt ul li .box {
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  min-width: 500px;
}
.sub-location .txt ul li .box b {
  font-size: 15px;
  background: #51a130;
  width: 36px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  color: #fff;
  margin-right: 10px;
  font-weight: normal;
}
.sub-location .map {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.sub-location .map .root_daum_roughmap {
  width: 100% !important;
  height: 100%;
}
.sub-location .map .root_daum_roughmap .wrap_map {height: 100% !important;}
@media all and (max-width: 767px) {
  .sub-location .txt {padding: 10px 20px;}
  .sub-location .txt ul li {padding: 15px 0;}
  .sub-location .txt ul li > div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    width: 100%;
    margin: 0;
  }
  .sub-location .txt ul li > div:first-child {padding-top: 0;}
  .sub-location .txt ul li > div:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .sub-location .txt ul li .box {min-width: 0;}
  .sub-location .txt ul li h4 {
    width: 100%;
    margin-bottom: 5px;
  }
  .sub-location .txt ul li h4 img {
    max-width: 14px;
    max-height: 14px;
  }
  .sub-location .txt ul li h4 b {padding-left: 6px;}
  .sub-location .txt ul li p {width: 100%;}
  .sub-location .txt ul li .box b {font-size: 14px;}
  .sub-location .map {height: 300px;}
}