@charset "UTF-8";
#sub-main {
  width: 100%;
  height: auto;
}

.subvisual {
  width: 100%;
  height: 500px;
  padding-top: 100px;
  margin-bottom: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-bottom: 16px solid #1E40AF;
}
@media (max-width: 1280px) {
  .subvisual {
    height: 420px;
    margin-bottom: 80px;
    border-bottom-width: 12px;
  }
}
@media (max-width: 768px) {
  .subvisual {
    height: 320px;
    padding-top: 70px;
    margin-bottom: 60px;
    border-bottom-width: 8px;
  }
}
@media (max-width: 480px) {
  .subvisual {
    height: 260px;
    margin-bottom: 45px;
    border-bottom-width: 6px;
  }
}
.subvisual .cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(19, 45, 130, 0.2549019608), transparent);
}
.subvisual .cover .container {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .subvisual .cover .container {
    gap: 10px;
  }
}
.subvisual .cover .container .page-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  letter-spacing: 2px;
}
@media (max-width: 1280px) {
  .subvisual .cover .container .page-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .subvisual .cover .container .page-title {
    font-size: 30px;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .subvisual .cover .container .page-title {
    font-size: 26px;
  }
}
.subvisual .cover .container .page-desc {
  padding: 6px 56px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
}
@media (max-width: 1280px) {
  .subvisual .cover .container .page-desc {
    padding: 6px 40px;
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .subvisual .cover .container .page-desc {
    padding: 6px 24px;
    font-size: 15px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .subvisual .cover .container .page-desc {
    padding: 5px 16px;
    font-size: 14px;
  }
}
.subvisual.sv01 {
  background-image: url(/img/sv01.jpg);
}
.subvisual.sv02 {
  background-image: url(/img/sv02.jpg);
}
.subvisual.sv-board {
  background-image: url(/img/sv03.avif);
}
.subvisual.sv04 {
  background-image: url(/img/sv04.jpg);
}

.sec-title-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.sec-title-wrap .tag {
  padding: 6px 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  background: #1E40AF;
  border-radius: 4px;
}
@media (max-width: 1280px) {
  .sec-title-wrap .tag {
    padding: 6px 24px;
  }
}
@media (max-width: 768px) {
  .sec-title-wrap .tag {
    padding: 6px 16px;
    font-size: 14px;
  }
}
.sec-title-wrap .subject {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: #1E40AF;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .sec-title-wrap .subject {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .sec-title-wrap .subject {
    font-size: 24px;
  }
}
.sec-title-wrap .contents {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
  color: #3D3D3D;
}
@media (max-width: 768px) {
  .sec-title-wrap .contents {
    font-size: 14px;
  }
}

.greeting {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1280px) {
  .greeting {
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .greeting {
    gap: 40px;
  }
}
.greeting .greeting-body {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.greeting .greeting-body > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.greeting .greeting-body .container {
  position: relative;
  width: 95%;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
  padding: 68px 0 136px;
}
@media (max-width: 1280px) {
  .greeting .greeting-body .container {
    padding: 48px 0 100px;
  }
}
@media (max-width: 768px) {
  .greeting .greeting-body .container {
    padding: 32px 0 60px;
  }
}
.greeting .greeting-body .container .white-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: white;
}
.greeting .greeting-body .container .contents-box {
  position: relative;
  width: 90%;
  height: auto;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 32px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
  color: #3D3D3D;
}
@media (max-width: 1280px) {
  .greeting .greeting-body .container .contents-box {
    padding: 60px 28px;
  }
}
@media (max-width: 768px) {
  .greeting .greeting-body .container .contents-box {
    width: 100%;
    padding: 32px 20px;
    font-size: 14px;
  }
}

.history {
  width: 100%;
  height: auto;
}
.history .container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  .history .container {
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .history .container {
    gap: 40px;
  }
}
.history .history-box {
  width: 100%;
  height: auto;
  padding: 40px 0;
  background: #F5F6FB;
}
@media (max-width: 1280px) {
  .history .history-box {
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  .history .history-box {
    padding: 24px 0;
  }
}
.history .history-box .inner {
  position: relative;
  width: 95%;
  height: auto;
  max-width: 1480px;
  margin: 0 auto;
  padding: 80px 100px;
  background: white;
  border-radius: 30px;
}
@media (max-width: 1280px) {
  .history .history-box .inner {
    padding: 48px 40px;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .history .history-box .inner {
    padding: 32px 24px;
    border-radius: 20px;
  }
}
.history .history-list {
  position: relative;
  width: 100%;
  height: auto;
}
.history .history-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #2B4EC8;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .history .history-list::before {
    left: 5px;
    transform: none;
  }
}
.history .history-list > li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: auto;
  z-index: 3;
}
@media (max-width: 768px) {
  .history .history-list > li {
    flex-direction: row;
    align-items: center;
    padding-left: 30px;
  }
}
.history .history-list > li + li {
  margin-top: 60px;
}
@media (max-width: 1280px) {
  .history .history-list > li + li {
    margin-top: 45px;
  }
}
@media (max-width: 768px) {
  .history .history-list > li + li {
    margin-top: 30px;
  }
}
.history .history-list > li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2B4EC8;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .history .history-list > li::before {
    left: 6px;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
  }
}
.history .history-list > li::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  border-top: 1px dashed #707070;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 768px) {
  .history .history-list > li::after {
    display: none;
  }
}
.history .history-list > li.right {
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 50%;
}
@media (max-width: 768px) {
  .history .history-list > li.right {
    padding-left: 30px;
  }
}
.history .history-list > li.right::after {
  left: 50%;
}
.history .history-list > li.right .year-box {
  margin-left: 55px;
}
@media (max-width: 1280px) {
  .history .history-list > li.right .year-box {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .history .history-list > li.right .year-box {
    margin-left: 0;
  }
}
.history .history-list > li.right .text-box {
  margin-left: 45px;
}
@media (max-width: 1280px) {
  .history .history-list > li.right .text-box {
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .history .history-list > li.right .text-box {
    margin-left: 14px;
  }
}
.history .history-list > li.left {
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding-right: 50%;
}
@media (max-width: 768px) {
  .history .history-list > li.left {
    flex-direction: row;
    padding-right: 0;
    padding-left: 30px;
  }
}
.history .history-list > li.left::after {
  right: 50%;
}
.history .history-list > li.left .year-box {
  margin-right: 55px;
}
@media (max-width: 1280px) {
  .history .history-list > li.left .year-box {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .history .history-list > li.left .year-box {
    margin-right: 0;
  }
}
.history .history-list > li.left .text-box {
  margin-right: 45px;
  text-align: right;
}
@media (max-width: 1280px) {
  .history .history-list > li.left .text-box {
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  .history .history-list > li.left .text-box {
    margin-right: 0;
    margin-left: 14px;
    text-align: left;
  }
}
.history .year-box {
  flex: 0 0 168px;
  padding: 8px 12px;
  text-align: center;
  border-radius: 100rem;
  background: #E8EBF6;
}
@media (max-width: 768px) {
  .history .year-box {
    flex: 0 0 128px;
    padding: 6px 14px;
  }
}
.history .year-box .year {
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
  color: #232960;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .history .year-box .year {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .history .year-box .year {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .history .year-box .year {
    font-size: 16px;
  }
}
.history .text-box {
  flex: 1 1 auto;
  padding: 16px 28px;
  border: 1px solid #DFE3EE;
  border-radius: 100rem;
  background: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .history .text-box {
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .history .text-box {
    padding: 6px 16px;
  }
}
.history .text-box p {
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  word-break: keep-all;
  color: #4B5468;
  font-weight: 500;
}
@media (max-width: 768px) {
  .history .text-box p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .history .text-box p {
    font-size: 13px;
  }
}

.partners {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  .partners {
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .partners {
    gap: 40px;
  }
}
.partners .sec-title-wrap {
  width: 95%;
}
.partners .partners-box {
  width: 100%;
  height: auto;
  padding: 60px 0;
  background: #F5F6FB;
}
@media (max-width: 1280px) {
  .partners .partners-box {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .partners .partners-box {
    padding: 24px 0;
  }
}
.partners .partners-box .partner-grid {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1280px) {
  .partners .partners-box .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .partners .partners-box .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .partners .partners-box .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partners .partners-box .partner-grid .logo-cell {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  aspect-ratio: 6/4;
  border: 1px solid #AABEFF;
  background: white;
}
.partners .partners-box .partner-grid .logo-cell > img {
  width: 85%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.direction {
  width: 100%;
  height: auto;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  .direction {
    padding-bottom: 70px;
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .direction {
    gap: 40px;
  }
}
.direction .sec-title-wrap {
  width: 95%;
}
.direction .dir-box {
  width: 100%;
  height: auto;
}
.direction .dir-box .inner {
  width: 95%;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.direction .dir-box .inner .blue-bar {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 18px;
  background: #1E40AF;
}
@media (max-width: 1280px) {
  .direction .dir-box .inner .blue-bar {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .direction .dir-box .inner .blue-bar {
    padding: 12px;
  }
}
.direction .dir-box .inner .blue-bar span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .direction .dir-box .inner .blue-bar span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .direction .dir-box .inner .blue-bar span {
    font-size: 16px;
  }
}
.direction .dir-box .inner .map-box {
  width: 100%;
  height: 650px;
}
@media (max-width: 1280px) {
  .direction .dir-box .inner .map-box {
    height: 480px;
  }
}
@media (max-width: 768px) {
  .direction .dir-box .inner .map-box {
    height: 360px;
  }
}
.direction .dir-box .inner .map-box .root_daum_roughmap {
  width: 100%;
  height: 100%;
}
.direction .dir-box .inner .map-box .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 100%;
}

.list-page {
  width: 100%;
  height: auto;
  padding-bottom: 100px;
}
@media (max-width: 1280px) {
  .list-page {
    padding-bottom: 70px;
  }
}
.list-page .container {
  width: 95%;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 1280px) {
  .list-page .container {
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .list-page .container {
    gap: 40px;
  }
}
.list-page .container {
  /* ===== 카테고리 ===== */
}
.list-page .container .product-category {
  width: 100%;
  height: auto;
}
.list-page .container .product-category ul {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.list-page .container .product-category ul > li {
  flex: 1 1 0;
  min-width: 120px;
}
@media (max-width: 768px) {
  .list-page .container .product-category ul > li {
    flex: 0 0 33.3333%;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .list-page .container .product-category ul > li {
    flex: 0 0 50%;
  }
}
.list-page .container .product-category ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px 8px;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
  transition: background 0.2s, color 0.2s;
}
@media (max-width: 1280px) {
  .list-page .container .product-category ul > li > a {
    padding: 11px 6px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .list-page .container .product-category ul > li > a {
    padding: 10px 5px;
    font-size: 13px;
  }
}
.list-page .container .product-category .cate-depth-1 {
  border-top: 1px solid white;
  border-left: 1px solid white;
}
.list-page .container .product-category .cate-depth-1 > li {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.list-page .container .product-category .cate-depth-1 > li > a {
  background: #EEF3FB;
  color: #2B4EC8;
  font-weight: 500;
}
.list-page .container .product-category .cate-depth-1 > li > a:hover {
  background: #DDE7F8;
}
.list-page .container .product-category .cate-depth-1 > li.on > a {
  background: #1E3FAE;
  color: white;
  font-weight: 700;
}
.list-page .container .product-category .cate-depth-2 {
  background: #1E3FAE;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}
@media (max-width: 768px) {
  .list-page .container .product-category .cate-depth-2 {
    gap: 16px 24px;
  }
}
.list-page .container .product-category .cate-depth-2 > li {
  flex: 0 0 auto;
}
.list-page .container .product-category .cate-depth-2 > li > a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.list-page .container .product-category .cate-depth-2 > li > a:hover {
  color: white;
}
.list-page .container .product-category .cate-depth-2 > li.on > a {
  color: white;
  font-weight: 700;
}
.list-page .container .product-category .cate-depth-3 {
  background: #E9EAEC;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}
@media (max-width: 768px) {
  .list-page .container .product-category .cate-depth-3 {
    gap: 16px 24px;
  }
}
.list-page .container .product-category .cate-depth-3 > li {
  flex: 0 0 auto;
}
.list-page .container .product-category .cate-depth-3 > li > a {
  color: #6B7286;
  font-weight: 400;
}
.list-page .container .product-category .cate-depth-3 > li > a:hover {
  color: #2B4EC8;
}
.list-page .container .product-category .cate-depth-3 > li.on > a {
  color: #2B4EC8;
  font-weight: 700;
}
.list-page .container {
  /* ===== 상품 리스트 ===== */
}
.list-page .container .product-list-body {
  width: 100%;
  height: auto;
  margin-top: 50px;
}
@media (max-width: 1280px) {
  .list-page .container .product-list-body {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .list-page .container .product-list-body {
    margin-top: 30px;
  }
}
.list-page .container .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  height: auto;
}
@media (max-width: 1280px) {
  .list-page .container .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .list-page .container .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .list-page .container .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.list-page .container .product-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 20px;
  border: 1px solid #E2E6EE;
  border-radius: 4px;
  background: white;
  transition: border-color 0.25s, box-shadow 0.25s;
}
@media (max-width: 480px) {
  .list-page .container .product-item {
    padding: 18px;
  }
}
.list-page .container .product-item:hover {
  border-color: #2B4EC8;
  box-shadow: 0 10px 26px rgba(43, 78, 200, 0.12);
}
.list-page .container .product-item:hover .product-img > img {
  transform: scale(1.05);
}
.list-page .container .product-item:hover .product-contents .product-name {
  color: #2B4EC8;
}
.list-page .container .product-item:hover .product-contents .view-more {
  opacity: 1;
  visibility: visible;
}
.list-page .container .product-item .product-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  background: white;
  overflow: hidden;
}
.list-page .container .product-item .product-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.35s ease;
}
.list-page .container .product-item .product-contents {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .list-page .container .product-item .product-contents {
    margin-top: 16px;
  }
}
.list-page .container .product-item .product-contents .product-name {
  display: block;
  width: 100%;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
  color: #1C2438;
  transition: color 0.2s;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .list-page .container .product-item .product-contents .product-name {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .list-page .container .product-item .product-contents .product-name {
    font-size: 16px;
  }
}
.list-page .container .product-item .product-contents .product-desc {
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1.5;
  text-align: center;
  word-break: keep-all;
  color: #8A91A3;
  font-weight: 400;
}
@media (max-width: 480px) {
  .list-page .container .product-item .product-contents .product-desc {
    margin-top: 9px;
    font-size: 13px;
  }
}
.list-page .container .product-item .product-contents .view-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  margin-top: 12px;
  background: #1E3FAE;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .list-page .container .product-item .product-contents .view-more {
    height: 42px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .list-page .container .product-item .product-contents .view-more {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.list-page .container {
  /* ===== 페이지네이션 ===== */
}
.list-page .container .pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: auto;
  margin-top: 70px;
}
@media (max-width: 1280px) {
  .list-page .container .pagination {
    margin-top: 55px;
  }
}
@media (max-width: 768px) {
  .list-page .container .pagination {
    margin-top: 45px;
    gap: 4px;
  }
}
.list-page .container .pagination > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
@media (max-width: 480px) {
  .list-page .container .pagination > a {
    width: 32px;
    height: 32px;
  }
}
.list-page .container .pagination > a i {
  font-size: 22px;
  line-height: 1;
  color: #9AA1B2;
  transition: color 0.2s;
}
@media (max-width: 480px) {
  .list-page .container .pagination > a i {
    font-size: 20px;
  }
}
.list-page .container .pagination > a span {
  font-size: 16px;
  line-height: 1;
  color: #6B7286;
  transition: color 0.2s;
  font-weight: 500;
}
@media (max-width: 480px) {
  .list-page .container .pagination > a span {
    font-size: 15px;
  }
}
.list-page .container .pagination > a:hover i,
.list-page .container .pagination > a:hover span {
  color: #2B4EC8;
}
.list-page .container .pagination > a.on span {
  color: #2B4EC8;
  font-weight: 700;
}

.view-page {
  width: 100%;
  height: auto;
  padding-bottom: 100px;
}
@media (max-width: 1280px) {
  .view-page {
    padding-bottom: 70px;
  }
}
.view-page .container {
  width: 95%;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
}
.view-page .container .summary-box {
  width: 100%;
  height: auto;
  margin-bottom: 64px;
  padding: 80px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  background: #F7F8FF;
  border-radius: 10px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box {
    margin-bottom: 52px;
    padding: 40px;
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-box {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 24px;
    gap: 40px;
  }
}
.view-page .container .summary-box .left {
  width: 40%;
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .left {
    flex: 1 1 40%;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-box .left {
    flex: unset;
    width: 100%;
    height: auto;
  }
}
.view-page .container .summary-box .left .view-huge-swiper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: white;
  border: 1px solid #ddd;
}
.view-page .container .summary-box .left .view-huge-swiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
.view-page .container .summary-box .left .view-huge-swiper .swiper-wrapper .swiper-slide > img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.view-page .container .summary-box .left .thumb-row {
  width: 100%;
  height: auto;
  padding: 8px;
  background: white;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.view-page .container .summary-box .left .thumb-row .thumb-prev, .view-page .container .summary-box .left .thumb-row .thumb-next {
  flex: 0 0 auto;
  width: 66px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .left .thumb-row .thumb-prev, .view-page .container .summary-box .left .thumb-row .thumb-next {
    width: 52px;
  }
}
.view-page .container .summary-box .left .thumb-row .thumb-prev i, .view-page .container .summary-box .left .thumb-row .thumb-next i {
  font-size: 32px;
  font-variation-settings: "wght" 900;
  line-height: 1;
  color: #9cade0;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .left .thumb-row .thumb-prev i, .view-page .container .summary-box .left .thumb-row .thumb-next i {
    font-size: 24px;
  }
}
.view-page .container .summary-box .left .thumb-row .view-thumbs-swiper {
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
}
.view-page .container .summary-box .left .thumb-row .view-thumbs-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #ddd;
  background: white;
  display: flex;
  opacity: 0.5;
}
.view-page .container .summary-box .left .thumb-row .view-thumbs-swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.view-page .container .summary-box .left .thumb-row .view-thumbs-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.view-page .container .summary-box .right {
  width: 40%;
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right {
    flex: 1 1 40%;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-box .right {
    flex: unset;
    width: 100%;
    height: auto;
  }
}
.view-page .container .summary-box .right .product-name {
  margin-bottom: 52px;
  padding: 0 20px 20px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.4;
  word-break: keep-all;
  color: #1E3FAE;
  border-bottom: 3px solid #1E3FAE;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .product-name {
    margin-bottom: 40px;
    padding: 0 12px 12px;
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-box .right .product-name {
    margin-bottom: 28px;
    font-size: 24px;
  }
}
.view-page .container .summary-box .right .short-description {
  width: 100%;
  height: auto;
  padding: 14px 28px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: #2D2D2D;
  background: white;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .short-description {
    padding: 12px 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-box .right .short-description {
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.view-page .container .summary-box .right .normal-description {
  width: 100%;
  height: auto;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .normal-description {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-box .right .normal-description {
    font-size: 14px;
  }
}
.view-page .container .summary-box .right .summary-bottom-buttons {
  width: 100%;
  height: auto;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .summary-bottom-buttons {
    margin-top: 52px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-box .right .summary-bottom-buttons {
    margin-top: 32px;
  }
}
@media (max-width: 640px) {
  .view-page .container .summary-box .right .summary-bottom-buttons {
    grid-template-columns: 1fr;
  }
}
.view-page .container .summary-box .right .summary-bottom-buttons > a {
  width: 100%;
  height: 50px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: white;
  gap: 8px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .summary-bottom-buttons > a {
    height: 44px;
  }
}
.view-page .container .summary-box .right .summary-bottom-buttons > a.download-01 {
  border: 2px solid #1E3FAE;
  color: #1E3FAE;
}
.view-page .container .summary-box .right .summary-bottom-buttons > a.download-01 .download-icon {
  background-color: #F4F4F9;
}
.view-page .container .summary-box .right .summary-bottom-buttons > a.download-02 {
  border: 2px solid #17BF92;
  color: #17BF92;
}
.view-page .container .summary-box .right .summary-bottom-buttons > a.download-02 .download-icon {
  background-color: #EAF9F5;
}
.view-page .container .summary-box .right .summary-bottom-buttons > a.download-03 {
  border: 2px solid #E18011;
  color: #E18011;
}
.view-page .container .summary-box .right .summary-bottom-buttons > a.download-03 .download-icon {
  background-color: #FCF4EA;
}
.view-page .container .summary-box .right .summary-bottom-buttons > a:last-child {
  grid-column: 1/-1;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: white;
  background: #2D2D2D;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .summary-bottom-buttons > a:last-child {
    font-size: 16px;
  }
}
.view-page .container .summary-box .right .summary-bottom-buttons > a .download-icon {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 4px;
}
.view-page .container .summary-box .right .summary-bottom-buttons > a .download-icon i {
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .summary-bottom-buttons > a .download-icon i {
    font-size: 24px;
  }
}
.view-page .container .summary-box .right .summary-bottom-buttons > a span {
  flex: 1 1 auto;
  display: inline-flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 1280px) {
  .view-page .container .summary-box .right .summary-bottom-buttons > a span {
    font-size: 16px;
  }
}
.view-page .container .detail-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box {
    gap: 28px;
  }
}
.view-page .container .detail-box .detail-tabs {
  position: sticky;
  top: 100px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: auto;
  z-index: 5;
}
.view-page .container .detail-box .detail-tabs .tab {
  flex: 1 1 10%;
  min-height: 56px;
  border: 1px solid #ccc;
  border-bottom: 2px solid #464646;
  padding: 10px 12px;
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-tabs .tab {
    min-height: 52px;
    padding: 8px 10px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-tabs .tab {
    min-height: 48px;
    padding: 6px 8px;
  }
}
@media (max-width: 480px) {
  .view-page .container .detail-box .detail-tabs .tab {
    flex: 0 0 72px;
  }
}
.view-page .container .detail-box .detail-tabs .tab span {
  font-size: 20px;
  line-height: 1.2;
  color: #818181;
  transition: inherit;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-tabs .tab span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-tabs .tab span {
    font-size: 14px;
  }
}
.view-page .container .detail-box .detail-tabs .tab.on {
  border-color: #464646;
  border-bottom-color: white;
}
.view-page .container .detail-box .detail-tabs .tab.on span {
  color: #1E3FAE;
}
.view-page .container .detail-box .detail-contents-group {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group {
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group {
    gap: 40px;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group .content-row {
    gap: 20px;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row .row-title {
  width: 100%;
  height: 40px;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #232960;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-title {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-title {
    padding: 0 16px;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row .row-title > b {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-title > b {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-title > b {
    font-size: 22px;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body {
  width: 100%;
  height: auto;
  padding: 0 10%;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body {
    padding: 0 5%;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body {
    padding: 0;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box {
  width: 100%;
  height: auto;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 36px;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper {
    padding: 0 28px;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide > a {
  width: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: white;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide > a {
    padding: 12px;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide > a .prod-thumb {
  position: relative;
  width: 90%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide > a .prod-thumb > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide > a .prod-name-wrap {
  width: 100%;
  height: auto;
  padding-top: 12px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #f0f0f0;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide > a .prod-name-wrap b {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  color: #2D2D2D;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-swiper .swiper-wrapper .swiper-slide > a .prod-name-wrap > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
  color: #707070;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation.active {
  opacity: 1;
  visibility: visible;
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation div {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #aaa;
  border-radius: 10000rem;
  background: white;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation div {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation div {
    width: 36px;
    height: 36px;
  }
}
.view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation div i {
  font-size: 24px;
  line-height: 1;
  color: #707070;
}
@media (max-width: 1280px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation div i {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .view-page .container .detail-box .detail-contents-group .content-row .row-body .acc-box .acc-swiper-wrapper .acc-navigation div i {
    font-size: 16px;
  }
}

.inquiry-page {
  width: 100%;
  height: auto;
  padding-bottom: 100px;
}
.inquiry-page .container {
  width: 95%;
  height: auto;
  max-width: 1024px;
  margin: 0 auto;
}
.inquiry-page .container .ard-inquiry-form {
  width: 100%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
  background: #f0f0f0;
  border-radius: 30px;
}
.inquiry-page .container .ard-inquiry-form .form-part {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.inquiry-page .container .ard-inquiry-form .form-part .part-name {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: black;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item {
  width: 100%;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label {
  width: 100%;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > span {
  flex: 0 0 130px;
  font-size: 18px;
  font-weight: 500;
  color: #3D3D3D;
  border-right: 1px solid #aaa;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > span > i {
  padding-left: 16px;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > input {
  padding: 0 16px;
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 1;
  color: #2D2D2D;
  border: none;
  outline: none;
  background: transparent;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 30px;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
  font-size: 18px;
  line-height: 1;
  color: #2D2D2D;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label > input {
  width: 14px;
  height: 14px;
}
.inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > textarea {
  width: 100%;
  resize: none;
  font-size: 16px;
  line-height: 1.4;
  color: #2D2D2D;
  box-shadow: none;
}
.inquiry-page .container .ard-inquiry-form .form-submit {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.inquiry-page .container .ard-inquiry-form .form-submit > label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}
.inquiry-page .container .ard-inquiry-form .form-submit > label > input {
  width: 12px;
  height: 12px;
}
.inquiry-page .container .ard-inquiry-form .form-submit > label > span {
  font-size: 14px;
  line-height: 1;
  color: #2D2D2D;
}
.inquiry-page .container .ard-inquiry-form .form-submit > label > span > i {
  font-weight: 600;
  text-decoration: underline;
}
.inquiry-page .container .ard-inquiry-form .form-submit > button {
  width: 300px;
  height: 60px;
  align-self: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #132D82, #1A817A);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: white;
  text-align: center;
  border: none;
  outline: none;
}
@media (max-width: 1280px) {
  .inquiry-page .container .ard-inquiry-form {
    padding: 50px;
    grid-gap: 30px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part {
    grid-gap: 20px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .part-name {
    font-size: 24px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list {
    grid-gap: 16px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label {
    padding-bottom: 12px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > span {
    flex: 0 0 110px;
    font-size: 16px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > span > i {
    padding-left: 16px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > input {
    font-size: 16px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types {
    grid-gap: 20px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label {
    font-size: 16px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label > input {
    width: 14px;
    height: 14px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > textarea {
    font-size: 14px;
  }
  .inquiry-page .container .ard-inquiry-form .form-submit {
    grid-gap: 20px;
  }
  .inquiry-page .container .ard-inquiry-form .form-submit > button {
    width: 220px;
    height: 45px;
    font-size: 20px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .inquiry-page .container .ard-inquiry-form {
    padding: 20px;
    grid-gap: 20px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part {
    grid-gap: 16px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .part-name {
    font-size: 18px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list {
    grid-gap: 12px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label {
    padding-bottom: 10px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > span {
    flex: 0 0 110px;
    font-size: 14px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item > label > input {
    font-size: 14px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types {
    grid-gap: 20px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label {
    font-size: 16px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label > input {
    width: 14px;
    height: 14px;
  }
  .inquiry-page .container .ard-inquiry-form .form-submit {
    grid-gap: 16px;
    align-items: center;
  }
  .inquiry-page .container .ard-inquiry-form .form-submit > button {
    width: 220px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types {
    grid-gap: 14px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label {
    font-size: 14px;
  }
  .inquiry-page .container .ard-inquiry-form .form-part .input-list .input-item .types > label > input {
    width: 12px;
    height: 12px;
  }
  .inquiry-page .container .ard-inquiry-form .form-submit > button {
    width: 180px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
  }
}/*# sourceMappingURL=sub.css.map */