@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

/* 공통요소 */
a:hover {
  color: inherit;
  text-decoration: none;
}
.vh_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.en_font {
  font-family: "Poppins", sans-serif;
}
.mar_t_100 {
  margin-top: 100px;
}
.mar_b_100 {
  margin-bottom: 100px;
}
.mar_t_50 {
  margin-top: 50px;
}
.mar_b_50 {
  margin-bottom: 50px;
}

/* 헤더 */
header .top_menu {
  border-bottom: 1px solid #ddd;
}
header .top_menu a {
  line-height: 50px;
  font-size: 16px;
}
header .top_menu a img {
  vertical-align: sub;
}
header .top_menu .member li {
  color: #999;
  margin-left: 30px;
}

header .gnb_menu {
  height: 150px;
}
header .gnb_menu a {
  margin-top: 61px;
}
header .gnb_menu ul {
  margin-top: 64px;
}
header .gnb_menu li {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  margin: 0 50px;
  padding-bottom: 10px;
  position: relative;
}
header .gnb_menu li:hover {
  border-bottom: 2px solid #0b3da9;
}
header .gnb_menu .gnb_sub {
  display: none;
  margin-top: 0;
}
header .gnb_menu .gnb_sub.open_menu {
  display: block;
  position: absolute;
  width: 500px;
  text-align: center;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 50px;
}
header .gnb_menu .gnb_sub li {
  font-size: 16px;
  color: #666;
  font-weight: normal;
  display: inline-block;
  padding-bottom: 0;
  border: none;
  margin: 0 20px;
}

/* 푸터 */
footer {
  padding: 50px 0;
  background: #303030;
}
footer .info {
  padding-bottom: 50px;
  border-bottom: 1px solid #404040;
}
footer .info p {
  margin-left: 50px;
  color: #ccc;
  line-height: 30px;
  font-size: 16px;
}
footer .copy {
  margin-top: 30px;
}
footer .copy ul li {
  display: inline-block;
  color: white;
  margin-right: 40px;
  font-size: 16px;
}
footer .copy p {
  color: #626262;
  font-size: 16px;
}

/* 메인 슬라이드 */
.main_slide .swiper-pagination-bullets {
  bottom: 20px !important;
}
.main_slide .swiper-pagination-bullet {
  width: 45px;
  height: 3px;
  border-radius: 0;
}
.main_slide .swiper-pagination-bullet-active {
  background: white;
}

/* 상품 리스트 */
.new_product h2 {
  font-size: 30px;
  color: #0b3da9;
  text-align: center;
}
.product_list {
  overflow: hidden;
}
.product_list .item {
  float: left;
  width: 24%;
  margin: 0.5%;
  border: 1px solid #ddd;
}
.product_list .item .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.product_list .item .img img {
  width: 100%;
}
.product_list .item .info {
  padding: 20px;
  text-align: center;
}
.product_list .item .info .name {
  font-size: 20px;
  font-weight: bold;
}
.product_list .item .info .option_1 {
  margin: 20px 0;
  height: 25px;
  padding: 5px 20px;
  border-radius: 25px;
  background: #333;
  display: inline-block;
}
.product_list .item .info .option_1 .shoes {
  font-size: 14px;
  color: white;
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid white;
  line-height: 14px;
  display: inline-block;
}
.product_list .item .info .option_1 .sex {
  font-size: 14px;
  color: white;
  line-height: 14px;
  display: inline-block;
}
.product_list .item .info .option_2 {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.product_list .item .info .buy_btn {
  font-size: 16px;
  color: #082682;
  border: 1px solid #082682;
  display: block;
  width: 100%;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: 20px;
}
.product_list .item .info .delivery {
  width: 100%;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: 20px;
  font-size: 16px;
  color: white;
}
.product_list .item .info .delivery.step_0 {
  background: #999;
}
.product_list .item .info .delivery.step_1 {
  background: #cb3131;
}
.product_list .item .info .delivery.step_2 {
  background: #333;
}
.product_list .item .info .go_detail {
  font-size: 16px;
  color: #333;
  border: 1px solid #333;
  display: block;
  width: 100%;
  line-height: 40px;
  margin-top: 10px;
}

.category li {
  font-size: 20px;
  color: #999;
  margin-right: 30px;
  float: left;
  font-weight: bold;
}
.category li:hover {
  color: #333;
}
.category li.on {
  color: #333;
}

#hd_sch {
}
#hd_sch form {
  width: 400px;
  display: block;
  overflow: hidden;
  margin: 0 auto;
}
#hd_sch #sch_stx {
  width: 340px;
  background: white;
  border: 1px solid #ddd;
  border-right: 0;
  font-size: 16px;
  padding: 0 20px;
  color: #333;
  height: 50px;
}
#hd_sch #sch_submit {
  background: white;
  border: 1px solid #ddd;
  border-left: 0;
  height: 50px;
}

