html.sr .reveal {
  visibility: hidden;
}

/* 공통 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Pretendard', sans-serif;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
}

:root {
  --main_color_green: #004236;
  --mian_color_red: #d5060a;
  --font_color_black: #131313;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.woff2") format("woff2-variations");
  font-weight: 1 999;
  font-display: swap;
}

@font-face {
  font-family: 'permanent Marker';
  font-weight: 400;
  src: url(./PermanentMarker-Regular.ttf);
}


/* 버튼 스타일 */
.line_btn {
  width: 214px;
  height: 48px;
  border: 1px solid var(--font_color_black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: transparent;
  background-image: linear-gradient(to right,
      var(--main_color_green),
      var(--main_color_green));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.4s ease;
}

.line_btn:hover {
  background-size: 100% 100%;
}

.line_btn .btn_text {
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
}

.line_btn:hover .btn_text {
  color: #fff;
}

.line_btn .arrow_icon {
  font-size: 20px;
  line-height: 1;
  color: var(--font_color_black);
}

.line_btn:hover .arrow_icon {
  color: #fff;
}

.section_title {
  margin-bottom: 60px;
}

.section_title .sup {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
  margin-bottom: 8px;
}

.section_title h2 {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
}

.section_title h2 span {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
  margin-right: 6px;
}

/* 동그라미 sale_btn스타일 */
.sale_btn {
  width: 97px;
  height: 97px;
  border-radius: 50%;
  background-color: var(--main_color_green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sale_btn .percent {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #fff;
}

.sale_btn .off {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}


/* ★ 헤더 스타일 */
.main_header {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.main_header .bg_img {
  width: 100%;
  height: 100%;
  background: url('./img/banner_bg.png');
  background-size: cover;
  background-position: center;
}

.main_header .inner_box {
  width: 750px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  text-align: start;
  padding-left: 150px;
  padding-top: 40px;
  color: #fff;
}

/* ★ 네비게이션 공통 */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 66px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 37, 30, 0.6);
  box-sizing: border-box;
  z-index: 50;
  font-weight: 200;
}

/* 로고 영역 */
.nav .logo img {
  display: block;
  height: 32px;
}

/* 메뉴 */
.nav .menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav .menu ul li {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.nav .menu ul li:nth-child(2) {
  font-weight: 500;
}

/* 아이콘 영역 */
.nav .icon {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.nav .icon div img {
  display: block;
  height: 20px;
}

.kakao {
  width: 100%;
  height: 40px;
  color: #f7f7f7;
  background-color: rgba(36, 16, 8, 0.3);
  position: absolute;
  top: 66px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  font-weight: 200;
  cursor: pointer;
}

.kakao p:hover {
  text-decoration: underline;
}


/* 왼쪽 텍스트 */
.main_header .left_text {
  margin-top: 120px;
}

.main_header .left_text .sub_txt {
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  line-height: 150%;
  margin-left: 20px;
}

.main_header .left_text .event_title {
  font-family: 'permanent Marker';
  font-size: 150px;
  font-weight: 300;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

/* 이벤트 리스트 */
.main_header .event_list {
  margin-top: 40px;
}

.main_header .event_item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

/* 왼쪽 사각형 박스 */
.main_header .event_item .square {
  width: 80px;
  height: 82px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.main_header .event_item .square_txt1 {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 150%;
}

.main_header .event_item .square_txt2 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 150%;
}

.main_header .event_item .square_txt3 {
  height: 1px;
}

.main_header .event_item .event_desc {
  font-size: 19px;
  line-height: 1.8em;
}

/* ★ 1. 스토리 색션 */
#story {
  padding: 160px 0;
}

#story .story_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#story .left_box {
  width: 50%;
  position: relative;
}

#story .left_box img {
  object-fit: contain;
}

#story .left_box .top_typo {
  width: 550px;
}

#story .left_box .bottom_group {
  position: absolute;
  top: 270px;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

#story .left_box .bottom_group .left_img {
  width: 270px;
  height: 364px;
}

