/* 초기화 start*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: #333;
	text-decoration: none;
}

img {
	width: 100%;
	/* height: 100%; */
	/* object-fit: contain; */
    border: none;
    /* max-width: 100%; */
	vertical-align: middle;
}

ul, ol, li {
	list-style: none;
}

html {

}
html>/**/body{overflow-y: scroll;}
html, body {
	padding: 0;
	margin: 0;
	width: 100%;
	/* height: 100%; */
	font-family: 'Roboto', 'Pretendard',sans-serif;
	font-weight: 400;
	word-break: keep-all;
	color: #222222;
}
html, body > * {
	letter-spacing: -0.01em !important;
}
body.no_scroll{
	overflow: hidden;
}
button {
	cursor: pointer;
	border: 1px solid transparent;
    font-family: 'Roboto', 'Pretendard',sans-serif;
	color: inherit;
	background-color: transparent;
}
input{
	font-family: 'Roboto', 'Pretendard',sans-serif;
}
select {
	font-family: 'Roboto', 'Pretendard',sans-serif;
}
textarea{
	font-family: 'Roboto', 'Pretendard',sans-serif;
}
caption {
	position: absolute;
    width:0px;
    height: 0px;
    overflow: hidden;
}
table{
	width:100%;
	table-layout:fixed;
	word-break:break-all;
	border-collapse:collapse;
	border-spacing:0;
}
i{
	font-style: normal;
}

*::after, *::before {
    box-sizing: border-box;
}
/* 초기화 end */



/* 폰트 start*/
@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'KIMM';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2212@1.0/KIMM_Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
@import		url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* 폰트 end */



/* layout start */
.inner_layout{
	position: relative;
    max-width: 1390px;
    margin: 0 auto;
}
@media screen and (max-width: 1760px){
}
@media screen and (max-width: 767px){
}
/* layout end */


/* header start*/
header{
    height: 110px;
	position: relative;
	z-index: 11;
	background-color: #fff;
	max-width: 1745px;
    width: 100%;
}
header .inner_layout{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
	max-width: 100%;
}
header .inner_layout h1 {
	width: 210px;
    margin-left: 50px;
	transition: 0.3s;
}
header .inner_layout .left h1 .logo{
	display: flex;
	align-items: center;
}
header .inner_layout .menuList{
    display: flex;
	align-items: center;
	height: 100%;
}
header .inner_layout .menuList > ul{
    display: flex;
    align-items: center;
    /* gap: 0px 50px; */
	position: relative;
}

header .inner_layout .menuList > ul > li {
	flex: 1 1 auto;
	padding: 0 5px;
}

header .inner_layout .menuList > ul > li > a{
    letter-spacing: 0px;
    font-size: 20px;
    font-family: 'Roboto', 'Pretendard',sans-serif;
    font-weight: 600;
	position: relative;
	color: #222222;
	transition: 0.3s;
	padding: 15px 20px;
}

header .inner_layout .menuList > ul {
	position: relative;
}

header .inner_layout .menuList > ul::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0px;
	background: #FFF;
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
	z-index: -1;
	opacity: 0;
	transition: height 0.1s ease, opacity 0.1s ease;
	pointer-events: none;
}

header .inner_layout .menuList > ul:hover::before {
	height: 155px;
	opacity: 1;
}

header .inner_layout .menuList > ul > li > a.active{
	color: #760004;
}
header .inner_layout .menuList > ul > li > a.active::after{
	content: "";
    position: absolute;
    width: 60px;
    height: 1px;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #760004;
}
header .inner_layout .menuList > ul > li > ul {
	display: inline-flex;
	justify-content: center;
    position: absolute;
    overflow: hidden;
    gap: 40px;
    top: 35px;
	left: 0;
    width: auto;
    height: 0px;

    z-index: 1;
    opacity: 0;
	padding: 27px 30px 0px;
	pointer-events: none;
}

