.font-24 {
  --fontsize: 2.4rem;
  font-size: var(--fontsize);
}

.font-28 {
  --fontsize: 2.8rem;
  font-size: var(--fontsize);
}

.font-30 {
  --fontsize: 3.0rem;
  font-size: var(--fontsize);
}

@media (max-width: 1720px) {
  .w1720 {
    padding: 0 20px;
  }
  .title .sectionTitle {
    font-size: 13rem;
  }
	header .headerBox nav .depth1 > li {
		width: 170px;
	}
	header .headerBox .buttonBox .langBox {
		margin: 0 20px 0 10px;
	}
  /* #products .box .productsTabTitle ul {
    max-width: 62%;
  } */
  #about .title {
    -webkit-transform: translateX(calc(-50% + 16px));
            transform: translateX(calc(-50% + 16px));
  }
  #subContents .products.view .box .title {
    padding: 0 20px 0 0;
  }
  #subContents .products.view .box .quickMenu {
    right: 20px;
  }
}

@media (max-width: 1600px) {
  #subContents .location .box .infoBox {
    width: 500px;
    padding: 80px 60px;
  }
  #subContents .products.view .box .quickMenu {
    bottom: 20px;
  }
  footer .w1720 .footerBox #fnb .depth1 > li {
    width: 140px;
  }
}

@media (max-width: 1400px) {
  header .headerBox nav .depth1 > li {
    width: 125px;
  }
  header .headerBox nav .depth1 > li > a {
    font-size: 1.7rem;
  }
	header .headerBox .buttonBox .langBox {
		margin: 0 30px 0 15px;
	}
  .listBox ul li {
    height: 80px;
  }
  #products .title {
    top: 14%;
    left: 20%;
  }
  #type .box .itemBox {
    gap: 0 15px;
  }
  #recommend .box .itemBox {
    gap: 0 25px;
  }
  #about .box .info {
    gap: 0 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #about .box .info .titleBox div {
    margin: 10px 0 50px;
  }
  #about .box .info .titleBox p {
    font-size: 1.6rem;
  }
  #about .box .link.listBox {
    margin: 60px 0 40px;
  }
  #subContents .subMenu #lnb::before {
    left: -12px;
  }
  #subContents .subMenu #lnb::after {
    right: -12px;
  }
  #subContents .paddingBox {
    padding: 100px 0;
  }
  #subContents .introduce .box .title {
    margin: -30px 0 -25px;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom {
    padding: 0 20px;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .factoryTitleSlide {
    width: 60%;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .optionBox {
    gap: 0 10px;
  }
  #subContents .certification .box .itemBox {
    gap: 40px 30px;
  }
  #subContents .mapPage .box .mapNav {
    right: 60px;
  }
  #subContents .location .box .mapBox {
    height: 520px;
  }
  #subContents .location .box .infoBox {
    width: 440px;
    padding: 50px;
  }
  #subContents .location .box .infoBox hr {
    margin: 30px 0;
  }
  #subContents .location .box .infoBox .linkBox {
    margin: 50px 0 0;
  }
  #subContents .products.list .box .itemBox {
    gap: 50px 40px;
  }
  #subContents .products.view .box .info {
    gap: 0 80px;
  }
  #subContents .findMap .box .mapBox {
    height: 860px;
  }
  #subContents .findMap .box .infoBox {
    width: 460px;
    padding: 50px 0 0;
  }
  #subContents .findMap .box .infoBox .titleBox,
  #subContents .findMap .box .infoBox .searchBox {
    padding: 0 50px;
  }
  #subContents .findMap .box .infoBox .resultBox {
    padding: 0 10px 30px 50px;
  }
  #subContents .findMap .box .infoBox .resultBox .list ul {
    padding: 0 35px 0 0;
  }
  footer .w1720 .footerBox #fnb .depth1 > li {
    width: 125px;
  }
}

