@charset "UTF-8";

/* 모달 */
#modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}

#modal .bg {
  background-color: rgba(50, 50, 50, 0.661);
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

#modal .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding: 50px;
  background-color: #fff;
}

@media screen and (max-width: 639.98px) {
  #modal .content {
    width: 90%;
    padding: 20px;
  }
}

#modal .content .main_area {
  position: relative;

}

#modal .content .main_area .close {
  position: absolute;
  right: -25px;
  top: -25px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.5s;
  cursor: pointer;
}

#modal .content .main_area .close:hover {
  color: #d01f1f;
}

@media screen and (max-width: 639.98px) {
  #modal .content .main_area .close {
    right: -10px;
    top: -10px;
  }
}

/* 개인정보 */

#policy {
   width: 16px;
  height: 16px;
}

.policy-consent {
  display: flex;
  flex-direction: row;
  margin-left: 8px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  justify-content: space-between;
  margin-bottom: 18px;
    position: relative;
}

.policy-consent .btn-more {
  padding-left: 23px;
  cursor: pointer;
}

.text {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 639.98px) {
  .text {
    font-size: 15px;
  }
}

.text span {
  text-decoration: underline;
}

@media screen and (max-width: 639.98px) {
  .text {
    font-size: 12px;
  }
}

@media screen and (max-width: 1199.98px) {
  .policy-consent {
    flex-direction: row;
    margin-left: 0;
    font-size: 14px;
  }

  .policy-consent .btn-more {
    padding-left: 4px;
  }
}

@media screen and (max-width: 991.98px) {
  .policy-consent {
    margin-left: 0;
    font-size: 14px;
  }
}

.choice label {
  display: flex;
  gap: 10px;
  align-items: center;
position: absolute;
    top: 0;
}

.choice input[type=checkbox]~label .custom-mark {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  overflow: hidden;
    border: 1px solid #d01f1f;
}

.choice input[type=checkbox]~label .custom-mark:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-image: url('../img/agree.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate(-100%, -100%) scale(1);
}

@media screen and (max-width: 1199.98px) {
  .choice input[type=checkbox]~label .custom-mark:after {
    width: 14px;
    height: 14px;
  }
}

.choice input[type=checkbox]:checked~label .custom-mark {
  background-color: #fff;
  border-color: #fff;
  border: 1px solid #d01f1f;
  color: #fff;
}

.choice input[type=checkbox]:checked~label .custom-mark:after {
  transform: translate(0%, 0%) scale(1);
}

