@charset "UTF-8";
/* 오버레이 */
/*어드민 디자인*/
/*============================*/
/*@mixin center() {
    top: $percentage;
    left: $percentage;
    transform: translate(-$percentage, -$percentage);
}*/
ul, li {
  list-style-type: none;
}

/* 텍스트 이펙트 */
.visu-top {
  animation: top 1s ease-out 0s both;
}

.visu-top2 {
  animation: top2 1s ease-out 0s both;
}

.visu-top3 {
  animation: top3 1s ease-out 0s both;
}

@keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}
@keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
/* 끝 */
/* 슬라이드 */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rightin {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rightout {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(100%);
  }
}
@keyframes leftscale {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes leftout {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-300px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes topdown {
  0% {
    opacity: 0;
    transform: translateY(-350%);
  }
  40% {
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

ul {
  padding-left: 0;
}

* {
  box-sizing: border-box;
}

/*타이틀*/
.top_title_box {
  width: 100%;
  background-color: #e12c3a;
}
.top_title_box .title_wrap .tex_box {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top_title_box .title_wrap .tex_box .h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  margin-bottom: 15px;
}
.top_title_box .title_wrap .tex_box .h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  text-align: center;
}
.top_title_box .title_wrap .tex_box .h4_700 {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  text-align: center;
}
.top_title_box .title_wrap .tex_box .link_bt_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.top_title_box .title_wrap .tex_box .link_bt_box .link_bt {
  width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif;
  margin: 15px 5px 0;
  color: #323333;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.top_title_box .title_wrap .tex_box .link_bt_box .link_bt.active {
  color: #ffffff;
  background-color: #8f0000;
  border: 1px solid #ffffff;
}

@media screen and (max-width: 1200px) {
  .top_title_box .title_wrap .tex_box {
    padding: 50px 0;
  }
  .top_title_box .title_wrap .tex_box .h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 15px;
  }
  .top_title_box .title_wrap .tex_box .h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .h4_700 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .link_bt_box .link_bt {
    width: 300px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    margin: 15px 5px 0;
    color: #323333;
    background-color: #ffffff;
    border: 1px solid #ffffff;
  }
  .top_title_box .title_wrap .tex_box .link_bt_box .link_bt.active {
    color: #ffffff;
    background-color: #8f0000;
    border: 1px solid #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .top_title_box .title_wrap .tex_box {
    padding: 50px 0;
  }
  .top_title_box .title_wrap .tex_box .h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 15px;
  }
  .top_title_box .title_wrap .tex_box .h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .h4_700 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .link_bt_box .link_bt {
    width: auto;
    padding: 0 50px;
    height: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    margin: 15px 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .top_title_box .title_wrap .tex_box {
    padding: 50px 0;
  }
  .top_title_box .title_wrap .tex_box .h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 33px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 15px;
  }
  .top_title_box .title_wrap .tex_box .h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .h4_700 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .link_bt_box .link_bt {
    width: auto;
    padding: 0 50px;
    height: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    margin: 15px 5px 0;
  }
}
@media screen and (max-width: 576px) {
  .top_title_box .title_wrap .tex_box {
    padding: 40px 0;
  }
  .top_title_box .title_wrap .tex_box .h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 15px;
  }
  .top_title_box .title_wrap .tex_box .h4 {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .h4_700 {
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .top_title_box .title_wrap .tex_box .link_bt_box .link_bt {
    width: auto;
    padding: 0 50px;
    height: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    margin: 15px 5px 0;
  }
}
/*콘텐츠*/
.cont_sec {
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}
.cont_sec .cont_wrap {
  display: flex;
  flex-direction: column;
}
.cont_sec .cont_wrap .tex_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 15px;
}
.cont_sec .cont_wrap .tex_box .p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  text-align: center;
}
.cont_sec .cont_wrap .tex_box .p.one {
  margin-bottom: 20px;
}
.cont_sec .cont_wrap .tex_box .p.one2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 42px;
  font-family: "Noto Sans KR", sans-serif;
  margin-bottom: 60px;
}
.cont_sec .cont_wrap .tex_box .p_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  text-align: center;
  margin-bottom: 20px;
}
.cont_sec .cont_wrap .tex_box .p_b {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  text-align: center;
}
.cont_sec .cont_wrap .tex_box .p_b.one {
  margin-bottom: 20px;
}
.cont_sec .cont_wrap .tex_box .p_b.two {
  margin-bottom: 70px;
}
.cont_sec .cont_wrap .tex_box .h4 {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.cont_sec .cont_wrap .tex_box .p_box {
  width: 100%;
  max-width: 1000px;
  height: auto;
  padding: 50px;
  border: 1px solid #e60718;
}
.cont_sec .cont_wrap .tex_box .p_box .p_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  text-align: center;
  margin-bottom: 10px;
}
.cont_sec .cont_wrap .tex_box .p_box .p_sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif;
  color: #e60718;
  text-align: center;
  margin-bottom: 40px;
}
.cont_sec .cont_wrap .tex_box .p_box .p {
  font-size: 18px;
  font-weight: 300;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  text-align: center;
}
.cont_sec .cont_wrap .tex_box .p_box .p.one {
  margin-bottom: 20px;
}
.cont_sec .cont_wrap .tex_box .mg_30 {
  width: 100%;
  margin-bottom: 30px;
}
.cont_sec .cont_wrap .tex_box .p_box2 {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  height: auto;
  border: 1px solid #e60718;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.cont_sec .cont_wrap .tex_box .p_box2 .p_box_top {
  width: 100%;
  padding: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  text-align: center;
  background-color: #e60718;
}
.cont_sec .cont_wrap .tex_box .p_box2 .p_box_tex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.cont_sec .cont_wrap .tex_box .p_box2.two {
  margin-top: 50px;
}
.cont_sec .cont_wrap .tex_box .info_tex {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.cont_sec .cont_wrap .tex_box .info_tex .tex {
  font-size: 24px;
  font-weight: 500;
  line-height: 42px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.cont_sec .cont_wrap .tex_box iframe {
  width: 1500px;
  height: 1000px;
}
.cont_sec .cont_wrap .tex_box .map_a {
  width: 200px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3e609c;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  margin-top: 30px;
}
.cont_sec .cont_wrap .img_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.cont_sec .cont_wrap .img_box img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 992px) {
  .cont_sec {
    margin-bottom: 30px;
  }
  .cont_sec .cont_wrap .tex_box {
    padding: 50px 15px;
  }
  .cont_sec .cont_wrap .tex_box .p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p.one2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 42px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 60px;
  }
  .cont_sec .cont_wrap .tex_box .p br {
    display: none;
  }
  .cont_sec .cont_wrap .tex_box .p_title {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_b {
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_b.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_b.two {
    margin-bottom: 50px;
  }
  .cont_sec .cont_wrap .tex_box .h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box {
    max-width: 1000px;
    padding: 50px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p_title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 10px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p_sub {
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p {
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p br {
    display: none;
  }
  .cont_sec .cont_wrap .tex_box .mg_30 {
    margin-bottom: 30px;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 {
    max-width: 800px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 .p_box_top {
    padding: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 .p_box_tex {
    padding: 50px 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 42px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box2.two {
    margin-top: 50px;
  }
  .cont_sec .cont_wrap .tex_box .info_tex {
    margin-top: 50px;
  }
  .cont_sec .cont_wrap .tex_box .info_tex .tex {
    font-size: 24px;
    font-weight: 500;
    line-height: 42px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box iframe {
    width: 525px;
    height: 350px;
  }
  .cont_sec .cont_wrap .tex_box .map_a {
    width: 200px;
    height: 45px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
    margin-top: 30px;
  }
  .cont_sec .cont_wrap .img_box img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .cont_sec {
    margin-bottom: 30px;
  }
  .cont_sec .cont_wrap .tex_box {
    padding: 30px 15px 20px;
  }
  .cont_sec .cont_wrap .tex_box .p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p.one2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 40px;
  }
  .cont_sec .cont_wrap .tex_box .p br {
    display: none;
  }
  .cont_sec .cont_wrap .tex_box .p_title {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_b {
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_b.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_b.two {
    margin-bottom: 50px;
  }
  .cont_sec .cont_wrap .tex_box .h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box {
    max-width: 1000px;
    padding: 50px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p_title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 10px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p_sub {
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p {
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p br {
    display: none;
  }
  .cont_sec .cont_wrap .tex_box .mg_30 {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 {
    width: 100%;
    max-width: 500px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 .p_box_top {
    padding: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 .p_box_tex {
    padding: 30px 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }
  .cont_sec .cont_wrap .tex_box .p_box2.two {
    margin-top: 50px;
  }
  .cont_sec .cont_wrap .tex_box .info_tex {
    margin-top: 50px;
  }
  .cont_sec .cont_wrap .tex_box .info_tex .tex {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box iframe {
    width: 525px;
    height: 350px;
  }
  .cont_sec .cont_wrap .tex_box .map_a {
    width: 200px;
    height: 45px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
    margin-top: 30px;
  }
  .cont_sec .cont_wrap .img_box img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .cont_sec {
    margin-bottom: 30px;
  }
  .cont_sec .cont_wrap .tex_box {
    padding: 30px 15px 20px;
  }
  .cont_sec .cont_wrap .tex_box .p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p.one2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 30px;
  }
  .cont_sec .cont_wrap .tex_box .p br {
    display: none;
  }
  .cont_sec .cont_wrap .tex_box .p_title {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_b {
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_b.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_b.two {
    margin-bottom: 50px;
  }
  .cont_sec .cont_wrap .tex_box .h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box {
    max-width: 1000px;
    padding: 50px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p_title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 10px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p_sub {
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p {
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p.one {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box .p br {
    display: none;
  }
  .cont_sec .cont_wrap .tex_box .mg_30 {
    margin-bottom: 20px;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 {
    width: 100%;
    max-width: 500px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 .p_box_top {
    padding: 15px;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box .p_box2 .p_box_tex {
    padding: 30px 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }
  .cont_sec .cont_wrap .tex_box .p_box2.two {
    margin-top: 40px;
  }
  .cont_sec .cont_wrap .tex_box .info_tex {
    margin-top: 50px;
  }
  .cont_sec .cont_wrap .tex_box .info_tex .tex {
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .cont_sec .cont_wrap .tex_box iframe {
    width: 525px;
    height: 350px;
  }
  .cont_sec .cont_wrap .tex_box .map_a {
    width: 200px;
    height: 45px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
    margin-top: 30px;
  }
  .cont_sec .cont_wrap .img_box img {
    max-width: 100%;
    height: auto;
  }
}

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