/* UI 공통가이드*/

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px transparent inset;
	-webkit-text-fill-color: #333;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
}

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: rgba(0, 0, 0, 0.3);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(0, 0, 0, 0.3);
}

:-ms-input-placeholder {
	/* IE 10+ */
	color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: rgba(0, 0, 0, 0.3);
}

input.default_line {
	width: 305px;
	border: 0px;
	border-bottom: 2px solid #7a7a7a;
	line-height: 42px;
	height: 42px;
	display: inline-block;
	padding: 0px;
	padding: 0px 10px;
	margin: 0px;
	box-sizing: border-box;
	background: transparent;
	transition: border-color .5s ease;
}

input[type="password"].default_line,
input[type="text"].default_line {
	background: transparent;
	color: #222;
	border-bottom: 2px solid #7a7a7a;
}

input[type="text"].default_line::-webkit-input-placeholder { /* Edge */
	text-transform: none;
}

input[type="text"].default_line:-ms-input-placeholder { /* Internet Explorer 10-11 */
	text-transform: none;
}

input[type="text"].default_line::placeholder {
	text-transform: none;
}

input.default_line:focus {
	border-bottom-color: #f6511e;
}

input[type="checkbox"] {
	vertical-align: top;
	border: 0px;
	margin-top: 1px;
	width: 16px;
	height: 16px;
	opacity: 0;
	z-index: 2;
	background: #333;
	position: absolute;
	display: inline-block;
	cursor: pointer;
}

input[type="checkbox"]+label {
	padding-left: 20px;
	display: inline-block;
	line-height: 20px;
	position: relative;
}

input[type="checkbox"]+label::after {
	vertical-align: top;
	position: absolute;
	content: "";
	display: inline-block;
	left: 0px;
	top: 3px;
	background: url('../images/checkbox_ico.png') 0px 0px no-repeat;
	width: 16px;
	height: 16px;
}

input[type="checkbox"]:checked+label::after {
	background-position: -16px 0px;
}

