@charset "UTF-8";
.pro_top_tit {
  width: 100%;
  background-image: url(../img/product_img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 614px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pro_top_tit .tit_box {
  width: 100%;
  max-width: 1480px;
  color: white;
}
.pro_top_tit .tit_box > h2 {
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
.pro_top_tit .tit_box > p {
  font-size: 20px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pro_top_tit {
    height: 400px;
    padding: 0 20px;
  }
  .pro_top_tit .tit_box {
    width: 100%;
    max-width: 1480px;
    color: white;
  }
  .pro_top_tit .tit_box > h2 {
    font-size: 45px;
    font-weight: 700;
  }
  .pro_top_tit .tit_box > p {
    font-size: 13px;
  }
}
.product_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding-top: 100px;
}
.product_cont .product_tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 114px;
}
.product_cont .product_tit > h2 {
  font-size: 51px;
  font-weight: 700;
  line-height: 1;
}
.product_cont .product_tit > p {
  font-size: 18px;
  color: #292929;
  line-height: 1.5;
}
.product_cont .product_tit > p > span {
  color: #00AB1D;
}
.product_cont .product_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 150px;
}
.product_cont .product_wrap .product_box {
  width: 100%;
  max-width: 1580px;
  display: flex;
  justify-content: space-between;
}
.product_cont .product_wrap .product_box .product {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product_cont .product_wrap .product_box .product .img_box {
  background-color: #F8F8F8;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_cont .product_wrap .product_box .product > h2 {
  font-size: 30px;
  font-weight: 700;
}
.product_cont .product_wrap .product_box .product .word_box {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #707070;
  padding-bottom: 14px;
  padding-left: 10px;
}
.product_cont .product_wrap .product_box .product .word_box > h3 {
  color: #717171;
  font-weight: 500;
  background-color: #E2E2E2;
  padding: 10px 15px;
  border-radius: 50px;
}
.product_cont .product_wrap .product_box .product > p {
  color: #888888;
  line-height: 2;
}

@media (max-width: 1028px) {
  .product_cont {
    padding: 100px 20px 0px 20px;
  }
  .product_cont .product_wrap .product_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .product_cont {
    padding: 40px 20px 0px 20px;
  }
  .product_cont .product_tit {
    margin-bottom: 40px;
  }
  .product_cont .product_tit > h2 {
    font-size: 30px;
  }
  .product_cont .product_tit > p {
    font-size: 14px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .product_cont .product_wrap {
    margin-bottom: 40px;
  }
  .product_cont .product_wrap .product_box {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    place-items: center;
  }
  .product_cont .product_wrap .product_box .product {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .product_cont .product_wrap .product_box .product .img_box {
    background-color: #F8F8F8;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product_cont .product_wrap .product_box .product .img_box > img {
    width: 100%;
  }
  .product_cont .product_wrap .product_box .product > h2 {
    font-size: 24px;
  }
  .product_cont .product_wrap .product_box .product .word_box {
    display: flex;
    gap: 10px;
    padding-bottom: 14px;
    padding-left: 10px;
  }
  .product_cont .product_wrap .product_box .product .word_box > h3 {
    padding: 10px 15px;
    font-size: 10px;
  }
  .product_cont .product_wrap .product_box .product > p {
    color: #888888;
    line-height: 2;
    font-size: 12px;
    word-break: keep-all;
  }
}
.legal_con {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 50px 0;
}
.legal_con .legal_wrap {
  width: 100%;
  max-width: 1480px;
  box-shadow: 0px 6px 8px rgba(204, 204, 204, 0.2980392157);
}
.legal_con .legal_wrap .legal_top, .legal_con .legal_wrap .legal_bottom {
  padding: 20px;
  border-top: 1px solid rgba(204, 204, 204, 0.2980392157);
  border-bottom: 1px solid rgba(204, 204, 204, 0.2980392157);
}
.legal_con .legal_wrap .legal_top h2, .legal_con .legal_wrap .legal_bottom h2 {
  width: 150px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  font-size: 1.5em;
}
.legal_con .legal_wrap .legal_top h2 .toggle-arrow, .legal_con .legal_wrap .legal_bottom h2 .toggle-arrow {
  transition: transform 0.3s ease;
  font-size: 1.5em;
  margin-left: 10px;
}
.legal_con .legal_wrap .legal_top .content, .legal_con .legal_wrap .legal_bottom .content {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  font-size: 16px;
  word-break: keep-all;
  line-height: 1.8;
}
.legal_con .legal_wrap .legal_top.active .toggle-arrow, .legal_con .legal_wrap .legal_bottom.active .toggle-arrow {
  transform: rotate(90deg);
}
.legal_con .legal_wrap .legal_top.active .content, .legal_con .legal_wrap .legal_bottom.active .content {
  max-height: 500px; /* 적절한 최대 높이 설정 */
  padding: 0 20px;
  opacity: 1;
}

.add_sub_con {
  width: 100%;
  background-color: #fff;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .add_sub_con {
    padding: 40px 0;
  }
}
.add_sub_con .add_sub_wrap {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .add_sub_con .add_sub_wrap {
    padding: 0 20px;
  }
}
.add_sub_con .add_sub_wrap > h2 {
  font-size: 22px;
  border-bottom: 3px solid #222;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .add_sub_con .add_sub_wrap > h2 {
    font-size: 19px;
    margin-bottom: 20px;
  }
}
.add_sub_con .add_sub_wrap .add_word {
  padding: 20px;
  box-shadow: 0px 0px 8px rgba(204, 204, 204, 0.5607843137);
}
.add_sub_con .add_sub_wrap .add_word > p {
  font-size: 17px;
  line-height: 1.5;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .add_sub_con .add_sub_wrap .add_word > p {
    font-size: 14px;
  }
}
.add_sub_con .add_sub_wrap .add_word > p > span {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .add_sub_con .add_sub_wrap .add_word > p > span {
    font-size: 18px;
  }
}

.sub_left_box {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  width: 100%;
  max-width: 180px;
  border-top: 3px solid #00AB1D;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(204, 204, 204, 0.5607843137);
}
@media (max-width: 768px) {
  .sub_left_box {
    display: none;
  }
}
.sub_left_box > ul {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub_left_box > ul > a {
  width: 100%;
  border-bottom: 1px solid rgba(204, 204, 204, 0.2549019608);
  text-align: center;
}
.sub_left_box > ul > a > li {
  width: 100%;
  font-size: 17px;
  padding: 10px;
  transition: 0.3s;
}
.sub_left_box > ul > a li:hover {
  background-color: rgba(136, 136, 136, 0.2196078431);
  transition: 0.3s;
}/*# sourceMappingURL=sub.css.map */