@import url("scoredream.css");
@import url("../vendor/slick/slick.css");
@import url("../vendor/slick/slick-theme.css");
@charset "UTF-8";

/* product_list */
#product_list {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15px 130px 15px;
}

.pd-box {
	flex-basis: 100%;
}

.pd-box.col-1 {
	flex-basis: calc(50% - 10px);
}

.pd-box.col-1.left {
	margin-right: 10px;
}

.pd-box.col-1.right {
	margin-left: 10px;
}

.pd-box .inner-list {
	display: flex;
}

.pd-box .col-entire {
	flex-basis: 100%;
}

.pd-box .col-half {
	flex-basis: 50%;
	display: flex;
	flex-wrap: wrap;
}

.pd-box > .title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin: 60px auto 50px auto;
}

.pd-box > .title > p {
	position: relative;
	padding-bottom: 20px;
	font: 500 32px/1.4 'noto';
	color: #1c1c1c;
}

.pd-box > .title > p::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 31px;
	height: 1px;
	background-color: #1c1c1c;
}

.pd-box > .title > a {
	position: relative;
	padding-right: 16px;
	font: 400 16px/1 'noto';
	color: #1c1c1c;
	cursor: pointer;
}

.pd-box > .title > a::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 8px;
	height: 12px;
	background: transparent url('../img/icons/ico-arrow-right-bl.png') 50% 50%/100% 100% no-repeat;
	transition: all .2s ease-in-out;
}

.pd-box > .title > a:hover::before {
	right: -10px;
}

.pd-box .category-item {
	flex-basis: 100%;
}

.pd-box .category-item .img-area {
	height: auto;
}

.pd-box .category-item .img {
	height: 0;
}

.pd-box .category-item.big .img {
	padding-bottom: 100%;
}

.pd-box .category-item.small .img {
	padding-bottom: 50%;
}

.pd-box .product-item {
	flex-basis: 50%;
	position: relative;
	overflow: hidden;
}

.pd-box .product-item .front {
	position: relative;
	z-index: 1;
}

.pd-box .product-item .front .img-area {
	height: auto;
}

.pd-box .product-item .front .img {
	padding-bottom: 100%;
	height: 0;
}

.pd-box .product-item .back {
	z-index: 5;
	position: absolute;
	left: 0;
	bottom: -100%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	transition-duration: 5s !important;
}

.pd-box .product-item:hover .back {
	display: flex;
	bottom: 0 !important;
}


.pd-box .product-item .back > .inner {
	width: 50%;
	text-align: center;
}

.pd-box .product-item .back > .inner > p {
	font: 500 20px/1.4 'noto';
	color: #fff;
}

.pd-box .product-item .back > .inner > a {
	display: inline-block;
	width: 82px;
	height: 82px;
	margin-top: 25px;
	border: 2px solid #fff;
	border-radius: 100px;
	background: rgba(0, 0, 0, .3) url('../img/icons/ico-search-b-wh.png') 50% 50%/32px 34px no-repeat;
	transform-origin: 50% 50%;
	transform: scale(.85, .85);
	transition: all .5s;
}

.pd-box .product-item .back:hover > .inner > a {
	transform: scale(1, 1);
}

/* // product_list */
/* product_list_sub */
.container.product-sub {
	padding-bottom: 50px;
}

#category_list {
	margin: 40px auto 20px auto;
}

#category_list > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#category_list > ul > li {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    margin: 6px 7px;
    font: 400 18px/1 'noto';
    color: #999;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 25px;
    cursor: pointer;
    transition: 0;
}

#category_list > ul > li.active {
	font-weight: 500;
	color: #fff;
	background-color: #2671f0;
	border: 1px solid #2671f0;
}

#category_list > ul:hover > li.active {
	color: #999;
	background-color: #f9f9f9;
	border: 1px solid #eaeaea;
}

#category_list > ul > li:hover {
	color: #fff !important;
	background-color: #000 !important;
}

#product_list_sub {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 15px;
}

#product_list_sub .rel-item {
	flex-basis: 31.3%;
	margin: 1%;
}
/* // product_list_sub */
/* product_detail */
#product_detail {
	padding: 70px 0 0 0;
}

#product_detail .detail-top {
	display: flex;
}

#product_detail .detail-top > * {
	position: relative;
	flex-basis: 50%;
	max-width: 50%;
}