header .inner_layout .menuList > ul > li:nth-child(1) > ul {
	left: -115px;
}
header .inner_layout .menuList > ul > li:nth-child(2) > ul {
	left: -70px;
}
header .inner_layout .menuList > ul > li:nth-child(3) > ul {
	left: 145px;
}
header .inner_layout .menuList > ul > li:nth-child(4) > ul {
	left: 270px;
}
header .inner_layout .menuList > ul > li:nth-child(5) > ul {
	left: 385px;
}

header.sub .inner_layout .right > ul > li > ul.sub_hide{
	display: none;
}
header .inner_layout .menuList > ul > li > ul.sub_hide{
	display: inline-flex;
    height: auto;
    opacity: 1;
	/* transform: translateX(80px); */
	pointer-events: initial;
}
header .inner_layout .menuList > ul > li > ul.sub_hide > li{
	white-space: nowrap;
}
header .inner_layout .menuList > ul > li > ul > li > a{
	position: relative;
	color: #666666;
	font-size: 18px;
	font-weight: 400;
	font-family: 'Roboto', 'Pretendard',sans-serif;
	display: inline-flex;
	align-items: center;
}

header .inner_layout .menuList > ul > li > ul > li > a > img {
	margin-left: 7px;
	width: 17px;
}
header .inner_layout .menuList > ul > li > ul > li > a:hover{
	color: #000;
	font-weight: 600;
}
header .inner_layout .menuList > ul > li > ul > li > a:hover::before{
	content: "";
	position: absolute;
	left: -13px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #760004;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}
@media screen and (max-width: 1400px){
	header .inner_layout h1 {
		margin-left: 30px;
	}
}

@media screen and (max-width: 1200px){
	header {
		height: 75px;
	}
}

@media screen and (max-width: 860px){
	header{
		height: 65px;
	}
	header .inner_layout{
		padding-left: 15px;
		padding-right: 15px;
	}

	header .inner_layout h1 {
		width: 170px;
		margin-left: 0px;
	}
}

@media screen and (max-width: 767px){
	header{
		position: sticky;
		top: 0;
	}
	header .inner_layout{
		box-shadow: 0px 0px 10px #0000001A;
	}
}
@media screen and (max-width: 1760px){
	header .inner_layout .menuList > ul{
		gap: 0px 60px;
	}
}
@media screen and (max-width: 1024px){
	header .inner_layout .menuList > ul{
		display: none;
	}
}
@media screen and (max-width: 860px){
	header{
		height: 65px;
	}
	header .inner_layout{
		padding-left: 15px;
		padding-right: 15px;
	}
	header .inner_layout .left{
		width: 178px;
	}
}

@media screen and (max-width: 600px){
	header {
        height: 55px;
    }

	header .inner_layout h1 {
        width: 160px;
    }
}
/* header end */


/* 햄버거 메뉴 start */
.hamburger_wrap{
	width: 46px;
	height: 46px;
	margin-right: 50px;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: 0.3s;
}
.hamburger_wrap .hamburger_btn {
	z-index: 3;
}
.hamburger_wrap .hamburger_btn,
.hamburger_wrap .hamburger_btn span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.hamburger_wrap .hamburger_btn {	
    position: relative;
    width: 100%;
	aspect-ratio: 1 / 1;
    background-color: transparent;
    border: 0px solid transparent;
}
.hamburger_wrap .hamburger_btn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	border-radius: 4px;
}
.hamburger_wrap .hamburger_btn span:nth-of-type(1) {
	top: -2px;
}
.hamburger_wrap .hamburger_btn span:nth-of-type(2) {
    top: 6px;
    left: auto;
    right: 0px;
    width: 70%;
}
.hamburger_wrap .hamburger_btn span:nth-of-type(3) {
	bottom: -2px;
}
.hamburger_wrap.active .hamburger_btn span:nth-of-type(1) {
	-webkit-transform: translateY (9px) rotate (-45deg);
	transform: translateY(9px) rotate(-45deg);
}