.filebox {
	vertical-align: top;
	font-size: 0px;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.filebox input[type="file"] {
	vertical-align: top;
	position: absolute;
	width: 0px;
	height: 0px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.filebox label {
	cursor: pointer;
	vertical-align: top;
	width: 30%;
	position: relative;
	text-align: center;
	display: inline-block;
	line-height: 40px;
	width: 150px;
	background: url(../images/btn_bg2.png) bottom right no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 14px;
	margin-left: 2%;
	margin-bottom: -5px;
}

.filebox .upload-name {
	vertical-align: top;
	width: 68%;
	background: transparent;
	display: inline-block;
	font-size: 14px;
	border-bottom: 2px solid #7a7a7a;
	line-height: 40px;
	height: 40px;
	box-sizing: border-box;
	display: inline-block;
	padding: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


/* UI 공통가이드 */

.sc_opacity {
	opacity: 0;
	transition: opacity 1s ease;
}

.sc_opacity.sc_active {
	opacity: 1;
}

.sc_scale {
	transform: scale(1.2);
	transition: transform 5s ease;
}

.sc_scale.sc_active {
	transform: scale(1);
}

.smartfilm.sc_opacity {
	opacity: 0;
	transition: opacity 1s ease;
	transition-delay: 2s;
}

.inner.sc_blur {
	opacity: 0;
	transform: scale(1.2);
	filter: blur(20px);
	transition: transform 5s ease 1s, filter 2s ease 2s, opacity 3s ease 1s;
}

.inner.sc_blur.sc_active {
	filter: blur(0px);
	opacity: 1;
	transform: scale(1);
}

.smartfilm.sc_opacity.sc_active {
	opacity: 1;
}

header {
	position: absolute;
}

header.active {
	position: fixed;
}

header.active .sub_scroll_menu {
	display: none;
}

.contents_box {
	height: auto;
	margin: 0 auto;
	font-family: 'Montserrat';
}

.sub_top {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: 450px;
	position: relative;
	z-index: 100;
	background: #000;
}

.sub_top>div {
	width: 100%;
	max-width: 1920px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

.sub_top .overlay {
	transition: opacity .3s ease;
}
/*
.sub_top .overlay>span {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	overflow: hidden;
}
*/
.sub_top.active .overlay {
	opacity: 0.5;
}

.sub_top_img {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: -1;
}

.sub_top_img .img {
	width: 100%;
	height: 100%;
	background: url('../images/sub_top_bg.png') no-repeat center center;
	background-size: cover;
	transition: transform 10s linear 0s;
	position: relative;
}

.sub_top_img .img.active {
	transform: scale(1.2, 1.2) rotate(0.01deg);
}

.sub_top_img .img.reverse {
	transition: transform 7s ease 0s;
	transform: scale(1.2, 1.2);
}

.sub_top_img .img.reverse.active {
	transform: scale(1, 1) rotate(0.01deg);
}

.sub_top_img .img.reverse.over {
	transform: scale(3, 3);
	filter: blur(20px);
	transition: transform 7s ease 0s, filter 7s ease 0s;
}

.sub_top_img .img.reverse.over.active {
	filter: blur(0px);
	transform: scale(1, 1) rotate(0.01deg);
}

.sub_top_img .img.desolve.over {
	opacity: 0;
	transition: transform 10s linear 0s;
}

.sub_top_img .img.desolve.over.active {
	opacity: 1;
	transition: transform 10s linear 0s, opacity .75s linear 3s;
}

.sub_top .contents_box {
	text-align: center;
	padding-top: 100px;
}

.sub_top .contents_box .txt {
	font-family: 'Montserrat', 'Source Sans Pro';
	font-size: 22px;
	font-weight: 300;
	color: #ff9d0b;
	position: relative;
	margin-bottom: 58px;
}

.sub_top .contents_box .txt::after {
	display: block;
	content: "";
	width: 100px;
	height: 1px;
	background-color: #ff9d0b;
	position: absolute;
	bottom: -18px;
	left: calc(50% - 50px);
}

.sub_top .contents_box .tit {
	font-family: 'Montserrat', "Raleway";
	font-size: 64px;
	font-weight: 600;
	color: #fff;
	word-break: keep-all;
}

.sub_top .contents_box .tit.kr {
	/*font-size: 60px;*/
	letter-spacing: -3px;
}

.sub_top .contents_box .tit span {
	font-weight: 100;
}

.sub_top .contents_box .desc {
	font-family: 'Montserrat';
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 30px;
	margin-top: 42px;
	word-break: keep-all;
}

.sub_top.films .contents_box {
	position: absolute;
	top: 400px;
	left: 50%;
	margin-left: 120px;
}

.sub_top.films .contents_box .txt {
	display: none;
}

.sub_top.films .contents_box .tit {
	padding-left: 34px;
	position: relative;
	font-size: 94px;
	line-height: 80px;
	text-align: left;
	text-transform: uppercase;
}

.sub_top.films .contents_box .tit::after {
	content: "";
	left: 0px;
	top: 0px;
	display: block;
	position: absolute;
	width: 15px;
	height: 100%;
	background: #b90d0d;
}

.sub_top.films.orange .contents_box .tit::after {
	background: #f84c05;
}

.sub_top.films.blue .contents_box .tit::after {
	background: #0f3394;
}

.sub_top.films.green .contents_box .tit::after {
	background: #00a6c3;
}

.sub_top.films .contents_box .tit span {
	font-family: 'Montserrat';
	display: block;
}

.sub_top.films .contents_box .desc {
	font-weight: 100;
	text-transform: uppercase;
	text-align: left;
	font-size: 22px;
	line-height: 30px;
	width: 450px;
}

.sub_menu_box {
	width: 430px;
	z-index: 1;
	height: 56px;
	display: inline-block;
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	bottom: -30px;
	font-size: 0px;
	vertical-align: top;
}

.sub_menu_box::after {
	display: block;
	content: "";
	clear: both;
}

.sub_menu_box>li {
	vertical-align: top;
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	background-color: #e5e5e5;
}

.sub_menu_box>li:first-child {
	border-left: 0px;
}

.sub_menu_box>li:last-child {
	border-right: 0px;
}

.sub_menu_box>li>a {
	position: relative;
	z-index: 1;
	display: block;
	font-family: 'Montserrat', "Raleway";
	font-size: 21px;
	color: #222;
	line-height: 56px;
	text-align: center;
	font-weight: 300;
	transition: color .3s ease;
}

.sub_menu_box>li>a.han {
	font-size: 18px;
}

.sub_menu_box>li.is_sub>a::after {
	width: 15px;
	height: 15px;
	position: absolute;
	content: "";
	display: block;
	right: 20px;
	top: 22px;
	background: url('../images/plus_ico.png') -30px 0px no-repeat;
}

.sub_menu_box>li:last-child::after {
	display: none;
}

.sub_menu_box>li:before {
	background: url('../images/sub_menu_box_bg.png') top center no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px top:0px;
	opacity: 0;
	content: "";
	display: block;
	transition: opacity .3s ease;
}

.sub_menu_box>li.active>a::after {
	background-position: 0px 0px;
}

.sub_menu_box>li.active:hover>a::after,
.sub_menu_box>li:hover a::after {
	background-position: -15px 0px;
}

.sub_menu_box>li:hover {}

.sub_menu_box>li.active>a,
.sub_menu_box>li.active:hover>a {
	/*color:#ff9d0b;*/
	color: #fff;
}

.sub_menu_box>li:hover a {
	color: #fff;
}

.sub_menu_box>li.active:before,
.sub_menu_box>li.active:hover:before,
.sub_menu_box>li:hover:before {
	opacity: 1;
}

.sub_menu_box>li:hover .sub_menu_list {
	display: block;
}

.sub_menu_list {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.sub_menu_box>li>ul {
	display: none;
	margin-top: 0px;
	background: url('../images/sub_menu_box_bg.png') top center no-repeat;
	background-size: 100% 100%;
	box-shadow: 0px 3px 10px 7px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	padding: 0px;
	position: relative;
}

.sub_menu_box>li>ul>li {
	width: 100%;
	line-height: 1;
}

.sub_menu_box>li>ul>li:first-child {
	padding-top: 20px;
}

.sub_menu_box>li>ul>li:last-child {
	padding-bottom: 20px;
}

.sub_menu_box>li>ul>li:hover a,
.sub_menu_box>li>ul>li:hover a>span {
	color: #222;
	background-color: #fff;
}

.sub_menu_box>li>ul>li>a {
	font-family: 'Montserrat', "Raleway";
	font-size: 17px;
	font-weight: 300;
	color: #fff;
	display: block;
	padding: 12px 0px;
	line-height: 1.2;
	word-break: keep-all;
}

.sub_menu_box>li>ul>li>a>span {
	font-family: 'Montserrat', "Raleway";
	font-size: 15px;
	font-weight: 200;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.2;
	word-break: keep-all;
}

.sub_menu_box>li>ul>li.active>a,
.sub_menu_box>li>ul>li.active>a>span {
	color: #ff9d0b;
}

.sub_menu_list ul li:hover a,
.sub_menu_list ul li:hover a>span {
	color: #4d4ea3;
}

.sub_scroll_menu {
	display: none;
	width: 100%;
	height: 45px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #171717;
	z-index: 400;
	border-bottom: 1px solid #555;
}

.sub_scroll_menu select {
	width: 100%;
	height: 100%;
	background-color: #171717;
	box-sizing: border-box;
	padding: 0 20px;
	color: #fff;
	font-size: 20px;
	line-height: 45px;
}

.sub_scroll_menu select optgroup {
	color: #666;
}

.sub_scroll_menu select optgroup:before {
	content: attr(label);
	display: block;
}

.sub_scroll_menu select option {
	color: #fff;
}

.header.on {
	height: 360px;
	transition: all 0.5s;
}

.header.on+.sub_top {
	height: 360px;
	width: 100%;
}

.header.on+.sub_top .sub_top_img img {
	width: 100%;
	height: auto;
}

.header.on+.sub_top .contents_box .txt {
	display: none;
}

.header.on+.sub_top .contents_box .desc {
	display: none;
}

.header.on+.sub_top .contents_box .tit {
	font-size: 60px;
	text-align: center;
}

.header.on+.sub_top .contents_box {
	padding-top: 200px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 70px;
	text-align: left;
}

.sub_top.films {
	position: relative;
	height: 1110px;
}

.sub_top .vline {
	display: none;
}

.sub_top.films .vline {
	max-width: 1920px;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	bottom: 0px;
	width: 1920px;
	height: 346px;
	z-index: 10;
	background: url('../images/vline_bg.png') center bottom no-repeat;
	background-size: cover;
	display: block;
}

.sub_top.films .vline i {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	margin-top: -30px;
	opacity: 0;
	transition: margin 1s ease, opacity .5s ease;
	;
}

.sub_top.films.sc_active .vline i {
	opacity: 1;
	margin-top: 0px;
}

.sub_top.films .vline i:nth-of-type(1) {
	background-image: url('../images/vline1.png')
}

.sub_top.films .vline i:nth-of-type(2) {
	background-image: url('../images/vline2.png')
}

.sub_top.films .vline i:nth-of-type(3) {
	background-image: url('../images/vline3.png')
}

.sub_top.films.orange .vline i:nth-of-type(1) {
	background-image: url('../images/vline1_orange.png')
}

.sub_top.films.orange .vline i:nth-of-type(2) {
	background-image: url('../images/vline2_orange.png')
}

.sub_top.films.orange .vline i:nth-of-type(3) {
	background-image: url('../images/vline3_orange.png')
}

.sub_top.films.blue .vline i:nth-of-type(1) {
	background-image: url('../images/vline1_blue.png')
}

.sub_top.films.blue .vline i:nth-of-type(2) {
	background-image: url('../images/vline2_blue.png')
}

.sub_top.films.blue .vline i:nth-of-type(3) {
	background-image: url('../images/vline3_blue.png')
}

.sub_top.films.green .vline i:nth-of-type(1) {
	background-image: url('../images/vline1_green.png')
}

.sub_top.films.green .vline i:nth-of-type(2) {
	background-image: url('../images/vline2_green.png')
}

.sub_top.films.green .vline i:nth-of-type(3) {
	background-image: url('../images/vline3_green.png')
}

.sub_top.films.sc_active .vline i:nth-of-type(1) {
	transition-delay: .5s;
}

.sub_top.films.sc_active .vline i:nth-of-type(2) {
	transition-delay: .8s;
}

.sub_top.films.sc_active .vline i:nth-of-type(3) {
	transition-delay: 1.1s;
}

.header.on .sub_scroll_menu {
	display: none;
}

.header.on.active .sub_scroll_menu {
	display: none;
}

.sample {
	display: none;
}

.window_films_section {
	margin: 0 auto;
	width: 100%;
	max-width: 1920px;
	background-color: #eeedeb;
	box-sizing: border-box;
	font-family: 'Montserrat', 'Raleway';
}

.phantom_01 {
	position: relative;
	/* min-height: 2100px; */
	background-position: bottom center;
	background-size: cover;
	margin: 0px auto 0;
	text-align: center;
	overflow: hidden;
	/* padding: 1420px 0 10px; */
	background-repeat: no-repeat;
}

.phantom_01 .overbg {
	position: relative;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 2100px;
}

.phantom_01 .overbg::after {
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	content: "";
	display: none;
	width: 100%;
	height: 2100px;
}

.phantom_01 h5 {
	z-index: 3;
	top: 640px;
	padding: 0px;
	position: absolute;
	left: 50%;
	letter-spacing: 0.03em;
	/* width: 1300px; */
	/* margin: 0 auto; */
	text-align: left;
	font-size: 90px;
	color: #fff;
	text-transform: uppercase;
	font-family: "Montserrat";
	box-sizing: border-box;
	/* padding-left: 800px; */
	border-left: 10px solid #fe6b2f;
	margin: 0px;
	line-height: 76px;
	padding-left: 20px;
	margin-left: 120px;
}

.phantom_01 h5 span {
	font-family: "Montserrat";
	display: block;
	font-weight: 700;
}

.phantom_01.type2 {
	padding-bottom: 200px;
}

.phantom_01 .tit {
	font-family: "Montserrat";
	font-size: 30px;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
	padding: 0px 0 60px 0;
	letter-spacing: -0.03em;
	word-break: keep-all;
	box-sizing: border-box;
	padding: 0 20px;
	opacity: 0;
	transition: opacity 1s ease;
	text-transform: uppercase;
	text-align: left;
}

.phantom_01 .tit * {
	font-style: normal;
	font-family: 'Montserrat', 'Raleway';
}

.phantom_01 .divide {
	line-height: 0px;
	font-size: 0px;
	height: 0px;
	display: block;
}

.phantom_01 .tit .hairline {
	display: block;
	font-weight: 100;
}

.phantom_01 .small_txt {
	font-weight: 600;
	margin-top: 30px;
	padding-left: 20px;
	text-align: left;
	opacity: 0;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	font-family: 'Montserrat', 'Raleway';
	font-size: 36px;
	line-height: 40px;
}

.phantom_01 .small_txt.sc_active,
.phantom_01 .tit.sc_active {
	opacity: 1;
	transition: opacity 1s ease;
}

.phantom_01.window_films_section>.contents_box {
	z-index: 2;
	box-sizing: border-box;
	left: 50%;
	margin-left: -650px;
	width: 1300px;
	/* margin:0 auto; */
	position: absolute;
	/* margin-bottom: 70px; */
	bottom: 200px;
	/* min-height:600px; */
}

.phantom_01.window_films_section>.contents_box::after {
	/* content:''; */
	/* position: absolute; */
	/* left:-10px; */
	/* top:0px; */
	/* width:10px; */
	/* height:0%; */
	/* background:rgba(0,0,0,0.8); */
}

.phantom_01.window_films_section>.contents_box.sc_active::after {
	height: 100%;
	transition: height 1s ease;
}

.phantom_01 .window_films_img {
	left: 50%;
	top: 0px;
	position: absolute;
}

.phantom_01 .desc {
	position: relative;
	/* bottom:0px; */
	padding-top: 30px;
	padding-left: 20px;
	font-family: 'Montserrat', 'Raleway';
	font-size: 20px;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0px;
	word-break: keep-all;
	box-sizing: border-box;
	text-align: left;
	opacity: 0;
	transition: opacity 1s ease;
}

.phantom_01 .desc.type2 {
	line-height: 1.4;
	font-size: 16px;
}

.phantom_01 .desc.sc_active {
	opacity: 1;
}

.phantom_01 .btn {
	font-family: 'Montserrat';
	display: block;
	/* margin: 100px auto 0; */
	width: 258px;
	height: 62px;
	box-sizing: border-box;
	border: 0;
	text-align: center;
	line-height: 1;
	font-size: 17px;
	font-weight: 900;
	color: #90277b;
	border-radius: 5px;
	background-color: #fff;
	cursor: pointer;
	word-break: keep-all;
}

.phantom_01 .btn_canvas_wrap {
	text-align: left;
	cursor: pointer;
	width: 230px;
	height: 55px;
	/* bottom:-150px; */
	transition: all .5s ease-out;
	/* position:absolute; */
	/* left:50%; */
	margin-top: 40px;
	margin-left: 20px;
	opacity: 0;
	transition: opacity 1s ease;
}

.phantom_01 .btn_canvas_wrap.sc_active {
	opacity: 1;
}

.phantom_01 .btn_canvas_wrap .btn_title {
	font-family: "Oswald";
	display: block;
	letter-spacing: 0.05em;
	position: relative;
	height: 100%;
	width: 100%;
	line-height: 55px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 100;
	background: url('../images/btn_bg4.png') no-repeat top center;
	background-size: cover;
}

.phantom_01 .btn_canvas_wrap #btnCanvas4 {
	margin: 0 auto;
	width: 230px;
	height: 55px;
	border-radius: 5px;
}

.phantom_02 {
	min-height: 1017px;
	position: relative;
	background: url('../images/phantom_section_02_bg.png') no-repeat top center;
	background-size: cover;
	overflow: hidden;
}

.phantom_02::after {
	opacity: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	background-image: url('../images/phantom_section_02_window.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: calc(50% - 200px) 0%;
	transition: opacity .5s ease, background 3s ease;
}

.phantom_02.architectural {}

.phantom_02.architectural::after {
	background-image: url('../images/phantom_section_02_1_window.png');
	background-size: cover;
	background-repeat: no-repeat;
}

.phantom_02.architectural.automotive::after {
	background-image: url('../images/phantom_section_02_2_window.png');
	background-size: cover;
	background-repeat: no-repeat;
}

.phantom_02.creed::after {
	transform: scale(1.2);
	transition: opacity .5s ease, transform 3s ease;
	background-image: url('../images/phantom_section_02_3_window.png');
	background-size: cover;
	background-repeat: no-repeat;
}

.phantom_02.ceramic::after {
	transform: scale(1.2);
	transition: opacity .5s ease, transform 3s ease;
	background-image: url('../images/phantom_section_02_4_window.png');
	background-size: cover;
	background-repeat: no-repeat;
}

.phantom_02 .contents_box {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	padding-top: 100px;
}

.phantom_02>.contents_box li {
	margin: 0 0 50px calc(50% + 100px);
	opacity: 0;
	transition: opacity 1s ease;
}

.phantom_02.sc_active .contents_box li {
	opacity: 1;
}

.phantom_02.sc_active::after {
	background-position: 50% 0%;
	opacity: 1;
}

.phantom_02.creed.sc_active::after,
.phantom_02.ceramic.sc_active::after {
	transform: scale(1);
	opacity: 1;
}

.phantom_02>.contents_box li:nth-of-type(1) {
	transition-delay: 0s;
}

.phantom_02>.contents_box li:nth-of-type(2) {
	transition-delay: .4s;
}

.phantom_02>.contents_box li:nth-of-type(3) {
	transition-delay: .8s;
}

.phantom_02>.contents_box li:nth-of-type(4) {
	transition-delay: 1.2s;
}

.phantom_02>.contents_box li:nth-of-type(5) {
	transition-delay: 1.6s;
}

.phantom_02>.contents_box li:nth-of-type(6) {
	transition-delay: 2s;
}

.phantom_02>.contents_box li:nth-of-type(7) {
	transition-delay: 2.4s;
}

.phantom_02>.contents_box li:last-child {
	margin-bottom: 0;
}

.phantom_02>.contents_box li::after {
	display: block;
	content: "";
	clear: both;
}

.phantom_02>.contents_box li>div {
	float: left;
}

.phantom_02>.contents_box .icon {
	display: none;
	width: 64px;
	height: 64px;
	margin: 15px 10px 0 0;
}

.phantom_02>.contents_box .icon img {
	width: 100%;
}

.phantom_02>.contents_box .number {
	font-family: 'Montserrat', 'Raleway';
	font-size: 77px;
	font-weight: 100;
	color: #fff;
	letter-spacing: -1px;
	line-height: 1;
}

.phantom_02>.contents_box .text_box {
	width: auto;
	margin: 6px 0 0 15px;
}

.phantom_02>.contents_box .percent {
	font-family: 'Montserrat', 'Raleway';
	font-size: 34px;
	font-weight: 100;
	color: rgba(255, 255, 255, 0.5);
}

.phantom_02>.contents_box .txt {
	font-size: 20px;
	font-weight: 200;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0px;
	word-break: keep-all;
	padding-top: 8px;
}

.phantom_02>.contents_box .notice {
	font-family: 'Montserrat', 'Raleway';
	font-size: 16px;
	font-weight: 400;
	color: #fe6b2f;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
}

.phantom_03 {
	padding: 70px 0 70px;
	/* background-color:#fff; */
}

.phantom_03 .contents_box {
	font-size: 0;
	text-align: center;
	width: 1350px;
}

.phantom_03 .contents_box::after {
	display: block;
	content: "";
	clear: both;
}

.phantom_03 .point_box {
	display: inline-block;
	width: 330px;
	box-sizing: border-box;
	padding: 0 15px;
	vertical-align: top;
	opacity: 0;
	transition: opacity 1.5s ease;
}

.phantom_03.sc_active .point_box {
	opacity: 1;
}

.phantom_03 .point_box:nth-of-type(1) {
	transition-delay: 0s;
}

.phantom_03 .point_box:nth-of-type(2) {
	transition-delay: 0.3s;
}

.phantom_03 .point_box:nth-of-type(3) {
	transition-delay: 0.6s;
}

.phantom_03 .point_box:nth-of-type(4) {
	transition-delay: 0.9s;
}

.phantom_03 .point_box:nth-of-type(5) {
	transition-delay: 1.2s;
}

.phantom_03 .point_box:nth-of-type(6) {
	transition-delay: 1.5s;
}

.phantom_03 .point_box:nth-of-type(7) {
	transition-delay: 1.8s;
}

.phantom_03 .point_border {
	width: 135px;
	height: 135px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	margin: 0 auto;
}

.phantom_03 .point_border .point_img {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-radius: 100%;
	overflow: hidden;
}

.phantom_03 .point_border .point_img img {
	width: 100%;
	height: 100%;
}

.phantom_03 .point_box>span {
	display: block;
	/* width:25px; */
	/* height:1px; */
	/* background-color:#bea67c; */
	margin: 25px auto 30px;
}

.phantom_03 .point_box h4 {
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	color: #fff;
	text-align: center;
	word-break: keep-all;
}

.phantom_03 .point_box p {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
	word-break: keep-all;
	padding-top: 30px;
	margin-bottom: 100px;
}

.loginform {
	text-align: center;
}

.loginform h3 {
	color: #666;
	padding: 100px 0 75px;
	font-size: 36px;
	line-height: 46px;
	font-weight: 100;
	letter-spacing: -0.05em;
}

.loginform span.orange {
	color: #f36208;
}

.loginform .box {
	display: inline-block;
	background: #f4f4f4;
}

.loginform .wrapper {
	padding: 65px 200px;
}

.loginform .notice {
	height: 60px;
	line-height: 60px;
	background: #4a4543;
	color: #fff;
	font-size: 16px;
	position: relative;
	font-weight: 200;
}

.loginform .notice>i {
	position: relative;
	display: inline-block;
	width: 7px;
	height: 7px;
	background: #f6511e;
	border-radius: 50%;
	margin-right: 4px;
	margin-top: 20px;
	vertical-align: top;
}

.loginform .login_form {
	display: inline-block;
}

.loginform .box button {
	cursor: pointer;
	vertical-align: top;
	width: 140px;
	margin-left: 10px;
	line-height: 100px;
	background: url('../images/btn_bg1.png') no-repeat;
	background-size: cover;
	border: 0px;
	color: #fff;
	font-size: 18px;
}

.loginform .login_form label {
	text-align: right;
	line-height: 42px;
	min-width: 95px;
	vertical-align: top;
	letter-spacing: -1px;
	font-size: 17px;
	position: relative;
	display: inline-block;
	padding-right: 8px;
}

.loginform .login_form label::after {
	position: relative;
	display: inline-block;
	content: "";
	width: 5px;
	height: 5px;
	background: #f6511e;
	border-radius: 50%;
	margin-top: 16px;
	margin-left: 3px;
}

.loginform .check_box {
	vertical-align: top;
	text-align: left;
	padding-top: 10px;
	padding-left: 105px;
}

.loginform .login_form>div {
	vertical-align: top;
	padding-top: 8px;
}

.loginform .dealership h4 {
	position: relative;
	padding: 75px 0px 60px;
	font-size: 32px;
	line-height: 40px;
	letter-spacing: -1px;
}

.loginform .dealership h4::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	background: #f6511e;
	border-radius: 50%;
	margin-top: 15px;
	top: 50%;
	margin-left: 3px;
}

.loginform .dealership .img {
	padding-bottom: 100px;
}

.case {}

.inquiry .black_bg,
.case .black_bg {
	margin: 0 auto;
	max-width: 1920px;
	box-sizing: border-box;
	font-size: 0px;
	background: url('../images/dot_bg1.png') #191919;
	padding-top: 80px;
	padding-bottom: 40px;
}

.case .board.gallery1.is_table .wrapper {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.case .board.gallery1.is_table .wrapper:after {
	content: "";
	display: table;
	clear: both;
}

.inquiry .wrapper,
.case .wrapper {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.inquiry .wrapper {
	text-align: center;
}

.inquiry .wrapper>span {
	text-align: left;
}

.inquiry .wrapper .caption {
	padding: 30px 120px;
}

.inquiry .wrapper .caption h3 {
	font-size: 42px;
	text-align: left;
	line-height: 50px;
	font-weight: 200;
	color: #fff;
	display: inline-block;
}

.inquiry .wrapper .caption p {
	padding-left: 50px;
	margin-left: 50px;
	border-left: 2px solid #f6511e;
	display: inline-block;
	font-weight: 200;
	text-align: left;
	font-size: 16px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.75);
}

.inquiry .wrapper .caption p span {
	color: #f6511e;
	letter-spacing: -0.03em;
}

.information {
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}

.information .map_wrapper {
	background: #f6f4f1;
	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 30px 310px;
	padding-top: 80px;
	max-width: 1920px;
	min-height: 500px;
}

.information .map_wrapper::after {
	display: block;
	content: "";
	clear: both;
}

.information .map_wrapper .map,
.information .map_wrapper .search {
	box-sizing: border-box;
	float: left;
	width: 50%;
}

.information .map_wrapper .map {
	text-align: center;
}

.information .map_wrapper .map .blankarea {
	width: 500px;
	position: relative;
	height: 648px;
	opacity: 0;
	z-index: 2;
}

.information .map_wrapper .map .area {
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
}

.information .map_wrapper .map .area>img.areaimage {
	position: absolute;
	width: 500px;
	height: 648px;
	opacity: 0;
	left: 0px;
	top: 0px;
	z-index: 1;
	transition: opacity .3s ease;
}

.information .map_wrapper .map .area>img.areaimage.active {
	opacity: 1;
}

.information .map_wrapper .map .area>img.areaimage.click {
	opacity: 1;
}

.information .map_wrapper .map .area>img.totalimage {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 0;
}

.information .map_wrapper .map_total {
	display: inline-block;
	position: relative;
	width: 500px;
	height: 648px;
	margin: 0 auto;
}

.information .map_wrapper .search {
	font-size: 0px;
	padding: 40px 150px 0px 100px;
}

.information .map_wrapper .search h4 {
	font-size: 44px;
	letter-spacing: -0.05em;
}

.information .map_wrapper .search p {
	font-size: 20px;
	font-weight: 200;
	line-height: 30px;
	letter-spacing: -0.05em;
	padding-top: 20px;
	margin-left: 5px;
	margin-top: 15px;
	padding-left: 15px;
	border-left: 2px solid #f6511e;
}

.information .map_wrapper .search .searchbox {
	position: relative;
	display: block;
	padding-top: 30px;
}

.information .map_wrapper .search .selectbox {
	padding-top: 30px;
	width: 48%;
}

.information .map_wrapper .search .selectbox.w100 {
	width: 100%;
}

.information .map_wrapper .search .selectbox.mr4 {
	margin-right: 4%;
}

.information .map_wrapper .search .btn_wrap2 {
	display: block;
	padding: 50px 0px 0px;
}

.information #Map {
	cursor: pointer;
}

.dealership.view {
	padding-bottom: 70px;
}

section.about {
	display: none;
}

section.about .box {
	overflow: hidden;
	width: 100%;
	max-width: 1920px;
	position: relative;
	margin: 0 auto;
	text-align: center;
	padding: 0px;
	margin-bottom: 50px;
}

section.about .box img {
	width: 100%;
}

section.about .text {
	text-align: center;
}

section.about p {
	display: inline-block;
	text-align: left;
	max-width: 1024px;
	font-size: 22px;
	line-height: 40px;
	word-break: keep-all;
	letter-spacing: -0.07em;
}

section.technology {
	width: 100%;
	max-width: 1920px;
	position: relative;
	margin: 0 auto;
	text-align: center;
	padding: 0px;
	display: none;
}

section.technology .technology_wrapper {
	width: 1280px;
	margin: 0 auto;
}

section.technology h2 {
	font-size: 100px;
	letter-spacing: -5px;
	font-family: 'Source Sans Pro';
	color: #f4911e;
}

section.technology h2 span {
	font-weight: 100;
	font-size: 100px;
	color: #333;
}

section.technology .box_wrapper {
	position: relative;
	padding-top: 80px;
}

section.technology .box_wrapper::after {
	clear: both;
	content: "";
	display: block;
}

section.technology .box_wrapper .box {
	float: left;
	box-sizing: border-box;
	width: 50%;
}

section.technology .box_wrapper .box.right {
	padding-left: 40px;
	text-align: left;
}

section.technology .box_wrapper .box.left {
	padding-top: 80px;
	padding-right: 40px;
	text-align: right;
}

section.technology .box_wrapper .box p {
	font-weight: 300;
	font-size: 15px;
	line-height: 30px;
	letter-spacing: -0.03em;
	display: inline-block;
	padding-top: 40px;
	width: 492px;
}

section.technology .core_value {
	display: none;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 100px;
	background: #f6f4f1;
	min-height: 500px;
}

section.technology .core_value h4 {
	padding-top: 100px;
	font-size: 55px;
	font-weight: 700;
	letter-spacing: 0em;
	font-family: 'Montserrat';
}

section.technology .core_value h4>i {
	font-size: 55px;
	font-style: normal;
	font-weight: 600;
}

section.technology .core_value h5 {
	width: 920px;
	position: relative;
	margin: 0 auto;
	letter-spacing: -0.03em;
	display: block;
	font-size: 32px;
	font-weight: 300;
	line-height: 44px;
}

section.technology .core_value p {
	padding-top: 60px;
	width: 850px;
	letter-spacing: 0em;
	position: relative;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 300;
	line-height: 32px;
}

section.technology .core_value .box {
	padding-top: 70px;
	padding-bottom: 40px;
}


/*테이블 디자인1 */

.table_wrapper {
	position: relative;
	margin: 0 auto;
	max-width: 1280px;
}

.table_wrapper h4.title1 {
	position: relative;
	display: inline-block;
	padding-top: 50px;
	padding-bottom: 25px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.05em;
}

.table_wrapper h4.title1>i {
	color: #f6511e;
	font-size: 30px;
	font-style: normal;
}

.max1024 {
	max-width: 1024px;
}

.table {
	margin-top: 50px;
	box-sizing: border-box;
	margin-bottom: 30px;
	width: 100%;
	display: table;
}

.table_wrapper.title_board .table {
	margin-top: 0px;
}

.table .colgroup .title {
	line-height: 40px;
}

.table .row {
	display: table-row;
	transition: all .3s ease;
}

.table .row.hidden {
	display: none;
}

.table>.row:nth-of-type(odd),
.table.type2>.row:nth-of-type(odd) {
	background: rgba(0, 0, 0, 0.01);
}

.table.type2>.row>.col {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.table.type2>.row>.col:nth-of-type(2n-1) {
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.table.type2>.row:nth-of-type(odd)>.col:nth-of-type(2n-1) {
	background: rgba(0, 0, 0, 0.8);
}

.table.type2>.row>.col:last-child {
	border-right: 1px solid rgba(0, 0, 0, 0);
}

.table.type2 .row:last-child .col {
	border-bottom: 0px;
}

.table .row.table_tag_info:nth-of-type(odd) {
	background: none;
}

.table .row:last-child .col {
	border-bottom: 1px solid #d1c9be;
}

.table .colgroup.row {
	background: rgba(0, 0, 0, 0);
}

.table .colgroup.row .col {
	text-align: center;
	border-top: 1px solid #d1c9be;
	border-bottom: 2px solid #68645e;
	font-weight: 400;
	font-size: 13px;
}

.table .row .col {
	color: #333;
	vertical-align: middle;
	font-weight: 300;
	box-sizing: border-box;
	padding: 16px 15px;
	line-height: 18px;
	font-size: 14px;
	display: table-cell;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: background .3s ease, color .3s ease;
}

.table .row .col.default_color {
	color: rgba(0, 0, 0, 0.5);
}

.table .row .col i.icon {
	opacity: 0.35;
	display: inline-block;
	transition: opacity .3s ease;
}

.table .row .col i.icon:hover {
	opacity: 1;
}

.table .row .col i.icon img {
	width: 20px;
}

.table .row .col a {
	color: rgba(0, 0, 0, 1);
}

.table a.row:hover {
	background: rgba(0, 0, 0, 0.05);
}

.table a.row:hover .col {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.table .row .col.middle {
	text-align: center;
}

.table .row.top_rank .col {
	background: #a69c90;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.table .row.top_rank .col i.icon {
	opacity: 1;
}

.table .row.top_rank .col.default_color {
	color: rgba(255, 255, 255, 0.7);
}

.dealership .table_search {
	padding-top: 80px;
}

.table_search {
	padding-top: 50px;
	margin: 0 auto;
	max-width: 1280px;
	position: relative;
	text-align: center;
	font-size: 0px;
}

.table_search .selectbox {
	min-width: 120px;
	margin-right: 30px;
}

.table_search .selectbox select {
	width: 100%;
}

.table_search .searchbox {
	min-width: 250px;
	display: inline-block;
}

.table_search .btn_wrap button {
	line-height: 40px;
	width: 150px;
	background: url('../images/btn_bg1.png') bottom right no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 14px;
	margin-left: 30px;
	margin-top: -7px;
}

.dealership .table.view {
	margin-top: 80px;
}

.table.view {
	margin-top: 50px;
	margin-bottom: 30px;
	width: 100%;
	display: block;
}

.table.view .row {
	background: #fff;
	display: block;
	font-size: 14px;
	padding: 5px 0px;
	line-height: 22px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.75);
	vertical-align: top;
}

.table.view .row>i {
	vertical-align: top;
	font-style: normal;
	font-family: "Montserrat";
	font-weight: 400;
	min-width: 50px;
	box-sizing: border-box;
	padding: 0px 13px;
	font-size: 12px;
	margin-right: 12px;
	display: inline-block;
	background: #333;
	letter-spacing: 0px;
	text-align: center;
	line-height: 22px;
	color: rgba(255, 255, 255, 1);
}

.table.view .row>div>i {
	vertical-align: top;
	font-style: normal;
	font-family: "Montserrat";
	font-weight: 400;
	width: 50px;
	font-size: 12px;
	margin-right: 12px;
	display: inline-block;
	background: #333;
	letter-spacing: 0px;
	text-align: center;
	line-height: 22px;
	color: rgba(255, 255, 255, 1);
}

.table.view .row>i.default_color {}

.table.view .row>i.ml20 {
	margin-left: 100px;
}

.table.view .row span {
	color: #fe8d00;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
	display: block;
	vertical-align: top;
	padding-left: 15px;
	font-size: 26px;
	line-height: 34px;
	padding-top: 0px;
	font-weight: 300;
	margin-top: 10px;
	letter-spacing: -0.05em;
}

.table.view .textarea {
	letter-spacing: -0.05em;
	padding: 30px 15px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 28px;
	margin-top: 20px;
	border-top: 2px solid #68645e;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.table.view .textarea img {
	max-width: 100% !important;
}

.table.view .textarea p.bold {
	font-size: 20px;
	color: #000;
	font-weight: 500;
}

.table.type2 {
	border-top: 2px solid rgba(0, 0, 0, 0.7);
	margin-top: 30px;
	margin-bottom: 0px;
}

.table.type2 .row {
	display: table-row;
}

.table.view .page_go {
	padding-top: 10px;
	padding-bottom: 20px;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.table.view .page_go::after {
	content: "";
	display: block;
	clear: both;
}

.table.view .page_go .prev,
.table.view .page_go .next {
	float: left;
	width: 50%;
}

.table.view .page_go .row span a {
	display: block;
	overflow: hidden;
	font-size: 16px;
	color: #000;
	padding-right: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* 라인수 */
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	line-height: 24px;
	height: auto;
	min-height: 24px;
	max-height: 48px;
}

.table.view .page_go .row:hover i {
	background: url('../images/btn_bg1.png') bottom right no-repeat;
}

.table.view .page_go .row:hover a {
	color: #fe8d00;
}

.table.view .btn_wrap {
	padding: 30px 0px 50px;
}

.table_view {
	padding-top: 0px;
	border-top: 2px solid #d1c9be;
	margin-top: 80px;
	padding-bottom: 10px;
}

.table_view section {
	font-size: 0px;
}

.table_view .title {
	margin-top: 20px;
	font-weight: 300;
	font-size: 12px;
	line-height: 24px;
	padding: 0px 15px;
	display: inline-block;
	background: #333;
	color: #fff;
	position: relative;
}

.table_view .title::after {
	width: 7px;
	height: 7px;
	display: block;
	position: absolute;
	bottom: -7px;
	left: 0px;
	content: "";
	background: url('../images/arrow_ico3.png') no-repeat;
}

.table_view .memo.not_last {
	padding-bottom: 0;
	border-bottom: 0 none;
}

.table_view .memo {
	margin-top: 5px;
	padding: 10px 0px 20px 0px;
	display: block;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.table_view .memo span.searchbox input {}

.table_view .memo .table {
	border: 1px solid rgba(0, 0, 0, 0.05);
	margin: 0px;
}

.table_view .memo .table .row:last-child .col {
	border-bottom: 0px;
	height: auto;
}

.table_view .memo .table .col {
	font-size: 15px;
}

.table_view .memo .table .col:first-child {
	border-right: 1px solid rgba(0, 0, 0, 0.05);
	width: 20%;
}

.table_view .memo .table .col>i.des {
	background: #574e47;
	background: url('../images/btn_bg3.png') no-repeat;
	background-size: 100% 100%;
	line-height: 22px;
	font-size: 12px;
	color: #fff;
	padding: 0px 12px;
	display: inline-block;
	margin-right: 7px;
	border-radius: 3px;
	font-style: normal;
}

.table_view .divide_item {
	width: 33.33%;
	display: inline-block;
}

.table_view .divide_item:nth-of-type(2) {
	width: 33.34%;
}


/*테이블 디자인1 */


/*body {margin: 10px; font-size: 13px}*/

.where {
	display: block;
	margin: 25px 15px;
	font-size: 11px;
	color: #000;
	text-decoration: none;
	font-family: verdana;
	font-style: italic;
}

.checks {
	position: relative;
}

.checks input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.checks input[type="radio"]+label {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.checks input[type="radio"]+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: -4px;
	width: 21px;
	height: 21px;
	text-align: center;
	background: #fafafa;
	border: 1px solid #cacece;
	border-radius: 100%;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
}

.checks input[type="radio"]+label:active:before,
.checks input[type="radio"]:checked+label:active:before {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.checks input[type="radio"]:checked+label:before {
	background: #E9ECEE;
	border-color: #adb8c0;
}

.checks input[type="radio"]:checked+label:after {
	content: '';
	position: absolute;
	top: 1px;
	left: 5px;
	width: 13px;
	height: 13px;
	background: #fa6400;
	border-radius: 100%;
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0);
}


/* radio size */

.checks.small {
	position: relative;
	display: inline-block;
	padding-top: 10px;
	margin-right: 20px;
}

.checks.small input[type="radio"]+label {
	color: #333;
	font-size: 15px;
	padding-left: 25px;
}

.checks.small input[type="radio"]+label:before {
	top: -2px;
	width: 17px;
	height: 17px;
}

.checks.small input[type="radio"]:checked+label:after {
	top: 3px;
	width: 9px;
	height: 9px;
}

select {
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	min-height: 32px;
	border: 0px;
	font-size: 15px;
	color: #fff;
	box-sizing: border-box;
	padding-right: 28px;
	padding-left: 7px;
	padding-top: 6px;
	padding-bottom: 6px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.7);
	background: url('../images/arrow_ico.png') no-repeat;
	background-position: calc(100% - 7px) center;
	background-color: transparent;
	font-weight: 300;
	boxs-sizing: border-box;
}

select>option {
	color: rgba(0, 0, 0, 0.8);
}

select::-ms-expand {
	display: none;
}

select:invalid {
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.3)
}

select option[value=""] {
	color: rgba(0, 0, 0, 0.5);
}

input[type='password'],
input[type='text'] {
	max-width: 100%;
	background: transparent;
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	min-height: 32px;
	border: 0px;
	font-size: 15px;
	color: #fff;
	box-sizing: border-box;
	padding-right: 7px;
	padding-left: 7px;
	padding-top: 6px;
	padding-bottom: 6px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	background: url('../images/search_ico.png') no-repeat;
	background-position: calc(100% - 7px) center;
	background-color: transparent;
	font-weight: 300;
}

textarea {
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 15px;
	min-height: 120px;
	line-height: 20px;
	font-size: 13px;
}

.searchbox.text input[type='password'],
.searchbox.text input[type='text'] {
	background: transparent;
}

.searchbox.text.readonly input[type='password'],
.searchbox.text.readonly input[type='text'] {
	border: transparent;
}

.searchbox input[type='password']:focus,
.searchbox input[type='text']:focus {
	border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.searchbox input[type='password']::placeholder,
.searchbox input[type='text']::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.searchbox.black input[type='password']::placeholder,
.searchbox.black input[type='text']::placeholder {
	color: #333;
}

.searchbox,
.selectbox {
	position: relative;
	display: inline-block;
}

.searchbox.black input[type='password'],
.searchbox.black input[type='text'],
.selectbox.black select {
	color: #333;
	border-bottom: 2px solid rgba(0, 0, 0, 0.7);
}

.searchbox label,
.selectbox label {
	display: block;
	font-size: 19px;
	padding-bottom: 10px;
	color: #fff;
	letter-spacing: 0em;
}

.searchbox.black label,
.selectbox.black label {
	font-weight: 500;
	color: #000;
}

.searchbox label i,
.selectbox label i {
	color: #f6511e;
	font-size: 34px;
	font-style: normal;
}

.searchbox.black .textbox {
	color: #333;
	padding-top: 6px;
	line-height: 20px;
	border: 0px;
	font-size: 15px;
}

.w20 {
	width: 20%;
}

.w25 {
	width: 25%;
}

.w30 {
	width: 30%;
}

.w50 {
	width: 50%;
}

.w100 {
	width: 100%;
}

.w11_7 {
	width: 11.7%;
}

.w100 {
	width: 100%;
}

.mr3 {
	margin-right: 3%;
}

.w25.mr3 {
	width: 22%;
}
.w25.mr3:last-child {
	margin-right: 0px;
}

.mt15 {
	margin-top: 15px;
}

.pb0 {
	padding-bottom: 0px !important;
}

.mt0 {
	margin-top: 0px !important;
}

.mt40 {
	margin-top: 40px;
}

.mr4 {
	margin-right: 4%;
}

.mb10 {
	margin-bottom: 10px;
}

.divide {
	height: 40px;
}

.btn_wrap {
	text-align: center;
}

.button,
button {
	cursor: pointer;
	position: relative;
	vertical-align: top;
	width: 250px;
	display: inline-block;
	line-height: 60px;
	background: url('../images/btn_bg1.png') no-repeat;
	background-size: 100% 100%;
	border: 0px;
	color: #fff;
	font-size: 18px;
}

.button.small,
button.small {
	width: auto;
	background: url('../images/btn_bg2.png') no-repeat;
	background-size: 100% 100%;
	font-size: 12px;
	padding-left: 30px;
	padding-right: 15px;
	margin-top: 2px;
	line-height: 32px;
}

.button.small::after,
button.small::after {
	background: url('../images/plusminus_ico.png') no-repeat;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 10px;
	top: 8px;
	content: "";
}

.button.small.plus,
button.small.plus {
	margin-top: 20px;
	width: 80px;
	margin-bottom: 20px;
	margin-left: 15px;
	background: url('../images/btn_bg1.png') no-repeat;
	background-size: 100% 100%;
	text-align: center;
	box-sizing: border-box;
}

button.small.plus::after,
button.small.plus::after {
	background: url('../images/plusminus_ico.png') -16px 0px no-repeat;
}

.btn_wrap.bottom {
	font-size: 0px;
	display: block;
	text-align: right;
}

.btn_wrap.bottom .button,
.btn_wrap.bottom button {
	line-height: 40px;
	width: 150px;
	background: url(../images/btn_bg1.png) bottom right no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 14px;
	margin-left: 5px;
	margin-top: 0px;
	text-align: center;
}

.btn_wrap.bottom .button.negative,
.btn_wrap.bottom button.negative {
	background: url(../images/btn_bg2.png) bottom right no-repeat;
	background-size: cover;
}

.board {
	box-sizing: border-box;
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}

.board.gallery1.is_table .item {
	display: table-cell;
	float: left;
}

.board.gallery1 {
	background: #f1f0ed;
	font-size: 0px;
	padding-top: 50px;
}

.board.gallery1 .item {
	overflow: hidden;
	width: 25%;
	padding: 20px;
	box-sizing: border-box;
	padding-top: 0px;
	min-height: 200px;
	display: inline-block;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 15px;
	position: relative;
}

.board.gallery1 .item::after {
	position: absolute;
	content: "";
	width: 1px;
	right: 0px;
	top: 5%;
	height: 90%;
	background: rgba(0, 0, 0, 0.1);
	display: block;
}

.board.gallery1 .item:nth-of-type(4n)::after {
	display: none;
}

.board.gallery1 .item>a {
	display: block;
}

.board.gallery1 .item .thumb {
	overflow: hidden;
	position: relative;
	height: 160px;
	background: #000;
}

.board.gallery1 .item .thumb .area {
	font-size: 12px;
	color: #fff;
	background: #000;
	padding: 0px 15px;
	display: inline-block;
	line-height: 24px;
	position: absolute;
	z-index: 2;
	left: 10px;
	top: 10px;
	transition: all .3s ease;
}

.board.gallery1 .item .thumb .img {
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.1);
	background-size: cover;
	transition: opacity .3s ease;
}

.board.gallery1 .item .thumb:hover .img {
	opacity: 1;
}

.board.gallery1 .item .thumb:hover .area {
	color: #000;
	background: #fff;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .7);
}

.board.gallery1 .item .table::before {
	content: "";
	display: block;
	clear: both;
}

.board.gallery1 .item .table {
	margin-top: 7px;
	display: table;
}

.board.gallery1 .item .table .text {
	position: relative;
	display: table-cell;
	font-size: 12px;
	vertical-align: middle;
	padding: 3px 15px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(255, 255, 2555, 0.5);
	min-height: 20px;
	line-height: 14px;
}

.board.gallery1 .item .table .left {
	background: #89817d;
	color: #fff;
	width: 40%;
}

.board.gallery1 .item .table .left.column {
	background: #474443;
}

.board.gallery1 .item .table .right {
	background: #e6e5e2;
	color: #222;
	width: 60%;
}

.board.gallery1 .item .table>span {
	display: table-row;
}

.board.gallery1 .item .table .right.odd {
	background: #f5f5f2;
}

.board.gallery2 {
	background: #f1f0ed;
	font-size: 0px;
	padding-top: 20px;
}

.board.gallery2 .item {
	overflow: hidden;
	width: 25%;
	padding: 20px;
	box-sizing: border-box;
	padding-top: 0px;
	min-height: 200px;
	display: inline-block;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 15px;
	position: relative;
}

.board.gallery2 .item::after {
	position: absolute;
	content: "";
	width: 1px;
	right: 0px;
	top: 5%;
	height: 90%;
	background: rgba(0, 0, 0, 0.1);
	display: block;
}

.board.gallery2 .item:nth-of-type(4n)::after {
	display: none;
}

.board.gallery2 .item>a {
	position: relative;
	display: block;
}

.board.gallery2 .item .thumb {
	overflow: hidden;
	position: relative;
	height: 260px;
	background: #000;
}

.board.gallery2 .item .thumb .area {
	font-size: 12px;
	color: #fff;
	background: #000;
	padding: 0px 15px;
	display: inline-block;
	line-height: 24px;
	position: absolute;
	z-index: 2;
	left: 10px;
	top: 10px;
	transition: all .3s ease;
}

.board.gallery2 .item .thumb .img {
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.1);
	transition: opacity .3s ease;
}

.board.gallery2 .item .thumb:hover .img {
	opacity: 1;
}

.board.gallery2 .item .thumb:hover .area {
	color: #000;
	background: #fff;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .7);
}

.board.gallery2 .item .table::before {
	content: "";
	display: block;
	clear: both;
}

.board.gallery2 .item .table {
	margin-top: 7px;
	display: table;
}

.board.gallery2 .item .table .text {
	position: relative;
	display: table-cell;
	font-size: 12px;
	vertical-align: middle;
	padding: 3px 15px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(255, 255, 2555, 0.5);
	min-height: 20px;
	line-height: 14px;
}

.board.gallery2 .item .table .left {
	background: #89817d;
	color: #fff;
	width: 40%;
}

.board.gallery2 .item .table .left.column {
	background: #474443;
}

.board.gallery2 .item .table .right {
	background: #e6e5e2;
	color: #222;
	width: 60%;
}

.board.gallery2 .item .table>span {
	display: table-row;
}

.board.gallery2 .item .table .right.odd {
	background: #f5f5f2;
}

.board.gallery2 .item .download {
	position: absolute;
	bottom: 0px;
	height: 50px;
	width: 100%;
	line-height: 50px;
	font-size: 15px;
	font-family: "Oswald";
	font-weight: 300;
	text-align: center;
	color: #fff;
	left: 0px;
	z-index: 10;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(255, 120, 11, 0.9);
	transition: background .3s ease;
}

.board.gallery2 .item .download>i {
	display: inline-block;
	width: 20px;
	height: 20px;
	top: 5px;
	margin-right: 10px;
	position: relative;
	background: url('../images/icons/download_ico.png');
	background-size: cover;
}

.board.gallery2 .item:hover .download {
	background: rgba(0, 0, 0, 0.8);
}

.paginate {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 70px;
	text-align: center;
}

.paginate a {
	color: #333;
	text-align: center;
	width: 100%;
	font-size: 14px;
	padding: 0px 5px;
	display: block;
	line-height: 32px;
	transition: color .2s ease;
	border-bottom: 2px solid transparent;
}

.paginate a:hover {
	color: #fe8d00;
}

.paginate span.active a {
	border-bottom: 2px solid #fe8d00;
	color: #fe8d00;
}

.paginate span {
	padding: 0px 10px;
	display: inline-block;
}

.smart_film_wrapper {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.smart_film_slider {
	width: 1920px;
	position: relative;
	left: 50%;
	height: 990px;
	margin: 0 auto;
	margin-left: -960px;
	overflow: hidden;
}

.smart_film_slider .slick-slide {}

.smart_film_slider .slick-arrow {
	display: none !important;
}

.smart_film_slider .slick-slide {
	width: 100%;
}

.smart_film_slider .slick-slide img {
	width: 100%;
}

.smart_film_slider .slick-dots {
	bottom: 50px;
	text-align: center;
	position: absolute;
	width: 100%;
}

.smart_film_slider .slick-dots li {
	font-size: 0;
	border-radius: 12px;
	width: 12px;
	height: 12px;
	display: inline-block;
	margin-right: 10px;
}

.smart_film_slider .slick-dots li.slick-active button {
	background: url('../images/btn_bg1.png') no-repeat;
}

.smart_film_slider .slick-dots li button {
	font-size: 0;
	border-radius: 12px;
	width: 12px;
	height: 12px;
	background: none;
	background-color: #ccc;
}

.window_films_img {
	width: 640px;
	height: 600px;
	overflow: hidden;
}

.window_films_img .img {
	width: 100%;
	transform: scale(1.4) rotate(0.01deg);
	opacity: 0;
	height: 100%;
	background-size: cover;
	transition: transform 3s ease, opacity 1s ease;
	transition-delay: 0.3;
}

.window_films_img .img.over {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	filter: blur(50px);
	transform: scale(3) rotate(0.01deg);
	transition: transform 2.5s ease, opacity 1s ease, filter 1.5s ease;
	transition-delay: 0.75s;
	opacity: 0;
	z-index: 1;
}

.window_films_img .img.smartfilm {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	transition: opacity 1s ease;
	transition-delay: 3.5s;
	opacity: 0;
	z-index: 1;
}

.window_films_img .img.sc_active {
	opacity: 1;
	filter: blur(0px);
	transform: scale(1) rotate(0.01deg);
}

.table_tag_info {
	width: 100%;
}

.table_tag_info::after {
	display: block;
	content: "";
	clear: both;
}

.table_tag_info div {
	float: left;
}

.table_date_tag {
	margin-left: 150px;
}


/*technology*/

.technology_con1 {
	width: 1224px;
	margin: 130px auto 105px;
}

.technology_con1::after {
	display: block;
	content: "";
	clear: both;
}

.technology_con1>li {
	float: left;
}

.technology_con1_img {
	width: 369px;
	height: 576px;
}

.technology_con1_img img {
	width: 100%;
}

.technology_con1_txt {
	width: 855px;
	box-sizing: border-box;
	padding: 100px 0 0 40px;
}

.technology_con1_txt .tit {
	font-size: 53px;
	font-weight: 600;
	color: #333;
	line-height: 1.2;
	letter-spacing: -2px;
	width: 678px;
}

.technology_con1_txt .txt {
	font-size: 20px;
	font-weight: 300;
	color: #333;
	line-height: 1.5;
	letter-spacing: -0.5px;
	width: 540px;
	padding-top: 70px;
}

.technology_con2 {
	width: 1224px;
	margin: 130px auto 105px;
}

.technology_con2::after {
	display: block;
	content: "";
	clear: both;
}

.technology_con2>li {
	float: left;
}

.technology_con2_img {
	width: 500px;
}

.technology_con2_img img {
	width: 100%;
}

.technology_con2_txt {
	width: 724px;
	box-sizing: border-box;
	padding: 25px 0 0 80px;
}

.technology_con2_txt .tit {
	font-size: 53px;
	font-weight: 600;
	color: #333;
	line-height: 1.2;
	letter-spacing: -2px;
	width: 678px;
}

.technology_con2_txt .txt {
	font-size: 20px;
	font-weight: 300;
	color: #333;
	line-height: 1.5;
	letter-spacing: -0.5px;
	width: 610px;
	padding-top: 55px;
}


/*creed*/

.creed_01 {
	width: 1240px;
}

.creed_02 {
	overflow: hidden;
	margin: 0 auto;
	width: 1240px;
}

.creed_02 img {
	width: 100%;
}

.creed_03 {
	width: 1240px;
	margin: 0 auto;
	padding: 0;
}


/*blask*/

.blask_01 {
	width: 1240px;
}

.blask_02 {
	overflow: hidden;
	margin: 0 auto;
	width: 1240px;
}

.blask_02 img {
	width: 100%;
}

.blask_03 {
	width: 1240px;
	margin: 0 auto;
	padding: 0;
}

.inquiry_form_area::after {
	display: block;
	content: "";
	clear: both;
}

.inquiry_form_box {
	float: left;
}

.inquiry_form_box::after {
	display: block;
	content: "";
	clear: both;
}

.inquiry_form_box span {
	display: block;
}

.inquiry_form_box_left {
	width: 256px;
	margin-right: 38px;
	margin-left: 280px;
}

.inquiry_form_box_right {}

.inquiry_form_box_right span {
	float: left;
}

.inquiry_form_box_right span.first,
.inquiry_form_box_right span:nth-child(1) {
	width: 150px;
	margin-right: 38px;
}

.inquiry_form_box_right span.second,
.inquiry_form_box_right span:nth-child(2) {
	width: 169px;
	margin-right: 38px;
	margin-top: 44px;
}

.inquiry_form_box_right span.third,
.inquiry_form_box_right span:nth-child(3) {
	width: 255px;
	margin-top: 44px;
}

.inquiry_form_box_right span.non_margin {
	margin-top: 0 !important;
}

.inquiry_form_box_right span.non_margin input {
	background: transparent !important;
}

section .text {
	position: absolute;
}

.ceramic1 {
	background: url(../images/images2/car_care1.png);
	background-size: cover;
	height: 1024px;
	background-repeat: no-repeat;
	position: relative;
}

.ceramic1 .text {
	font-size: 100px;
	color: #fff;
	bottom: 140px;
	right: 450px;
	border-left: 10px solid #f84c05;
	line-height: 90px;
	padding-left: 20px;
}

.ceramic2 {
	background: url(../images/images2/car_care2.png);
	background-size: cover;
	height: 1240px;
	background-repeat: no-repeat;
	position: relative;
	margin-top: -10px;
}

.ceramic2 .text {
	left: 310px;
	top: 90px;
}

.ceramic2 .text .text1 {
	font-size: 28px;
	color: #fff;
	line-height: 36px;
}

.ceramic2 .text .text2 {
	font-size: 28px;
	color: #858585;
	line-height: 30px;
	margin-top: 50px;
	margin-bottom: 35px;
}

.ceramic2 .text .text3 button {
	font-family: "Oswald";
	display: block;
	letter-spacing: 0.05em;
	position: relative;
	height: 60px;
	width: 230px;
	line-height: 55px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 100;
	background: url('../images/btn_bg4.png') no-repeat top center;
	background-size: cover;
}

.ceramic3 {
	background: url(../images/images2/car_care3.png);
	background-size: cover;
	height: 1170px;
	background-repeat: no-repeat;
	position: relative;
	margin-top: -10px;
	margin-bottom: -10px;
}

.ceramic3 .text {
	top: 270px;
}

.ceramic3 .text div {
	position: relative;
	display: inline-block;
	width: 300px;
	text-align: center;
	vertical-align: top;
	margin-right: 20px;
}

.ceramic3 .text .car_icon {
	background: url(../images/images2/car_icon1.png);
	background-position-x: 100px;
	background-size: contain;
	height: 120px;
	height: 120px;
	background-repeat: no-repeat;
	margin: 0 auto;
}

.ceramic3 .text {
	left: 320px;
	text-align: center;
}

.ceramic3 .text p {
	font-size: 28px;
	color: #fff;
	line-height: 40px;
	margin-top: 35px;
	margin-bottom: 25px;
}

.ceramic3 .text span {
	color: #949598;
	font-size: 14px;
	line-height: 25px;
}

.privacy_division {
	display: inline-block;
	content: "";
	width: 1px;
	height: 10px;
	margin-left: 32px;
	margin-right: 32px;
	background-color: #8c8c8c;
}

@media screen and (max-width: 1920px) {
	header {
		position: absolute;
	}
	.sub_top {
		max-width: 100%;
	}
	.sub_top>div {
		max-width: 100%;
	}
}


}
@media screen and (max-width: 1720px) {
	.information .map_wrapper .search {
		padding: 40px 50px 0px 100px;
	}
}
@media screen and (max-width: 1520px) {
	.information .map_wrapper {
		padding: 30px 60px;
	}
}
@media screen and (max-width: 1500px) {
	.phantom_01 .overbg::after {
		display: block;
	}

	.phantom_03 .contents_box {
		width: 1280px;
	}

	.window_films_img {
		width: 1240px;
		height: 572px;
	}

	.sub_top {
		width: 100%;
	}

	.sub_top_img img {
		width: auto;
		height: 100%;
	}

	.contents_box {
		width: 100%;
	}

	.phantom_01 .divide {
		display: none;
	}

	.phantom_01 .overbg {
		height: 1700px;
	}

	.phantom_01 {
		padding-top: 0px;
	}

	.phantom_01 .tit,
	.phantom_01 .small_txt,
	.phantom_01 .desc {
		text-align: center;
		padding: 0px;
	}

	.phantom_01 .tit {
		padding-top: 50px;
	}

	.phantom_01 .desc {
		padding: 0px 30px;
		padding-top: 50px;
		line-height: 30px;
	}

	.phantom_01 h5 {
		top: 290px;
		left: 0%;
		/* font-size: 76px; */
		/* width: 100%; */
		text-align: center;
		margin: 0 auto;
		width: 100%;
		border: 0px;
		position: absolute;
		display: inline-block;
		padding-top: 35px;
		padding-left: 0px;
	}

	.phantom_01 h5::after {
		top: 0px;
		left: 50%;
		width: 140px;
		height: 10px;
		content: "";
		display: block;
		position: absolute;
		background: #fe6b2f;
		margin-left: -70px;
	}

	.phantom_01.window_films_section>.contents_box {
		left: 0%;
		width: 100%;
		padding: 0px 10%;
		margin: 0 auto;
		/* position: relative; */
		border: 0px;
		/* margin-bottom:250px; */
		/* min-height:600px; */
	}

	.phantom_01 .btn_canvas_wrap {
		text-align: center;
		margin: 0 auto;
		margin-top: 40px;
		/* position: relative; */
	}

	.phantom_01 .desc {
		line-height: 30px;
		position: relative;
	}

	.phantom_01 .window_films_img {
		margin: 0 auto;
		left: 0%;
		top: 0px;
		position: relative;
	}

	.sub_top.films {
		height: 800px;
	}

	.sub_top.films .sub_top_img {
		width: 1500px;
		background: #000;
	}

	.sub_top_img .img {
		opacity: 0.5;
	}

	.sub_top.films .contents_box {
		top: 100px;
		left: 0%;
		margin-left: 0px;
	}

	.sub_top.films .vline {
		left: 40%;
	}

	.sub_top.films .contents_box .tit {
		padding-top: 50px;
		padding-left: 0px;
		position: relative;
		font-size: 94px;
		line-height: 80px;
		text-align: center;
	}

	.sub_top.films .contents_box .tit::after {
		display: none;
	}

	.sub_top.films .contents_box .desc {
		text-align: center;
		font-size: 22px;
		line-height: 30px;
		width: 100%;
	}

	.footer .contents_box {
		width: 90%;
		box-sizing: border-box;
	}

	.phantom_03 .point_box {
		width: 300px;
	}

	.phantom_03 .point_border {
		/* width:270px; */
		/* height:270px; */
		/* border-radius:270px; */
	}

	.phantom_03 .point_box h4 {
		font-size: 25px;
		line-height: 35px;
	}

	.phantom_03 .point_box p {
		font-size: 14px;
		line-height: 1.5;
		padding-top: 30px;
	}
}
@media screen and (max-width: 1300px) {
	header .icon {
		right: -15px;
	}

	header .logo {
		left: 20px;
	}

	.header.on+.sub_top .sub_top_img img {
		width: 100%;
		height: 100%;
		margin-top: 0px;
	}

	.header.on {
		height: 360px;
	}

	.header.on+.sub_top .contents_box .tit {
		font-size: 60px;
	}

	.phantom_02 {
		min-height: auto;
	}

	.phantom_02 .contents_box {
		width: 940px;
	}

	.phantom_02>.contents_box .icon {
		width: 50px;
		height: 50px;
		margin: 6px 10px 0 0;
	}

	.phantom_02>.contents_box .number {
		font-size: 65px;
	}

	.phantom_02>.contents_box .text_box {
		width: auto;
		margin: 8px 0 0 10px;
	}

	.phantom_02>.contents_box .percent {
		font-size: 25px;
	}

	.phantom_02>.contents_box .txt {
		font-size: 18px;
	}

	.phantom_02 .contents_box::after {
		display: block;
		content: "";
		clear: both;
	}

	.phantom_02>.contents_box li {
		margin: 0 0 50px 0;
		float: left;
		width: 50%;
	}

	.phantom_02>.contents_box li:nth-child(2n) {
		margin-left: 50px;
	}

	.phantom_02>.contents_box li:nth-child(2n)::after {
		display: block;
		content: "";
		clear: both;
	}

	.phantom_02>.contents_box .notice {
		margin-top: 0px;
		float: right;
		/* margin-right:25px; */
	}

	.phantom_02>.contents_box li:nth-child(2n) {
		margin-left: 0px;
	}

	.phantom_03 .contents_box {
		width: 900px;
		margin: 0 auto;
	}

	.phantom_03 .point_box {
		width: 50%;
	}

	.phantom_03 .point_border {
		/* width:270px; */
		/* height:270px; */
		/* border-radius:270px; */
	}

	.window_films_img {}

	.smart_film_slider {
		width: 1280px;
		height: 660px;
		margin-left: -640px;
	}

	.smart_film_slider .slick-dots {
		margin-top: -200px;
	}

	.smart_film_slider .slick-slide img {}

	section.technology .technology_wrapper {
		width: 700px;
	}

	section.technology .box_wrapper .box.left {
		width: 100%;
		padding-right: 0;
		padding-top: 0;
		text-align: center;
		margin-bottom: 80px;
	}

	section.technology .box_wrapper .box {
		width: 100%;
	}

	section.technology .box_wrapper .box.right {
		padding-left: 0;
		text-align: center;
	}

	section.technology .box_wrapper .box.right img {
		width: 595px;
	}

	section.technology .core_value {}

	section.technology .core_value .box {
		width: 700px;
		margin: 0 auto;
	}

	section.technology .core_value .box img {
		width: 100%;
	}

	section.technology .core_value h5 {
		width: 700px;
		font-size: 32px;
	}

	section.technology .core_value p {
		width: 700px;
	}

	.phantom_01 .tit {
		font-size: 40px;
	}

	.technology_con1 {
		width: 700px;
		margin: 130px auto 105px;
	}

	section.about .box {
		width: 100%;
	}

	section.about p {
		width: 700px;
	}

	.technology_con1_txt {
		width: 700px;
		padding: 100px 0 0 0;
		text-align: center;
	}

	.technology_con1>li {
		float: none;
	}

	.technology_con1_txt .txt {
		margin: 0 auto;
		padding-top: 50px;
		font-size: 19px;
	}

	.technology_con1_txt .tit {
		margin: 0 auto;
	}

	.technology_con1_img {
		width: 700px;
		margin: 40px auto 0;
		height: 300px;
		overflow: hidden;
	}

	.technology_con1_img img {
		margin-top: -300px;
	}

	.technology_con2 {
		width: 700px;
		height: 630px;
		margin: 0px auto 105px;
		position: relative;
	}

	.technology_con2_txt {
		width: 700px;
		padding: 0px 0 0 0;
		text-align: center;
	}

	.technology_con2>li {
		float: none;
	}

	.technology_con2_txt .txt {
		margin: 0 auto;
		padding-top: 50px;
		font-size: 19px;
	}

	.technology_con2_txt .tit {
		margin: 0 auto;
	}

	.technology_con2_img {
		width: 700px;
		margin: 40px auto 0;
		height: 300px;
		overflow: hidden;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.technology_con2_img img {
		margin-top: -300px;
	}

	.table_search {
		max-width: 470px;
	}

	.table_search .selectbox {
		display: block;
		margin-right: 0;
		min-width: auto;
		width: 100%;
		margin-bottom: 20px;
		box-sizing: border-box;
		padding: 0 20px;
	}

	.blask_01 {
		width: 680px;
	}

	.blask_02 {
		width: 680px;
	}

	.blask_03 {
		width: 680px;
	}

	.table_search .searchbox.mw250 {
		width: 250px;
	}

	.creed_01 {
		width: 680px;
	}

	.creed_02 {
		width: 680px;
	}

	.creed_03 {
		width: 680px;
	}
}
@media screen and (max-width: 1280px) {
	.inquiry .wrapper .caption h3 {
		display: block;
	}

	.inquiry .wrapper .caption p {
		display: block;
		margin-left: 0;
		margin-top: 35px;
	}

	.inquiry .wrapper>span {
		display: block;
		box-sizing: border-box;
		padding: 0 140px;
		width: 100%;
		margin-bottom: 25px;
	}

	.inquiry .wrapper>span input {
		width: 100%;
	}

	.inquiry_form_box_left {
		width: calc(50% - 39px);
		margin-right: 38px;
		margin-left: 20px;
		float: left;
		text-align: left;
	}

	.inquiry_form_box_right {
		width: calc(50% - 39px);
		float: left;
		text-align: left;
	}

	.inquiry_form_box_right span:nth-child(1) {
		width: 47%;
		margin-right: 3%;
	}

	.inquiry_form_box_right span:nth-child(1) input {
		width: 100%;
	}

	.inquiry_form_box_right span:nth-child(2) {
		width: 50%;
		margin-top: 44px;
		margin-right: 0;
	}

	.dealership_modi_form .filebox .upload-name {
		width: 180px;
	}

	.board.gallery2 .item {
		width: 50%;
	}

	.board.gallery1 .item {
		width: 50%;
	}

	.case_form_line_box {
		box-sizing: border-box;
		width: 100%;
		padding: 0 20px;
	}

	.case_form_line_box::after {
		display: block;
		content: "";
		clear: both;
	}

	.case_form_line_box span {
		display: inline-block;
		width: 47% !important;
	}

	.case_form_line_box span select {
		margin-bottom: 20px;
	}

	.case_form_line_box span label {
		padding-bottom: 15px;
	}

	.table.case_view_top_info .row .col {
		display: table-cell;
		padding: 16px 15px;
		line-height: 18px;
		float: none;
	}

	.table .row .col:nth-child(3) {
		float: none;
	}
}
@media screen and (max-width: 1024px) {
	.table_wrapper {
		padding: 0px 20px;
		box-sizing: border-box;
	}

	.table_view .title {
		margin-left: 0px;
		margin-right: 0px;
	}

	.table_view .memo {
		padding-left: 0px;
		padding-right: 0px;
	}

	.table .row .col {
		font-size: 13px;
	}

	.information .map_wrapper {
		padding: 30px 20px;
		overflow: hidden;
	}
}
@media screen and (max-width: 960px) {
	.header.on+.sub_top .contents_box .sub_menu_box {
		display: none;
	}

	.header.on .sub_scroll_menu {
		display: block;
	}

	.header {}

	.sub_top {
		height: 380px;
	}

	.sub_top.films {
		height: 700px;
	}

	.sub_top.films .vline {
		left: 20%;
	}

	.sub_top.films .sub_top_img {
		width: 1300px;
		left: -38%;
	}

	.sub_top .contents_box .txt {
		margin-bottom: 40px;
	}

	.sub_top .contents_box .tit {
		font-size: 55px;
	}

	.sub_top.films .contents_box .tit {
		font-size: 64px;
		line-height: 58px;
		text-align: center;
	}

	.sub_top.films .contents_box .desc {
		margin-top: 20px;
		padding: 0px 30px;
		font-size: 18px;
		line-height: 22px;
		width: 100%;
		box-sizing: border-box;
	}

	.sub_top .contents_box {
		padding-top: 85px;
	}

	.sub_menu_box {
		width: 430px;
	}

	.sub_scroll_menu {
		display: block;
	}

	.phantom_01 {
		/* padding: 0px 0 50px; */
		/* margin-top:430px; */
	}

	.header.on+.sub_top+.phantom_01 {
		margin-top: 330px;
	}

	.header.on+.sub_top .sub_top_img img {
		width: 100%;
		height: auto;
		margin-top: 0px;
	}

	.header.on+.sub_top {
		height: 180px;
	}

	.header.on {
		height: 180px;
	}

	.header.on+.sub_top .contents_box .tit {
		font-size: 26px;
	}

	.header.on+.sub_top .contents_box {
		padding-top: 90px;
	}

	.phantom_01 {
		margin-top: 0px;
	}

	.phantom_01 h5 {
		top: 290px;
		font-size: 66px;
		line-height: 56px;
		/* width: 100%; */
		display: inline-block;
		padding-top: 35px;
		padding-left: 0px;
	}

	.phantom_02 .contents_box {
		width: 720px;
	}

	.phantom_02>.contents_box li:nth-child(2n) {
		margin-left: calc(50% - 280px);
	}

	.phantom_02>.contents_box li {
		margin: 0 0 50px calc(50% - 280px);
		float: none;
		width: auto;
	}

	.phantom_02>.contents_box .notice {
		margin-top: 0px;
		float: none;
		margin-right: 25px;
	}

	.phantom_02>.contents_box .icon {
		width: 52px;
		height: 52px;
		margin: 15px 10px 0 0;
	}

	.phantom_02>.contents_box .number {
		font-size: 100px;
	}

	.phantom_02>.contents_box .text_box {
		width: auto;
		margin: 20px 0 0 10px;
	}

	.phantom_02>.contents_box .percent {
		font-size: 34px;
	}

	.phantom_02>.contents_box .txt {
		font-size: 20px;
	}

	.phantom_03 .contents_box {
		width: 700px;
	}

	.information .map_wrapper .map,
	.information .map_wrapper .search {
		width: 100%;
	}

	.information .map_wrapper .map {
		float: none;
		margin: 0 auto;
		width: 320px;
	}

	.information .map_wrapper .search {
		float: none;
		margin: 0px auto 0;
		padding: 0;
		width: 100%;
	}

	.information .map_wrapper .search .btn_wrap2 {
		margin: 0 auto;
		width: 250px;
		height: 60px;
	}

	.information .map_wrapper .map_total {
		margin: 0 0 0 -90px;
		transform: scale(0.7);
	}
}
@media screen and (max-width: 767px) {
	.phantom_01 .tit {
		font-size: 32px;
	}

	.phantom_01 .desc {}

	.phantom_02 .contents_box {
		width: 600px;
	}

	.phantom_02>.contents_box li:nth-child(2n) {
		margin-left: calc(50% - 280px);
	}

	.phantom_02>.contents_box li {
		margin: 0 0 50px calc(50% - 280px);
		float: none;
	}

	.phantom_03 .contents_box {
		width: 600px;
	}
}
@media screen and (max-width: 720px) {
	.smart_film_slider {
		width: 800px;
		height: 400px;
		margin-left: -400px;
	}

	.window_films_img {}

	.smart_film_slider .slick-dots {
		margin-top: -280px;
	}

	.smart_film_slider .slick-slide img {}

	section.technology .technology_wrapper {
		width: 460px;
	}

	section.technology h2 span {
		font-size: 60px;
	}

	section.technology h2 {
		font-size: 60px;
	}

	section.technology .box_wrapper .box img {
		width: 100%;
	}

	section.technology .box_wrapper .box.right img {
		width: 100%;
	}

	section.technology .core_value .box {
		width: 460px;
	}

	section.technology .core_value h5 {
		width: 450px;
		font-size: 18px;
		line-height: 1.5;
	}

	section.technology .core_value p {
		width: 450px;
		font-size: 14px;
		line-height: 1.5;
		padding-top: 26px;
	}

	section.technology .box_wrapper .box p {
		width: 450px;
	}

	.inquiry_form_box_left {
		width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
		float: none;
		text-align: left;
		margin-left: 0;
	}

	.inquiry_form_box_right {
		width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
		float: none;
		text-align: left;
	}

	.dealership_modi_form .filebox .upload-name {
		width: 44%;
	}

	.dealership_modi_form .filebox.w50 {
		width: 100%;
	}

	.dealership_modi_form .cs_address {
		width: 100%;
	}

	.inquiry .wrapper .caption p {
		padding-left: 0;
		border-left: 0;
		text-align: center;
	}

	.inquiry .wrapper .caption h3 {
		text-align: center;
	}

	.inquiry .black_bg {
		padding-top: 30px;
	}

	.inquiry .wrapper .caption {
		padding: 30px 20px;
	}

	.inquiry .wrapper>span {
		padding: 0 20px;
	}

	.blask_01 {
		width: 440px;
	}

	.blask_02 {
		width: 440px;
		padding: 0 0 50px 0;
	}

	.blask_03 {
		width: 440px;
	}

	.creed_01 {
		width: 440px;
	}

	.creed_02 {
		width: 440px;
		padding: 0 0 50px 0;
	}

	.creed_03 {
		width: 440px;
	}

	section.about .box {
		width: 460px;
		padding-top: 80px;
		padding-bottom: 30px;
	}

	section.about p {
		width: 460px;
		font-size: 18px;
		line-height: 1.5;
	}

	.technology_con1 {
		width: 460px;
		margin: 0px auto 105px;
	}

	.technology_con1_txt {
		width: 460px;
		padding: 80px 0 0 0;
		text-align: center;
	}

	.technology_con1>li {
		float: none;
	}

	.technology_con1_txt .txt {
		margin: 0 auto;
		padding-top: 30px;
		font-size: 19px;
		width: 460px;
	}

	.technology_con1_txt .tit {
		margin: 0 auto;
		width: 460px;
		font-size: 38px;
	}

	.technology_con1_img {
		width: 460px;
		margin: 40px auto 0;
		height: 300px;
		overflow: hidden;
	}

	.technology_con1_img img {
		margin-top: -200px;
	}

	.technology_con2 {
		width: 460px;
		height: 630px;
		margin: 0px auto 105px;
		position: relative;
	}

	.technology_con2_txt {
		width: 460px;
		padding: 0px 0 0 0;
		text-align: center;
	}

	.technology_con2>li {
		float: none;
	}

	.technology_con2_txt .txt {
		margin: 0 auto;
		padding-top: 30px;
		font-size: 19px;
		width: 460px;
	}

	.technology_con2_txt .tit {
		margin: 0 auto;
		width: 460px;
		font-size: 38px;
	}

	.technology_con2_img {
		width: 460px;
		margin: 40px auto 0;
		height: 300px;
		overflow: hidden;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.technology_con2_img img {
		margin-top: -30px;
	}
}
@media screen and (max-width: 640px) {
	header .logo {
		left: 20px;
	}

	header .icon {
		right: 0;
	}

	.sub_top .contents_box {
		padding-top: 130px;
	}

	.sub_top .contents_box .tit {
		font-size: 40px;
	}

	.sub_top .contents_box .desc {
		font-size: 16px;
		box-sizing: border-box;
		padding: 0 20px;
	}

	.sub_menu_box>li {
		font-size: 14px;
	}

	.sub_menu_box {
		position: absolute;
		bottom: -26px;
	}

	.phantom_01 {
		margin-top: 0px;
	}

	.phantom_01 .tit {
		font-size: 16px;
		line-height: 1.3;
	}

	.phantom_01 .desc {
		font-size: 12px;
		padding-top: 20px;
		line-height: 1.3;
	}

	.phantom_01 .desc.type2 {
		display: none;
	}

	.footer {
		height: 245px;
	}

	.footer .contents_box .terms_box {
		position: static;
		margin-bottom: 15px;
	}

	.company_info {
		margin: 0;
	}

	.company_info li {
		float: none;
		margin: 10px 0;
	}

	.company_info li::after {
		display: none;
	}

	.copyright_txt {
		line-height: 1.5;
	}

	.address_txt {
		line-height: 1.5;
	}

	.header.on+.sub_top .contents_box {
		padding-left: 20px;
	}

	.phantom_01 .overbg {
		height: 700px;
	}

	.phantom_01.window_films_section>.contents_box {
		bottom: 40px;
		/* min-height: 600px; */
	}

	.phantom_01 h5 {
		top: 140px;
		font-size: 28px;
		line-height: 1;
		/* width: 100%; */
		display: inline-block;
		padding-top: 15px;
		padding-left: 0px;
	}

	.phantom_01 h5::after {
		top: 0px;
		left: 50%;
		width: 80px;
		height: 4px;
		margin-left: -40px;
	}

	.phantom_02 .contents_box {
		width: 400px;
	}

	.phantom_02>.contents_box li:nth-child(2n) {
		margin-left: 0;
	}

	.phantom_02>.contents_box li {
		margin: 0 0 50px 0;
		float: none;
		width: 420px;
	}

	.phantom_02>.contents_box .icon {
		width: 50px;
		height: 50px;
		margin: 5px 10px 0 0;
		display: none;
	}

	.phantom_02>.contents_box .number {
		font-size: 65px;
	}

	.phantom_02>.contents_box .text_box {
		width: auto;
		margin: 10px 0 0 10px;
	}

	.phantom_02>.contents_box .percent {
		font-size: 30px;
	}

	.phantom_02>.contents_box .txt {
		font-size: 18px;
	}

	.phantom_02>.contents_box .notice {
		margin-top: 90px;
	}

	.sub_top .contents_box .desc {
		display: none;
	}

	.sub_top .contents_box {
		padding-top: 80px;
	}

	.sub_top {
		height: 250px;
	}

	.header {}

	.sub_top.films .vline {
		left: 10%;
	}

	.sub_top .contents_box .txt {
		margin-bottom: 35px;
	}

	.phantom_03 {
		padding: 100px 0 0px;
	}

	.phantom_03 .contents_box {
		width: 470px;
	}

	.phantom_03 .point_box {}

	.phantom_03 .point_border {
		/* width:180px; */
		/* height:180px; */
		/* border-radius:180px; */
	}

	.phantom_03 .point_box h4 {
		font-size: 16px;
		line-height: 21px;
		color: #fff;
	}

	.phantom_03 .point_box p {
		font-size: 12px;
		line-height: 1.5;
		/* color:#fff; */
		padding-top: 15px;
	}

	.phantom_03 .point_box>span {
		margin: 20px auto;
	}

	.selectbox {
		display: block;
	}

	.dealership_modi_form .table .row .col {
		float: none;
	}

	.dealership_modi_form .table.templete .row .col {
		height: 100%;
	}

	.dealership_modi_form .table_view .memo .table .col:first-child {
		width: 100%;
		border-right: 0;
		margin-top: 0;
	}

	.dealership_modi_form .table_view .memo .table .col {
		margin-top: 25px;
	}

	.dealership_modi_form .table_view .memo .table .col:first-child input {
		width: 100%;
		padding: 0 10px;
	}

	.dealership_modi_form .table .row .col {
		padding: 0;
		width: 100%;
		max-width: 100%;
		height: 34px;
	}

	.dealership_modi_form .table .row .col span {
		margin-bottom: 15px;
		width: auto;
		margin-right: 10px;
	}

	.dealership_modi_form .table .row .col span.searchbox {
		float: left;
	}

	.dealership_modi_form .table .row .col span select {
		width: 100%;
		box-sizing: border-box;
		padding: 0 10px;
		background-position: 95% center;
	}

	.dealership_modi_form .table .row .col span input {
		width: 100%;
		box-sizing: border-box;
		padding: 0 10px;
	}

	.dealership_modi_form .table .row .col.tit_tag {
		font-size: 18px;
		margin-bottom: 10px;
		height: 22px;
	}

	.dealership_modi_form .table .row {
		box-sizing: border-box;
		padding: 15px 10px;
	}

	.dealership_modi_form .table .row .col span.car_radio {
		width: 50%;
	}

	.dealership_modi_form .table .row .col span.kind_car {
		width: auto;
		float: left;
		margin-bottom: 0px;
		padding-right: 10px;
	}

	.dealership_modi_form .table .row .col.call_box {
		height: auto;
	}

	.dealership_modi_form .table .row .col.call_box span {
		width: 30%;
	}

	.dealership_modi_form .table .row .col span.gender_radio {
		width: 50%;
	}

	.dealership_modi_form .table .row .col span.age_radio {
		display: block;
	}

	.dealership_modi_form .table .row .col.age_radio_box {
		height: 100%;
	}

	.dealership_modi_form .table .row .col.home_box {
		height: 100%;
	}

	.dealership_modi_form .table .row.age_radio_area {
		height: auto;
	}

	.table_search {
		max-width: 460px;
	}

	.table_search .selectbox {
		display: block;
		margin-right: 0;
		min-width: auto;
		width: 100%;
		margin-bottom: 20px;
		box-sizing: border-box;
		padding: 0 20px;
	}

	.table_search .searchbox {
		display: block;
		min-width: auto;
		width: 100%;
		margin-bottom: 40px;
		box-sizing: border-box;
		padding: 0 20px;
	}

	.table_search .btn_wrap {
		display: block;
		width: 150px;
		height: 40px;
		margin: 0 auto;
	}

	.table_search .btn_wrap button {
		display: block;
		margin-top: 0;
		margin-left: 0;
	}

	.table .colgroup.row {
		display: none;
	}

	.table .row {
		display: block;
		padding: 20px 10px;
	}

	.table>.row:nth-of-type(odd) {
		background: rgba(0, 0, 0, 0.05);
	}

	.table .row::after {
		display: block;
		content: "";
		clear: both;
	}

	.table .row .col {
		padding: 0 10px;
		display: block;
		border-bottom: 0;
		float: left;
	}

	.table .row .col:nth-child(1) {
		padding: 0;
		width: 29px;
	}

	.table .row .col:nth-child(2) {
		max-width: 100%;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		/* white-space:nowrap; */
		word-wrap: normal;
	}

	.table .row .col:nth-child(3) {
		width: 88px;
		padding: 0;
		float: right;
	}

	.table a.row:hover .col {
		border-bottom: 0;
	}

	.table .row:last-child .col {
		border-bottom: 0;
	}

	.table.quality_table .row .col {
		width: auto;
		display: inline-block;
		float: none;
		padding: 0;
		padding-right: 10px;
	}

	.table.quality_table .row .col:nth-child(5) {
		padding: 5px 0 10px;
	}

	.information .map_wrapper .search .selectbox.local_search_box {
		width: 100%;
	}

	.table.information_table .row.top_rank {
		background-color: #a69c90;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.table.information_table .row.top_rank .col {
		background-color: transparent;
		border-bottom: 0;
	}

	.table.information_table .row .col {
		display: inline;
		float: none;
		line-height: 2.5;
	}

	.table.information_table .row .col:nth-child(1) {
		width: 56px;
	}

	.table.information_table .row .col:nth-child(2) {
		width: auto;
	}

	.table.information_table .row .col i.icon img {
		vertical-align: middle;
	}

	.board.gallery1 .item {
		width: 100%;
	}

	.case_form_line_box span {
		display: block;
		width: 100% !important;
	}

	.table.case_view_top_info>.row:nth-of-type(odd),
	.table.type2>.row:nth-of-type(odd) {
		background-color: #fff;
	}

	.table.case_view_top_info .row .col {
		display: inline-block;
		width: 50%;
		background-color: #fff;
	}

	.table.type2.case_view_top_info>.row>.col {
		border-right: 0;
	}

	.table.case_view_top_info .row .col.table_label {
		background-color: rgba(0, 0, 0, 0.8);
	}

	.table_search .searchbox.mw250 {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.board.gallery2 .item {
		width: 100%;
	}

	.table .row .col:nth-child(2) {}

}
@media screen and (max-width: 480px) {
	.sub_top.films .vline {
		left: -40%;
	}

	.sub_top .contents_box .txt {
		display: none;
	}

	.sub_top .contents_box .tit {
		padding-top: 35px;
	}

	.sub_menu_box {
		width: 90%;
	}

	.sub_top.films .contents_box .tit {
		font-size: 44px;
		line-height: 48px;
		text-align: center;
	}

	.footer {
		height: 290px;
	}

	.phantom_02 .contents_box {
		width: 300px;
	}

	.phantom_02>.contents_box li {
		width: 300px;
	}

	.phantom_02>.contents_box .number {
		font-size: 44px;
	}

	.phantom_02>.contents_box .text_box {
		width: auto;
	}

	.phantom_02>.contents_box .percent {
		font-size: 20px;
	}

	.phantom_02>.contents_box .txt {
		font-size: 14px;
		padding-top: 2px;
	}

	.phantom_02>.contents_box .notice {
		font-size: 14px;
		margin-top: 50px;
	}

	.phantom_03 {
		padding: 0;
	}

	.phantom_03 .contents_box {
		width: 300px;
	}

	.phantom_03 .point_border {
		width: 120px;
		height: 120px;
	}

	.smart_film_slider {
		width: 640px;
		height: 320px;
		margin-left: -320px;
	}

	.smart_film_slider .slick-slide img {
		margin-top: 0;
	}

	.smart_film_slider .slick-dots {
		margin-top: -335px;
	}

	section.technology .technology_wrapper {
		width: 320px;
		padding-top: 60px;
	}

	section.technology .box_wrapper .box p {
		width: 320px;
	}

	section.technology .core_value .box {
		width: 320px;
	}

	section.technology .core_value h5 {
		width: 320px;
		font-size: 18px;
		line-height: 1.5;
	}

	section.technology .core_value p {
		width: 320px;
		font-size: 14px;
		line-height: 1.5;
		padding-top: 26px;
	}

	section.technology h2 span {
		font-size: 50px;
	}

	section.technology h2 {
		font-size: 50px;
	}

	section.technology .box_wrapper {}

	.window_films_img {
		width: 320px;
		height: 147px;
	}

	.inquiry_form_box_right span {
		float: none;
		width: 100%;
	}

	.inquiry_form_box_right span:nth-child(1) {
		width: 100%;
		margin-top: 40px;
	}

	.inquiry_form_box_right span:nth-child(2) {
		width: 100%;
		margin-top: 25px;
	}

	.inquiry_form_box_right span:nth-child(2) input {
		width: 100%;
	}

	.inquiry_form_box_right span:nth-child(3) {
		width: 100%;
		margin-top: 25px;
	}

	.dealership_modi_form .btn_wrap.bottom {
		text-align: center;
	}

	.dealership_modi_form .btn_wrap.bottom button {
		width: 47%;
		margin-left: 0;
		margin-right: 3%;
	}

	.dealership_modi_form .btn_wrap.bottom a:last-child button {
		margin-right: 0;
	}

	.dealership_modi_form .cs_address {
		width: 100%;
	}

	.dealership_modi_form .table .row .col span.checks.small {
		float: left;
	}

	section.about .box {
		width: 320px;
		padding-top: 80px;
		padding-bottom: 30px;
	}

	section.about p {
		width: 320px;
		font-size: 14px;
		line-height: 1.5;
	}

	.technology_con1 {
		width: 320px;
		margin: 0px auto 55px;
	}

	.technology_con1_txt {
		width: 320px;
		padding: 80px 0 0 0;
		text-align: center;
	}

	.technology_con1>li {
		float: none;
	}

	.technology_con1_txt .txt {
		margin: 0 auto;
		padding-top: 30px;
		font-size: 14px;
		width: 320px;
	}

	.technology_con1_txt .tit {
		margin: 0 auto;
		width: 320px;
		font-size: 26px;
	}

	.technology_con1_img {
		width: 320px;
		margin: 40px auto 0;
		height: 230px;
		overflow: hidden;
	}

	.technology_con1_img img {
		margin-top: -130px;
	}

	.technology_con2 {
		width: 320px;
		height: 480px;
		margin: 0px auto 55px;
		position: relative;
	}

	.technology_con2_txt {
		width: 320px;
		padding: 0px 0 0 0;
		text-align: center;
	}

	.technology_con2>li {
		float: none;
	}

	.technology_con2_txt .txt {
		margin: 0 auto;
		padding-top: 30px;
		font-size: 14px;
		width: 320px;
	}

	.technology_con2_txt .tit {
		margin: 0 auto;
		width: 320px;
		font-size: 26px;
	}

	.technology_con2_img {
		width: 320px;
		margin: 40px auto 0;
		height: 230px;
		overflow: hidden;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.technology_con2_img img {
		margin-top: -30px;
	}

	.table .row .col:nth-child(2) {
		/* max-width: 44vw; */
		height: auto;
	}

	.table .row .col.non_limit:nth-child(2) {
		max-height: none;
	}

	.table.view .row>i.default_color {
		width: 100%;
		margin-left: 0;
	}

	.table_tag_info div {
		float: none;
	}

	.table_date_tag {
		margin-left: 0px;
		margin-top: 10px;
	}

	.quality_btn_box a {
		display: block;
		margin: 0 auto;
		margin-bottom: 10px;
		width: 150px;
		height: 40px;
	}

	.creed_01 {
		width: 300px;
	}

	.creed_02 {
		width: 300px;
	}

	.creed_03 {
		width: 300px;
	}

	.blask_01 {
		width: 300px;
	}

	.blask_02 {
		width: 300px;
	}

	.blask_03 {
		width: 300px;
	}

	.information .map_wrapper {
		overflow: hidden;
	}

	.information .map_wrapper .map {
		margin-top: -110px;
	}

	.information .map_wrapper .map_total {
		margin: 0 0 0 -100px;
		transform: scale(0.6);
	}

	.information .map_wrapper .search {
		margin-top: -80px;
	}

	.information .map_wrapper .search h4 {
		font-size: 34px;
	}

	.information .map_wrapper .search p {
		font-size: 16px;
	}

	.btn_wrap.bottom .button,
	.btn_wrap.bottom button {
		width: 100% !important;
		margin: 0px !important;
		padding: 0px !important;
		margin-bottom: 10px !important;
	}
}
