/* 헤더 */
.header {
  width: 100%;
  height: 52px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(.5);
  background: #dadde0;
}

.header_wrap {
  max-width: 800px;
  height: 52px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 20px;
}

.header-back {
  display: flex;
  align-items: center;
}

.header-close-btn {
  position: absolute;
  top: 17px;
  right: 20px;
}

/* 메뉴 */
.sidebar {
  width: 100%;
  max-width: 800px;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.sidebar.on {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000008e;
}

.menu_wrap {
  width: 86%;
  height: 100dvh;
  padding: 0 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  overflow: scroll;
}

.menu_wrap::-webkit-scrollbar {
  display: none;
}

.b-line-6 {
  width: 100%;
  padding: 20px 0;
}

.b-line-6::after {
  top: 23px;
}

.menu-toggle {
  position: absolute;
  top: 12px;
  right: 16px;
}

.menu_wrap .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu_wrap .benefit {
  display: flex;
  justify-content: space-around;
}

.menu_wrap .benefit>div>span:first-child {
  font-size: 13px;
}

.menu_wrap .benefit>div span:last-child {
  font-weight: bold;
}

/* 메뉴 섹션 스타일 */
.menu-section {
  margin-top: 20px;
}

.menu-section h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.menu-section h4 button {
  border: none;
  background: none;
}

.menu-section:not(.staff-list) ul {
  display: block;
}

.menu-section:not(.staff-list) ul.hide {
  display: none;
}

.menu-section:not(.staff-list) ul li {
  padding: 10px 0;
  font-size: .875rem;
}

.arrow {
  transition: transform 0.3s;
}

.arrow.open {
  transform: rotate(180deg);
}

/* 공통 */
.main_wrap {
  width: 100%;
  max-width: 800px;
  min-height: calc(100dvh - 52px);
  margin: 0 auto;
  margin-top: 52px;
  overflow: hidden;
}

/* 레이아웃 타이틀 */
.layout_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px !important;
  padding: 0 16px;
}

.layout_header p {
  font-size: 20px;
  font-weight: 700;
}

.layout_header>span {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: .85rem;
  color: var(--color--more);
  text-align: right;
}

/* 레이아웃 콘텐츠 */
.layout_con_wrap {
  width: 100%;
  padding: 0 16px;
  display: flex;
  gap: 8px;
}

.layout_con_wrap img {
  object-fit: cover;
  border-radius: 4px;
}

.layout_con_wrap .title {
  margin-top: 6px;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 18px;
}

.layout_con_info {
  width: 100%;
  font-size: .875rem;
}

.layout_con_info span:not([data-r-field="price"], [data-r-field="position"], [data-r-field="shop_name"], [data-r-field="brand"], [data-r-field="discount_percentage"]) {
  font-size: .75rem;
  font-weight: 600;
  color: var(var(--color--gray));
}

.layout_con_info h4 {
  font-weight: 600;
  /* line-height: 20px; */
}

.layout_con_info>p {
  font-weight: 500;
}

.layout_con_info>p, .layout_con_info>div, .layout_con_info>span {
  margin-bottom: 4px;
}

.layout_con_info .dis {
  color: #EA6062;
}

.product_img_wrap {
  position: relative;
  flex-shrink: 0;
}

.product_soldout::after {
  content: '품절';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00000080;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}

.layout_img_wrap {
  width: 100%;
  height: 186px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.layout_img_wrap::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
}

.layout_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.layout_img_wrap .caption {
  position: absolute;
  padding: 0 26px;
  left: 0;
  bottom: 30px;
  z-index: 1;
  color: #fff;
}

.layout_img_wrap .caption p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.layout_img_wrap .caption span {
  font-weight: 300;
  font-size: 15px;
}

.shop_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop_list img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.square_w132 img {
  width: 140px;
  height: 140px;
}

.square_w132 li:not(.badge) {
  width: 140px !important;
}

.product_img_wrap {
  position: relative;
  flex-shrink: 0;
}

.txt-title {
  font-size: .875rem;
  font-weight: 500 !important;
  line-height: 18px;
}

.product_cost {
  font-size: .8125rem !important;
  color: #999;
  text-decoration: line-through;
}

.price_wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.price_wrap .discount, .price_wrap .discount span {
  font-size: .875rem !important;
  font-weight: 700 !important;
  color: #fa393c !important;
}

