
/* 
    Espresso: #2B1F1A
    Walnut: #3A2A24
    Cocoa: #4A342C
    Warm Stone (중간톤): #8C7A70
    Cream (배경): #F3EEE8
    Charcoal Brown: #2A2320
    Cool Mocha: #3C3230
    Taupe Brown: #6E625C
    Ash Beige: #B7ABA3
    Off White: #F6F4F1
    Bitter Chocolate: #2E1B16
    Chestnut (뮤트): #5A3A2E
    Cinnamon (절제된 웜): #7A5646
    Oat (배경): #E9DDCF
    Olive Gray (보조): #6A6B5E
    Dark Brown: #2B201B
    Soft Brown: #5B4339
    Sand: #D6C7B8
    Ink Navy(포인트): #1C2A3A
    Cool Gray: #A8A5A2최상의 교육 서비스
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2a2a2a;
    --accent-gold: #8B5A2B;
    --accent-gold2: #E3B358;
    --accent-light-gold: #8B5A2B;
    --gold-light: #E5B336;
    --accent-light-gold2: #E9DDCF;
    --accent-light-gold3: #E9DDCF;
    --accent-light-gold4: #aa7946;
    --grey-bg: #EBEEF3;
    --grey-bg-txt: #878B95;
    --accent-bronze: #a67c52;
    --text-light: #ffffff;
    --text-gray: #c0c0c0;
    --text-dark-gray: #808080;
    --wine-red: #8b2635;
    --coffee-brown: #3e2723;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-hard: 0 30px 80px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




html {
    scroll-behavior: smooth;
    font-size:clamp(15px, 2.5vw, 18px); line-height:1.6;
}

ul,
ul li {list-style:none;}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif !important;
  /*   background-color: var(--primary-dark); */
  /*   color: var(--text-light); */
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


text {    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}


body.pagearea {
 color: var(--text-light);
background-color: var(--primary-dark);
}


.all{
  min-width:1600px; width:100%;  padding:0 !important;
}


.width_area {max-width:1800px; margin-left:auto; margin-right:auto; width:90%;}


@media (max-width:1600px){
  body{ overflow-x:hidden; }
.all{
    width:1500px;
    transform: scale(calc(100vw / 1600));
    transform-origin: top left;
  }

  body{
    height: calc(100vh / (100vw / 1600));
  }
}



.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
	width:93%;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-light-gold));
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 20px var(--accent-gold);
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}



/*===================
header
================*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 2rem 0;
	/* background-color: var(--primary-dark); */
    transition: var(--transition-smooth);
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    position: relative; z-index:1;
}
.nav-brand  img {height:82px ; }
.nav-menu {
    display: flex; flex:1; 
    list-style: none; justify-content: center;
    gap: 0px 60px; align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: -0.3px;
}
.nav-menu > li > a {font-weight:700;}

.nav-toggle {z-index:1; border:none; background:none}
.menu svg {fill:#fff;  margin-top:10px;width:37px; height:37px; margin-left:30px;}



.nav-menu a:hover {
    color: var(--accent-gold2);
}

	.navbar.scrolled {
		background: rgba(0,0,0,0.6);
		backdrop-filter: blur(10px);
		padding: 20px 0px;
	}


@media (min-width:1024px) {
	.nav-menu > li{min-width:118px;}
	.nav-menu{ position: relative; }
	.nav-menu:hover::before{
	  content:"";
	  position:fixed;
	  width:100%;
	  left: 0;
	  right: 0;
	  top: 0;
	  height: 400px; 
	  background: rgba(10,10,10,1);
	  z-index: 0;
	}
	.nav-menu > li,
	.nav-menu li ul{ position: relative; z-index: 1; }
	  .nav-menu  > li  >  ul {
		position: absolute;
		top: calc(100% + 18px);
		left: 50%;
		transform: translateX(-50%);
		width:100%;
		display: block;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		padding: 14px 0px;
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	  }

	  .nav-menu:hover:{}
	  .nav-menu:hover  ul.sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
	  }

	  .nav-menu > li > ul >  li >  a {
		display: block;
		padding: 8px 0px;
		font-size: 15px; line-height:1.5;
		color: rgba(255,255,255,0.9);
	  }

	  .nav-menu > li > ul li a:hover {
		color: var(--accent-gold2);
	  }

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold2);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}




	}