#product_detail .detail-top .slide {
	position: relative;
	padding: 0 24px;
}

#product_detail .detail-top .slide-top {
	border: 1px solid #dedede;
}

#product_detail .detail-top .slide-top .img-area,
#product_detail .detail-top .slide-bottom .img-area {
	height: auto;
}

#product_detail .detail-top .slide-top .img,
#product_detail .detail-top .slide-bottom .img {
	height: 0;
	padding-bottom: 100%;
}

#product_detail .detail-top .slide-bottom {
	width: calc(100% - 30px);
	margin: 25px 15px;
}

#product_detail .detail-top .slide-bottom .img-area {
	margin: 0 10px;
	border: 1px solid #dedede;
}

#product_detail .detail-top .slide-bottom .slick-arrow {
	z-index: 200;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    height: 26px;
    font-size: 0;
    text-align: center;
    color: #fff;
}

#product_detail .detail-top .slide-bottom .slick-prev {
	left: -13px;
	background: transparent url('../img/icons/ico-slick-left.png') 50% 0% / 12px 52px no-repeat;
}

#product_detail .detail-top .slide-bottom .slick-next {
	right: -13px;
	background: transparent url('../img/icons/ico-slick-right.png') 50% 0% / 12px 52px no-repeat;
}

.slick-prev:hover, 
.slick-next:hover {
	opacity: 1;
}

#product_detail .detail-top .slide-bottom .img-area.slick-current {
	position: relative;
}

#product_detail .detail-top .slide-bottom .img-area.slick-current::before {
	content: '';
	z-index: 10;
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	border: 3px solid #2f7efe;
	background-color: transparent;
}

.slick-slider .slick-track, .slick-slider .slick-list {
	margin: 0 auto;
}

#product_detail .detail-top .detail-data {
	padding: 15px 50px 0 45px;
}

#product_detail .detail-top .detail-data > .title {
	margin-bottom: 15px;
	font: 400 26px/1.4 'noto';
	color: #1c1c1c;
	word-break: break-all;
}

#product_detail .detail-top .detail-data > .price-sale {
	margin-bottom: 10px;
	font: 500 20px/1 'noto';
	color: #1c1c1c;
}

#product_detail .detail-top .detail-data > .price-sale > .price-sale-val {
	margin-left: 12px;
	font: 400 20px/1 'noto';
	color: #666666;
	text-decoration: line-through;
}

#product_detail .detail-top .detail-data > .price-orig {
	margin-bottom: 25px;
	font: 500 30px/1 'noto';
	color: #3280fd;
}

#product_detail .detail-top .detail-data > .spec {
	padding: 15px 0;
	margin-bottom: 15px;
	border-top: 1px solid #cbcbcb;
	border-bottom: 1px solid #cbcbcb;
}

#product_detail .detail-top .detail-data > .spec table th,
#product_detail .detail-top .detail-data > .spec table td {
	padding: 6px 0;
	color: #1c1c1c;
	text-align: left;
	vertical-align: top;
}

#product_detail .detail-top .detail-data > .spec table th {
	width: 95px;
	font: 500 15px/1.4 'noto';
}

#product_detail .detail-top .detail-data > .spec table td {
	font: 400 15px/1.4 'noto';
}

#product_detail .detail-top .detail-data > .spec table td > span {
	color: #f20000;
}

#product_detail .detail-top .detail-data > .sub-title {
	font: 400 15px/1.4 'noto';
	color: #1c1c1c;
}

#product_detail .detail-top .detail-data > .btn-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
}

#product_detail .detail-top .detail-data > .btn-group > .btn {
	flex-basis: calc(50% - 12px);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
}

#product_detail .detail-top .detail-data > .btn-group > .btn.buy  {
	background-color: #2f7efe;
	border: 1px solid #2f7efe;
	font: 500 20px/1 'noto';
	color: #fff;
}

#product_detail .detail-top .detail-data > .btn-group > .btn.inquire {
	background-color: #fff;
	border: 1px solid #1c1c1c;
	font: 400 20px/1 'noto';
	color: #1c1c1c;
}

#product_detail .detail-contents > .title {
	padding: 50px 0 20px 0;
	border-bottom: 2px solid #1c1c1c;
	font: 400 26px/1 'noto';
	color: #1c1c1c;
	text-align: center;
}

#product_detail .detail-contents #editor_wrap {
	overflow: hidden;
}

