@charset "UTF-8";
/**** header ****/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header.scrDown {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fff;
  -webkit-box-shadow: 1px 1px 5px #000;
          box-shadow: 1px 1px 5px #000;
}
header.scrDown .menu-btn div {
  background: #000;
}
header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 100px;
  min-width: 1200px;
}
header .menu-btn {
  position: relative;
  width: 35px;
  height: 28px;
  cursor: pointer;
  z-index: 10000;
}
header .menu-btn div {
  position: absolute;
  background: #fff;
  width: 100%;
  height: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .menu-btn div:nth-child(2) {
  top: 12px;
}
header .menu-btn div:nth-child(3) {
  top: 24px;
}
header .menu-btn.active div {
  background: #000;
}
header .menu-btn.active div:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .menu-btn.active div:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .menu-btn.active div:nth-child(3) {
  opacity: 0;
}
header #siteMap {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #bb9765;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header #siteMap.active {
  display: block;
}
header #siteMap nav {
  width: 100%;
  height: 100%;
}
header #siteMap nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
header #siteMap nav > ul > li {
  width: 15%;
  height: 100%;
  min-width: 150px;
  border-right: 1px solid #eaeaea;
  overflow: hidden;
}
header #siteMap nav > ul > li:last-child {
  border: 0;
}
header #siteMap nav > ul > li:hover h2 {
  color: #bb9765;
}
header #siteMap nav > ul > li .nav-cont-box {
  background: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(-300px, 0, 0px);
          transform: translate3d(-300px, 0, 0px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
header #siteMap nav > ul > li .nav-cont-inner {
  position: absolute;
  top: 35%;
  width: 100%;
}
header #siteMap nav > ul > li .nav-cont-inner h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-left: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header #siteMap nav > ul > li .nav-cont-inner .sub-nav a {
  font-size: 16px;
  font-weight: 300;
  display: block;
  padding: 15px 0 15px 25px;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 2;
}
header #siteMap nav > ul > li .nav-cont-inner .sub-nav a:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #bb9765;
  z-index: -1;
}
header #siteMap nav > ul > li .nav-cont-inner .sub-nav a .open-mark {
  font-size: 13px;
  font-weight: 500;
  background: #bb9765;
  border-radius: 3px;
  line-height: 1.2;
  padding: 4px 5px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  letter-spacing: 0;
  -webkit-animation: open1 infinite alternate 0.7s;
          animation: open1 infinite alternate 0.7s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header #siteMap nav > ul > li .nav-cont-inner .sub-nav a:hover {
  color: #fff;
  font-weight: 600;
}
header #siteMap nav > ul > li .nav-cont-inner .sub-nav a:hover:before {
  width: 100%;
}
header #siteMap nav > ul > li .nav-cont-inner .sub-nav a:hover .open-mark {
  background: #000;
  -webkit-animation-name: open2;
          animation-name: open2;
}
header.active #siteMap {
  z-index: 9999;
  opacity: 1;
}
header.active #siteMap .nav-cont-box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*진행중 표시 애니메이션*/
@-webkit-keyframes open1 {
  0% {
    color: #fff;
  }
  100% {
    color: #000;
  }
}
@keyframes open1 {
  0% {
    color: #fff;
  }
  100% {
    color: #000;
  }
}
@-webkit-keyframes open2 {
  0% {
    color: #fff;
  }
  100% {
    color: #bb9765;
  }
}
@keyframes open2 {
  0% {
    color: #fff;
  }
  100% {
    color: #bb9765;
  }
}
/**** ...header ****/
/* lazy load 처리 관련 css */
div.lazy,
span.lazy,
li.lazy {
  background-image: none !important;
}

/* ...lazy load 처리 관련 css */
section {
  position: relative;
}
section .section-inner {
  width: 1200px;
  margin: 0 auto;
}
section .sub-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 615px;
  background: #f8f4f1;
  z-index: -1;
}
section .sub-bg.left-bg {
  left: 0;
}
section .sub-bg.right-bg {
  right: 0;
}

/**** fix btn ****/
.fix-btn-wrap {
  position: fixed;
  bottom: 10px;
  right: 60px;
  opacity: 0;
  z-index: 88;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fix-btn-wrap.on {
  opacity: 1;
}
.fix-btn-wrap #topBtn,
.fix-btn-wrap #linkBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
}
.fix-btn-wrap #topBtn {
  background: #bb9765;
}
.fix-btn-wrap #linkBtn {
  font-size: 18px;
  font-weight: 600;
  background: #ff432b;
  color: #fff;
  line-height: 1.33;
}

/**** ....fix btn ****/
/**** BG 섹션 ****/
.section1-bg {
  margin-bottom: 120px;
}
.section1-bg .sec1-bg {
  min-width: 1200px;
  height: 500px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.section1-bg .sec1-bg.sub1-bg {
  background-image: url(/img/sub1/about-bg.jpg);
}
.section1-bg .sec1-bg.sub2-bg {
  background-image: url(/img/sub2/sub2-bg.jpg);
}
.section1-bg .sec1-bg.sub3-bg {
  background-image: url(/img/sub3/sub3-bg.jpg);
}
.section1-bg .sec1-bg.sub4-bg {
  background-image: url(/img/sub4/sub4-bg.jpg);
}
.section1-bg .sec1-bg.sub5-bg {
  background-image: url(/img/sub5/sub5-bg.jpg);
}
.section1-bg .sec1-bg.sub6-bg {
  background-image: url(/img/sub6/sub6-bg.jpg);
}
.section1-bg .sec1-bg.sub7-bg {
  background-image: url(/img/sub7/sub7-bg.jpg);
}
.section1-bg .sec1-bg:after, .section1-bg .sec1-bg:before {
  position: absolute;
  left: 50%;
  content: " ";
  display: block;
  width: 1px;
  background: #fff;
}
.section1-bg .sec1-bg:before {
  top: 0;
  height: 190px;
}
.section1-bg .sec1-bg:after {
  bottom: 0;
  height: 135px;
}
.section1-bg .sec1-cont {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.section1-bg .sec1-cont h2 {
  font-size: 90px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.section1-bg .sec1-cont p {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.section1-bg .sec1-sub-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 80px;
  border-bottom: 1px solid #afafaf;
  min-width: 1200px;
}
.section1-bg .sec1-sub-nav li a {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  display: block;
  padding: 30px 0;
  color: #a4a4a4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section1-bg .sec1-sub-nav li a:hover {
  color: #000;
}
.section1-bg .sec1-sub-nav li a:after {
  content: " ";
  display: block;
  height: 2px;
  width: 0;
  background: #000;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section1-bg .sec1-sub-nav li a:hover:after {
  width: 100%;
}
.section1-bg .sec1-sub-nav li a.choice {
  color: #000;
}
.section1-bg .sec1-sub-nav li a.choice:after {
  width: 100%;
}

/**** ...BG 섹션 ****/
/* 한국미인협회 메인 */
#page-main section {
  position: relative;
}
#page-main section .sub-sec-tit {
  position: absolute;
  left: -95px;
  font-size: 92px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  opacity: 0.1;
  line-height: 0.88;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  z-index: 1;
}
#page-main section .cont-box {
  min-width: 1200px;
  max-width: 2000px;
}
#page-main section .cont-left > h3 {
  font-size: 40px;
  font-weight: 600;
}
#page-main section .cont-left > p {
  font-size: 20px;
  font-weight: 300;
}
#page-main section.on .center-tit,
#page-main section.on .bottom-cont {
  opacity: 1 !important;
}
#page-main .section1 {
  height: 100vh;
}
#page-main .section1 > article {
  max-width: 2000px;
  min-width: 1200px;
}
#page-main .section1 .sec1-bg {
  height: 100%;
}
#page-main .section1 .sec1-bg img {
  width: 100%;
  height: 100%;
}
#page-main .section1 .sec1-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#page-main .section1 .sec1-cont .center-tit {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
#page-main .section1 .sec1-cont .center-tit h2 {
  font-size: 90px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  color: #fff;
  line-height: 1.11;
  margin-bottom: 25px;
}
#page-main .section1 .sec1-cont .center-tit h2 span {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#page-main .section1 .sec1-cont .center-tit h2 span.g {
  color: #bb9765;
}
#page-main .section1 .sec1-cont .center-tit .home-title {
  opacity: 1;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(11) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(12) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(13) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(14) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(15) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(16) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(17) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(18) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(19) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(20) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(21) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(22) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
