@charset "UTF-8";
.sub_vis {
  width: 100%;
  background-image: url(../img/sub_1.png);
  background-position: center;
  background-size: cover;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .sub_vis {
    height: 250px;
  }
}
.sub_vis > h2 {
  color: #000;
  font-weight: 700;
  font-size: 38px;
  font-family: "GmarketSans";
}
@media (max-width: 768px) {
  .sub_vis > h2 {
    font-size: 25px;
  }
}

.sub_pro {
  background-image: url(../img/pro_sub.png);
}
.sub_pro > h2 {
  color: white;
}

.sub_inq {
  background-image: url(../img/inq.png);
}

.tab-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "GmarketSans";
}
.tab-menu .tabs {
  list-style: none;
  display: flex;
  width: 100%;
  max-width: 1520px;
  padding: 28px 0;
}
.tab-menu .tabs .tab {
  flex: 1;
  text-align: center;
  padding-bottom: 28px;
  cursor: pointer;
  font-size: 22px;
  color: #A4A4A4;
  font-weight: 700;
  font-family: "GmarketSans";
  border-bottom: 0.5px solid #BBBBBB;
}
@media (max-width: 768px) {
  .tab-menu .tabs .tab {
    font-size: 15px;
  }
}
.tab-menu .tabs .tab:last-child {
  border-right: none;
}
.tab-menu .tabs .tab.active {
  background-color: #fff;
  border-bottom: 2px solid #192191;
  padding-bottom: 10px;
  color: #192191;
}
.tab-menu .tab-content {
  padding-top: 100px;
  display: none;
  flex-direction: column;
  align-items: center;
  margin-bottom: 115px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content {
    margin-bottom: 40px;
    padding-top: 40px;
  }
}
.tab-menu .tab-content.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tab-menu .tab-content .tit_box {
  display: inline-block;
  width: auto;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .tit_box {
    margin-bottom: 40px;
  }
}
.tab-menu .tab-content .tit_box > h2 {
  font-size: 35px;
  font-weight: 700;
  padding-bottom: 40px;
  border-bottom: 8px solid #E3E3E3;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .tit_box > h2 {
    font-size: 25px;
  }
}
.tab-menu .tab-content .greet_box {
  display: flex;
  gap: 110px;
  align-items: center;
}
@media (max-width: 1024px) {
  .tab-menu .tab-content .greet_box {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0 20px;
  }
}
.tab-menu .tab-content .greet_box > .left > img {
  width: 100%;
}
.tab-menu .tab-content .greet_box > .right > h2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 10px;
  color: #6B8BBE;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .greet_box > .right > h2 {
    font-size: 15px;
    letter-spacing: 5px;
  }
}
.tab-menu .tab-content .greet_box > .right > h3 {
  font-size: 35px;
  font-weight: 700;
  color: #003272;
  line-height: 1.5;
  margin-bottom: 38px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .greet_box > .right > h3 {
    font-size: 22px;
  }
}
.tab-menu .tab-content .greet_box > .right > p {
  font-size: 18px;
  font-weight: 500;
  color: #404040;
  line-height: 1.4;
  font-family: "Pretendard Variable";
}
@media (max-width: 768px) {
  .tab-menu .tab-content .greet_box > .right > p {
    font-size: 14px;
    word-break: keep-all;
  }
}
.tab-menu .tab-content .greet_box > .right > p > span {
  font-size: 20px;
  font-weight: 700;
  font-family: "Pretendard Variable";
  color: #000;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .greet_box > .right > p > span {
    font-size: 16px;
  }
}
.tab-menu .tab-content .history {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .history {
    padding: 0 20px;
  }
}
.tab-menu .tab-content .history > .img_wrap {
  width: 100%;
  max-width: 1250px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  background-image: url(../img/his_back.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .history > .img_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.tab-menu .tab-content .history > .img_wrap > .img_box > .top > h2 {
  font-family: "Pretendard Variable";
  font-size: 80px;
  font-weight: 700;
  color: rgba(44, 113, 204, 0.2745098039);
}
@media (max-width: 768px) {
  .tab-menu .tab-content .history > .img_wrap > .img_box > .top > h2 {
    font-size: 40px;
  }
}
.tab-menu .tab-content .history > .img_wrap > .img_box > .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.tab-menu .tab-content .history > .img_wrap > .img_box > .bottom > h2 {
  font-family: "Pretendard Variable";
  font-size: 18px;
  font-weight: 700;
  border-right: 3px solid #E3E3E3;
  border-left: 3px solid #E3E3E3;
  padding: 0 12px;
}
.tab-menu .tab-content .history > .img_wrap > .img_box > .bottom > p {
  font-size: 18px;
  font-weight: 500;
  font-family: "Pretendard Variable";
  color: #404040;
}
.tab-menu .tab-content .contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact {
    padding: 0 20px;
  }
}
.tab-menu .tab-content .contact .contact_wrap {
  width: 100%;
  max-width: 1024px;
  font-family: "Pretendard Variable";
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap {
    gap: 20px;
  }
}
.tab-menu .tab-content .contact .contact_wrap .top {
  display: flex;
  align-items: baseline;
  gap: 30px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .top {
    flex-direction: column;
    gap: 20px;
  }
}
.tab-menu .tab-content .contact .contact_wrap .top > h2 {
  font-size: 62px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .top > h2 {
    font-size: 30px;
  }
}
.tab-menu .tab-content .contact .contact_wrap .top > p {
  font-size: 14px;
  color: #8D8D8D;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .top > p {
    font-size: 12px;
  }
}
.tab-menu .tab-content .contact .contact_wrap .middle {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .middle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.tab-menu .tab-content .contact .contact_wrap .middle .img_box {
  padding: 20px 48px;
  font-size: 30px;
  font-weight: 600;
  gap: 20px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .middle .img_box {
    font-size: 14px;
    padding: 0;
  }
}
.tab-menu .tab-content .contact .contact_wrap .middle .center {
  border-left: 0.5px solid #A4A4A4;
  border-right: 0.5px solid #A4A4A4;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .middle .center > img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .middle .center {
    border: 0;
  }
}
.tab-menu .tab-content .contact .contact_wrap .bot {
  display: flex;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .bot {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.tab-menu .tab-content .contact .contact_wrap .bot .left {
  padding: 53px 50px;
  background-color: #192191;
  width: 100%;
  max-width: 250px;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .bot .left {
    width: 100%;
    padding: 35px;
    max-width: 100%;
  }
}
.tab-menu .tab-content .contact .contact_wrap .bot .left > h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 60px;
  color: white;
  word-break: keep-all;
}
.tab-menu .tab-content .contact .contact_wrap .bot .left > a {
  padding: 20px 8px;
  border: 1px solid white;
  color: white;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .bot .left > a {
    font-size: 14px;
  }
}
.tab-menu .tab-content .contact .contact_wrap .bot .right {
  width: 100%;
}
@media (max-width: 768px) {
  .tab-menu .tab-content .contact .contact_wrap .bot .right {
    height: 300px;
  }
}
.tab-menu .tab-content .contact .contact_wrap .bot .right > iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .pro_tit {
    padding: 0 20px;
  }
}
.pro_tit > .tit_box {
  text-align: center;
  margin-bottom: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .pro_tit > .tit_box {
    padding: 40px 20px 0 20px;
    margin-bottom: 40px;
  }
}
.pro_tit > .tit_box > h2 {
  font-size: 35px;
  font-weight: 700;
  font-family: "GmarketSans";
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .pro_tit > .tit_box > h2 {
    font-size: 25px;
  }
}
.pro_tit > .tit_box > p {
  font-family: "Pretendard Variable";
  font-size: 20px;
  font-weight: 500;
  color: #A4A4A4;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pro_tit > .tit_box > p {
    font-size: 16px;
  }
}
.pro_tit > .tit_box > h4 {
  width: 61px;
  height: 8px;
  background-color: #E3E3E3;
}
@media (max-width: 768px) {
  .pro_tit > .tit_box > h4 {
    font-size: 35px;
  }
}
.pro_tit > h3 {
  font-family: "Pretendard Variable";
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .pro_tit > h3 {
    font-size: 17px;
    word-break: keep-all;
  }
}