#product_detail .detail-contents #editor_wrap.active {
	height: auto !important;
	padding-bottom: 50px;
}

#product_detail .detail-contents #editor {
	padding: 50px 170px 0 170px;
	min-height: 30vh;
	word-break: break-all;
}

#product_detail .detail-contents #editor.resize img {
	width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
}

#product_detail .detail-contents > .contents-btn-group {
	display: none;
	align-items: center;
	justify-content: center;
}

#product_detail .detail-contents > .contents-btn-group.active {
	display: flex;
	padding: 50px 0;
}

#product_detail .detail-contents > .contents-btn-group button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 230px;
	height: 56px;
	border: 1px solid #1c1c1c;
	font: 400 20px/1 'noto';
	color: #1c1c1c;
	cursor: pointer;
	transition-duration: .1s;
}

#product_detail .detail-contents > .contents-btn-group button:hover {
	background-color: #2f7efe;
	border: 1px solid #2f7efe;
	color: #fff;
}

#product_detail .detail-contents > .tags-box {
	padding: 0 15px;
}

#product_detail .detail-contents > .tags-box > .title {
	margin: 50px 0 15px 0;
	font: 500 20px/1 'noto';
	color: #1c1c1c;
}

#product_detail .detail-contents > .tags-box .tags {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

#product_detail .detail-contents > .tags-box .tags .tag {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 10px;
	margin-right: 10px;
	border-radius: 20px;
	background-color: #f4f4f4;
	font: 400 12px/1 'noto';
	color: #20c5b0;
}

#product_detail .detail-contents > .tags-box .tags .tag::before {
	content: '\0023';
}

#product_detail .detail-rel-list {
	padding: 120px 15px 50px 15px;
}

#product_detail .detail-rel-list > .title {
	margin-bottom: 30px;
	font: 400 24px/1 'noto';
	color: #1c1c1c;
}

#product_detail #rel_list {
	display: flex;
	justify-content: space-between;
}

#product_detail #rel_list .rel-item {
	flex-basis: 32%;
}

#product_list_sub a,
#product_detail #rel_list a {
	display: inline-block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

#product_list_sub .rel-item,
#product_detail #rel_list .rel-item {
	position: relative;
}

#product_list_sub .rel-item .img-area,
#product_detail #rel_list .rel-item .img-area {
	height: auto;
	border: 1px solid #dedede;
	background-color: #fff;
}

#product_list_sub .rel-item .img,
#product_detail #rel_list .rel-item .img {
	height: 0;
	padding-bottom: 110%;
	background-size: contain;
}

#product_list_sub .rel-item .text-box,
#product_detail #rel_list .rel-item .text-box {
	position: relative;
	padding: 25px;
	text-align: center;
}

#product_list_sub .rel-item .text-box .title,
#product_detail #rel_list .rel-item .text-box .title {
	margin-bottom: 8px;
	font: 500 16px/1.5em 'noto';
	color: #1c1c1c;
	height: auto;
	max-height: 1.5em;
}

#product_list_sub .rel-item .text-box .sub-title,
#product_detail #rel_list .rel-item .text-box .sub-title {
	margin-bottom: 8px;
	font: 400 14px/1.5em 'noto';
	color: #1c1c1c;
	max-height: 3em;
	height: auto;
}

#product_list_sub .rel-item .text-box .tags,
#product_detail #rel_list .rel-item .text-box .tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-height: 36px;
	overflow: hidden;
}

#product_list_sub .rel-item .text-box .tag,
#product_detail #rel_list .rel-item .text-box .tag {
	position: relative;
	margin-right: 4px;
	font: 400 14px/1.2 'noto';
	color: #999;
}

#product_list_sub .rel-item .text-box .tag::before,
#product_detail #rel_list .rel-item .text-box .tag::before {
	content: '\0023';
}
/* // product_detail */
/* 문의하기 모달 */
#dp_modal {
	display: none;
	position: fixed;
	top:0;
    left: 0;
    right: 0;
    bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	z-index: 9000;
}

#dp_modal_wrap {
	position: absolute;
	z-index: 9002;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
	max-width: 750px;
	overflow-y: auto;
	height: 90%;
	max-height: 860px;
	padding: 25px 30px 45px 30px;
	margin: 0 auto;
	background-color: #FFF;
}

