@charset "utf-8";
:root {
  --color-white-100: hsl(0, 0%, 100%);
  --color-white-200: hsl(0, 0%, 95%);
  --color-white-300: hsl(0, 0%, 85%);
  --color-white-400: hsl(0, 0%, 75%);
  --color-white-500: hsl(0, 0%, 88%);
  --color-white-600: hsl(0, 0%, 55%);

  --color-black-100: hsl(210, 17%, 36%);
  --color-black-200: hsl(210, 17%, 28%);
  --color-black-300: hsl(210, 17%, 22%);
  --color-black-400: hsl(210, 17%, 16%);
  --color-black-500: hsl(210, 17%, 8%);
  --color-black-600: hsl(210, 17%, 2%);

  --color-blue-100: hsl(212, 96%, 60%);
  --color-blue-200: hsl(213, 94%, 55%);
  --color-blue-300: hsl(217, 91%, 50%);
  --color-blue-400: hsl(221, 83%, 45%);
  --color-blue-500: hsl(224, 76%, 40%);
  --color-blue-600: hsl(219, 69%, 17%);


  --color-green-100: hsl(140, 96%, 70%);
  --color-green-200: hsl(140, 80%, 60%);
  --color-green-300: hsl(140, 90%, 40%);
  --color-green-400: hsl(140, 83%, 30%);
  --color-green-500: hsl(140, 76%, 20%);
  --color-green-600: hsl(171, 85%, 10%);
 

  --color-purple-100: hsl(233, 67%, 60%);
  --color-purple-200: hsl(233, 67%, 50%);
  --color-purple-300: hsl(233, 67%, 40%);
  --color-purple-400: hsl(233, 67%, 30%);
  --color-purple-500: hsl(233, 67%, 20%);
  --color-purple-600: hsl(233, 67%, 10%);


  --color-orange-100: hsl(25, 100%, 80%);
  --color-orange-200: hsl(25, 100%, 70%);
  --color-orange-300: hsl(23, 100%, 50%);
  --color-orange-400: hsl(17, 100%, 50%);
  --color-orange-500: hsl(10, 100%, 50%);
  --color-orange-600: hsl(5, 100%, 50%);


  --color-dahong-100: hsl(359, 100%, 70%);
  --color-dahong-200: hsl(359, 80%, 60%);
  --color-dahong-300: hsl(359, 80%, 50%);
  --color-dahong-400: hsl(359, 80%, 45%);
  --color-dahong-500: hsl(359, 80%, 40%);
  --color-dahong-600: hsl(359, 80%, 35%);


  --color-major-100: hsl(239, 54%, 50%);
  --color-major-200: hsl(239, 67%, 50%);
  --color-major-300: hsl(239, 60%, 40%);
  --color-major-400: hsl(239, 67%, 30%);
  --color-major-500: hsl(239, 67%, 20%);
  --color-major-600: hsl(239, 67%, 10%);


  
  --color-majorB-100: hsl(358, 100%, 70%);
  --color-majorB-200: hsl(358, 807%, 60%);
  --color-majorB-300: hsl(358, 67%, 50%);
  --color-majorB-400: hsl(358, 100%, 30%);
  --color-majorB-500: hsl(358, 80%, 25%);
  --color-majorB-600: hsl(358, 90%, 20%);


  --text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
  --text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
  --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
  --text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
  --text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);

--shadow-normal: 0px 5px 15px rgba(0,0,0,0.1);

--shadow-small: 0 3px 4px 0 rgba(0, 0, 0, 0.2),
    0 2px 3px 0 rgba(0, 0, 0, 0.06);
--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.4),
    0 2px 4px -1px rgba(0, 0, 0, 0.1);
--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.8),
    0 4px 6px -2px rgba(0, 0, 0, 0.8);
 