#page-main .section1 .sec1-cont .center-tit .home-title:nth-child(23) {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
#page-main .section1 .sec1-cont .center-tit p {
  font-size: 36px;
  font-weight: 300;
  color: #fff;
}
#page-main .section1 .sec1-cont .center-tit a {
  font-size: 20px;
  display: block;
  border: 1px solid #bb9765;
  color: #bb9765;
  width: 150px;
  height: 55px;
  line-height: 55px;
  margin: 0 auto;
  margin-top: 70px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#page-main .section1 .sec1-cont .center-tit a:hover {
  color: #000;
  background: #bb9765;
}
#page-main .section1 .sec1-cont .bottom-cont {
  position: absolute;
  left: 50%;
  bottom: 50px;
  font-size: 17px;
  font-family: "Frank Ruhl Libre", serif;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  color: #fff;
  letter-spacing: 0;
}
#page-main .section1 .sec1-cont .bottom-cont .scrolldown {
  position: relative;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 30px;
  overflow: hidden;
}
#page-main .section1 .sec1-cont .bottom-cont .scrolldown:after {
  content: " ";
  width: 100%;
  height: 10px;
  background: #ff432b;
  position: absolute;
  top: 0;
  -webkit-animation: scrollDown 1.5s infinite;
          animation: scrollDown 1.5s infinite;
}
#page-main .section2 {
  margin-bottom: 120px;
}
#page-main .section2 .sub-sec-tit {
  top: 340px;
  left: 0 !important;
}
#page-main .section2 .cont-box:after {
  content: "";
  display: block;
  clear: both;
}
#page-main .section2 .cont-box .cont-left {
  float: left;
  padding-top: 220px;
  padding-right: 200px;
}
#page-main .section2 .cont-box .cont-left h3 {
  line-height: 1.5;
}
#page-main .section2 .cont-box .cont-right .swiper-slide {
  max-width: 235px;
  font-size: 0;
  padding-top: 120px;
}
#page-main .section2 .cont-box .cont-right .swiper-slide:nth-child(2n) {
  padding-top: 220px;
}
#page-main .section2 .cont-box .cont-right .swiper-slide:after {
  position: absolute;
  top: 0;
  content: " ";
  width: 1px;
  height: 100%;
  background: #d2d2d2;
  z-index: -1;
}
#page-main .section2 .cont-box .cont-right .swiper-slide.swiper-slide-active .pageant-content {
  border-left: 1px solid #ff432b;
}
#page-main .section2 .cont-box .cont-right .pageant-content {
  padding-top: 55px;
  padding-left: 20px;
  position: relative;
}
#page-main .section2 .cont-box .cont-right .pageant-content > span {
  position: absolute;
  top: 22px;
  left: 0;
  font-size: 13px;
  font-weight: 300;
  display: inline-block;
  letter-spacing: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#page-main .section2 .cont-box .cont-right .pageant-content .pageant-tit {
  font-size: 24px;
  font-weight: 600;
  margin: 13px 0;
  line-height: 1.35;
  word-break: keep-all;
}
#page-main .section2 .cont-box .cont-right .pageant-content > .poster {
  max-width: 215px;
}
#page-main .section2 .cont-box .cont-right .pageant-content > .poster img {
  width: 100%;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide {
  margin-top: 30px;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide:after {
  content: " ";
  display: block;
  clear: both;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide-txt {
  float: left;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide-txt p {
  font-size: 16px;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide-txt p:first-child {
  font-weight: 300;
  margin-bottom: 5px;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide-txt p:last-child {
  font-weight: 600;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide-link {
  float: right;
  margin-top: 18px;
}
#page-main .section2 .cont-box .cont-right .pageant-content .guide-link a:first-child {
  margin-right: 10px;
}
#page-main .section3 {
  padding-top: 60px;
  margin-bottom: 230px;
}
#page-main .section3 .sub-sec-tit {
  color: #fff;
  top: 355px;
}
#page-main .section3 .cont-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #121212;
}
#page-main .section3 .cont-inner {
  position: relative;
  padding-top: 140px;
  padding-bottom: 120px;
}
#page-main .section3 .cont-tit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: -60px;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 410px;
  height: 360px;
  padding-left: 57px;
  z-index: 0;
}
#page-main .section3 .cont-tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 35px;
}
#page-main .section3 .cont-tit-box p {
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  line-height: 1.22;
}
#page-main .section3 .cont-tit-box .line {
  position: absolute;
  display: block;
  background: #ff432b;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