.dm-header {
	position: relative;
	padding: 0 0 20px 10px;
	border-bottom: 2px solid #171717;
}

.dm-header > h4 {
	display: inline-block;
	font: 300 24px 'noto';
	color: #171717;
	line-height: 1;
}

.dm-header > #ico_close_dp {
	float: right;
	display: inline-block;
	width: 21px;
	height: 21px;
	background: transparent url('../img/icons/ico-close-bl.png') 50% 50%/100% 100% no-repeat;
	cursor: pointer;
}

.dm-container {
	position: relative;
	width: 100%;
	padding: 30px 10px 5px 10px;
}

.dm-info {
	padding-bottom: 10px;
}

.dm-info .img-area {
	float: left;
	width: 120px;
}

.dm-info .img {
	padding-bottom: 90%;
}

.dm-info .desc {
	float: left;
	width: calc(100% - 120px);
	padding: 20px 0 0 40px;
}

.dm-info .desc .title {
	padding-bottom: 6px;
	font: 400 22px 'noto';
	color: #171717;
	line-height: 1;
}

.dm-info .desc .data {
	font: 400 15px 'noto';
	color: #333;
	line-height: 1.5em;
	word-break: break-all;
}

.dm-form .dm-input {
	display: inline-block;
	position: relative;
	width: 100%;
	margin: 5px 0;
	border: 1px solid #D8D8D8;
}

.dm-form .dm-input input,
.dm-form .dm-input textarea {
	width: 100%;
	padding: 10px 10px 10px 20px;
	font: 400 16px 'noto';
	color: #818181;
}

.dm-form .dm-input textarea {
	height: 140px;
}

.dm-form .dm-input input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #818181;
    opacity: 1;
    /* Firefox */
}

.dm-form .dm-input textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #818181;
    opacity: 1;
    /* Firefox */
}

/* placeholder 벤더 프리픽스 */
.dm-form .dm-input input:-ms-input-placeholder {
    color: #818181;
    font-weight: 400;
    font-family: 'noto';
    font-size: 16px;
}

.dm-form .dm-input input::-webkit-input-placeholder {
    color: #818181;
    font-weight: 400;
    font-family: 'noto';
    font-size: 16px;
}

.dm-form .dm-input input::-moz-placeholder {
    color: #818181;
    font-weight: 400;
    font-family: 'noto';
    font-size: 16px;
}

.dm-form .dm-input textarea:-ms-input-placeholder {
    color: #818181;
    font-weight: 400;
    font-family: 'noto';
    font-size: 16px;
}

.dm-form .dm-input textarea::-webkit-input-placeholder {
    color: #818181;
    font-weight: 400;
    font-family: 'noto';
    font-size: 16px;
}

.dm-form .dm-input textarea::-moz-placeholder {
    color: #818181;
    font-weight: 400;
    font-family: 'noto';
    font-size: 16px;
}

/* 개인정보 수집 */
.dm-agree-info {
	position: relative;
	width: 100%;
	height: 100px;
	padding: 20px;
	margin-top: 5px;
	border: 1px solid #D8D8D8;
	background-color: #F1F1F1;
	overflow-y: auto;
}

.dm-agree-info > p {
	font: 400 16px 'noto';
	color: #818181;
	line-height: 1.4;
}

.dm-agree-info > .ag-dashed {
	position: relative;
	padding-left: 10px;
}

.dm-agree-info > .ag-dashed:before {
	content: '-';
	position: absolute;
	left: 0;
	top: 1px;
}

.dm-agree-box {
    position: relative;
    padding: 15px 0 5px 0;
    text-align: left;
}

.dm-agree {
    padding: 0 10px;
    margin-bottom: 30px;
}

.dm-checkbox-desc {
    position: relative;
    font: 400 15px 'noto';
    color: #333;
    vertical-align: middle;
    cursor: pointer;
}

/* 체크박스 */
input[name="checkbox"] {
    display:none;
}

input[name="checkbox"] + label span {
    display:inline-block;
    width: 21px;
    height: 21px;
    margin: 0px 10px 3px 0;
    vertical-align:middle;
    background:url(../img/icons/ico-checkbox.png) 50% 0/21px 42px no-repeat;
    cursor:pointer;
}

input[name="checkbox"]:checked + label span {
    background:url(../img/icons/ico-checkbox.png) 50% 100%/21px 42px no-repeat;
}

