.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);
}

#sv {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

#sv .subVisual {
  width: 100%;
  height: 100%;
}

#sv .subVisual .bg,
#sv .subVisual .subTitle {
  width: 100%;
  height: 100%;
}

#sv .subVisual .bg {
  position: absolute;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 1.2s linear;
  transition: all 1.2s linear;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#sv .subVisual .subTitle {
  text-align: center;
  padding: 50px 0 0;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sv .subVisual .subTitle > div {
  width: 100%;
  height: 70px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center -70px;
  overflow: hidden;
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

#sv .subVisual .subTitle > div .svg {
  width: auto;
  height: 100%;
}

#sv .subVisual .subTitle p {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.010em;
  opacity: 0;
  -webkit-transition: all 0.8s 0.4s;
  transition: all 0.8s 0.4s;
}

#sv.sv01 .subVisual .bg {
  background-image: url("/img/sub/subVisual1.jpg");
}

#sv.sv01 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle1.svg");
}

#sv.sv02 .subVisual .bg {
  background-image: url("/img/sub/subVisual2.jpg");
}

#sv.sv02 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle2.svg");
}

#sv.sv03 .subVisual .bg {
  background-image: url("/img/sub/subVisual3.jpg");
}

#sv.sv03 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle3.svg");
}

#sv.sv04 .subVisual .bg {
  background-image: url("/img/sub/subVisual4.jpg");
}

#sv.sv04 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle4.svg");
}

#sv.sv05 .subVisual .bg {
  background-image: url("/img/sub/subVisual5.jpg");
}

#sv.sv05 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle5.svg");
}

#sv.sv06 .subVisual .bg {
  background-image: url("/img/sub/subVisual6.jpg");
}

#sv.sv06 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle6.svg");
}

#sv.sv07 .subVisual .bg {
  background-image: url("/img/sub/subVisual7.jpg");
}

#sv.sv07 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle7.svg");
}

#sv.sv08 .subVisual .bg {
  background-image: url("/img/sub/subVisual8.jpg");
}

#sv.sv08 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle8.svg");
}

#sv.sv09 .subVisual .bg {
  background-image: url("/img/sub/subVisual9.jpg");
}

#sv.sv09 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle9.svg");
}

#sv.sv010 .subVisual .bg {
  background-image: url("/img/sub/subVisual10.jpg");
}

#sv.sv010 .subVisual .subTitle > div {
  background-image: url("/img/svg/subTitle10.svg");
}

#sv.on .subVisual .bg {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#sv.on .subVisual .subTitle > div {
  background-position: center center;
}

#sv.on .subVisual .subTitle p {
  opacity: 1;
}

#subContents .paddingBox {
  padding: 120px 0;
}

#subContents .subMenu {
  width: 100%;
  height: 60px;
  background: #f5f5f5;
  margin: 0 0 120px;
}

#subContents .subMenu .w1300 {
	height: 100%;
}

#subContents .subMenu #lnb {
  position: relative;
  width: 100%;
  height: 100%;
}

#subContents .subMenu #lnb::before, #subContents .subMenu #lnb::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #6f6f6f;
  position: absolute;
  top: 50%;
}

#subContents .subMenu #lnb::before {
  border-left: 1px solid #6f6f6f;
  left: -26px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

#subContents .subMenu #lnb::after {
  border-right: 1px solid #6f6f6f;
  right: -26px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#subContents .subMenu #lnb .depth2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

#subContents .subMenu #lnb .depth2 li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .subMenu #lnb .depth2 li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background: #e0e0e0;
}

#subContents .subMenu #lnb .depth2 li a {
	color: #333333;
	font-size: 1.8rem;
  letter-spacing: -0.010em;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .subMenu #lnb .depth2 li:hover a, #subContents .subMenu #lnb .depth2 li.on a {
  color: #222222;
  font-weight: 700;
}

#subContents .pageTitle {
  text-align: center;
}

#subContents .pageTitle h3 {
  color: #111111;
  font-size: 4.0rem;
  font-weight: 700;
  letter-spacing: -0.010em;
}

#subContents .subPage {
  margin: 75px 0 0;
  padding: 0 0 160px;
}

#subContents .subPage .contentsTitle {
  color: #000000;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

#subContents .contents.bg {
  background: #f9f9f9;
}