.hamburger_wrap.active .hamburger_btn span:nth-of-type(2) {
	opacity: 0;
}

.hamburger_wrap.active .hamburger_btn span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}
.hamburger_wrap.active .hamburger_btn span:nth-of-type(2){
	top: -3px;
}
.hamburger_wrap.active .hamburger_btn span:nth-of-type(3){
	bottom: -4px;
}
header.sub .hamburger_wrap .hamburger_btn span{
	background-color: #222222;
}

@media screen and (max-width: 1400px){
	.hamburger_wrap {
		margin-right: 20px;
	}
}

@media screen and (max-width: 860px){
	.hamburger_wrap {
        margin-right: 0px;
		width: 41px;
    }
}

@media screen and (max-width: 600px){
	.hamburger_wrap {
        width: 37px;
    }
}

.all_menu_plate{
    display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	top: -100%;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #F2F2F2;
	z-index: 4;
	opacity: 0;
	transition: opacity 0.3s;
	font-family: 'Roboto', 'Pretendard',sans-serif;
}
.all_menu_plate.active{
    display: flex;
    top: 0;
	opacity: 1;
}
.all_menu_plate .top_area{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-top: 41px;
	padding-bottom: 40px;
	padding-left: 70px;
	padding-right: 80px;
}
.all_menu_plate .bottom_area{
	width: 100%;
	display: flex;
    justify-content: center;
	margin: 120px 0 0;
	overflow-y: auto;
}
.all_menu_plate .logo{
	position: relative;
}
.all_menu_plate .close_btn{
		width: 40px;
	height: 40px;
}
.all_menu_plate ul.one{
	display: flex;
	justify-content: space-between;
	width: 1340px;
	font-size: 35px;
	font-weight: 700;
	margin: auto 0;	
	font-family: 'Roboto', 'Pretendard',sans-serif;
}
.all_menu_plate ul.one > li {
}
.all_menu_plate ul.one > li:nth-of-type(2) > ul > li > a{
	position: relative;	
	display: inline-flex;	
	align-items: center;
}
.all_menu_plate ul.one > li:nth-of-type(2) > ul > li > a::after{
	content: "";
	position: absolute;
	top: -1px;
	right: 0px;
	width: 20px;
	height: 20px;
	top: 2px;
	background: url(/user/corporation/images/common/common_icon_home.svg);
}

.all_menu_plate ul.one > li> ul > li > a > img {
	display: block;
    width: 23px;
    margin-left: 7px;
}

.all_menu_plate ul.one > li:nth-of-type(2) > ul.two > li:first-of-type > a::after{
	display: none;
}
.all_menu_plate ul.one > li > .one_depth_tit{
	display: inline-block;
	width: 100%;
	position: relative;
	color: #222;
}
.all_menu_plate ul.one > li > p.one_depth_tit{
	cursor: default;
}
.all_menu_plate ul.one > li > .one_depth_tit.active{
	position: relative;
}
.all_menu_plate ul.one > li > .one_depth_tit.active::before{
	content: "";
	width: calc(100% + 50px);
	height: 1px;
	background-color: #AE5D00;
	position: absolute;
	bottom: -1px;
	left: 0px;
}
.all_menu_plate ul.two{
	margin-top: 50px;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	gap: 30px 0px;
	font-family: 'Roboto', 'Pretendard',sans-serif;
	font-weight: 500;
}

.all_menu_plate ul.two > li {
	display: flex;
    flex-flow: column;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
}

.all_menu_plate ul.two > li > a{
	font-weight: 400;
	font-size: 23px;
	display: inline-flex;
	width: 100%;
	color: #222;
}
.all_menu_plate ul.two > li > a:hover {
	color: #760004;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 1px;
}
.all_menu_plate ul.two > li.active > a{
	font-weight: 500;
	color: #AE5D00;
}
.all_menu_plate ul.two > li.active ul.three > li.active > a{
	color: #AE5D00;
	font-weight: 500;
}
.all_menu_plate ul.three{
	margin-top: 18px;
	padding-left: 10px;
	font-size: 20px;
	font-weight: 300;	
	display: flex;
	flex-direction: column;
	gap: 12px 0px;
	font-family: 'Roboto', 'Pretendard',sans-serif;
}
.all_menu_plate ul.three li{
	
}
.all_menu_plate ul.three li a{
	display: inline-block;
	width: 100%;
	color: #555;
}