#story .left_box .bottom_group .right_text {
  margin-bottom: 0;
}

#story .left_box .bottom_group .right_text .title {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--main_color_green);
  margin-bottom: 20px;
}

#story .left_box .bottom_group .right_text .desc {
  width: 550px;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
}

/* 오른쪽 박스 (가로 이미지 2개) */
#story .right_box {
  width: 50%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
}

#story .right_box .img1 img {
  width: 260px;
  height: 260px;
  object-fit: cover;
}

#story .right_box .img2 video {
  width: 470px;
  height: 670px;
  object-fit: cover;
}


/* ===== CATEGORY SECTION ===== */
#category {
  padding: 120px 0;
  background: url(./img/bg.png) no-repeat center/cover;
}

#category .inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* 영어 타이틀 */
#category .eng_title {
  font-size: 16px;
  color: #777;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

/* 메인 타이틀 */
#category .ko_title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  color: var(--main_color_green);
}

/* 그리드 */
#category .category_grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* 아이템 하나 */
#category .category_item {
  width: 25%;
}

/* 이미지 박스 */
#category .category_item .img_box {
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  cursor: pointer;
}

#category .category_item .img_box:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(0.9);
}

#category .category_item img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
  border-radius: 20px;
}

/* 텍스트 */
#category .category_item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--font_color_black);
}

#category .category_item p {
  font-size: 18px;
  color: #353535;
  line-height: 1.5;
  letter-spacing: -1px;
}


/* ★ 2. 이벤트 배너 색션 */
#event_banner {
  width: 100%;
  height: 384px;
  background: rgba(192, 192, 192, 0.2);
  position: relative;
  overflow: visible;
  margin-top: 100px;
  margin-bottom: 50px;
}

#event_banner .inner {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

#event_banner .left_text {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--font_color_black);
}

/* Label Box */
#event_banner .left_text .label_box {
  background-color: var(--main_color_green);
  padding: 6px 18px;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}

/* Title */
#event_banner .left_text .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
  margin-bottom: 20px;
}

#event_banner .left_text .title span {
  color: var(--main_color_green);
}

/* Description */
#event_banner .left_text .desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
  margin-bottom: 32px;
}

#event_banner .right_img {
  width: 303px;
  height: 440px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) rotate(14deg);
}

/* ★ 3. 30% 세일 색션 */
#event_30 .event30_title {
  text-align: center;
  margin: 80px 0;
  line-height: 5em;
}

#event_30 .event30_title .sub {
  font-weight: 700;
  font-size: 30px;
  color: var(--main_color_green);
}

#event_30 .event30_title .main_title {
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
}

#event_30 .event30_title .main_title span {
  color: #d5060a;
}

/* 카드 공통 */
#event_30 .event30_card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

/* 이미지 영역 */
#event_30 .event30_card .img_area {
  position: relative;
  width: 600px;
  height: 542px;
}

#event_30 .event30_card .img_area .imgbox {
  width: 100%;
  height: 100%;
}

#event_30 .event30_card .img_area .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 30% SALE 버튼 */
#event_30 .event30_card .sale_btn {
  position: absolute;
  top: 20px;
  left: 20px;
}

/* 텍스트 영역 */
#event_30 .event30_card .text_area {
  width: calc(100% - 650px);
  padding-left: 60px;
}

#event_30 .event30_card .top_eng {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}

#event_30 .event30_card.card1 .top_eng {
  color: #004236;
}

#event_30 .event30_card.card2 .top_eng {
  color: #FF2D81;
}

#event_30 .event30_card.card3 .top_eng {
  color: #DF6630;
}



/* 상품명 */
#event_30 .event30_card .product_name {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: -0.04em;
  line-height: 120%;
  margin-bottom: 20px;
}

/* 포인트 컬러 */
#event_30 .event30_card .point.green {
  color: #004236;
}

#event_30 .event30_card .point.pink {
  color: #FF2D81;
}

#event_30 .event30_card .point.orange {
  color: #DF6630;
}