--t_majorcolor:#0a46ac;
--t_majorcolorB:#1f296f;
--t_majorcolorC:#187fc4;
 

 --t_bottom_colorA:#55585c;


 --t_gray100:#f7f7f7;
 --t_gray200:#9b9ea3;
 --t_gray300:#767c82;
 --t_gray400:#62686f;

}
  
.major_color{
	color: var(--t_majorcolor);
}

.major_colorB{
	color: var(--t_majorcolorB);
}
.colortest {
	display:inline-block;
	
}
.colortest span{
	display:block;
	width:100px;
	text-align:center;
	padding: 5px;
}

.test_color_major_100{background:  var(--color-major-100);}
.test_color_major_200{background:  var(--color-major-200);}
.test_color_major_300{background:  var(--color-major-300);}
.test_color_major_400{background:  var(--color-major-400);}
.test_color_major_500{background:  var(--color-major-500);}
.test_color_major_600{background:  var(--color-major-600);}


.test_color_majorB_100{background:  var(--color-majorB-100);}
.test_color_majorB_200{background:  var(--color-majorB-200);}
.test_color_majorB_300{background:  var(--color-majorB-300);}
.test_color_majorB_400{background:  var(--color-majorB-400);}
.test_color_majorB_500{background:  var(--color-majorB-500);}
.test_color_majorB_600{background:  var(--color-majorB-600);}


.test_color100{background:  var(--color-white-100); font-size: var(--text-tiny);}
.test_color200{background:  var(--color-white-200); font-size: var(--text-small);}
.test_color300{background:  var(--color-white-300); font-size: var(--text-base);}
.test_color400{background:  var(--color-white-400); font-size: var(--text-medium);}
.test_color500{background:  var(--color-white-500); font-size: var(--text-large);}
.test_color600{background:  var(--color-white-600); font-size: var(--text-tiny);}


.test_color_black_100{background:  var(--color-black-100);}
.test_color_black_200{background:  var(--color-black-200);}
.test_color_black_300{background:  var(--color-black-300);}
.test_color_black_400{background:  var(--color-black-400);}
.test_color_black_500{background:  var(--color-black-500);}
.test_color_black_600{background:  var(--color-black-600);}



.test_color_blue_100{background:  var(--color-blue-100);}
.test_color_blue_200{background:  var(--color-blue-200);}
.test_color_blue_300{background:  var(--color-blue-300);}
.test_color_blue_400{background:  var(--color-blue-400);}
.test_color_blue_500{background:  var(--color-blue-500);}
.test_color_blue_600{background:  var(--color-blue-600);}


.test_color_green_100{background:  var(--color-green-100);}
.test_color_green_200{background:  var(--color-green-200);}
.test_color_green_300{background:  var(--color-green-300);}
.test_color_green_400{background:  var(--color-green-400);}
.test_color_green_500{background:  var(--color-green-500);}
.test_color_green_600{background:  var(--color-green-600);}


.test_color_purple_100{background:  var(--color-purple-100);}
.test_color_purple_200{background:  var(--color-purple-200);}
.test_color_purple_300{background:  var(--color-purple-300);}
.test_color_purple_400{background:  var(--color-purple-400);}
.test_color_purple_500{background:  var(--color-purple-500);}
.test_color_purple_600{background:  var(--color-purple-600);}


.test_color_orange_100{background:  var(--color-orange-100);}
.test_color_orange_200{background:  var(--color-orange-200);}
.test_color_orange_300{background:  var(--color-orange-300);}
.test_color_orange_400{background:  var(--color-orange-400);}
.test_color_orange_500{background:  var(--color-orange-500);}
.test_color_orange_600{background:  var(--color-orange-600);}


.test_color_dahong_100{background:  var(--color-dahong-100);}
.test_color_dahong_200{background:  var(--color-dahong-200);}
.test_color_dahong_300{background:  var(--color-dahong-300);}
.test_color_dahong_400{background:  var(--color-dahong-400);}
.test_color_dahong_500{background:  var(--color-dahong-500);}
.test_color_dahong_600{background:  var(--color-dahong-600);}