.all_menu_plate ul.three li a:hover {
	color: #000;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 1px;
}

@media screen and (max-width: 1760px){
	header .inner_layout .menuList > ul{
		gap: 0px 10px;
	}
}
@media screen and (max-width: 1480px){
	.all_menu_plate .top_area{
		padding: 30px 30px;
		padding-bottom: 50px;
	}
	.all_menu_plate ul.one{
		padding-left: 30px;
		padding-right: 30px;
	}
	
}

@media screen and (max-width: 1350px){
	.all_menu_plate ul.one > li > .one_depth_tit.active::before{
		width: 100%;
	}
	header .inner_layout .menuList > ul{
		gap: 0px 10px;
	}
}
@media screen and (max-width: 1200px){
	header .inner_layout .menuList > ul{
		display: none;
	}

	.all_menu_plate ul.one{
		font-size: 22px;
	}
	.all_menu_plate ul.two{
		font-size: 15px;
		margin-top: 25px;
	}

	.all_menu_plate ul.two > li > a {
		font-size: 20px;
	}

	.all_menu_plate ul.three {
		font-size: 18px;
		gap: 10px 0px;
	}

	.all_menu_plate ul.one > li> ul > li > a > img {
		width: 20px;
		margin-left: 5px;
	}
}
@media screen and (max-width: 1080px){
	header .inner_layout .menuList > ul{
		gap: 0px 5px;
	}
}
@media screen and (max-width: 1024px){
	header .inner_layout .menuList > ul{
		display: none;
	}
}
@media screen and (min-width: 861px){
	.all_menu_plate ul.two{
		display: flex !important;
	}
}
@media screen and (max-width: 860px){	
	.all_menu_plate .logo {
		width: 170px;
	}

	.all_menu_plate .top_area{
		align-items: center;
		padding: 10px 15px;
		height: 65px;
	}
	.all_menu_plate .bottom_area{
		flex: 1;
		margin: 0;
	}
	.all_menu_plate ul.one{
		flex-direction: column;
		gap: 25px 0px;
		margin-top: 50px;
	}
	.all_menu_plate ul.one li a {
		display: inline-block;
		width: 100%;
	}
	.all_menu_plate ul.one > li > p.one_depth_tit{
		cursor: pointer;
	}
	.all_menu_plate ul.two{
		display: none;
		margin-top: 20px;
		padding-left: 10px;
		font-size: 16px;
		gap: 10px 0px;
	}
	.all_menu_plate ul.two[style*='display: block']{
		display: flex !important;
	}
	.all_menu_plate ul.three{
		gap: 6px 0px;
	}
	.all_menu_plate .close_btn button{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
	.all_menu_plate .close_btn button img{
		width: 100%;
		height: 100%;
		content: url(/assets/images/common/icon_all_menu_close_btn.svg);
	}
	.all_menu_plate ul.one > li > .one_depth_tit{
		font-weight: 500;
	}
	.all_menu_plate ul.one > li > .one_depth_tit.active{
		color: #AE5D00;
	}
	.all_menu_plate ul.one > li > .one_depth_tit.active.orange{
		font-weight: 600;
		color: #AE5D00;
	}
	.all_menu_plate ul.one > li > .one_depth_tit.active::before{
		display: none;
	}
	.all_menu_plate ul.one > li > .one_depth_tit.is_arrow::after{
		content: "";
		position: absolute;
		right: 0px;
		top: 5px;
		width: 16px;
		height: 16px;
		background: url(/user/corporation/images/common/icon_all_menu_arrow_gray.svg) center center no-repeat;
		transition: 0.3s;
	}
	.all_menu_plate ul.one > li > .one_depth_tit.is_arrow.orange::after{
		background: url(/user/corporation/images/common/icon_all_menu_arrow_orange.svg) center center no-repeat;
		transform: rotate(0deg);
	}
	.all_menu_plate ul.one > li > .one_depth_tit.is_arrow.active.orange::after{
		background: url(/user/corporation/images/common/icon_all_menu_arrow_orange.svg) center center no-repeat;
	}
	.all_menu_plate ul.one > li > .one_depth_tit.orange{
		color: #000;
		font-weight: 600;
	}
}
@media screen and (max-width: 600px){
	.all_menu_plate .logo {
		width: 160px;
	}
}
/* 햄버거 메뉴 end */



/* 퀵메뉴 start */
aside{
	position: fixed;
	bottom: 40px;
	right: 50px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Roboto', 'Pretendard',sans-serif;
	z-index: 30;
}
aside ul{
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 105px;
	transition: 0.3s;
}

aside ul li{
	width: 100%;
	aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
	font-size: 14px;
	font-weight: 500;
	color: #222222;
	position: relative;
	border-radius: 35px;
	opacity: 1;
	background-color: #FFFFFF;
	box-shadow: 0px 5px 15px #00000029;
	transition: 0.3s;
}

aside ul li a{
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.5px;
	padding: 0 10px;
	text-align: center;
	line-height: 1.1;
}
aside ul li a img{
	width: 42px;
	height: auto;
	margin-bottom: 5px;
}

aside ul li:hover a {
	color: #FFF;
}

aside ul li:hover.quick01 {
	background: #E35B00;
}

aside ul li:hover.quick01 a img {
	content: url("/assets/images/main/quick_icon01_w.svg") !important;
}

aside ul li:hover.quick02 {
	background: #72B41C;
}

aside ul li:hover.quick02 a img {
	content: url("/assets/images/main/quick_icon02_w.svg") !important;
}

aside ul li:hover.quick03 {
	background: #5146F1;
}

aside ul li:hover.quick03 a img {
	content: url("/assets/images/main/quick_icon03_w.svg") !important;
}

aside #toTop {
	width: 53px;	
	aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
	position: relative;
	border-radius: 50%;
	opacity: 1;
	background-color: #FFFFFF;
	box-shadow: 0px 5px 15px #00000029;
	margin-top: 15px;
	scroll-behavior: smooth;
	cursor: pointer;
	transition: 0.3s;
}