/* 설명 */
#event_30 .event30_card .desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--font_color_black);
  margin-bottom: 20px;
}

/* 해시태그 */
#event_30 .event30_card .tags {
  font-weight: 500;
  font-size: 18px;
  color: #D5060A;
  margin-bottom: 20px;
}

/* 가격 */
#event_30 .event30_card .price_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

#event_30 .event30_card .price_old {
  font-family: Pretendard;
  font-size: 20px;
  color: #777;
  text-decoration: line-through;
}

#event_30 .event30_card .price_new {
  font-family: Pretendard;
  font-size: 40px;
  letter-spacing: -2px;
  font-weight: 700;
  color: #004236;
}


/* ★ 4. 세일 아이템 색션 */
#sale_item {
  padding-bottom: 200px;
}

#sale_item .inner {
  margin: 0 auto;
}

/* 리스트 전체 */
#sale_item .product_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 80px;
}

/* 카드 */
#sale_item .product_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

/* 이미지 영역 */
#sale_item .product_card .imgbox {
  width: 290px;
  height: 415px;
  margin: 0 auto;
  overflow: hidden;
}

#sale_item .product_card .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}

#sale_item .product_card .imgbox:hover img {
  transform: scale(1.1);
}

/* 상품명 */
#sale_item .product_card .product_name {
  height: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: var(--font_color_black);
  margin: 20px 0;
}

/* 가격 영역 */
#sale_item .product_card .price_area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

#sale_item .product_card .old_price {
  font-size: 16px;
  color: #777;
  text-decoration: line-through;
}

#sale_item .product_card .new_price {
  font-size: 20px;
  font-weight: 600;
  color: var(--font_color_black);
}

/* 세일 배지 (작은 버전) */
#sale_item .product_card .sale_badge_small {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--main_color_green);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#sale_item .product_card .sale_badge_small span {
  font-size: 16px;
  font-weight: 600;
}

/* 버튼 위치 */
#sale_item .product_card .line_btn {
  margin-top: 10px;
}


/* ★ 5. 온라인 구매 혜택 */
#online_member {
  height: 100vh;
  position: relative;
  background: url(./img/online_bg.png) no-repeat center/cover;
}

/* inner 안에 이미지 + 텍스트 2컬럼 */
#online_member .inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
}

/* 왼쪽 제품 이미지 */
#online_member .left_img {
  width: 600px;
  height: 700px;
}

#online_member .left_img .imgbox {
  width: 100%;
  height: 100%;
}

#online_member .left_img .imgbox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 오른쪽 텍스트 박스 */
#online_member .right_box {
  max-width: 600px;
  color: #fff;
}

/* 상단 로고 아이콘 */
#online_member .logo_icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  object-fit:contain;
}

#online_member .logo_icon img{
  width: 100%;
  height: 100%;
  object-fit:contain;
}

#online_member .logo_icon .imgbox {
  width: 100%;
  height: 100%;
}

#online_member .logo_icon .imgbox {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 가장 큰 타이틀 텍스트 */
#online_member .main_title {
  font-family: Pretendard;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}

/* 서브 텍스트 */
#online_member .sub_text {
  font-family: Pretendard;
  font-weight: 200;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 16px;
}

/* 설명 문단 */
#online_member .desc_text {
  font-family: Pretendard;
  font-weight: 200;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 24px;
}

/* 이메일 입력 박스 */
#online_member .email_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
}

#online_member .email_input {
  flex: 1;
  padding: 0 20px;
  font-family: Pretendard;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

#online_member .email_btn {
  width: 60px;
  height: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#online_member .email_btn .material-symbols-outlined {
  font-size: 28px;
  color: #fff;
}

/* 오른쪽 세로 리본 */
#online_member .right_ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: #c21401;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  overflow: hidden;
}

#online_member .right_ribbon span {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #fff;
  white-space: nowrap;

}


/* ★ 6. 증정품 색션 */
#special_gift {
  padding-top: 100px;
  padding-bottom: 100px;

}

#special_gift .inner {
  margin: 0 auto;
}