.dm-btn-area {
	position: relative;
	width: 100%;
	text-align: center;
}

#dm_submit {
	padding: 13px 51px;
	border: 1px solid #171717;
	font: 500 16px 'noto';
	color: #333;
}


.no-list {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 80px 15px;
	font: 400 16px/1.4 'noto';
	color: #1c1c1c;
	text-align: center;
}

@media(max-width: 1023px) {
	
	/* product_list */
	#product_list {
		padding: 0 15px 80px 15px;
	}

	.pd-box > .title {
		margin: 40px auto 30px auto;
	}

	.pd-box > .title > p {
		padding-bottom: 15px;
		font: 500 24px/1.4 'noto';
	}

	.pd-box > .title > p::before {
		width: 24px;
	}

	.pd-box > .title > a {
		padding-right: 14px;
		font: 400 14px/1 'noto';
	}

	.pd-box > .title > a::before {
		width: 7px;
		height: 10px;
	}

	.pd-box .product-item .back > .inner {
		width: 85%;
	}

	.pd-box .product-item .back > .inner > p {
		font: 500 16px/1.4 'noto';
	}

	.pd-box .product-item .back > .inner > a {
		width: 45px;
		height: 45px;
		margin-top: 20px;
		background: rgba(0, 0, 0, .3) url('../img/icons/ico-search-b-wh.png') 50% 50%/16px 17px no-repeat;
	}
	/* // product_list */
	/* product_list_sub */
	#category_list {
		margin: 30px auto 20px auto;
		padding: 0 15px;
	}

	#category_list > ul > li {
	    padding: 7px 14px;
	    margin: 5px;
	    font: 400 16px/1 'noto';
	    border-radius: 20px;
	}
	
	.container.product-sub {
	    padding-bottom: 30px;
	}
	/* // product_list_sub */
	/* product_detail */
	#product_detail {
		padding: 50px 0 0 0;
	}

	#product_detail .detail-top .slide {
		padding: 0 15px;
	}

	#product_detail .detail-top .slide-bottom {
		width: calc(100% - 20px);
		margin: 20px 10px;
	}

	#product_detail .detail-top .detail-data {
		padding: 15px 30px 0 30px;
	}

	#product_detail .detail-top .detail-data > .title {
		margin-bottom: 12px;
		font: 400 20px/1.4 'noto';
	}

	#product_detail .detail-top .detail-data > .price-sale {
		font: 500 16px/1 'noto';
	}

	#product_detail .detail-top .detail-data > .price-sale > .price-sale-val {
		margin-left: 10px;
		font: 400 16px/1 'noto';
	}

	#product_detail .detail-top .detail-data > .price-orig {
		margin-bottom: 20px;
		font: 500 22px/1 'noto';
	}

	#product_detail .detail-top .detail-data > .spec {
		padding: 12px 0;
		margin-bottom: 12px;
	}

	#product_detail .detail-top .detail-data > .spec table th,
	#product_detail .detail-top .detail-data > .spec table td {
		padding: 5px 0;
	}

	#product_detail .detail-top .detail-data > .spec table th {
		width: 90px;
		font: 500 13px/1.4 'noto';
	}

	#product_detail .detail-top .detail-data > .spec table td {
		font: 400 13px/1.4 'noto';
	}

	#product_detail .detail-top .detail-data > .sub-title {
		font: 400 13px/1.4 'noto';
	}

	#product_detail .detail-top .detail-data > .btn-group {
		margin-top: 35px;
	}

	#product_detail .detail-top .detail-data > .btn-group > .btn {
		flex-basis: calc(50% - 8px);
		height: 42px;
	}

	#product_detail .detail-top .detail-data > .btn-group > .btn.buy  {
		font: 500 16px/1 'noto';
	}

	#product_detail .detail-top .detail-data > .btn-group > .btn.inquire {
		font: 400 16px/1 'noto';
	}

	#product_detail .detail-contents > .title {
		padding: 35px 0 15px 0;
		font: 400 20px/1 'noto';
	}

	#product_detail .detail-contents #editor_wrap.active {
		padding-bottom: 40px;
	}

	#product_detail .detail-contents #editor {
		padding: 40px 110px 0 110px;
	}

	#product_detail .detail-contents > .contents-btn-group.active {
		padding: 40px 0;
	}

	#product_detail .detail-contents > .contents-btn-group button {
		width: 180px;
		height: 44px;
		font: 400 16px/1 'noto';
	}

	#product_detail .detail-contents > .tags-box {
		padding: 0 15px;
	}

	#product_detail .detail-contents > .tags-box > .title {
		margin: 40px 0 15px 0;
		font: 500 16px/1 'noto';
	}

	#product_detail .detail-contents > .tags-box .tags .tag {
		height: 32px;
		padding: 0 8px;
		margin-right: 8px;
		font: 400 11px/1 'noto';
	}

	#product_detail .detail-rel-list {
		padding: 80px 15px 40px 15px;
	}

	#product_detail .detail-rel-list > .title {
		margin-bottom: 25px;
		font: 400 18px/1 'noto';
	}

	#product_list_sub .rel-item .text-box,
	#product_detail #rel_list .rel-item .text-box {
		padding: 20px;
	}

	#product_list_sub .rel-item .text-box .title,
	#product_detail #rel_list .rel-item .text-box .title {
		margin-bottom: 6px;
		font: 500 14px/1.5em 'noto';
	}

	#product_list_sub .rel-item .text-box .sub-title,
	#product_detail #rel_list .rel-item .text-box .sub-title {
		margin-bottom: 6px;
		font: 400 12px/1.5em 'noto';
	}

	#product_list_sub .rel-item .text-box .tags,
	#product_detail #rel_list .rel-item .text-box .tags {
		max-height: 32px;
	}

	#product_list_sub .rel-item .text-box .tag,
	#product_detail #rel_list .rel-item .text-box .tag {
		font: 400 12px/1.2 'noto';
	}
	/* // product_detail */
	/* 문의하기 모달 */
	#dp_modal_wrap {
		max-width: 100%;
		height: 100%;
		padding: 30px 15px 40px 15px;
		overflow-y: scroll;
	    -ms-overflow-style: none;
	    overflow: -moz-scrollbars-none;
	}

	#dp_modal_wrap::-webkit-scrollbar {
	    display: none;
	}

	.dm-header {
		padding: 0 0 15px 10px;
	}

	.dm-header > h4 {
		font: 300 20px 'noto';
	}

	.dm-header > #ico_close_dp {
		width: 18px;
		height: 18px;
	}

	.dm-container {
		padding: 25px 10px 5px 10px;
	}

	.dm-info {
		padding-bottom: 8px;
	}

	.dm-info .img-area {
		width: 100px;
	}

	.dm-info .desc {
		width: calc(100% - 100px);
		padding: 15px 0 0 30px;
	}

	.dm-info .desc .title {
		padding-bottom: 5px;
		font: 400 18px 'noto';
	}


	.dm-form .dm-input input,
	.dm-form .dm-input textarea {
		padding: 8px 8px 8px 15px;
		font: 400 15px 'noto';
	}

	.dm-form .dm-input textarea {
		height: 120px;
	}

	/* placeholder 벤더 프리픽스 */
	.dm-form .dm-input input:-ms-input-placeholder {
	    font-size: 15px;
	}

	.dm-form .dm-input input::-webkit-input-placeholder {
	    font-size: 15px;
	}

	.dm-form .dm-input input::-moz-placeholder {
	    font-size: 15px;
	}

	.dm-form .dm-input textarea:-ms-input-placeholder {
	    font-size: 15px;
	}

	.dm-form .dm-input textarea::-webkit-input-placeholder {
	    font-size: 15px;
	}

	.dm-form .dm-input textarea::-moz-placeholder {
	    font-size: 15px;
	}

	/* 개인정보 수집 */
	.dm-agree-info {
		padding: 15px;
	}

	.dm-agree-info > p {
		font: 400 15px 'noto';
	}

	.dm-agree-box {
		padding: 20px 0;
	}

	#dm_submit {
		padding: 11px 45px;
		font: 500 15px 'noto';
	}
}