aside #toTop img {
	display: block;
	width: 100%;
}

aside #toTop:hover {
	box-shadow: 0px 3px 10px rgba(0,0,0,0.16);
}

aside #toTop:hover img {
	content: url("/assets/images/main/btn_top_on.svg") !important;
}

@media screen and (max-width: 1600px){
	aside { 
		bottom: 20px;
		right: 20px;
	}
}

@media screen and (max-width: 1400px){
	aside ul {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 95px;
	}

	aside ul li {
		border-radius: 30px;
	}

	aside ul li a {
		font-size: 14px;
	}

	aside #toTop {
		width: 47px;
	}
}

@media screen and (max-width: 768px){
	/* aside ul { display: none; }  */

	aside ul {
		width: 70px;
		gap: 5px;
	}

	aside ul li {
		border-radius: 15px;
	}

	aside ul li a {
		font-size: 13px;
	}

	aside ul li a img {
		width: 30px;
		margin-bottom: 3px;
	}
}

/* 퀵메뉴 end */



/* 모달의 검은 배경 start */
.black_plate{
    width: 100%;
    /* height: 100%; */
    height:calc(var(--vh, 1vh) * 100);
    background-color: #00000073;
    z-index: 11;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none; 
}
/* 모달의 검은 배경 end */

#wrap {
	display: flex;
	flex-flow: column;
	align-items: center;
}

