/*
@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

		*{font-family: "Noto Sans KR", sans-serif;}
		body {margin:0; padding:0; background:#000000}
		img {}
		h1 {color:#ffffff; text-align:center; margin: clamp(50px, 5vw, 100px); font-size: clamp(1.3rem, 3vw, 2.5rem);}
		
		h2 {color:#ffffff; text-align:center; font-size: clamp(1rem, 1.5vw, 1.5rem); font-weight:400}
		
		form {display:block; max-width:960px; width:90%; margin:0 auto; margin-bottom:100px;}
		input[type="email"] {
            width: 100%;
            padding: 12px 14px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 15px;
            box-sizing: border-box;
            transition: border-color 0.3s;
        }

        input[type="email"]:focus {
            border-color: #007BFF;
            outline: none;
        }

        button {
            padding: 12px 20px;
            background: #007BFF;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
	  width:100%;
	  margin:10px 0 0 0;
        }

        button:hover {
            background: #0056b3;
	  border:1px solid #0056b3;
        }
        /* 기본 체크박스 숨기기 */
input[type="checkbox"] {
  /* 숨기기 */
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* 체크박스 커스텀 박스 스타일 (라벨에 적용) */
input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  line-height: 30px;

}

dl {display:table; padding:30px 0 30px 0; border-bottom:1px solid #222222; width:100%;}
dt {width:30%; float:left;  line-height:1.7; color:#cccccc; font-weight:bold}
dd i {margin-right:0px; width:30px;}
dd {width:70%; float:right; line-height:1.7;}

h90 {color:#3399FF; font-size:0.9rem !important; display:block; margin:10px 0 10px 0}
h90:before {color:#3399FF; font-family: "Font Awesome 5 free"; content: "\f058"; margin-right:10px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-weight:bold;}

.submit {
  width: 90%;
  margin: auto;
  max-width: 1000px;
  display: flex;
  gap: 50px;
  margin-top:100px;
  margin-bottom:100px;
}

.submit button {
  flex: 1;
  aspect-ratio: 1 / 1; /* 1:1 비율 유지 */
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 10px;
  font-size:1.2rem;
}
.submit button i {font-size:2rem; text-align:center; display:block; margin-bottom:20px;}


dl:first-child {padding:0px 0 20px 0;}
/* 체크박스 모양 만들기 */
input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 0px solid #999;
  border-radius: 4px;
  background: white;
  box-sizing: border-box;
  transition: background-color 0.3s, border-color 0.3s;
}

/* 체크되었을 때 스타일 */
input[type="checkbox"]:checked + label::before {
  background-color: #0062cc;
  border-color: #0062cc;
}

/* 체크 아이콘 (체크 표시) */
input[type="checkbox"] + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s;
}

/* 체크되었을 때 체크 표시 보임 */
input[type="checkbox"]:checked + label::after {
  opacity: 1;
}
label {color:#ffffff}
	
	

  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-size:22px;
    }
    body, html {
      height: 100%;


    }

    /* 헤더 스타일 */
    .header {
      position: relative;
      top: 0;
      width: 100%;
      padding: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 20;
      transition: background 0.3s, color 0.3s;
    }
    
     .logo a {color:#ffffff; text-decoration:none; font-weight:bold}
 .header.scrolled .logo a {color:#000000;}
    /* 기본 상태 */
    .header.default {
      background-color: transparent;
      color: white; /* 기본 메뉴 글자색 흰색 */
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    /* 스크롤 시 상태 */
    .header.scrolled {
	     position: fixed;
      top: 0;
      background-color: #ffffff !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      color: #000 !important;
            padding: 20px 50px 20px 50px;
    }

    .header.scrolled .menu div,
    .header.scrolled .logo {
      color: #000 !important;
    }
     .header.scrolled .logo img {height:20px}
    .header.scrolled .menu div span{
    
          background: #eeeeee;
}
    /* 메뉴 기본 글자색 흰색 */
    .menu div,
    .logo {
      color: white;
      transition: color 0.3s ease;
      cursor: pointer;
    }
        .logo img {height:30px}

    .menu {
      display: flex;
      gap: clamp(30px, 6vw, 100px);
      font-weight: bold;
      font-size: clamp(14px, 1vw, 20px);
    }
    
 .menu div:last-child {margin-right:50px}
    
           .header .menu a { font-size:13px; text-decoration:none; color:#ffffff; border:1px solid #ffffff; display:block; float:left; height:35px; width:80px; text-align:center; line-height:32px;}
       .header .menu a.on {background:#ffffff; color:#000000}
        
             .header.scrolled .menu a {color:#000000; border:1px solid #000000;}
	   .header.scrolled .menu a.on {background:#000000; color:#ffffff}

    .swiper {
      width: 100%;

    }
    
    .mySwiper {height:auto;padding:200px 0 0px 0}
    .mySwiper img {display:block; margin:0 auto}
    .mySwiper h4 img {width:clamp(300px, 50vw, 1000px);}
        .mySwiper h4 {margin:0 0 50px 0}
        
    .mySwiper h2 img {width:clamp(250px, 30vw, 800px);}
        .mySwiper h3 img {width:clamp(300px, 40vw, 800px);}
    
    .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
    }

    /* 오버레이 */
    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    /* 슬라이드 안 텍스트 */
    .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      color: white;
      z-index: 2;
      width:70%;

    }

    .slide-content h1 {
      font-size: 60px;
      font-weight: 900;
    }

    .slide-content p {
      font-size: 20px;
      margin: 30px 0;
    }

    .slide-content button {
      background: white;
      color: black;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 50px;
    }
.slide-content button i {margin:0 0 0 20px}
    /* Swiper 기본 컨트롤 스타일 수정 */
    .swiper-button-prev,
    .swiper-button-next {
      color: white;
      z-index: 3;
    }
    
    .swiper-button-prev {left:5%}
    .swiper-button-next {right:5%}

    /* 숫자형 인디케이터 */
    .custom-pagination {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 14px;
      font-weight: bold;
      z-index: 3;
      background: rgba(0, 0, 0, 0.8);
      padding: 5px 30px 7px 30px;
      border-radius: 20px;
    }
  
  
  .sponsor-slider-wrapper {
    overflow: hidden;
    width: 100%;
    background: #;
    border-top: 1px solid #222222;
   padding: clamp(20px, 5vw, 50px);
    text-align:center
  }



  .sponsor-slider-wrapper img {
max-height: 40px;
max-width:100%;


  }

  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .sponsor-slider-inner {
    display: flex;
  }
  
  
  /* Footer 전체 영역 */
.footer {
  background-color: #666;
  color: #fff;
  padding: clamp(30px, 5vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;

  font-size: clamp(12px, 14px, 16px);
}

/* 좌측: 로고 및 SNS */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: clamp(10px, 5vw, 30px);
}

.footer-logo img {max-height:50px; max-width:60%}

.footer-sns {
  display: flex;
  gap: clamp(10px, 5vw, 30px);
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #666;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.footer-sns a:hover {
  background-color: #ccc;
}

/* 우측: 주소 및 정보 */
.footer-right {
  text-align: right;
  font-size: 1.1em;
  line-height: 1.8;
}

.footer-right b {
  font-weight: bold;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* 하단 문구 */
.footer-copyright {
  margin-top: 15px;
 font-size: 0.8em;
  color: #ccc;
}



  
  
  
   .rotating-bg-wrapper {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
    }

    .rotating-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150%;
      height: 150%;
      background-image: url('/2025/img/bg1.png'); /* ✅ 이미지 경로 */
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      transform: translate(-50%, -50%);
      animation: rotateBg 60s linear infinite;
    }

    @keyframes rotateBg {
      0% {
        transform: translate(-50%, -50%) rotate(0deg);
      }
      100% {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }
    
    
 #privacyInfo {margin-top:10px; width:calc(100% - 0px); padding:20px !important; background:#ffffff; border-radius:10px;}
    #privacyInfo * { font-size: clamp(0.7rem, 1vw, 0.8rem);}
     #privacyInfo ul {margin-left:20px}
          #privacyInfo {color:#666666}
	
	
	.container {
      display: flex;
      flex-wrap: wrap;
      padding: 0px;
      max-width: 960px;
      margin: 0 auto;
      margin-top:100px;
      margin-bottom:100px;
	
    }



    .section {
      border-top: 1px solid #3399FF;
      padding-top: 50px;
      margin-top: 50px;
      color:#ffffff;
      word-break: keep-all;
      width:100%;
    }
    
        .section div {line-height:1.7; padding-top:20px;}
   .section div b {display:block}
   
   .section div a {display:block; color:#ffffff; margin:10px 0 10px 0}
      .section div a i {margin-right:10px}
      
      
    .section:first-child {
      border-top: none;
      padding-top: 0;
      margin-top: 0;
    }

.container h2 {
      background-color: #3399FF;
      font-size: 1.2rem;
      font-weight:bold;
      margin-bottom: 20px;
      height:60px; border-radius:60px;
      color:#ffffff;
      padding:0 50px 0 50px;
      width:auto;
      line-height:60px;
      display: inline-block;
    }
    .container h2 i {margin-right:20px}
       .mail {display:table; margin-bottom:30px} 
    .mail h2 {float:left}
.mail a { height:60px; line-height:60px; float:left; margin-left:30px; color:#ffffff}
.mail a i {margin-right:10px}

    .highlight {
      color: #ffffff;
      font-weight: bold;
    }

    .purple {
      color: #c678dd;
    }

    .link, .email {
      color: #3399FF;
      text-decoration: none;
    }

    .bottom-section {
      border-top: 1px solid #3399FF;
      margin-top: 50px;
      padding-top: 50px;
    }
    
    .container button {text-align:center !important; margin:0px; height:70px; font-size:1.1rem}
    .container h5 {color:#ffffff; margin-bottom:100px; text-align:center !important; width:100% !important}
        .container h5 i {margin-right:10px}
        
        
        .popup {position:absolute; top:100px; left:50%; z-index:999; width:600px; margin-left:-300px;}
.popup img {width:100%; display:block; float:none; border-radius:0px; margin-bottom:0px; margin-top:0px;}
.popup img:first-child {margin-top:0px;}
.popup a:nth-child(1) img {border-radius:0px}
.popup section {display:block; }
.popup section button {color:#000000; font-size:14px; font-weight:500; bottom:0px; width:50%; float:left; background:#ffffff; height:50px; border-radius:0px;}
.popup section button i {margin-right:5px; color:#000000; font-size:14px;}
.popup section button:last-child {border-left:1px solid #cccccc}
.popupbg {width:100%; height:100%; top:0px; left:0px; background:rgba(0,0,0,0.7); position:fixed; z-index:998;}

@media ( max-width: 1400px ) {
    .header {

      padding: 30px;

    }
        .header.scrolled {

            padding: 20px 30px 20px 30px;
    }
    
        .menu {
      display: flex;
      gap: clamp(30px, 6vw, 50px);
      font-weight: bold;
      font-size: 12px;
    }
    

    
     .menu div:last-child {margin-right:30px}
}
@media ( max-width: 1000px ) {
	* {font-size:14px}
	
	    .mySwiper {height:auto;padding:100px 0 0px 0}
	.header .logo img {height:15px}
	.header.scrolled .logo img {height:15px}
	.header { padding:30px}
	 .header.scrolled {padding:30px}
	
    .footer-right {
  text-align: left;
  font-size: 0.8em;
  line-height: 1.8;
    margin:30px 0 0 0;
}

           .header .menu a { font-size:13px; text-decoration:none; color:#ffffff; border:1px solid #ffffff; display:block; float:left; height:35px; width:80px; text-align:center; line-height:32px;}
       .header .menu a.on {background:#ffffff; color:#000000}
        
             .header.scrolled .menu a {color:#ffffff; border:1px solid #ffffff;}
	   .header.scrolled .menu a.on {background:#ffffff; color:#000000}

.container {
      
      padding: 0px;
      max-width: 80%;
      margin: 0 auto;
      margin-top:50px;
	margin-bottom:50px
    }
    
        .column {
      flex: 1;
      min-width: 100%;
      padding: 0px;
      box-sizing: border-box;
    }
    .container button {text-align:center !important; margin:0px; height:40px; font-size:1.1rem}

.container h2 {
      background-color: #3399FF;
      font-size: 1.2rem;
      font-weight:bold;
      margin-bottom: 0px;
      height:40px; border-radius:40px;
      color:#ffffff;
      padding:0 20px 0 20px;
      width:auto;
      line-height:40px;
      display: inline-block;
    }
    .mail a { height:40px; line-height:40px; float:left; margin-left:20px; color:#ffffff}
        .section {
      border-top: 1px solid #3399FF;
      padding-top: 30px;
      margin-top: 30px;
      color:#ffffff
    }
        .bottom-section {
      border-top: 1px solid #3399FF;
      margin-top: 30px;
      padding-top: 30px;
      
            border-bottom: 1px solid #3399FF;
      margin-bottom: 30px;
      padding-bottom: 30px;
    }
    
 .menu div:last-child {margin-right:0px}
     .header.scrolled .menu div {color:#ffffff !important;}
     .menu div {font-size:20px;}
     .submit {
  width: 90%;
  margin: auto;
  max-width: 1000px;
  display: flex;
  gap: 20px;
  margin-top:50px;
  margin-bottom:50px;
}
     
     dl {display:table; padding:20px 0 20px 0; border-bottom:1px solid #222222; width:100%;}
dt {width:100%; float:left;  line-height:30px; color:#cccccc; font-weight:bold}
dd i {margin-right:0px; width:30px;}
dd {width:100%; float:right; line-height:30px;}

h90 {color:#3399FF; font-size:0.9rem !important; display:block; margin:10px 0 10px 0}
h90:before {color:#3399FF; font-family: "Font Awesome 5 free"; content: "\f058"; margin-right:10px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-weight:bold;}

     ul {margin-left:20px}
     
     .popup {position:absolute; top:50px; left:10%; z-index:999; box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2), 0 20px 30px 0 rgba(0, 0, 0, 0.1); width:80%; margin-left:0px;}
.popup img {width:100%; display:block; float:left; border-radius:0px; margin-bottom:0px; margin-top:0px;}
.popup img:first-child {margin-top:0px;}
.popup a:nth-child(1) img {border-radius:0px}


.popupbg {width:100%; height:100%; top:0px; left:0px; background:rgba(0,0,0,0.7); position:fixed; z-index:998;}


.popupvi {height:auto}
.popupvi {width:auto; transform: translate(0%, 0%); margin-left:0px; left:10%;}

}