#page-main .section3 .cont-tit-box .line.horizon {
  width: 100%;
  height: 3px;
}
#page-main .section3 .cont-tit-box .line.vertical {
  width: 3px;
  height: 100%;
}
#page-main .section3 .cont-tit-box .line.top-line {
  top: 0;
  left: 0;
}
#page-main .section3 .cont-tit-box .line.bottom-line {
  bottom: 0;
  right: 0;
}
#page-main .section3 .cont-tit-box .line.left-line {
  bottom: 0;
  left: 0;
}
#page-main .section3 .cont-tit-box .line.right-line {
  top: 0;
  right: 0;
}
#page-main .section3 .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 200px;
  z-index: 1;
}
#page-main .section3 .cont .tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 60px;
  margin-bottom: 30px;
}
#page-main .section3 .cont .tab-wrap .tab-list {
  margin-bottom: 30px;
}
#page-main .section3 .cont .tab-wrap .tab-list .tab {
  font-size: 16px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90px;
  height: 42px;
  letter-spacing: 0;
  cursor: pointer;
  text-align: center;
  padding: 12px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  border: 1px solid #fff;
  margin-bottom: 10px;
}
#page-main .section3 .cont .tab-wrap .tab-list .tab:hover {
  color: #bb9765;
  border: 1px solid #bb9765;
}
#page-main .section3 .cont .tab-wrap .tab-list .tab:last-child {
  margin-bottom: 0;
}
#page-main .section3 .cont .tab-wrap .tab-list .tab.active {
  color: #bb9765;
  border: 1px solid #bb9765;
}
#page-main .section3 .cont .tab-wrap .link-tab {
  font-size: 16px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  display: block;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-main .section3 .cont .tab-wrap .link-tab:hover {
  color: #bb9765;
  border-color: #bb9765;
}
#page-main .section3 .cont .tab-wrap .link-tab:after {
  position: absolute;
  bottom: -2.8px;
  right: 3px;
  content: " ";
  display: block;
  width: 1px;
  height: 12px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-main .section3 .cont .tab-wrap .link-tab:hover:after {
  background: #bb9765;
}
#page-main .section3 .cont .news-wrap {
  max-width: 1160px;
}
#page-main .section3 .cont .news-wrap .news-cont.disabled {
  -webkit-transform: translate3d(0px, 0, 0) !important;
          transform: translate3d(0px, 0, 0) !important;
}
#page-main .section3 .cont .news-wrap .news-cont .news {
  width: 275px;
}
#page-main .section3 .cont .news-wrap .news-cont .news-thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 250px;
}
#page-main .section3 .cont .news-wrap .news-cont .news-info {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border: 1px solid #eaeaea;
  min-height: 248px;
}
#page-main .section3 .cont .news-wrap .news-cont .news-info .news-title {
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
#page-main .section3 .cont .news-wrap .news-cont .news-info .news-article {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 15px;
  max-height: 100px;
}
#page-main .section3 .cont .news-wrap .news-cont .news-info .news-kinds {
  font-size: 13px;
  font-weight: 300;
  margin-right: 10px;
}
#page-main .section3 .cont .news-wrap .news-cont .news-info .news-date {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.5;
}
#page-main .section4 {
  margin-bottom: 200px;
}
#page-main .section4 .sub-sec-tit {
  top: 140px;
}
#page-main .section4 .cont-box {
  position: relative;
}
#page-main .section4 .cont-box .cont-left {
  float: left;
  margin-right: 100px;
  position: relative;
}
#page-main .section4 .cont-box .cont-left:after {
  content: " ";
  display: block;
  clear: both;
}
#page-main .section4 .cont-box .cont-left h3 {
  margin-bottom: 40px;
}
#page-main .section4 .cont-box .cont-right .gallery-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 790px;
}
#page-main .section4 .cont-box .cont-right .gallery-container .cont-sqaure-box {
  position: absolute;
  top: -50px;
  right: 0;
  border: 1px solid #bb9765;
  width: 450px;
  height: 480px;
}
#page-main .section4 .cont-box .cont-right .gallery-container .cont-sqaure-box p {
  position: absolute;
  top: 120px;
  right: -50px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#page-main .section4 .cont-box .cont-right .gallery-container .cont-sqaure-box p:before {
  position: absolute;
  top: 50%;
  left: -98PX;
  content: " ";
  display: block;
  width: 88px;
  height: 1px;
  background: #000;
}
#page-main .section4 .cont-box .cont-right .gallery-container .swiper-thumbs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 150px;
  height: 500px;
  padding-left: 20px;
  margin-right: 50px;
}
#page-main .section4 .cont-box .cont-right .gallery-container .swiper-thumbs .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  cursor: pointer;
  opacity: 0.7;
}
#page-main .section4 .cont-box .cont-right .gallery-container .swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
#page-main .section4 .cont-box .cont-right .gallery-container .swiper-thumbs .swiper-scrollbar {
  left: 0;
  background: #d2d2d2;
}
#page-main .section4 .cont-box .cont-right .gallery-container .swiper-thumbs .swiper-scrollbar .swiper-scrollbar-drag {
  background: #ff432b;
  border-radius: 0;
}
#page-main .section4 .cont-box .cont-right .gallery-container .swiper-main {
  width: 500px;
  height: 500px;
}
#page-main .section4 .cont-box .cont-right .gallery-container .swiper-main .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#page-main .section4 .cont-box .swiper-btn-wrap {
  position: absolute;
  top: 90%;
  left: -23%;
}
#page-main .section4 .cont-box .swiper-btn-wrap .swiper-button-prev, #page-main .section4 .cont-box .swiper-btn-wrap .swiper-button-next {
  font-size: 16px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90px;
  height: 42px;
  letter-spacing: 0;
  cursor: pointer;
  text-align: center;
  padding: 12px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #000;
  top: 0;
}
#page-main .section4 .cont-box .swiper-btn-wrap .swiper-button-prev:hover, #page-main .section4 .cont-box .swiper-btn-wrap .swiper-button-next:hover {
  color: #bb9765;
  border: 1px solid #bb9765;
}
#page-main .section4 .cont-box .swiper-btn-wrap .swiper-button-prev {
  top: -100px;
}
#page-main .section4 .cont-box .swiper-btn-wrap .swiper-button-next {
  top: -50px;
}
#page-main .section4 .cont-box .swiper-btn-wrap .link-tab {
  font-size: 16px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  display: block;
  text-align: center;
  color: #000;
  letter-spacing: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 91px;
}
#page-main .section4 .cont-box .swiper-btn-wrap .link-tab:hover {
  color: #bb9765;
  border-color: #bb9765;
}
#page-main .section4 .cont-box .swiper-btn-wrap .link-tab:after {
  position: absolute;
  bottom: -2.8px;
  right: 3px;
  content: " ";
  display: block;
  width: 1px;
  height: 12px;
  background: #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-main .section4 .cont-box .swiper-btn-wrap .link-tab:hover:after {
  background: #bb9765;
}
#page-main .section5 {
  padding-bottom: 120px;
}
#page-main .section5 .bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 2000px;
  background: #e6e6e6;
  height: 340px;
  z-index: -1;
}
#page-main .section5 .cont-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#page-main .section5 .cont-box .cont-left {
  position: relative;
  margin-right: 50px;
}
#page-main .section5 .cont-box .cont-left .cont-sqaure-box {
  position: absolute;
  top: -50px;
  border: 1px solid #bb9765;
  width: 450px;
  height: 345px;
}
#page-main .section5 .cont-box .cont-left .cont-sqaure-box p {
  position: absolute;
  top: 70px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#page-main .section5 .cont-box .cont-left .cont-sqaure-box p:before {
  position: absolute;
  top: 50%;
  left: 70px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: " ";
  display: block;
  width: 88px;
  height: 1px;
  background: #000;
}
#page-main .section5 .cont-box .cont-left .cont-video {
  width: 510px;
  height: 366px;
  margin-left: 70px;
}
#page-main .section5 .cont-box .cont-left .cont-video-thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  position: relative;
}
#page-main .section5 .cont-box .cont-left .cont-video-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#page-main .section5 .cont-box .cont-left .cont-video-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: " ";
  width: 65px;
  height: 65px;
  border: 1px solid #fff;
  background: url(/img/icon/playbtn.png) no-repeat center center;
  background-size: 13px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#page-main .section5 .cont-box .cont-left .cont-video-btn:hover:after {
  border-radius: 50%;
  border-color: #bb9765;
  background-image: url(/img/icon/playbtn-active.png);
}
#page-main .section5 .cont-box .cont-right-top {
  position: relative;
  max-width: 550px;
  margin-bottom: 55px;
}
#page-main .section5 .cont-box .cont-right-top .main-video-tit {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
#page-main .section5 .cont-box .cont-right-top p.main-video-sub-tit {
  font-size: 24px;
  font-weight: 300;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.33;
}
#page-main .section5 .cont-box .cont-right-top .link-tab {
  font-size: 16px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  display: block;
  text-align: left;
  color: #000;
  letter-spacing: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 85px;
}
#page-main .section5 .cont-box .cont-right-top .link-tab:hover {
  color: #bb9765;
  border-color: #bb9765;
}
#page-main .section5 .cont-box .cont-right-top .link-tab:after {
  position: absolute;
  bottom: -2.8px;
  right: 3px;
  content: " ";
  display: block;
  width: 1px;
  height: 12px;
  background: #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-main .section5 .cont-box .cont-right-top .link-tab:hover:after {
  background: #bb9765;
}
#page-main .section5 .cont-box .cont-right .sub-video-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video {
  margin-right: 20px;
  width: 240px;
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video:last-child {
  margin-right: 0;
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video-thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 170px;
  position: relative;
  z-index: 1;
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: " ";
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  background: url(/img/icon/playbtn.png) no-repeat center center;
  background-size: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video-btn:hover:after {
  border-radius: 50%;
  border-color: #bb9765;
  background-image: url(/img/icon/playbtn-active.png);
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video-description {
  font-size: 16px;
  position: relative;
  text-align: center;
  padding-top: 23px;
  line-height: 1.37;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 45px;
}
#page-main .section5 .cont-box .cont-right .sub-video-list .sub-video-description:before {
  content: " ";
  display: block;
  width: 1px;
  height: 30px;
  background: url(/img/icon/video-line.jpg) no-repeat;
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 2;
}
#page-main .section6 .sub-sec-tit {
  color: #fff;
  top: 140px;
  left: 0 !important;
}
#page-main .section6 .cont-box {
  background: url(/img/main/section6-bg.jpg) no-repeat;
  background-size: cover;
}
#page-main .section6 .cont-box .cont-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  padding: 80px 0;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 410px;
  height: 300px;
  padding-top: 55px;
  padding-left: 55px;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box .line {
  position: absolute;
  display: block;
  background: #bb9765;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box .line.horizon {
  width: 100%;
  height: 3px;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box .line.vertical {
  width: 3px;
  height: 100%;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box .line.top-line {
  top: 0;
  left: 0;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box .line.bottom-line {
  bottom: 0;
  right: 0;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box .line.left-line {
  bottom: 0;
  left: 0;
}
#page-main .section6 .cont-box .cont-inner .cont-tit-box .line.right-line {
  top: 0;
  right: 0;
}
#page-main .section6 .cont-box .cont-inner .cont {
  max-width: 1095px;
}
#page-main .section6 .cont-box .cont-inner .cont .swiper-outer {
  margin-top: 145px;
  margin-left: 110px;
  padding-left: 105px;
  position: relative;
}
#page-main .section6 .cont-box .cont-inner .cont .swiper-slide {
  background: #fff;
}
#page-main .section6 .cont-box .cont-inner .cont .swiper-slide a {
  display: block;
  width: 100%;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#page-main .section6 .cont-box .cont-inner .cont .swiper-button-prev, #page-main .section6 .cont-box .cont-inner .cont .swiper-button-next {
  font-size: 16px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90px;
  height: 42px;
  letter-spacing: 0;
  cursor: pointer;
  text-align: center;
  padding: 12px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  border: 1px solid #fff;
  left: 0;
}
#page-main .section6 .cont-box .cont-inner .cont .swiper-button-prev:hover, #page-main .section6 .cont-box .cont-inner .cont .swiper-button-next:hover {
  color: #bb9765;
  border: 1px solid #bb9765;
}
#page-main .section6 .cont-box .cont-inner .cont .swiper-button-prev {
  top: 22px;
}
#page-main .section6 .cont-box .cont-inner .cont .swiper-button-next {
  top: 75px;
  margin-bottom: 0;
}

/* ...한국미인협회 메인 */
/*애니메이션 keyframes*/
@-webkit-keyframes scrollDown {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes scrollDown {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
/* 한국 미인협회 소개 */
#page-sub1-1 .section2 {
  margin-bottom: 120px;
}
#page-sub1-1 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub1-1 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub1-1 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub1-1 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub1-1 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub1-1 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub1-1 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub1-1 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub1-1 .section2 .cont-wrap {
  height: 510px;
  background: url(/img/sub1/center.png) no-repeat center center;
}
#page-sub1-1 .section2 .cont-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#page-sub1-1 .section2 .cont-flex:last-child .cont-box {
  padding: 78px 0;
}
#page-sub1-1 .section2 .cont-box {
  text-align: center;
  width: 100%;
  padding: 63px 0;
  position: relative;
  max-width: 28%;
}
#page-sub1-1 .section2 .cont-box.left:after, #page-sub1-1 .section2 .cont-box.right:after {
  content: " ";
  display: block;
  width: 430px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
}
#page-sub1-1 .section2 .cont-box.right:after {
  left: -94px;
}
#page-sub1-1 .section2 .cont-tit {
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  margin-bottom: 15px;
}
#page-sub1-1 .section2 .cont-subject {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -0.05em;
}
#page-sub1-1 .section3 {
  margin-bottom: 120px;
}
#page-sub1-1 .section3 h3 {
  font-size: 42px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 0;
}
#page-sub1-1 .section3 .cont-1 {
  margin-bottom: 300px;
}
#page-sub1-1 .section3 .cont-1-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1130px;
  margin: 0 auto;
}
#page-sub1-1 .section3 .cont-1-list li {
  width: 38%;
  text-align: center;
}
#page-sub1-1 .section3 .cont-1-list li img {
  margin-bottom: 15px;
}
#page-sub1-1 .section3 .cont-subject {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
#page-sub1-1 .section3 .cont-2 {
  position: relative;
  padding: 135px 120px 100px;
  border: 3px solid #ff432b;
}
#page-sub1-1 .section3 .cont-txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#page-sub1-1 .section3 .cont-txt-box .left {
  padding-right: 60px;
  border-right: 1px solid #000;
}
#page-sub1-1 .section3 .cont-txt-box .left h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 7px;
}
#page-sub1-1 .section3 .cont-txt-box .left p {
  font-size: 16px;
  font-weight: 300;
}
#page-sub1-1 .section3 .cont-txt-box .right {
  padding-left: 60px;
}
#page-sub1-1 .section3 .cont-img-box {
  position: absolute;
  top: -200px;
}