.txt-price, .txt-price span {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.txt-market, .txt-brand, .txt-shop, .txt-beautist, .txt-option, .txt-g-s {
  width: 100%;
  color: var(--color--gray) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

.product_soldout::after {
  content: '품절';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00000080;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}

/* 로그인 */
.sign_container {
  width: 100%;
  max-width: 800px;
  height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sign_container .logo {
  margin-bottom: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sign_container .logo img {
  width: 128px;
  height: 128px;
  object-fit: cover;
}

.sign_container .logo h2 {
  font-size: 20px;
  color: #333;
}

.sign_container .logo p {
  color: #888888;
}

.login_social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.login_social a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* 광고 */
.shop_bannerWrap {
  width: 100%;
  padding: 0 16px;
}

.shop_bannerWrap img {
  width: 100%;
  border-radius: 4px;
}

/* 마켓 */
#market {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* 상단 배너 슬라이드 */
#market .marketSwiper {
  height: 80vw;
  max-height: 500px;
  margin-bottom: 28px;
}

.mainSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .mainSwiper .swiper-slide img {
    /* width: auto; */
    height: 100%;
  }
}

.mainSwiper .slide-caption {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
}

.mainSwiper .slide-caption p {
  font-size: 28px;
  line-height: 32px;
}

.mainSwiper .slide-caption span {
  font-weight: 300;
  line-height: 28px;
}

.mainSwiper .swiper-pagination {
  width: 40px;
  padding: 4px;
  left: 86% !important;
  bottom: 12px;
  border-radius: 10px;
  background-color: rgba(158, 158, 158, 0.4);
  color: #fff;
  font-size: .6875rem;
  font-weight: 300;
}

/* 카테고리 아이콘 */
.ellipse_btn {
  display: flex;
  padding: 0 16px;
  gap: 12px;
}

.ellipse_btn li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50%;
  font-size: .875rem;
}

.ellipse_btn li .img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #F7F7F7;
  flex-shrink: 0;
}

.ellipse_btn li .img_wrap img {
  object-fit: cover;
}

.ellipse_btn li span {
  font-size: .75rem;
  font-weight: 600;
}

/* 상품 스와이퍼 */
.brandProductSwiper {
  width: 100%;
  padding: 0 16px;
}

.layout_img_wrap .caption {
  position: absolute;
  padding: 0 26px;
  left: 0;
  bottom: 30px;
  z-index: 1;
  color: #fff;
}

.layout_img_wrap .caption p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.layout_img_wrap .caption span {
  font-weight: 300;
  font-size: 15px;
}

.shop_list .brand_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product_img_wrap {
  position: relative;
  flex-shrink: 0;
}

/* 대분류 */
.category_select_wrap {
  position: relative;
  padding: 8px 16px;
}

.category_select_wrap button {
  display: flex;
  flex-direction: row;
  gap: 2px;
  font-weight: 700;
}

#categoryBtn svg {
  transition: transform 0.3s ease;
}

#categoryBtn.on svg {
  transform: rotate(180deg);
}

.category_select_list {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: 36px;
  left: 0;
  background: #fff;
  z-index: 9999;
}

.category_select_list.on {
  max-height: none;
  padding: 20px 16px 60px;
  transform: translateY(0);
  overflow: visible;
}

.bg_opacity {
  width: 100%;
  height: 100dvh;
  position: absolute;
  top: 200px;
  left: 0;
  background: #00000085;
}

.category_select_list ul {
  display: flex;
  flex-wrap: wrap;
}

.category_select_list li {
  width: 50%;
  padding: 12px 0;
  font-size: 14px;
  color: #939396;
}

.category_select_list li.on {
  color: #333;
  font-weight: 600;
}

/* 둥근 탭메뉴 */
.tab_menu_rounded {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  transition: .2s ease-out .2s;
}

.tab_menu_rounded.fixed {
  position: fixed;
  margin: 0;
  padding: 12px 16px;
  background: #fff;
}

.tab_menu_rounded .tab {
  padding: 8px 16px;
  border-radius: 20px;
  color: #333;
  background-color: #fff;
  border: 1px solid #DBE0E4;
  font-size: 14px;
  flex-shrink: 0;
}

.tab_menu_rounded .tab.on {
  font-weight: 600;
  color: #fff;
  background: var(--color--point);
  border-color: var(--color--point);
}

.tab_menu_rounded.filter .tab {
  font-weight: 500;
  flex-direction: row;
}

.tab_menu_rounded.filter .tab.on svg {
  color: var(--color--point);
}