#subContents .mapPage .box {
  position: relative;
}

#subContents .mapPage .box .mapNav {
  background: #ffffff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 7.8125%;
  z-index: 2;
}

#subContents .tableBox table {
  border-top: 2px solid #222222;
	position: relative;
}

#subContents .tableBox table::after {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background: #ffffff;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

#subContents .tableBox table th,
#subContents .tableBox table td {
  padding: 20px;
	border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
/*	white-space: nowrap;*/
}

/* #subContents .tableBox table th:not(:last-child), #subContents .tableBox table td:not(:last-child) {
  border-right: 1px solid #e0e0e0;
} */

#subContents .tableBox table th {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 600;
}
#subContents .tableBox table th.bg {
  background: #f0f0f0;
}
#subContents .tableBox table td {
  font-size: 1.8rem;
}
#subContents .tableBox table th.color,
#subContents .tableBox table td.color {
  color: #d60000;
}

#subContents .tableBox table th.bg,
#subContents .tableBox table td.bg {
  background: #f9f9f9;
}

#subContents .tableBox table td.center {
  text-align: center;
}

#subContents .introduce .box {
  position: relative;
}

#subContents .introduce .box .w1300 {
  height: auto;
}

#subContents .introduce .box .title {
  margin: -40px 0 -30px;
  position: relative;
}

#subContents .introduce .box .title .sectionTitle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .introduce .box .contentsTitle.margin45 {
  margin: 0 0 45px;
}

#subContents .introduce .box .introBox {
  background: #ffffff;
  text-align: center;
  padding: 80px 0;
}

#subContents .introduce .box .introBox .logo {
  width: 120px;
  height: auto;
  margin: 0 auto;
}

#subContents .introduce .box .introBox .logo .logoCls-2 {
  fill: #d70010;
}

#subContents .introduce .box .introBox .img {
	margin: 35px 0;
}

#subContents .introduce .box .introBox p {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.7777;
  padding: 0 0 70px;
}

#subContents .introduce .box .introBox ul {
  width: 100%;
}

#subContents .introduce .box .introBox ul li {
  width: calc(100% / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 24px 0;
}

#subContents .introduce .box .introBox ul li:nth-child(2) {
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

#subContents .introduce .box .introBox ul li h3 {
  font-size: 1.5rem;
  font-weight: 300;
}

#subContents .introduce .box .introBox ul li h3 span {
  color: #d60000;
  font-size: 4.0rem;
  font-weight: 600;
  font-family: 'Oswald',
 sans-serif;
}

#subContents .introduce .box .introBox ul li h5 {
  color: #333333;
  font-size: 1.8rem;
  margin: 25px 0 5px;
}

#subContents .introduce .box .introBox ul li h6 {
  font-size: 13px;
}

#subContents .introduce .box .organBox .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}

#subContents .introduce .box .organBox .itemBox .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 50px;
}

#subContents .introduce .box .organBox .itemBox .item .info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  height: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #d60000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .introduce .box .organBox .itemBox .item .info dl {
  text-align: center;
}

#subContents .introduce .box .organBox .itemBox .item .info dl dt {
  color: #333333;
  font-size: 1.8rem;
  margin: 20px 0 10px;
}

#subContents .introduce .box .organBox .itemBox .item .info dl dd {
  font-size: 1.5rem;
  font-weight: 300;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox ul li.marginTopAuto {
	margin: auto 0 0;
	gap: 10px 0;
}
#subContents .introduce .box .organBox .itemBox .item .ulBox ul li.marginTopAuto p {
	background: #f5f5f5;
	padding: 15px 10px;
	line-height: 1;
	color: #333;
	font-size: 1.4rem;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox ul li.borderM span {
  border: 1px solid #d60000;
  background: #ffffff;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox ul li span {
  width: 100%;
  height: 50px;
  color: #333333;
  font-size: 1.6rem;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox.length8 {
  margin: 40px 0 0;
}

#subContents .introduce .box .organBox .itemBox .item .ulBox.length8 .depth1 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

#subContents .introduce .box .organBox .itemBox .item .ulBox.length4 .depth1 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

#subContents .introduce .box .organBox .itemBox .item .ulBox.length4 .depth2 {
	display: flex;
	flex-direction: column;
}

#subContents .introduce .box .organBox .itemBox .item .depth1 {
  margin: 5px 0 0;
  position: relative;
}