/* ...한국 미인협회 소개 */
/* 회장 인사말 */
#page-sub1-2 .section1-bg {
  margin-bottom: 0;
}
#page-sub1-2 .section2 {
  padding-top: 120px;
  margin-bottom: 120px;
}
#page-sub1-2 .section2 .section-inner {
  position: relative;
}
#page-sub1-2 .section2 .section-inner:after {
  position: absolute;
  top: -14%;
  right: -33.5%;
  content: " ";
  display: block;
  background: url(/img/sub1/sub1-2-1.jpg) no-repeat;
  width: 871px;
  height: 968px;
}
#page-sub1-2 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub1-2 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub1-2 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub1-2 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub1-2 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub1-2 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub1-2 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub1-2 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub1-2 .section2 .cont {
  padding: 50px 0;
}
#page-sub1-2 .section2 .cont p.bold {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 45px;
}
#page-sub1-2 .section2 .cont p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
}
#page-sub1-2 .section3 {
  background: #f8f4f1;
  padding: 120px 0;
}
#page-sub1-2 .section3 .cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#page-sub1-2 .section3 .cont-list.left .cont-1 {
  left: 68px;
}
#page-sub1-2 .section3 .cont-list.right {
  padding-top: 175px;
}
#page-sub1-2 .section3 .cont-list.right .cont-2 {
  left: -68px;
}
#page-sub1-2 .section3 .cont-list li {
  position: relative;
}
#page-sub1-2 .section3 .cont-list li .cont-sub-tit {
  position: absolute;
  top: 131px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 435px;
  height: 100px;
  padding: 30px 40px;
  border: 1px solid #bb9765;
}
#page-sub1-2 .section3 .cont-list li .cont-sub-tit h4 {
  font-size: 18px;
  font-family: "Frank Ruhl Libre", serif;
  color: #bb9765;
  letter-spacing: 0;
}
#page-sub1-2 .section3 .cont-list li .cont-subject {
  position: relative;
  z-index: 1;
}
#page-sub1-2 .section3 .cont-list li .cont-subject h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
#page-sub1-2 .section3 .cont-list li .cont-subject h4:before {
  position: absolute;
  top: 50%;
  content: " ";
  display: block;
  height: 3px;
  background: #000;
}
#page-sub1-2 .section3 .cont-list li .cont-subject h4.subject-tit1:before {
  width: 317px;
}
#page-sub1-2 .section3 .cont-list li .cont-subject h4.subject-tit2:before {
  width: 352px;
}
#page-sub1-2 .section3 .cont-list li .cont-subject h4.subject-tit3:before {
  width: 333px;
}
#page-sub1-2 .section3 .cont-list li .cont-subject h4.subject-tit4:before {
  width: 245px;
}
#page-sub1-2 .section3 .cont-list li.cont-1 {
  margin-bottom: 145px;
}
#page-sub1-2 .section3 .cont-list li.cont-1 .cont-sub-tit {
  left: -235px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#page-sub1-2 .section3 .cont-list li.cont-1 .cont-subject {
  text-align: right;
}
#page-sub1-2 .section3 .cont-list li.cont-2 .cont-sub-tit {
  left: 282px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  text-align: right;
}
#page-sub1-2 .section3 .cont-list li.cont-2 .cont-subject h4:before {
  right: 0;
}

/* ...회장 인사말 */
/* 협회 조직도 */
#page-sub1-3 .section2 {
  margin-bottom: 90px;
}
#page-sub1-3 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub1-3 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub1-3 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub1-3 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub1-3 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub1-3 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub1-3 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub1-3 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub1-3 .section2 .img-box {
  text-align: center;
}
#page-sub1-3 .section2 .img-box img {
  width: 100%;
}
#page-sub1-3 .section3 {
  margin-bottom: 90px;
}
#page-sub1-3 .section3 .line {
  background: url(/img/sub1/line.jpg) no-repeat;
  width: 100%;
  height: 22px;
  margin-bottom: 100px;
}
#page-sub1-3 .section3 .cont-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-bottom: 50px;
}
#page-sub1-3 .section3 .cont-list li {
  margin-right: 40px;
  margin-bottom: 30px;
  width: 270px;
  border-bottom: 3px solid #bb9765;
}
#page-sub1-3 .section3 .cont-list li:nth-child(2n) {
  border-color: #dcbc7b;
}
#page-sub1-3 .section3 .cont-list li:nth-child(4n) {
  margin-right: 0;
}
#page-sub1-3 .section3 .cont-thumb {
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
#page-sub1-3 .section3 .cont-info {
  padding: 23px 0 15px;
  text-align: center;
}
#page-sub1-3 .section3 .cont-info .name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
#page-sub1-3 .section3 .cont-info .description {
  font-size: 16px;
  font-weight: 300;
  width: 80%;
  line-height: 1.4;
  word-break: keep-all;
  margin: 0 auto;
}
#page-sub1-3 .section3 .paging-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-sub1-3 .section3 .paging-num {
  margin: 0 30px;
}
#page-sub1-3 .section3 .paging-num a {
  font-size: 18px;
  margin-right: 20px;
}
#page-sub1-3 .section3 .paging-num a.active {
  color: #c29a5c;
}
#page-sub1-3 .section3 .paging-num a:last-child {
  margin-right: 0;
}

/* ...협회 조직도 */
/* 파트너사 */
#page-sub1-4 .section2 {
  margin-bottom: 90px;
}
#page-sub1-4 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub1-4 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub1-4 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub1-4 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub1-4 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub1-4 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub1-4 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub1-4 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub1-4 .section2 .partner-box {
  margin-bottom: 70px;
}
#page-sub1-4 .section2 .partner-sub-tit {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #afafaf;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 60px;
}
#page-sub1-4 .section2 .partner-sub-tit span {
  border-bottom: 2px solid #000;
  padding-bottom: 19px;
}
#page-sub1-4 .section2 .partner-list {
  display: grid;
  grid-template-areas: ". . . .";
  grid-auto-columns: 23.75%;
  grid-gap: 30px 20px;
}
#page-sub1-4 .section2 .partner-list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0;
  border: 1px solid #eaeaea;
  border-bottom: 2px solid #bb9765;
  overflow: hidden;
}
#page-sub1-4 .section2 .partner-logo {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 85%;
  height: 0;
  padding-bottom: 67.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
#page-sub1-4 .section2 .partner-info {
  text-align: center;
  margin-top: 10px;
}
#page-sub1-4 .section2 .partner-info p {
  font-size: 18px;
}
#page-sub1-4 .section2 .partner-info p:first-child {
  margin-bottom: 9px;
}

/* ...파트너사 */
/*  오시는 길 */
#page-sub1-5 .section2 {
  margin-bottom: 120px;
}
#page-sub1-5 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub1-5 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub1-5 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub1-5 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub1-5 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub1-5 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub1-5 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub1-5 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub1-5 .section2 .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
#page-sub1-5 .section2 .info-cont {
  width: 33%;
  text-align: center;
  border-right: 1px solid #ccc;
}
#page-sub1-5 .section2 .info-cont:last-child {
  border: 0;
}
#page-sub1-5 .section2 .info-cont .frank {
  font-size: 24px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin: 25px 0;
  letter-spacing: 0;
}
#page-sub1-5 .section2 .info-cont .info-subject {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}
#page-sub1-5 .section2 #map {
  width: 100%;
  height: 590px;
}
#page-sub1-5 .section2 .mapOverlay {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: #fff;
  border-radius: 7px;
  padding: 7px 20px;
  margin-bottom: 120px;
  border: 3px solid #bb9765;
}