/*=================================================
    컬러
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
html {
  scroll-behavior: smooth;
}

.none {
  display: none !important;
}

@media screen and (min-width: 992px) {
  .none-lg {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .block-lg {
    display: block !important;
  }
}

.area {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1350px;
}

@media screen and (max-width: 1920px) {
  .area {
    max-width: 1450px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 991.98px) {
  .area {
    max-width: 1388px;
    padding-left: 19px;
    padding-right: 19px;
  }
}

.desc-bot {
  scale: 5;
  opacity: 0;
  left: 0;
  position: absolute;
  width: 100%;
  padding-left: 50px;
}

@media screen and (max-width: 639.98px) {
  .desc-bot {
    padding-left: 12px;
  }
}

.desc-bot img {
  margin: 0 auto;
  display: block;
}

.content-wrap {
  overflow: hidden !important;
}

.content-wrap header {
  position: absolute;
  top: 33px;
  left: 43px;
  z-index: 999;
}

@media screen and (max-width: 991.98px) {
  .content-wrap header {
    width: 100%;
    left: 0;
    top: 35px;
  }
}

.content-wrap header h1 img {
  width: 168px;
}

@media screen and (max-width: 991.98px) {
  .content-wrap header h1 img {
    width: 165px;
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap header h1 img {
    width: 83px;
  }
}

.content-wrap #quick {
  position: fixed;
  bottom: 48px;
  right: 55px;
  display: flex;
  gap: 19px;
  z-index: 999;
  flex-direction: column;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #quick {
    right: 30px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #quick {
    bottom: 24px;
    right: 17px;
    gap: 10px;
  }
}

.content-wrap #quick a img {
  width: 100px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #quick a img {
    width: 50px;
  }
}

.content-wrap #con01 {
  background-color: #ddd;
  height: 100vh;
  position: relative;
}

.content-wrap #con01 video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.content-wrap #con01 .swiper {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}

.content-wrap #con01 .swiper .swiper-wrapper {
  height: 100%;
  z-index: 999;
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s;
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide h2 {
  color: #fff;
  text-align: center;
  font-size: 80px;
  font-family: "MYHaemalgeunSangsang";
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con01 .swiper .swiper-wrapper .swiper-slide h2 {
    font-size: 40px;
  }
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .desc,
.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide p {
  color: #fff;
  text-align: center;
  margin: 48px 0;
  font-size: 24px;
  line-height: 36px;
  font-family: "MaruBuriSemiBold";
}

@media screen and (max-width: 639.98px) {

  .content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .desc,
  .content-wrap #con01 .swiper .swiper-wrapper .swiper-slide p {
    font-size: 12px;
    margin: 25px 0;
    line-height: 18px;
  }
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .desc:last-child,
.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide p:last-child {
  margin-bottom: 0;
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .desc .font,
.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide p .font {
  font-size: 36px;
}

@media screen and (max-width: 639.98px) {

  .content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .desc .font,
  .content-wrap #con01 .swiper .swiper-wrapper .swiper-slide p .font {
    font-size: 18px;
  }
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .desc span,
.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide p span {
  line-height: 1.7;
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .font-fa {
  margin: 0;
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .font-fa span {
  font-family: "MYHaemalgeunSangsang";
  font-size: 30px;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con01 .swiper .swiper-wrapper .swiper-slide .font-fa span {
    font-size: 15px;
  }
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide h3 {
  color: #fff;
  text-align: center;
  font-size: 48px;
  line-height: 68px;
  font-family: "MYHaemalgeunSangsang";
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con01 .swiper .swiper-wrapper .swiper-slide h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide-active {
  opacity: 1 !important;
  position: relative;
}

.content-wrap #con01 .swiper .swiper-wrapper .swiper-slide-next {
  opacity: 0;
}

.content-wrap #con01 .desc-line {
  opacity: 0;
  transform: translateY(20px);
  display: block;
}

.content-wrap #con02 {
  background-color: #d01f1f;
  padding: 16px 0;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con02 {
    padding: 8px 0;
  }
}

.content-wrap #con02:hover img {
  margin-left: 10px;
}

.content-wrap #con02 a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.content-wrap #con02 a p {
  font-size: 40px;
  font-family: "OKGUNG";
  color: #fff;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con02 a p {
    font-size: 20px;
  }
}

.content-wrap #con02 a img {
  width: 40px;
  transition: all 0.5s;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con02 a img {
    width: 20px;
  }
}

.content-wrap #con03 {
  background: url("../img/con3_bg.png") no-repeat center;
  padding: 118px 0 84px;
  background-size: cover;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con03 {
    background: url("../img/con3_bg_m.png") no-repeat center;
    background-size: auto;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 {
    padding: 59px 0 81px;
  }
}

.content-wrap #con03 .title {
  text-align: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 .title {
    margin-bottom: 28px;
  }
}

.content-wrap #con03 .title p {
  font-size: 32px;
  font-family: "MaruBuriSemiBold";
  margin-bottom: 18px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 .title p {
    font-size: 16px;
    margin-bottom: 9px;
  }
}

.content-wrap #con03 .title h3 {
  font-size: 65px;
  font-family: "OKGUNG";
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 .title h3 {
    font-size: 32px;
  }
}

.content-wrap #con03 .title h3 span {
  color: #d01f1f;
}

.content-wrap #con03 .con-area {
  display: flex;
  gap: 104px;
}

@media screen and (max-width: 1439.98px) {
  .content-wrap #con03 .con-area {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 1440px) {
  .content-wrap #con03 .con-area img {
    width: 500px;
    margin: 0 auto;
  }
}

.content-wrap #con03 .con-area article {
  padding-top: 20px;
}

.content-wrap #con03 .con-area article dl {
  position: relative;
  padding-left: 55px;
  margin-bottom: 55px;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con03 .con-area article dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 .con-area article dl {
    margin-bottom: 33px;
  }
}

.content-wrap #con03 .con-area article dl:last-child {
  margin-bottom: 0;
}

.content-wrap #con03 .con-area article dl dt {
  font-size: 40px;
  font-family: "OKGUNG";
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 .con-area article dl dt {
    font-size: 20px;
  }
}

.content-wrap #con03 .con-area article dl dt img {
  width: 58px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 .con-area article dl dt img {
    width: 29px;
  }
}

.content-wrap #con03 .con-area article dl dd {
  background-color: #d01f1f;
  color: #fff;
  font-size: 40px;
  font-family: "OKGUNG";
  padding: 6px 12px;
  width: fit-content;
  opacity: 1;
  transform: translateY(20px);
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con03 .con-area article dl dd {
    font-size: 20px;
    transform: none;
    padding: 5px;
  }
}

.content-wrap #con04 {
  background-color: #d01f1f;
  padding: 20px 0 17px;
  white-space: nowrap;
  width: 100%;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con04 {
    padding: 10px 0;
  }
}

.content-wrap #con04 .rolling-text {
  display: inline-block;
  animation: scrollLoop 50s linear infinite;
}

.content-wrap #con04 .rolling-text span {
  font-size: 34px;
  font-family: "MaruBuriSemiBold";
  color: #fff;
  display: inline-block;
  opacity: 0.7;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con04 .rolling-text span {
    font-size: 15px;
  }
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.content-wrap #con05 {
  background: url("../img/con5_bg.png") no-repeat center;
  background-size: cover;
  padding: 113px 0 210px;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con05 {
    padding-bottom: 267px;
    background: url("../img/con5_bg_m.png") no-repeat center;
    background-size: cover;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 {
    padding: 77px 0 148px;
  }
}

.content-wrap #con05 .title {
  display: flex;
  align-items: flex-end;
  gap: 46px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con05 .title {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
}

.content-wrap #con05 .title article {
  padding-bottom: 15px;
}

.content-wrap #con05 .title article p {
  color: #fff;
  font-size: 30px;
  font-family: "MaruBuriSemiBold";
  margin-bottom: 18px;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con05 .title article p {
    text-align: center;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .title article p {
    font-size: 15px;
  }
}

.content-wrap #con05 .title article h3 {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con05 .title article h3 {
    flex-direction: column;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .title article h3 {
    gap: 5px;
  }
}

.content-wrap #con05 .title article h3 p {
  font-size: 80px;
  font-family: "OKGUNG";
  color: #fff;
  position: relative;
  padding-left: 150px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .title article h3 p {
    font-size: 40px;
    padding-left: 90px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con05 .title article h3 p:nth-child(1) span {
    left: 130px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .title article h3 p:nth-child(1) span {
    left: 73px;
  }
}

.content-wrap #con05 .title article h3 p span {
  color: #d01f1f;
  scale: 5;
  opacity: 0;
  left: 0;
  position: absolute;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con05 .title article h3 p span {
    left: 40px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .title article h3 p span {
    left: 30px;
  }
}

.content-wrap #con05 .con-area ul {
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con05 .con-area ul {
    flex-wrap: wrap;
  }
}

.content-wrap #con05 .con-area ul li {
  width: 25%;
  position: relative;
  height: 300px;
  overflow: hidden;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con05 .con-area ul li {
    width: 50%;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .con-area ul li {
    height: 140px;
  }
}

.content-wrap #con05 .con-area ul li p {
  position: absolute;
  top: 24px;
  width: 100%;
  font-size: 48px;
  color: #fff;
  font-family: "OKGUNG";
  z-index: 1;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .con-area ul li p {
    font-size: 22.5px;
    top: 11px;
  }
}

.content-wrap #con05 .con-area ul li video {
  background-color: #ddd;
  height: 300px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  filter: grayscale(100%);
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .con-area ul li video {
    height: 140px;
  }
}

.content-wrap #con05 .con-area ul li.on p {
  color: #fff600;
}

.content-wrap #con05 .con-area ul li.on video {
  filter: grayscale(0%);
}

.content-wrap #con05 .con-area p {
  color: #fff;
  font-size: 30px;
  font-family: "MaruBuriBold";
  text-align: center;
  margin: 30px 0 13px;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con05 .con-area p {
    line-height: 1.8;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .con-area p {
    font-size: 15px;
  }
}

.content-wrap #con05 .con-area p span {
  font-size: 48px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con05 .con-area p span {
    font-size: 24px;
  }
}

@media screen and (max-width: 2560px) {
  .content-wrap #con06 {
    background: url("../img/con6_bg.png") no-repeat center 120px;
    padding: 124px 0 210px;
    background-size: 100% 1000px;
  }
}

@media screen and (max-width: 1920px) {
  .content-wrap #con06 {
    background: url("../img/con6_bg.png") no-repeat center 150px;
    background-size: 100% 1000px;
  }
}

@media screen and (max-width: 1300px) {
  .content-wrap #con06 {
    background: url("../img/con6_bg_m.png") no-repeat center 180px;
    background-size: 100% 1100px;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 {
    background: url("../img/con6_bg_m.png") no-repeat center 240px;
    background-size: 100% 1100px;
    padding-bottom: 300px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 {
    background: url("../img/con6_bg_m.png") no-repeat center 140px;
    background-size: 100% 500px;
    padding: 70px 0 150px;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 .area {
    padding: 0;
  }
}

.content-wrap #con06 .title {
  margin-bottom: 157px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .title {
    margin-bottom: 80px;
  }
}

.content-wrap #con06 .title img {
  width: 185px;
  margin: 0 auto;
  display: block;
  margin-bottom: 17px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .title img {
    width: 84px;
    margin-bottom: 9px;
  }
}

.content-wrap #con06 .title h3 {
  color: #d01f1f;
  font-size: 80px;
  text-align: center;
  font-family: "OKGUNG";
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .title h3 {
    font-size: 35px;
  }
}

.content-wrap #con06 .con-area {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 260px;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con06 .con-area {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 .con-area {
    position: relative;
    padding-top: 250px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .con-area {
    padding-top: 144px;
    margin-bottom: 100px;
  }
}

.content-wrap #con06 .con-area div {
  display: flex;
  gap: 33px;
  flex-direction: column;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con06 .con-area div {
    gap: 15px;
  }
}

.content-wrap #con06 .con-area div p {
  background-color: #fff;
  border-radius: 42.5px;
  padding: 20px 0;
  width: 380px;
  font-size: 48px;
  font-family: "OKGUNG";
  text-align: center;
  opacity: 0;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 .con-area div p {
    width: 450px;
  }
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con06 .con-area div p {
    font-size: 40px;
    width: 380px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .con-area div p {
    font-size: 20px;
    padding: 14px 0;
    width: 200px;
  }
}

.content-wrap #con06 .con-area div p span {
  color: #d01f1f;
}

.content-wrap #con06 .con-area .ing-area {
  position: relative;
}

.content-wrap #con06 .con-area .ing-area .rota {
  animation: spin 10s linear infinite;
}

.content-wrap #con06 .con-area .ing-area .cen_img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.content-wrap #con06 .con-area .ing-area .cen_img img {
  position: absolute;
  top: 48% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .con-area .ing-area .cen_img img {
    max-width: 140px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1300px) {
  .content-wrap #con06 .con-area .ing-area {
    order: 3;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .con-area .ing-area {
    width: 193px;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 .con-area .left {
    position: absolute;
    left: -70px;
    top: 0;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .con-area .left {
    left: -50px;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 .con-area .left p {
    padding-left: 40px;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 .con-area .right {
    position: absolute;
    right: -70px;
    top: 0;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con06 .con-area .right {
    right: -50px;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con06 .con-area .right p {
    padding-right: 40px;
  }
}

.content-wrap #con07 {
  background: url("../img/con7_bg1.png") no-repeat center top;
  background-size: cover;
  padding-top: 150px;
  position: relative;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con07 {
    background: url("../img/con7_bg1m.png") no-repeat center top;
    background-size: cover;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 {
    padding-top: 80px;
  }
}

.content-wrap #con07 .con-area {
  width: 1200px;
  margin: 0 auto;
  background: url("../img/con7_bg2.png") no-repeat center;
  background-size: cover;
  padding: 45px 45px 510px;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con07 .con-area {
    width: 100%;
  }
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con07 .con-area {
    background: url("../img/con7_bg2m.png") no-repeat center top;
    background-size: cover;
  }
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con07 .con-area {
    padding-bottom: 350px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area {
    padding: 22px 0 220px;
  }
}

@media screen and (max-width: 400px) {
  .content-wrap #con07 .con-area {
    padding-bottom: 170px;
  }
}

.content-wrap #con07 .con-area .top {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con07 .con-area .top {
    flex-direction: column;
    align-items: center;
    gap: 49px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top {
    gap: 25px;
  }
}

.content-wrap #con07 .con-area .top .left {
  position: relative;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con07 .con-area .top .left {
    text-align: center;
    width: 100%;
  }
}

.content-wrap #con07 .con-area .top .left dl {
  margin-bottom: 140px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .left dl {
    margin-bottom: 75px;
  }
}

.content-wrap #con07 .con-area .top .left dl dt {
  font-size: 37px;
  font-family: "Pretendard";
  font-weight: 800;
  margin-bottom: 14px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .left dl dt {
    font-size: 18.5px;
    margin-bottom: 7px;
  }
}

.content-wrap #con07 .con-area .top .left dl dd {
  color: #fff;
  font-family: "OKGUNG";
  font-size: 47px;
  background-color: #d01f1f;
  padding: 6px 10px;
  width: fit-content;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con07 .con-area .top .left dl dd {
    margin: 0 auto;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .left dl dd {
    font-size: 23.5px;
    padding: 5px;
  }
}

.content-wrap #con07 .con-area .top .left h3 {
  color: #d01f1f;
  font-size: 45px;
  margin: 5px 0;
  font-family: "OKGUNG";
  scale: 5;
  opacity: 0;
  left: 0;
  top: 127px;
  position: absolute;
  white-space: nowrap;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con07 .con-area .top .left h3 {
    left: 50%;
    transform: translateX(-50%) !important;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .left h3 {
    font-size: 32px;
    top: 66px;
  }
}

.content-wrap #con07 .con-area .top .left h3 span {
  font-size: 85px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .left h3 span {
    font-size: 45px;
  }
}

.content-wrap #con07 .con-area .top .left p {
  font-size: 38px;
  font-family: "MaruBuriBold";
  margin-bottom: 20px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .left p {
    font-size: 19px;
    margin-bottom: 13px;
  }
}

.content-wrap #con07 .con-area .top .left p:last-child {
  margin-bottom: 0;
}

.content-wrap #con07 .con-area .top .left p img {
  width: 43px;
  margin-right: 8px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .left p img {
    width: 21px;
    margin-right: 4px;
  }
}

.content-wrap #con07 .con-area .top .video {
  background-color: #ddd;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con07 .con-area .top .video {
    width: 100%;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .top .video {
    width: 90%;
  }
}

.content-wrap #con07 .con-area .top .video video {
  width: 100%;
}

.content-wrap #con07 .con-area .bottom>img {
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .bottom>img {
    width: 29px;
  }
}

.content-wrap #con07 .con-area .bottom p {
  font-size: 46px;
  font-family: "OKGUNG";
  margin: 15px 0 12px;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con07 .con-area .bottom p {
    font-size: 32px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .con-area .bottom p {
    font-size: 16px;
  }
}

.content-wrap #con07 .swiper {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 200%;
  height: 250px;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con07 .swiper {
    height: 178px;
    bottom: 50px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .swiper {
    height: 90px;
  }
}

@media screen and (max-width: 400px) {
  .content-wrap #con07 .swiper {
    bottom: 25px;
  }
}

.content-wrap #con07 .swiper .swiper-wrapper {
  display: flex;
  gap: 27px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .swiper .swiper-wrapper {
    gap: 10px;
  }
}

.content-wrap #con07 .swiper .swiper-wrapper .swiper-slide {
  width: 250px !important;
  height: 250px !important;
  display: contents;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con07 .swiper .swiper-wrapper .swiper-slide {
    width: 178px !important;
    height: 178px !important;
    display: contents;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .swiper .swiper-wrapper .swiper-slide {
    width: 90px !important;
    height: 90px !important;
    display: contents;
  }
}

.content-wrap #con07 .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con07 .swiper .swiper-wrapper .swiper-slide img {
    width: 178px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .swiper .swiper-wrapper .swiper-slide img {
    width: 90px;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con07 .desc-bot {
    width: 90%;
    left: 50%;
    transform: translateX(-50%) !important;
  }
}

.content-wrap #con08 {
  background: url("../img/con8_bg1.png") no-repeat center;
  background-size: cover;
  padding: 131px 0 150px;
  position: relative;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con08 {
    background: url("../img/con8_bg1_m.png") no-repeat center;
    background-size: cover;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 {
    padding: 60px 0 90px;
  }
}

.content-wrap #con08 .title img {
  width: 189px;
  margin: 0 auto 30px;
  display: block;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .title img {
    width: 84px;
    margin-bottom: 14px;
  }
}

.content-wrap #con08 .title h3 {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con08 .title h3 {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .title h3 {
    gap: 5px;
  }
}

.content-wrap #con08 .title h3 p {
  font-size: 60px;
  font-family: "OKGUNG";
  position: relative;
  padding-left: 190px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .title h3 p {
    font-size: 26.8px;
    padding-left: 86px;
  }
}

.content-wrap #con08 .title h3 p span {
  color: #d01f1f;
  scale: 5;
  opacity: 0;
  left: 0;
  position: absolute;
}

.content-wrap #con08 .title h3 p:last-child {
  padding-left: 240px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .title h3 p:last-child {
    padding-left: 115px;
  }
}

.content-wrap #con08 .swiper {
  margin-top: 60px;
  position: relative;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .swiper {
    margin-top: 25px;
  }
}

.content-wrap #con08 .swiper .swiper-wrapper {
  display: flex;
  align-items: center;

}

.content-wrap #con08 .swiper .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 26.1%;
}

@media screen and (max-width: 991px) {
  .content-wrap #con08 .swiper .swiper-wrapper .swiper-slide {
    padding-top: 42%;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .swiper .swiper-wrapper .swiper-slide {
    padding-top: 45.5%;
  }
}

@media screen and (max-width: 500px) {
  .content-wrap #con08 .swiper .swiper-wrapper .swiper-slide {
    padding-top: 41%;
  }
}


.content-wrap #con08 .swiper .swiper-wrapper .swiper-slide iframe {
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .swiper .swiper-wrapper .swiper-slide iframe {
    border-radius: 15px;
  }
}

.content-wrap #con08 .swiper .swiper-wrapper .swiper-slide-active iframe {
  opacity: 1;
}

.content-wrap #con08 .swiper .swiper-button-next,
.content-wrap #con08 .swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: url("../img/con8_img5.png") no-repeat center;
  background-size: 48px;
  content: "";
  cursor: pointer;
}

@media screen and (max-width: 639.98px) {

  .content-wrap #con08 .swiper .swiper-button-next,
  .content-wrap #con08 .swiper .swiper-button-prev {
    width: 24px;
    height: 24px;
    background-size: 24px;
  }
}

.content-wrap #con08 .swiper .swiper-button-prev {
  left: 22vw;
  transform: rotate(180deg);
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con08 .swiper .swiper-button-prev {
    left: 15px;
  }
}

.content-wrap #con08 .swiper .swiper-button-next {
  right: 22vw;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con08 .swiper .swiper-button-next {
    right: 15px;
  }
}

.content-wrap #con08 .swiper .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  margin-top: 43px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .swiper .swiper-pagination {
    gap: 5px;
    margin-top: 20px;
  }
}

.content-wrap #con08 .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #c4c4c4;
  border-radius: 50%;
  display: block;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con08 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
}

.content-wrap #con08 .swiper .swiper-pagination .swiper-pagination-bullet:nth-child(4),
.content-wrap #con08 .swiper .swiper-pagination .swiper-pagination-bullet:nth-child(5),
.content-wrap #con08 .swiper .swiper-pagination .swiper-pagination-bullet:nth-child(6) {
  display: none;
}

.content-wrap #con08 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #919191;
}

.content-wrap #con09 {
  background: url("../img/con9_bg.png") no-repeat center;
  background-size: cover;
  padding: 120px 0 125px;
}

@media screen and (max-width: 991.98px) {
  .content-wrap #con09 {
    background: url("../img/con9_bg_m.png") no-repeat center;
    background-size: cover;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 {
    padding: 74px 0 67px;
  }
}

.content-wrap #con09 .title {
  margin-bottom: 50px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .title {
    margin-bottom: 30px;
  }
}

.content-wrap #con09 .title h3 {
  color: #d01f1f;
  font-size: 72px;
  font-family: "OKGUNG";
  margin-bottom: 23px;
  text-align: center;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .title h3 {
    font-size: 31px;
    margin-bottom: 10px;
  }
}

.content-wrap #con09 .title p {
  color: #fff;
  font-size: 30px;
  font-family: "Pretendard";
  line-height: 36px;
  text-align: center;
  text-decoration: underline;
  text-underline-position: under;
  line-height: 1.5;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .title p {
    font-size: 12px;
  }
}

.content-wrap #con09 .title p span {
  font-weight: 700;
  color: #fff600;
  text-decoration-color: #fff600;
  text-decoration: underline;
}

.content-wrap #con09 .con-area {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

@media screen and (max-width: 1300px) {
  .content-wrap #con09 .con-area {
    flex-direction: column;
  }
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area {
    gap: 15px;
  }
}

.content-wrap #con09 .con-area>div {
  background-color: #fff;
  width: -webkit-fill-available;
}

.content-wrap #con09 .con-area>div h4 {
  background-color: #d01f1f;
  color: #fff;
  font-family: "Pretendard";
  font-size: 36px;
  font-weight: 700;
  padding: 19px 0;
  text-align: center;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area>div h4 {
    font-size: 18px;
    padding: 9px 0;
  }
}

.content-wrap #con09 .con-area>div .main-con {
  padding: 28px 32px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area>div .main-con {
    padding: 12px 15px;
  }
}

@media screen and (max-width: 349.98px) {
  .content-wrap #con09 .con-area>div .main-con {
    padding: 12px 5px;
  }
}

.content-wrap #con09 .con-area .left table {
  width: 100%;
}

.content-wrap #con09 .con-area .left table.body {
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-top: -15px;
}

.content-wrap #con09 .con-area .left table thead {
  border-bottom: 1px solid #111;
}

.content-wrap #con09 .con-area .left table thead tr th {
  color: #999999;
  font-size: 24px;
  font-weight: 700;
  font-family: "Pretendard";
  padding-bottom: 20px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .left table thead tr th {
    font-size: 12px;
    padding-bottom: 11px;
  }
}

.content-wrap #con09 .con-area .left table thead tr th:nth-child(1) {
  width: 20%;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .left table thead tr th:nth-child(1) {
    width: 15%;
  }
}

.content-wrap #con09 .con-area .left table thead tr th:nth-child(2) {
  width: 20%;
}

.content-wrap #con09 .con-area .left table thead tr th:nth-child(3) {
  width: 25%;
}

.content-wrap #con09 .con-area .left table thead tr th:nth-child(4) {
  width: 20%;
}

.content-wrap #con09 .con-area .left table tbody tr td {
  color: black;
  font-size: 24px;
  font-family: "Pretendard";
  text-align: center;
  margin: 19px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .left table tbody tr td {
    font-size: 12px;
    margin: 10px;
  }
}

.content-wrap #con09 .con-area .left table tbody tr td:nth-child(1) {
  width: 20%;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .left table tbody tr td:nth-child(1) {
    width: 15%;
  }
}

.content-wrap #con09 .con-area .left table tbody tr td:nth-child(2) {
  width: 20%;
}

.content-wrap #con09 .con-area .left table tbody tr td:nth-child(3) {
  text-align: left;
  width: 21%;
}

.content-wrap #con09 .con-area .left table tbody tr td:nth-child(4) {
  width: 20%;
}

.content-wrap #con09 .con-area .left table tbody tr td p {
  background-color: #cccccc;
  font-size: 24px;
  font-weight: 700;
  font-family: "Pretendard";
  color: #fff;
  padding: 10px 26px;
  border-radius: 20.5px;
  text-align: center;
  width: 111px;
  margin: 0 auto;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .left table tbody tr td p {
    width: 56px;
    padding: 5px 13px;
    border-radius: 10.25px;
    font-size: 12px;
  }
}

.content-wrap #con09 .con-area .left table tbody tr td p.ing {
  background-color: #d01f1f;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.content-wrap #con09 .con-area .left .table-body-wrap {
  height: 400px;
  overflow-y: auto;
  position: relative;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767.98px) {
  .content-wrap #con09 .con-area .left .table-body-wrap {
    height: 225px;

  }
}

.content-wrap #con09 .con-area .left .table-body-wrap::-webkit-scrollbar {
  display: none;
}

.content-wrap #con09 .con-area .right article {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article {
    gap: 8px;
    margin-bottom: 15px;
  }
}

.content-wrap #con09 .con-area .right article:last-child {
  margin-bottom: 0;
}

.content-wrap #con09 .con-area .right article.button {
  border: 3px solid #d01f1f;
  border-radius: 10px;
  padding: 14px 0;
  transition: all 0.5s;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article.button {
    padding: 9px 0;
    border-radius: 5px;
    border: 1.5px solid #d01f1f;
  }
}

.content-wrap #con09 .con-area .right article.button:hover {
  background-color: #d01f1f;
}

.content-wrap #con09 .con-area .right article.button:hover p {
  color: #fff;
}

.content-wrap #con09 .con-area .right article.button:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.content-wrap #con09 .con-area .right article.button button {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article.button button {
    gap: 4px;
  }
}

.content-wrap #con09 .con-area .right article.button p {
  font-size: 30px;
  font-weight: 700;
  font-family: "Pretendard";
  color: #d01f1f;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article.button p {
    font-size: 15px;
  }
}

.content-wrap #con09 .con-area .right article.button img {
  width: 24px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article.button img {
    width: 12px;
  }
}

.content-wrap #con09 .con-area .right article label {
  font-size: 24px;
  font-family: "Pretendard";
  width: 80px;
  text-align: justify;
  display: inline-block;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article label {
    font-size: 12px;
    width: 50px;
  }
}

.content-wrap #con09 .con-area .right article input,
.content-wrap #con09 .con-area .right article .select {
  width: 80%;
  padding: 19px 16px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 24px;
  font-family: "Pretendard";
}

@media screen and (max-width: 639.98px) {

  .content-wrap #con09 .con-area .right article input,
  .content-wrap #con09 .con-area .right article .select {
    width: 90%;
    padding: 9px;
    font-size: 12px;
  }
}

.content-wrap #con09 .con-area .right article input::placeholder,
.content-wrap #con09 .con-area .right article .select::placeholder {
  color: #bbbbbb;
  font-size: 24px;
  font-family: "Pretendard";
}

@media screen and (max-width: 639.98px) {

  .content-wrap #con09 .con-area .right article input::placeholder,
  .content-wrap #con09 .con-area .right article .select::placeholder {
    font-size: 12px;
  }
}

.content-wrap #con09 .con-area .right article .select {
  position: relative;
}

.content-wrap #con09 .con-area .right article .select::after {
  position: absolute;
  right: 12px;
  top: 28px;
  width: 13px;
  height: 7px;
  content: "";
  background: url("../img/con9_img2.png") no-repeat center;
  background-size: 13px 7px;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article .select::after {
    width: 6px;
    height: 4px;
    background-size: 6px 4px;
    top: 15px;
  }
}

.content-wrap #con09 .con-area .right article select {
  border: 0px solid;
}

.content-wrap #con09 .con-area .right article .call {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 80%;
  justify-content: space-between;
}

@media screen and (max-width: 639.98px) {
  .content-wrap #con09 .con-area .right article .call {
    width: 90%;
  }
}

.content-wrap #con09 .con-area .right article .call input,
.content-wrap #con09 .con-area .right article .call .select {
  width: 30%;
}

.content-wrap footer {
  background-color: #1c1c1c;
  padding: 63px 0;
}

@media screen and (max-width: 639.98px) {
  .content-wrap footer {
    padding: 32px 0;
  }
}

.content-wrap footer img {
  width: 188px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 639.98px) {
  .content-wrap footer img {
    width: 94px;
  }
}

.content-wrap footer p {
  color: #999999;
  font-size: 18px;
  line-height: 1.8;
  font-family: "Pretendard";
  margin-top: 45px;
  text-align: center;
}

@media screen and (max-width: 639.98px) {
  .content-wrap footer p {
    font-size: 9px;
    margin-top: 20px;
  }
}