#subContents .introduce .box .organBox .itemBox .item .depth1::before {
  content: "";
  display: block;
  width: calc(100% + 100px);
  height: 1px;
  background: #e0e0e0;
  position: absolute;
  top: 25px;
  right: 0;
  z-index: -2;
}

#subContents .introduce .box .organBox .itemBox .item .depth1 > li span {
  border: 1px solid #bbbbbb;
}

#subContents .introduce .box .organBox .itemBox .item .depth1 ul {
  position: relative;
}

#subContents .introduce .box .organBox .itemBox .item .depth1 ul::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #e0e0e0;
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}

#subContents .introduce .box .organBox .itemBox .item .depth1 .height20::before {
	height: 20%;
}

#subContents .introduce .box .organBox .itemBox .item .depth1 ul li span {
  border: none;
  background: #f5f5f5;
}

#subContents .introduce .box .organBox .itemBox .item .infoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}

#subContents .introduce .box .organBox .itemBox .item .infoBox .info {
  position: relative;
}

#subContents .introduce .box .organBox .itemBox .item .infoBox .info::before, #subContents .introduce .box .organBox .itemBox .item .infoBox .info::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #d60000;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#subContents .introduce .box .organBox .itemBox .item .infoBox .info::before {
  top: -16px;
}

#subContents .introduce .box .organBox .itemBox .item .infoBox .info::after {
  top: -29px;
}

#subContents .introduce .box .mapBox ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 0 35px;
  margin: 40px 0 0;
}

#subContents .introduce .box .mapBox ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  background: #ffffff;
  padding: 55px 0;
}

#subContents .introduce .box .mapBox ul li .icon {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .introduce .box .mapBox ul li p {
  color: #333333;
  font-size: 1.8rem;
  line-height: 1.5555;
  text-align: center;
  padding: 30px 0 0;
}

#subContents .introduce .box .historyBox .tabContents > div {
  margin: 75px 0 0;
}

#subContents .introduce .box .historyBox .tabContents > div .historyBar {
  width: 1px;
  height: 100%;
  background: #e0e0e0;
  position: absolute;
  top: 22px;
  left: 50%;
  overflow: hidden;
}

#subContents .introduce .box .historyBox .tabContents > div .historyBar span {
  width: 100%;
  background: #d60000;
  position: absolute;
  top: 0;
  left: 0;
}

#subContents .introduce .box .historyBox .tabContents > div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 115px 0;
}

#subContents .introduce .box .historyBox .tabContents > div ul li {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .introduce .box .historyBox .tabContents > div ul li h3,
#subContents .introduce .box .historyBox .tabContents > div ul li div {
  width: 50%;
}

#subContents .introduce .box .historyBox .tabContents > div ul li h3 {
  color: #999999;
  font-size: 4.0rem;
  font-weight: 700;
  text-align: right;
  font-family: 'Oswald',
 sans-serif;
}

#subContents .introduce .box .historyBox .tabContents > div ul li span {
  display: block;
  width: 7px;
  height: 7px;
  background: #aaaaaa;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#subContents .introduce .box .historyBox .tabContents > div ul li span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: rgba(214, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .introduce .box .historyBox .tabContents > div ul li div p {
  display: inline-block;
  color: #999999;
  font-size: 1.8rem;
  font-weight: 300;
  position: relative;
}

#subContents .introduce .box .historyBox .tabContents > div ul li div p::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #aaaaaa;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -8px;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.reverse h3 {
  text-align: left;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.reverse div {
  text-align: right;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.reverse div p::before {
  left: auto;
  right: -8px;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.on h3 {
  color: #000000;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.on span {
  width: 9px;
  height: 9px;
  background: #d60000;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.on span::before {
  width: 29px;
  height: 29px;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.on div p {
  color: #333333;
}

#subContents .introduce .box .historyBox .tabContents > div ul li.on div p::before {
  background: #d60000;
}

#subContents .introduce .box .factoryBox .slick-list {
  height: inherit;
}

#subContents .introduce .box .factoryBox .slick-list .slick-track {
  height: inherit;
}

#subContents .introduce .box .factoryBox .slick-list .slick-track .slick-slide {
  height: inherit;
}