#wrap{
		position: absolute;
		width:100%;
		height:100%;
		margin:0;
		padding:0;	 
}
 
 
.wrap{
		margin:0 auto;
		padding:0;
		width:96%;
		max-width:1500px;
		position:relative;
 	}
	.wrapB{
		margin:0 auto;
		padding:0;
		width:96%;
		max-width:1200px;
		position:relative;

 	}

.wide_wrap{
	margin:0 auto;
	padding:0; 
	position:relative;
	width:100%;
	}	

/*topmenu*/
#Header {
	position:absolute;
	z-index:200;
	width:100%;
	background:rgba(255,255,255,.0);   
	

}

 
#Header.topmenuOn{
	/*background:rgba(255,255,255,1);   */
	-webkit-transition: .2s; 
	transition:.2s;

	
	
}
 
 #Header:after{
	content:'';
	position:absolute;
	display:block;
	background:rgba(0,0,0,.1); 
	width:100%;
	height:0px;
	z-index:2;
}
#Header.topmenuOn:after{
	height:1px;
}
/*.sub #Header:after{
	content:'';
	display:block;
	background:rgba(0,0,0,.2);   
	width:100%;
	height:1px;
}*/
 
#Header .header_inner {
	position:relative;
	width:100%;
	background:none;
	border-radius:0px;
	margin:0px auto;
	padding:0;
	height:90px;
	z-index:20;
	-moz-transition: opacity 0.4s ease-in-out;
	-o-transition: opacity 0.4s ease-in-out;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
	 
	 
} 
 
 #Header.topmenuOn .header_inner {
	width:100%;
	transition: 0.4s;
		
 	 
}
.header_inner h1.logo {
	position:absolute;
	left:60px;
	top:50%;
	width:176px; 
	height:53px;
	margin-top:-27px;
	z-index:333;
	transition: 0.4s;
	 
}

.header_inner h1 > a {
	display:block;
	overflow:hidden;
	width:100%;
	height:100%;
	text-indent:-99900px;
	background:url(../image/logo_2024.png) 0 0 no-repeat;
	background-size:100%;
}

#Header.topmenuOn .header_inner h1 > a,
#Header.active .header_inner h1 > a{
	background:url(../image/logo_2024_on.png) 0 0 no-repeat;
	background-size:100%;
}
 
 

 /* gnb */
 

.mobileTopmenu{
		width:0%; 
		background:#fff;
		right:0; 
		position:fixed; 
		z-index:999999999;
		height:90px;
		transform:translateX(100%);
		-webkit-transition: .6s; 
		transition:.6s;

}

/* gnb */
 

 
#gnb {
	 
	padding:0;
	margin:0 auto;
	max-width:1600px;
	 position:relative;
	 -webkit-transition: .6s; 
	transition:.6s;
	text-align:center; 
	height:90px;
}
 @media(max-width:2000px){
	#gnb {
		 
		width: calc(100% - 380px);
		padding-left:60px;

		 
	}
 }
 

 
#gnb:after{
	display:block;
	clear:both;
	content:'';
	position:relative;
	margin:0;
	padding:0;
}
 
 
#gnb ul,
#gnb ul li,
#gnb ul li a{
		
		position:relative;
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		box-sizing:border-box
}
#gnb ul li a{display:block;}
 
#gnb > ul:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
#gnb > ul{display:inline-block;text-align:center; z-index:2; margin:0 auto;height:100%;width:100%; }
#gnb > ul > li{display:inline-block;width:20%;min-width:100px;max-width:200px;padding:0 0px;position:relative;margin-left:-4px;vertical-align:top;-webkit-transition: .6s; transition:.6s; }
 

#gnb > ul > li.first:before{background:none;display:none;}
#gnb > ul > li > a{display:block;color:#fff;font-size:18px;padding:30px 10px; z-index:100;letter-spacing:0px;font-weight:500;position:relative;width:100%;background:none;-webkit-transition: .6s; transition:.6s;}
	