.tab_menu_rounded.filter .tab.on {
  color: var(--color--point);
  background: #FFF1EE;
  border-color: var(--color--point);
}

.tab_menu_rounded input, .category_select_list input, .tab_menu input, .tab_menu_black input {
  display: none;
}

.tab_menu_rounded label, .category_select_list input, .tab_menu label, .tab_menu_black label {
  white-space: nowrap !important;
}

.tab_cate.tab_menu {
  justify-content: flex-start
}

.tab_cate.tab_menu .tab {
  margin: 0 16px 0 0;
}

.tab_menu {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e9e9ec;
  background: #fff;
  transition: .2s ease-out .2s;
}

.tab_menu.fixed {
  margin: 0 auto;
  position: fixed;
  z-index: 9;
  transition: .2s ease-out .2s;
  background: #fff;
}

.tab_menu .tab {
  margin: 0 auto;
  padding: 12px 0;
  color: #939396;
  position: relative;
  text-align: center;
}

.tab_menu .tab.on {
  color: var(--color--point);
  font-weight: 600;
}

.tab_menu .tab.on::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--color--point);
}

.tab_menu .tab.on span {
  color: var(--color--point);
}

.tab_menu_black {
  padding: 0 8px;
  border-bottom: 1px solid #e9e9ec;
  background: #fff;
}

.tab_menu_black.fixed {
  position: fixed;
  top: 44px;
  z-index: 9;
}

.tab_menu_black .tab {
  padding: 12px 8px;
  color: #939396;
  position: relative;
  font-size: 14px;
}

.tab_menu_black .tab.on {
  color: #333;
  font-weight: 600;
}

/* 포인트라인탭메뉴 */
.tab_container-tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dadde0;
}

.tab_container-tabs .tab-button {
  width: 50%;
  padding: 14px 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.tab_container-tabs .tab-button.on {
  background-color: #fff;
  border-bottom: 2px solid var(--color--point);
  font-weight: bold;
  color: var(--color--point);
}

/* 상품 상세 */
.product_imgWrap {
  width: 100%;
  height: 100vw;
  max-height: 800px;
}

.product_imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 16px;
  border-bottom: 6px solid #F6F6F6;
}

.shipping_fee_wrap {
  display: flex;
  font-size: 14px;
  font-weight: 300;
}

.shipping_fee_wrap .type {
  margin-right: 16px;
  color: #757d86;
  font-weight: 400;
}

.tab_menu {
  height: 48px;
}

.tab_menu .tab {
  height: 100%;
  justify-content: center;
}

.tab_menu .tab.on span {
  color: var(--color--point);
}

/* 모달 */
.modal_opne_btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e9e9ec;
  border-radius: 4px;
  font-size: .875rem;
}

.modal_opne_btn span {
  display: inline-block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modalLayer .close_btn {
  position: absolute;
  width: 52px;
  font-size: 1.875rem;
  top: 30px;
  right: 16px;
  background: none;
  border: none;
  z-index: 9;
}

/* 바텀시트 */
.bottom_sheet {
  display: none;
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 1002;
  transition: bottom 0.1s ease-in-out;
}

.bottom_sheet.on {
  bottom: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.overlay.on {
  opacity: 1;
  visibility: visible;
}

.bottom_sheet .content {
  width: 100%;
  max-width: 800px;
  padding: 32px 32px 56px;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  bottom: -100%;
}

.bottom_sheet.on .content {
  position: fixed;
  bottom: 0;
}

.bottom_sheet.on .title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}

.bottom_sheet .content .list {
  height: 40dvh;
}

.bottom_sheet .option.box.disable {
  position: relative;
  touch-action: none;
}

.bottom_sheet .option.box.disable::after {
  content: '사용 가능한 쿠폰이 아닙니다.';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff0004;
  font-size: 14px;
}

.bottom_sheet .option.box.disable {
  border-color: #ddd;
}

.bottom_sheet .option.box.disable .list_top img {
  filter: grayscale(0.7);
}

.bottom_sheet .option.box.disable * {
  color: #ddd !important;
}

.bottom_sheet .option.box.disable label>div:not(.w100) {
  display: none;
}

.bottom_sheet .option.box.disable .badge {
  background: #949494 !important;
  color: #fff !important;
}

.bottom_sheet .option input[type=radio] {
  width: 16px;
  height: 16px;
}

.bottom_sheet .option p {
  color: #333;
}

.bottom_sheet .option p strong {
  font-size: initial;
}

.bottom_sheet .option span {
  color: #969696;
}

.quantity-price {
  display: flex;
  color: #969696;
}

.quantity {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.quantity button {
  font-size: 15px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: revert;
}

.quantity input {
  width: 50px;
  text-align: center;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 25px;
}

.total-pricing {
  text-align: center;
  margin-top: 20px;
}

.total-pricing p {
  margin: 5px 0;
  font-size: 16px;
  color: #333;
  text-align: right;
}

#price {
  margin-left: 5px;
}

.content .btn_wrap {
  padding: 12px 16px;
}

.container-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: #6D6D6D;
  background-color: #E7E7E7;
  border-top: 6px solid #F6F6F6;
  border-bottom: 6px solid #F6F6F6;
}