#subContents .introduce .box .factoryBox .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.846153%;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox {
  width: 100%;
  max-width: calc(92.307694% / 3);
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .factoryImgSlide .item .img {
  width: 100%;
  padding: 50% 0;
  position: relative;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .factoryImgSlide .item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom {
  width: calc(100% - 24px);
  height: 90px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #ffffff;
  padding: 0 30px;
  margin: -20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .factoryTitleSlide {
  width: 50.65%;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .factoryTitleSlide .item h5 {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 500;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .optionBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .optionBox button {
  width: 30px;
  height: 7px;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .optionBox button .cls-1 {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .optionBox button:hover .cls-1 {
  fill: #d60000;
}

#subContents .introduce .box .factoryBox .itemBox .factorySlideBox .bottom .optionBox span {
  color: #333333;
  font-size: 12px;
  font-weight: 700;
}

#subContents .certification .box .itemBox {
  display: -ms-grid;
  display: grid;
  gap: 50px 40px;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

#subContents .certification .box .itemBox .item {
  width: 100%;
}

#subContents .certification .box .itemBox .item .img {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 58.985% 0;
  position: relative;
  overflow: hidden;
}

#subContents .certification .box .itemBox .item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .certification .box .itemBox .item h6 {
  color: #333333;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: -0.010em;
  margin: 15px 0 0;
}

#subContents .location .box .mapBox {
  height: 600px;
}

#subContents .location .box .mapBox iframe {
  width: 100%;
  height: 100%;
}

#subContents .location .box .infoBox {
  width: 530px;
  padding: 90px 70px 74px;
}

#subContents .location .box .infoBox dl dt span {
  color: #d60000;
  font-size: 13px;
}

#subContents .location .box .infoBox dl dt h5 {
  color: #333333;
  font-weight: 600;
  margin: 2px 0 12px;
}

#subContents .location .box .infoBox dl dd {
  font-size: 1.6rem;
  font-weight: 300;
}

#subContents .location .box .infoBox hr {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
  margin: 35px 0;
}

#subContents .location .box .infoBox .linkBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  margin: 65px 0 0;
}

#subContents .location .box .infoBox .linkBox > a {
  width: calc(50% - 5px);
  height: 50px;
  gap: 0 10px;
  background: #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .location .box .infoBox .linkBox > a span {
  display: block;
  width: 15px;
  height: 15px;
  background: #666666;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .location .box .infoBox .linkBox > a p {
  font-size: 1.6rem;
}

#subContents .location .box .title {
  bottom: -18%;
}

#subContents .products.list .box .itemBox {
  display: -ms-grid;
  display: grid;
  gap: 65px 50px;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

#subContents .products.list .box .itemBox .item {
  width: 100%;
  height: auto;
  position: relative;
}

#subContents .products.list .box .itemBox .item > a {
  display: block;
  width: 100%;
  height: 100%;
}

#subContents .products.list .box .itemBox .item > a span {
  display: block;
  width: 40px;
  height: 20px;
  background: #d60000;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.100em;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .products.list .box .itemBox .item > a .imgBox .img {
  width: 100%;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 25px;
  padding: 50% 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

#subContents .products.list .box .itemBox .item > a .imgBox .img img {
  width: 100%;
  max-height: 100%;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .products.list .box .itemBox .item > a .imgBox::before {
  border-radius: 25px;
}

#subContents .products.list .box .itemBox .item > a .text {
  color: #333333;
  letter-spacing: 0;
  text-align: center;
  padding: 25px 0 0;
}

#subContents .products.list .box .itemBox .item > a .text h5, #subContents .products.list .box .itemBox .item > a .text p {
  width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#subContents .products.list .box .itemBox .item > a .text h5 {
  font-weight: 700;
  margin: 0 0 15px;
}

#subContents .products.list .box .itemBox .item > a .text p {
  font-size: 1.8rem;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#subContents .products.list .box .itemBox .item:hover > a .imgBox .img {
  border: 2px solid #d60000;
}

#subContents .products.list .box .itemBox .item:hover > a .imgBox .img img {
  -webkit-transform: translate(-50%, -50%) scale(1.14);
          transform: translate(-50%, -50%) scale(1.14);
}

#subContents .products.view .box {
  position: relative;
}

#subContents .products.view .box .w1300 {
  height: auto;
}