/* 태블릿 */
@media (min-width: 768px) and (max-width: 1023px) {

}


/* 모바일 */
@media(max-width: 767px) {

	/* product_list */
	#product_list {
		padding: 0 15px 60px 15px;
	}

	.pd-box .col-half {
		flex-basis: 100%;
	}

	.pd-box.col-1 {
		flex-basis: 100%;
	}

	.pd-box.col-1.left {
		margin-right: 0;
	}

	.pd-box.col-1.right {
		margin-left: 0;
	}

	.pd-box .inner-list {
		flex-wrap: wrap;
	}

	.pd-box > .title {
		margin: 30px auto 20px auto;
	}

	.pd-box > .title > p {
		padding-bottom: 12px;
		font: 500 20px/1.4 'noto';
	}

	.pd-box > .title > p::before {
		width: 20px;
	}

	.pd-box > .title > a {
		padding-right: 14px;
		font: 400 12px/1 'noto';
	}

	.pd-box > .title > a::before {
		width: 6px;
		height: 9px;
	}

	.pd-box .product-item .back > .inner > p {
		font: 500 12px/1.4 'noto';
	}

	.pd-box .product-item .back > .inner > a {
		width: 30px;
		height: 30px;
		margin-top: 12px;
		border: 1px solid #fff;
		background: rgba(0, 0, 0, .3) url('../img/icons/ico-search-b-wh.png') 50% 50%/12px 13px no-repeat;
	}
	/* // product_list */
	/* product_list_sub */
	#category_list > ul > li {
	    padding: 7px 12px;
	    font: 400 14px/1 'noto';
	}

	#product_list_sub {
		padding-left: 15px;
		padding-right: 15px;
	}

	#product_list_sub .rel-item {
		margin: 10px 0;
	}
	/* // product_list_sub */
	/* product_detail */
	#product_detail {
		padding: 35px 0 0 0;
	}

	#product_detail .detail-top {
		flex-wrap: wrap;
	}

	#product_detail .detail-top .slide {
		flex-basis: 100%;
		max-width: 100%;
	}

	#product_detail .detail-top .slide-bottom {
	    width: calc(100% - 16px);
	    margin: 15px 8px;
	}

	#product_detail .detail-top .slide-bottom .img-area {
		margin: 0 6px;
	}

	#product_detail .detail-top .detail-data {
		flex-basis: 100%;
		max-width: 100%;
		padding: 15px;
	}

	#product_detail .detail-top .detail-data > .title {
		margin-bottom: 10px;
		font: 400 16px/1.4 'noto';
	}

	#product_detail .detail-top .detail-data > .price-sale {
		font: 500 14px/1 'noto';
	}

	#product_detail .detail-top .detail-data > .price-sale > .price-sale-val {
		font: 400 14px/1 'noto';
	}

	#product_detail .detail-top .detail-data > .price-orig {
		font: 500 20px/1 'noto';
	}

	#product_detail .detail-contents #editor {
		padding: 30px 15px 0 15px;
	}

	#product_detail .detail-rel-list {
		padding: 30px 15px;
	}

	#product_detail #rel_list {
		flex-wrap: wrap;
	}

	#product_list_sub .rel-item,
	#product_detail #rel_list .rel-item {
		flex-basis: 100%;
	}
}