@media (max-width: 1300px) {
  .w1300 {
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  html,
  body,
  table,
  input,
  button,
  textarea {
    font-size: 56.25%;
  }
  #wrap {
    overflow-x: hidden;
  }
  .font-24,
  .font-28,
  .font-30 {
    font-size: calc(var(--fontsize) * 0.92);
  }
  header {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header::before {
    width: 0;
    height: 100%;
    background: #f9f9f9;
    right: 0;
    opacity: 1;
  }
  header .headerBox nav {
    display: block;
    width: 100%;
    height: calc(100vh - 90px);
    background: #ffffff;
    position: fixed;
    top: 90px;
    left: auto;
    right: -100%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  header .headerBox nav::before {
    content: "";
    display: block;
    width: 50%;
    padding-bottom: 22%;
    background: #ffffff url("/img/common/menuPoint.png") no-repeat right bottom/cover;
    background-blend-mode: luminosity;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  header .headerBox nav .depth1 {
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #f9f9f9;
    padding: 40px 20px;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .headerBox nav .depth1.on {
    width: 50%;
  }
  header .headerBox nav .depth1 > li {
    width: 100%;
    height: auto;
    position: static;
  }
  header .headerBox nav .depth1 > li > a {
    color: #222222;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 2.4rem;
    font-weight: 600;
    padding: 20px 0;
  }
  header .headerBox nav .depth1 > li > a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #d60000;
    border-right: 1px solid #d60000;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }
  header .headerBox nav .depth1 > li > a.on {
    color: #d60000;
  }
  header .headerBox nav .depth1 > li > a.on::after {
    opacity: 1;
  }
  header .headerBox nav .depth1 > li .depth2 {
    width: 100%;
    padding: 40px 20px;
    top: 0;
    left: 100%;
  }
  header .headerBox nav .depth1 > li .depth2 li a {
    font-size: 2.0rem;
    text-align: left;
    padding: 22px 0;
  }
  header .headerBox nav.on {
    right: 0;
  }
  header.on::before {
    width: 100%;
    height: 100%;
  }
  header.bgOn {
    background: rgba(255, 255, 255, 0.8);
  }
  #visual .w1720 .visualBox .titleBox p {
    margin: 25px 0 0;
  }
	#products .title {
		top: 8%;
	}
  #products .bg {
    width: 26%;
  }
  #products .bg::after,
  #products .bg .count {
    width: 140px;
  }
  #products .bg::after {
    height: 65%;
  }
  #products .box .tabContents .item .info .titleBox .sectionTitleH2 {
    margin: 35px 0 20px -3px;
  }
	#products .box .tabContents .item .info .moreButton {
		margin: 60px 0 40px;
	}
	#products .box .productsTabTitle::before {
		width: calc(100% + 120px);
	}
	#products .box .productsTabTitle::after {
		right: -120px;
	}
  #type .box .itemBox .item > a .icon {
    margin: 0 0 20px;
  }
  #type .box .itemBox .item > a span {
    margin: 10px 0 20px;
  }
  #about .img {
    width: 46%;
  }
  .paging {
    margin: 60px 0 0;
    padding: 20px 0 0;
  }
  .paging ul li::after {
    top: -21px;
  }
  #subContents .pageTitle {
    margin: 100px 0 60px;
  }
  #subContents .subPage {
    padding: 0 0 120px;
  }
  #subContents .subMenu #lnb .depth2 li a {
	font-size: 1.5rem;
  }
  #subContents .introduce .box .title {
    margin: -25px 0;
  }
  #subContents .introduce .box .introBox {
    padding: 60px 0;
  }
  #subContents .introduce .box .introBox p {
    padding: 0 0 50px;
  }
  #subContents .introduce .box .organBox .itemBox .item {
    gap: 0 20px;
  }
  #subContents .introduce .box .organBox .itemBox .item .info {
    width: 170px;
    height: 170px;
  }
  #subContents .introduce .box .organBox .itemBox .item .info dl dt {
    margin: 15px 0 5px;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox {
    gap: 0 10px;
    margin: 25px 0 0;
  }
  #subContents .introduce .box .organBox .itemBox .item ul {
    gap: 10px;
  }
  #subContents .introduce .box .organBox .itemBox .item ul li {
    gap: 10px 0;
  }
  #subContents .introduce .box .organBox .itemBox .item ul li span {
    font-size: 1.5rem;
  }
  #subContents .introduce .box .mapBox ul {
    gap: 0 25px;
  }
  #subContents .introduce .box .mapBox ul li {
    padding: 40px 0;
  }
  #subContents .introduce .box .mapBox ul li p {
    padding: 20px 0 0;
  }
  #subContents .introduce .box .historyBox .tabContents > div {
    margin: 50px 0 0;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul {
    gap: 80px 0;
  }
  #subContents .introduce .box .factoryBox .itemBox {
    gap: 0 20px;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox {
    max-width: calc((100% - 40px) / 3);
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px 0;
    padding: 20px;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .factoryTitleSlide {
    width: 100%;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .optionBox {
    margin: 0 0 0 auto;
  }
  #subContents .certification .box .itemBox {
    gap: 30px 20px;
  }
  #subContents .mapPage .box .mapNav {
    right: 20px;
  }
  #subContents .location .box .mapBox {
    height: 480px;
  }
  #subContents .location .box .infoBox {
    width: 380px;
    padding: 40px;
  }
  #subContents .location .box .title {
    bottom: -14%;
  }
  #subContents .products.list .box .itemBox {
    gap: 40px 30px;
  }
  #subContents .products.list .box .itemBox .item > a .text {
    padding: 20px 0 0;
  }
  #subContents .products.view .box .info {
    padding: 0 0 100px;
    gap: 0 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #subContents .products.view .box .info .imgBox {
    max-width: 45%;
  }
  #subContents .findMap .box .mapBox {
    height: 780px;
  }
  #subContents .findMap .box .infoBox {
    width: 420px;
    padding: 30px 0 0;
  }
  #subContents .findMap .box .infoBox .titleBox,
  #subContents .findMap .box .infoBox .searchBox {
    padding: 0 30px;
  }
  #subContents .findMap .box .infoBox .resultBox {
    padding: 0 10px 20px 30px;
  }
  #subContents .findMap .box .infoBox .resultBox .list {
    margin: 30px 0 0;
  }
  #subContents .findMap .box .infoBox .resultBox .list ul {
    padding: 0 15px 0 0;
  }
  #subContents .findMap .box .infoBox .resultBox .list ul li:first-child {
    padding: 0 0 20px;
  }
  #subContents .findMap .box .infoBox .resultBox .list ul li:last-child {
    padding: 20px 0 0;
  }
  #subContents .findMap .box .infoBox .resultBox .list ul li:not(:first-child):not(:last-child) {
    padding: 20px 0;
  }
	#subContents .findMap .box .numBox ul li span::before {
		bottom: -25px;
	}
  footer {
    padding: 40px 0;
  }
  footer .w1720 .footerBox #fnb {
    display: none;
  }
}