#subContents .products.view .box .title {
  width: 100%;
  max-width: 1720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: translateY(-38px);
          transform: translateY(-38px);
}

#subContents .products.view .box .info {
  padding: 0 0 120px;
  gap: 0 115px;
}

#subContents .products.view .box .info .imgBox {
  width: 100%;
  max-width: 540px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

#subContents .products.view .box .info .imgBox .thumb {
  width: 100%;
  height: auto;
  padding: 52.78% 0;
  position: relative;
}

#subContents .products.view .box .info .imgBox .thumb .magnifier {
  width: 100%;
  padding: 50% 0;
  border: 1px solid #e0e0e0;
  top: 0;
  left: calc(100% + 20px);
}

#subContents .products.view .box .info .imgBox .thumb img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .products.view .box .info .imgBox ul {
  width: 100%;
  height: auto;
  gap: 0 10px;
  margin: 10px 0 0;
}

#subContents .products.view .box .info .imgBox ul li {
  width: calc((100% - 40px) / 5);
  height: auto;
  padding: 8.335% 0;
  border: 1px solid #f5f5f5;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}

#subContents .products.view .box .info .imgBox ul li img {
  max-width: calc(100% - 5px);
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .products.view .box .info .imgBox ul li:hover, #subContents .products.view .box .info .imgBox ul li.on {
  border: 5px solid #d60000;
}

#subContents .products.view .box .info .imgBox ul li:hover img, #subContents .products.view .box .info .imgBox ul li.on img {
  max-width: 100%;
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

#subContents .products.view .box .info .textBox {
	width: 100%;
}

#subContents .products.view .box .info .textBox .titleBox {
  padding: 40px 0;
}

#subContents .products.view .box .info .textBox .titleBox .sectionTitleH2 {
  color: #222222;
  margin: 20px 0 10px;
}

#subContents .products.view .box .info .textBox .titleBox p {
  color: #222222;
  font-weight: 800;
  letter-spacing: -0.025em;
}

#subContents .products.view .box .info .textBox .textBox {
  width: 100%;
  padding: 25px 0;
  color: #333333;
}

#subContents .products.view .box .info .textBox .textBox h6 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.030em;
  margin: 0 0 20px;
}

#subContents .products.view .box .info .textBox .textBox dl {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .products.view .box .info .textBox .textBox dl dt {
  width: 155px;
  letter-spacing: -0.030em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .products.view .box .info .textBox .textBox dl dt i {
  font-size: 1.8rem;
  margin: 0 5px 0 0;
}

#subContents .products.view .box .info .textBox .textBox dl dt::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background: #dddddd;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

#subContents .products.view .box .info .textBox .textBox dl dd {
  font-weight: 300;
  padding: 0 0 0 18px;
}

#subContents .products.view .box .info .textBox .textBox dl:not(:last-child) {
  margin: 0 0 15px;
}

#subContents .products.view .box .info .textBox .textBox p {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5625;
  margin: 0 0 25px;
}

#subContents .products.view .box .info .textBox .textBox p span {
  color: #d60000;
}

#subContents .products.view .box .info .textBox .textBox.option {
  border-top: 1px solid #666666;
  border-bottom: 1px solid #e0e0e0;
}

#subContents .products.view .box .contents {
  /* padding: 100px 0 0; */
  padding: 100px 0 100px;
}

#subContents .products.view .box .contents h4,
#subContents .products.view .box .contents h5 {
  color: #000000;
  text-align: center;
  letter-spacing: -0.030em;
}

#subContents .products.view .box .contents h4 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0 0 50px;
}

#subContents .products.view .box .contents h5 {
  font-weight: 500;
  margin: 0 0 35px;
}

#subContents .products.view .box .contents h5.margin {
  margin: 50px 0 35px;
}

#subContents .products.view .box .contents img {
  margin: 0 auto;
}

#subContents .products.view .box .contents2 .video {
  position: relative;
  padding: 0 0 56.25%;
}

#subContents .products.view .box .contents2 .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .products.view .box .contents4 {
  background: #f9f9f9;
  padding: 100px 0 120px;
  margin: 120px 0 0;
}