#gnb > ul > li.hover > a{color:var(--t_majorcolor);;}

 

 
.topmenuOn #gnb > ul > li > a{ color:var(--color-black-300); }
.topmenuOn #gnb > ul > li.hover > a{color:var(--t_majorcolor);}
.topmenuOn #gnb > ul > li.hover > a{-webkit-transition: .6s; transition:.6s;}


 #gnb ul li ul{ 
	
	height:0;
	overflow:hidden;
	width:100%;
	margin:0px auto 0 auto;
	position:absolute;
	opacity:0;
	-webkit-transition: .5s; 
	transition:.5s
	

   }
 
 
  #gnb ul.hover li ul{
	 opacity:1;
	height:100%;
	min-height:190px;
	background:none;
	-webkit-transition: .5s; 
	transition:.5s;


 	 
	
  
}
 #gnb ul li.hover ul{
	/*background:rgba(255,255,255,1);*/
	-webkit-transition: .5s; 
	transition:.5s;
	 
 }


 
 

#gnb ul li ul li{position:relative;  width:100%;text-align: center; 	transform:translateY(0px);	-webkit-transform:translateY(0px); -webkit-transition: .5s; 	transition:.5s;}
#gnb ul li ul li:first-child {margin-top:20px;}
 #gnb ul li.hover > ul > li{ 	transform:translateY(0);	-webkit-transform:translateY(0);-webkit-transition: .5s; transition:.5s; }
#gnb ul li ul li a{display:inline-block; position:relative;padding:10px 3px;font-size:100%;line-height:1.1;text-decoration:none;color:var(--color-black-500);opacity:.8;font-weight:400;letter-spacing:-1px;}
	
#gnb ul li ul li:last-child > a,
#gnb ul li ul li.last-item > a{border-bottom:0}
#gnb ul li ul li:hover > a,
#gnb ul li ul li a:hover{color:var(--t_majorcolor);opacity:1;}

  .topmenuOn #gnb > ul > li > ul > li > a:after{
	display:block;
	content:'';
	position:relative;
	width:0;	
	height:2px;
	margin-top:5px;
	background:var(--t_majorcolor);
	-webkit-transition: .6s; 
	transition:.6s;
}
.topmenuOn #gnb > ul > li > ul > li:hover > a:after{
 	 
	width:100%;	
	-webkit-transition: .6s; 
	transition:.6s;
}



 
/*gnbback*/

 .gnb_back {
	position:absolute;
	left:0;
	top:0px;
	width:100%;
	height:0;	 
	background:rgba(255,255,255,.0); 
 	z-index:1;
	 -webkit-transition: .5s; 
	transition:.5s;
	}

 .gnb_back span{
		height:0;
		-webkit-transition: .5s; 
		transition:.5s;
	 }

 .gnb_back.active span{
	display:block;	
	width:100%;
	position:relative;
	height:100%;
	 -webkit-transition: .5s; 
	transition:.5s;
 }

 
 .gnb_back.active{
	
	height:300px !important;
	background:rgba(255,255,255,1); 
	 -webkit-transition: .5s; 
	transition:.5s;
	z-index:1;
	 

}
 
 
 

.Mgnb_back{
	display:none;
}
 

 /*lang*/
.header_utilarea {
	 
	position:absolute;  
	right:60px;
	z-index:2; 
	height:90px;
	top:50%;
	margin-top:-20px;
}


 .langarea {
	right:70px;
	padding:0px;
	vertical-align:top;
	position:absolute;
	height:100%;
	top:10px;
	 
 }
 
 

.allMenu{
	right:0px;
	padding:0px;
	vertical-align:top;
	position:absolute;
	height:100%;

}
.gnb_btn{
	position:relative;
	width:30px;
	height:38px;	 
	background:none;	 
	cursor:pointer;
	margin:0 auto;
	

}
.gnb_btn span{
	position:absolute;
	margin-left:0px;
	width:100%;
	height:2px; 
	background-color:#fff;
	 transition:all .2s ease-in-out;
	-webkit-transition:all .2s ease-in-out;
	left:0;

}
 