@media (max-width: 1024px) {
  .tabTitle li:hover button {
    color: #333333;
    background: transparent;
    border: 1px solid #e0e0e0;
  }
  .magnifier,
  .cursorshade,
  .statusdiv,
  .tracker {
	display: none !important;
  }
  #subContents .subMenu {
	margin: 0;
  }
  #subContents .subMenu #lnb {
	gap: 0 10px;
  }
  #subContents .subMenu #lnb::before,
  #subContents .subMenu #lnb::after {
	display: none;
  }
  #subContents .subMenu #lnb .lnbHome {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #d60000;
	border-radius: 50%;
	width: 40px;
	height: 40px;
  }
  #subContents .subMenu #lnb .lnbHome i {
	color: #fff;
	font-size: 1.8rem;
  }
  #subContents .subMenu #lnb,
  #subContents .subMenu #lnb button {
	height: 100%;
	display: flex;
	align-items: center;
  }
  #subContents .subMenu #lnb button {
	width: 260px;
	position: relative;
  }
  #subContents .subMenu #lnb button > li {
	width: 100%;
  }
  #subContents .subMenu #lnb li.on a {
  	color: #222;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	font-weight: 500;
	font-size: 1.9rem;
  }
  #subContents .subMenu #lnb li.on a i {
	font-size: 1.6rem;
  }
  #subContents .subMenu #lnb .depth2 {
  	width: 100%;
	height: auto;
	position: absolute;
	top: 100%;
	flex-direction: column;
	gap: 20px 0;
	z-index: 2;
	background: #f5f5f5;
	padding: 20px;
	display: none;
  }
  #subContents .subMenu #lnb .depth2 li a {
	justify-content: flex-start;
	font-size: 1.8rem;
  }
  #subContents .subMenu #lnb .depth2 li:not(:last-child)::after {
	display: none;
  }
}