.pro_2 {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 530px;
  background-image: url(../img/pro_art.png);
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .pro_2 {
    margin-bottom: 40px;
    height: auto;
    padding: 0 20px;
    background-image: none;
  }
}
.pro_2 .pro_2_wrap {
  display: flex;
  align-items: center;
  gap: 44px;
}
@media (max-width: 1024px) {
  .pro_2 .pro_2_wrap {
    flex-direction: column;
    align-items: center;
  }
}
.pro_2 .pro_2_wrap .left > img {
  width: 100%;
}
.pro_2 .pro_2_wrap .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .pro_2 .pro_2_wrap .right {
    gap: 20px;
    width: 100%;
  }
}
.pro_2 .pro_2_wrap .right .word {
  width: 100%;
  max-width: 595px;
  padding: 45px;
  display: flex;
  align-items: center;
  gap: 54px;
  background-color: white;
  border: 1px dashed #192191;
}
@media (max-width: 768px) {
  .pro_2 .pro_2_wrap .right .word {
    padding: 20px;
    gap: 20px;
    justify-content: space-between;
  }
}
.pro_2 .pro_2_wrap .right .word .right > h2 {
  font-size: 16px;
  font-weight: 500;
  font-family: "Pretendard Variable";
}
@media (max-width: 768px) {
  .pro_2 .pro_2_wrap .right .word .right > h2 {
    font-size: 10px;
    word-break: keep-all;
  }
}