/* 모바일 가로화면 */
@media (min-width: 500px) and (max-width: 768px) {
	#product_list_sub .rel-item {
		flex-basis: calc(50% - 8px);
	}

	#product_list_sub .rel-item:nth-of-type(2n) {
		margin-left: 8px;
	}

	#product_list_sub .rel-item:nth-of-type(2n-1) {
		margin-right: 8px;
	}
}

/* PC */
@media(min-width: 1023px) {


}

/* PC 2 */
@media (min-width: 1024px) and (max-width: 1080px) {

}





/* CKEditor */
#pdMd #pdBody {
    width: 100%;
    max-width: 100%;
    word-break: break-all;
    line-height: 1.4;
}

/* 에디터 스타일 덮어쓰기 */
#pdMd #pdBody img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
}

#youtubeWrap {
    position: relative;
    width: 80%;
    padding-bottom: 45.25%;
}

#youtubeWrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

#pdMd #pdBody ol {
    padding-left: 20px;
    list-style-position: inside;
    list-style: decimal;
}

#pdMd #pdBody ul {
    padding-left: 20px;
    list-style-position: inside;
    list-style: disc;
}

#pdMd #pdBody table {
    width: 100% !important;
    border: 2px solid #333;
}

#pdMd #pdBody table thead {
    border-bottom: 2px solid #333;
}

#pdMd #pdBody table th,
#pdMd #pdBody table td {
    padding: 2px;
    border: 1px solid #666;
    background-color: #FFF;
}

#pdMd #pdBody strong {
    font-weight: bold;
}