.item-link {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 16px 24px;
  position: relative;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  background-color: #fff;
}

#buy_page.main_container,
#buy_page .sec_wrap {
  overflow: visible !important;
}

#buy_page .tabs {
  top: 0 !important;
  border-bottom: 0 !important;
}

.shop_contents_wrap {
  display: none;
  margin-top: 32px;
}

.shop_contents_wrap.on {
  display: block;
}

/* 상품 정보 더보기 */
.description_img {
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.description_img.open {
  max-height: none;
  height: auto;
  padding-bottom: 20px;
}

.description_img img {
  width: 100%;
}

.toggle-button {
  position: relative;
  top: -66px;
  width: 100%;
  justify-content: center;
  transition: all 0.3s ease;
}

.toggle-button::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0) 0%, #fff 100%);
}

.toggle-button .toggle-text {
  width: 90%;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #6D6D6D;
  border: 1px solid #C7C7C7;
  border-radius: 8px;
  font-size: 14px;
  z-index: 1;
}

.toggle-arrow {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.toggle-arrow.rotated {
  transform: rotate(180deg);
  /* 숨기기일 때 이미지 회전 */
}

.toggle-button.open {
  position: static;
  margin-bottom: 20px;
}

.toggle-button.open::before {
  display: none;
}

#buy_page #p_info {
  margin-top: 0;
  width: 100%;
}

/* 리뷰 */
.review .rating-container {
  position: relative;
  width: 100%;
  margin-bottom: 48px;
  padding: 32px 16px;
  background: #fff;
  color: var(--color--point);
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.review .rating-container::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #F6F6F6;
}

.review .rating-summary {
  width: 40%;
  /* text-align:left; */
  padding-right: 0px;
  border-right: 1px solid #eee;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review .rating-summary .total-count {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.review .rating-summary .total-count span {
  color: var(--color--point);
}

.review .rating-summary .star-rating {
  font-size: 32px;
  color: #333;
  display: flex;
  align-items: center;
}

.review .rating-summary .star-rating span {
  color: var(--color--point);
  font-size: 14px;
  margin-left: 10px;
}

.review .rating-summary .write-review {
  display: inline-block;
  background-color: var(--color--point);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
}

.review .rating-bars {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 0;
  margin-left: 10px;
}

.review .rating-bar {
  text-align: center;
  width: 60px;
  position: relative;
}

.review .review-count {
  position: absolute;
  top: 100%;
  /* 막대 아래로 이동 */
  left: 50%;
  transform: translateX(-50%);
  background: var(--color--point);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  display: block;
  margin-top: 5px;
}

.review .review-count:after {
  content: "";
  position: absolute;
  top: -10px;
  /* 화살표 위치를 막대 바로 위로 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--color--point) transparent;
  /* 화살표 모양 */
}

.review .bar {
  width: 8px;
  height: 100px;
  background: #FAFAFA 0% 0% no-repeat padding-box;
  border-radius: 4px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.review .bar span {
  display: block;
  width: 100%;
  background: var(--color--point);
  border-radius: 4px 4px;
  /* 막대의 상단만 둥글게 설정 */
}

.review .bar .five {
  height: 89%;
}

.review .bar .four {
  height: 10%;
  background: var(--color--point);
  opacity: 0.6;
}

.review .bar .three {
  height: 1%;
  background: var(--color--point);
  opacity: 0.3;
}

.review .bar .empty {
  height: 0%;
}

.review .percentage {
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
}

.review .rating-label {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

.review_header {
  position: relative;
  margin-bottom: 48px;
}

.review-list li:last-child .review-item {
  margin-bottom: 0 !important;
}

.review_gallery img, .review_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review .layout_header {
  justify-content: flex-start;
}

.review .star {
  margin-left: 8px;
  color: var(--color--point);
  font-size: 1.125rem;
}

.review .star span[data-r-field="score"] {
  margin-left: 4px;
  color: #333;
  font-size: 1rem;
}

.review_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
}

.review_gallery li {
  width: 100%;
  aspect-ratio: 1/1;
}

.review_gallery li.more {
  position: relative;
}

.review_gallery li.more:after {
  content: '+ 더보기';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: #00000080;
  color: #fff;
  font-size: .875rem;
}

.review_list>li:not(:last-child) {
  position: relative;
  margin-bottom: 48px;
}

.review_header::after, .review_list>li:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 16px;
  width: calc(100% - 32px);
  height: 1px;
  transform: scaleY(.5);
  background: #e9e9ec;
}