#special_gift .gift_title {
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--main_color_green);
  text-align: center;
  margin-bottom: 80px;
}

#special_gift .gift_list {
  display: flex;
  justify-content: center;
  gap: 60px;
}

#special_gift .gift_card {
  font-family: Pretendard;
  text-align: center;
}

#special_gift .img_area {
  position: relative;
  width: 290px;
  height: 350px;
  background: #f9f3e7;
  margin-bottom: 24px;
}

#special_gift .img_area .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;

}

#special_gift .img_area .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}

#special_gift .img_area .imgbox:hover img {
  transform: scale(1.1);
}

#special_gift .gift_badge {
  position: absolute;
  top: -45px;
  left: 26px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--main_color_green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#special_gift .gift_badge span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
}


#special_gift .condition {
  font-weight: 600;
  font-size: 20px;
  color: var(--font_color_black);
  margin-bottom: 12px;
}

#special_gift .desc_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto;
}

#special_gift .desc_wrap .line {
  width: 3px;
  height: 42px;
  background: rgba(0, 66, 54, 0.7);
  border-radius: 2px;
}

#special_gift .desc_wrap .text_box {
  text-align: left;
}

#special_gift .desc {
  font-weight: 500;
  font-size: 16px;
  color: #888888;
  line-height: 1.4;
}



/* ★ 우측 하단 TOP 버튼 */
.to_top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 123, 0);
  border-radius: 50%;
  background-color: transparent;
  color: rgba(255, 123, 0);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.to_top:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(155, 155, 155, 0.6);
}

/* 알림 색션 */
#notice_footer {
  padding: 20px;
  margin-bottom: 80px;
   margin-left: 100px;
}

#notice_footer .notice {
  display: flex;
  justify-content: center;
  gap: 100px;
}

#notice_footer .notice_title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--font_color_black);
  margin-bottom: 30px;
}

#notice_footer .notice_list {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--font_color_black);
  line-height: 1.8;
  padding-left: 20px;
}

#notice_footer .notice_list li {
  list-style: disc;
}

/* 푸터 전체 */
#footer {
  background-color: var(--main_color_green);
  color: #f5f2cf;
  font-size: 13px;
  padding: 60px 0 80px;
}

/* 상단 영역 */
.footer_top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 40px;
}

/* 고객센터 블록 */
.footer_cs .cs_tel {
  font-size: 26px;
  font-weight: 500;
  color: #f4c63f;
  margin-bottom: 18px;
}

.footer_cs p {
  margin: 0 0 4px;
}

.country_btn {
  margin-top: 24px;
  padding: 10px 18px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #f5f2cf;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.country_btn .arrow {
  font-size: 12px;
}

#footer .logo {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

#footer .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 메뉴 컬럼 */
.footer_menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 80px;
}

.footer_col h4 {
  font-size: 20x;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.footer_col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_col li+li {
  margin-top: 4px;
}

.footer_col a {
  color: #f5f2cf;
  font-size: 13px;
}

.footer_col a:hover {
  text-decoration: underline;
}

/* SNS 아이콘 */
.footer_sns .sns_icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer_sns img {
  width: 32px;
  height: 32px;
  display: block;
}

/* 가운데 브랜드 텍스트 */
.footer_mid {
  text-align: center;
  margin: 40px 0 16px;
}

.footer_brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin: 0;
}

/* 하단 영역 */
.footer_bottom {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 50px;
}

.footer_notice {
  margin: 0 0 16px;
}

.footer_policy_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_policy a {
  font-size: 12px;
}

.footer_policy .strong {
  font-weight: 700;
}

.footer_policy .bar {
  margin: 0 8px;
  opacity: 0.7;
}

/* 패밀리 사이트 */
.family_site select {
  min-width: 150px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #f5f2cf;
  font-size: 12px;
}

.family_site select option {
  color: #222;
}

/* 회사 정보 텍스트 */
.footer_company {
  margin: 0;
  color: rgba(245, 242, 207, 0.8);
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}