@charset "utf-8";

img {max-width: 100%;}
div, h1, h2, h3, h4, h5, h6, span, p, b, strong, ul, li {word-break: keep-all;}
.desc {
  font-size: 18px;
  line-height: 1.7;
}
.more-btn {
  border: 1px solid #596252;
  width: 200px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: all .2s;
}
.more-btn span {
  font-size: 15px;
  font-weight: 600;
  color: #596252;
}
.more-btn .arrow {
  width: 17px !important;
  height: auto !important;
  aspect-ratio: 17 / 9;
}
.more-btn .arrow .color {
  fill: none;
  stroke: #596252;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
}
.more-btn:hover {
  background: #596252;
  padding: 0 16px;
}
.more-btn:hover span {color: #fff;}
.more-btn:hover .arrow .color {stroke: #fff;}
.swiper-pagination {
  position: absolute;
  top: auto !important;
  bottom: 50px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #f7f3ee !important;
  margin: 0 5px !important;
  opacity: 1 !important;
}
.swiper-pagination .swiper-pagination-bullet-active {background: #596252 !important;}
.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 10px;
}
.item-list li {width: calc((100% - 40px)/5);}
.item-list li a {display: block;}
.item-list li .img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.item-list li .img .bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  transition: all .2s;
}
.item-list li .txt {padding-top: 20px;}
.item-list li .txt .subject {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.item-list li .txt .desc {
  font-size: 15px;
  color: #666;
  margin: 10px 0 15px;
}
.item-list li:hover .img .bg {transform: scale(1.1)}
.price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-wrap .percent {
  background: #596252;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 2px 6px;
  display: inline-block;
}
.price-wrap .price {
  font-size: 20px;
  font-weight: bold;
}
.price-wrap .discount {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through;
}
.price-wrap + .note {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
}
.form-wrap .form-group {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 0 30px;
}
.form-wrap .half-group {flex: 1;}
.form-wrap .form-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  width: 100%;
}
.form-wrap .form-label span {
  color: #596252;
  margin-left: 4px;
  display: inline-block;
}
.form-wrap .form-input {
  border: none;
  border-bottom: 1px solid rgba(34,34,34,0.4);
  padding-bottom: 15px;
  font-size: 16px;
  background: none;
  width: 100%;
}
.form-wrap .form-input::placeholder {color: rgba(34,34,34,0.4);}
.form-wrap .form-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(34,34,34,0.4) !important;
}
.form-wrap select.form-input {
  -webkit-appearance:none; /* for chrome */
  -moz-appearance:none; /*for firefox*/
  appearance:none;
  background-image: url("/img/assets/arrow_select.svg");
  background-repeat: no-repeat;
  background-position: top 5px right;
  background-size: 12px 6px;
}
.form-wrap textarea.form-input {
  border: 1px solid rgba(34,34,34,0.4) !important;
  padding: 15px;
  height: 200px;
  resize: none;
}
.form-wrap textarea.form-input:focus {border: 1px solid rgba(34,34,34,0.4) !important;}
.form-wrap .file-group {width: 100%;}
.form-wrap .file-inner {
  display: flex;
  gap: 5px;
}
.form-wrap .file-name-area {
  background: #ebe6e1;
  height: 46px;
  flex: 1;
  padding: 0 15px;
  font-size: 16px;
  color: #666;
  line-height: 46px;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.form-wrap .file-btn-area {width: 100px;}
.form-wrap .file-btn {
  border: 1px solid #596252;
  font-size: 14px;
  font-weight: 600;
  background: none;
  color: #596252;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  cursor: pointer;
}
.form-wrap .file-btn.disabled {
  color: #aaa;
  border-color: #ddd;
  cursor: default;
}
.form-wrap .submitted-check {
  width: 100%;
  margin-top: 15px;
}
.form-wrap .submitted-check label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form-wrap .submitted-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.form-wrap .submitted-check .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ebe6e1;
  position: relative;
  flex-shrink: 0;
}
.form-wrap .submitted-check .check::after {
  content: "";
  display: none;
  width: 11px;
  aspect-ratio: 13 / 9;
  background: url("/img/assets/check.svg") center / contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-wrap .submitted-check .txt {
  margin-left: 10px;
  font-size: 15px;
}
.form-wrap .submitted-check input:checked + .check {background: #596252;}
.form-wrap .submitted-check input:checked + .check::after {display: block;}
.form-wrap .frm_file {display: none;}
.form-wrap .input-group {width: 100%;}
.form-wrap .input-group .form-input {padding: 13px 0;}
.form-wrap .input-group .zip-wrap {
  display: flex;
  align-items: end;
  gap: 10px;
}
.form-wrap .input-group .zip-wrap .form-input {flex: 1;}
.form-wrap .input-group .zip-wrap .btn_frmline {
  border: 1px solid #596252;
  font-size: 14px;
  font-weight: 600;
  background: none;
  color: #596252;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  cursor: pointer;
}
.form-wrap .btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.form-wrap .agree-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-wrap .agree-group > label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-wrap .agree-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.form-wrap .agree-group .check {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  background: #ebe6e1;
  position: relative;
  display: inline-block;
}
.form-wrap .agree-group .check::after {
  content: none;
  background: url(/img/assets/check.svg) center / cover no-repeat;
  display: block;
  width: 13px;
  aspect-ratio: 13 / 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.form-wrap .agree-group .txt {
  font-size: 16px;
  margin-left: 10px;
}
.form-wrap .agree-group .modal-btn {
  font-size: 16px;
  font-weight: bold;
  color: #596252;
  cursor: pointer;
  margin-left: 4px;
}
.form-wrap .agree-group > label:has(input:checked) .check {background: #596252;}
.form-wrap .agree-group > label:has(input:checked) .check::after {content: ""}
.form-wrap .write-btn {
  width: 140px;
  height: 50px;
  background: #596252;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border: none;
}
.form-wrap .note {
  margin-top: 15px;
  color: #666;
}
@media all and (max-width: 1024px) {
  .item-list li {width: calc((100% - 20px) / 3);}
}
@media all and (max-width: 767px) {
  .desc {
    font-size: 15px;
    line-height: 1.5;
  }
  .swiper-pagination {bottom: 25px !important;}
  .item-list {gap: 30px 10px;}
  .item-list li {width: calc((100% - 10px) / 2);}
  .item-list li .txt {padding-top: 15px;}
  .item-list li .txt .subject {font-size: 15px;}
  .item-list li .txt .desc {
    font-size: 12px;
    margin: 5px 0 12px;
  }
  .price-wrap {display: block;}
  .price-wrap .percent {
    font-size: 12px;
    padding: 1px 4px;
    display: block;
    width: fit-content;
    margin-bottom: 3px;
  }
  .price-wrap .price {
    font-size: 15px;
  }
  .price-wrap .discount {font-size: 12px;}
  .price-wrap + .note {margin-top: 5px;}
  .more-btn {
    width: 160px;
    height: 40px;
    padding: 0 15px !important;
  }
  .more-btn span {font-size: 13px;}
  .form-wrap .form-group {
    margin-bottom: 25px;
    gap: 0;
  }
  .form-wrap .half-group {
    flex: none;
    width: 100%;
    margin-bottom: 25px;
  }
  .form-wrap .half-group:last-child {margin-bottom: 0;}
  .form-wrap .form-label {font-size: 14px;}
  .form-wrap .form-input {padding-bottom: 10px;}
  .form-wrap .file-name-area {
    height: 40px;
    padding: 0 12px;
  }
  .form-wrap .file-btn {height: 40px;}
  .form-wrap .input-group .form-input {padding: 12px 0 10px;}
  .form-wrap .input-group .zip-wrap .btn_frmline {height: 40px;}
  .form-wrap .submitted-check .check,
  .form-wrap .agree-group .check {
    width: 20px;
    height: 20px;
  }
  .form-wrap .agree-group .txt,
  .form-wrap .agree-group .modal-btn {font-size: 14px;}
  .form-wrap .write-btn {
    width: 100%;
    height: 46px;
    margin-top: 30px;
  }
}

/*main*/
.main section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
}
.main .container {max-width: 1600px;}
.main .title {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 20px;
}
.main .title h2 {
  font-family: "BaskervilleOld", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
}
.main .hero {
  aspect-ratio: 1905 / 920;
  padding: 0;
}
.main .hero .hero-slider,
.main .hero .hero-slider .swiper-wrapper,
.main .hero .hero-slider .swiper-slide {height: 100%;}
.main .hero a {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main .hero a.hidden-m {display: block;}
.main .line {
  background: url(/img/assets/main_line_bg.jpg) center / cover no-repeat;
  background-attachment: fixed;
  padding: 50px 0;
  text-align: center;
  color: #f7f3ee;
}
.main .line h4 {
  font-family: "BaskervilleOld", serif;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 15px;
}
.main .about {padding: 0;}
.main .about .txt {
  border-top: 1px solid #596252;
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
}
.main .about .txt .title {
  display: block;
  margin: 0;
  width: 42%;
}
.main .about .txt .title h2 {
  font-size: 100px;
  color: #596252;
  margin-bottom: 70px;
}
.main .about .txt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  width: 58%;
}
.main .about .txt ul li {
  color: #596252;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 0 40px;
}
.main .about .txt ul li:first-child {padding-left: 0;}
.main .about .txt ul li:last-child {
  padding-right: 0;
  border-right: none;
}
.main .about .txt ul li .ico {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.main .about .video {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.main .about .video video {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.main .b2b {background: #e3e4e0;}
.main .b2b .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main .b2b .txt {
  width: 37.5%;
  padding-right: 50px;
}
.main .b2b .txt .title {display: block;}
.main .b2b .txt .title h2 {margin-bottom: 40px;}
.main .b2b .img {
  width: 62.5%;
  position: relative;
}
.main .b2b .img ul {
  display: flex;
  gap: 10px;
}
.main .b2b .img ul li {flex: 1;}
.main .b2b .img .logotype {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
  z-index: 1;
  width: 100%;
}
.main .pick {padding: 0;}
.main .pick a {
  display: flex;
  flex-wrap: wrap;
}
.main .pick a > div {width: 50%;}
.main .pick .img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  z-index: 1;
}
.main .pick .img .bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  transition: all .2s;
}
.main .pick .img:hover .bg {transform: scale(1.1)}
.main .pick .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  text-align: center;
  position: relative;
}
.main .pick .txt .inner {margin-top: 50px;}
.main .pick .txt .subject {
  font-size: 50px;
  font-weight: 600;
  color: #596252;
  line-height: 1.2;
  width: 60%;
  margin: 0 auto;
}
.main .pick .txt .desc {
  font-size: 18px;
  color: #666;
  margin: 15px 0 40px;
}
.main .pick .txt .price-wrap {
  justify-content: center;
  gap: 15px;
}
.main .pick .txt .price-wrap .percent,
.main .pick .txt .price-wrap .discount {font-size: 24px;}
.main .pick .txt .price-wrap .percent {
  padding: 2px 10px;
  border-radius: 5px;
}
.main .pick .txt .price-wrap .price {font-size: 30px;}
.main .pick .txt .more-btn {margin: 80px auto 0;}
.main .pick .txt .deco-wrap .deco-1 {
  position: absolute;
  top: 50px;
  left: -15px;
}
.main .pick .txt .deco-wrap .deco-2 {
  position: absolute;
  bottom: 30px;
  right: -10px;
}
.main .news .news-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -40px;
}
.main .news .news-list li {
  width: 33.33%;
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 0 40px;
}
.main .news .news-list li:last-child {border-right: none;}
.main .news .news-list li a {display: block;}
.main .news .news-list li .img {
  aspect-ratio: 480 / 340;
  overflow: hidden;
  position: relative;
}
.main .news .news-list li .img .bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: all .2s;
}
.main .news .news-list li:hover .img .bg {transform: scale(1.1)}
.main .news .news-list li .txt {padding-top: 20px;}
.main .news .news-list li .txt .subject {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.main .news .news-list li .txt .date {
  font-size: 14px;
  color: #666;
}
.main .news .more-btn {margin: 60px auto 0;}
@media all and (max-width: 1600px) {
  .main .container {padding: 0 80px;}
  .main .about .txt .title {width: 50%;}
  .main .about .txt .title h2 {font-size: 80px;}
  .main .about .txt ul {width: 50%;}
  .main .about .txt ul li {padding: 0 30px;}
}
@media all and (max-width: 1440px) {
  .main .about .txt .title {width: 68%;}
  .main .about .txt ul {width: 32%;}
  .main .about .txt ul li {
    width: 50%;
    padding: 20px !important;
  }
  .main .about .txt ul li:nth-child(2n) {border-right: none;}
  .main .about .txt ul li:nth-child(1),
  .main .about .txt ul li:nth-child(2) {border-bottom: 1px solid rgba(0,0,0,0.1)}
  .main .pick .txt .subject {width: 80%;}
  .main .pick .txt .deco-wrap {opacity: 0.5;}
}
@media all and (max-width: 1024px) {
  .main .container {padding: 0 40px;}
  .main .about .txt .title {
    width: 100%;
    margin-bottom: 80px;
  }
  .main .about .txt ul {width: 100%;}
  .main .about .txt ul li {
    width: 25%;
    border-right: 1px solid rgba(0,0,0,0.1) !important;
    border-bottom: none !important;
  }
  .main .about .txt ul li:last-child {border-right: none !important;}
  .main .b2b .txt {
    width: 100%;
    padding: 0 0 80px;
  }
  .main .b2b .img {width: 100%;}
  .main .pick .txt .subject {
    width: 100%;
    font-size: 36px;
  }
  .main .pick .txt .more-btn {margin-top: 50px;}
  .main .pick .txt .deco-wrap .deco-1 img {width: 130px;}
  .main .pick .txt .deco-wrap .deco-2 img {width: 160px;}
}
@media all and (max-width: 991px) {
  .main .pick a > div {width: 100%;}
  .main .news .news-list {margin: 0 -25px;}
  .main .news .news-list li {padding: 0 25px;}
}
@media all and (max-width: 767px) {
  .main section {padding: 50px 0;}
  .main .container {padding: 0 16px;}
  .main .title {
    gap: 15px;
    margin-bottom: 30px;
  }
  .main .title h2 {font-size: 28px;}
  .main .hero {aspect-ratio: 767 / 900;}
  .main .hero a.hidden-m {display: none;}
  .main .hero a.visible-m {display: block;}
  .main .line {padding: 25px 0;}
  .main .line h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .main .about .txt {padding: 50px 0;}
  .main .about .txt .title {margin-bottom: 30px;}
  .main .about .txt .title h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .main .about .txt ul li {
    width: 50%;
    padding: 15px !important;
  }
  .main .about .txt ul li:nth-child(2n) {border-right: none !important;}
  .main .about .txt ul li:nth-child(1),
  .main .about .txt ul li:nth-child(2) {border-bottom: 1px solid rgba(0,0,0,0.1) !important;}
  .main .about .txt ul li .ico {
    height: 50px;
    margin-bottom: 12px;
  }
  .main .about .txt ul li .ico img {
    max-width: 50px;
    max-height: 50px;
  }
  .main .about .video {height: 250px;}
  .main .about .video video {
    width: auto;
    height: 100%;
  }
  .main .b2b .txt {padding-bottom: 40px;}
  .main .b2b .txt .title h2 {margin-bottom: 15px;}
  .main .b2b .img ul {gap: 4px;}
  .main .pick .txt {
    padding: 30px;
    display: block;
  }
  .main .pick .txt .inner {margin: 0;}
  .main .pick .txt .subject {font-size: 24px;}
  .main .pick .txt .desc {
    font-size: 16px;
    margin: 10px 0 20px;
  }
  .main .pick .txt .price-wrap .percent, .main .pick .txt .price-wrap .discount {font-size: 16px;}
  .main .pick .txt .price-wrap .percent {margin: 0 auto 3px;}
  .main .pick .txt .price-wrap .price {font-size: 20px;}
  .main .pick .txt .more-btn {margin-top: 25px;}
  .main .pick .txt .deco-wrap .deco-1 {top: 10px;}
  .main .pick .txt .deco-wrap .deco-1 img {width: 80px;}
  .main .pick .txt .deco-wrap .deco-2 {bottom: 0;}
  .main .pick .txt .deco-wrap .deco-2 img {width: 100px;}
  .main .news .news-list {margin: 0;}
  .main .news .news-list li {
    width: 100%;
    border-right: none;
    padding: 0;
    margin-bottom: 30px;
  }
  .main .news .news-list li:last-child {margin-bottom: 0;}
  .main .news .news-list li .txt {padding-top: 15px;}
  .main .news .news-list li .txt .subject {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .main .news .news-list li .txt .date {font-size: 12px;}
  .main .news .more-btn {margin-top: 30px;}
}

/*공통*/
.sub section {position: relative;}
.sub .table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  border-top: 2px solid #222;
}
.sub .table-wrap th,
.sub .table-wrap td {
  padding: 30px;
  text-align: left;
  border-bottom: 1px solid rgba(34,34,34,0.1);
}
.sub .table-wrap th {
  background: #ebe6e2;
  font-weight: 500;
  width: 18%;
}
@media all and (max-width: 991px) {
  .sub .table-wrap th {width: 28%;}
}
@media all and (max-width: 767px) {
  .sub .table-wrap table {font-size: 15px;}
  .sub .table-wrap th,
  .sub .table-wrap td {padding: 15px;}
  .sub .table-wrap th {width: 100px;}
}

/*회사소개*/
.sub-company .hero {
  background: url(/img/assets/company_hero_bg.jpg) center / cover no-repeat;
  background-attachment: fixed;
  height: calc(100dvh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.sub-company .hero h2 {
  font-family: "BaskervilleOld", serif;
  font-size: 50px;
  margin-bottom: 25px;
  font-weight: normal;
}
.sub-company .hero p {font-size: 24px;}
.sub-company .value .top {
  padding: 120px 0;
  text-align: center;
}
.sub-company .value .top .logo {width: 142px;}
.sub-company .value .top .graphic {
  position: relative;
  margin: 50px 0 80px;
}
.sub-company .value .top .graphic img {
  position: relative;
  z-index: 1;
}
.sub-company .value .top .graphic::after {
  content: "";
  background: #596252;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}
.sub-company .value .top p {
  font-size: 24px;
  color: #596252;
  font-weight: 300;
}
.sub-company .value .bottom {
  display: flex;
  flex-wrap: wrap;
  padding: 0 50px 50px;
}
.sub-company .value .bottom li {
  width: 50%;
  aspect-ratio: 910 / 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sub-company .value .bottom li .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all .5s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sub-company .value .bottom li .txt {
  position: relative;
  z-index: 1;
}
.sub-company .value .bottom li .txt h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.sub-company .value .bottom li .txt p {
  font-size: 16px;
  line-height: 1.6;
}
.sub-company .value .bottom li:hover .bg {transform: scale(1.1)}
@media all and (max-width: 991px) {
  .sub-company .value .bottom li {width: 100%;}
}
@media all and (max-width: 767px) {
  .sub-company .hero {height: calc(100dvh - 50px);}
  .sub-company .hero h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .sub-company .hero p {font-size: 16px;}
  .sub-company .value .top {padding: 100px 0 80px;}
  .sub-company .value .top .logo {width: 120px;}
  .sub-company .value .top .graphic {margin: 40px 0 50px;}
  .sub-company .value .top .graphic img {max-width: 80%;}
  .sub-company .value .top p {font-size: 16px;}
  .sub-company .value .bottom {padding: 0 16px 16px;}
  .sub-company .value .bottom li {
    aspect-ratio: 910 / 700;
    padding: 30px;
  }
  .sub-company .value .bottom li .txt h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .sub-company .value .bottom li .txt p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/*배송/반품안내*/
.sub-shipping {
  max-width: 1200px;
  margin: 0 auto;
}
.sub-shipping ul li {margin-bottom: 50px;}
.sub-shipping ul li:last-child {margin-bottom: 0;}
.sub-shipping h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .sub-shipping ul li {margin-bottom: 30px;}
  .sub-shipping h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/*B2B*/
.sub-b2b .solution {padding: 100px 0 80px;}
.sub-b2b .solution::before {
  content: "";
  background: url(/img/assets/b2b_solution_bg.jpg) center / cover no-repeat;
  width: calc(100% - 100px);
  height: 450px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sub-b2b .solution .container {max-width: 1600px;}
.sub-b2b .solution .title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}
.sub-b2b .solution .title h2 {
  font-family: "BaskervilleOld", serif;
  margin-bottom: 5px;
  font-size: 36px;
  font-weight: normal;
}
.sub-b2b .solution ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sub-b2b .solution ul li {
  width: calc((100% - 40px)/5);
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.sub-b2b .solution ul li .ico {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: rgba(89,98,82,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.sub-b2b .solution ul li h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
  color: #596252;
}
.sub-b2b .value ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-b2b .value ul li {
  width: 25%;
  border-right: 1px solid rgba(89,98,82,0.2);
  padding: 20px 50px;
}
.sub-b2b .value ul li:last-child {border-right: none;}
.sub-b2b .value ul li .ico {
  border: 1px solid #596252;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-b2b .value ul li h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #596252;
}
.sub-b2b .inquiry {padding-top: 120px;}
.sub-b2b .inquiry .container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
.sub-b2b .inquiry .img {
  width: calc((100% - 100px)/2);
  padding: 80px 60px;
  background: url(/img/assets/b2b_inquiry_img.jpg) center / cover no-repeat;
}
.sub-b2b .inquiry .img .title {color: #fff;}
.sub-b2b .inquiry .img .title h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.sub-b2b .inquiry .form-wrap {width: calc((100% - 100px)/2);}
@media all and (max-width: 1600px) {
  .solution .container {padding: 0 80px;}
}
@media all and (max-width: 1400px) {
  .sub-b2b .solution ul {justify-content: center;}
  .sub-b2b .solution ul li {width: calc((100% - 20px) / 3);}
  .sub-b2b .value ul li {padding: 20px 30px;}
}
@media all and (max-width: 1024px) {
  .sub-b2b .solution::before {width: 100%;}
  .solution .container {padding: 0 40px;}
  .sub-b2b .value ul li {
    width: 50%;
    padding: 30px;
  }
  .sub-b2b .value ul li:nth-child(2n) {border-right: none;}
  .sub-b2b .value ul li:nth-child(1),
  .sub-b2b .value ul li:nth-child(2) {
    border-bottom: 1px solid rgba(89,98,82,0.2);
  }
  .sub-b2b .inquiry .container {gap: 80px;}
  .sub-b2b .inquiry .img,
  .sub-b2b .inquiry .form-wrap {width: 100%;}
  .sub-b2b .inquiry .img {height: 350px;}
}
@media all and (max-width: 767px) {
  .sub-b2b .solution {padding: 60px 0 50px;}
  .sub-b2b .solution .container {padding: 0 16px;}
  .sub-b2b .solution .title {margin-bottom: 25px;}
  .sub-b2b .solution .title h2 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .sub-b2b .solution ul li {
    width: 100%;
    padding: 30px 15px;
  }
  .sub-b2b .solution ul li .ico {
    width: 70px;
    height: 70px;
  }
  .sub-b2b .solution ul li .ico img {
    max-width: 40px;
    max-height: 40px;
  }
  .sub-b2b .solution ul li h3 {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  .sub-b2b .value ul li {padding: 20px;}
  .sub-b2b .value ul li:nth-child(1),
  .sub-b2b .value ul li:nth-child(3) {padding-left: 0;}
  .sub-b2b .value ul li:nth-child(2),
  .sub-b2b .value ul li:nth-child(4) {padding-right: 0;}
  .sub-b2b .value ul li .ico {
    width: 60px;
    height: 60px;
  }
  .sub-b2b .value ul li .ico img {
    max-width: 30px;
    max-height: 30px;
  }
  .sub-b2b .value ul li h3 {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  .sub-b2b .inquiry .container {gap: 30px;}
  .sub-b2b .inquiry {padding-top: 50px;}
  .sub-b2b .inquiry .img {
    height: 180px;
    padding: 25px;
  }
  .sub-b2b .inquiry .img .title h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

/*사업자 전환 신청*/
.sub-business .form-wrap {
  max-width: 600px;
  background: #fff;
  padding: 50px;
  margin: 0 auto;
}
.sub-business .btn-group {justify-content: center;}
.business-modal .modal-dialog {max-width: 400px;}
.business-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
.business-modal .modal-body {
  text-align: center;
  padding-top: 60px;
}
.business-modal .modal-body p {font-size: 20px;}
.business-modal .modal-body p span {
  font-size: 15px;
  color: #666;
  display: block;
  line-height: 1.4;
  margin-top: 15px;
}
.business-modal .modal-body .more-btn {
  justify-content: center;
  margin: 30px auto 0;
}
@media all and (max-width: 767px) {
  .sub-business .form-wrap {padding: 25px;}
  .business-modal .modal-body {padding: 40px 15px 25px;}
  .business-modal .modal-body p {font-size: 15px;}
  .business-modal .modal-body .more-btn {margin-top: 15px;}
}