.review_info {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review_info, .review_text, .review_action {
  padding: 0 16px;
}

.btn_action {
  flex-direction: row;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 20px;
  color: #8B8B8B;
  background-color: #fff;
  border: 1px solid #DBE0E4;
  font-size: 12px;
}

.btn_action.on svg {
  color: var(--color--point);
}

.btn_action.on {
  color: var(--color--point);
  background: #FFF1EE;
  border-color: var(--color--point);
}

.star_date {
  position: relative;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #8B8B8B;
}

.star_date::after {
  content: '';
  width: 1px;
  height: 11px;
  background: #E9E9EC;
  position: absolute;
  top: 3px;
  left: 40px;
}

.review_info span[data-r-field="beautist"] {
  color: #969696;
  font-size: .875rem;
}

.review_text {
  margin: 16px 0;
}

.review_text p {
  font-size: 14px;
  line-height: 20px;
}

.review_text span {
  font-size: .75rem;
  color: #939396;
}

.review_action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #8B8B8B;
}

.photos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.photos li {
  width: 100%;
  aspect-ratio: 1/1;
}

.photos.snap li {
  aspect-ratio: 1/1.3;
}

.photos img {
  width: 100%;
  height: 100%;
  /* max-height: 280px; */
  object-fit: cover;
}

.review_star {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.review_star .star-wrap {
  gap: 2px;
}

.review_star span {
  display: flex;
  align-items: stretch;
  font-size: .8125rem !important;
  font-weight: 500 !important;
}

.review_star img {
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* 문의 */
#p_review, #p_qna {
  margin-top: 0;
  padding-bottom: 32px;
}

#p_qna .btn_wrap {
  margin-top: 42px;
  padding: 0 16px;
}

.inquiry-list {
  padding: 0 16px;
}

.inquiry-list li:first-child {
  padding-top: 0;
}

.inquiry-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.inquiry-item {
  width: 100%;
  border-bottom: 1px solid #E9E9EC;
  padding: 24px 0;
}

.inquiry-header {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 12px;
}

.status-label {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 4px;
}

.wate-color {
  background: #AAAAAA;
}

.inquiry-user {
  color: #8B8B8B;
  font-size: 14px;
  font-weight: 500;
  padding-right: 10px;
  border-right: 1px solid #E9E9EC;
}

.inquiry-date {
  color: #8B8B8B;
  font-size: 14px;
}

.inquiry-details {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  background: #F3F3F3;
}

.inquiry-details h4 {
  margin-bottom: 14px;
}

.inquiry-details p {
  font-size: 14px;
  line-height: 18px;
}

.img104 {
  width: 104px;
  height: 104px;
  border-radius: 4px;
  object-fit: cover;
}

/* 상단 상품 타이틀 */
.layout_con_info .product_cost {
  font-size: .8125rem !important;
  color: #999;
  text-decoration: line-through;
}

.price_wrap p {
  font-size: 1.0625rem;
  font-weight: 600;
}

.price_wrap .dis {
  color: #EA6062 !important;
}

/* 옵션 */
.bottom_sheet {
  display: none;
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 1002;
  transition: bottom 0.1s ease-in-out;
}

.bottom_sheet.on {
  bottom: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.overlay.on {
  opacity: 1;
  visibility: visible;
}

.bottom_sheet .content {
  width: 100%;
  max-width: 800px;
  padding: 32px 32px 56px;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  bottom: -100%;
}

.bottom_sheet.on .content {
  position: fixed;
  bottom: 0;
}

/* 주문결제 */
#orderDetails .price_container p {
  margin-bottom: 4px;
}