@media (max-width: 960px) {
	.title .sectionTitle {
		font-size: 10rem;
	}
	.sectionTitleH2 {
		font-size: 6rem;
	}
  .listBox ul li {
    height: 70px;
    padding: 0 20px;
  }
  #visual .w1720 .visualBox .titleBox {
    gap: 20px 0;
  }
  #visual .w1720 .visualBox .titleBox .title1 {
    width: 480px;
  }
  #visual .w1720 .visualBox .titleBox .title2 {
    width: 542px;
  }
  #visual .w1720 .visualBox .titleBox p {
    margin: 15px 0 0;
  }
  #products .box,
  #about .box {
    padding: 80px 0 0;
  }
  #products .box .tabContents .item .info .titleBox .sectionTitleH2 {
    margin: 20px 0 10px -3px;
  }
  #type .box,
  #recommend .box {
    padding: 80px 0;
  }
  #type .box .titleBox .sectionTitleH2,
  #recommend .box .titleBox .sectionTitleH2,
  #about .box .titleBox .sectionTitleH2 {
    margin: 20px 0 10px;
  }
  #type .box .itemBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    margin: 60px 0 0;
  }
  #type .box .itemBox .item {
    width: calc((100% - 30px) / 3);
  }
  #recommend .box .itemBox {
    gap: 10px;
  }
  #recommend .box .itemBox .item > a .text {
    padding: 20px 0;
  }
  #about .box .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
  }
  #about .box .info .img,
  #about .box .info .titleBox {
    width: 100%;
    max-width: 590px;
  }
  #about .box .info .img div,
  #about .box .info .titleBox div {
    margin: 10px 0 30px;
  }
  #about .box .info .img div p,
  #about .box .info .titleBox div p {
    margin: 25px 0 0;
  }
	#about .box .info .titleBox .sectionTitleH2 {
		width: 180px;
	}
  #about .box .link.listBox {
    margin: 40px 0 20px;
  }
  #sv {
    height: 420px;
  }
  #sv .subVisual .subTitle > div {
    height: 60px;
  }
  #subContents .pageTitle {
    margin: 80px 0 40px;
  }
  #subContents .subPage {
    padding: 0 0 80px;
  }
  #subContents .paddingBox {
    padding: 80px 0;
  }
  #subContents .introduce .box .title {
    margin: -25px 0 -15px;
  }
  #subContents .introduce .box .introBox ul li {
    padding: 20px 0;
  }
  #subContents .introduce .box .introBox ul li h5 {
    margin: 20px 0 5px;
  }
  #subContents .introduce .box .organBox .itemBox .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #subContents .introduce .box .organBox .itemBox .item .info {
    margin: 0 auto;
  }
  #subContents .introduce .box .organBox .itemBox .item .infoBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 30px;
    margin: 0 auto;
  }
  #subContents .introduce .box .organBox .itemBox .item .infoBox .info {
    margin: 0;
  }
  #subContents .introduce .box .organBox .itemBox .item .infoBox .info::before, #subContents .introduce .box .organBox .itemBox .item .infoBox .info::after {
    display: none;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox {
    margin: 0;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox.length8 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox.length8 .depth1 {
    width: 100%;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox .depth1 {
    margin: 30px 0 0;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox .depth1::before {
    width: 100%;
  }
  #subContents .introduce .box .mapBox ul {
    gap: 0 15px;
  }
  #subContents .introduce .box .factoryBox .itemBox {
    gap: 0 10px;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox {
    max-width: calc((100% - 20px) / 3);
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom {
    width: calc(100% - 16px);
    padding: 15px;
  }
  #subContents .certification .box .itemBox {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  #subContents .location .box .mapBox {
    height: 420px;
  }
  #subContents .location .box .infoBox {
    width: 340px;
    padding: 30px;
  }
  #subContents .location .box .infoBox hr {
    margin: 20px 0;
  }
  #subContents .location .box .infoBox .linkBox {
    margin: 40px 0 0;
  }
  #subContents .products.list .box .itemBox {
    gap: 30px 20px;
  }
  #subContents .products.list .box .itemBox .item > a .text h5 {
    margin: 0 0 10px;
  }
  #subContents .products.view .box .info {
    padding: 0 0 80px;
  }
  #subContents .products.view .box .contents {
    padding: 80px 0 0;
  }
  #subContents .products.view .box .contents4 {
    padding: 80px 0;
    margin: 80px 0 0;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item .text {
    padding: 20px 0;
  }
  #subContents .findMap .box .mapBox {
    height: 700px;
  }
	#subContents .findMap .box .mapBox > div {
		left: -14% !important;
	}
  #subContents .findMap .box .infoBox {
    width: 360px;
  }
  #subContents .findMap .box .infoBox .searchBox select,
  #subContents .findMap .box .infoBox .searchBox label {
    height: 45px;
  }
  #subContents .findMap .box .infoBox .resultBox .list {
    height: 400px;
  }
	#subContents .findMap .box .numBox {
		padding: 100px 0;
	}
	#subContents .findMap .box .numBox ul {
		margin: 80px auto 0;
	}
}