@media (max-width: 768px) {
.nav-brand img { margin-top:15px;
  height: 52px;
}
.navbar {
    padding: 1rem 0;
}
	.navbar.scrolled  {padding:10px 0;}


}



/*===================
nav-overlay - PC 오버레이 전체메뉴
================*/

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none; 
 height:100vh;
 overflow:hidden;

}


.nav-overlay.active { display: block; }
.nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
}

.nav-overlay__panel {
left:auto; right:0; top:0;
width:100%; overflow:hidden;
  position: absolute;
  inset: 0;
  padding: 110px 24px 40px;
  background:var(--secondary-dark);
  backdrop-filter: blur(22px);
 height:100vh;
 overflow:hidden;

}

 .nav-overlay__panel:before{content:'Future Tourism Convergence Association';
  position: absolute; z-index:3; 
text-align:Center;
bottom:-50px;  left:50%; transform:translateX(-50%);
  text-align: center;
  font-size: 180px;
  font-weight: 600;
  line-height:1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-family: "Bebas Neue", sans-serif;
  mix-blend-mode: overlay;
  white-space: nowrap;
}


.nav-overlay__close {
  background:none;
  border:none;
  position: absolute;
  top: 54px;
  right: calc(4% + 20px);
  cursor: pointer;
}

.nav-overlay__close svg { width: 36px; height: 36px; color: #fff; }

.nav-overlay__menu .nav-menu {
  gap: 0px 24px; flex-direction:column;
   width:100%; padding:30px 30px;
}

.nav-overlay__menu .nav-menu > li {text-align:left;  gap:0px 30px; padding-bottom:26px;
padding-top:33px;  border-top:1px solid rgba(255,255,255,0.1); width:100%; display:flex;}
.nav-overlay__menu .nav-menu > li:nth-child(1) {border-top:none}

.nav-overlay__menu .nav-menu > li > a {width:200px; line-height:40px !impotant; font-size:26px !important;  }

.nav-overlay__menu .nav-menu ul.sub-menu { flex:1; display:flex; flex-wrap:wrap; gap:10px 40px;}
.nav-overlay__menu .nav-menu ul.sub-menu li a {line-height:26px !important; font-size:18px !important;}

 .nav-overlay__menu   .nav-menu:hover ul.sub-menu {transform: translateX(0%) translateY(0); }


.nav-overlay__menu .nav-menu:before {display:none}

.nav-overlay__menu .nav-menu > li > a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.nav-overlay__menu .nav-menu  li  ul {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}
 .icon-hamburger { cursor:pointer;}


/* nav-toggle SVG 토글(PC/모바일 공통) */
.nav-toggle .icon-close { display: none; }
.nav-toggle.active .icon-hamburger { display: none; }
.nav-toggle.active .icon-close { display: inline-flex; }

.nav-toggle svg { width: 37px; height: 37px; color:#fff; }





/* PC에서만 오버레이 사용 */
@media (max-width: 1024px) {
  .nav-overlay { display: none !important; }
  .nav-overlay.active { display: none !important; }
}


@media (max-width:1024px) {


    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }


  .nav-menu {
    position: fixed;
    top: 0px;  display:flex; 
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px); /* ✅ 100% 높이 */
    overflow-y: auto;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
	padding:0;
    transition: var(--transition-smooth);
  }
  .nav-menu > li > a {padding-left:30px !important; font-size:19px; }
  .nav-menu  li.submenu-open > a{color:var(--accent-gold2)}
  .nav-menu  li.submenu-open > a::after {content:''; position:relative; background:var(--accent-gold2);
  width:3px ;height:3px; border-radius:50%;}
  .nav-menu  li.submenu-open > a::hover{border:none;}

  .nav-menu.active { left: 0; }
  .nav-menu > li  { width:100%; border-top:1px solid rgba(255,255,255,0.1)}
  .nav-menu > li > ul { background:rgba(169, 169, 169, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .nav-menu > li.submenu-open > ul {
    max-height: 500px;
    opacity: 1;
  }

  .nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
  }

  .nav-menu {
    height:100vh;
    overflow-y: auto;
  }

  .nav-menu > li > ul {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease;
  }

  .nav-menu > li.submenu-open > ul {
    max-height: 500px;
    opacity: 1; display:flex; flex-wrap:wrap;
  }

  .nav-menu > li.submenu-open > ul > li {width:50%; padding-left:30px;  padding-block:7px;}
  .nav-menu > li.submenu-open > ul > li a {font-weight:300; font-size:16px;line-height:1.3;}

}


/*===================
fade-in-up (움직임 스타일)
================*/


.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up2{
  opacity: 0;
  transform: translateY(-40px);
}

.fade-in-up2.animateStart{
  animation: fadeInUp2 0.7s ease-out forwards;
}

@keyframes fadeInUp2{
  from{ opacity:0; transform: translateY(-40px); }
  to  { opacity:1; transform: translateY(0); }
}


@keyframes fadeInUp{
  from{ opacity:0; transform: translateY(-40px); }
  to  { opacity:1; transform: translateY(0); }
}


.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/***********
===============
layer_popup
==============
************/
	.layer_popup { position:fixed; text-align:center; z-index:9999999; } 
	.layer_popup .popimg {position:fixed; /* top:50%; left:50%; transform:translate(-50%,-50%); */  background:#fff; border:1px solid #ddd; top:150px; left:150px;
	BOX-SIZING:BORDER-BOX; PADDING:30PX 30PX; width:500px; box-shadow:50px 50px 50px rgba(0,0,0,0.6);}
	.layer_popup .popimg  div {background:#2f2977; box-sizing:border-box; padding:30px 30px;}

	.layer_popup .close_btn dt{float:left; overflow:hidden; font-size:12px; line-height:30px;}
	.layer_popup .close_btn dd{float:right; overflow:hidden; font-size:12px; line-height:30px;}  

	.layer_popup h3 {font-size:20px; line-height:30px; padding-bottom:10px; color:rgba(255,255,255,1)}
	.layer_popup h4 {border:none; background:none; padding:20px 20px; font-size:16px; line-height:30px; padding-bottom:10px; color:rgba(255,255,255,0.6); border-top:1px solid rgba(255,255,255,0.1); margin-top:20px;  font-weight:300;}
	.layer_popup .number dt{font-size:40px; line-height:50px; font-weight:600; color:#f9be0d;}
	.layer_popup .number dd{font-size:20px; line-height:30px; font-weight:400; color:#f9be0d; margin-bottom:20px}






/***********
===============
infields_wrap
==============
************/
.infields_wrap {gap: 25px; width:100%; overflow:hidden;display:flex; flex-wrap:wrap;}
.infields_wrap .all2{flex:1; padding:60px 60px; display:flex; flex-direction: column; gap:0;
justify-content: flex-end;height:670px;background:red; overflow:hidden;}
.infields_wrap .tiny {width:170px; height:670px;}

.infields_wrap .all2 h3 {font-size:30px; line-height:1; color:#fff;}
.infields_wrap .all2 h4 {color:#fff; OPACITY:0.9; font-size:26px; font-weight:400; line-height:1; padding-top:15px; padding-bottom:30px;}
.infields_wrap .all2 p {color:#fff; OPACITY:0.6;}







/***********
===============2026-02-06
footer
==============
************/

.footer {background:#f6f6f6;  padding-block:clamp(30px, 2.5vw, 90px) !important;
color:var(--secondary-dark);}

.mainbody .footer {backgroun:#fff;}


.footer .width_area {display:flex;   gap:20px 0px; flex-wrap:wrap;justify-content: space-between;  align-items: flex-end;}
.footer .logo {max-width:240px; width:40%; }
.footer .logo img {width:100%;}

.footer .fnb {display:flex; flex-wrap:wrap; gap:10px 26px; padding-bottom:20px;}
.footer .fnb { font-weight:600; line-height:1.5;   }
.footer .fnb .line {border-bottom:2px solid #1a1a1a;}
.footer .fnb svg {width:19px; height:19px; display:inline-block; padding-left:6px;}
.footer .foot-info {display:flex; flex-wrap:wrap; gap:6px 20px; font-size:clamp(14px, 2.5vw, 15px); line-height:1.2;opacity:0.6;}
.footer .fnb li {list-style:none; display:flex;   align-items: center; cursor:pointer;}

.footer .copryright-area {opacity:0.3; padding-top:40px; font-size:13px;}
.footer  .footer__sns {display:flex; flex-wrap:wrap; gap:10px;  padding-bottom:20px; display:none;}
.footer  .footer__sns div { cursor:pointer;
width:clamp(33px, 2.5vw, 48px);
height:clamp(33px, 2.5vw, 48px);
border: 1px solid rgba(15,15,15,.15); display:flex;
  border-radius: 4px; justify-content: center;
  align-items: center;}
.footer  .footer__sns {color:#fff;}
.footer  .footer__sns div  svg {opacity:0.9; max-width:70%; max-height:70%;}
.footer .intxt-sec {width:100%; display:flex; flex-wrap:wrap; gap:10px 50px;}








@media (max-width: 768px) {
    .container {
        padding: 0 35px;
    }


.navbar .container {width:100% !important;}

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }
    .section-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .network-grid {
        grid-template-columns: 1fr;
    }
    .education-grid {
        grid-template-columns: 1fr;
    }
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .stats-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .schedule-tabs {
        gap: 0.8rem;
    }

    .schedule-tab {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .education-card,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




/***********
===============
sub_titarea
==============
************/



.sub_titarea {
  text-align: center;
  background-color: rgba(0,0,0,0.4);
  background-blend-mode: darken;
  padding: 0;
  position: relative;
  overflow: hidden;  /* 추가 */
}


.sub_titarea::before {
  content: '';
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-color: rgba(0,0,0,0.4);
  background-blend-mode: darken;
  z-index: 0;
  animation: bgZoomOut 1.2s ease-out forwards;
}

.sub_titarea.bg_sub07:before {  background-image:url('/img/inbg01.gif');}
.sub_titarea.bg_sub02:before {  background-image:url('/img/inbg05.gif');}
.sub_titarea.bg_sub01:before {  background-image:url('/img/inbg02.gif'); }
.sub_titarea.bg_sub04:before {  background-image: url('/img/inbg03.gif');}
.sub_titarea.bg_sub06:before {  background-image: url('/img/inbg04.gif');}



@keyframes bgZoomOut {
  from { transform: scale(1.3); opacity: 0.7; }
  to   { transform: scale(1);    opacity: 1; }
}

.sub_titarea > * {
  position: relative;
  z-index: 1;
}


.sub_titarea  h3 {color:rgba(255,255,255,0.9); font-weight:500; 
font-size:clamp(30px, 5.5vw, 60px);}

.sub_titarea  h4 {color:rgba(255,255,255,0.6); font-weight:200;  text-align:center;
font-size:clamp(23px, 5.5vw, 40px); line-height:1; }


.sub_titarea ul {display:flex;  flex-wrap:wrap; }



@media (min-width: 1024px) {
.sub_titarea  h3 {padding-top:150px;}
.sub_titarea  h4 { padding-bottom:80px; }

	.sub_titarea ul {flex-direction:column; ; position:fixed; top:450px; left:0px; gap:2px 0px; z-index:10;}
	.sub_titarea ul li {text-align:left; }
	.sub_titarea ul li a{
	  font-size:16px; 
	  padding-left:30px;
	  position:relative;
	  color:#666;
	  line-height:2;
	  display:inline-block;             
	  padding-bottom:16px;               
	  transition: color .25s ease, font-size .25s ease, font-weight .25s ease;
	}

	.sub_titarea ul li.active a{
	  color:#1a1a1a;
	  font-weight:700;
	  font-size:18px;
	  padding-right:clamp(20px, 2vw, 80px);
	}

	/* 밑줄(라인) */
	.sub_titarea ul li a::before{
	  content:"";
	  position:absolute;
	  left:0px;                         
	  right:0;
	  bottom:6px;                    
	  height:2px;
	  background:#1a1a1a;
	  transform:scaleX(0);              
	  transform-origin:left bottom;        
	  transition: transform .35s ease;
	}

	.sub_titarea ul li.active a::before{
	  transform:scaleX(1);
	}

	.sub_titarea ul li a::after{
	  content:"";
	  position:absolute;
	  left:calc(100% - 31px);
	  top:0.35em;
	  width:5px; height:5px;
	  background:#1a1a1a;
	  border-radius:50%;
	  opacity:0;
	  transform:scale(.6);
	  transition: opacity .25s ease, transform .25s ease;
	}

	.sub_titarea ul li.active a::after{
	  opacity:1;
	  transform:scale(1);
	}

	.sub_titarea ul li:not(.active) a:hover{
	  color:#1a1a1a;
	}
	.sub_titarea ul li:not(.active) a:hover::before{
	  transform:scaleX(1); 
	}
}


@media (max-width: 1024px) {
.sub_titarea  h3 {padding-top:90px;}
.sub_titarea  h4 { padding-bottom:20px; }


.sub_titarea ul {gap:0px;justify-content: center; background:#1a1a1a;}
.sub_titarea ul li{flex:1; outline:1px solid rgba(255,255,255,0.2); min-width:50%; opacity:0.6; display:flex; padding-inline:3px; flex-wrap:wrap; align-items:center;}
.sub_titarea ul a {width:100%; color:#fff; line-height:1; display:block; padding-block:15px;}
	.sub_titarea ul li.active{border-bottom:3px solid #fff; opacity:1;}
	.sub_titarea ul li{border-bottom:3px solid transparent}

}



/***********
===============
inner_sub_wrapin
==============
************/

.inner_sub_wrapin {padding-left:calc(200px + 3%);  min-height:400px;
padding-block:clamp(40px, 5.5vw, 90px);
width:100%; padding-right:5%; }

@media (max-width: 1024px) {
.inner_sub_wrapin {padding-left:4%; padding-right:4%;}
}




/***********
===============
h3 - top_txt
==============
************/
/*     --accent-gold: #8B5A2B;
    --accent-gold2: #E3B358;
    --accent-light-gold: #8B5A2B; */
.top_txt { text-align:Center; padding-bottom:clamp(40px,2.5vw, 80px); line-height:1.3;
font-size:clamp(25px, 2.5vw, 60px); font-weight:600; letter-spacing:-2px;}
.top_txt strong {color:var( --accent-gold);position:relative;}
.top_txt strong:before{content:''; background:var(--accent-light-gold2);position:absolute; bottom:0; left:0; width:100%; height:8px;}


.top_txt.black{color:#fff;
background-repeat:no-repeat;
background-position:top center;
background-size:cover;
background-color:rgba(0,0,0,0.2);
background-blend-mode: darken;
}
.top_txt.black strong {color:var( --accent-gold2);}
.top_txt.black strong:before{content:''; background:var(--accent-gold2); opacity:0.6;}









/*===========================
모달팝업
===================================*/
.window2 {
	position: fixed !important;
background:rgba(0,0,0,0.1) !important;
	z-index: 2147483647;
width:100%; height:100%; top:0; left:0;
	box-sizing: border-box;
	margin: 0px !important;
	display: none;
}

.window2 .scrollarea {
	position: fixed !important;
	top:50% !important;
	left: 50% !important;
	max-width:800px; width: 90%; 
	transform: translate(-50%, -50%) !important;
}

.window2 .scrollarea .inner { 	background: #fff; 	max-width:1100px;
	width: 100%; 	overflow-Y: scroll !important;  overflow:hidden;
	 border-radius:20px;  margin-top:clamp(60px, 5.5vw, 87px);
	box-sizing: border-box;
	max-height: 80vh;
	padding-block:clamp(35px, 5.5vw, 60px);
	padding-inline:clamp(25px, 5.5vw, 50px);}

.window2 a.close {
	position:absolute; top:0px;  right:-10px;
	background: none; line-height:1;
	display: inline-block; z-index:10;  padding:10px;
}
.window2  a.close svg {stroke:#fff; width:clamp(40px, 5.5vw, 67px); height:clamp(40px, 5.5vw, 67px);}
.window2   .scrollarea {box-sizing:border-box;}
.window2   .scrollarea  h2 {font-size:clamp(20px, 5.5vw, 35px); border:none !important; color:#000; padding-right:70px; box-sizing:border-box; line-height:1.5;  margin-bottom:20px;font-weight:800; width:100%;}


.consent-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 8px 0 4px; }
.consent-table th, .consent-table td { border: 1px solid #ddd; padding: 7px 10px; vertical-align: top; }
.consent-table th { background: #f5f5f5; font-weight: 700; text-align: center; white-space: nowrap; }
.consent-date { font-size: 12px; color: #888; margin-top: 10px; }

/***** 웹 *****/
	@media (min-width: 1024px) {
}


/***** 패드 *****/
	@media (min-width:641px) and (max-width:1023px) {
}

/***** 모바일 *****/
	@media (max-width:640px) {


}

