@charset "utf-8";
::selection {
	background:var(--primary);
	color:var(--white);
	text-shadow:none;
}
::-moz-selection {
	background:var(--primary);
	color:var(--white);
	text-shadow:none;
}
.itemscope {
	height:0;
	width:100%;
}
.itemscope a, .itemscope span, .itemscope img {
	position:absolute;
	top:-999999px;
	left:0;
	z-index:100;
	width:100%;
	height:30px;
	background-color:#000;
	color:var(--white);
	line-height:30px;
	font-weight:400;
	opacity:0.6;
	text-align:center;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter:alpha(opacity=60);
}
.skip-header {
	height:0;
	width:100%;
}
.skip-header a {
	position:absolute;
	top:-9999px;
	left:0;
	z-index:100;
	width:100%;
	height:30px;
	background-color:#000;
	color:var(--white);
	line-height:30px;
	font-weight:400;
	opacity:0.6;
	text-align:center;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter:alpha(opacity=60);
}
.skip-header a:focus,.skip-header a:hover,.skip-header a:active {
	top:0;
}
.wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    min-width: 280px;
}

.cursor {
	display: none;
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 0;
	pointer-events: none;
	will-transfrm: transform;
}
.cursor .hex {
	display: inline-block;
	width: 28px;    
	max-width: 28px;
	line-height: 0;
	color: var(--primary);   
	vertical-align: middle;
	transform: translate(-50%, -50%);
	transition: all .6s cubic-bezier(0.16, 1, 0.3, 1),
			  opacity .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cursor .hex svg {
	display: block;
	width: 100%;
	height: auto;
}
.cursor .hex polygon {
	fill: none;                        
	stroke: currentColor;              
	stroke-width: 1;                   
	stroke-linejoin: miter;           
	stroke-linecap: butt;         
	vector-effect: non-scaling-stroke;
}
@media(min-width:1024px) {
	.cursor {
		display: block;
	}
}
.sub-container {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	width:100%;
    background-color: var(--white);
    z-index: 3;
}
.sub-container .sub-title {
    position: absolute;
    width: calc(100% - 40px);
	max-width: var(--sub-max-width);
    margin: 0 20px;
	text-align: right;
	line-height: .9;
	font-weight: 700;
	font-size:44px;
	color: var(--white);
}
@media(min-width:768px) {
	.sub-container .sub-title {
		font-size:72px;
	}
}
@media(min-width:1024px) {
	.sub-container .sub-title {
		font-size:92px;
	}
}
@media(min-width:1280px) {
	.sub-container .sub-title {
		font-size:112px;
	}
}
@media(min-width:1600px) {
	.sub-container .sub-title {
		font-size:132px;
	}
}
.content {
	width:calc(100% - 40px);
	max-width: var(--sub-max-width);
	margin:0 20px;
	padding: 60px 0;
}
.content.large {
	max-width: var(--content-max-width);
}
.content.pt-0 {
	padding-top: 0px;
}
@media(min-width:768px) {
	.content {
		padding:80px 0;
	}
}
@media(min-width:1024px) {
	.content {
		padding:100px 0;
	}
}
@media(min-width:1280px) {
	.content {
		padding:120px 0;
	}
}
@media(min-width:1600px) {
	.content {
        padding: 140px 0;
	}
}
.header-wrap {
    position: fixed;
	top:0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: var(--headHeight);
    background-color: var(--white);
    z-index: 30;
	/*transition: all 0.2s ease-in-out;*/
}
.header-wrap .gnb-bg {
    position: absolute;
    top: var(--headHeight);
    width: 100%;
    height: 0;
    background-color: rgba(var(--white-rgb), 0.8);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
    z-index: 31;
	transition: height 0.2s ease-out;
}
.header-wrap .gnb-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: calc(100% - 40px);
	max-width: var(--content-max-width);
    height: var(--headHeight);
	margin:0 auto;
    z-index: 32;
    opacity: 0;
    transition: opacity 0.1s ease-out;
}
.header-wrap .gnb-wrap.loaded {
    opacity: 1;
}
.header-wrap .gnb-wrap .logo {
    position: relative;
    display: flex;
    align-items: stretch;
	width: 99px;
    height: 32px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url("../img/common/logo.svg");
    z-index: 40;
}
.header-wrap .gnb-wrap nav .gnb {
	display: none;
	justify-content: center;
	transition: all 0.2s ease-out;
}
.header-wrap .gnb-wrap nav .gnb > ul {
    display: flex;
}
.header-wrap .gnb-wrap nav .gnb > ul > li {
    position: relative;
    text-align: center;
	width: 160px;
    transition: all 0.2s ease-out;
}
.header-wrap .gnb-wrap nav .gnb > ul > li > a > span {
    display: inline-block;
    position: relative;
    padding: 0 8px;
	font-weight: 600;
    color: var(--slate-800);
    font-size: var(--font-large);
    line-height: var(--headHeight);
    transition: all 0.2s ease-out;
} 
.header-wrap .gnb-wrap nav .gnb > ul > li.current > a > span {
	font-weight: 700;
	color: var(--primary);
}
.header-wrap .gnb-wrap nav .gnb > ul > li.current > a > span::before {
    content: '';
    position: absolute;
	top: calc(50% - 20px);
	right: 0;
	width: 8px;
	height: 8px;
    border-radius: 99px;
    background-color: var(--primary);
}
.header-wrap .gnb-wrap nav .gnb > ul > li > ul {
    position: absolute;
    top: var(--headHeight);
    display: none;
    flex-direction: column;
	width: 100%;
    padding: 20px 0 !important;
    transition: width 0.2s ease-out;
}
.header-wrap .gnb-wrap nav .gnb > ul > li > ul::before {
    content: '';
    position: absolute;
	top: 20px;
	left: 0;
	bottom: 20px;
	width: 1px;
    background-color: var(--slate-200);
}
.header-wrap .gnb-wrap nav .gnb > ul > li:last-child > ul::after {
    content: '';
    position: absolute;
	top: 20px;
	right: 0;
	bottom: 20px;
	width: 1px;
	height: auto;
    background-color: var(--slate-200);
}
.header-wrap .gnb-wrap nav .gnb > ul > li > ul > li {
    position: relative;
    width: 100%;
    padding: 4px 0 4px 12px;
	text-align: left;
}
.header-wrap .gnb-wrap nav .gnb > ul > li > ul > li > a {
    line-height: 1.3;
    font-size: var(--font-small);
    color: var(--slate-700);
    transition: all 0.2s ease-out;
}
.header-wrap .gnb-wrap nav .gnb > ul > li > ul > li:hover > a {
    font-weight: 600;
}
.header-wrap .gnb-wrap nav .gnb > ul > li > ul > li.current > a {
    color: var(--primary);
    font-weight: 700;
}
.header-wrap .gnb-wrap nav .gnb > ul > li.active > a > span, 
.header-wrap .gnb-wrap nav .gnb > ul > li:hover > a > span {
    font-weight: 700;
}
.header-wrap.active .gnb-bg {
	opacity:1;
}
.header-wrap .gnb-wrap .btn-wrap {
    display: flex;
	flex-direction: row;
    align-items: center;
    gap: 8px;
	height: 32px;
	line-height: 32px;
    z-index: 40;
}
.header-wrap .gnb-wrap .btn-wrap .language {
    position:relative;
    display: none;
    gap: 4px;
}
.header-wrap .gnb-wrap .btn-wrap .language a {
	width:42px;
	height: 32px;
	text-align: center;
	font-weight: 600;
	font-size: var(--font-x-small);
	color: var(--slate-800);
    transition: all 0.5s ease-out;
}
.header-wrap .gnb-wrap .btn-wrap .language a.current.active {
	color: var(--white);
}
.header-wrap .gnb-wrap .btn-wrap .language a:hover {
	color: var(--white);
}
.header-wrap .gnb-wrap .btn-wrap .language .hovers {
	position:absolute;
	top:0;
	width:42px;
	height:32px;
	background-color: var(--slate-700);
    border-radius: 16px;
	z-index:-1;
	transition:0.5s;
}
.header-wrap .gnb-wrap .btn-wrap .language.kr a.en:hover ~ .hovers {
	background-color: var(--slate-700);
	transform:translateX(calc(100% + 4px));  
}
.header-wrap .gnb-wrap .btn-wrap .language.en .hovers {
	margin-left:46px;
}
.header-wrap .gnb-wrap .btn-wrap .language.en a.kr:hover ~ .hovers{
	background-color: var(--slate-700);
	transform:translateX(0%);
	margin-left:0;
}
.header-wrap .gnb-wrap .btn-wrap .btn-search {
	cursor:pointer;
	display:block;
	width: 32px;
	height: 24px;
	text-align: center;
	font-size: 24px;
	color: var(--slate-800);
	background:transparent;
    transition: color 0.2s ease-out;
}
.header-wrap .gnb-wrap .btn-wrap .btn-search:hover {
	color: var(--primary);
}
.header-wrap .gnb-wrap .btn-wrap .btn-sidebar {
	cursor:pointer;
	display:block;
	width: 32px;
	height: 24px;
	text-align: center;
	color: var(--slate-800);
	background:transparent;
}
.header-wrap.active .gnb-wrap nav .gnb > ul > li > ul > li {
	width: 180px !important;
}
.body-fixed .header-wrap:not(.main-header),
.header-wrap.active {
    border-bottom: 1px solid var(--slate-200);
}
.header-wrap.active .gnb-bg {
    border-bottom: 1px solid var(--slate-200);
}
.header-wrap.active .gnb-bg {
    border-bottom: 1px solid var(--slate-200);
}
.main-header {
    background-color: transparent;
}
.main-header .gnb-wrap .logo {
    background-image: url("../img/common/logo-w.svg");
}
.main-header.active .gnb-wrap .logo,
.main-fixed .gnb-wrap .logo {
    background-image: url("../img/common/logo.svg");
}
.main-header:not(.main-fixed,.active) .gnb-wrap nav .gnb > ul > li > a > span {
    color: var(--white);
}
.main-header:not(.main-fixed,.active) .gnb-wrap nav .gnb > ul > li > ul > li > a {
    color: var(--white);
}
.main-header.active,
.body-fixed .header-wrap:not(.main-header),
.body-fixed .main-fixed {
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-200);
}
.body-fixed .header-wrap .gnb-bg,
.body-fixed .header-wrap .gnb-wrap nav .gnb > ul > li > ul {
    top: var(--fixedheadHeight);
}
.body-fixed .header-wrap,
.body-fixed .header-wrap .gnb-wrap {
    height: var(--fixedheadHeight);
}
.body-fixed .header-wrap .gnb-wrap nav .gnb > ul > li > a > span {
    line-height: var(--fixedheadHeight);
}
.main-header:not(.main-fixed,.active) .gnb-wrap .btn-wrap .btn-search,
.main-header:not(.main-fixed,.active) .gnb-wrap .btn-wrap .language a {
    color: var(--white);
}
.main-header:not(.main-fixed,.active) .gnb-wrap .btn-wrap .btn-sidebar {
    color: var(--white);
}
@media all and (min-width: 768px) {
	.header-wrap .gnb-wrap .btn-wrap .language {
		display: flex;
	}
}
@media all and (min-width: 1024px) {
	.header-wrap .gnb-wrap .logo {
		width: 99px;
		height: 32px;
	}
	.header-wrap .gnb-wrap nav .gnb {
		display: flex;
	}
	.header-wrap .gnb-wrap .btn-wrap .btn-sidebar, 
	.header-wrap .gnb-wrap .btn-wrap #btn-sidebar {
		display:none;
	}
}
@media all and (min-width: 1280px) {
	.header-wrap .gnb-wrap .logo {
		width: 112px;
		height: 36px;
	}
}
@media all and (min-width: 1600px) {
	.header-wrap .gnb-wrap {
		padding: 0;
	}
	.header-wrap .gnb-wrap .logo {
		width: 124px;
		height: 40px;
	}
	.header-wrap .gnb-wrap nav .gnb > ul > li {
		width: 180px !important;
	}
	.header-wrap.active .gnb-wrap nav .gnb > ul > li {
		width: 200px !important;
	}
	.header-wrap .gnb-wrap nav .gnb > ul > li > ul > li {
		padding: 4px 0 4px 20px;
	}
	
	.header-wrap.active .gnb-wrap nav .gnb > ul > li > ul > li {
		width: 200px !important;
	}
}