/* ..오시는 길 */
/* 활동 갤러리 */
#page-sub2-1 .section2 {
  margin-bottom: 120px;
}
#page-sub2-1 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub2-1 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub2-1 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub2-1 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub2-1 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub2-1 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub2-1 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub2-1 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub2-1 .section2 .gallery-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
#page-sub2-1 .section2 .gallery-tab-list li {
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
#page-sub2-1 .section2 .gallery-tab {
  font-size: 16px;
  font-weight: 300;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #eaeaea;
  overflow: hidden;
}
#page-sub2-1 .section2 .gallery-tab.tab-active {
  background: #bb9765;
  color: #fff;
  border: 1px solid #bb9765;
}
#page-sub2-1 .section2 .cont-wrap .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}
#page-sub2-1 .section2 .cont-wrap .cont-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#page-sub2-1 .section2 .cont-wrap .cont-left .line {
  width: 200px;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 20px;
}
#page-sub2-1 .section2 .cont-wrap .cont-left .gallery-tit {
  font-size: 67px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  position: relative;
}
#page-sub2-1 .section2 .cont-wrap .cont-left .gallery-tit:before {
  position: absolute;
  top: -21px;
  left: 0;
  content: " ";
  background: #000;
  display: block;
  width: 62px;
  height: 1px;
}
#page-sub2-1 .section2 .cont-wrap .cont-left .gallery-tit span {
  font-size: 30px;
  font-weight: 200;
  font-family: "Noto Sans KR", sans-serif;
  display: block;
  line-height: 1.17;
}
#page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container {
  padding-bottom: 50px;
  max-width: 1535px;
}
#page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container .swiper-slide .gallery-thumb {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-bottom: 67.7777777778%;
}
#page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container .swiper-button-prev, #page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container .swiper-button-next {
  width: 70px;
  height: 70px;
  bottom: 50px;
}
#page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container .swiper-button-prev {
  background: url(/img/icon/prev-btn.jpg) no-repeat;
}
#page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container .swiper-button-next {
  background: url(/img/icon/next-btn.jpg) no-repeat;
  left: 58.5%;
}
#page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container .swiper-scrollbar {
  left: 0;
  bottom: 0;
}
#page-sub2-1 .section2 .cont-wrap .cont-right .swiper-container .swiper-scrollbar-drag {
  background: #ff432b;
  cursor: -webkit-grab;
  cursor: grab;
}

/* ..활동 갤러리 */
/* 활동 동영상 */
#page-sub2-2 {
  background-image: url(/img/sub2/sub2-2-bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
}
#page-sub2-2 .section2 {
  margin-bottom: 70px;
}
#page-sub2-2 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub2-2 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub2-2 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub2-2 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub2-2 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub2-2 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub2-2 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub2-2 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub2-2 .section2 .cont1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
#page-sub2-2 .section2 .cont1-left {
  position: relative;
  top: 43px;
  width: 100%;
  height: 427px;
  max-width: 370px;
  z-index: 1;
}
#page-sub2-2 .section2 .cont1-left-txt-box {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 415px;
  height: 400px;
  background: #fff;
  padding: 100px 40px 0 60px;
  overflow: hidden;
}
#page-sub2-2 .section2 .cont1-left-txt-box h3 {
  font-size: 40px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 97px;
  line-height: 1.25;
}
#page-sub2-2 .section2 .cont1-left-txt-box .line {
  width: 55px;
  height: 1px;
  background: #000;
  margin: 25px 0 50px;
}
#page-sub2-2 .section2 .cont1-left-txt-box p {
  font-size: 24px;
  font-weight: 300;
}
#page-sub2-2 .section2 .cont1-left-txt-box p.video-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  line-height: 1.35;
  max-height: 70px;
  word-break: keep-all;
}
#page-sub2-2 .section2 .cont1-left .cont-sqaure-box {
  position: absolute;
  top: 25px;
  width: 440px;
  height: 400px;
  border: 1px solid #bb9765;
}
#page-sub2-2 .section2 .cont1-right {
  width: 100%;
  max-width: 830px;
}
#page-sub2-2 .section2 .cont1-right .cont1-video-thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60.2409638554%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#page-sub2-2 .section2 .cont1-right .cont1-video-thumb .cont1-video-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#page-sub2-2 .section2 .cont1-right .cont1-video-thumb .cont1-video-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: " ";
  width: 65px;
  height: 65px;
  border: 1px solid #fff;
  background: url(/img/icon/playbtn.png) no-repeat center center;
  background-size: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#page-sub2-2 .section2 .cont1-right .cont1-video-thumb .cont1-video-btn:hover:after {
  border-radius: 50%;
  border-color: #bb9765;
  background-image: url(/img/icon/playbtn-active.png);
}
#page-sub2-2 .section2 .cont2 > p {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  margin-bottom: 30px;
  letter-spacing: 0;
}
#page-sub2-2 .section2 .cont2 > p:after {
  content: " ";
  display: inline-block;
  width: 1px;
  height: 133px;
  background: #000;
  margin-left: 20px;
}
#page-sub2-2 .section2 .cont2-video-list {
  display: grid;
  grid-template-areas: ". . .";
  grid-auto-columns: 31.66%;
  grid-gap: 60px 30px;
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 61.8421052632%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-thumb .cont2-video-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-thumb .cont2-video-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: " ";
  width: 52px;
  height: 52px;
  border: 1px solid #fff;
  background: url(/img/icon/playbtn.png) no-repeat center center;
  background-size: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-thumb .cont2-video-btn:hover:after {
  border-radius: 50%;
  border-color: #bb9765;
  background-image: url(/img/icon/playbtn-active.png);
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-subject {
  padding-top: 45px;
  position: relative;
  text-align: center;
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-subject:before {
  content: " ";
  display: block;
  width: 1px;
  height: 50px;
  background: url(/img/icon/video-line2.jpg) no-repeat;
  position: absolute;
  top: -25px;
  left: 50%;
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-subject p.cont2-video-description {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-subject p.cont2-video-date,
#page-sub2-2 .section2 .cont2-video-list .cont2-video-subject p.cont2-video-sub-tit {
  font-size: 16px;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.23;
}
#page-sub2-2 .section2 .cont2-video-list .cont2-video-subject p.cont2-video-sub-tit {
  margin-bottom: 4px;
}

/* ...활동 동영상 */
/* 정회원 */
#page-sub2-3 .section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
#page-sub2-3 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub2-3 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub2-3 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub2-3 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub2-3 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub2-3 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub2-3 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub2-3 .section2 .search-wrap {
  margin-bottom: 80px;
}
#page-sub2-3 .section2 .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#page-sub2-3 .section2 .search-cont {
  font-size: 0;
  border-right: 1px solid #eaeaea;
  margin-right: 25px;
  padding: 5px 25px 5px 0;
}
#page-sub2-3 .section2 .search-cont:first-child {
  width: 160px;
}
#page-sub2-3 .section2 .search-cont:nth-child(2) {
  width: 160px;
}
#page-sub2-3 .section2 .search-cont:nth-child(3) {
  width: 310px;
}
#page-sub2-3 .section2 .search-cont:last-child {
  border-right: 0;
}
#page-sub2-3 .section2 .search-cont label {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0;
}
#page-sub2-3 .section2 .search-cont select {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  width: 100%;
  border: 0;
  background: url(/img/icon/select.png) no-repeat center right;
}
#page-sub2-3 .section2 .search-cont select option {
  font-weight: 300;
}
#page-sub2-3 .section2 .search-cont input {
  font-size: 18px;
  font-weight: 300;
  border: 0;
  border-bottom: 1px solid #000;
  width: 162px;
  height: 36px;
  margin-right: 20px;
}
#page-sub2-3 .section2 .search-cont button {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  border: 1px solid #000;
  width: 120px;
  height: 36px;
}
#page-sub2-3 .section2 .cont-wrap {
  position: relative;
  padding-bottom: 120px;
}
#page-sub2-3 .section2 .cont-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 95.5%;
  background: #f8f4f1;
  z-index: -1;
}
#page-sub2-3 .section2 .cont-list {
  display: grid;
  grid-template-areas: ". . . .";
  grid-auto-columns: 22.5%;
  grid-gap: 30px 40px;
  width: 1200px;
  margin: 0 auto 50px;
}
#page-sub2-3 .section2 .cont-list li {
  border-bottom: 3px solid #bb9765;
}
#page-sub2-3 .section2 .cont-list li:nth-child(2n) {
  border-color: #dcbc7b;
}
#page-sub2-3 .section2 .cont-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 129.6296296296%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
#page-sub2-3 .section2 .cont-info {
  padding: 23px 0 15px;
  text-align: center;
}
#page-sub2-3 .section2 .cont-info .name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
#page-sub2-3 .section2 .cont-info .description {
  font-size: 16px;
  font-weight: 300;
  width: 80%;
  line-height: 1.38;
  word-break: keep-all;
  margin: 0 auto;
}
#page-sub2-3 .section2 .paging-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-sub2-3 .section2 .paging-num {
  margin: 0 30px;
}
#page-sub2-3 .section2 .paging-num a {
  font-size: 18px;
  margin-right: 20px;
}
#page-sub2-3 .section2 .paging-num a.active {
  color: #c29a5c;
}
#page-sub2-3 .section2 .paging-num a:last-child {
  margin-right: 0;
}