#orderDetails h3 {
  margin: 16px 0;
  font-size: 16px;
  color: #333;
}

#orderDetails .payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

#orderDetails .payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
}

#orderDetails .payment-method input[type="radio"] {
  display: none;
}

#orderDetails .payment-label {
  display: inline-block;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: background-color 0.3s, border-color 0.3s;
}

#orderDetails .payment-method input[type="radio"]:checked+.payment-label {
  background-color: var(--color--point);
  color: #fff;
  border-color: var(--color--point);
}

#couponSelect .content {
  max-height: 55%;
}

#couponSelect .mypage_list {
  height: 100%;
  padding: 0 0 50px;
  overflow-y: scroll;
}

#couponSelect .mypage_list::-webkit-scrollbar {
  display: none;
}

.pay_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 32px 0;
}

.pay_info>div {
  display: flex;
  justify-content: space-between;
}

.pay_info .total_wrap {
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f2f2f2;
}

.pay_info div p {
  font-size: .875rem;
  color: #939396;
}

.pay_info .dis span, .pay_info span.pay_method {
  font-size: .875rem;
  color: #939396;
}

.pay_info .dis {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.pay_info .price {
  display: inline-block;
  text-align: right;
  width: 100px;
  height: auto;
  color: #333;
  background: none;
}

.pay_info .price[data-r-field="payment_amount"] {
  width: auto;
  font-size: 1.25rem;
  margin-left: 8px;
}

.pay_info .receipt span {
  margin-left: 4px;
  font-size: .75rem;
  text-decoration: underline;
  color: #939396;
}

.pay_info .pay_total {
  display: flex;
  align-items: center;
}

.agree_container {
  text-align: center;
  margin: 15px 0;
  font-size: 12px;
}

/* 마켓 푸터 */
#marketFooter {
  background-color: #f6f7f9;
  padding: 20px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  text-align: left;
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.info-row {
  display: flex;
  margin-bottom: 4px;
}

.info-title {
  width: 30%;
  font-weight: 600;
  color: #99a1a8;
  font-size: 0.75rem;
}

.info-content {
  flex: 2;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  color: #99a1a8;
}

#marketFooter a {
  color: #99a1a8;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #99a1a8;
  font-weight: 600;
  display: inline-block;
}

.footer-links span {
  color: #ccc;
  font-weight: 400;
}

.footer-links .footer-links-txt {
  color: #99a1a8;
  font-weight: 600;
}

.copyright {
  color: #99a1a8;
  font-weight: 500;
}

#footerInfo {
  padding: 0.8rem 1.5rem;
  border-top: 1px solid #ddd;
}

#footerInfo .footer-links a {
  color: #757d86;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  /* margin: 0 8px; */
  display: inline-block;
}

#footerInfo .footer-links span {
  color: #aaa;
}

/* 마이페이지 */
.mypage_container {
  background-color: #fff;
  padding: 24px 16px 0;
}

.mypage_container>div {
  position: relative;
  margin-bottom: 24px;
}

.mypage_container>div:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: 8px;
  background: #F6F6F6;
}

.profile_section {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary_section {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
}

.summary_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  flex: 1;
}

.summary_item span {
  display: block;
  font-size: 16px;
  color: var(--color--point);
}

.menu_area .col {
  padding: 8px 0 12px 0;
  border-bottom: 1px solid #F6F6F6;
}

.menu_area h4 {
  padding: 16px 0;
}

.menu_area ul li, .menu_area p {
  padding: 16px 0;
  font-size: .875rem;
}

.menu_area p {
  justify-content: flex-start;
}

.mypage_container .goodbye {
  color: #DBE0E4;
  font-size: .75rem;
  text-decoration: underline;
}

.mypage_container .setting li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.mypage_list_header {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  margin: 20px 0 8px 0;
  font-size: .875rem;
}

.mypage_list_header h3 {
  font-size: 1rem;
}

.mypage_list_header h3 .total {
  color: #fa393c;
  font-weight: 700;
}

.mypage_list_header select {
  background: #fff;
  border: none;
  font-size: .875rem;
}

.mypage_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.mypage_list .list_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mypage_list .list_header p {
  font-size: 1.125rem;
  font-weight: 600;
}

.list_bottom span:not(.main, .tracking_btn) {
  font-size: .8125rem;
  color: #939396;
}

.list_bottom div>span:first-child, .list_bottom li>span:first-child {
  width: 92px;
  display: inline-block;
}