/*on*/
/*.sub .gnb_btn span,*/
.topmenuOn .gnb_btn span
{
	background-color: var(--color-black-500);
}
.gnb_btn span.mgb_top{
	top:10px;
	width:100%;

}
.gnb_btn span.mgb_mid{
	top:18px;
	width:100%;
	 

}
.gnb_btn span.mgb_bot{
	top:26px;
	width:100%;

}
.gnb_btn:hover span.mgb_top {
	width:100%;

}
 

.gnb_btn:hover span.mgb_bot{
	width:100%;

}

 
/* Responsive gnb */
.btn_nav {
  display: none;
}
@media (max-width: 1650px ){
	.header_inner h1.logo {
		left:40px; 
	}
	.header_utilarea {right:40px; }

}
 
@media (max-width: 1000px ){
	.allMenu{display:none;}
	
	#Header {
		position:fixed;
		
 	 }
	 .m_fixed #Header:after{
 		background:rgba(0,0,0,.3);   
 	}
	
	.m_fixed #Header {
		background:rgba(255,255,255,1); 
	}
	#Header .header_inner {
 		height:70px;
		width:100%;
		margin:0 auto;
		border-radius:0px;
 	} 
	 
	.header_inner h1.logo {
		padding-left:0px;
		left:10px; 
		width:140px; 
		margin-top:-25px;
		z-index:2
	}
	.m_open .header_inner h1.logo{
		
		display:block;
		
	}
 
	
 
	
	
 
     .m_fixed .header_inner h1 > a 
	{
		background:url(../image/logo_2024_on.png) 0 center no-repeat;
		background-size:100%;
	}
 	.header_inner h1 > a
	 
	{
		background:url(../image/logo_2024.png) 0 center no-repeat;/*Èò»ö*/
		background-size:100%;
	}



	  .gnb-wrap{
			max-width:100%;

		}


	.mobileTopmenu{
		width:0%;  position:fixed; z-index:999999999;height:100%;transform:translateX(100%);
	}
 
	.m_open .mobileTopmenu{
		  
		 transform:translateX(0%); 
		 width:50%;min-width:300px;
		 -webkit-transition: .6s; transition:.6s;
	}	
	

 .m_open .mobileTopmenu.on .mlogo{text-align:center;padding:10px 0px 20px 5px;}
 .m_open .mobileTopmenu.on .mlogo img{ max-width:90%;}
 
#gnb {padding:0px;width: 100%;margin: 0 auto 0 0; position:absolute;height:100%;  z-index:1;}
.m_open #gnb {z-index:10;}

#Header.topmenuOn #gnb,
#gnb.hover{width: 100%;margin: 0 0 0 0;-webkit-transition: .6s; transition:.6s}

#gnb > ul{width:0%;padding-top:50px;padding-left:0px; background:#fff;right:0;top:80px; position:fixed; z-index:999999999;height:100%;transform:translateX(100%);}
.m_open #gnb > ul{ transform:translateX(0%); width:50%;min-width:300px;-webkit-transition: .6s; transition:.6s;}
 
#gnb > ul{text-align:left;}
#gnb ul li{ display:block;margin:0;width:100%; max-width:100%;text-align:center;padding:0;}
#gnb > ul > li:hover,
 .topmenuOn #gnb > ul > li {width:100%;}
#gnb ul li.first:before{display:block;content:''; width:100%;height:0px;position:relative;}
#gnb ul li.first{padding-top:0px;position:relative;border-top:0px solid #d7d7d7;}
 
 
#gnb > ul > li > a,
#gnb > ul > li.hover > a{font-size:22px;padding: 10px 10px}
 #gnb > ul > li > a{color:#333;}

#gnb > ul > li , 
#gnb > ul > li > a{ z-index:1;}