@media (max-width: 768px) {
  .font-24,
  .font-28,
  .font-30 {
    font-size: calc(var(--fontsize) * 0.86);
  }
  .title .sectionTitle {
    font-size: 7rem;
  }
  .tabTitle li,
  .listBox li {
    height: 60px;
  }
  .listBox ul li {
    padding: 0 10px;
  }
  .listBox ul li a {
    font-size: 1.6rem;
  }
  .listBox ul li a span {
    width: 20px;
    height: 20px;
  }
  header {
    height: 72px;
  }
  header .headerBox nav {
    height: calc(100vh - 72px);
    top: 72px;
  }
	.sectionTitleH2 {
		font-size: 4.6rem;
	}
  #visual .w1720 .visualBox .titleBox .title1 {
    width: 420px;
  }
  #visual .w1720 .visualBox .titleBox .title2 {
    width: 482px;
  }
  #products .bg::after,
  #products .bg .count {
    width: 120px;
  }
  #products .box .tabContents .item .info ul {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 10px;
    margin: 20px 0 0;
  }
	#products .box .tabContents .item .info ul li {
		width: 100%;
	}
  #products .box .tabContents .item .img {
    max-width: 100%;
  }
	#products .box .productsTabTitle::before {
		width: calc(100% + 100px);
	}
	#products .box .productsTabTitle::after {
		right: -100px;
	}
  #products .box .productsTabTitle ul {
    padding: 40px 0;
  }
	#products .box .productsTabTitle ul li button {
		font-size: 1.8rem;
	}
  #type .box .itemBox,
  #recommend .box .itemBox {
    margin: 40px 0 0;
  }
  #type .box .itemBox .item > a {
    padding: 22% 0;
  }
  #type .box .itemBox .item > a span {
    margin: 5px 0 15px;
  }
  #recommend .box .itemBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  #recommend .box .itemBox .item {
    width: calc(50% - 10px);
  }
  #recommend .box .itemBox .item > a .text {
    padding: 15px 0 20px;
  }
  #recommend .box .itemBox .item > a .text h5 {
    margin: 0 0 5px;
  }
  #about .title {
    bottom: 35px;
  }
	#about .box .info .titleBox .sectionTitleH2 {
		width: 160px;
	}
  #sv {
    height: 360px;
  }
  #sv .subVisual .subTitle > div {
    height: 45px;
  }
  #subContents .pageTitle {
    margin: 60px 0 30px;
  }
	#subContents .pageTitle h3 {
		font-size: 2.8rem;
	}
	#subContents .subPage .contentsTitle {
		font-size: 2.5rem;
	}
	#subContents .tableBox {
		overflow-x: scroll;
	}
	#subContents .tableBox table {
		width: 728px;
	}
	#subContents .tableBox table th,
	#subContents .tableBox table td {
		padding: 15px 10px;
	}
	#subContents .tableBox table th {
		font-size: 1.7rem;
	}
	#subContents .tableBox table td {
		font-size: 1.6rem;
	}
  #subContents .introduce .box .introBox {
    padding: 40px 0;
  }
	#subContents .introduce .box .introBox .logo {
		width: 95px;
	}
  #subContents .introduce .box .introBox p {
    padding: 0 0 35px;
  }
  #subContents .introduce .box .introBox ul li {
    padding: 15px 0;
  }
  #subContents .introduce .box .mapBox ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #subContents .introduce .box .mapBox ul li {
    width: calc(50% - 5px);
  }
  #subContents .introduce .box .historyBox .tabContents > div .historyBar {
    left: 114px;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li {
    gap: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li h3,
  #subContents .introduce .box .historyBox .tabContents > div ul li span {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li h3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100px;
    font-size: 3.4rem;
    text-align: left;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li span {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 40px 0 10px;
    position: inherit;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li div {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: auto;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li.reverse div {
    text-align: left;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li.reverse div p::before {
    left: -8px;
    right: auto;
  }
  #subContents .introduce .box .factoryBox .itemBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox {
    max-width: calc(50% - 5px);
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom {
    padding: 20px 15px;
  }
  #subContents .certification .box .itemBox {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  #subContents .mapPage .box .infoBox {
    width: 100%;
    position: inherit;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    right: auto;
  }
  #subContents .location .box .mapBox {
    height: 380px;
  }
  #subContents .location .box .title {
    bottom: -6%;
  }
  #subContents .products.list .box .itemBox {
    gap: 20px 15px;
  }
  #subContents .products.view .box .quickMenu {
    gap: 5px 0;
  }
  #subContents .products.view .box .quickMenu button {
    width: 50px;
    height: 50px;
  }
  #subContents .products.view .box .info {
    padding: 0 0 40px;
    gap: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #subContents .products.view .box .info .imgBox {
    max-width: 100%;
  }
  #subContents .products.view .box .contents {
    padding: 60px 0 0;
  }
  #subContents .products.view .box .contents h4 {
		font-size: 2.5rem;
    margin: 0 0 40px;
  }
  #subContents .products.view .box .contents2 .video .playButtonBox {
    width: 70px;
    height: 70px;
  }
  #subContents .products.view .box .contents4 {
    padding: 60px 0;
    margin: 60px 0 0;
  }
  #subContents .products.view .box .contents4 h4 {
    margin: 0 0 40px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item {
    width: calc((100% - 40px) / 3) !important;
    margin-right: 20px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item:nth-child(4n) {
    margin-right: 20px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item:nth-child(3n) {
    margin-right: 0;
  }
  #subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox span {
    margin: 0 20px;
  }
  #subContents .products.view .box .contents4 .viewSlide .optionBox .swiper-pagination-progressbar {
    margin: 0 0 0 25px;
  }
  #subContents .findMap .box .mapBox {
    height: 480px;
  }
	#subContents .findMap .box .mapBox > div {
		left: 0 !important;
	}
	#subContents .findMap .box .numBox {
		padding: 80px 0;
	}
	#subContents .findMap .box .numBox p {
		font-size: 1.7rem;
	}
	#subContents .findMap .box .numBox ul {
		margin: 60px auto 0;
	}
  footer .w1720 .footerBox .info ul {
    margin: 30px 0;
  }
  footer .w1720 .footerBox .info span {
    margin: 40px 0 0;
  }
}

