@charset "utf-8";

.faq__category {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 2.4rem;
}
.faq__tab {
  flex: 0 0 calc(33.333% - 0.6rem);
  padding: 1.1rem;
  font-size: 1.4rem;
  border-radius: 0.6rem;
  border: .1rem solid #dde4ed;
  background: #fff;
  color: #222;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.faq__tab.on {
  background: #222;
  color: #fff;
  border-color: #222;
}
.faq__contents--group {
  margin-top: 2rem;
  padding-bottom: 4.8rem;
}
.faq__content {
  display: none;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}
.faq__content.on {
  display: block;
}

/* 회원정보, 상품, 주문/결제, 배송 공통 */
.faq-tab__item {
  color: #222;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px solid #f4f7fb;
  position: relative;
}
.faq-tab__header {
  padding: 1.6rem 2.4rem;
}
.faq-tab__item.on .faq-tab__header {
  background: #fbfbfb;
}

.header--title {
  display: flex;
  align-items: center;
  padding-right: 3.8rem;
}

.header--title::after {
  content: "";
  display: block;
  position: absolute;
  right: 2.4rem;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../../images/icon/ico_arrow_down_gray.svg) center center / 100% 100% no-repeat;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.faq-tab__item.on .header--title::after {
  transform: rotate(180deg);
}

.faq-tab__contents {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: #fbfbfb;
  border-top: 1px solid #f4f7fb;
  padding: 0 2.4rem;
  transform-origin: top;
  overflow: hidden;
  height: 0;
}
.faq-tab__item.on .faq-tab__contents {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 1.6rem 2.4rem;
  height: auto;
}
/* .faq-tab__contents {
  display: none;
  background: #fbfbfb;
  border-top: 1px solid #f4f7fb;
  padding: 1.6rem 2.4rem;
}
.faq-tab__item.on .faq-tab__contents {
  display: block;
} */

.faq-tab__contents .answer__type--1 {
  color: #222;
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-tab__contents .answer__type--1 .title {
  font-weight: 700;
}
.faq-tab__contents .answer__type--1 .description {

}

.faq-tab__contents .answer__type--2 {
  color: #666;
  font-size: 1.2rem;
}









/* 교환 안내 스타일 */
.faq__information--flow {
  background: #fff;
  padding-bottom: 3.6rem;
  border-bottom: .4rem solid #f4f7fb;
}

.faq__information--title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.6rem;
  padding: 0 2.4rem;
  line-height: normal;
}

.faq__information--step-list {
  padding: 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 1.8rem;
}

.faq__information--step-item {
  /* flex: 1; */
  position: relative;
  min-width: 7rem;
}

.flow__cancel.faq__information--step-list {
  gap: 8rem;
  padding: 0 0 2.4rem 0;
  margin: 0 1.6rem;
  border-bottom: .1rem solid #e3e6f1;
}
.flow__cancel .faq__information--step-item {
  min-width: 10.1rem;
}
.faq__information--step-item::after {
  content: ">";
  display: inline-block;
  position: absolute;
  right: -1.3rem;
  top: 4.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
}
.faq__information--step-item:last-child::after {
  content: none;
}

.flow__refund .faq__information--step-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -.9rem;
  top: 2.2rem;
  width: .1rem;
  height: 6.8rem;
  border-right: .1rem dashed #666;
}
.flow__refund .faq__information--step-item:last-child::after {
  content: none;
}

.flow__refund .faq__information--step-item .row__type-2 {
  display: flex;
}
.flow__refund .faq__information--step-item .row__type-2 .row__type-2--item:first-child {
  margin-right: 1.8rem;
}

.flow__cancel .faq__information--step-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -4.8rem;
  top: 2.6rem;
  width: 1.8rem;
  height: 1.2rem;
  background: url(../../images/icon/ico_arrow_next_step.svg) center center / 100% 100% no-repeat;
}
.flow__cancel .faq__information--step-item:last-child::after {
  content: none;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #444;
  margin-bottom: .4rem;
}