.sidebar-backdrop {
	display:none;
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: rgba(var(--slate-900-rgb),0.8);
	-webkit-transition:all .3s ease-in-out;
	transition:all .3s ease-in-out;
}
.sidebar-opened .sidebar-backdrop {
	display:block;
	z-index:103;
}
#btn-sidebar {
	display:none;
	position:fixed;
	top:12px;
	right:20px;
	width:32px;
	height:32px;
	color:var(--white);
	border:0;
	border-radius:0;
	background:transparent;
	transition:all 0.5s ease-in-out;
	outline:none;
}
#btn-sidebar::before {
    color: var(--white);
    content: "\e5cd";
    font-family: "Material Icons Round";
    vertical-align: middle;
    font-size: 24px;
}
.sidebar-opened #btn-sidebar {
	display:block;
	z-index:106;
}
.sidebar-opened .header-wrap .btn-sidebar {
	display:none;
}
.sidebar {
	left:-80%;
	top:0;
	bottom:0;
    display: flex;
    flex-direction: column;
	position:fixed;
	width:80%;
	background:var(--white);
	transition:all .2s ease-in-out;
	z-index:105;
}
.sidebar-opened .sidebar {
	left: 0;
}
.sidebar .logo {
    display: inline-block;
    height: var(--headHeight);
	margin: 0 20px;
}
.sidebar .logo div {
	display:block;
	margin:14px 0;
	width:99px;
	height:32px;
	background-image:url('../img/common/logo.svg');
	background-repeat:no-repeat;
	background-position:left center;
	background-size:auto 32px;
}
.sidebar .snb {
	width:100%;
	height: calc(100% - 120px);
	overflow: auto;
	text-align:left;
}
.sidebar .snb > ul > li {
	position:relative;
	text-align:left;
	margin: 0 20px;
}
.sidebar .snb > ul > li > a {
	position:relative;
	display:block;
	line-height:50px;
	font-size:18px;
	color:var(--slate-800);
	text-decoration:none;
}
.sidebar .snb > ul > li > a i {
	position:absolute;
	right:0;
	top:0;
	width:40px;
	height:50px;
	border:0;
	line-height:50px;
	text-align:center;
	background:transparent;
}
.sidebar .snb > ul > li > a i:before {
    color: var(--slate-400);
    content: "\e313";
    font-family: "Material Icons Round";
    vertical-align: middle;
    font-size: 24px;
    text-rendering: auto;
}
.sidebar .snb > ul > li.active > a {
	color:var(--slate-900);
	font-weight:600;
}
.sidebar .snb > ul > li.current > a {
	color:var(--primary);
	font-weight:700;
}
.sidebar .snb > ul > li.active > a i:before {
    color: var(--primary);
    content: "\e316";
}
.sidebar .snb li ul {
	display:none;
	padding:12px 20px;
    border-radius: 8px;
	background:var(--slate-50);
}
.sidebar .snb li li {
	position:relative;
	text-align:left;
	font-weight:500;
}
.sidebar .snb li ul a {
	position:relative;
	display:block;
	line-height:40px;
	color:var(--slate-800);
	font-size:16px;
	font-weight:normal;
	text-align:left;
	text-decoration:none;
}
.sidebar .snb li li.current a {
	color:var(--primary);
}
.sidebar .language {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 60px;
	padding: 0 20px;
}
.sidebar .language a {
	line-height: 36px;
	padding: 0 16px;
	font-weight: 600;
	font-size: var(--font-small);
	color: var(--slate-800);
}
.sidebar .language a.current {
	color: var(--white);
    border-radius: 99px;
    background-color: var(--slate-700);
}
@media(min-width:768px) {
	.sidebar .snb {
		height: 100%;
	}
	.sidebar .language {
		display: none;
	}
}
@media(min-width:1024px) {
	.sidebar-backdrop {
		display:none;
	}
	.sidebar {
		display: none;
		left:-80%;
	}
}
.main {
	width:100%;
}
.main .container {
	overflow: unset;
	overflow: visible;
}