.list_badge {
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
}

.list_badge .dDay {
  font-size: .6875rem
}

.mypage_list>li:not(.points_list>li, .coupon_list>li) {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  background: #fff;
}

.list_top {
  display: flex;
  gap: 12px;
}

.list_top>div:not(.shop_header, .list_btn) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.list_bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.list_bottom>span>span:first-child:not([data-r-field="start_date"]) {
  margin-left: 66px;
}

.list_top img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
}

.list_top p {
  font-size: .9375rem;
  font-weight: 500;
  /* line-height: 17px; */
}

.list_top span:not(.c-main) {
  font-size: .875rem;
  color: #939396;
}

.mypage_detail {
  min-height: calc(100dvh - 52px);
  padding: 24px 16px;
}

.mypage_detail h3:not(.reservation_header h3) {
  margin-bottom: 8px;
}

.mypage_detail .list_badge .re {
  margin-bottom: 4px;
}

.mypage_detail .list_bottom {
  position: relative;
  padding-bottom: 32px;
}

.mypage_detail .list_bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -24px;
  width: calc(100% + 48px);
  height: 8px;
  background: #F6F6F6;
}

.review_container {
  gap: 24px;
  margin-bottom: 36px;
}

.review_container .review_info {
  padding: 16px;
  background: #f4f4f4;
  border-bottom: 1px solid #E6E6E6;
}

.review_container .review_detail {
  width: 100%;
  max-width: 480px;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
}

.review_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review_box .star_rating {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E6E6E6;
}

.review_box .star img {
  width: 40px;
  height: 40px;
}

.review_box .rating {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color--point);
}

.review_box p {
  font-size: 20px;
  font-weight: 600;
}

.review_box .star {
  margin: 0 3px;
}

.review_container textarea {
  width: 100%;
  height: 220px;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  margin-top: 16px;
  padding: 16px;
  resize: none;
}

textarea::placeholder {
  font-size: 14px;
  color: #8B8B8B;
}

.review_box .point_dashed {
  margin-top: 16px;
  flex-direction: row;
  gap: 0;
}

.review_box .point_dashed svg {
  margin-right: 2px;
}

.attach_img_box {
  width: 100%;
  margin-top: 12px;
  display: flex;
  gap: 4px;
}

.attach_img_box .attach_img {
  width: calc((100% - 16px) / 5);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
}

.attach_img_box .attach_img.on .del {
  position: relative;
}

.attach_img_box .attach_img.on .del::after {
  display: block;
  position: absolute;
  content: url('../img/x.svg');
  width: 18px;
  height: 18px;
  top: 0;
  right: 0;
  background: #000000B2;
  text-align: center;
  line-height: 18px;
}

.attach_img_box .attach_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.points_list {
  padding: 0 !important;
}

.points_list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 쿠폰 */
.coupon_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.coupon_list li {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
}

.coupon_list li>div:first-child {
  max-width: calc(100% - 85px);
}

.coupon_list .list_top {
  height: auto;
  margin-bottom: 4px;
}

.coupon_list .list_top p {
  font-size: 1.25rem;
  line-height: 24px;
}

.coupon_list .list_bottom span {
  width: auto;
}

/* 공지사항 */
.notice_list {
  padding: 0 16px;
}

.notice_list .list_top {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.notice_list .list_top .shop_header {
  width: 100%;
}

.notice_list .list_top p {
  font-size: 1rem;
  line-height: 24px;
}

.notice_header {
  padding: 24px 16px;
  margin-bottom: 24px !important;
  border-bottom: 1px solid #e9e9ec;
}

.notice_header h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.notice_header span {
  color: #939396;
}

.notice_text {
  padding: 0 16px;
  margin-bottom: 64px;
}

.notice_text p {
  line-height: 24px;
}

/* FAQ */
#faq_page .accordion {
  padding: 0 16px;
}

#faq_page .accordion-item:last-child {
  border-bottom: none;
}

#faq_page .accordion-header {
  padding: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  line-height: 24px;
  border-bottom: 1px solid #e5e7ea;
}

#faq_page .accordion-content {
  display: none;
  background-color: #fff;
  padding: 15px 15px 20px;
  font-size: 0.85rem;
  color: #292c33;
}

#faq_page .accordion-item.on .accordion-content {
  display: block;
  background: #f0f1f4;
}

#faq_page .accordion-item.on .accordion-header {
  font-weight: 800;
}