/* topMenu */
#commonTop {
	max-width: 1745px;
}

.topMenu {
	display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
	align-items: center;
	height: 110px;
}

.topMenu h2 {
	width: 210px;
	margin-left: 50px;
}

.topMenu .menuList ul {
	display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
	gap: 50px;
}

.topMenu .btn_menu {
	width: 46px;
	margin-right: 50px;
}

/* topMenu end */

/* sub common */
.subWrap {
	position: relative;
    display: flex;
    flex-flow: column;
    width: 100%;    
	background: linear-gradient(180deg, #F5F8FC 100px, #FFFFFF calc(100vh - 100px));
    padding: 0 0 150px;
}

.subWrap::after {
	position: absolute;
    content: '';
    width: 100%;
    height: 10px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent);
}

.subWrap .subTop {
	display: flex;
    flex-flow: column;
	align-items: center;
	padding: 60px 0 35px; 
	margin: 0px;
	gap: 30px;
}

.subWrap .subTop > h2 {
	font-size: 35px;
    color: #222;
    line-height: 1.2;
}

.subWrap .subTop > .navi {
	display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 1.2;
}

.subWrap .subTop > .navi > div {
	position: relative;
    padding: 0 30px 0 25px;
	color: #666666;
}

.subWrap .subTop > .navi > div:last-child {
	color: #222222;
	font-weight: 500;
}

.subWrap .subTop > .navi > div:not(:last-child)::after {
	position: absolute;
    content: '';
    width: 6px;
    height: 11px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    background: url(/assets/images/common/navi_arrow.svg) no-repeat;
    background-size: contain;
}

@media screen and (max-width: 1400px){
	.subWrap {
		padding: 0 30px 150px;
	}
}

@media screen and (max-width: 1200px){
	
	.subWrap {
		padding: 0 30px 100px;
	}

	.subWrap .subTop {
		padding: 40px 0 20px;
		gap: 20px;
	}

	.subWrap .subTop > h2 {
		font-size: 30px;
	}

	.subWrap .subTop > .navi {
		font-size: 17px;
	}

	.subWrap .subTop > .navi > div {
		padding: 0 23px 0 18px;
	}
}

@media screen and (max-width: 860px){	
	.subWrap {
		padding: 0 20px 80px;
	}

}

@media screen and (max-width: 768px){
	.subWrap {
		padding-bottom: 50px;
	}

	.subWrap .subTop {
        padding: 30px 0 10px;
        gap: 17px;
    }

	.subWrap .subTop > h2 {
        font-size: 27px;
    }
	.subWrap .subTop > .navi {
		font-size: 16px;
	}

	.subWrap .subTop > .navi > div {
		padding: 0 20px 0 15px;
	}
	
	.subWrap .subTop > .navi > div:first-child > img {
		width: 18px;
	}
}

@media screen and (max-width: 550px){
	.subWrap {
		padding: 0 15px 50px;
	}

	.subWrap .subTop {
        padding: 25px 0 10px;
        gap: 15px;
    }

	.subWrap .subTop > h2 {
        font-size: 23px;
    }

	.subWrap .subTop > .navi > div {
        padding: 0 15px 0 10px;
    }
}
/* sub common end */


/* footer */
#Footer {
	width: 100%;
	background: #222222;
	padding-top: 60px;
	padding-bottom: 95px;	
}

#Footer .inner_layout {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;	
}

#Footer .copy_txt {
	display: flex;
	flex-flow: column;	
}

#Footer .copy_txt .f_logo {
	display: flex;
	flex-flow: column;
	align-items: self-start;
    gap: 12px;
	transition: 0.3s;
}

#Footer .copy_txt .f_logo span {

}

#Footer .copy_txt .f_address {
	display: flex;
	flex-flow: column;
	margin-top: 34px;
	color: #FFF;
	font-size: 17px;
	gap: 8px;
	line-height: 1.2;
	transition: 0.3s;
}