.main .content {
	padding: 80px 0;
}
@media(min-width:768px) {
	.main .content {
		padding:100px 0;
	}
}
@media(min-width:1024px) {
	.main .content {
		padding:120px 0;
	}
}
@media(min-width:1280px) {
	.main .content {
		padding:140px 0;
	}
}
@media(min-width:1600px) {
	.main .content {
        padding: 160px 0;
	}
}
.main-visual #mainVisual {
	position:relative;
	width:100%;
    height: 100vh;      
    height: 100dvh;    
    height: calc(var(--vh) * 100);
	background:var(--white);
}
.main-visual,.main-visual .owl-stage-outer,.main-visual .owl-stage,.main-visual .owl-item {
    position: relative;
	width:100%;
    height: 100vh;      
    height: 100dvh;    
    height: calc(var(--vh) * 100);
}
.main-visual .owl-stage {
	transform: none !important; 
    width: 100% !important;
} 
#mainVisual .owl-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0s; 
    z-index: 1;
}
#mainVisual .owl-item.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}
.main-visual .item {
	position:relative;
}
.main-visual .thumb {
	width:100%;
	height: 100vh;      
    height: 100dvh;    
    height: calc(var(--vh) * 100);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
}
.main-visual .thumb:after {
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: rgba(var(--slate-800-rgb), 0.2);
    z-index: 1;
	
}
.main-visual .thumb img {
	width:100%;
	height: auto;
}
.main-visual .thumb .background-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;      
    height: 100dvh;    
    height: calc(var(--vh) * 100);
    overflow: hidden;
    z-index: 1;
}
.main-visual .thumb .background-video-wrapper .background-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    transform: translate(-50%, -50%);
}
.main-visual .text {
	position:absolute;
	width:90%;
	left:50%;
	top:50%;
	display:flex;
	flex-direction: column;
	gap: 20px;
	text-align:center;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.main-visual .text div {
	top:0;
	display:inline-block;
	word-break:keep-all;
	color:var(--white);
	line-height:160%;
	font-size:var(--font-h2);
	font-weight:600;
	transform: translateY(32px);
	opacity:0;
}
.main-visual .text p {
	top:40px;
	display:inline-block;
	word-break:keep-all;
	color:var(--white);
	line-height:160%;
	font-size:var(--font-x-large);
	font-weight:400;
	transform: translateY(32px);
	opacity:0;
}
.main-visual .active .text div {
	opacity:1;
	top:50px;
	transform: unset; 
	opacity:1; 
	transition: all 1s ease; 
	transition-delay: 0.4s;
}
.main-visual .active .text p {
	opacity:1;
	top:90px;
	transform: unset; 
	opacity:1; 
	transition: all 1s ease;
	transition-delay: 1s
}
.main-visual .owl-nav {
	position:absolute;
	width:80px;
	height:40px;
	left:60px;
	bottom:10px;
}
.main-visual  .owl-nav button.owl-next,.main-visual  .owl-nav button.owl-prev {
	position:absolute;
	top:0;
	padding: 8px 0 !important;
	width:40px;
	height:40px;
	border-radius:0;
	overflow:hidden;
	opacity:0.5;
	z-index:3;
}
.main-visual .owl-next i,.main-visual .owl-prev i {
	color:var(--white);
	font-size:24px;
}
.main-visual .owl-prev {
	left:0;
}
.main-visual .owl-next {
	right:0;
}
.main-visual .owl-prev:hover,.main-visual .owl-next:hover {
	opacity:1;
}
.main-visual .disabled,.main-visual .disabled:hover {
	opacity:0;
}
.main-visual .owl-dots {
	position:absolute;
	left:20px;
	bottom:10px;
}
.main-visual .owl-dots .owl-dot {
	display:none;
	cursor:auto;
	height:40px;
	font-size:var(--font-small);
	line-height:40px;
	font-weight:700;
}
.main-visual .owl-dots .owl-dot.active {
	display:block;
	color:var(--white);
}
.main-visual .total-page {
	position:absolute;
	bottom:10px;
	left:16px;
	text-align:right;
	width:40px;
	line-height:40px;
	color:var(--white);
	font-size:var(--font-small);
	opacity:0.7;
	z-index:5;
}
.main-visual .total-page:before {
	content:'/';
	color:var(--white);
	font-size:var(--font-small);
	line-height:40px;
	opacity:0.5;
	margin-right:7px;
}
@media(min-width:768px) {
	.main-visual .text {
		width:80%;
		text-align:left;
	}
	.main-visual .owl-nav {
		left:125px;
		bottom:50px;
	}
	.main-visual .owl-dots {
		left:80px;
		bottom:50px;
	}
	.main-visual .total-page {
		bottom:50px;
		left:80px;
	}
}
@media(min-width:1024px) {
}
@media(min-width:1280px) {
}
@media(min-width:1680px) {
}

.go-btn {
	position:absolute;
	bottom:32px;
	left:50%;
	margin-left:-15px;
	z-index:2;
}
.go-btn a {
	display:inline-block;
	padding-top: 60px;
	font-size:var(--font-small);
	color:var(--white);
}
.go-btn a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 1px solid var(--white);
	border-radius: 50px;
	box-sizing: border-box;
}
.go-btn a span::before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: var(--white);
	border-radius: 100%;
	-webkit-animation: sdb10 2s infinite;
	animation: sdb10 2s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.main-content {
	max-width: var(--content-max-width);
	margin:0 auto;
}
.main .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	width:100%;
}
.main-content {
    position: relative;
    width: calc(100% - 40px);
	max-width: var(--content-max-width);
	margin:0 20px;	
}