/* ...정회원 */
/* 언론 뉴스 */
.section2.news-section2 {
  margin-bottom: 120px;
}
.section2.news-section2 .tit-box {
  text-align: center;
  margin-bottom: 100px;
}
.section2.news-section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.section2.news-section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
.section2.news-section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
.section2.news-section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
.section2.news-section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
.section2.news-section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section2.news-section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
.section2.news-section2 .cont-wrap .news-list {
  display: grid;
  grid-template-areas: ". . . .";
  grid-auto-columns: 22.5%;
  grid-gap: 60px 40px;
}
.section2.news-section2 .cont-wrap .news-list .news {
  width: 100%;
}
.section2.news-section2 .cont-wrap .news-list .news-thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 250px;
}
.section2.news-section2 .cont-wrap .news-list .news-info {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border: 1px solid #eaeaea;
  min-height: 248px;
}
.section2.news-section2 .cont-wrap .news-list .news-info .news-title {
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
.section2.news-section2 .cont-wrap .news-list .news-info .news-article {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 15px;
  max-height: 100px;
}
.section2.news-section2 .cont-wrap .news-list .news-info .news-kinds {
  font-size: 13px;
  font-weight: 300;
  margin-right: 10px;
}
.section2.news-section2 .cont-wrap .news-list .news-info .news-date {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.5;
}
.section2.news-section2 .cont-wrap .more-btn {
  display: block;
  width: 90px;
  height: 90px;
  background: url(/img/icon/more-btn.png) no-repeat;
  margin: 0 auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section2.news-section2 .cont-wrap .more-btn:hover {
  background-image: url(/img/icon/more-btn-on.png);
}

/* ..언론 뉴스 */
/* section2 */
/* 공통 적용 */
h4.cont-tit {
  font-size: 42px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  letter-spacing: 0;
}

.section2.contest-page-section {
  margin-bottom: 100px;
}
.section2.contest-page-section .tab-wrap {
  margin-bottom: 100px;
  text-align: center;
}
.section2.contest-page-section .tab-wrap .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section2.contest-page-section .tab-wrap .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  width: 190px;
  height: 50px;
  border: 1px solid #000;
  margin-right: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section2.contest-page-section .tab-wrap .tab:last-child {
  margin-right: 0;
}
.section2.contest-page-section .tab-wrap .tab:hover {
  color: #fff;
  background: #bb9765;
  border-color: #bb9765;
}
.section2.contest-page-section .tab-wrap .tab.tab-on {
  background: #bb9765;
  color: #fff;
  border-color: #bb9765;
  font-weight: 600;
}
.section2.contest-page-section .menu-tab-outer {
  margin-bottom: 100px;
}
.section2.contest-page-section .menu-tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 800px;
  margin: 30px auto 0;
}
.section2.contest-page-section .menu-tab-wrap .gender-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #000;
  margin-right: 10px;
  width: 50%;
}
.section2.contest-page-section .menu-tab-wrap .gender-tab-list .gender-tab {
  font-size: 16px;
  display: block;
  width: 100%;
  padding-bottom: 20px;
  position: relative;
}
.section2.contest-page-section .menu-tab-wrap .gender-tab-list .gender-tab.tab-on {
  color: #bb9765;
  font-weight: 600;
}
.section2.contest-page-section .menu-tab-wrap .gender-tab-list .gender-tab.tab-on:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #bb9765;
}
.section2.contest-page-section .cont-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section2.contest-page-section .cont-left {
  padding-top: 30px;
}
.section2.contest-page-section .cont-left .contest-tit {
  font-size: 70px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 45px;
  letter-spacing: 0;
  line-height: 1.05;
}
.section2.contest-page-section .cont-left .contest-txt .contest-sub-tit {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 13px;
}
.section2.contest-page-section .cont-left .contest-txt .contest-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}
.section2.contest-page-section .cont-left .site-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
  background: #fff;
  width: 200px;
  height: 40px;
  letter-spacing: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section2.contest-page-section .cont-left .site-link:hover {
  background: #bb9765;
  border-color: #bb9765;
  color: #fff;
}
.section2.contest-page-section .cont-left .site-link:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  width: 800px;
  height: 1px;
  background: #000;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section2.contest-page-section .cont-left .site-link:hover:after {
  background: #bb9765;
}
.section2.contest-page-section .cont-right {
  font-size: 0;
  position: relative;
  padding-top: 30px;
}
.section2.contest-page-section .cont-right .banner {
  position: absolute;
  top: 30px;
  left: -60%;
}
.section2.contest-page-section .cont-right .winner-thumb {
  width: 380px;
  height: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: 146.8421052632%;
  position: relative;
  margin-bottom: 20px;
}
.section2.contest-page-section .cont-right .winner-thumb:after {
  content: " ";
  position: absolute;
  top: -30px;
  right: -30px;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #bb9765;
  z-index: -1;
}
.section2.contest-page-section .cont-right .winner-thumb .contest-logo {
  position: absolute;
  bottom: 0;
  right: 0;
}
.section2.contest-page-section .cont-right .winner-info p {
  font-size: 18px;
  font-weight: bold;
}
.section2.contest-page-section .cont-right .winner-info p:first-child {
  margin-bottom: 10px;
}
.section2.contest-page-section .cont-right .winner-info p .winner-kor-name {
  font-size: 24px;
}
.section2.contest-page-section .cont-right .winner-info-sejongsoheon div.female-info {
  margin-bottom: 10px;
}
.section2.contest-page-section .cont-right .winner-info-sejongsoheon div span:nth-child(1),
.section2.contest-page-section .cont-right .winner-info-sejongsoheon div span:nth-child(3) {
  font-size: 18px;
  font-weight: 600;
}
.section2.contest-page-section .cont-right .winner-info-sejongsoheon div span:nth-child(2) {
  font-size: 24px;
  font-weight: 600;
  margin-right: 10px;
}
.section2.contest-page-section .cont-right .winner-info-sejongsoheon div span:nth-child(1):after {
  content: " ";
  display: inline-block;
  width: 1px;
  height: 19px;
  background: #000;
  margin: 0 10px;
  vertical-align: bottom;
}

/* section3 */
.section3.contest-page-section {
  padding-top: 100px;
  padding-bottom: 200px;
}
.section3.contest-page-section .video-cont-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section3.contest-page-section .video-cont-box .video-tit-wrap {
  position: relative;
  width: 31px;
  height: 143px;
  margin-right: 35px;
}
.section3.contest-page-section .video-cont-box .video-tit-wrap:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: 1px;
  height: 470px;
  background: #000;
}
.section3.contest-page-section .video-cont-box .video-tit-wrap h4 {
  position: absolute;
  bottom: 15px;
  width: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.section3.contest-page-section .video-cont-box .video-thumb-wrap {
  position: relative;
  font-size: 0;
}
.section3.contest-page-section .video-cont-box .video-thumb-wrap .video-thumb {
  width: 1136px;
  height: 0;
  padding-bottom: 32.4823943662%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.section3.contest-page-section .video-cont-box .video-thumb-wrap .video-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.section3.contest-page-section .video-cont-box .video-thumb-wrap .video-btn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: " ";
  width: 65px;
  height: 65px;
  border: 1px solid #fff;
  background: url(/img/icon/playbtn.png) no-repeat center center;
  background-size: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section3.contest-page-section .video-cont-box .video-thumb-wrap .video-btn:hover:after {
  border-radius: 50%;
  border-color: #bb9765;
  background-image: url(/img/icon/playbtn-active.png);
}
.section3.contest-page-section .video-cont-box .video-desc {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
}

/* section4 */
.section4.contest-page-section {
  padding: 100px 0;
  margin-bottom: 100px;
}
.section4.contest-page-section .sub-bg {
  max-height: 100%;
}
.section4.contest-page-section .hof-tit-wrap {
  margin-bottom: 40px;
}
.section4.contest-page-section .hof-swiper {
  overflow: visible;
}
.section4.contest-page-section .hof-swiper .swiper-slide {
  max-width: 245px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.section4.contest-page-section .hof-swiper .swiper-slide-active, .section4.contest-page-section .hof-swiper .swiper-slide-next,
.section4.contest-page-section .hof-swiper .swiper-slide-next ~ .swiper-slide {
  opacity: 1;
}
.section4.contest-page-section .hof-swiper .hof-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 151.0204081633%;
  background: url(/img/missgrand.jpg) top center/cover no-repeat;
}
.section4.contest-page-section .hof-swiper .hof-name {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
}
.section4.contest-page-section .hof-swiper .swiper-scrollbar {
  width: 1550px;
  right: 0;
}
.section4.contest-page-section .hof-swiper .swiper-scrollbar-drag {
  background: #ff432b;
  cursor: -webkit-grab;
  cursor: grab;
}

/* section5 */
.section5.contest-page-section {
  padding: 100px 0;
  margin-bottom: 120px;
  overflow: hidden;
}
.section5.contest-page-section .sub-bg.left-bg {
  max-height: 100%;
}
.section5.contest-page-section .pageant-tit-wrap {
  margin-bottom: 40px;
}
.section5.contest-page-section .pageant-swiper {
  overflow: visible;
}
.section5.contest-page-section .pageant-swiper .swiper-slide {
  max-width: 480px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.section5.contest-page-section .pageant-swiper .swiper-slide-active, .section5.contest-page-section .pageant-swiper .swiper-slide-next,
.section5.contest-page-section .pageant-swiper .swiper-slide-next ~ .swiper-slide {
  opacity: 1;
}
.section5.contest-page-section .pageant-swiper .pageant-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 66.6666666667%;
  background: url(/img/sub2/gal-sample1.jpg) center center/cover no-repeat;
  margin-bottom: 50px;
}
.section5.contest-page-section .pageant-swiper .swiper-scrollbar {
  width: 1550px;
  left: 0;
}
.section5.contest-page-section .pageant-swiper .swiper-button-prev, .section5.contest-page-section .pageant-swiper .swiper-button-next {
  width: 70px;
  height: 70px;
  bottom: 50px;
}
.section5.contest-page-section .pageant-swiper .swiper-button-prev {
  background: url(/img/icon/prev-btn.jpg) no-repeat;
}
.section5.contest-page-section .pageant-swiper .swiper-button-next {
  background: url(/img/icon/next-btn.jpg) no-repeat;
  left: calc(100% - 290px);
}

/* 모투모투 소개 */
#page-sub6-1 .section2 {
  position: relative;
  padding-bottom: 110px;
}
#page-sub6-1 .section2 .tit-box {
  text-align: center;
  margin-bottom: 80px;
}
#page-sub6-1 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub6-1 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub6-1 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub6-1 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub6-1 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub6-1 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub6-1 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub6-1 .section2 .cont-wrap .cont-subject {
  margin-bottom: 80px;
  text-align: center;
}
#page-sub6-1 .section2 .cont-wrap .cont-subject h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
#page-sub6-1 .section2 .cont-wrap .cont-subject p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
}
#page-sub6-1 .section2 .cont-wrap .cont-subject .market-btn-wrap {
  font-size: 0;
}
#page-sub6-1 .section2 .cont-wrap .cont-subject .market-btn-wrap a:first-child {
  margin-right: 20px;
}
#page-sub6-1 .section2 .cont-wrap .cont-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#page-sub6-1 .section2 .cont-wrap .cont-box .cont {
  text-align: center;
}
#page-sub6-1 .section2 .cont-wrap .cont-box .cont-inner {
  border: 1px solid #bb9765;
  padding: 50px 20px 0;
  margin-bottom: 25px;
  font-size: 0;
}
#page-sub6-1 .section2 .cont-wrap .cont-box .cont-txt-box {
  text-align: center;
  margin-bottom: 42px;
}
#page-sub6-1 .section2 .cont-wrap .cont-box .cont-txt-box h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
#page-sub6-1 .section2 .cont-wrap .cont-box .cont-txt-box h4 span {
  color: #ff432b;
}
#page-sub6-1 .section2 .cont-wrap .cont-box .cont-txt-box p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.67;
}
#page-sub6-1 .section2 .cont-wrap .cont-box .cont-name {
  font-size: 42px;
  font-weight: 300;
  font-family: "Frank Ruhl Libre", serif;
  color: #ddcbb2;
  letter-spacing: 0;
}
#page-sub6-1 .section2 .bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 2000px;
  height: 450px;
  background: #ff432b;
  z-index: -1;
}