#subContents .products.view .box .contents4 .viewSlide .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item {
  width: 300px !important;
  width: 23.07692% !important;
  height: auto;
  margin-right: calc(7.69232% / 3);
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item .img {
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid #ffffff;
  padding: 50% 0;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item .img img {
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item .text {
  width: 100%;
  color: #333333;
  text-align: center;
  padding: 30px 0;
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item .text h6 {
  font-size: 2.0rem;
  font-weight: 700;
  margin: 0 0 10px;
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item .text p {
  width: 100%;
  height: 1em;
  font-size: 1.6rem;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item:nth-child(4n) {
  margin-right: 0;
}

#subContents .products.view .box .contents4 .viewSlide .itemBox .item:hover .img {
  border: 1px solid #d60000;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox {
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox .swiper-button-next,
#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox .swiper-button-prev {
  width: auto !important;
  height: auto !important;
  margin-top: 0 !important;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox .swiper-button-next i,
#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox .swiper-button-prev i {
  color: #999999;
  font-size: 16px;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox .swiper-button-next:hover i,
#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox .swiper-button-prev:hover i {
  color: #d60000;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .buttonBox span {
  display: block;
  width: 1px;
  height: 13px;
  background: #cccccc;
  margin: 0 30px;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .swiper-pagination-progressbar {
  background: #e0e0e0;
  margin: 0 0 0 35px;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 2px;
}

#subContents .products.view .box .contents4 .viewSlide .optionBox .swiper-pagination-progressbar.swiper-pagination-horizontal .swiper-pagination-progressbar-fill {
  background: #d60000;
}

#subContents .findMap .box .contents {
	position: relative;
}

#subContents .findMap .box .mapWrap,
#subContents .findMap .box .mapBox {
  width: 100%;
  height: 930px;
}

#subContents .findMap .box .mapBox > div {
	left: -10% !important;
}

#subContents .findMap .box .infoBox {
  width: 500px;
  padding: 60px 0 0;
}

#subContents .findMap .box .infoBox .titleBox,
#subContents .findMap .box .infoBox .searchBox {
  padding: 0 60px;
}

#subContents .findMap .box .infoBox .titleBox h4 {
  color: #333333;
  font-weight: 600;
  margin: 0 0 15px;
}

#subContents .findMap .box .infoBox .titleBox p {
  font-size: 1.6rem;
  font-weight: 300;
}
#subContents .findMap .box .infoBox .titleBox p span{
  font-size: 1.6rem;
  font-weight: 400;
  color:#d60000;
}

#subContents .findMap .box .infoBox .searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 0;
}

#subContents .findMap .box .infoBox .searchBox select,
#subContents .findMap .box .infoBox .searchBox label {
  height: 50px;
  padding: 0 15px;
}

#subContents .findMap .box .infoBox .searchBox select {
  width: calc(50% - 5px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  border: none;
  outline: none;
  appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #f1f1f1 url("/img/sub/downIcon.png") no-repeat calc(100% - 15px) center;
}

#subContents .findMap .box .infoBox .searchBox select::-ms-expand {
  display: none;
}

#subContents .findMap .box .infoBox .searchBox label {
  display: block;
  width: 100%;
  background: #f1f1f1;
  position: relative;
}

#subContents .findMap .box .infoBox .searchBox label input[type=text] {
  background: transparent;
  width: 100%;
  height: 100%;
}

#subContents .findMap .box .infoBox .searchBox label button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
}

#subContents .findMap .box .infoBox .resultBox {
  padding: 0 10px 30px 60px;
}

#subContents .findMap .box .infoBox .resultBox .list {
  height: 480px;
  margin: 40px 0 0;
  overflow-y: scroll;
}

#subContents .findMap .box .infoBox .resultBox .list::-webkit-scrollbar {
  width: 5px;
}

#subContents .findMap .box .infoBox .resultBox .list::-webkit-scrollbar-thumb {
  background: #f1f1f1;
  border-radius: 2.5px;
}

#subContents .findMap .box .infoBox .resultBox .list ul {
  padding: 0 45px 0 0;
}

#subContents .findMap .box .infoBox .resultBox .list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#subContents .findMap .box .infoBox .resultBox .list ul li a .text h6 {
  color: #333333;
  font-size: 2.0rem;
  font-weight: 500;
}

#subContents .findMap .box .infoBox .resultBox .list ul li a .text p {
  font-size: 1.5rem;
  font-weight: 300;
  padding: 8px 0 12px;
}

