@charset "UTF-8";

  
/* event */

#event>a>img {
  max-width: 100%;
}

.bg {
  background:#6A0DAD;
}

.event2 {
  text-align: center;
  padding: 100px 0 120px;
}

.event2 .title {
  display: block;
  padding-bottom: 60px;
}

/*지도*/
.join2 {
  width: 100%;
  position: relative;
  top: 0;
  text-align: center;
}

.join2 img {
  width: 1200px;
  left: 29.5%;
  position: relative;
}

/* 탑버튼 */
#myBtn {
  /*display: none;  Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 85px;
  /* Place the button at the bottom of the page */
  right: 20px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  /* background-color: #999;Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  /* padding: 10px; Some padding */
  /*border-radius: 5px;  Rounded corners */
  font-size: 14px;
  /* Increase font size */
  opacity: .9;
  background:none !important;


}

#myBtn:hover {
  /*background-color: #555;  Add a dark-grey background on hover */
}

#kakao_btn {
  position: fixed;
  /* Fixed/sticky position */
  bottom: 35px;
  /* Place the button at the bottom of the page */
  right: 20px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  cursor: pointer;
}

/* video */
.event2 {
  text-align: center;
  margin: 0 auto;
}

.event2 iframe {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  height: 600px;
}

/* map */
.join2 {
  max-width: 1200px;
  margin: 0 auto;
}

.join2 img {
  width: 100%;
  left: 0;
  position: none;
}

/* MAIN */
.signature-main {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  padding-bottom: 80px;
  overflow: hidden;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  color: #fff;
  background: #111;
}

.signature-bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/main/signature_main2.webp") no-repeat center center / cover;
  animation: bgZoom 6s ease-out both;
}

.signature-content {
  position: relative;
  z-index: 2;
  width: min(90vw, 1500px);
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(300px, 60vw, 420px);
}

.main-sub {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.25vw, 25px);
  font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.9s ease-out .35s forwards;
}

.signature-content h1 {
  margin: 0;
  font-size: clamp(33px, 4vw, 65px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.1em;
  color: #fff;
  opacity: 0;
  animation: fadeUp 0.9s ease-out .5s forwards;
}

.signature-content h1 span {
  color: #8157ff;
}

.main-date {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  max-width: 1500px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out .7s forwards;
}

.main-date strong {
  font-size: clamp(38px, 4.5vw, 65px);
  line-height: 1;
  font-weight: 700;
}

.main-date em {
  font-style: normal;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 500;
}

.main-date b {
  font-size: clamp(38px, 4vw, 72px);
  line-height: 1;
}

.main-info {
  margin-top: 18px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out .9s forwards;
}

.main-info p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 12px;
  font-size: clamp(17px, 1.3vw, 25px);
  font-weight: 700;
}

.main-info span {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  font-size: clamp(13px, .9vw, 17px);
  font-weight: 500;
}

.main-info small {
  font-size: clamp(13px, .85vw, 16px);
  color: rgba(255,255,255,.82);
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(250px, 20vw, 300px);
  height: clamp(62px, 4.8vw, 65px);
  margin-top: 24px;
  border: 3px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(17px, 1.15vw, 23px);
  font-weight: 600;
  transition: .3s;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.main-btn:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.signature-logo {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 5%;
  width: clamp(180px, 17vw, 340px);
  opacity: 0;
  animation: fadeDown 1s ease-out .25s forwards;
}

.signature-logo img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}


/* Tablet */
@media (min-width:769px) and (max-width:1024px){

    .signature-content{
        padding-top:34vh;
    }
}

@media (max-width: 768px) {
  .signature-bg { 
    background:
    url("../images/main/signature_main_m_bg.webp") no-repeat center top / cover;
  }
  .signature-content { 
    width: 90%;
    text-align: center;
    padding-top: clamp(450px, 60vw, 450px);
  }

  .signature-content h1 .point {
    color: #8157ff;
  }
  .main-sub { 
    margin-bottom: 5px;
  }
  .main-date { 
    display:block;
  }
  .signature-logo {
  top: 3%;
  right: 6%;
}

.main-info p { 
  display: block;
}
.main-btn {
  width:80%;
}

}
/* MAIN */

/* section2 -about */
.di-about {
  padding: 80px 20px 90px;
  text-align: center;
  background: #f8f5ef;
  overflow: hidden;
}

.di-about .title,
.di-about h3,
.benefit_wrap,
.benefit_wrap p {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s ease forwards;
}

.di-about .title {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.35;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
  animation-delay: 0.1s;
}

.di-about h3 {
  margin-bottom: 34px;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.6;
  font-weight: 500;
  color: #333;
  animation-delay: 0.28s;
}

.di-about h3 span {
  display: block;
}

.benefit_wrap {
  position: relative;
  width: min(92vw, 1220px);
  height: clamp(260px, 31vw, 430px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)),
    url("../images/ev/di_about_img.png") no-repeat center / cover;
  animation-delay: 0.48s;
}

.benefit_wrap p {
  position: absolute;
  top: 50%;
  width: 28%;
  transform: translateY(-35%);
  margin: 0;
  color: #d9a94f;
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 1.3;
  animation-name: fadeUpCenter;
}

.benefit_wrap p::before,
.benefit_wrap p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(34px, 4vw, 58px);
  height: clamp(58px, 7vw, 98px);
  background: url("../images/main/laurel.png") no-repeat center / contain;
  opacity: .9;
}

.benefit_wrap p::before {
  left: 0;
  transform: translateY(-50%);
}

.benefit_wrap p::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.benefit_wrap p span {
  display: block;
  margin-top: 4px;
  font-size: clamp(28px, 3vw, 54px);
  font-weight: 800;
}

.bene01 {
  left: 10%;
  animation-delay: 0.78s;
}

.bene02 {
  left: 50%;
  translate: -50% 0;
  animation-delay: 0.94s;
}

.bene03 {
  right: 10%;
  animation-delay: 1.1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpCenter {
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* 모바일 */
@media (max-width: 768px) {
  .di-about {
    padding: 60px 18px 70px;
  }

  .benefit_wrap {
    height: 58vw;
    min-height: 260px;
    background-position: center;
  }

  .benefit_wrap p {
    width: 31%;
    font-size: 11px;
  }

  .benefit_wrap p::before,
  .benefit_wrap p::after {
    width: 26px;
    height: 48px;
  }

  .benefit_wrap p span {
    font-size: 28px;
  }

  .bene01 {
    left: 4%;
  }

  .bene03 {
    right: 4%;
  }
}



@media screen and (max-width:1400px) {
  .event2 iframe {
      max-width: 800px;
      height: 500px;
  }

}