/* ..모투모투 소개 */
/* 광고 상품 소개 */
#page-sub6-2 .section2 {
  margin-bottom: 62px;
}
#page-sub6-2 .section2 .tit-box {
  text-align: center;
  margin-bottom: 55px;
}
#page-sub6-2 .section2 .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 12px;
  letter-spacing: 0;
}
#page-sub6-2 .section2 .tit-box h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
#page-sub6-2 .section2 .tit-box .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}
#page-sub6-2 .section2 .tit-box .sub-desc-wrap {
  margin-top: 30px;
}
#page-sub6-2 .section2 .tit-box .sub-desc-wrap .tit-desc {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.7;
  margin-bottom: 30px;
}
#page-sub6-2 .section2 .tit-box .sub-desc-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-sub6-2 .section2 .tit-box .sub-desc-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}
#page-sub6-2 .section2 .cont-wrap > div {
  margin-bottom: 10px;
}
#page-sub6-2 .section2 .cont-wrap > div:last-child {
  margin-bottom: 0;
}
#page-sub6-2 .section2 .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-sub6-2 .section2 .cont-right {
  border: 1px solid #bb9765;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 42.5%;
  padding: 75px 85px 80px;
  position: relative;
}
#page-sub6-2 .section2 .cont-right:after {
  position: absolute;
  top: 50px;
  left: -60px;
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #000;
}
#page-sub6-2 .section2 .cont-tit-box {
  color: #bb9765;
  margin-bottom: 50px;
}
#page-sub6-2 .section2 .cont-tit-box span {
  font-size: 60px;
  font-style: italic;
  font-family: "Frank Ruhl Libre", serif;
}
#page-sub6-2 .section2 .cont-tit-box h4 {
  font-size: 30px;
  font-weight: 600;
  margin-top: 10px;
}
#page-sub6-2 .section2 .cont-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.89;
}
#page-sub6-2 .section2 .cont2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-sub6-2 .section2 .cont2-left {
  border: 1px solid #bb9765;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 42.5%;
  padding: 75px 85px 80px;
  margin-right: 120px;
  position: relative;
}
#page-sub6-2 .section2 .cont2-left:after {
  position: absolute;
  top: 50px;
  right: -60px;
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #000;
}
#page-sub6-2 .section2 .cont2 .cont-tit-box,
#page-sub6-2 .section2 .cont2 .cont-description {
  text-align: right;
}

/* ..광고상품 소개 */
/* form 양식 관련 페이지 */
#page-sub6-3 .section1-bg,
#page-sub7-1 .section1-bg,
#page-sub7-2 .section1-bg {
  margin-bottom: 0;
}

.section1-bg.form-section1 {
  margin-bottom: 0;
}

.section2.form-section2 {
  margin-bottom: 120px;
}
.section2.form-section2 .cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #bb9765;
  margin-bottom: 80px;
}
.section2.form-section2 .cont-left {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 102px;
}
.section2.form-section2 .cont-left .form-wrap {
  padding-top: 150px;
  padding-bottom: 50px;
}
.section2.form-section2 .cont-left .form-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.section2.form-section2 .cont-left .form-cont.textarea-cont, .section2.form-section2 .cont-left .form-cont.chk-cont {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section2.form-section2 .cont-left .form-cont:last-child {
  margin-bottom: 0;
}
.section2.form-section2 .cont-left .form-cont .cont {
  font-size: 0;
  margin-right: 20px;
  width: 100%;
}
.section2.form-section2 .cont-left .form-cont .cont:last-child {
  margin-right: 0;
}
.section2.form-section2 .cont-left .form-cont .cont > label {
  font-size: 18px;
  font-weight: 300;
  display: block;
  margin-bottom: 12px;
}
.section2.form-section2 .cont-left .form-cont .cont > .at {
  font-size: 20px;
  font-weight: 300;
  vertical-align: middle;
  margin: 0 10px;
}
.section2.form-section2 .cont-left .form-cont .cont input, .section2.form-section2 .cont-left .form-cont .cont select {
  height: 50px;
  border: 1px solid #eaeaea;
  padding: 0 15px;
  vertical-align: middle;
}
.section2.form-section2 .cont-left .form-cont .cont input#company-name, .section2.form-section2 .cont-left .form-cont .cont input#phone, .section2.form-section2 .cont-left .form-cont .cont select#company-name, .section2.form-section2 .cont-left .form-cont .cont select#phone {
  width: 100%;
}
.section2.form-section2 .cont-left .form-cont .cont .all-chk-wrap {
  padding: 15px;
  background: #f8f4f1;
  margin-bottom: 30px;
}
.section2.form-section2 .cont-left .form-cont .cont .chk-wrap {
  margin-bottom: 12px;
}
.section2.form-section2 .cont-left .form-cont .cont .chk-wrap:last-child {
  margin-bottom: 0;
}
.section2.form-section2 .cont-left .form-cont .cont .chk-wrap a {
  font-size: 16px;
  font-weight: 300;
  display: block;
  color: #c39a5c;
  border-bottom: 1px solid #c39a5c;
  float: right;
  padding-bottom: 3px;
}
.section2.form-section2 .cont-left .form-cont.email-cont input {
  width: 31.2%;
}
.section2.form-section2 .cont-left .form-cont.email-cont select {
  width: 31.4%;
}
.section2.form-section2 .cont-right {
  background: url(/img/icon/rhombus-bg.png) no-repeat center center;
  padding-right: 88px;
  padding-left: 100px;
}
.section2.form-section2 .cont-right .tit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f8f4f1;
  height: 100%;
  position: relative;
  z-index: -1;
  width: 300px;
}
.section2.form-section2 .cont-right .tit-inner p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Frank Ruhl Libre", serif;
  letter-spacing: 0;
  margin-bottom: 10px;
  white-space: nowrap;
}
.section2.form-section2 .cont-right .tit-inner h3 {
  font-size: 40px;
  font-weight: 600;
  white-space: nowrap;
}
.section2.form-section2 .btn-wrap {
  text-align: center;
}
.section2.form-section2 .btn-wrap .contact-btn {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section2.form-section2 .btn-wrap .contact-btn:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}