#gnb ul.hover li ul,
#gnb ul li ul{ 
	  overflow:hidden;
	  position: relative;
	  top: 0px;
	  left: 0px;
	  padding: 0px 0 0 0;
	  margin-top:0;
	  height:0;	  
	  z-index:2;	 
	   -webkit-transition: .6s; 
	   transition:.6s;
	   
  }
.mobleOn #gnb ul li.m_on > ul,
.m_fixed #gnb ul li.m_on > ul,
 #gnb ul li.m_on > ul {
 	 height:100%; 
	 opacity:1;
	 background:rgba(0,0,0,.05);
	 -webkit-transition: .6s; 
	 transition:.6s;

 
}
#gnb ul li ul li{text-align:center;height:0;-webkit-transition: .6s; transition:.6s;}
#gnb ul li.m_on {}
#gnb ul li.m_on ul li{height:auto;-webkit-transition: .6s; transition:.6s;}
#gnb ul li ul li:first-child {margin-top:0px;}
 


 

 
	.m_button{width:55px;height:100%;position:absolute;right:0;top:0;margin-top:0;cursor:pointer;  z-index:999999999999;}
	.m_button:after{position:absolute;top:50%;margin-top:-7px;right:20px;display:block;height:8px;width:20px;border-top:2px solid #fff;border-bottom:2px solid #fff;content:''}
	.m_button:before{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease;position:absolute;top:50%;margin-top:5px;right:20px;display:block;height:2px;width:20px;background:#fff;content:''}
	.m_button.menu-opened:after{-webkit-transition:all .3s ease;-ms-transition:all .3s ease;transition:all .3s ease; border:0;margin-top:0px;height:2px;background:#333;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}
	.m_button.menu-opened:before{background:#333;margin-top:0px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}


	.m_fixed .m_button:after{border-top:2px solid #636363;border-bottom:2px solid #636363;}
	.m_fixed .m_button:before{background:#636363;}
	.m_fixed  .m_button.menu-opened:after{border:0;background:#333;}
	.m_fixed 	.m_button.menu-opened:before{background:#333;}
  

	#gnb .submenu-button{position:absolute;z-index:999999;right:0;top:0;display:block;height:40px;width:46px;cursor:pointer;}
	#gnb .first .submenu-button{top:0px;}
	#gnb .submenu-button.submenu-opened{}
	#gnb ul ul .submenu-button{height:34px;width:34px}
	#gnb .submenu-button:after{position:absolute;top:0px;right:0px;width:34px;height:34px;display:block;color:#38447e;font-family: FontAwesome;font-size: 22px;	content: "\f105";}
	
	#gnb .submenu-button.submenu-opened:after{content: "\f107";}
 
 
 
	.m_open .Mgnb_back{
		display:block;
		position:fixed;
 		top:0px;
		width:100%;
		height:100%;
		 background:rgba(0,0,0,0.7);   
		 z-index:2;
	}
	 

	.header_utilarea {right:50px;height:70px;}

	
	  .langarea {
		right:20px;
		 
		 
		 
	 }
 
	 .langarea a {
		background:none;
	 }
	
  
	 
	  .gnb_back,
	  .gnb_back.active 
	   {
			display:none;
			height:0;
			height:0px !important;
			border-top:0;
	  }


	 
 	 
}



@media(max-width:340px){

	 .m_open .mobileTopmenu.on .mlange div a{margin: 0 10px;} 

}



 


 

/*footer*/
.main_btntop{
	display:none;
}
.sub_btntop{
	display:block;
}
.main .main_btntop{
	display:block;
}
.main .sub_btntop{
	display:none;
}

 .btn_up_layer {
	display:block;
	position:fixed;
	bottom:50px;
	right:60px; 
	z-index:33;
	height:50px;
	-webkit-transition: .3s; 
	   transition:.3s;
	 
	}

	.main #footer .btn_up_layer {display:none;}
	@media (max-width: 1650px ){
		.btn_up_layer {
			right:40px; 
		}
	}
	@media(max-width:1000px){
		.btn_up_layer {
			right:20px; 
		}
	}
	 .btn_up_layer.up{
		height:120px;
		-webkit-transition: .3s; 
	   transition:.3s;
	 }

 .btn_up_layer .talk{
 			width:30px;
			height:30px;
			background:#383c41;
			border-radius:100% 100%;
			margin-bottom:10px;
			padding:5px;
			-webkit-box-shadow: 0 0px 20px 0 rgba(0,0,0,0.21);
			-moz-box-shadow: 0 0px 20px 0 rgba(0,0,0,0.21);
			box-shadow: 0 0px 20px 0 rgba(0,0,0,0.21);
			  
 }
 
 .btn_up_layer  .talk span{
		display:block;
		text-align:center;
		padding:0px 0  0 0;

  }
   .btn_up_layer  .talk span img{
		max-width:100%;
   }


 .btn_up_layer .topup{
 			display:none;
			position:relative;
 			width:30px;
			height:30px;
			background:#fff;
			border-radius:100% 100%;
			color:#000;
			-webkit-box-shadow: 0 0px 20px 0 rgba(0,0,0,0.21);
			-moz-box-shadow: 0 0px 20px 0 rgba(0,0,0,0.21);
			box-shadow: 0 0px 20px 0 rgba(0,0,0,0.21);
	}


 .btn_up_layer  .topup span{
		display:block;
		text-align:center;
		padding:0px 0  0 0;

  }
   .btn_up_layer  .topup span:after{
		
		font-family: FontAwesome;
		content: "\f106";
		position:absolute;
		top:0;
		left:0;
		text-align:center;
		width:100%;
		height:100%;
		 
		line-height:1;
		padding:0;
		margin:0;
		margin-top:-1px;

		display:flex;
		justify-content: center;
		align-items: center;
 
   }


/*footer*/
 

/**/
#footer{
	clear:both;
	background:#1f2123;
	padding-top:60px;
	padding-bottom:60px;
	font-weight:500; 
	font-size:95%;
	color:var(--t_bottom_colorA);
 	 

}
#footer:after{
	clear:both;
	content:'';
	display:block;
	position:relative;
} 



.foot_contents{
	display:flex;
}
 

.foot_contents .leftcon{
	width:40%;	

}
 

.foot_contents .rightcon{
	width:60%;	

}



 #footer  .foot_box{
	margin-bottom:30px;
 }

  #footer  .foot_box strong{
		display:block;
		color:var(--color-white-100);
		font-size:110%; 
		margin-bottom:10px;
  }
    #footer  .foot_box.cscenter strong{
		font-size:100%; 
		opacity:.9;
	}
 #footer  .foot_box dl{
	position:relative;
	display:block;
	vertical-align:top;
	margin-right:0;
 }
 
  #footer .foot_box dl dt{
		position:absolute;
		left:0;
		top:0;
 }
   #footer .foot_box dl dd{
		position:relative;
		padding-left:43px;
   }
  #footer .foot_box dl dd:before{
		position:absolute;
		content:'';
		display:block;
		width:1px;
		height:10px;
		background:var(--t_bottom_colorA);
		left:35px;
		top:6px;
	 }

  #footer .footmenu{
	
  }
   #footer .footmenu ul.gnb_list {
		display:flex;	
		justify-content: space-between;
   }

   #footer .footmenu ul.gnb_list > li{
		
		 
   }
      #footer .footmenu ul.gnb_list > li a{
		color:var(--color-white-200);
		padding:10px;
		display:block;
	  }

	   #footer .footmenu ul.gnb_list > li  li a{
		color:var(--color-white-400);
		opacity:.8;
	  }