@media (max-width: 640px) {
  .w1720,
  .w1300 {
    padding: 0 14px;
  }
  .font-24,
  .font-28,
  .font-30 {
    font-size: calc(var(--fontsize) * 0.80);
  }
  .title .sectionTitle {
    font-size: 5.6rem;
  }
  .sectionTitleH2 {
    font-size: 3.8rem;
  }
  .moreButton {
    width: 160px;
  }
  .moreButton span {
    width: 20px;
  }
  .tabTitle,
  .listBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tabTitle li,
  .listBox li {
    width: 50%;
    height: 55px;
  }
  .tabTitle li:nth-child(2n) {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  .tabTitle li:nth-child(3) {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  .tabTitle li:nth-child(4) {
    -webkit-transform: translate(-1px, -1px);
            transform: translate(-1px, -1px);
  }
  .tabTitle li button {
    font-size: 1.6rem;
  }
  .listBox li {
    padding: 0 15px;
  }
  .listBox li a span {
    width: 24px;
    height: 24px;
  }
  header .headerBox h1 {
    width: 86px;
    height: 27px;
  }
  header .headerBox nav .depth1 {
    padding: 20px 14px;
  }
  header .headerBox nav .depth1 > li > a {
    font-size: 2.0rem;
    padding: 18px 0;
  }
  header .headerBox nav .depth1 > li .depth2 {
    padding: 20px 14px;
  }
  header .headerBox nav .depth1 > li .depth2 li a {
    font-size: 1.8rem;
    padding: 20px 0;
  }
  header .headerBox nav .depth1.on {
    width: 44%;
  }
  #visual .w1720 .visualBox .titleBox {
    gap: 10px 0;
  }
  #visual .w1720 .visualBox .titleBox .title1 {
    width: 70%;
  }
  #visual .w1720 .visualBox .titleBox .title2 {
    width: calc(70% + 62px);
  }
  #visual .w1720 .visualBox .titleBox p {
    font-size: 1.6rem;
  }
  /* #visual .w1720 .visualBox .titleBox p br {
    display: none;
  } */
  #visual .w1720 .visualBox .markBox {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #visual .w1720 .visualBox .markBox .slick-dots {
    width: 50%;
    height: auto;
    margin: 0 0 26px;
    position: relative;
  }
  #visual .w1720 .visualBox .markBox .slick-dots li {
    gap: 0 10px;
    position: inherit;
  }
  #visual .w1720 .visualBox .markBox .slick-dots li .slick-bar {
    width: 100px;
  }
  #visual .w1720 .visualBox .markBox .scrollBox {
    margin: 0;
    position: inherit;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #products .box,
  #about .box {
    padding: 60px 0 0;
  }
  #products .bg {
    display: none;
  }
  #products .title {
    left: auto;
    right: 14px;
  }
  #products .box .tabContents .item .img {
    margin: 20px 0 0;
    position: inherit;
  }
  #products .box .tabContents .item .info .titleBox .sectionTitleH2 {
    margin: 20px 0 10px -2px;
  }
  #products .box .tabContents .item .info ul li {
    font-size: 1.7rem;
    padding: 8px 0;
  }
	#products .box .tabContents .item .info .moreButton {
		margin: 40px 0 30px;
	}
  #products .box .productsTabTitle::before {
    width: calc(90% + 10px);
  }
  #products .box .productsTabTitle::after {
    left: calc(90% + 5px);
  }
  #products .box .productsTabTitle ul {
    max-width: 100%;
    padding: 30px 0;
  }
	#products .box .productsTabTitle ul li button {
		font-size: 1.5rem;
	}
  #type .box,
  #recommend .box {
    padding: 60px 0;
  }
  #type .box .itemBox,
  #recommend .box .itemBox {
    gap: 10px;
  }
  #type .box .itemBox .item {
    width: calc(50% - 5px);
  }
  #type .box .itemBox .item > a .icon {
    margin: 0 0 15px;
  }
  #type .box .itemBox .item > a .icon img {
    -webkit-transform: scale(0.86);
            transform: scale(0.86);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #about .title {
		display: flex;
		justify-content: flex-end;
		left: auto;
		right: 20px;
		transform: translate(0, 0);
  }
	#about .box .info .titleBox .sectionTitleH2 {
		width: 140px;
	}
  #about .box .info .titleBox p br {
    display: none;
  }
  #about .box .link.listBox ul li:nth-child(3) {
    margin: -1px 0 0;
  }
  .paging {
    margin: 40px 0 0;
  }
  .paging ul li::after {
    top: -23px;
  }
  #sv {
    height: 320px;
  }
  #sv .subVisual .subTitle > div {
    height: 35px;
  }
  #subContents .pageTitle {
    margin: 50px 0 30px;
  }
  #subContents .subMenu #lnb {
	gap: 0;
  }
  #subContents .subMenu #lnb li.on a {
	font-size: 1.8rem;
  }
  #subContents .subMenu #lnb .depth2 {
	padding: 15px 20px;
  }
  #subContents .subMenu #lnb .depth2 li a {
	font-size: 1.6rem;
  }
  #subContents .subPage {
    padding: 0 0 60px;
  }
  #subContents .paddingBox {
    padding: 60px 0;
  }
  #subContents .introduce .box .title {
    margin: -20px 0 -8px;
  }
  #subContents .introduce .box .introBox {
    padding: 30px 10px;
  }
	#subContents .introduce .box .introBox .logo {
		width: 85px;
	}
	#subContents .introduce .box .introBox .img {
		margin: 20px 0;
	}
  #subContents .introduce .box .introBox p {
    font-size: 1.6rem;
    padding: 0 0 5px;
  }
  #subContents .introduce .box .introBox p br {
    display: none;
  }
  #subContents .introduce .box .introBox ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #subContents .introduce .box .introBox ul li {
    width: 100%;
    padding: 20px 0;
  }
  #subContents .introduce .box .introBox ul li:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox.length4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #subContents .introduce .box .organBox .itemBox .item .ulBox.length4 .depth1 {
    width: 100%;
  }
  #subContents .introduce .box .mapBox ul li {
    width: 100%;
  }
  #subContents .introduce .box .historyBox .tabTitle {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  #subContents .introduce .box .historyBox .tabTitle li {
    height: 50px;
  }
  #subContents .introduce .box .historyBox .tabTitle li:nth-child(2n) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin: 0 -1px;
  }
  #subContents .introduce .box .historyBox .tabTitle li:nth-child(3) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #subContents .introduce .box .historyBox .tabContents > div .historyBar {
    top: 16px;
    left: 73px;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul {
    gap: 60px 0;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li h3 {
    width: 60px;
    font-size: 2.8rem;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li span {
    width: 5px;
    height: 5px;
    margin: 0 30px 0 10px;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li div p {
    font-size: 1.5rem;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li.on span {
    width: 7px;
    height: 7px;
  }
  #subContents .introduce .box .historyBox .tabContents > div ul li.on span::before {
    width: 22px;
    height: 22px;
  }
  #subContents .introduce .box .factoryBox .itemBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #subContents .introduce .box .factoryBox .itemBox .factorySlideBox {
    max-width: 400px;
  }
  #subContents .certification .box .itemBox {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  #subContents .certification .box .itemBox .item h6 {
    margin: 10px 0 0;
  }
  #subContents .location .box .mapBox {
    height: 340px;
  }
  #subContents .location .box .infoBox {
    padding: 20px;
  }
  #subContents .location .box .infoBox .linkBox > a {
    height: 45px;
  }
  #subContents .products.list .box .itemBox {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  #subContents .products.list .box .itemBox .item > a .text {
    padding: 10px 0 0;
  }
  #subContents .products.list .box .itemBox .item > a .text h5 {
    margin: 0 0 5px;
  }
  #subContents .products.list .box .itemBox .item > a .text p {
    font-size: 1.6rem;
  }
  #subContents .products.view .box .title {
    -webkit-transform: translateY(-66px);
            transform: translateY(-66px);
  }
  #subContents .products.view .box .quickMenu {
    right: 14px;
  }
  #subContents .products.view .box .quickMenu button {
    width: 45px;
    height: 45px;
  }
  #subContents .products.view .box .info {
    padding: 0;
    gap: 10px 0;
  }
  #subContents .products.view .box .info .imgBox ul {
    gap: 0 5px;
    margin: 5px 0 0;
  }
  #subContents .products.view .box .info .imgBox ul li {
    width: calc((100% - 20px) / 5);
    padding: 8.73% 0;
  }
  #subContents .products.view .box .info .imgBox ul li.on {
    border: 3px solid #d60000;
  }
  #subContents .products.view .box .contents {
    padding: 50px 0 0;
  }
  #subContents .products.view .box .contents h4, #subContents .products.view .box .contents h5 {
    margin: 0 0 30px;
  }
  #subContents .products.view .box .contents2 .video .playButtonBox {
    width: 60px;
    height: 60px;
  }
  #subContents .products.view .box .contents4 {
    padding: 50px 0;
  }
  #subContents .products.view .box .contents4 h4 {
    margin: 0 0 30px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item {
    width: calc(50% - 10px) !important;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item:nth-child(3n) {
    margin-right: 20px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item:nth-child(2n) {
    margin-right: 0;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item .text {
    padding: 10px 0 0;
  }
  #subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox span {
    height: 10px;
  }
  #subContents .findMap .box .mapBox {
    height: 380px;
  }
  #subContents .findMap .box .infoBox {
    padding: 20px 0 0;
  }
  #subContents .findMap .box .infoBox .titleBox,
  #subContents .findMap .box .infoBox .searchBox {
    padding: 0 20px;
  }
  #subContents .findMap .box .infoBox .resultBox {
    padding: 0 5px 20px 20px;
  }
  #subContents .findMap .box .infoBox .resultBox .list {
    margin: 20px 0 0;
  }
  #subContents .findMap .box .infoBox .resultBox .list ul {
    padding: 0 10px 0 0;
  }
	#subContents .findMap .box .numBox {
		padding: 60px 0;
	}
	#subContents .findMap .box .numBox p br {
		display: none;
	}
	#subContents .findMap .box .numBox ul {
		margin: 40px auto 0;
	}
  footer .w1720 .footerBox .info h2 {
    width: 86px;
    height: 27px;
  }
}

@media (max-width: 420px) {
  html,
  body,
  table,
  input,
  button,
  textarea {
    font-size: 50%;
  }
  #type .box .itemBox .item > a {
    padding: 18% 0;
  }
  #recommend .box .itemBox .item:hover .text::before {
    height: 100%;
    top: -10px;
  }
  #sv .subVisual .subTitle {
    gap: 10px 0;
  }
  #sv .subVisual .subTitle > div {
    height: 32px;
  }
  #subContents .subMenu #lnb button {
	width: 220px;
  }
  #subContents .products.view .box .contents2 .video .playButtonBox {
    width: 50px;
    height: 50px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item {
    width: calc(50% - 5px) !important;
    margin-right: 10px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item:nth-child(3n) {
    margin-right: 10px;
  }
  #subContents .products.view .box .contents4 .viewSlide .itemBox .item h6 {
    margin: 0 0 5px;
  }
  #subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox span {
    margin: 0 10px;
  }
  #subContents .products.view .box .contents4 .viewSlide .optionBox .swiper-pagination-progressbar {
    margin: 0 0 0 15px;
  }
}