.pro_3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .pro_3 {
    margin-bottom: 40px;
  }
}
.pro_3 .tit {
  text-align: center;
  margin-bottom: 68px;
}
@media (max-width: 768px) {
  .pro_3 .tit {
    margin-bottom: 40px;
  }
}
.pro_3 .tit > h2 {
  font-size: 35px;
  font-weight: 700;
  font-family: "GmarketSans";
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .pro_3 .tit > h2 {
    font-size: 25px;
  }
}
.pro_3 .tit > p {
  font-family: "Pretendard Variable";
  font-size: 20px;
  font-weight: 500;
  color: #A4A4A4;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pro_3 .tit > p {
    font-size: 15px;
    margin-bottom: 0;
  }
}
.pro_3 .point {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .pro_3 .point {
    padding: 0 20px;
  }
}
.pro_3 .point .point_wrap {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  gap: 23px;
}
@media (max-width: 1024px) {
  .pro_3 .point .point_wrap {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pro_3 .point .point_wrap {
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
  }
}
.pro_3 .point .point_wrap .box {
  padding: 36px 16px 0 16px;
  background-color: #F4F4FB;
  width: 100%;
  max-width: 348px;
  height: 275px;
  border-radius: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .pro_3 .point .point_wrap .box {
    height: 220px;
  }
}
.pro_3 .point .point_wrap .box > h2 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 15px;
  background-image: linear-gradient(to right, #4951CB, #0F1137);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .pro_3 .point .point_wrap .box > h2 {
    font-size: 12px;
  }
}
.pro_3 .point .point_wrap .box > h3 {
  font-size: 25px;
  font-weight: 700;
  color: #192191;
  font-family: "GmarketSans";
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .pro_3 .point .point_wrap .box > h3 {
    font-size: 17px;
  }
}
.pro_3 .point .point_wrap .box > p {
  font-size: 16px;
  font-weight: 500;
  font-family: "Pretendard Variable";
}
@media (max-width: 768px) {
  .pro_3 .point .point_wrap .box > p {
    font-size: 13px;
  }
}

.pro_4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .pro_4 {
    margin-bottom: 40px;
  }
}
.pro_4 .img_wrap {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 20px;
}
.pro_4 .img_wrap img {
  width: 100%;
}
@media (max-width: 1024px) {
  .pro_4 .img_wrap {
    flex-direction: column;
  }
}

.pro_5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 135px;
}
@media (max-width: 768px) {
  .pro_5 {
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
.pro_5 > .tit {
  text-align: center;
  margin-bottom: 68px;
}
@media (max-width: 768px) {
  .pro_5 > .tit {
    margin-bottom: 40px;
  }
}
.pro_5 > .tit > h2 {
  font-size: 35px;
  font-weight: 700;
  font-family: "GmarketSans";
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .pro_5 > .tit > h2 {
    font-size: 25px;
  }
}
.pro_5 > .tit > p {
  font-family: "Pretendard Variable";
  font-size: 20px;
  font-weight: 500;
  color: #A4A4A4;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pro_5 > .tit > p {
    font-size: 17px;
    margin-bottom: 0;
  }
}
.pro_5 > table {
  border-collapse: collapse;
  font-family: "Pretendard Variable";
  width: 100%;
  max-width: 1130px;
  text-align: center;
}
@media (max-width: 768px) {
  .pro_5 > table {
    padding: 0 20px;
  }
}
.pro_5 > table th {
  padding: 20px 0;
  background-color: #F3F3F3;
  border-bottom: 2px solid #707070;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pro_5 > table th {
    font-size: 15px;
  }
}
.pro_5 > table td {
  padding: 20px 0;
  font-size: 18px;
  color: #5B5B5B;
  border: 0.5px solid rgba(164, 164, 164, 0.3764705882);
}
@media (max-width: 768px) {
  .pro_5 > table td {
    font-size: 10px;
  }
}

.form-container {
  width: 100%;
  max-width: 920px;
  margin: 50px auto;
  padding: 75px 100px;
  border: 1px solid rgba(201, 201, 201, 0.2862745098);
}
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }
}
.form-container > .tit {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .form-container > .tit {
    margin-bottom: 40px;
  }
}
.form-container > .tit > h2 {
  font-size: 25px;
  font-weight: 600;
  font-family: "Pretendard Variable";
}
@media (max-width: 768px) {
  .form-container > .tit > h2 {
    font-size: 18px;
  }
}

