@charset 'utf-8';


.flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.flex.center {
	justify-content: center;
}

.gap10 {
	gap: 10px;
}



.m20 {
	margin: 20px 0;
}
.mb20 {
	margin-bottom: 20px;
}
.m30 {
	margin: 30px 0;	
}
.m50 {
	margin: 50px 0;	
}
.mt50 {
	margin-top: 50px;	
}
.mb50 {
	margin-bottom: 50px;	
}


select.select-box {
    -webkit-appearance: auto; /* 크롬 화살표 없애기 */
    -moz-appearance: auto; /* 파이어폭스 화살표 없애기 */
    appearance: auto; /* 화살표 없애기 */
}


.searchB.flex {
	padding-bottom: 30px;
}
.searchB.flex button.searchBtn {
	display: block;
	margin: 0;
}


.img-box.top {
	width: 200px;
	height: 100%;
}
.img-box.top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.remanListTable table.detail {
    border-bottom: 2px solid #255e4b;
}
.remanListTable .table.detail {
	margin-top: 0;
}
table.table.detail col.width30 {
	width: 30%;
}
table.table.detail col.width70 {
	width: 70%;
}
.remanListTable table.detail tbody td {
	cursor: default;
	text-align: left;
	line-height: 1.4;
    padding: 12px 14px;
}



button.listBtn.m30 {
	display: block;
	margin: 30px 0 30px auto;
}


.remanView .overview .prodBox.flex {
	padding: 32px 0;
}


/* 제품 상세 */
.sc-goods .title,
.sc-infor .title {
	gap: 10px;
	font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}
.sc-goods .title .img-box,
.sc-infor .title .img-box {
	display: inline-block;
	width: 30px;
}
.sc-goods .title .img-box img,
.sc-infor .title .img-box img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sc-goods .swiper .swiper-wrapper .img-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
}
.sc-goods .swiper .swiper-wrapper .img-box img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sc-goods .swiper .swiper-wrapper .des {
	text-align: center;
    font-size: 18px;
    font-weight: 500;
}


.sc-infor .des-box {
	background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
	padding: 12px 14px 18px;
	margin-top: 14px;
}



/* FAQ */
.remanListTable.sc-faq {
	margin-top: 50px;
}
.remanListTable .faq-area {
	height: 80px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 0 0;
}
.remanListTable .faq-area.open {
	height: 100%;
}

.remanListTable .faq-area .icon {
	color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 50%;
    padding: 8px 16px;
}
.remanListTable .faq-area .icon.q {
	background-color: #000;
}
.remanListTable .faq-area .icon.a {
	background-color: #009953;
    padding: 6px 16px;
}

.remanListTable .faq-area .faq-box {
	gap: 20px;
	height: 60px;
    padding: 0 20px 20px;
}
.remanListTable .faq-area .faq-box h3 {
	line-height: 1.4;
}

.remanListTable .faq-area .reply-box {
	opacity: 0;
    visibility: hidden;
    background-color: #f3fdf8;
    word-break: break-word;
	padding: 32px 30px 32px 30px;
    transition: opacity 0.3s ease-in;
}
.remanListTable .faq-area .reply-box.open {
    opacity: 1;
    visibility: visible;
}
.remanListTable .faq-area .reply-box > .flex {
	gap: 20px;
}
.remanListTable .faq-area .reply-box h3 {
	font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}
.remanListTable .faq-area .reply-box p {
	line-height: 1.5;
}