/* ...form 양식 관련 페이지 */
/* 뉴스,공지사항등 view 페이지 */
#page-view .section2 {
  margin-bottom: 120px;
}
#page-view .section2 .view-tit-wrap {
  border-bottom: 1px solid #000;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 60px;
}
#page-view .section2 .view-tit-wrap .view-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  word-break: keep-all;
}
#page-view .section2 .view-tit-wrap .view-date {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  color: #a5a5a5;
}
#page-view .section2 .view-cont-wrap {
  margin-bottom: 50px;
  word-break: break-all;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
}
#page-view .section2 .view-cont-wrap strong {
  font-weight: 600;
}
#page-view .section2 .view-cont-wrap p, #page-view .section2 .view-cont-wrap div, #page-view .section2 .view-cont-wrap span {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  word-break: keep-all;
}
#page-view .section2 .view-move-wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 80px;
}
#page-view .section2 .view-move-wrap .view-move {
  padding: 30px 10px;
}
#page-view .section2 .view-move-wrap .view-move:first-child {
  border-bottom: 1px solid #eaeaea;
}
#page-view .section2 .view-move-wrap .view-move a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-view .section2 .view-move-wrap .view-move span {
  font-size: 18px;
  font-weight: 300;
  padding-right: 25px;
  margin-right: 40px;
  border-right: 1px solid #eaeaea;
}
#page-view .section2 .view-move-wrap .view-move span img {
  max-width: 13px;
  margin-right: 4px;
}
#page-view .section2 .view-move-wrap .view-move b {
  font-size: 24px;
  font-weight: 600;
  max-width: 1000px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#page-view .section2 .btn-wrap {
  text-align: center;
}
#page-view .section2 .btn-wrap a {
  font-size: 24px;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 402px;
  height: 63px;
  margin: 0 auto;
  background: url(/img/icon/contact-btn.png) no-repeat;
  background-size: 100%;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-view .section2 .btn-wrap a:hover {
  background-image: url(/img/icon/contact-btn-on.png);
  color: #fff;
}

/* ..뉴스,공지사항등 view 페이지 */
/**** scroll animation ****/
/* scroll fade animate */
.fade {
  opacity: 0;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}
.fade-left {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}
.fade-right {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}
.fade-down {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.fade-up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.fade-zoom {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.fade-in {
  opacity: 1 !important;
  -webkit-transform: none;
          transform: none;
}

/**** ...scroll animation ****/
/**** popup ****/
.popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 100000;
}
.popup-wrap.open {
  display: block;
}
.popup-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border: 6px solid #bb9765;
  width: 100%;
  max-width: 600px;
  min-height: 500px;
  padding: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.popup.open {
  display: block;
}
.popup.video-popup {
  background: transparent;
  border: 0;
  max-width: 1000px;
}
.popup.video-popup iframe {
  width: 100%;
  height: 500px;
}
.popup.video-popup video {
  width: 100%;
}
.popup.img-popup {
  background: transparent;
  border: 0;
  max-width: 710px;
}
.popup.img-popup .img-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 84.5070422535%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.popup-close-btn-wrap {
  margin-bottom: 30px;
  text-align: right;
}
.popup .video-close-btn-wrap {
  margin-bottom: 30px;
  text-align: center;
}
.popup .layer-close-btn {
  cursor: pointer;
}
.popup h2 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.popup textarea {
  border: 0;
  height: 40vh;
  min-height: 300px;
  word-break: keep-all;
}

.gal-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  width: 100%;
  max-width: 710px;
  min-height: 500px;
  background: transparent;
  border: 0;
  padding: 0;
}
.gal-popup .popup-close-btn-wrap > img {
  cursor: pointer;
}
.gal-popup .popup-close-btn-wrap {
  text-align: center;
}
.gal-popup .gal-main-swiper {
  border-bottom: 1px solid #ff432b;
  padding-bottom: 20px;
}
.gal-popup .gal-main-swiper .gal-popup-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 69.014084507%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.gal-popup .gal-main-swiper .swiper-button-disabled {
  opacity: 0.5;
}
.gal-popup .swiper-button-prev,
.gal-popup .swiper-button-next {
  background-repeat: no-repeat;
  background-size: 100%;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 70px;
}
.gal-popup .swiper-button-prev {
  background-image: url(/img/icon/prev-btn.jpg);
}
.gal-popup .swiper-button-next {
  background-image: url(/img/icon/next-btn.jpg);
  right: 0;
}
.gal-popup .gal-sub-swiper {
  margin-top: 20px;
}
.gal-popup .gal-sub-swiper .swiper-slide {
  width: 80px;
  height: 80px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
  cursor: pointer;
}
.gal-popup .gal-sub-swiper .swiper-slide:hover {
  opacity: 1;
}
.gal-popup .gal-sub-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.gal-popup .gal-sub-swiper .swiper-slide .gal-sub-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.gal-pop-btn, .img-pop-btn {
  cursor: pointer;
}

section.proposal_popup {
  width: 440px;
  height: 480px;
  /*position: fixed;
  top: 57%;*/
  position: absolute;
  top: 480px;
  left: 30%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 1;
  display: none;
}
.proposal_popup > div{
  border: 5px solid #fff;
}

.proposal_popup img{
  width:100%;
  height:auto;
}

.proposal_popup .btn-wrap{
  background-color: #fff;
  padding: 5px 0;
  overflow:hidden;
  box-sizing: border-box;
  height:40px;
}

.proposal_popup .btn-wrap div{
  color: #000;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  float:left;
  background-color: #fff;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  cursor: pointer;
}

.proposal_popup .popup-no-see{
  border-right: 1px solid #ccc;
}

/**** ...popup ****/
/**** footer ****/
footer {
  background: #000;
  padding: 30px 0;
  min-width: 1200px;
}
footer #footerLogoSwiper {
  margin-bottom: 30px;
}
footer .flexible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .copy {
  font-size: 12px;
  font-weight: 200;
  color: #959595;
  letter-spacing: 0;
}
footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
footer .footer-logo-name {
  font-size: 15px;
  font-weight: 200;
  color: #fff;
  text-align: center;
  padding-top: 14px;
}
footer .footer-cont-outer {
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-service a {
  font-size: 14px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-service a:first-child:after {
  content: " ";
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.5);
}
footer .footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-sns li {
  margin-right: 10px;
}
footer .footer-sns li:last-child {
  margin-right: 0;
}
footer .footer-info {
  padding-top: 30px;
  margin-bottom: 20px;
  font-size: 0;
}
footer .footer-info li, footer .footer-info span {
  color: #fff;
}
footer .footer-info li {
  margin-bottom: 5px;
}
footer .footer-info li:last-child {
  margin-bottom: 0;
}
footer .footer-info li.bold {
  font-size: 14px;
  font-weight: 600;
}
footer .footer-info li.light span {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: -0.01em;
  border-left: 1px solid #fff;
  padding: 0 7px;
}
footer .footer-info li.light span:first-child {
  padding-left: 0;
  border: 0;
}
footer .footer-info li.light span.bf:before {
  font-weight: 600;
}
footer .footer-info li.light span.bf.f:before {
  content: "F.";
}
footer .footer-info li.light span.bf.e:before {
  content: "E.";
}
footer .company-combo-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .company-combo {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid rgba(255, 255, 255, 0.5);
  color: #ccc;
  font-size: 18px;
  width: 255px;
  padding: 13px 15px 13px 0;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0;
}
footer .company-combo:after {
  content: "+";
  font-size: 39px;
  font-weight: 100;
  position: absolute;
  top: 2%;
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .company-combo:hover {
  color: #fff;
  border-color: #fff;
}
footer .company-combo.on {
  border-color: #fff;
  color: #fff;
}
footer .company-combo.on:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
footer .company-combo::-moz-selection {
  background: transparent;
}
footer .company-combo::selection {
  background: transparent;
}
footer .company-box {
  display: none;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 70px;
  opacity: 0;
  padding: 20px 30px 30px;
  width: 1200px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
footer .company-box.on {
  opacity: 1;
  bottom: 50px;
}
footer .company-box-tit {
  font-size: 24px;
  color: #ccc;
  margin-bottom: 25px;
}
footer .company-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .company-list-tit {
  color: #fff;
  background: #000;
  font-size: 20px;
  padding: 20px;
}
footer .company-list {
  min-width: 200px;
  margin-right: 20px;
}
footer .company-list:last-child {
  margin-right: 0;
}
footer .company-list.company-mk-list {
  width: 100%;
}
footer .company-list ul {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #2c2c2c;
  padding: 35px 35px 0 20px;
  height: 270px;
}
footer .company-list ul.company-flex-list {
  display: grid;
  grid-template-areas: ". . .";
}
footer .company-list ul li {
  margin-bottom: 30px;
}
footer .company-list ul a {
  font-size: 16px;
  font-weight: 300;
  color: #ccc;
}
footer .company-list ul a strong {
  font-weight: 600;
  color: #fff;
}
footer .company-list ul a:hover {
  color: #bb9765 !important;
}
footer .company-list ul a:hover strong {
  color: #bb9765 !important;
}

/**** ...footer ****/
/***************
*** 미디어쿼리 ***
****************/
@media screen and (min-width: 1921px) {
  #page-main section .cont-box {
    padding-left: 400px;
  }
}
@media screen and (max-width: 1920px) {
  #page-main section .cont-box {
    padding-left: calc(100% - 1583px);
  }
}
@media screen and (max-width: 1600px) {
  #page-main section .cont-box {
    padding-left: 100px;
  }
}