.step-icon {
  width: 100%;
  height: 6.8rem;
  margin-bottom: .4rem;
}

.step-icon img {
  width: 6.8rem;
  height: auto
}

.step-text {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.5;
  font-weight: 500;
}

.step-text strong {
  font-weight: 700;
}

.faq__information--info {
  padding-top: 2.4rem;
  
}

.faq__information--text {
  font-size: 1.6rem;
  color: #444;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 2.4rem;
}
.faq__information--item {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: .8rem;
}
.faq__information--item:last-child {
  margin-bottom: 0;
}
.faq__information--item::before {
  content: "";
  display: inline-block;
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
  background: #666;
  position: absolute;
  left: 0;
  top: 1.2rem;
}

.faq__information--button-group {
  display: flex;
  gap: .8rem;
  padding: 2.4rem;
  align-items: stretch;
}

.faq__information--button {
  flex: 1;
  background: #e3e6f1;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #6a6e83;
  line-height: 1.42;
  height: auto;
  display: flex; 
  align-items: center;
  justify-content: center;
  flex-direction: column; 
}

.button-group__cancel .faq__information--button {
  background: #f7f9fa;
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  line-height: 1.57;
}


/* 배송비 테이블 스타일 - flex 버전 */
.faq__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  
  color: #666;
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 0 2.4rem;
}

.faq__table-row {
  display: flex;
  width: 100%;
  border: .1rem solid #ececec;
  border-bottom: 0;
}
.faq__table-row:last-child {
  border-bottom: .1rem solid #ececec;
}

.faq__table-cell {
  flex: 1;
  padding: 1.2rem 1.6rem;
  min-height: 5.4rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  border-right: 1px solid #e1e4eb;
  display: flex;
  align-items: center;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word; 
  min-width: 0; 
  background: #fff;
  line-height: normal;
}
.faq__table-cell:first-child {
  color: #222;
  background: #f7f9fa;
  flex: 0 0 11.8rem;
  max-width: 11.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.faq__table-row .faq__table-cell:last-child {
  border-right: none;
}


.faq__table-cell--item {
  padding-left: .9rem;
  position: relative;
}
.faq__table-cell--item::before {
  content: "";
  display: inline-block;
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
  background: #666;
  position: absolute;
  left: 0;
  top: .6rem;
}



.flow__cancel-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.4rem;
}

.branch__center {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.branch__center::before {
  content: "승인";
  display: inline-block;
  position: absolute;
  left: -5.3rem;
  bottom: 0;
  color: #86aff0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 1.8rem;
  background: url(../../images/icon/ico_left_down_blue.svg) center bottom / 1.7rem 2rem no-repeat;
}

.branch__center::after {
  content: "불가";
  display: inline-block;
  position: absolute;
  right: -5.3rem;
  bottom: 0;
  color: #fe9d00;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 1.8rem;
  background: url(../../images/icon/ico_right_down_org.svg) center bottom / 1.7rem 2rem no-repeat;
}

.branch__icon img {
  width: 6.8rem;
  height: auto;
  margin-bottom: .4rem;
}

.branch__text {
  font-size: 1.2rem;
  color: #444;
  font-weight: 500;
  line-height: 1.5;
}

.branch__text strong {
  font-weight: 700;
}

.branch__split {
  display: flex;
  justify-content: center;
  gap: 9.4rem;
}

.branch__left,
.branch__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 8.7rem;
}

.branch__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

.label--blue {
  color: #3d8bfd;
}

.label--orange {
  color: #ff922b;
}

.branch__arrow {
  width: 1.2rem;
  height: 1.2rem;
  border-right: .2rem solid #bbb;
  border-bottom: .2rem solid #bbb;
  transform: rotate(45deg);
  margin: 0.8rem 0;
}