#Footer .copy_txt .f_address > div {
	display: flex;
	flex-flow: row nowrap;
	gap: 35px;
	transition: 0.3s;
}

#Footer .copy_txt .f_address > div .tit {
	color: #ACACAC;
	margin-right: 10px; 
}

#Footer .sns_link {
	margin-top: 44px;
}

#Footer .sns_link > div {
	display: flex;
	flex-flow: row nowrap;
	gap: 8px;
}

#Footer .sns_link > div a {
	display: flex;
	width: 46px;
	background: #3D3D3D;
	border-radius: 50%;
}

#Footer .sns_link > div a img {
	display: block;
	width: 100%;
}

#Footer .sns_link > div a:hover {
	background: #760004;
}

@media screen and (max-width: 1400px){
	#Footer {
		padding: 40px 0px 60px;
	}

	#Footer .inner_layout {
		flex-flow: column;
		align-items: center;
	}

	#Footer .copy_txt .f_logo {
		align-items: center;
	}

	#Footer .copy_txt .f_address {
		align-items: center;
	}

	#Footer .sns_link {
		margin-top: 24px;
	}
}

@media screen and (max-width: 800px){
	#Footer {
        padding: 30px 0px 40px;
    }

	#Footer .copy_txt .f_logo span {
		width: 37px;
	}

	#Footer .copy_txt .f_logo span + span {
		width: 325px;
	}

	#Footer .copy_txt .f_address {
		margin-top: 25px;
		font-size: 16px;
		gap: 5px;
	}

	#Footer .copy_txt .f_address > div {
		flex-flow: column;
		gap: 3px;
		align-items: center;
	}

	#Footer .sns_link > div a {
		width: 41px;
	}
}

@media screen and (max-width: 500px){
	#Footer .copy_txt .f_logo span + span {
		width: 280px;
	}
}
/* footer end */

/* tab Menu */
.tab-container {
	display: flex;
    flex-flow: column;
    align-items: center;
}

.tab-menu {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: -32px;
}

.tab-menu .tab {
	padding: 10px 20px;
    cursor: pointer;    
    border-bottom: none;
    background: #FFF;
    width: 180px;
    height: 64px;
    border-radius: 50px;
    font-size: 20px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;	
}

.tab-menu .tab.active {
	background: #760004;
    font-weight: 600;
    color: #FFF;
	box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.tab-contents { 
	display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.tab-content {
  display: none;
  padding-top: 100px;
}

.tab-content.active {
  display: block;
}

.tab_bg {
	max-width: 1745px;
	width: 100%;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.3s;
}

.tab_bg > img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 1770px){
	.tab_bg {
		max-width: none;
		width: calc(100% - 40px);
	}
}

@media screen and (max-width: 1400px){
	.tab_bg {
		width: 100%;		
		border-radius: 20px;
	}
}

@media screen and (max-width: 1024px){
	.tab_bg {
        height: 100px;
    }

	.tab-menu {
		gap: 7px;
		margin-top: -28px;
	}

	.tab-menu .tab {
		width: 160px;
		height: 54px;
		font-size: 18px;
	}

	.tab-content {
	  padding-top: 70px;
	}
}

@media screen and (max-width: 767px){
	.tab_bg {
        display: none;
    }

	.tab-menu {
        gap: 0px;
        margin-top: 20px;
		width: 100%;
    }

	.tab-menu .tab {
		flex: 1 1 auto;
		width: auto;
		height: auto;
		border-radius: 0px;
		border: 1px solid rgba(0, 0, 0, 0.1);
		font-size: 17px;
	}

	.tab-menu .tab:not(:last-child) {
		margin-right: -1px;
	}

	.tab-content {
	  padding-top: 50px;
	}
}

@media screen and (max-width: 500px){
	.tab-menu .tab {
		font-size: 16px;
		padding: 10px 5px;
	}

	.tab-content {
        padding-top: 30px;
    }
}

/* tab Menu end */