.paging {
  text-align: center;
}
.paging li {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 16px;
  color: #999;
}
.paging li.current {
  border: 1px solid #333;
  color: #333;
  font-weight: bold;
  margin: 0 5px;
}

/* 상품 상세 */

.top_info .img {
  overflow: hidden;
  float: left;
  width: 500px;
  height: 500px;
  border: 1px solid #ddd;
}
.top_info .img {
  display: flex;
  align-items: center;
  padding: 20px;
}
.top_info .detail {
  float: right;
  width: 600px;
}
.top_info .detail .title {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 30px 0;
}
.top_info .detail .title .name {
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 20px;
}
.top_info .detail .title .summary {
  font-size: 20px;
  line-height: 28px;
}
.top_info .detail .detail_info {
  width: 100%;
  margin: 50px 0;
}
.top_info .detail .detail_info tr th {
  height: 35px;
  vertical-align: middle;
  font-size: 16px;
  color: #999;
  width: 150px;
}
.top_info .detail .detail_info tr td {
  height: 35px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.top_info .detail .buy_btn_2 {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  background: #08257e;
  display: block;
}
.top_info .detail .delivery {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  display: block;
}
.top_info .detail .delivery.step_0 {
  background: #999;
}
.top_info .detail .delivery.step_1 {
  background: #cb3131;
}
.top_info .detail .delivery.step_2 {
  background: #333;
}

.part_info_wrap .info_menu {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ddd;
}
.part_info_wrap .info_menu li {
  width: 50%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #333;
  font-size: 18px;
  float: left;
}
.part_info_wrap .info_menu li.on {
  background: #333;
  color: white;
}
.part_info_wrap .info_menu li a {
  display: block;
}
.part_info_wrap .part_info {
  background: #f9f9f9;
  padding: 50px;
  margin-bottom: 20px;
}
.part_info_wrap .part_info:last-child {
  margin-bottom: 100px;
}
.part_info_wrap .part_info h3 {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #999;
  margin-bottom: 20px;
}
.part_info_wrap .part_info ul {
  overflow: hidden;
}
.part_info_wrap .part_info ul li {
  float: left;
  margin-right: 50px;
}
.part_info_wrap .part_info ul li h4 {
  font-size: 16px;
  color: #999;
  font-weight: bold;
  margin-bottom: 10px;
}
.part_info_wrap .part_info ul li p {
  font-size: 20px;
  line-height: 30px;
}
.part_info_wrap .part_info ul li p .color_chip {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 9px;
  border: 1px solid #ddd;
  background: transparent;
  margin-left: 5px;
}

/* 상품 커스텀 */
.custom_wrap {
  background: #ecf4ff;
  padding: 0 2%;
}
.custom_wrap h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  padding: 100px 0;
}
.custom_wrap .custom_box {
  background: white;
  padding: 50px;
  margin-bottom: 20px;
}
.custom_wrap .custom_box:last-child {
  margin-bottom: 0;
}
.custom_wrap .custom_box h3 {
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #999;
  text-align: left;
}