#subContents .findMap .box .infoBox .resultBox .list ul li a .text span {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: 'Pretendard',
 sans-serif;
}

#subContents .findMap .box .infoBox .resultBox .list ul li a .text span i {
  margin: 0 5px 0 0;
}

#subContents .findMap .box .infoBox .resultBox .list ul li a .icon {
  width: 30px;
  height: 30px;
  background: #d0d0d0;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#subContents .findMap .box .infoBox .resultBox .list ul li a .icon i {
  color: #ffffff;
  font-size: 16px;
}

#subContents .findMap .box .infoBox .resultBox .list ul li:first-child {
  padding: 0 0 30px;
}

#subContents .findMap .box .infoBox .resultBox .list ul li:last-child {
  padding: 30px 0 0;
}

#subContents .findMap .box .infoBox .resultBox .list ul li:not(:first-child):not(:last-child) {
  padding: 30px 0;
}

#subContents .findMap .box .infoBox .resultBox .list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

#subContents .findMap .box .infoBox .resultBox .list ul li:hover a .icon {
  background: #d60000;
}

#subContents .findMap .box .infoBox .resultBox .result {
  display: none;
}

#subContents .findMap .box .w1720 {
	position: relative;
}

#subContents .findMap .box .numBox {
	padding: 0 0 120px
}

#subContents .findMap .box .numBox p {
	color: #222222;
	font-size: 2.0rem;
	text-align: center;
	line-height: 1.8;
}

#subContents .findMap .box .numBox ul {
	max-width: 740px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	margin: 80px auto 0;
}

#subContents .findMap .box .numBox ul li {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	text-align: center;
}

#subContents .findMap .box .numBox ul li span {
	/* color: #222222; */
	color: #d60000;
	font-size: 4.0rem;
	font-weight: 600;
	position: relative;
}

#subContents .findMap .box .numBox ul li span::before {
	content: "";
	width: 50px;
	height: 50px;
	/* background: #f08300; */
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -20px;
	z-index: -2;
}

#subContents .findMap .box .numBox ul li h6 {
	color: #333333;
	font-size: 1.5rem;
	font-weight: 300;
}

#subContents .place .box .infoBox .searchBox {
	display: none;
}

#subContents .place .box .infoBox .resultBox .list ul li a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#subContents .place .box .infoBox .resultBox .list ul li a .icon {
  margin: 0 0 8px;
}

#subContents .service .box .infoBox .resultBox .list ul li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#subContents .service .box .infoBox .resultBox .list ul li a .text > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  margin: 12px 0 0;
}

#subContents .service .box .infoBox .resultBox .list ul li a .text > div span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#subContents .service .box .infoBox .resultBox .list ul li a .text > div span i {
  color: #d60000;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

#subContents .service .box .infoBox .resultBox .list ul li a .text > div span.off,
#subContents .service .box .infoBox .resultBox .list ul li a .text > div span.off i {
	color: #999999;
}

.privacy {
  font-family: 'Pretendard',
 sans-serif;
}

.privacy .title {
  text-align: center;
}

.privacy .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}

.privacy .contents > dl > dt {
  color: #222222;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 20px;
}

.privacy .contents > dl > dd {
  color: #444444;
  font-size: 1.6rem;
}

.privacy .contents > dl > dd ul,
.privacy .contents > dl > dd .subText {
  margin: 20px 0 0;
  padding: 0 0 0 10px;
}

.privacy .contents > dl > dd ul li {
  color: #666666;
  font-size: 1.5rem;
  padding: 2px 0;
}

.privacy .contents > dl > dd .subText h5 {
  color: #333333;
  font-size: 1.7rem;
  font-weight: 500;
}

.privacy .contents > dl > dd .subText dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px 0;
  margin: 10px 0;
}

.privacy .contents > dl > dd .subText dl > dd {
  color: #666666;
  font-size: 1.5rem;
  padding: 0 0 0 10px;
}

.ntb-list li,
.ntb-list li .td a,
.faqList li p.innerwrap {
  font-size: 1.6rem !important;
}

.inquiry_com .con_wrap .formBox section.section3 .box .type .checkBox {
  padding: 10px 0;
}

.inquiry_com .con_wrap .formBox section.section3 .box .type .checkBox input {
  border: revert;
  outline: revert;
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

.cursorshade {
  border-radius: 50%;
}