#onlineFrm {
  display: flex;
  flex-wrap: wrap;
}
#onlineFrm .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}
#onlineFrm .form-group input[type=text] {
  margin-right: 10px;
}
#onlineFrm .form-group .zip_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 85%;
}
@media (max-width: 1024px) {
  #onlineFrm .form-group .zip_wrap > p {
    font-size: 12px;
  }
}
#onlineFrm .form-group .zip_wrap .zip-group {
  display: flex;
  gap: 10px;
}
#onlineFrm .form-group .zip_wrap .zip-group input[type=text] {
  flex: 1;
}
#onlineFrm .form-group .zip_wrap .zip-group .zip-search-btn {
  padding: 5px 10px;
  background-color: #4a6de5;
  color: #fff;
  border: none;
  cursor: pointer;
}
#onlineFrm .form-group .zip_wrap .zip-group .zip-search-btn:hover {
  background-color: #3b56c9;
}
#onlineFrm .form-group.full-width label {
  display: block; /* 한 줄에 표시되도록 설정 */
  font-weight: bold;
}
#onlineFrm .form-group.full-width .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 80%;
}
#onlineFrm .form-group.full-width .radio-group label {
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  #onlineFrm .form-group.full-width .radio-group label {
    font-size: 12px;
  }
}
#onlineFrm .form-group.full-width .radio-group input[type=radio] {
  margin-right: 5px;
}
@media (max-width: 1024px) {
  #onlineFrm .form-group.full-width .radio-group input[type=radio] {
    margin-right: 0;
    width: 10px;
  }
}
@media (max-width: 1024px) {
  #onlineFrm .form-group.order-group > img {
    display: none;
  }
}
#onlineFrm .form-group.order-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
#onlineFrm .form-group.order-group .order-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#onlineFrm .form-group.order-group .order-inputs input[type=text] {
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid rgba(201, 201, 201, 0.2862745098);
  font-size: 16px;
}
#onlineFrm .form-group.file_g .file_g_box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#onlineFrm .form-group label {
  width: 150px; /* 고정된 라벨 너비 */
  font-weight: bold;
  font-size: 20px;
  font-weight: 500;
  font-family: "Pretendard Variable";
}
@media (max-width: 768px) {
  #onlineFrm .form-group label {
    font-size: 15px;
    width: 100px;
  }
}
#onlineFrm .form-group input, #onlineFrm .form-group textarea {
  width: calc(100% - 150px + 30px); /* 입력 필드의 너비 계산 */
  padding: 5px;
  border: none;
  border-bottom: 1px solid rgba(201, 201, 201, 0.2862745098);
}
@media (max-width: 1024px) {
  #onlineFrm .form-group input, #onlineFrm .form-group textarea {
    width: calc(100% - 150px + 150px);
  }
}
#onlineFrm .form-group textarea {
  border: 1px solid rgba(201, 201, 201, 0.2862745098);
  border-top: none;
  border-left: none;
  border-right: none;
}
#onlineFrm .form-group.full-width {
  display: flex;
  align-items: center;
}
#onlineFrm .form-group.full-width span {
  color: red;
}
#onlineFrm .form-group.full-width label {
  width: 150px; /* 다른 필드와 동일한 라벨 크기 */
  font-weight: bold;
}
@media (max-width: 768px) {
  #onlineFrm .form-group.full-width label {
    width: 100px;
  }
}
#onlineFrm .form-group.full-width input, #onlineFrm .form-group.full-width textarea {
  width: calc(100% - 150px + 30px); /* 다른 필드와 동일하게 너비 설정 */
  padding: 5px;
}
@media (max-width: 1024px) {
  #onlineFrm .form-group.full-width input, #onlineFrm .form-group.full-width textarea {
    width: calc(100% - 150px + 90px);
  }
}
#onlineFrm .form-group.agree {
  justify-content: center; /* 중앙 정렬 */
}
#onlineFrm .form-group.agree input[type=checkbox] {
  margin-left: 15px;
  width: auto; /* 체크박스 크기 조정 */
}
#onlineFrm .form-group.agree label {
  width: auto; /* 체크박스 옆에 텍스트 */
  font-weight: normal;
}
#onlineFrm .form-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 20px;
}
#onlineFrm .form-buttons button {
  padding: 20px 70px;
  border: none;
  background-color: #2C38A8;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #onlineFrm .form-buttons button {
    padding: 10px;
    font-size: 15px;
  }
}
#onlineFrm .form-buttons button:hover {
  background-color: #232e91;
}
#onlineFrm .form-buttons button:last-child {
  background-color: #C1C1C1;
}
#onlineFrm .form-buttons button:last-child:hover {
  background-color: #9b9b9b;
}/*# sourceMappingURL=sub.css.map */