.custom_wrap .custom_box .size_select {
  width: 400px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 16px;
  background: url("/images/select.png") 95% center no-repeat;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.custom_wrap .custom_box p.info {
  font-size: 16px;
  font-weight: bold;
  color: #999;
  margin-bottom: 15px;
}
.custom_wrap .custom_box .size_result {
  font-size: 16px;
}

.custom_wrap .custom_box .color_choice li {
  width: 12%;
  margin-right: 0.5%;
  float: left;
  text-align: center;
}
.custom_wrap .custom_box .color_choice li:last-child {
  margin-right: 0;
}
.custom_wrap .custom_box .color_choice li h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
/* .custom_wrap .custom_box .color_choice li h4 {font-size: 18px; font-weight: bold; margin-bottom: 10px;} */
.custom_wrap .custom_box .color_choice li .color_wrap {
  border: 1px solid #ddd;
  padding: 10px;
}
.custom_wrap .custom_box .color_choice li .color_wrap .color {
  height: 50px;
  border: 1px solid #ddd;
}
.custom_wrap .custom_box .color_choice li .color_wrap p {
  font-size: 16px;
  margin: 15px 0 0;
  line-height: 16px;
}
.custom_wrap .custom_box .color_choice li .color_wrap input[type="button"] {
  width: 70px;
  height: 25px;
  line-height: 25px;
  color: white;
  font-size: 14px;
  border-radius: 3px;
  background: #333;
  display: block;
  margin: 15px auto 0;
}

.custom_wrap .custom_box .custom_half {
  width: 50%;
  padding-right: 25px;
}
.custom_wrap .custom_box .custom_half table {
  width: 100%;
  border: 1px solid #ddd;
}
.custom_wrap .custom_box .custom_half table tr {
  border-bottom: 1px solid #ddd;
}
.custom_wrap .custom_box .custom_half table th {
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  background: #f9f9f9;
  border-right: 1px solid #ddd;
  vertical-align: middle;
}
.custom_wrap .custom_box .custom_half table tr th:first-child {
  width: 120px;
}
.custom_wrap .custom_box .custom_half table td {
  height: 50px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-right: 1px solid #ddd;
}
.custom_wrap .custom_box .custom_half table td.radio_button {
  text-align: left;
  padding: 0 20px;
  font-weight: normal;
}
.custom_wrap .custom_box .custom_half table td.radio_button label {
  margin-right: 20px;
}
.custom_wrap .custom_box .custom_half table td.radio_button label input {
  margin-right: 5px;
}

.custom_wrap .custom_box .custom_half.sole_custom {
  width: 50%;
  padding-left: 25px;
}

.custom_wrap .custom_box .custom_33 {
  width: 33.333%;
  padding: 0 25px;
}
.custom_wrap .custom_box .custom_33:nth-child(2) {
}
.custom_wrap .custom_box .custom_33 p {
  font-size: 16px;
  font-weight: bold;
  color: #999;
  margin-bottom: 15px;
}
.custom_wrap .custom_box .custom_33 p.result {
  font-size: 16px;
  color: #333;
  font-weight: normal;
}
.custom_wrap .custom_box .custom_33 select {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 16px;
  background: url("/images/select.png") 95% center no-repeat;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.custom_wrap .custom_box .custom_33 input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 16px;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
}

.custom_wrap .btn_wrap {
  overflow: hidden;
  padding: 80px 0 100px;
}
.custom_wrap .btn_wrap li.btn_order_1 {
  float: left;
  width: 49%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  background: #08257e;
  margin-right: 2%;
  border-radius: 3px;
}
.custom_wrap .btn_wrap li.btn_order_2 {
  float: left;
  width: 49%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  background: #999;
  border-radius: 3px;
}
.custom_wrap .btn_wrap li.btn_order_3 {
  float: left;
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  background: #333;
  border-radius: 3px;
}
.custom_wrap .btn_wrap li.btn_order_1 a,
.custom_wrap .btn_wrap li.btn_order_2 a,
.custom_wrap .btn_wrap li.btn_order_3 a {
  display: block;
}