.main .title-wrap .title h3 {
	font-size: var(--font-60);
	font-weight: 700;
}
.main .title-wrap .title div {
	margin-top: 16px;
	font-size: var(--font-xx-large);
	font-weight: 400;
    word-break: keep-all;
}
@media(min-width:768px) {
	.main .title-wrap .title div {
		margin-top: 20px;
	}
}
@media(min-width:1024px) {
	.main .title-wrap .title div {
		margin-top: 24px;
	}
}
@media(min-width:1280px) {
	.main .title-wrap .title div {
		margin-top: 28px;
	}

}
@media(min-width:1600px) {
	.main .title-wrap .title div {
		margin-top: 32px;
	}

}
.main-business {
    position: relative;
    width: 100%;
    height: auto;
}
.main-business .img-list {
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-business.active .img-list {
	transform: scale(1);
    animation: business 1s both;
}
@-webkit-keyframes business {
    0% {
        transform: scale(.8);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes business {
    0% {
        transform: scale(.8);
    }
    100% {
        transform: scale(1);
    }
}
.main-business .img-list > div {
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-business .img-list > div:first-child {
	opacity: 100;
}
.main-business .img-list:after {
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: rgba(var(--slate-800-rgb), 0.2);
	z-index: 2;
} 
.main-business .img-list .thumb {
    opacity: 0;
	z-index: 1;
    transition: opacity 0.4s ease-in-out;
}
.main-business .img-list .thumb.is-active {
    opacity: 1;
}
.main-business .content {
    display: flex;
    flex-direction: column;
	gap: 32px;
	z-index: 2;
}
.main-business .title-wrap .title-wrap {
	position: relative;
	width: 100%;
}
.main-business .title-wrap .title {
	width: 100%;
}
.main-business .title-wrap .title h3 {
    color: var(--white);
    word-break: keep-all;
}
.main-business .title-wrap .title div {
    color: var(--white);
    word-break: keep-all;
}
.main-business .text-list {
    width: 100%;
}
.main-business .text-list .text-item {
	position: relative;
    display: flex;
    flex-direction: column;
	margin-bottom: 20px;
	width: 100%;
    border-radius: 8px;
    background-color: rgba(var(--white-rgb), 0.15);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	z-index: 2;
}
.main-business .text-list .text-item .box {
    display: flex;
    flex-direction: column;
	gap: 32px;
	width: 100%;
	height: 100%;
	color: var(--white);
	padding: 40px 20px;
    border-radius: 8px;
	transition:background-color 0.2s linear;
}
.main-business .text-list .text-item:last-child {
	margin-bottom: 0;
}
.main-business .text-list .text-item h2 {
    word-break: keep-all;
    font-size: var(--font-32);
    color: var(--white);
}
.main-business .text-list .text-item h3 {
	height: 100%;
	min-height: 120px;
    word-break: keep-all;
	font-weight: 400;
    font-size: var(--font-medium);
    color: var(--white);
}
.main-business .text-list .text-item .btn-wrap .more {
	position: relative;
	display: inline-block;
	width: 68px;
	height: 36px;
}  
.main-business .text-list .text-item .btn-wrap .more i {
	position: relative;
	display: inline-block;
	width: 68px;
	height: 24px;
	border-bottom: 1px solid var(--white);
	transition:width 0.2s ease-in-out;
}  
.main-business .text-list .text-item .btn-wrap .more i::after {
	position: absolute;
	top:16px;
	right: -2px;
	content: "";
	display: inline-block;
	width: 20px;
	height: 1px;
	background-color:var(--white);
	transform: rotate(45deg);
} 
.main-business .text-list .text-item:hover .btn-wrap .more {
	width: 88px;
}
.main-business .text-list .text-item:hover .btn-wrap .more i {
	width: 88px;
}
@media(min-width:768px) {
	.main-business .content {
		gap: 32px;
	}
	.main-business .text-list .text-item {
		float: left;
		height: 320px;
		margin-bottom: 32px;
		width: calc(50% - 16px);
	}
	.main-business .text-list .text-item .box {
		padding: 40px 20px;
	}
	.main-business .text-list .text-item:nth-child(2n) {
		float: right;
	}
	.main-business .text-list .text-item:nth-child(2) {
		margin-top: 176px;
	}
}
@media(min-width:1024px) {

	.main-business .content {
		display: block;
	}
	/*
	.main-business .content::before, .main-business .content::after {
		content: ''
	}
	.main-business .content::after {
		clear: both;
		display: block;
	}
	*/
	.main-business .title-wrap {
		position:sticky;
		position: -webkit-sticky;
		top: calc(var(--fixedheadHeight));
		left:0;
		float: left;
		width: 35%;
	}
	.main-business .text-list {
		float: right;
		width: 60%;
	}
	.main-business .text-list .text-item {
		height: 460px;
		margin-bottom: 32px;
		width: calc(50% - 16px);
		border-radius: 12px;
	}
	.main-business .text-list .text-item:nth-child(2) {
		margin-top: 246px;
	}
	.main-business .text-list .text-item .box {
		gap: 40px;
		padding: 40px;
		border-radius: 12px;
		transition:background-color 0.2s linear;
	}
	.main-business .text-list .text-item .box:hover {
		background-color:var(--primary);
	}
}
@media(min-width:1280px) {
	.main-business .title-wrap {
		width: 35%;
	}
	.main-business .text-list {
		width: 60%;
	}
	.main-business .text-list .text-item {
		height: 420px;
		margin-bottom: 44px;
		width: calc(50% - 20px);
	}
	.main-business .text-list .text-item:nth-child(2) {
		margin-top: 232px;
	}
	.main-business .text-list .text-item .box {
		gap: 44px;
		padding: 44px;
	}
}
@media(min-width:1600px) {
	.main-business .title-wrap {
		width: 30%;
	}
	.main-business .text-list {
		width: 55%;
	}
	.main-business .text-list .text-item {
		margin-bottom: 60px;
		width: calc(50% - 30px);
	}
	.main-business .text-list .text-item:nth-child(2) {
		margin-top: 240px;
	}
	.main-business .text-list .text-item .box {
		gap: 48px;
		padding: 48px;
	}
}
.main-product {
	position:relative;
	width:100%;
	overflow:hidden;
	background-color:var(--slate-50);
}
.main-product.active::after {
    content: "";
    position: absolute;
	left: 0;
    top: 50%;
    width: 100vw;
    height: 60%;
	background: linear-gradient(to right, var(--violet-500), var(--primary)) no-repeat;
    transform: skewY(-20deg) translateY(110%);
    animation: productbg 1s linear forwards;
	z-index:1;
}
@-webkit-keyframes productbg {
	0% {
		-webkit-transform: skewY(-20deg) translateY(110%);
		transform: skewY(-20deg) translateY(110%);
	}
	100% {
		-webkit-transform: skewY(-20deg) translateY(10%);
		transform: skewY(-20deg) translateY(10%);
	}
}
@keyframes productbg {
	0% {
		-webkit-transform: skewY(-20deg) translateY(110%);
		transform: skewY(-20deg) translateY(110%);
	}
	100% {
		-webkit-transform: skewY(-20deg) translateY(10%);
		transform: skewY(-20deg) translateY(10%);
	}
}
.main-product .container {
	overflow: hidden;
	z-index: 2;
}
.main-product .content {
	display:flex;
	flex-direction:column;
	gap:32px;
}
.main-product .title-wrap {
	display:flex;
	flex-direction:column;
	gap: 20px;
	width:100%;
}
.main-product .title-wrap .title h3 {
	color:var(--slate-800);
}
.main-product .title-wrap .title div {
	color:var(--slate-700);
}
.main-product .category {
}
.main-product .category ul {
	display:flex;
	flex-wrap:wrap;
	gap:12px 12px;
}
.main-product .category li {
	display:block;
	white-space:nowrap;
	padding:8px 8px;
	line-height:var(--font-medium);
	font-size:var(--font-medium);
	color:var(--slate-700);
	border:1px solid var(--slate-300);
	border-radius:99px;
	background-color:var(--white);
	transition:all 0.2s ease-in-out;
	cursor:pointer;
}
.main-product .category li:hover {
	color:var(--primary);
	border-color:var(--primary);
}
.main-product .category li[data-active] {
	color:var(--white);
	border-color:var(--primary);
	background-color:var(--primary);
}
.main-product .thumb-wrap {
	display:flex;
}
.main-product .thumb-wrap *,.main-product .thumb-wrap *:before,.main-product .thumb-wrap *:after {
	box-sizing:border-box;
	position:relative;
	transition-property:transform,opacity,filter;
	transition-duration:0.7s,0.7s,0.7s;
	transition-timing-function:cubic-bezier(0.5,0,0.5,1);
}
.main-product .thumb-wrap .thumb-box {
	display:flex;
    align-items: center;
	width:100%;
	overflow:hidden;
	border-radius:8px;
	border:1px solid var(--slate-200);
	background-color:var(--white);
	transition:border 0.2s linear;
}
.main-product .thumb-wrap .thumb-box:hover {
	border:1px solid var(--slate-400);
}
.main-product .thumb-wrap .thumb {
	width:100%;
	margin-right:-100%;
	padding:12px 20px;
	opacity:0;
	transform:translateX(-100%);
}
.main-product .thumb-wrap .thumb img {
	-o-object-fit:cover;
	object-fit:cover;
	-o-object-position:center center;
	object-position:center center;
	width:auto;
	height:auto;
	max-width:100%;
	display:block;
}
.main-product .thumb-wrap .thumb[data-active] ~ .thumb {
	transform:translateX(100%);
}
.main-product .thumb-wrap .thumb[data-active] {
	opacity:1;
	transform:translateX(0%);
}
.main-product .text-wrap {
    position: relative;
	display:flex;
    align-items: flex-start;
	overflow:hidden;
	width:100%;
	padding-top: 60px;
	color:var(--white);
}
.main-product .text-wrap .text {
	width:100%;
	margin-right:-100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.main-product .text-wrap .text {
	transform:translateX(-100%);
}
.main-product .text-wrap .text[data-active] ~ .text {
	transform:translateX(100%);
}
.main-product .text-wrap .text[data-active] {
	transform:translateX(0%);
}
.main-product .text-wrap .text[data-active]:before {
	opacity:0;
}
.main-product .text-wrap .text h3 {
	word-break:keep-all;
	font-size:var(--font-32);
	color:var(--white);
}
.main-product .text-wrap .text p {
	word-break:keep-all;
	margin-top:12px;
	font-weight:400;
	font-size:var(--font-medium);
	color:var(--white);
}
.main-product .text-wrap .text a {
	position: relative;
	display: inline-block;
	width: 68px;
	height: 36px;
	margin-top: 20px;
}  
.main-product .text-wrap .text a i {
	position: relative;
	display: inline-block;
	width: 68px;
	height: 24px;
	border-bottom: 1px solid var(--white);
	transition:width 0.2s ease-in-out, border-color 0.2s ease-in-out;
}  
.main-product .text-wrap .text a i::after {
	position: absolute;
	top:16px;
	right: -2px;
	content: "";
	display: inline-block;
	width: 20px;
	height: 1px;
	background-color:var(--white);
	transform: rotate(45deg);
	transition:background-color 0.2s ease-in-out;
} 
.main-product .text-wrap .text:hover .go-link {
	width: 88px;
}

.main-product .text-wrap .text:hover .go-link i {
	width: 88px;
	/*border-color: var(--primary);*/
}
/*
.main-product .text-wrap .text a:hover i::after {
	background-color:var(--primary);
}
*/

.main-product .text-wrap .btn-wrap {
	position: absolute;
	top: 0;
}
.main-product .text-wrap .btn-wrap button {
	-webkit-appearance: none;
	 -moz-appearance: none;
		  appearance: none;
	padding: 0;
	color: var(--white);
	border: none;
	background: transparent;
	transition: inherit;
	transition-duration: 300ms;
}
.main-product .text-wrap .btn-wrap button i {
	font-size: 36px;
}
.main-product .text-wrap .btn-wrap button:hover, .main-product .text-wrap .btn-wrap button:focus {
	outline: none;
}
.main-product .text-wrap .btn-wrap button:active {
	outline: none;
}
@media(min-width:768px) {
	.main-product .content {
		gap:40px;
	}
	.main-product .category li {
		padding: 8px 12px;
	}
	.main-product .thumb-wrap .thumb {
		padding:24px 40px;
	}	
}
@media(min-width:1024px) {
	.main-product.active::after {
		top: 0;
		height: 100%;
		transform: skew(-45deg) translateX(150vw);
	}
	@-webkit-keyframes productbg {
		0% {
			-webkit-transform: skewX(-45deg) translateX(150vw);
			transform: skewX(-45deg) translateX(150vw);
		}
		100% {
			-webkit-transform: skewX(45deg) translateX(50vw);
			transform: skewX(-45deg) translateX(50vw);
		}
	}
	@keyframes productbg {
		0% {
			-webkit-transform: skewX(-45deg) translateX(150vw);
			transform: skewX(-45deg) translateX(150vw);
		}
		100% {
			-webkit-transform: skewX(45deg) translateX(50vw);
			transform: skewX(-45deg) translateX(50vw);
		}
	}
	.main-product .content {
		display:flex;
		flex-direction:row;
		justify-content:space-between;
		gap:40px;
	}
	.main-product .title-wrap {
		gap: 40px;
		width:30%;
	}
	.main-product .category li {
		padding: 8px 12px;
	}
	.main-product .thumb-wrap {
		width:40%;
	}
	.main-product .thumb-wrap .thumb-box {
		border-radius: 12px;
	}
	.main-product .thumb-wrap .thumb {
		padding:24px 32px;
	}
	.main-product .text-wrap {
		width:30%;
		padding-top: 40px;
	}
	.main-product .text-wrap .btn-wrap {
		top: unset;
		bottom: 40px;
	}
}
@media(min-width:1280px) {
	.main-product .content {
		gap:60px;
	}
	.main-product .title-wrap {
		gap: 40px;
	}
	.main-product .category li {
		padding: 8px 16px;
	}
	.main-product .thumb-wrap .thumb {
		padding:28px 36px;
	}
	.main-product .text-wrap {
		padding-top:44px;
	}
	.main-product .text-wrap .btn-wrap {
		bottom: 44px;
	}
}
@media(min-width:1600px) {
	.main-product .content {
		gap:80px;
	}
	.main-product .title-wrap {
		gap: 40px;
	}
	.main-product .category li {
		padding: 12px 20px;
	}
	.main-product .thumb-wrap .thumb {
		padding: 32px 40px;
	}
	.main-product .text-wrap {
		padding-top: 100px;
	}
	.main-product .text-wrap .btn-wrap {
		bottom: 44px;
	}
}
.main-notice {
    position: relative;
    display: flex;
	width: 100%;
	overflow:hidden;
    background-color: var(--white);
}
.main-notice .content {
    position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
    width: 100%;
	max-width: 100%;
	margin:0;	
}
.main-notice .main-content {
	display: flex;
	flex-direction: column;
}
.main-notice .title-wrap {
	display:flex;
    flex-direction: column;
	width: 100%;
}
.main-notice .title-wrap .title h3 {
    color: var(--slate-800);
}
.main-notice .title-wrap .title div {
    color: var(--slate-700);
}
.main-notice .btn-wrap a {
	position: relative;
	display: inline-block;
	width: 68px;
	height: 36px;
	margin-top: 20px;
}  
.main-notice .btn-wrap a i {
	position: relative;
	display: inline-block;
	width: 68px;
	height: 24px;
	border-bottom: 1px solid var(--slate-500);
	transition:width 0.2s ease-in-out, border-color 0.2s ease-in-out;
}  
.main-notice .btn-wrap a i::after {
	position: absolute;
	top:16px;
	right: -2px;
	content: "";
	display: inline-block;
	width: 20px;
	height: 1px;
	background-color:var(--slate-800);
	transform: rotate(45deg);
	transition:background-color 0.2s ease-in-out;
} 
.main-notice .btn-wrap a:hover {
	width: 88px;
}
.main-notice .btn-wrap a:hover i {
	width: 88px;
	border-color: var(--primary);
}
.main-notice .btn-wrap a:hover i::after {
	background-color:var(--primary);
}
.main-notice .notice-content {
    position: relative;
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0;
}
.main-notice .owl-stage {
	display: flex;
}
.main-notice .item {
	display:flex;
    flex-direction: column;
	gap: 24px;
    height: 100%;
	padding:20px 12px;
    border-radius: 8px;
    background-color: var(--slate-50);
    transition: all .2s ease-in;
}
.main-notice .item div {
	overflow:hidden;
}
.main-notice .datecate {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-notice .date {
	display: flex;
    flex-direction: column;
	line-height:1.1;
	text-align:center;
	color:var(--slate-500);
    transition: all .2s ease-in;
}
.main-notice .date span {
	font-weight: 700;
	font-size: var(--font-40);
}
.main-notice .date em {
	font-size: var(--font-medium);
}
.main-notice .cate {
	white-space: nowrap;
	padding: 4px 8px;
	line-height: var(--font-medium);
	font-size: var(--font-medium);
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 99px;
    transition: all .2s ease-in;
}
.main-notice .subject {
	width: 100%;
    margin: 16px 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.4;
    font-weight: 600;
    color: var(--slate-800);
	font-size: var(--font-x-large);
    transition: all .2s ease-in;
}
.main-notice .contents {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.4;
    font-size: var(--font-medium);
    color: var(--slate-700);
    transition: all .2s ease-in;
}
.main-notice .owl-next,.main-notice .owl-prev {
	position:absolute;
	top:calc(50% - 20px);
	width:40px;
	height:40px;
	overflow:hidden;
	opacity:0.8;
	border-radius:99px;
	z-index:3;
	transition:all .3s ease-in-out;
}
.main-notice .owl-prev {
	left:0;
}
.main-notice .owl-next {
	right:0;
}
.main-notice .owl-next i,.main-notice .owl-prev i {
	color:var(--slate-500);
    font-size: 36px;
}
.main-notice .owl-prev:hover,.main-notice .owl-next:hover {
	opacity:1;
	background-color: rgba(var(--white), .6);
	-webkit-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
}
.main-notice .owl-next:hover i,.main-notice .owl-prev:hover i {
	color:var(--primary);
}
.main-notice .disabled,.main-notice .disabled:hover {
	opacity:.6;
}
.main-notice .disabled,.main-notice .disabled:hover {
	opacity:.6;
	color: var(--slate-500);
	background:transparent;
}
.main-notice .owl-next i,.main-notice .owl-prev i {
	vertical-align:top;
}
@media(min-width:768px) {
    .main-notice .content {
		gap: 28px;
    }
	.main-notice .item {
		padding:32px 24px;
	}
	.main-notice .cate {
		padding: 8px 12px;
	}
	.main-notice .subject {
		height: 64px;
		margin: 20px 0;
	}
	.main-notice .contents {
	}
	.main-notice .owl-prev {
		left:146px;
	}
	.main-notice .owl-next {
		right:148px;
	}
} 
@media(min-width:1024px) {
    .main-notice .content {
		gap: 32px;
    }
	.main-notice .notice-content {
		width: calc(100% - 40px);
		margin: 0 20px;
	}
	.main-notice .item {
		padding:36px 28px;
		border-radius: 12px;
	}
	.main-notice .item:hover {
		background-color: var(--primary);
	}
	.main-notice .item:hover .date {
		color:var(--white);
	}
	.main-notice .item:hover .cate {
		color: var(--white);
		border-color: var(--white);
	}
	.main-notice .item:hover .subject {
		color: var(--white);
	}
	.main-notice .item:hover .contents {
		color: var(--white);
	}
}
@media(min-width:1280px) {
    .main-notice .content {
		gap: 36px;
    }
	.main-notice .item {
		padding:40px 32px;
	}
	.main-notice .cate {
		padding: 8px 16px;
	}
	.main-notice .subject {
		height: 68px;
		margin: 24px 0;
	}
}
@media(min-width:1600px) {
    .main-notice .content {
		gap: 40px;
    }
	.main-notice .item {
		padding:48px 40px;
	}
	.main-notice .cate {
		padding: 8px 20px;
	}
}
.main-quick {
    position: relative;
	width:100%;
    height: 100%;
	overflow:hidden;
    background-image: url('../img/main/main-contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-quick.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	overflow:hidden;
    background-color: var(--white);
    transform-origin:left;
    animation: fullvisual .5s 0s linear forwards;
}
.main-quick.active:before {
	content:'';
	position:absolute;
	top:0;
	left:0;
    width: 100%;
    height: 100%;
	overflow:hidden;
	background-color: rgba(var(--slate-900-rgb), 0.4);
}
.main-quick .container {
    position: relative;
	z-index:1;
}
.main-quick .container .thumb-list {
	position:absolute;
	width: 100%;
	height: 100%;
    inset: 0;
    pointer-events: none;
}
.main-quick .container .thumb-list .thumb {
    position: absolute; 
	width: 100%;
	height: 100%;
	overflow:hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
} 
.main-quick .container .thumb-list .thumb.is-active {
    opacity: 1;
}
.main-quick .container .thumb-list .thumb:nth-child(1) {
    background-image: url('../img/main/main-contact-1.jpg');
} 
.main-quick .container .thumb-list .thumb:nth-child(2) {
    background-image: url('../img/main/main-contact-2.jpg');
}
.main-quick .container .thumb-list .thumb:nth-child(3) {
    background-image: url('../img/main/main-contact-3.jpg');
}
.main-quick .container .thumb-list .thumb:after {
	content:'';
	position:absolute;
	top:0;
	left:0;
    width: 100%;
    height: 100%;
	overflow:hidden;
	background-color: rgba(var(--slate-900-rgb), 0.5);
}
.main-quick .main-content {
}
.main-quick h2 {
    word-break: keep-all;
	font-size: var(--font-h3);
	color: var(--white);
}
.main-quick .quick-list {
    display: flex;
    flex-direction: column;
	gap: 12px;
	margin-top: 44px;
}
.main-quick .quick-list .box {
    display: flex;
    flex-direction: column;
	gap: 20px;
	width: 100%;
	padding: 20px 16px;
	border-radius: 8px;
	background-color: rgba(var(--white-rgb), 0.1);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
    transition: all 0.2s ease-in;
}
.main-quick .quick-list .box .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: var(--font-32);
}
.main-quick .quick-list .box .title span {
	position:relative;
	font-weight: 700;
	font-size: var(--font-xx-large);
	color: var(--white);
}
.main-quick .quick-list .box .title i {
    display: inline-block;
	font-size: 24px;
    color: rgba(var(--white-rgb), 0.5);
	font-weight: 400;
    transition: all 0.2s ease-in;
}
.main-quick .quick-list .box .text {
    word-break: keep-all;
	font-size: var(--font-medium);
    color: var(--white);
}
.main-quick .quick-list .box .go {
	position: relative;
    display: flex;
    align-items: center;
	gap: 12px;
	height: 36px;
}
.main-quick .quick-list .box .go span {
	display: inline-block;
	font-size: var(--font-medium);
	color: var(--white);
}  
.main-quick .quick-list .box .go i {
	position: relative;
	display: inline-block;
	width: 68px;
	height: 24px;
    margin-bottom: 12px;
	border-bottom: 1px solid var(--white);
	transition:width 0.2s ease-in-out;
}  
.main-quick .quick-list a .go i::after {
	position: absolute;
	top:16px;
	right: -2px;
	content: "";
	display: inline-block;
	width: 20px;
	height: 1px;
	background-color:var(--white);
	transform: rotate(45deg);
} 
.main-quick .quick-list .box:hover .go {

}
.main-quick .quick-list .box:hover .go i {
	width: 88px;
}
@media(min-width:768px) {
	.main-quick .quick-list {
		display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
		margin-top: 48px;
	}
	.main-quick .quick-list .box {
		justify-content: space-between;
		gap: 24px;
		height: 100%;
		padding: 24px 20px;
	}
	.main-quick .quick-list .box i {
		font-size: 24px;
	}
	.main-quick .quick-list .box .text {
		height: 100%;
	}
}
@media(min-width:1024px) {
	.main-quick .quick-list {
		gap: 28px;
		margin-top: 52px;
	}
	.main-quick .quick-list .box {
		gap: 28px;
		padding: 28px 24px;
		border-radius: 12px;
		background-color: transparent;
		-webkit-backdrop-filter: blur(0px);
		backdrop-filter: blur(0px);
	}
	.main-quick .quick-list a:hover .box {
		background-color: rgba(var(--white-rgb), 0.1);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
	} 
	.main-quick .quick-list a:hover .title i {
		color: rgba(var(--white-rgb), 1);
	}
}
@media(min-width:1280px) {
	.main-quick .quick-list {
		gap: 32px;
		margin-top: 56px;
	}
	.main-quick .quick-list .box {
		gap: 32px;
		padding: 32px 28px;
	}
	.main-quick .quick-list .box .title i {
		font-size: 28px;
	}
	.main-quick .quick-list .box:hover {
		border-radius: 12px;
	} 
}
@media(min-width:1600px) {
	.main-quick .quick-list {
		gap: 36px;
		margin-top: 60px;
	}
	.main-quick .quick-list .box {
		gap: 36px;
		padding: 36px 32px;
	}
	.main-quick .quick-list .box .title i {
		font-size: 32px;
	}
}
.main-sitemap {
	display: none;
    position: relative;
	width:100%;
    height: 100%;
	background: var(--white);
}
.main-sitemap .content {
    display: flex;
    flex-direction: column;
	gap: 32px;
}
.main-sitemap .title-wrap .title p {
	font-size: var(--font-h3);
	font-weight: 700;
    color: var(--slate-800);
}
.main-sitemap .sitemap {
	width: 100%;
}
.main-sitemap ul {
    display: flex;
	width: 100%;
}
.main-sitemap ul > li {
    position: relative;
    text-align: center;
	width: 100%;
    transition: all 0.2s ease-out;
}
.main-sitemap ul > li > a > span {
    display: inline-block;
    position: relative;
    padding: 16px 8px;
    font-size: var(--font-x-large);
	font-weight: 700;
    color: var(--slate-800);
    transition: all 0.2s ease-out;
} 
.main-sitemap ul > li > ul {
    flex-direction: column;
	overflow: hidden;
	width: 100%;
	margin-top: 12px;
}
.main-sitemap ul > li > ul::before {
    content: '';
    position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	height: auto;
    background-color: var(--slate-200);
}
.main-sitemap ul > li:last-child > ul::after {
    content: '';
    position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	height: auto;
    background-color: var(--slate-200);
}
.main-sitemap ul > li > ul > li {
    position: relative;
    width: 100%;
    padding: 4px 0;
}
.main-sitemap ul > li > ul > li > a {
    line-height: 1.3;
    font-size: var(--font-small);
    color: var(--slate-700);
    transition: all 0.2s ease-out;
}
.main-sitemap ul > li > ul > li:hover > a {
    font-weight: 600;
}
.main-sitemap ul > li:hover > a > span {
    font-weight: 700;
}
@media(min-width: 768px) {
	.main-sitemap {
		display: block;
	}
}
@media(min-width: 1024px) {
}
@media(min-width: 1280px) {
	.main-sitemap .content {
		display: flex;
		flex-direction: row;
		gap: 32px;
	}
	.main-sitemap .title-wrap {
		min-width: 340px;
	}
}
@media(min-width: 1600px) {
	.main-sitemap .title-wrap {
		min-width: 600px;
	}
}
.footer {
    position: relative;
	width:100%;
	padding:40px 20px;
	border-top: 1px solid var(--slate-200);
	background: var(--white);
    z-index: 2;
}
.footer.main-footer {
	border-top: 0;
}
.footer * {
	font-size: var(--font-small);
	color:var(--slate-600);
}
.footer .container {
    position: relative;
	display:flex;
    flex-direction: column;
	max-width: var(--content-max-width);
	margin: 0;
	padding: 0;
}
.footer .container .footer-nav-wrap {
	display:flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 20px;
}
.footer .footer-nav-wrap .footer-tel {
	display:flex;
    justify-content: center;
	gap: 8px;
}
.footer .footer-nav-wrap .footer-tel a {
	font-size: var(--font-xx-large);
	color:var(--primary);
    font-weight: 900;
	line-height: 1.1;
}
.footer .footer-nav-wrap .footer-tel i {
    display: inline-block;
	height: 24px;
    font-weight: 700;
}
.footer .footer-nav-wrap .footer-tel i::after {
    display: inline-block;
    content: "\e551";
    font-family: "Material Icons";
    line-height: 24px;
    color: var(--slate-300);
    font-size: 24px;
    text-rendering: auto;
	transition: 0.2s ease-in-out;
}
.footer .footer-nav {
	display:flex;
    flex-wrap: wrap;
    align-items: center;
	gap: 20px;
	margin:0 0 32px 0;
}
.footer .footer-nav a,
.footer .footer-nav b {
	color:var(--slate-600);
}
.footer .info-wrap {
	display:flex;
    flex-direction: column;
	gap: 8px;
}
.footer .info {
	display:flex;
    flex-wrap: wrap;
    align-items: center;
	gap: 8px 24px;
	line-height:160%;
}
.footer .info span {
	display:inline;
	word-break: keep-all;
}
.footer .info span .tel {
}
.footer .info span em {
	margin-right: 8px;
    font-weight: 600;
}
.footer .info .company {
	margin-bottom: 20px;
	color:var(--slate-800);
    font-weight: 700;
    font-size: var(--font-x-large);
}
.footer .copyright {
	display:flex;
    flex-wrap: wrap;
    align-items: center;
	gap: 8px;
	margin-top:20px;
}
.footer .copyright span {
	display:inline;
}  
@media(min-width: 768px) {
	.footer.main-footer {
		border-top: 1px solid var(--slate-200);
	}
	.footer .container {
		display:block;
		margin: 0 auto;
		padding: 0;
	}
	.footer .container .footer-nav-wrap {
		position: absolute;
		top: calc(50% - 56px);
		right: 0;
		align-items: flex-end;
		gap: 40px;
		width: 234px;
	}
	.footer .footer-nav {
		align-items: flex-end;
		flex-wrap: unset;
		flex-direction: column;
		gap: 12px;
		margin:0;
	}
	.footer .info-wrap .info {
		width: calc(100% - 254px);
	}
}
@media(min-width: 1024px) {
	.footer .container .footer-nav-wrap {
		top: calc(50% - 47px);
		gap: 20px;
	}
	.footer .footer-nav {
		margin:0;
	}
	.footer .info-wrap .info {
	}
	.footer .info-wrap {
		gap: 0;
	}
}
@media(min-width: 1280px) {
	.footer .container .footer-nav-wrap {
		top: calc(50% - 50px);
		gap: 40px;
		width: 324px;
	}
	.footer .footer-nav {
		align-items: center;
		flex-wrap: wrap;
		flex-direction: unset;
		gap: 20px;
	}
	.footer .footer-nav-wrap .footer-tel i {
		height: 36px;
	}
	.footer .footer-nav-wrap .footer-tel i::after {
		line-height: 36px;
		font-size: 36px;
	}
	.footer .info-wrap .info {
		width: calc(100% - 344px);
	}
}
.sub-visual {
    position: relative;
	top: var(--headHeight);
    width: 100%; 
	z-index: 4;
}
.sub-visual .content-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	word-break: keep-all;
	color: var(--slate-800);
	background-color: var(--white);
	z-index: 2;
}
.sub-visual .content-header .container {
    width: 100%;
	max-width: var(--content-max-width); 
    margin: 0 auto;
	padding: 0;
}
.sub-visual .content-header .navi,
.sub-visual .content-header .titleText {
    display: flex;
    flex-direction: column;
    justify-content: center;
	gap: 8px;
    width: 100%;
	max-width: var(--content-max-width); 
    margin: 0 auto;
	padding: 28px 20px;
}
.sub-visual .content-header .titleText {
    gap: 12px;
	padding: 28px 20px 0 20px;
}
.full-visual + .sub-visual .titleText {
	padding: 28px 20px;
}
.sub-visual .content-header .breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}
.sub-visual .content-header .breadcrumb i {
    display: inline-block;
    width: 16px;
    height: 20px;
}
.sub-visual .content-header .breadcrumb i::before {
    color: var(--slate-400);
    content: "\e88a";
    font-family: "Material Icons Round";
    vertical-align: middle;
    font-size: 20px;
    text-rendering: auto;
}
.sub-visual .content-header .breadcrumb a {
    position: relative;
	line-height: 20px;
    font-size: var(--font-small);
    color: var(--slate-500);
}
.sub-visual .content-header  .breadcrumb a:last-child {
    font-weight: 700;
    color: var(--slate-500);
}
.sub-visual .content-header .breadcrumb a:not(:first-child)::before {
    position: absolute;
    left: -16px;
    top: calc(50% - 2px);
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--slate-400);
}
.sub-visual .content-header h2 {
	margin:0;
	font-size:var(--font-h2);
	color:var(--slate-800);
	font-weight:600;
}
.sub-visual .aside {
	position:relative;
	width: 100%;
	height: calc(var(--asideHeight) + 1px);
	padding:0 20px;
	border: 0;
	border-bottom:1px solid var(--slate-200);
	background:var(--white);
	z-index: 4;
}
.sub-visual .aside dt {
	width:100%;
	height:var(--asideHeight);
}
.sub-visual .aside dt > a {
	position:relative;
	display:block;
	padding:0;
	line-height:var(--asideHeight);
	font-weight:700;
	color:var(--slate-700);
	outline:0;
}
.sub-visual .aside dt > a::after {
	position:absolute;
	right: 0;
    color: var(--slate-500);
    content: "\e313";
    font-family: "Material Icons Round";
    vertical-align: middle;
    font-size: 20px;
	font-weight:400;
    text-rendering: auto;
}
.sub-visual .aside dd {
	display:none;
	position:absolute;
	top:var(--asideHeight);
	left:0;
	width:100%;
	padding: 8px 20px;
	border-top:1px solid var(--slate-200);
	border-bottom:1px solid var(--slate-200);
	background:var(--white);
	z-index: 5;
}
.sub-visual .aside ul {
	display:flex;
    flex-direction: column;
}
.sub-visual .aside li {
	float:left;
	position:relative;
}
.sub-visual .aside li a {
	display:block;
	margin:0;
	width:auto;
	font-weight:500;
	height:36px;
	line-height:36px;
	color:var(--slate-600);
	transition:all 0.3s ease;
}
.sub-visual .aside li i {
	display: none;
}
.sub-visual .aside li:hover a {
	color:var(--slate-900);
	text-decoration:none;
}
.sub-visual .aside li.active a {
	font-weight:600;
	color:var(--primary);
}
.sub-visual .content-header h1 {
	font-size:var(--font-x-large);
	color:var(--slate-900);
	font-weight:500;
}
.sub-visual .content-header p {
	width: 100%;
	word-break: keep-all;
	line-height:1.2;
	font-size:var(--font-52);
	font-weight:600;
}
.sub-visual .content-header p.product {
	font-size:var(--font-40);
}
.sub-visual .content-header .effect {
	display: block;
	overflow: hidden;
	/* word-break: keep-all;*/
	font-weight:700;
}
.full-visual {
    position: fixed;
    width: 100%; 
    height: 100vh;      
    height: 100dvh;    
    height: calc(var(--vh) * 100);
    background-color: var(--white);
	z-index: 1;
}
.full-visual .thumb {
	display: block;
    position: fixed;
    width: 100%;
    height: 100vh;      
    height: 100dvh;    
    height: calc(var(--vh) * 100);
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(0.9);
    animation: visual 1.5s both;
}
.full-visual .thumb::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform-origin: left;
    transform: scaleX(1);
    animation: fullvisual 1s 0s linear forwards;
    z-index: 4;
}
/*
.full-visual + .sub-visual {
    height: calc(100vh - var(--headHeight));
    height: calc(100dvh - var(--headHeight));
    height: calc((var(--vh) * 100) - var(--headHeight));
}
.body-fixed.full-visual + .sub-visual {
    height: calc(100vh - var(--fixedheadHeight));
    height: calc(100dvh - var(--fixedheadHeight));
    height: calc((var(--vh) * 100) - var(--fixedheadHeight));
}
*/
.body-fixed .sub-visual {
	top: var(--fixedheadHeight);
}
.body-fixed .sub-visual + .sub-container {
	margin-top: var(--fixedheadHeight);
}
.board-visual .content-header .titleText {
    display: none;
}
.sub-visual.aside-fixed .aside {
	border-color:var(--slate-200);
}
.board-visual.aside-fixed + .sub-container {
	margin-top: calc(60px + var(--fixedheadHeight));
}
.sub-visual.aside-fixed .aside {
	position:fixed;
	top: var(--fixedheadHeight);
	border-bottom-color: var(--slate-400);
}
.sub-visual + .sub-container {
	margin-top: var(--headHeight);
}

@media(min-width:768px) {
	.sub-visual .content-header  {
	}
	.sub-visual .content-header .navi,
	.sub-visual .content-header .titleText {
		padding: 36px 20px;
	}
	.sub-visual .content-header .titleText {
		padding: 36px 20px 0 20px;
	}
	.full-visual + .sub-visual .titleText {
		padding: 36px 20px;
	}
	.full-visual .thumb {
		animation: visual 2s both;
	}
}
@media(min-width:1024px) {
	.sub-visual .content-header {
	}
	.sub-visual .content-header .navi,
	.sub-visual .content-header .titleText {
		padding: 44px 20px;
	}
	.sub-visual .content-header .titleText {
		gap: 20px;
		padding: 44px 20px 0 20px;
	}
	.full-visual + .sub-visual .titleText {
		padding: 44px 20px;
	}
	.sub-visual .aside {
		display:flex;
		flex-direction: column;    
		align-items: center;
		height: 60px;
	}
	.sub-visual .content-header p {
		width: 80%;
	}
	.sub-visual .aside dt {
		display: none;
	}
	.sub-visual .aside dd {
		display: block;
		position: unset;
		padding: 0;
		border: 0;
	}
	.sub-visual .aside ul {
		flex-direction: row;
		gap: 36px;
	}
	.sub-visual .aside li a {
		font-size:var(--font-small);
		height:calc(var(--asideHeight) - 1px);
		line-height:calc(var(--asideHeight) - 1px);
	}
	.sub-visual .aside li i {
		display: block;
		content:'';
		position:absolute;
		left:50%;
		bottom:-1px;
		width:0;
		height:4px;
		background:var(--primary);
		transition:width 0.3s ease 0s,left 0.3s ease 0s;
	}
	.sub-visual .aside li.active i {
		left:0;
		width:100%;
	}
	/*
	.full-visual + .sub-visual + .sub-container {
		margin-top: 220px;
	}
	*/
}
@media(min-width:1280px) {
	.sub-visual .content-header  {
	}
	.sub-visual .content-header .navi,
	.sub-visual .content-header .titleText {
		padding: 52px 20px;
	}
	.sub-visual .content-header .titleText {
		padding: 52px 20px 0 20px;
	}
	.full-visual + .sub-visual .titleText {
		padding: 52px 20px;
	}
	.sub-visual .content-header  p {
		width: 70%;
	}
	.sub-visual .aside ul {
		gap: 44px;
	}
	.full-visual .thumb {
		animation: visual 3s both;
	}
	/*
	.full-visual + .sub-visual + .sub-container {
		margin-top: 240px;
	}
	*/
}
@media(min-width:1600px) {
	.sub-visual .content-header  {
	}
	.sub-visual .content-header .navi,
	.sub-visual .content-header .titleText {
		padding: 60px 20px;
	}
	.sub-visual .content-header .titleText {
		padding: 60px 20px 0 20px;
	}
	.full-visual + .sub-visual .titleText {
		padding: 60px 20px;
	}
	.sub-visual .content-header  p {
		width: 64%;
	}
	.sub-visual .aside ul {
		gap: 48px;
	}
	/*
	.full-visual + .sub-visual + .sub-container {
		margin-top: 280px;
	}
	*/
}
@media(min-width:1680px) {
	.sub-visual .content-header .navi,
	.sub-visual .content-header .titleText {
		padding: 60px 0;
	}
	.sub-visual .content-header .titleText {
		padding: 60px 0 0 0;
	}
	.full-visual + .sub-visual .titleText {
		padding: 60px 0;
	}
}

@-webkit-keyframes visual {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes visual {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes fullvisual {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}
@keyframes fullvisual {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}
header + .container {
	margin-top: var(--headHeight);
}

.body-fixed header + .container {
	margin-top: var(--fixedheadHeight);
}
.stamp {
	display: none;
	position: fixed;
	right: 20px;
	top: 240px;
	width: 120px;
	height: 120px;
	text-transform: uppercase;
	letter-spacing: 6px;
	word-spacing: 0;
	text-decoration: none;
	z-index: 2000;
}
.stamp .stamp__svg {
	width: 100%;
	height: auto;
	transform-box: fill-box;
	fill: var(--slate-400);
	stroke: var(--slate-400);
	stroke-width: 0.1em;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.stamp .stamp__arrow {
    position: absolute;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
	width: 72px;
	height: 72px;
	text-align: center;
    border-radius: 99px;
    background-color: var(--primary-100);
    transform: scaleX(-1);
    transition: all 0.2s ease-out;
}
.stamp .stamp__arrow i::before {
	display: inline-block;
    content: "\e0d8";
    font-family: "Material Icons Outlined";
    vertical-align: middle;
	line-height: 80px;
    width: 36px;
	color: var(--primary);
    font-size: 36px;
    text-rendering: auto;
    transition: all 0.2s ease-out;
}
.stamp:hover .stamp__arrow {
    background-color: var(--primary);
}
.stamp:hover .stamp__arrow i::before {
    color: var(--white);
}
.stamp .stamp__text {  
    font-size: 18px;
  -webkit-animation: rotateReverse normal infinite 20s linear;
          animation: rotateReverse normal infinite 20s linear;
  transform-origin: 50% 50%;
}
.stamp:hover .stamp__text {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@-webkit-keyframes rotateReverse {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateReverse {
  to {
    transform: rotate(360deg);
  }
}

@media(min-width:1024px) {
	.stamp {
		display: inline-block;
	}
} 
@media(min-width:1280px) {
	.stamp {
		right: 30px;
		top: 320px;
	}
}
@media(min-width:1600px) {
	.stamp {
		right: 40px;
		top: 350px;
	}
}
.board-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
    margin-bottom: 12px;
}
.board-head span {
	color:#000;
	font-weight:700;
}
.board-head .board-head-total {
    color: var(--slate-500);
}
.board-head .board-head-total span {
	margin: 0 4px;
    color: var(--primary);
}    
.board-head .board-head-right {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}  
.board-foot {
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 8px;
	width: 100%;
	text-align: center;
    margin-top: 12px;
}
.board-foot .board-foot-left {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.board-foot .board-foot-right {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: center;
}
.board-foot .board-foot-left + .board-foot-right {
    justify-content: flex-end;
}
@media(min-width:768px) {
	.board-head .board-head-right {
		width: auto;
	}
	.board-foot {
		margin-top: 16px;
	}
}
@media(min-width:1280px) {
	.board-foot {
		margin-top: 20px;
	}
}

.dialog-search {
    width: calc(100% - 24px);
	max-width:500px;
	padding: 20px 0;
}
.dialog-search .search {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dialog-search .search .text {
    font-size: var(--font-52);
    color: var(--slate-200);
	font-weight: 700;
}
.dialog-search .search .form {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
	border-radius:8px;
    background-color: var(--white);
}
.dialog-search .search .form input {
    width: 100%;
	height: 48px;
	border: 0;
	border-radius:8px;
    padding: 0 8px;
}
@media (min-width:1024px) {
	.dialog-search .search .form {
		border-radius:12px;
	}
	.dialog-search .search .form input {
		height: 60px;
		border-radius:12px;
		padding: 0 12px;
	}
}