/**/
  .foot_contents_box{
	display:flex;
  }
 .foot_contents_box.copy{
	font-size:90%;
	width:40%;	
 }
 .foot_contents_box.sns{
	width:60%;	
	display:flex;
	justify-content: space-between;
}
 
 .foot_contents_box .policy {
	padding-left:10px;
 }
.foot_contents_box .policy a{
	color:var(--color-white-200);
}

.foot_contents_box.sns .snsarea{
	display:flex;
	justify-content: flex-end;
	align-items: center;
	 
}
.foot_contents_box.sns .snsarea a{
	 
	margin:0 7px;
	border-radius: 50% 50%;
	width:40px;
	height:40px;
	overflow:hidden;
	background:none;
	border: 1px solid rgba(255,255,255,.1);
	display:flex;
	justify-content: center;
 	align-items: center;
 	
}
.foot_contents_box.sns .snsarea a img{
	max-width:100%;
	width:50%;
}

@media(max-width:1000px){
	  .foot_contents{
		flex-wrap: wrap;
	 } 
	 .foot_contents .leftcon{
		width:100%;
		flex-basis: 100%;
	}
	 .foot_contents .rightcon{
		display:none;
		width:100%;	
		flex-basis: 100%;
	}
	#footer .footmenu ul.gnb_list{
		flex-wrap: wrap;
	}
	#footer .footmenu ul.gnb_list > li{
		width:100%;	
		flex-basis: 100%;
		 
   }

	.foot_contents .foot_contents_box{
		width:100%;	
		flex-basis: 100%;
 	}
	.foot_contents_box.copy{
		margin-top:0px;
	}
	.foot_contents_box.policy{
		text-align:left;
	}
	.foot_contents_box.sns .snsarea{
	 
		justify-content: center;
		 
		margin-top:20px;
		 
	}

 }


 /*modal*/