#faq_page .toggle-icon {
  font-size: 1.2rem;
  color: var(--color--point);
  transition: transform 0.3s;
}

#faq_page .accordion-item.on .toggle-icon {
  transform: rotate(180deg);
}

/* 장바구니 카트 */
#sticky-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
  padding: 16px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.choice-del {
  font-size: .875rem;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 4px 8px;
}

.cart_container .item-body {
  padding: 0 16px;
}

.cart_container .item-details li {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7ea;
  position: relative;
}

.cart_container .item-details li:last-child {
  border-bottom: none;
}

.cart_container .item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
}

.item-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.item-list .flex-row {
  width: 100%;
  padding-right: 22px;
}

.item-list img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
}

.item-list-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-list .quantity-btn {
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
}

.item-list .quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
  height: auto;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  border-radius: 0;
  font-size: .85rem;
}

.item-list .update-btn {
  border: 1px solid #f0f0f0;
  padding: 5px 10px;
  border-radius: 4px;
  margin-left: 10px;
  font-size: .85rem;
  height: 100%;
  justify-content: center;
}

.item-list .border-line {
  display: flex;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
}

.empty-cart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100dvh - 48px - 59px - 117px);
}

.icon-container {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.icon-container img {
  width: 50px;
  height: 50px;
}

.empty-cart-container h3 {
  font-size: 1.8rem;
  color: var(--color--point);
  margin-bottom: 0.5rem;
}

.empty-cart-container p {
  color: #666;
  margin-bottom: 1.5rem;
}

.home-button {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  color: #fff;
  background-color: var(--color--point);
  text-decoration: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: bold;
}

.home-icon {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.home-icon svg {
  width: 24px;
  height: 24px;
}

.checkbox_wrap {
  display: flex;
  justify-content: space-between;
}

.checkbox_wrap .checkbox {
  display: flex;
  align-items: center;
}

.checkbox_wrap input {
  display: none;
}

.checkbox_wrap .checkmark {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background: #fff;
  border: 1px solid var(--color--point);
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.checkbox input:checked+.checkmark {
  background-color: var(--color--point);
  border-color: var(--color--point);
}

.checkbox input:checked+.checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 회원탈퇴 */
#cus_info_out .container {
  width: 100%;
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #e5e7ea;
}

#cus_info_out .container li {
  position: relative;
  padding-left: 8px;
  line-height: 18px;
  letter-spacing: -.5px;
}

#cus_info_out .container li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #292c33;
  content: "";
}

/* 제휴 신청 테이블 */
.apply_affiliated {
  max-width: 480px;
  margin: 0 auto;
}

.apply_affiliated img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply_affiliated .btn_wrap {
  margin: 0 0;
}

.apply_benefits {
  margin: 32px 0 0;
}

.apply_benefits>* {
  margin: 0 24px;
}

.apply_benefits h3 {
  padding-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 700;
}

.apply_benefits .inform {
  padding: 16px;
  background: #F6F6F6;
  border-radius: 8px;
  font-size: .875rem;
}

.apply_benefits .inform ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}

.apply_benefits .inform ul li {
  width: 100%;
  padding: 4px 0;
}

/* 약관 */
.page-title {
  text-align: center;
  padding: 1rem 0;
  background-color: #111;
  color: #fff;
  margin-bottom: 1rem;
}

.page-title h1 {
  margin: 0;
  font-size: 1.5rem;
}

.terms-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 20px;
  padding-top: 0;
  background: #fff;
  border-radius: 5px;
}

.terms-content h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #111;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.terms-content p, .terms-content ul {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.terms-content ul li {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #f1f1f1;
  font-size: 0.8rem;
  color: #666;
}

.dates {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

.benifit {
  display: flex;
  flex-direction: column;
}

.opacity_box {
  display: flex;
  padding: 20px 34px;
  color: #fff;
  background: #00000033;
  border-radius: 8px;
  line-height: 20px;
}

.tab_content_tit .sec_tit {
  position: relative;
  margin-bottom: 40px;
  color: #9D8772;
  font-size: 16px;
}

.tab_content_tit .sec_tit.color-white {
  color: #fff;
}

.sec_tit strong {
  display: inline-block;
  padding-top: 6px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}

.tab_content_tit .sec_tit::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 1px;
  bottom: -20px;
  left: 0;
  background: #9D8772;
}

.tab_content_tit .sec_tit.color-white::after {
  background: #fff;
}

.tab_content_tit span {
  line-height: 24px;
}