.modalPop-box{
  position:relative;
  top:0;
  z-index:9999;
}
.modalPop-box.active{
  background: rgba(0,0,0,0.7);
  position:fixed;
  width:100%;
  height:100%;
  top:0px;
}
.modalPop-box, .modalPop-box_in{
		-webkit-transition: opacity 0.5s ease 0.5s;
		-moz-transition: opacity 0.5s ease 0.5s;
		-o-transition: opacity 0.5s ease 0.5s;
		-ms-transition: opacity 0.5s ease 0.5s;
		transition: opacity 0.5s ease 0.5s;
	}

 
 .modalPop-box_in{
		width:85%;
		max-width:1000px;
		position:relative;
		 
		margin:90px auto 0 auto;
		background:#fff;
		 
		 
	}

	.modalPop-close{
		position:absolute;
		right:10px;
		top:10px;
		z-index:99

	}

	.modalPop_content{
		padding:30px;
	}
 

	.modalPop_content_in #local_name{
		text-align:center;
		font-weight:500;
		font-size:35px;
		display:block;
		padding:30px;
		 
	}

	.modalPop_content_in #mapaddress{
		text-align:center;
		font-weight:500;
		font-size:18px;
		display:block;
		padding:10px;
		 
	}

@media(max-width:1000px){
		
		.modalPop-box_in{
			width:100%;
			margin-top:30px;

		}
		.modalPop_content{
				padding:3px;
			}
}
 


/*allmenubox*/

.allmenubox{
	position:relative;
	margin-top:90px;
}
.allmenubox   ul.gnb_list > li {
	border-bottom: 1px solid rgba(0,0,0,.1);
	padding:10px;
	 
}
.allmenubox   ul.gnb_list > li > a{
	font-size:200%;
	font-weight:500;
	width:300px;
	
	display:inline-block;
}
.allmenubox   ul.gnb_list > li > a:hover{
 	color: var(--t_majorcolor);
}
.allmenubox   ul.gnb_list > li  ul {
	display:inline-block;
	width: calc(100% - 330px);
}
.allmenubox   ul.gnb_list > li  ul li{
	display:inline-block;
	padding:30px 40px;


}
.allmenubox   ul.gnb_list > li  ul li a{
	font-size:120%;
	font-weight:500;
}
.allmenubox   ul.gnb_list > li  ul li a:hover{
	color: var(--t_majorcolor);
}